Mercurial > docs > master
comparison input/deps-mmh.eps @ 220:95257474a123
Further improvements in the discussion; added build dependency graphs.
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Sun, 15 Jul 2012 18:41:35 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
219:8c537982d718 | 220:95257474a123 |
---|---|
1 %!PS-Adobe-3.0 EPSF-3.0 | |
2 %%Creator: graphviz version 2.28.0 (20120715.1431) | |
3 %%Title: foo | |
4 %%Pages: 1 | |
5 %%BoundingBox: 36 36 1745 260 | |
6 %%EndComments | |
7 save | |
8 %%BeginProlog | |
9 /DotDict 200 dict def | |
10 DotDict begin | |
11 | |
12 /setupLatin1 { | |
13 mark | |
14 /EncodingVector 256 array def | |
15 EncodingVector 0 | |
16 | |
17 ISOLatin1Encoding 0 255 getinterval putinterval | |
18 EncodingVector 45 /hyphen put | |
19 | |
20 % Set up ISO Latin 1 character encoding | |
21 /starnetISO { | |
22 dup dup findfont dup length dict begin | |
23 { 1 index /FID ne { def }{ pop pop } ifelse | |
24 } forall | |
25 /Encoding EncodingVector def | |
26 currentdict end definefont | |
27 } def | |
28 /Times-Roman starnetISO def | |
29 /Times-Italic starnetISO def | |
30 /Times-Bold starnetISO def | |
31 /Times-BoldItalic starnetISO def | |
32 /Helvetica starnetISO def | |
33 /Helvetica-Oblique starnetISO def | |
34 /Helvetica-Bold starnetISO def | |
35 /Helvetica-BoldOblique starnetISO def | |
36 /Courier starnetISO def | |
37 /Courier-Oblique starnetISO def | |
38 /Courier-Bold starnetISO def | |
39 /Courier-BoldOblique starnetISO def | |
40 cleartomark | |
41 } bind def | |
42 | |
43 %%BeginResource: procset graphviz 0 0 | |
44 /coord-font-family /Times-Roman def | |
45 /default-font-family /Times-Roman def | |
46 /coordfont coord-font-family findfont 8 scalefont def | |
47 | |
48 /InvScaleFactor 1.0 def | |
49 /set_scale { | |
50 dup 1 exch div /InvScaleFactor exch def | |
51 scale | |
52 } bind def | |
53 | |
54 % styles | |
55 /solid { [] 0 setdash } bind def | |
56 /dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def | |
57 /dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def | |
58 /invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def | |
59 /bold { 2 setlinewidth } bind def | |
60 /filled { } bind def | |
61 /unfilled { } bind def | |
62 /rounded { } bind def | |
63 /diagonals { } bind def | |
64 | |
65 % hooks for setting color | |
66 /nodecolor { sethsbcolor } bind def | |
67 /edgecolor { sethsbcolor } bind def | |
68 /graphcolor { sethsbcolor } bind def | |
69 /nopcolor {pop pop pop} bind def | |
70 | |
71 /beginpage { % i j npages | |
72 /npages exch def | |
73 /j exch def | |
74 /i exch def | |
75 /str 10 string def | |
76 npages 1 gt { | |
77 gsave | |
78 coordfont setfont | |
79 0 0 moveto | |
80 (\() show i str cvs show (,) show j str cvs show (\)) show | |
81 grestore | |
82 } if | |
83 } bind def | |
84 | |
85 /set_font { | |
86 findfont exch | |
87 scalefont setfont | |
88 } def | |
89 | |
90 % draw text fitted to its expected width | |
91 /alignedtext { % width text | |
92 /text exch def | |
93 /width exch def | |
94 gsave | |
95 width 0 gt { | |
96 [] 0 setdash | |
97 text stringwidth pop width exch sub text length div 0 text ashow | |
98 } if | |
99 grestore | |
100 } def | |
101 | |
102 /boxprim { % xcorner ycorner xsize ysize | |
103 4 2 roll | |
104 moveto | |
105 2 copy | |
106 exch 0 rlineto | |
107 0 exch rlineto | |
108 pop neg 0 rlineto | |
109 closepath | |
110 } bind def | |
111 | |
112 /ellipse_path { | |
113 /ry exch def | |
114 /rx exch def | |
115 /y exch def | |
116 /x exch def | |
117 matrix currentmatrix | |
118 newpath | |
119 x y translate | |
120 rx ry scale | |
121 0 0 1 0 360 arc | |
122 setmatrix | |
123 } bind def | |
124 | |
125 /endpage { showpage } bind def | |
126 /showpage { } def | |
127 | |
128 /layercolorseq | |
129 [ % layer color sequence - darkest to lightest | |
130 [0 0 0] | |
131 [.2 .8 .8] | |
132 [.4 .8 .8] | |
133 [.6 .8 .8] | |
134 [.8 .8 .8] | |
135 ] | |
136 def | |
137 | |
138 /layerlen layercolorseq length def | |
139 | |
140 /setlayer {/maxlayer exch def /curlayer exch def | |
141 layercolorseq curlayer 1 sub layerlen mod get | |
142 aload pop sethsbcolor | |
143 /nodecolor {nopcolor} def | |
144 /edgecolor {nopcolor} def | |
145 /graphcolor {nopcolor} def | |
146 } bind def | |
147 | |
148 /onlayer { curlayer ne {invis} if } def | |
149 | |
150 /onlayers { | |
151 /myupper exch def | |
152 /mylower exch def | |
153 curlayer mylower lt | |
154 curlayer myupper gt | |
155 or | |
156 {invis} if | |
157 } def | |
158 | |
159 /curlayer 0 def | |
160 | |
161 %%EndResource | |
162 %%EndProlog | |
163 %%BeginSetup | |
164 14 default-font-family set_font | |
165 1 setmiterlimit | |
166 % /arrowlength 10 def | |
167 % /arrowwidth 5 def | |
168 | |
169 % make sure pdfmark is harmless for PS-interpreters other than Distiller | |
170 /pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse | |
171 % make '<<' and '>>' safe on PS Level 1 devices | |
172 /languagelevel where {pop languagelevel}{1} ifelse | |
173 2 lt { | |
174 userdict (<<) cvn ([) cvn load put | |
175 userdict (>>) cvn ([) cvn load put | |
176 } if | |
177 | |
178 %%EndSetup | |
179 setupLatin1 | |
180 %%Page: 1 1 | |
181 %%PageBoundingBox: 36 36 1745 260 | |
182 %%PageOrientation: Portrait | |
183 0 0 1 beginpage | |
184 gsave | |
185 36 36 1709 224 boxprim clip newpath | |
186 1 1 set_scale 0 rotate 40 41 translate | |
187 % aliasbr.c | |
188 gsave | |
189 1 setlinewidth | |
190 0 0 0 nodecolor | |
191 newpath 105.25 216 moveto | |
192 28.75 216 lineto | |
193 28.75 180 lineto | |
194 105.25 180 lineto | |
195 closepath stroke | |
196 0 0 0 nodecolor | |
197 14 /Times-Roman set_font | |
198 36.5 194.3 moveto 61 (aliasbr.c) alignedtext | |
199 grestore | |
200 % ali | |
201 gsave | |
202 1 setlinewidth | |
203 0 0 0 nodecolor | |
204 27 18 27 18 ellipse_path stroke | |
205 0 0 0 nodecolor | |
206 14 /Times-Roman set_font | |
207 18 14.3 moveto 18 (ali) alignedtext | |
208 grestore | |
209 % aliasbr.c->ali | |
210 gsave | |
211 1 setlinewidth | |
212 0 0 0 edgecolor | |
213 newpath 63.16 179.93 moveto | |
214 56.21 148.97 41.45 83.3 33.1 46.13 curveto | |
215 stroke | |
216 0 0 0 edgecolor | |
217 newpath 36.43 45 moveto | |
218 30.82 36.02 lineto | |
219 29.6 46.54 lineto | |
220 closepath fill | |
221 1 setlinewidth | |
222 solid | |
223 0 0 0 edgecolor | |
224 newpath 36.43 45 moveto | |
225 30.82 36.02 lineto | |
226 29.6 46.54 lineto | |
227 closepath stroke | |
228 grestore | |
229 % spost | |
230 gsave | |
231 1 setlinewidth | |
232 0 0 0 nodecolor | |
233 108 18 35.62 18 ellipse_path stroke | |
234 0 0 0 nodecolor | |
235 14 /Times-Roman set_font | |
236 88.5 14.3 moveto 39 (spost) alignedtext | |
237 grestore | |
238 % aliasbr.c->spost | |
239 gsave | |
240 1 setlinewidth | |
241 0 0 0 edgecolor | |
242 newpath 70.93 179.93 moveto | |
243 78.06 148.97 93.19 83.3 101.75 46.13 curveto | |
244 stroke | |
245 0 0 0 edgecolor | |
246 newpath 105.25 46.55 moveto | |
247 104.08 36.02 lineto | |
248 98.43 44.97 lineto | |
249 closepath fill | |
250 1 setlinewidth | |
251 solid | |
252 0 0 0 edgecolor | |
253 newpath 105.25 46.55 moveto | |
254 104.08 36.02 lineto | |
255 98.43 44.97 lineto | |
256 closepath stroke | |
257 grestore | |
258 % whatnowproc.c | |
259 gsave | |
260 1 setlinewidth | |
261 0 0 0 nodecolor | |
262 newpath 382.25 216 moveto | |
263 255.75 216 lineto | |
264 255.75 180 lineto | |
265 382.25 180 lineto | |
266 closepath stroke | |
267 0 0 0 nodecolor | |
268 14 /Times-Roman set_font | |
269 263.5 194.3 moveto 111 (whatnowproc.c) alignedtext | |
270 grestore | |
271 % comp | |
272 gsave | |
273 1 setlinewidth | |
274 0 0 0 nodecolor | |
275 198 18 36.1 18 ellipse_path stroke | |
276 0 0 0 nodecolor | |
277 14 /Times-Roman set_font | |
278 178 14.3 moveto 40 (comp) alignedtext | |
279 grestore | |
280 % whatnowproc.c->comp | |
281 gsave | |
282 1 setlinewidth | |
283 0 0 0 edgecolor | |
284 newpath 307.4 179.93 moveto | |
285 285.91 148.33 239.86 80.57 214.9 43.86 curveto | |
286 stroke | |
287 0 0 0 edgecolor | |
288 newpath 217.56 41.54 moveto | |
289 209.04 35.24 lineto | |
290 211.77 45.48 lineto | |
291 closepath fill | |
292 1 setlinewidth | |
293 solid | |
294 0 0 0 edgecolor | |
295 newpath 217.56 41.54 moveto | |
296 209.04 35.24 lineto | |
297 211.77 45.48 lineto | |
298 closepath stroke | |
299 grestore | |
300 % dist | |
301 gsave | |
302 1 setlinewidth | |
303 0 0 0 nodecolor | |
304 280 18 27.42 18 ellipse_path stroke | |
305 0 0 0 nodecolor | |
306 14 /Times-Roman set_font | |
307 266.5 14.3 moveto 27 (dist) alignedtext | |
308 grestore | |
309 % whatnowproc.c->dist | |
310 gsave | |
311 1 setlinewidth | |
312 0 0 0 edgecolor | |
313 newpath 315.26 179.93 moveto | |
314 308.48 148.97 294.09 83.3 285.94 46.13 curveto | |
315 stroke | |
316 0 0 0 edgecolor | |
317 newpath 289.29 45.03 moveto | |
318 283.73 36.02 lineto | |
319 282.45 46.53 lineto | |
320 closepath fill | |
321 1 setlinewidth | |
322 solid | |
323 0 0 0 edgecolor | |
324 newpath 289.29 45.03 moveto | |
325 283.73 36.02 lineto | |
326 282.45 46.53 lineto | |
327 closepath stroke | |
328 grestore | |
329 % forw | |
330 gsave | |
331 1 setlinewidth | |
332 0 0 0 nodecolor | |
333 358 18 32.25 18 ellipse_path stroke | |
334 0 0 0 nodecolor | |
335 14 /Times-Roman set_font | |
336 341 14.3 moveto 34 (forw) alignedtext | |
337 grestore | |
338 % whatnowproc.c->forw | |
339 gsave | |
340 1 setlinewidth | |
341 0 0 0 edgecolor | |
342 newpath 322.74 179.93 moveto | |
343 329.52 148.97 343.91 83.3 352.06 46.13 curveto | |
344 stroke | |
345 0 0 0 edgecolor | |
346 newpath 355.55 46.53 moveto | |
347 354.27 36.02 lineto | |
348 348.71 45.03 lineto | |
349 closepath fill | |
350 1 setlinewidth | |
351 solid | |
352 0 0 0 edgecolor | |
353 newpath 355.55 46.53 moveto | |
354 354.27 36.02 lineto | |
355 348.71 45.03 lineto | |
356 closepath stroke | |
357 grestore | |
358 % repl | |
359 gsave | |
360 1 setlinewidth | |
361 0 0 0 nodecolor | |
362 438 18 29.37 18 ellipse_path stroke | |
363 0 0 0 nodecolor | |
364 14 /Times-Roman set_font | |
365 423.5 14.3 moveto 29 (repl) alignedtext | |
366 grestore | |
367 % whatnowproc.c->repl | |
368 gsave | |
369 1 setlinewidth | |
370 0 0 0 edgecolor | |
371 newpath 330.41 179.93 moveto | |
372 351.59 148.25 397.07 80.23 421.56 43.58 curveto | |
373 stroke | |
374 0 0 0 edgecolor | |
375 newpath 424.66 45.24 moveto | |
376 427.31 34.99 lineto | |
377 418.85 41.35 lineto | |
378 closepath fill | |
379 1 setlinewidth | |
380 solid | |
381 0 0 0 edgecolor | |
382 newpath 424.66 45.24 moveto | |
383 427.31 34.99 lineto | |
384 418.85 41.35 lineto | |
385 closepath stroke | |
386 grestore | |
387 % scansbr.c | |
388 gsave | |
389 1 setlinewidth | |
390 0 0 0 nodecolor | |
391 newpath 565.5 216 moveto | |
392 482.5 216 lineto | |
393 482.5 180 lineto | |
394 565.5 180 lineto | |
395 closepath stroke | |
396 0 0 0 nodecolor | |
397 14 /Times-Roman set_font | |
398 490 194.3 moveto 68 (scansbr.c) alignedtext | |
399 grestore | |
400 % inc | |
401 gsave | |
402 1 setlinewidth | |
403 0 0 0 nodecolor | |
404 512 18 27 18 ellipse_path stroke | |
405 0 0 0 nodecolor | |
406 14 /Times-Roman set_font | |
407 501 14.3 moveto 22 (inc) alignedtext | |
408 grestore | |
409 % scansbr.c->inc | |
410 gsave | |
411 1 setlinewidth | |
412 0 0 0 edgecolor | |
413 newpath 522.85 179.93 moveto | |
414 520.76 148.97 516.33 83.3 513.83 46.13 curveto | |
415 stroke | |
416 0 0 0 edgecolor | |
417 newpath 517.31 45.76 moveto | |
418 513.15 36.02 lineto | |
419 510.33 46.23 lineto | |
420 closepath fill | |
421 1 setlinewidth | |
422 solid | |
423 0 0 0 edgecolor | |
424 newpath 517.31 45.76 moveto | |
425 513.15 36.02 lineto | |
426 510.33 46.23 lineto | |
427 closepath stroke | |
428 grestore | |
429 % scan | |
430 gsave | |
431 1 setlinewidth | |
432 0 0 0 nodecolor | |
433 589 18 32.25 18 ellipse_path stroke | |
434 0 0 0 nodecolor | |
435 14 /Times-Roman set_font | |
436 572 14.3 moveto 34 (scan) alignedtext | |
437 grestore | |
438 % scansbr.c->scan | |
439 gsave | |
440 1 setlinewidth | |
441 0 0 0 edgecolor | |
442 newpath 530.23 179.93 moveto | |
443 541.62 148.75 565.85 82.4 579.37 45.37 curveto | |
444 stroke | |
445 0 0 0 edgecolor | |
446 newpath 582.74 46.35 moveto | |
447 582.88 35.76 lineto | |
448 576.16 43.95 lineto | |
449 closepath fill | |
450 1 setlinewidth | |
451 solid | |
452 0 0 0 edgecolor | |
453 newpath 582.74 46.35 moveto | |
454 582.88 35.76 lineto | |
455 576.16 43.95 lineto | |
456 closepath stroke | |
457 grestore | |
458 % termsbr.c | |
459 gsave | |
460 1 setlinewidth | |
461 0 0 0 nodecolor | |
462 newpath 800.25 216 moveto | |
463 715.75 216 lineto | |
464 715.75 180 lineto | |
465 800.25 180 lineto | |
466 closepath stroke | |
467 0 0 0 nodecolor | |
468 14 /Times-Roman set_font | |
469 723.5 194.3 moveto 69 (termsbr.c) alignedtext | |
470 grestore | |
471 % termsbr.c->inc | |
472 gsave | |
473 1 setlinewidth | |
474 0 0 0 edgecolor | |
475 newpath 734.41 179.93 moveto | |
476 688.22 146.51 586.17 72.66 538.06 37.86 curveto | |
477 stroke | |
478 0 0 0 edgecolor | |
479 newpath 539.88 34.85 moveto | |
480 529.73 31.83 lineto | |
481 535.78 40.53 lineto | |
482 closepath fill | |
483 1 setlinewidth | |
484 solid | |
485 0 0 0 edgecolor | |
486 newpath 539.88 34.85 moveto | |
487 529.73 31.83 lineto | |
488 535.78 40.53 lineto | |
489 closepath stroke | |
490 grestore | |
491 % mhbuild | |
492 gsave | |
493 1 setlinewidth | |
494 0 0 0 nodecolor | |
495 763 18 48.62 18 ellipse_path stroke | |
496 0 0 0 nodecolor | |
497 14 /Times-Roman set_font | |
498 733.5 14.3 moveto 59 (mhbuild) alignedtext | |
499 grestore | |
500 % termsbr.c->mhbuild | |
501 gsave | |
502 1 setlinewidth | |
503 0 0 0 edgecolor | |
504 newpath 758.48 179.93 moveto | |
505 759.35 148.97 761.19 83.3 762.24 46.13 curveto | |
506 stroke | |
507 0 0 0 edgecolor | |
508 newpath 765.74 46.11 moveto | |
509 762.52 36.02 lineto | |
510 758.74 45.91 lineto | |
511 closepath fill | |
512 1 setlinewidth | |
513 solid | |
514 0 0 0 edgecolor | |
515 newpath 765.74 46.11 moveto | |
516 762.52 36.02 lineto | |
517 758.74 45.91 lineto | |
518 closepath stroke | |
519 grestore | |
520 % mhl | |
521 gsave | |
522 1 setlinewidth | |
523 0 0 0 nodecolor | |
524 668 18 28.4 18 ellipse_path stroke | |
525 0 0 0 nodecolor | |
526 14 /Times-Roman set_font | |
527 654 14.3 moveto 28 (mhl) alignedtext | |
528 grestore | |
529 % termsbr.c->mhl | |
530 gsave | |
531 1 setlinewidth | |
532 0 0 0 edgecolor | |
533 newpath 749.37 179.93 moveto | |
534 733.46 148.46 699.42 81.15 680.81 44.33 curveto | |
535 stroke | |
536 0 0 0 edgecolor | |
537 newpath 683.85 42.59 moveto | |
538 676.21 35.24 lineto | |
539 677.6 45.74 lineto | |
540 closepath fill | |
541 1 setlinewidth | |
542 solid | |
543 0 0 0 edgecolor | |
544 newpath 683.85 42.59 moveto | |
545 676.21 35.24 lineto | |
546 677.6 45.74 lineto | |
547 closepath stroke | |
548 grestore | |
549 % mhlist | |
550 gsave | |
551 1 setlinewidth | |
552 0 0 0 nodecolor | |
553 972 18 39.47 18 ellipse_path stroke | |
554 0 0 0 nodecolor | |
555 14 /Times-Roman set_font | |
556 949.5 14.3 moveto 45 (mhlist) alignedtext | |
557 grestore | |
558 % termsbr.c->mhlist | |
559 gsave | |
560 1 setlinewidth | |
561 0 0 0 edgecolor | |
562 newpath 778.52 179.93 moveto | |
563 817.63 147.4 902.8 76.56 945.9 40.71 curveto | |
564 stroke | |
565 0 0 0 edgecolor | |
566 newpath 948.24 43.32 moveto | |
567 953.69 34.23 lineto | |
568 943.76 37.94 lineto | |
569 closepath fill | |
570 1 setlinewidth | |
571 solid | |
572 0 0 0 edgecolor | |
573 newpath 948.24 43.32 moveto | |
574 953.69 34.23 lineto | |
575 943.76 37.94 lineto | |
576 closepath stroke | |
577 grestore | |
578 % show | |
579 gsave | |
580 1 setlinewidth | |
581 0 0 0 nodecolor | |
582 1065 18 35.15 18 ellipse_path stroke | |
583 0 0 0 nodecolor | |
584 14 /Times-Roman set_font | |
585 1046 14.3 moveto 38 (show) alignedtext | |
586 grestore | |
587 % termsbr.c->show | |
588 gsave | |
589 1 setlinewidth | |
590 0 0 0 edgecolor | |
591 newpath 787.44 179.93 moveto | |
592 845.42 146.32 973.93 71.8 1033.52 37.25 curveto | |
593 stroke | |
594 0 0 0 edgecolor | |
595 newpath 1035.58 40.1 moveto | |
596 1042.47 32.06 lineto | |
597 1032.07 34.05 lineto | |
598 closepath fill | |
599 1 setlinewidth | |
600 solid | |
601 0 0 0 edgecolor | |
602 newpath 1035.58 40.1 moveto | |
603 1042.47 32.06 lineto | |
604 1032.07 34.05 lineto | |
605 closepath stroke | |
606 grestore | |
607 % mhstore | |
608 gsave | |
609 1 setlinewidth | |
610 0 0 0 nodecolor | |
611 1167 18 49.09 18 ellipse_path stroke | |
612 0 0 0 nodecolor | |
613 14 /Times-Roman set_font | |
614 1137 14.3 moveto 60 (mhstore) alignedtext | |
615 grestore | |
616 % termsbr.c->mhstore | |
617 gsave | |
618 1 setlinewidth | |
619 0 0 0 edgecolor | |
620 newpath 797.22 179.93 moveto | |
621 875.06 146.05 1048.35 70.64 1126.91 36.45 curveto | |
622 stroke | |
623 0 0 0 edgecolor | |
624 newpath 1128.68 39.49 moveto | |
625 1136.45 32.29 lineto | |
626 1125.89 33.08 lineto | |
627 closepath fill | |
628 1 setlinewidth | |
629 solid | |
630 0 0 0 edgecolor | |
631 newpath 1128.68 39.49 moveto | |
632 1136.45 32.29 lineto | |
633 1125.89 33.08 lineto | |
634 closepath stroke | |
635 grestore | |
636 % mhtest | |
637 gsave | |
638 1 setlinewidth | |
639 0 0 0 nodecolor | |
640 872 18 42.37 18 ellipse_path stroke | |
641 0 0 0 nodecolor | |
642 14 /Times-Roman set_font | |
643 847.5 14.3 moveto 49 (mhtest) alignedtext | |
644 grestore | |
645 % termsbr.c->mhtest | |
646 gsave | |
647 1 setlinewidth | |
648 0 0 0 edgecolor | |
649 newpath 768.93 179.93 moveto | |
650 789.12 148.41 832.35 80.92 855.9 44.14 curveto | |
651 stroke | |
652 0 0 0 edgecolor | |
653 newpath 858.99 45.81 moveto | |
654 861.43 35.5 lineto | |
655 853.09 42.03 lineto | |
656 closepath fill | |
657 1 setlinewidth | |
658 solid | |
659 0 0 0 edgecolor | |
660 newpath 858.99 45.81 moveto | |
661 861.43 35.5 lineto | |
662 853.09 42.03 lineto | |
663 closepath stroke | |
664 grestore | |
665 % termsbr.c->scan | |
666 gsave | |
667 1 setlinewidth | |
668 0 0 0 edgecolor | |
669 newpath 741.8 179.93 moveto | |
670 711.23 147.74 645.04 78.02 610.68 41.84 curveto | |
671 stroke | |
672 0 0 0 edgecolor | |
673 newpath 612.88 39.07 moveto | |
674 603.46 34.23 lineto | |
675 607.81 43.89 lineto | |
676 closepath fill | |
677 1 setlinewidth | |
678 solid | |
679 0 0 0 edgecolor | |
680 newpath 612.88 39.07 moveto | |
681 603.46 34.23 lineto | |
682 607.81 43.89 lineto | |
683 closepath stroke | |
684 grestore | |
685 % mhfree.c | |
686 gsave | |
687 1 setlinewidth | |
688 0 0 0 nodecolor | |
689 newpath 899 216 moveto | |
690 819 216 lineto | |
691 819 180 lineto | |
692 899 180 lineto | |
693 closepath stroke | |
694 0 0 0 nodecolor | |
695 14 /Times-Roman set_font | |
696 827 194.3 moveto 64 (mhfree.c) alignedtext | |
697 grestore | |
698 % mhfree.c->mhbuild | |
699 gsave | |
700 1 setlinewidth | |
701 0 0 0 edgecolor | |
702 newpath 849.8 179.93 moveto | |
703 832.91 148.62 796.88 81.83 776.97 44.9 curveto | |
704 stroke | |
705 0 0 0 edgecolor | |
706 newpath 779.86 42.9 moveto | |
707 772.04 35.76 lineto | |
708 773.7 46.22 lineto | |
709 closepath fill | |
710 1 setlinewidth | |
711 solid | |
712 0 0 0 edgecolor | |
713 newpath 779.86 42.9 moveto | |
714 772.04 35.76 lineto | |
715 773.7 46.22 lineto | |
716 closepath stroke | |
717 grestore | |
718 % mhfree.c->mhlist | |
719 gsave | |
720 1 setlinewidth | |
721 0 0 0 edgecolor | |
722 newpath 869.83 179.93 moveto | |
723 889.85 148.41 932.69 80.92 956.04 44.14 curveto | |
724 stroke | |
725 0 0 0 edgecolor | |
726 newpath 959.12 45.82 moveto | |
727 961.53 35.5 lineto | |
728 953.21 42.06 lineto | |
729 closepath fill | |
730 1 setlinewidth | |
731 solid | |
732 0 0 0 edgecolor | |
733 newpath 959.12 45.82 moveto | |
734 961.53 35.5 lineto | |
735 953.21 42.06 lineto | |
736 closepath stroke | |
737 grestore | |
738 % mhfree.c->show | |
739 gsave | |
740 1 setlinewidth | |
741 0 0 0 edgecolor | |
742 newpath 878.75 179.93 moveto | |
743 916.52 147.3 998.87 76.14 1040.24 40.39 curveto | |
744 stroke | |
745 0 0 0 edgecolor | |
746 newpath 1042.67 42.92 moveto | |
747 1047.94 33.74 lineto | |
748 1038.09 37.63 lineto | |
749 closepath fill | |
750 1 setlinewidth | |
751 solid | |
752 0 0 0 edgecolor | |
753 newpath 1042.67 42.92 moveto | |
754 1047.94 33.74 lineto | |
755 1038.09 37.63 lineto | |
756 closepath stroke | |
757 grestore | |
758 % mhfree.c->mhstore | |
759 gsave | |
760 1 setlinewidth | |
761 0 0 0 edgecolor | |
762 newpath 888.53 179.93 moveto | |
763 945.96 146.74 1072.37 73.69 1133.11 38.59 curveto | |
764 stroke | |
765 0 0 0 edgecolor | |
766 newpath 1135.02 41.53 moveto | |
767 1141.92 33.49 lineto | |
768 1131.51 35.47 lineto | |
769 closepath fill | |
770 1 setlinewidth | |
771 solid | |
772 0 0 0 edgecolor | |
773 newpath 1135.02 41.53 moveto | |
774 1141.92 33.49 lineto | |
775 1131.51 35.47 lineto | |
776 closepath stroke | |
777 grestore | |
778 % mhfree.c->mhtest | |
779 gsave | |
780 1 setlinewidth | |
781 0 0 0 edgecolor | |
782 newpath 860.25 179.93 moveto | |
783 862.51 148.97 867.3 83.3 870.02 46.13 curveto | |
784 stroke | |
785 0 0 0 edgecolor | |
786 newpath 873.52 46.24 moveto | |
787 870.76 36.02 lineto | |
788 866.54 45.73 lineto | |
789 closepath fill | |
790 1 setlinewidth | |
791 solid | |
792 0 0 0 edgecolor | |
793 newpath 873.52 46.24 moveto | |
794 870.76 36.02 lineto | |
795 866.54 45.73 lineto | |
796 closepath stroke | |
797 grestore | |
798 % mhparse.c | |
799 gsave | |
800 1 setlinewidth | |
801 0 0 0 nodecolor | |
802 newpath 1009 216 moveto | |
803 917 216 lineto | |
804 917 180 lineto | |
805 1009 180 lineto | |
806 closepath stroke | |
807 0 0 0 nodecolor | |
808 14 /Times-Roman set_font | |
809 925 194.3 moveto 76 (mhparse.c) alignedtext | |
810 grestore | |
811 % mhparse.c->mhbuild | |
812 gsave | |
813 1 setlinewidth | |
814 0 0 0 edgecolor | |
815 newpath 943.82 179.93 moveto | |
816 907.62 147.71 829.19 77.91 788.56 41.75 curveto | |
817 stroke | |
818 0 0 0 edgecolor | |
819 newpath 790.76 39.02 moveto | |
820 780.96 34.99 lineto | |
821 786.1 44.25 lineto | |
822 closepath fill | |
823 1 setlinewidth | |
824 solid | |
825 0 0 0 edgecolor | |
826 newpath 790.76 39.02 moveto | |
827 780.96 34.99 lineto | |
828 786.1 44.25 lineto | |
829 closepath stroke | |
830 grestore | |
831 % mhparse.c->mhlist | |
832 gsave | |
833 1 setlinewidth | |
834 0 0 0 edgecolor | |
835 newpath 963.86 179.93 moveto | |
836 965.43 148.97 968.75 83.3 970.63 46.13 curveto | |
837 stroke | |
838 0 0 0 edgecolor | |
839 newpath 974.13 46.18 moveto | |
840 971.14 36.02 lineto | |
841 967.14 45.83 lineto | |
842 closepath fill | |
843 1 setlinewidth | |
844 solid | |
845 0 0 0 edgecolor | |
846 newpath 974.13 46.18 moveto | |
847 971.14 36.02 lineto | |
848 967.14 45.83 lineto | |
849 closepath stroke | |
850 grestore | |
851 % mhparse.c->show | |
852 gsave | |
853 1 setlinewidth | |
854 0 0 0 edgecolor | |
855 newpath 972.78 179.93 moveto | |
856 990.77 148.54 1029.19 81.49 1050.32 44.61 curveto | |
857 stroke | |
858 0 0 0 edgecolor | |
859 newpath 1053.61 45.91 moveto | |
860 1055.55 35.5 lineto | |
861 1047.54 42.43 lineto | |
862 closepath fill | |
863 1 setlinewidth | |
864 solid | |
865 0 0 0 edgecolor | |
866 newpath 1053.61 45.91 moveto | |
867 1055.55 35.5 lineto | |
868 1047.54 42.43 lineto | |
869 closepath stroke | |
870 grestore | |
871 % mhparse.c->mhstore | |
872 gsave | |
873 1 setlinewidth | |
874 0 0 0 edgecolor | |
875 newpath 982.56 179.93 moveto | |
876 1019.49 147.71 1099.48 77.91 1140.93 41.75 curveto | |
877 stroke | |
878 0 0 0 edgecolor | |
879 newpath 1143.45 44.2 moveto | |
880 1148.68 34.99 lineto | |
881 1138.84 38.92 lineto | |
882 closepath fill | |
883 1 setlinewidth | |
884 solid | |
885 0 0 0 edgecolor | |
886 newpath 1143.45 44.2 moveto | |
887 1148.68 34.99 lineto | |
888 1138.84 38.92 lineto | |
889 closepath stroke | |
890 grestore | |
891 % mhparse.c->mhtest | |
892 gsave | |
893 1 setlinewidth | |
894 0 0 0 edgecolor | |
895 newpath 954.27 179.93 moveto | |
896 938.27 148.62 904.12 81.83 885.24 44.9 curveto | |
897 stroke | |
898 0 0 0 edgecolor | |
899 newpath 888.23 43.07 moveto | |
900 880.57 35.76 lineto | |
901 882 46.25 lineto | |
902 closepath fill | |
903 1 setlinewidth | |
904 solid | |
905 0 0 0 edgecolor | |
906 newpath 888.23 43.07 moveto | |
907 880.57 35.76 lineto | |
908 882 46.25 lineto | |
909 closepath stroke | |
910 grestore | |
911 % mhoutsbr.c | |
912 gsave | |
913 1 setlinewidth | |
914 0 0 0 nodecolor | |
915 newpath 697.25 216 moveto | |
916 600.75 216 lineto | |
917 600.75 180 lineto | |
918 697.25 180 lineto | |
919 closepath stroke | |
920 0 0 0 nodecolor | |
921 14 /Times-Roman set_font | |
922 608.5 194.3 moveto 81 (mhoutsbr.c) alignedtext | |
923 grestore | |
924 % mhoutsbr.c->mhbuild | |
925 gsave | |
926 1 setlinewidth | |
927 0 0 0 edgecolor | |
928 newpath 659.93 179.93 moveto | |
929 680.07 148.49 723.13 81.26 746.72 44.43 curveto | |
930 stroke | |
931 0 0 0 edgecolor | |
932 newpath 749.82 46.06 moveto | |
933 752.27 35.76 lineto | |
934 743.93 42.29 lineto | |
935 closepath fill | |
936 1 setlinewidth | |
937 solid | |
938 0 0 0 edgecolor | |
939 newpath 749.82 46.06 moveto | |
940 752.27 35.76 lineto | |
941 743.93 42.29 lineto | |
942 closepath stroke | |
943 grestore | |
944 % mhoutsbr.c->mhtest | |
945 gsave | |
946 1 setlinewidth | |
947 0 0 0 edgecolor | |
948 newpath 670.38 179.93 moveto | |
949 711.23 147.33 800.26 76.26 845.08 40.48 curveto | |
950 stroke | |
951 0 0 0 edgecolor | |
952 newpath 847.29 43.21 moveto | |
953 852.92 34.23 lineto | |
954 842.92 37.73 lineto | |
955 closepath fill | |
956 1 setlinewidth | |
957 solid | |
958 0 0 0 edgecolor | |
959 newpath 847.29 43.21 moveto | |
960 852.92 34.23 lineto | |
961 842.92 37.73 lineto | |
962 closepath stroke | |
963 grestore | |
964 % mhmisc.c | |
965 gsave | |
966 1 setlinewidth | |
967 0 0 0 nodecolor | |
968 newpath 1113 216 moveto | |
969 1027 216 lineto | |
970 1027 180 lineto | |
971 1113 180 lineto | |
972 closepath stroke | |
973 0 0 0 nodecolor | |
974 14 /Times-Roman set_font | |
975 1035 194.3 moveto 70 (mhmisc.c) alignedtext | |
976 grestore | |
977 % mhmisc.c->mhbuild | |
978 gsave | |
979 1 setlinewidth | |
980 0 0 0 edgecolor | |
981 newpath 1040.56 179.93 moveto | |
982 983.32 146.74 857.33 73.69 796.78 38.59 curveto | |
983 stroke | |
984 0 0 0 edgecolor | |
985 newpath 798.4 35.48 moveto | |
986 787.99 33.49 lineto | |
987 794.89 41.54 lineto | |
988 closepath fill | |
989 1 setlinewidth | |
990 solid | |
991 0 0 0 edgecolor | |
992 newpath 798.4 35.48 moveto | |
993 787.99 33.49 lineto | |
994 794.89 41.54 lineto | |
995 closepath stroke | |
996 grestore | |
997 % mhmisc.c->mhlist | |
998 gsave | |
999 1 setlinewidth | |
1000 0 0 0 edgecolor | |
1001 newpath 1060.6 179.93 moveto | |
1002 1043.36 148.62 1006.59 81.83 986.26 44.9 curveto | |
1003 stroke | |
1004 0 0 0 edgecolor | |
1005 newpath 989.11 42.83 moveto | |
1006 981.23 35.76 lineto | |
1007 982.98 46.2 lineto | |
1008 closepath fill | |
1009 1 setlinewidth | |
1010 solid | |
1011 0 0 0 edgecolor | |
1012 newpath 989.11 42.83 moveto | |
1013 981.23 35.76 lineto | |
1014 982.98 46.2 lineto | |
1015 closepath stroke | |
1016 grestore | |
1017 % mhmisc.c->show | |
1018 gsave | |
1019 1 setlinewidth | |
1020 0 0 0 edgecolor | |
1021 newpath 1069.52 179.93 moveto | |
1022 1068.65 148.97 1066.81 83.3 1065.76 46.13 curveto | |
1023 stroke | |
1024 0 0 0 edgecolor | |
1025 newpath 1069.26 45.91 moveto | |
1026 1065.48 36.02 lineto | |
1027 1062.26 46.11 lineto | |
1028 closepath fill | |
1029 1 setlinewidth | |
1030 solid | |
1031 0 0 0 edgecolor | |
1032 newpath 1069.26 45.91 moveto | |
1033 1065.48 36.02 lineto | |
1034 1062.26 46.11 lineto | |
1035 closepath stroke | |
1036 grestore | |
1037 % mhmisc.c->mhstore | |
1038 gsave | |
1039 1 setlinewidth | |
1040 0 0 0 edgecolor | |
1041 newpath 1079.3 179.93 moveto | |
1042 1096.36 148.62 1132.76 81.83 1152.89 44.9 curveto | |
1043 stroke | |
1044 0 0 0 edgecolor | |
1045 newpath 1156.16 46.21 moveto | |
1046 1157.87 35.76 lineto | |
1047 1150.01 42.86 lineto | |
1048 closepath fill | |
1049 1 setlinewidth | |
1050 solid | |
1051 0 0 0 edgecolor | |
1052 newpath 1156.16 46.21 moveto | |
1053 1157.87 35.76 lineto | |
1054 1150.01 42.86 lineto | |
1055 closepath stroke | |
1056 grestore | |
1057 % mhmisc.c->mhtest | |
1058 gsave | |
1059 1 setlinewidth | |
1060 0 0 0 edgecolor | |
1061 newpath 1051.01 179.93 moveto | |
1062 1014.99 147.55 936.74 77.2 896.7 41.2 curveto | |
1063 stroke | |
1064 0 0 0 edgecolor | |
1065 newpath 899 38.56 moveto | |
1066 889.22 34.48 lineto | |
1067 894.32 43.77 lineto | |
1068 closepath fill | |
1069 1 setlinewidth | |
1070 solid | |
1071 0 0 0 edgecolor | |
1072 newpath 899 38.56 moveto | |
1073 889.22 34.48 lineto | |
1074 894.32 43.77 lineto | |
1075 closepath stroke | |
1076 grestore | |
1077 % mhlistsbr.c | |
1078 gsave | |
1079 1 setlinewidth | |
1080 0 0 0 nodecolor | |
1081 newpath 1226.25 216 moveto | |
1082 1131.75 216 lineto | |
1083 1131.75 180 lineto | |
1084 1226.25 180 lineto | |
1085 closepath stroke | |
1086 0 0 0 nodecolor | |
1087 14 /Times-Roman set_font | |
1088 1139.5 194.3 moveto 79 (mhlistsbr.c) alignedtext | |
1089 grestore | |
1090 % mhlistsbr.c->mhlist | |
1091 gsave | |
1092 1 setlinewidth | |
1093 0 0 0 edgecolor | |
1094 newpath 1159.15 179.93 moveto | |
1095 1121.39 147.46 1039.27 76.85 997.5 40.93 curveto | |
1096 stroke | |
1097 0 0 0 edgecolor | |
1098 newpath 999.58 38.1 moveto | |
1099 989.71 34.23 lineto | |
1100 995.01 43.41 lineto | |
1101 closepath fill | |
1102 1 setlinewidth | |
1103 solid | |
1104 0 0 0 edgecolor | |
1105 newpath 999.58 38.1 moveto | |
1106 989.71 34.23 lineto | |
1107 995.01 43.41 lineto | |
1108 closepath stroke | |
1109 grestore | |
1110 % mhlistsbr.c->show | |
1111 gsave | |
1112 1 setlinewidth | |
1113 0 0 0 edgecolor | |
1114 newpath 1168.07 179.93 moveto | |
1115 1147.83 148.33 1104.43 80.57 1080.92 43.86 curveto | |
1116 stroke | |
1117 0 0 0 edgecolor | |
1118 newpath 1083.74 41.77 moveto | |
1119 1075.4 35.24 lineto | |
1120 1077.85 45.55 lineto | |
1121 closepath fill | |
1122 1 setlinewidth | |
1123 solid | |
1124 0 0 0 edgecolor | |
1125 newpath 1083.74 41.77 moveto | |
1126 1075.4 35.24 lineto | |
1127 1077.85 45.55 lineto | |
1128 closepath stroke | |
1129 grestore | |
1130 % mhlistsbr.c->mhstore | |
1131 gsave | |
1132 1 setlinewidth | |
1133 0 0 0 edgecolor | |
1134 newpath 1177.85 179.93 moveto | |
1135 1175.76 148.97 1171.33 83.3 1168.83 46.13 curveto | |
1136 stroke | |
1137 0 0 0 edgecolor | |
1138 newpath 1172.31 45.76 moveto | |
1139 1168.15 36.02 lineto | |
1140 1165.33 46.23 lineto | |
1141 closepath fill | |
1142 1 setlinewidth | |
1143 solid | |
1144 0 0 0 edgecolor | |
1145 newpath 1172.31 45.76 moveto | |
1146 1168.15 36.02 lineto | |
1147 1165.33 46.23 lineto | |
1148 closepath stroke | |
1149 grestore | |
1150 % mhshowsbr.c | |
1151 gsave | |
1152 1 setlinewidth | |
1153 0 0 0 nodecolor | |
1154 newpath 1355.25 216 moveto | |
1155 1244.75 216 lineto | |
1156 1244.75 180 lineto | |
1157 1355.25 180 lineto | |
1158 closepath stroke | |
1159 0 0 0 nodecolor | |
1160 14 /Times-Roman set_font | |
1161 1252.5 194.3 moveto 95 (mhshowsbr.c) alignedtext | |
1162 grestore | |
1163 % mhshowsbr.c->show | |
1164 gsave | |
1165 1 setlinewidth | |
1166 0 0 0 edgecolor | |
1167 newpath 1277.47 179.93 moveto | |
1168 1233.99 147 1138.71 74.83 1091.95 39.42 curveto | |
1169 stroke | |
1170 0 0 0 edgecolor | |
1171 newpath 1093.9 36.5 moveto | |
1172 1083.81 33.25 lineto | |
1173 1089.67 42.08 lineto | |
1174 closepath fill | |
1175 1 setlinewidth | |
1176 solid | |
1177 0 0 0 edgecolor | |
1178 newpath 1093.9 36.5 moveto | |
1179 1083.81 33.25 lineto | |
1180 1089.67 42.08 lineto | |
1181 closepath stroke | |
1182 grestore | |
1183 % mhshowsbr.c->mhstore | |
1184 gsave | |
1185 1 setlinewidth | |
1186 0 0 0 edgecolor | |
1187 newpath 1287.25 179.93 moveto | |
1188 1263.59 148.27 1212.84 80.34 1185.44 43.68 curveto | |
1189 stroke | |
1190 0 0 0 edgecolor | |
1191 newpath 1188.12 41.41 moveto | |
1192 1179.33 35.5 lineto | |
1193 1182.51 45.6 lineto | |
1194 closepath fill | |
1195 1 setlinewidth | |
1196 solid | |
1197 0 0 0 edgecolor | |
1198 newpath 1188.12 41.41 moveto | |
1199 1179.33 35.5 lineto | |
1200 1182.51 45.6 lineto | |
1201 closepath stroke | |
1202 grestore | |
1203 % dropsbr.c | |
1204 gsave | |
1205 1 setlinewidth | |
1206 0 0 0 nodecolor | |
1207 newpath 1458.25 216 moveto | |
1208 1373.75 216 lineto | |
1209 1373.75 180 lineto | |
1210 1458.25 180 lineto | |
1211 closepath stroke | |
1212 0 0 0 nodecolor | |
1213 14 /Times-Roman set_font | |
1214 1381.5 194.3 moveto 69 (dropsbr.c) alignedtext | |
1215 grestore | |
1216 % packf | |
1217 gsave | |
1218 1 setlinewidth | |
1219 0 0 0 nodecolor | |
1220 1365 18 36.1 18 ellipse_path stroke | |
1221 0 0 0 nodecolor | |
1222 14 /Times-Roman set_font | |
1223 1345 14.3 moveto 40 (packf) alignedtext | |
1224 grestore | |
1225 % dropsbr.c->packf | |
1226 gsave | |
1227 1 setlinewidth | |
1228 0 0 0 edgecolor | |
1229 newpath 1411.11 179.93 moveto | |
1230 1402.2 148.83 1383.26 82.73 1372.64 45.65 curveto | |
1231 stroke | |
1232 0 0 0 edgecolor | |
1233 newpath 1375.99 44.66 moveto | |
1234 1369.88 36.02 lineto | |
1235 1369.27 46.59 lineto | |
1236 closepath fill | |
1237 1 setlinewidth | |
1238 solid | |
1239 0 0 0 edgecolor | |
1240 newpath 1375.99 44.66 moveto | |
1241 1369.88 36.02 lineto | |
1242 1369.27 46.59 lineto | |
1243 closepath stroke | |
1244 grestore | |
1245 % rcvpack | |
1246 gsave | |
1247 1 setlinewidth | |
1248 0 0 0 nodecolor | |
1249 1467 18 48.14 18 ellipse_path stroke | |
1250 0 0 0 nodecolor | |
1251 14 /Times-Roman set_font | |
1252 1438 14.3 moveto 58 (rcvpack) alignedtext | |
1253 grestore | |
1254 % dropsbr.c->rcvpack | |
1255 gsave | |
1256 1 setlinewidth | |
1257 0 0 0 edgecolor | |
1258 newpath 1420.89 179.93 moveto | |
1259 1429.8 148.83 1448.74 82.73 1459.36 45.65 curveto | |
1260 stroke | |
1261 0 0 0 edgecolor | |
1262 newpath 1462.73 46.59 moveto | |
1263 1462.12 36.02 lineto | |
1264 1456.01 44.66 lineto | |
1265 closepath fill | |
1266 1 setlinewidth | |
1267 solid | |
1268 0 0 0 edgecolor | |
1269 newpath 1462.73 46.59 moveto | |
1270 1462.12 36.02 lineto | |
1271 1456.01 44.66 lineto | |
1272 closepath stroke | |
1273 grestore | |
1274 % distsbr.c | |
1275 gsave | |
1276 1 setlinewidth | |
1277 0 0 0 nodecolor | |
1278 newpath 1660.25 216 moveto | |
1279 1583.75 216 lineto | |
1280 1583.75 180 lineto | |
1281 1660.25 180 lineto | |
1282 closepath stroke | |
1283 0 0 0 nodecolor | |
1284 14 /Times-Roman set_font | |
1285 1591.5 194.3 moveto 61 (distsbr.c) alignedtext | |
1286 grestore | |
1287 % rcvdist | |
1288 gsave | |
1289 1 setlinewidth | |
1290 0 0 0 nodecolor | |
1291 1576 18 42.35 18 ellipse_path stroke | |
1292 0 0 0 nodecolor | |
1293 14 /Times-Roman set_font | |
1294 1551 14.3 moveto 50 (rcvdist) alignedtext | |
1295 grestore | |
1296 % distsbr.c->rcvdist | |
1297 gsave | |
1298 1 setlinewidth | |
1299 0 0 0 edgecolor | |
1300 newpath 1617.59 179.93 moveto | |
1301 1609.59 148.97 1592.62 83.3 1583.01 46.13 curveto | |
1302 stroke | |
1303 0 0 0 edgecolor | |
1304 newpath 1586.29 44.82 moveto | |
1305 1580.4 36.02 lineto | |
1306 1579.51 46.57 lineto | |
1307 closepath fill | |
1308 1 setlinewidth | |
1309 solid | |
1310 0 0 0 edgecolor | |
1311 newpath 1586.29 44.82 moveto | |
1312 1580.4 36.02 lineto | |
1313 1579.51 46.57 lineto | |
1314 closepath stroke | |
1315 grestore | |
1316 % send | |
1317 gsave | |
1318 1 setlinewidth | |
1319 0 0 0 nodecolor | |
1320 1669 18 32.25 18 ellipse_path stroke | |
1321 0 0 0 nodecolor | |
1322 14 /Times-Roman set_font | |
1323 1652 14.3 moveto 34 (send) alignedtext | |
1324 grestore | |
1325 % distsbr.c->send | |
1326 gsave | |
1327 1 setlinewidth | |
1328 0 0 0 edgecolor | |
1329 newpath 1626.51 179.93 moveto | |
1330 1634.68 148.97 1652.02 83.3 1661.84 46.13 curveto | |
1331 stroke | |
1332 0 0 0 edgecolor | |
1333 newpath 1665.34 46.58 moveto | |
1334 1664.51 36.02 lineto | |
1335 1658.57 44.79 lineto | |
1336 closepath fill | |
1337 1 setlinewidth | |
1338 solid | |
1339 0 0 0 edgecolor | |
1340 newpath 1665.34 46.58 moveto | |
1341 1664.51 36.02 lineto | |
1342 1658.57 44.79 lineto | |
1343 closepath stroke | |
1344 grestore | |
1345 endpage | |
1346 showpage | |
1347 grestore | |
1348 %%PageTrailer | |
1349 %%EndPage: 1 | |
1350 %%Trailer | |
1351 end | |
1352 restore | |
1353 %%EOF |