Commit | Line | Data |
---|---|---|
21c4e167 H |
1 | %!PS-Adobe-3.0 EPSF-3.0 |
2 | %%Creator: Tk Canvas Widget | |
3 | %%For: | |
4 | %%Title: Window .x8742528.c | |
5 | %%CreationDate: Sat Nov 28 23:46:19 2009 | |
6 | %%BoundingBox: -169 140 782 652 | |
7 | %%Pages: 1 | |
8 | %%DocumentData: Clean7Bit | |
9 | %%Orientation: Portrait | |
10 | %%DocumentNeededResources: font Courier-Bold | |
11 | %%EndComments | |
12 | ||
13 | %%BeginProlog | |
14 | /CurrentEncoding [ | |
15 | /space/space/space/space/space/space/space/space | |
16 | /space/space/space/space/space/space/space/space | |
17 | /space/space/space/space/space/space/space/space | |
18 | /space/space/space/space/space/space/space/space | |
19 | /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle | |
20 | /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash | |
21 | /zero/one/two/three/four/five/six/seven | |
22 | /eight/nine/colon/semicolon/less/equal/greater/question | |
23 | /at/A/B/C/D/E/F/G | |
24 | /H/I/J/K/L/M/N/O | |
25 | /P/Q/R/S/T/U/V/W | |
26 | /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore | |
27 | /grave/a/b/c/d/e/f/g | |
28 | /h/i/j/k/l/m/n/o | |
29 | /p/q/r/s/t/u/v/w | |
30 | /x/y/z/braceleft/bar/braceright/asciitilde/space | |
31 | /space/space/space/space/space/space/space/space | |
32 | /space/space/space/space/space/space/space/space | |
33 | /space/space/space/space/space/space/space/space | |
34 | /space/space/space/space/space/space/space/space | |
35 | /space/exclamdown/cent/sterling/currency/yen/brokenbar/section | |
36 | /dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron | |
37 | /degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered | |
38 | /cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown | |
39 | /Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla | |
40 | /Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis | |
41 | /Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply | |
42 | /Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls | |
43 | /agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla | |
44 | /egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis | |
45 | /eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide | |
46 | /oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis | |
47 | ] def | |
48 | ||
49 | 50 dict begin | |
50 | % This is a standard prolog for Postscript generated by Tk's canvas | |
51 | % widget. | |
52 | % RCS: @(#) $Id: mkpsenc.tcl,v 1.3 2002/07/19 14:37:21 drh Exp $ | |
53 | ||
54 | % The definitions below just define all of the variables used in | |
55 | % any of the procedures here. This is needed for obscure reasons | |
56 | % explained on p. 716 of the Postscript manual (Section H.2.7, | |
57 | % "Initializing Variables," in the section on Encapsulated Postscript). | |
58 | ||
59 | /baseline 0 def | |
60 | /stipimage 0 def | |
61 | /height 0 def | |
62 | /justify 0 def | |
63 | /lineLength 0 def | |
64 | /spacing 0 def | |
65 | /stipple 0 def | |
66 | /strings 0 def | |
67 | /xoffset 0 def | |
68 | /yoffset 0 def | |
69 | /tmpstip null def | |
70 | ||
71 | ||
72 | /cstringshow { | |
73 | { | |
74 | dup type /stringtype eq | |
75 | { show } { glyphshow } | |
76 | ifelse | |
77 | } | |
78 | forall | |
79 | } bind def | |
80 | ||
81 | ||
82 | ||
83 | /cstringwidth { | |
84 | 0 exch 0 exch | |
85 | { | |
86 | dup type /stringtype eq | |
87 | { stringwidth } { | |
88 | currentfont /Encoding get exch 1 exch put (\001) stringwidth | |
89 | } | |
90 | ifelse | |
91 | exch 3 1 roll add 3 1 roll add exch | |
92 | } | |
93 | forall | |
94 | } bind def | |
95 | ||
96 | % font ISOEncode font | |
97 | % This procedure changes the encoding of a font from the default | |
98 | % Postscript encoding to current system encoding. It's typically invoked just | |
99 | % before invoking "setfont". The body of this procedure comes from | |
100 | % Section 5.6.1 of the Postscript book. | |
101 | ||
102 | /ISOEncode { | |
103 | dup length dict begin | |
104 | {1 index /FID ne {def} {pop pop} ifelse} forall | |
105 | /Encoding CurrentEncoding def | |
106 | currentdict | |
107 | end | |
108 | ||
109 | % I'm not sure why it's necessary to use "definefont" on this new | |
110 | % font, but it seems to be important; just use the name "Temporary" | |
111 | % for the font. | |
112 | ||
113 | /Temporary exch definefont | |
114 | } bind def | |
115 | ||
116 | % StrokeClip | |
117 | % | |
118 | % This procedure converts the current path into a clip area under | |
119 | % the assumption of stroking. It's a bit tricky because some Postscript | |
120 | % interpreters get errors during strokepath for dashed lines. If | |
121 | % this happens then turn off dashes and try again. | |
122 | ||
123 | /StrokeClip { | |
124 | {strokepath} stopped { | |
125 | (This Postscript printer gets limitcheck overflows when) = | |
126 | (stippling dashed lines; lines will be printed solid instead.) = | |
127 | [] 0 setdash strokepath} if | |
128 | clip | |
129 | } bind def | |
130 | ||
131 | % desiredSize EvenPixels closestSize | |
132 | % | |
133 | % The procedure below is used for stippling. Given the optimal size | |
134 | % of a dot in a stipple pattern in the current user coordinate system, | |
135 | % compute the closest size that is an exact multiple of the device's | |
136 | % pixel size. This allows stipple patterns to be displayed without | |
137 | % aliasing effects. | |
138 | ||
139 | /EvenPixels { | |
140 | % Compute exact number of device pixels per stipple dot. | |
141 | dup 0 matrix currentmatrix dtransform | |
142 | dup mul exch dup mul add sqrt | |
143 | ||
144 | % Round to an integer, make sure the number is at least 1, and compute | |
145 | % user coord distance corresponding to this. | |
146 | dup round dup 1 lt {pop 1} if | |
147 | exch div mul | |
148 | } bind def | |
149 | ||
150 | % width height string StippleFill -- | |
151 | % | |
152 | % Given a path already set up and a clipping region generated from | |
153 | % it, this procedure will fill the clipping region with a stipple | |
154 | % pattern. "String" contains a proper image description of the | |
155 | % stipple pattern and "width" and "height" give its dimensions. Each | |
156 | % stipple dot is assumed to be about one unit across in the current | |
157 | % user coordinate system. This procedure trashes the graphics state. | |
158 | ||
159 | /StippleFill { | |
160 | % The following code is needed to work around a NeWSprint bug. | |
161 | ||
162 | /tmpstip 1 index def | |
163 | ||
164 | % Change the scaling so that one user unit in user coordinates | |
165 | % corresponds to the size of one stipple dot. | |
166 | 1 EvenPixels dup scale | |
167 | ||
168 | % Compute the bounding box occupied by the path (which is now | |
169 | % the clipping region), and round the lower coordinates down | |
170 | % to the nearest starting point for the stipple pattern. Be | |
171 | % careful about negative numbers, since the rounding works | |
172 | % differently on them. | |
173 | ||
174 | pathbbox | |
175 | 4 2 roll | |
176 | 5 index div dup 0 lt {1 sub} if cvi 5 index mul 4 1 roll | |
177 | 6 index div dup 0 lt {1 sub} if cvi 6 index mul 3 2 roll | |
178 | ||
179 | % Stack now: width height string y1 y2 x1 x2 | |
180 | % Below is a doubly-nested for loop to iterate across this area | |
181 | % in units of the stipple pattern size, going up columns then | |
182 | % across rows, blasting out a stipple-pattern-sized rectangle at | |
183 | % each position | |
184 | ||
185 | 6 index exch { | |
186 | 2 index 5 index 3 index { | |
187 | % Stack now: width height string y1 y2 x y | |
188 | ||
189 | gsave | |
190 | 1 index exch translate | |
191 | 5 index 5 index true matrix tmpstip imagemask | |
192 | grestore | |
193 | } for | |
194 | pop | |
195 | } for | |
196 | pop pop pop pop pop | |
197 | } bind def | |
198 | ||
199 | % -- AdjustColor -- | |
200 | % Given a color value already set for output by the caller, adjusts | |
201 | % that value to a grayscale or mono value if requested by the CL | |
202 | % variable. | |
203 | ||
204 | /AdjustColor { | |
205 | CL 2 lt { | |
206 | currentgray | |
207 | CL 0 eq { | |
208 | .5 lt {0} {1} ifelse | |
209 | } if | |
210 | setgray | |
211 | } if | |
212 | } bind def | |
213 | ||
214 | % x y strings spacing xoffset yoffset justify stipple DrawText -- | |
215 | % This procedure does all of the real work of drawing text. The | |
216 | % color and font must already have been set by the caller, and the | |
217 | % following arguments must be on the stack: | |
218 | % | |
219 | % x, y - Coordinates at which to draw text. | |
220 | % strings - An array of strings, one for each line of the text item, | |
221 | % in order from top to bottom. | |
222 | % spacing - Spacing between lines. | |
223 | % xoffset - Horizontal offset for text bbox relative to x and y: 0 for | |
224 | % nw/w/sw anchor, -0.5 for n/center/s, and -1.0 for ne/e/se. | |
225 | % yoffset - Vertical offset for text bbox relative to x and y: 0 for | |
226 | % nw/n/ne anchor, +0.5 for w/center/e, and +1.0 for sw/s/se. | |
227 | % justify - 0 for left justification, 0.5 for center, 1 for right justify. | |
228 | % stipple - Boolean value indicating whether or not text is to be | |
229 | % drawn in stippled fashion. If text is stippled, | |
230 | % procedure StippleText must have been defined to call | |
231 | % StippleFill in the right way. | |
232 | % | |
233 | % Also, when this procedure is invoked, the color and font must already | |
234 | % have been set for the text. | |
235 | ||
236 | /DrawText { | |
237 | /stipple exch def | |
238 | /justify exch def | |
239 | /yoffset exch def | |
240 | /xoffset exch def | |
241 | /spacing exch def | |
242 | /strings exch def | |
243 | ||
244 | % First scan through all of the text to find the widest line. | |
245 | ||
246 | /lineLength 0 def | |
247 | strings { | |
248 | cstringwidth pop | |
249 | dup lineLength gt {/lineLength exch def} {pop} ifelse | |
250 | newpath | |
251 | } forall | |
252 | ||
253 | % Compute the baseline offset and the actual font height. | |
254 | ||
255 | 0 0 moveto (TXygqPZ) false charpath | |
256 | pathbbox dup /baseline exch def | |
257 | exch pop exch sub /height exch def pop | |
258 | newpath | |
259 | ||
260 | % Translate coordinates first so that the origin is at the upper-left | |
261 | % corner of the text's bounding box. Remember that x and y for | |
262 | % positioning are still on the stack. | |
263 | ||
264 | translate | |
265 | lineLength xoffset mul | |
266 | strings length 1 sub spacing mul height add yoffset mul translate | |
267 | ||
268 | % Now use the baseline and justification information to translate so | |
269 | % that the origin is at the baseline and positioning point for the | |
270 | % first line of text. | |
271 | ||
272 | justify lineLength mul baseline neg translate | |
273 | ||
274 | % Iterate over each of the lines to output it. For each line, | |
275 | % compute its width again so it can be properly justified, then | |
276 | % display it. | |
277 | ||
278 | strings { | |
279 | dup cstringwidth pop | |
280 | justify neg mul 0 moveto | |
281 | stipple { | |
282 | ||
283 | ||
284 | % The text is stippled, so turn it into a path and print | |
285 | % by calling StippledText, which in turn calls StippleFill. | |
286 | % Unfortunately, many Postscript interpreters will get | |
287 | % overflow errors if we try to do the whole string at | |
288 | % once, so do it a character at a time. | |
289 | ||
290 | gsave | |
291 | /char (X) def | |
292 | { | |
293 | dup type /stringtype eq { | |
294 | % This segment is a string. | |
295 | { | |
296 | char 0 3 -1 roll put | |
297 | currentpoint | |
298 | gsave | |
299 | char true charpath clip StippleText | |
300 | grestore | |
301 | char stringwidth translate | |
302 | moveto | |
303 | } forall | |
304 | } { | |
305 | % This segment is glyph name | |
306 | % Temporary override | |
307 | currentfont /Encoding get exch 1 exch put | |
308 | currentpoint | |
309 | gsave (\001) true charpath clip StippleText | |
310 | grestore | |
311 | (\001) stringwidth translate | |
312 | moveto | |
313 | } ifelse | |
314 | } forall | |
315 | grestore | |
316 | } {cstringshow} ifelse | |
317 | 0 spacing neg translate | |
318 | } forall | |
319 | } bind def | |
320 | ||
321 | %%EndProlog | |
322 | %%BeginSetup | |
323 | /CL 2 def | |
324 | %%IncludeResource: font Courier-Bold | |
325 | %%EndSetup | |
326 | ||
327 | %%Page: 1 1 | |
328 | save | |
329 | 306.0 396.0 translate | |
330 | 0.7507 0.7507 scale | |
331 | -632 -340 translate | |
332 | -1 680 moveto 1266 680 lineto 1266 0 lineto -1 0 lineto closepath clip newpath | |
333 | gsave | |
334 | 196 231 moveto | |
335 | 224 231 lineto | |
336 | 224 215 lineto | |
337 | 196 215 lineto | |
338 | 196 231 lineto | |
339 | 0 setlinecap | |
340 | 1 setlinejoin | |
341 | 1 setlinewidth | |
342 | [] 0 setdash | |
343 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
344 | stroke | |
345 | grestore | |
346 | gsave | |
347 | 196 231 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
348 | 0 setlinejoin 2 setlinecap | |
349 | 1 setlinewidth | |
350 | [] 0 setdash | |
351 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
352 | stroke | |
353 | grestore | |
354 | gsave | |
355 | 217 231 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
356 | 0 setlinejoin 2 setlinecap | |
357 | 1 setlinewidth | |
358 | [] 0 setdash | |
359 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
360 | stroke | |
361 | grestore | |
362 | gsave | |
363 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
364 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
365 | 198 229 [ | |
366 | [(dac~)] | |
367 | ] 12 -0.0 0.0 0 false DrawText | |
368 | grestore | |
369 | gsave | |
370 | 213 561 moveto | |
371 | 241 561 lineto | |
372 | 241 545 lineto | |
373 | 213 545 lineto | |
374 | 213 561 lineto | |
375 | 0 setlinecap | |
376 | 1 setlinejoin | |
377 | 1 setlinewidth | |
378 | [] 0 setdash | |
379 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
380 | stroke | |
381 | grestore | |
382 | gsave | |
383 | 213 546 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
384 | 0 setlinejoin 2 setlinecap | |
385 | 1 setlinewidth | |
386 | [] 0 setdash | |
387 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
388 | stroke | |
389 | grestore | |
390 | gsave | |
391 | 213 561 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
392 | 0 setlinejoin 2 setlinecap | |
393 | 1 setlinewidth | |
394 | [] 0 setdash | |
395 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
396 | stroke | |
397 | grestore | |
398 | gsave | |
399 | 234 561 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
400 | 0 setlinejoin 2 setlinecap | |
401 | 1 setlinewidth | |
402 | [] 0 setdash | |
403 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
404 | stroke | |
405 | grestore | |
406 | gsave | |
407 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
408 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
409 | 215 559 [ | |
410 | [(osc~)] | |
411 | ] 12 -0.0 0.0 0 false DrawText | |
412 | grestore | |
413 | gsave | |
414 | 203 655 moveto 133 0 rlineto 0 -15 rlineto -133 0 rlineto closepath | |
415 | 1.000 1.000 1.000 setrgbcolor AdjustColor | |
416 | fill | |
417 | 203 655 moveto 133 0 rlineto 0 -15 rlineto -133 0 rlineto closepath | |
418 | 0 setlinejoin 2 setlinecap | |
419 | 1 setlinewidth | |
420 | [] 0 setdash | |
421 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
422 | stroke | |
423 | grestore | |
424 | gsave | |
425 | 235 654 moveto | |
426 | 235 640 lineto | |
427 | 0 setlinecap | |
428 | 1 setlinejoin | |
429 | 3 setlinewidth | |
430 | [] 0 setdash | |
431 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
432 | stroke | |
433 | grestore | |
434 | gsave | |
435 | grestore | |
436 | gsave | |
437 | 203 641 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
438 | 0 setlinejoin 2 setlinecap | |
439 | 1 setlinewidth | |
440 | [] 0 setdash | |
441 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
442 | stroke | |
443 | grestore | |
444 | gsave | |
445 | 203 655 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
446 | 0 setlinejoin 2 setlinecap | |
447 | 1 setlinewidth | |
448 | [] 0 setdash | |
449 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
450 | stroke | |
451 | grestore | |
452 | gsave | |
453 | 222 285 moveto | |
454 | 244 285 lineto | |
455 | 244 269 lineto | |
456 | 222 269 lineto | |
457 | 222 285 lineto | |
458 | 0 setlinecap | |
459 | 1 setlinejoin | |
460 | 1 setlinewidth | |
461 | [] 0 setdash | |
462 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
463 | stroke | |
464 | grestore | |
465 | gsave | |
466 | 222 270 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
467 | 0 setlinejoin 2 setlinecap | |
468 | 1 setlinewidth | |
469 | [] 0 setdash | |
470 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
471 | stroke | |
472 | grestore | |
473 | gsave | |
474 | 222 285 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
475 | 0 setlinejoin 2 setlinecap | |
476 | 1 setlinewidth | |
477 | [] 0 setdash | |
478 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
479 | stroke | |
480 | grestore | |
481 | gsave | |
482 | 237 285 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
483 | 0 setlinejoin 2 setlinecap | |
484 | 1 setlinewidth | |
485 | [] 0 setdash | |
486 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
487 | stroke | |
488 | grestore | |
489 | gsave | |
490 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
491 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
492 | 224 283 [ | |
493 | [(*~ )] | |
494 | ] 12 -0.0 0.0 0 false DrawText | |
495 | grestore | |
496 | gsave | |
497 | 242 593 moveto | |
498 | 270 593 lineto | |
499 | 274 589 lineto | |
500 | 274 580 lineto | |
501 | 242 580 lineto | |
502 | 242 593 lineto | |
503 | 0 setlinecap | |
504 | 1 setlinejoin | |
505 | 1 setlinewidth | |
506 | [] 0 setdash | |
507 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
508 | stroke | |
509 | grestore | |
510 | gsave | |
511 | 242 581 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
512 | 0 setlinejoin 2 setlinecap | |
513 | 1 setlinewidth | |
514 | [] 0 setdash | |
515 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
516 | stroke | |
517 | grestore | |
518 | gsave | |
519 | 242 593 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
520 | 0 setlinejoin 2 setlinecap | |
521 | 1 setlinewidth | |
522 | [] 0 setdash | |
523 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
524 | stroke | |
525 | grestore | |
526 | gsave | |
527 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
528 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
529 | 244 591 [ | |
530 | [(290)] | |
531 | ] 12 -0.0 0.0 0 false DrawText | |
532 | grestore | |
533 | gsave | |
534 | 55 546 moveto | |
535 | 83 546 lineto | |
536 | 87 542 lineto | |
537 | 87 533 lineto | |
538 | 55 533 lineto | |
539 | 55 546 lineto | |
540 | 0 setlinecap | |
541 | 1 setlinejoin | |
542 | 1 setlinewidth | |
543 | [] 0 setdash | |
544 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
545 | stroke | |
546 | grestore | |
547 | gsave | |
548 | 55 534 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
549 | 0 setlinejoin 2 setlinecap | |
550 | 1 setlinewidth | |
551 | [] 0 setdash | |
552 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
553 | stroke | |
554 | grestore | |
555 | gsave | |
556 | 55 546 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
557 | 0 setlinejoin 2 setlinecap | |
558 | 1 setlinewidth | |
559 | [] 0 setdash | |
560 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
561 | stroke | |
562 | grestore | |
563 | gsave | |
564 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
565 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
566 | 57 544 [ | |
567 | [(20)] | |
568 | ] 12 -0.0 0.0 0 false DrawText | |
569 | grestore | |
570 | gsave | |
571 | 250 629 moveto | |
572 | 278 629 lineto | |
573 | 282 625 lineto | |
574 | 282 616 lineto | |
575 | 250 616 lineto | |
576 | 250 629 lineto | |
577 | 0 setlinecap | |
578 | 1 setlinejoin | |
579 | 1 setlinewidth | |
580 | [] 0 setdash | |
581 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
582 | stroke | |
583 | grestore | |
584 | gsave | |
585 | 250 617 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
586 | 0 setlinejoin 2 setlinecap | |
587 | 1 setlinewidth | |
588 | [] 0 setdash | |
589 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
590 | stroke | |
591 | grestore | |
592 | gsave | |
593 | 250 629 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
594 | 0 setlinejoin 2 setlinecap | |
595 | 1 setlinewidth | |
596 | [] 0 setdash | |
597 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
598 | stroke | |
599 | grestore | |
600 | gsave | |
601 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
602 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
603 | 252 627 [ | |
604 | [(10)] | |
605 | ] 12 -0.0 0.0 0 false DrawText | |
606 | grestore | |
607 | gsave | |
608 | 212 617 moveto | |
609 | 234 617 lineto | |
610 | 234 601 lineto | |
611 | 212 601 lineto | |
612 | 212 617 lineto | |
613 | 0 setlinecap | |
614 | 1 setlinejoin | |
615 | 1 setlinewidth | |
616 | [] 0 setdash | |
617 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
618 | stroke | |
619 | grestore | |
620 | gsave | |
621 | 212 602 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
622 | 0 setlinejoin 2 setlinecap | |
623 | 1 setlinewidth | |
624 | [] 0 setdash | |
625 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
626 | stroke | |
627 | grestore | |
628 | gsave | |
629 | 212 617 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
630 | 0 setlinejoin 2 setlinecap | |
631 | 1 setlinewidth | |
632 | [] 0 setdash | |
633 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
634 | stroke | |
635 | grestore | |
636 | gsave | |
637 | 227 617 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
638 | 0 setlinejoin 2 setlinecap | |
639 | 1 setlinewidth | |
640 | [] 0 setdash | |
641 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
642 | stroke | |
643 | grestore | |
644 | gsave | |
645 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
646 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
647 | 214 615 [ | |
648 | [(* )] | |
649 | ] 12 -0.0 0.0 0 false DrawText | |
650 | grestore | |
651 | gsave | |
652 | 147 587 moveto | |
653 | 173 587 lineto | |
654 | 169 583 lineto | |
655 | 169 575 lineto | |
656 | 173 571 lineto | |
657 | 147 571 lineto | |
658 | 147 587 lineto | |
659 | 0 setlinecap | |
660 | 1 setlinejoin | |
661 | 1 setlinewidth | |
662 | [] 0 setdash | |
663 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
664 | stroke | |
665 | grestore | |
666 | gsave | |
667 | 147 572 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
668 | 0 setlinejoin 2 setlinecap | |
669 | 1 setlinewidth | |
670 | [] 0 setdash | |
671 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
672 | stroke | |
673 | grestore | |
674 | gsave | |
675 | 147 587 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
676 | 0 setlinejoin 2 setlinecap | |
677 | 1 setlinewidth | |
678 | [] 0 setdash | |
679 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
680 | stroke | |
681 | grestore | |
682 | gsave | |
683 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
684 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
685 | 149 585 [ | |
686 | [(440)] | |
687 | ] 12 -0.0 0.0 0 false DrawText | |
688 | grestore | |
689 | gsave | |
690 | 51 571 moveto | |
691 | 79 571 lineto | |
692 | 79 555 lineto | |
693 | 51 555 lineto | |
694 | 51 571 lineto | |
695 | 0 setlinecap | |
696 | 1 setlinejoin | |
697 | 1 setlinewidth | |
698 | [] 0 setdash | |
699 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
700 | stroke | |
701 | grestore | |
702 | gsave | |
703 | 51 556 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
704 | 0 setlinejoin 2 setlinecap | |
705 | 1 setlinewidth | |
706 | [] 0 setdash | |
707 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
708 | stroke | |
709 | grestore | |
710 | gsave | |
711 | 51 571 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
712 | 0 setlinejoin 2 setlinecap | |
713 | 1 setlinewidth | |
714 | [] 0 setdash | |
715 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
716 | stroke | |
717 | grestore | |
718 | gsave | |
719 | 72 571 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
720 | 0 setlinejoin 2 setlinecap | |
721 | 1 setlinewidth | |
722 | [] 0 setdash | |
723 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
724 | stroke | |
725 | grestore | |
726 | gsave | |
727 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
728 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
729 | 53 569 [ | |
730 | [(+ 10)] | |
731 | ] 12 -0.0 0.0 0 false DrawText | |
732 | grestore | |
733 | gsave | |
734 | 17 635 moveto | |
735 | 45 635 lineto | |
736 | 49 631 lineto | |
737 | 49 622 lineto | |
738 | 17 622 lineto | |
739 | 17 635 lineto | |
740 | 0 setlinecap | |
741 | 1 setlinejoin | |
742 | 1 setlinewidth | |
743 | [] 0 setdash | |
744 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
745 | stroke | |
746 | grestore | |
747 | gsave | |
748 | 17 623 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
749 | 0 setlinejoin 2 setlinecap | |
750 | 1 setlinewidth | |
751 | [] 0 setdash | |
752 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
753 | stroke | |
754 | grestore | |
755 | gsave | |
756 | 17 635 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
757 | 0 setlinejoin 2 setlinecap | |
758 | 1 setlinewidth | |
759 | [] 0 setdash | |
760 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
761 | stroke | |
762 | grestore | |
763 | gsave | |
764 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
765 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
766 | 19 633 [ | |
767 | [(1)] | |
768 | ] 12 -0.0 0.0 0 false DrawText | |
769 | grestore | |
770 | gsave | |
771 | 48 594 moveto | |
772 | 70 594 lineto | |
773 | 70 578 lineto | |
774 | 48 578 lineto | |
775 | 48 594 lineto | |
776 | 0 setlinecap | |
777 | 1 setlinejoin | |
778 | 1 setlinewidth | |
779 | [] 0 setdash | |
780 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
781 | stroke | |
782 | grestore | |
783 | gsave | |
784 | 48 579 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
785 | 0 setlinejoin 2 setlinecap | |
786 | 1 setlinewidth | |
787 | [] 0 setdash | |
788 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
789 | stroke | |
790 | grestore | |
791 | gsave | |
792 | 48 594 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
793 | 0 setlinejoin 2 setlinecap | |
794 | 1 setlinewidth | |
795 | [] 0 setdash | |
796 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
797 | stroke | |
798 | grestore | |
799 | gsave | |
800 | 63 594 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
801 | 0 setlinejoin 2 setlinecap | |
802 | 1 setlinewidth | |
803 | [] 0 setdash | |
804 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
805 | stroke | |
806 | grestore | |
807 | gsave | |
808 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
809 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
810 | 50 592 [ | |
811 | [(* )] | |
812 | ] 12 -0.0 0.0 0 false DrawText | |
813 | grestore | |
814 | gsave | |
815 | 80 632 moveto | |
816 | 106 632 lineto | |
817 | 102 628 lineto | |
818 | 102 620 lineto | |
819 | 106 616 lineto | |
820 | 80 616 lineto | |
821 | 80 632 lineto | |
822 | 0 setlinecap | |
823 | 1 setlinejoin | |
824 | 1 setlinewidth | |
825 | [] 0 setdash | |
826 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
827 | stroke | |
828 | grestore | |
829 | gsave | |
830 | 80 617 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
831 | 0 setlinejoin 2 setlinecap | |
832 | 1 setlinewidth | |
833 | [] 0 setdash | |
834 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
835 | stroke | |
836 | grestore | |
837 | gsave | |
838 | 80 632 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
839 | 0 setlinejoin 2 setlinecap | |
840 | 1 setlinewidth | |
841 | [] 0 setdash | |
842 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
843 | stroke | |
844 | grestore | |
845 | gsave | |
846 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
847 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
848 | 82 630 [ | |
849 | [(10 )] | |
850 | ] 12 -0.0 0.0 0 false DrawText | |
851 | grestore | |
852 | gsave | |
853 | 55 528 moveto | |
854 | 89 528 lineto | |
855 | 89 512 lineto | |
856 | 55 512 lineto | |
857 | 55 528 lineto | |
858 | 0 setlinecap | |
859 | 1 setlinejoin | |
860 | 1 setlinewidth | |
861 | [] 0 setdash | |
862 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
863 | stroke | |
864 | grestore | |
865 | gsave | |
866 | 55 528 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
867 | 0 setlinejoin 2 setlinecap | |
868 | 1 setlinewidth | |
869 | [] 0 setdash | |
870 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
871 | stroke | |
872 | grestore | |
873 | gsave | |
874 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
875 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
876 | 57 526 [ | |
877 | [(print)] | |
878 | ] 12 -0.0 0.0 0 false DrawText | |
879 | grestore | |
880 | gsave | |
881 | 32 463 moveto | |
882 | 66 463 lineto | |
883 | 66 447 lineto | |
884 | 32 447 lineto | |
885 | 32 463 lineto | |
886 | 0 setlinecap | |
887 | 1 setlinejoin | |
888 | 1 setlinewidth | |
889 | [] 0 setdash | |
890 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
891 | stroke | |
892 | grestore | |
893 | gsave | |
894 | 32 463 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
895 | 0 setlinejoin 2 setlinecap | |
896 | 1 setlinewidth | |
897 | [] 0 setdash | |
898 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
899 | stroke | |
900 | grestore | |
901 | gsave | |
902 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
903 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
904 | 34 461 [ | |
905 | [(print)] | |
906 | ] 12 -0.0 0.0 0 false DrawText | |
907 | grestore | |
908 | gsave | |
909 | 32 490 moveto | |
910 | 112 490 lineto | |
911 | 108 486 lineto | |
912 | 108 478 lineto | |
913 | 112 474 lineto | |
914 | 32 474 lineto | |
915 | 32 490 lineto | |
916 | 0 setlinecap | |
917 | 1 setlinejoin | |
918 | 1 setlinewidth | |
919 | [] 0 setdash | |
920 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
921 | stroke | |
922 | grestore | |
923 | gsave | |
924 | 32 475 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
925 | 0 setlinejoin 2 setlinecap | |
926 | 1 setlinewidth | |
927 | [] 0 setdash | |
928 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
929 | stroke | |
930 | grestore | |
931 | gsave | |
932 | 32 490 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
933 | 0 setlinejoin 2 setlinecap | |
934 | 1 setlinewidth | |
935 | [] 0 setdash | |
936 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
937 | stroke | |
938 | grestore | |
939 | gsave | |
940 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
941 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
942 | 34 488 [ | |
943 | [(Hello World!)] | |
944 | ] 12 -0.0 0.0 0 false DrawText | |
945 | grestore | |
946 | gsave | |
947 | 262 215 moveto 17 0 rlineto 0 -124 rlineto -17 0 rlineto closepath | |
948 | 0.251 0.251 0.251 setrgbcolor AdjustColor | |
949 | fill | |
950 | 262 215 moveto 17 0 rlineto 0 -124 rlineto -17 0 rlineto closepath | |
951 | 0 setlinejoin 2 setlinecap | |
952 | 1 setlinewidth | |
953 | [] 0 setdash | |
954 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
955 | stroke | |
956 | grestore | |
957 | gsave | |
958 | 267 94 moveto | |
959 | 275 94 lineto | |
960 | 0 setlinecap | |
961 | 1 setlinejoin | |
962 | 2 setlinewidth | |
963 | [] 0 setdash | |
964 | 0.157 0.957 0.957 setrgbcolor AdjustColor | |
965 | stroke | |
966 | grestore | |
967 | gsave | |
968 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
969 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
970 | 282 93 [ | |
971 | [(<-99)] | |
972 | ] 12 -0.0 0.5 0 false DrawText | |
973 | grestore | |
974 | gsave | |
975 | 267 97 moveto | |
976 | 275 97 lineto | |
977 | 0 setlinecap | |
978 | 1 setlinejoin | |
979 | 2 setlinewidth | |
980 | [] 0 setdash | |
981 | 0.078 0.910 0.078 setrgbcolor AdjustColor | |
982 | stroke | |
983 | grestore | |
984 | gsave | |
985 | 267 100 moveto | |
986 | 275 100 lineto | |
987 | 0 setlinecap | |
988 | 1 setlinejoin | |
989 | 2 setlinewidth | |
990 | [] 0 setdash | |
991 | 0.078 0.910 0.078 setrgbcolor AdjustColor | |
992 | stroke | |
993 | grestore | |
994 | gsave | |
995 | grestore | |
996 | gsave | |
997 | 267 103 moveto | |
998 | 275 103 lineto | |
999 | 0 setlinecap | |
1000 | 1 setlinejoin | |
1001 | 2 setlinewidth | |
1002 | [] 0 setdash | |
1003 | 0.078 0.910 0.078 setrgbcolor AdjustColor | |
1004 | stroke | |
1005 | grestore | |
1006 | gsave | |
1007 | grestore | |
1008 | gsave | |
1009 | 267 106 moveto | |
1010 | 275 106 lineto | |
1011 | 0 setlinecap | |
1012 | 1 setlinejoin | |
1013 | 2 setlinewidth | |
1014 | [] 0 setdash | |
1015 | 0.078 0.910 0.078 setrgbcolor AdjustColor | |
1016 | stroke | |
1017 | grestore | |
1018 | gsave | |
1019 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
1020 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1021 | 282 105 [ | |
1022 | [(-50)] | |
1023 | ] 12 -0.0 0.5 0 false DrawText | |
1024 | grestore | |
1025 | gsave | |
1026 | 267 109 moveto | |
1027 | 275 109 lineto | |
1028 | 0 setlinecap | |
1029 | 1 setlinejoin | |
1030 | 2 setlinewidth | |
1031 | [] 0 setdash | |
1032 | 0.078 0.910 0.078 setrgbcolor AdjustColor | |
1033 | stroke | |
1034 | grestore | |
1035 | gsave | |
1036 | 267 112 moveto | |
1037 | 275 112 lineto | |
1038 | 0 setlinecap | |
1039 | 1 setlinejoin | |
1040 | 2 setlinewidth | |
1041 | [] 0 setdash | |
1042 | 0.078 0.910 0.078 setrgbcolor AdjustColor | |
1043 | stroke | |
1044 | grestore | |
1045 | gsave | |
1046 | grestore | |
1047 | gsave | |
1048 | 267 115 moveto | |
1049 | 275 115 lineto | |
1050 | 0 setlinecap | |
1051 | 1 setlinejoin | |
1052 | 2 setlinewidth | |
1053 | [] 0 setdash | |
1054 | 0.078 0.910 0.078 setrgbcolor AdjustColor | |
1055 | stroke | |
1056 | grestore | |
1057 | gsave | |
1058 | grestore | |
1059 | gsave | |
1060 | 267 118 moveto | |
1061 | 275 118 lineto | |
1062 | 0 setlinecap | |
1063 | 1 setlinejoin | |
1064 | 2 setlinewidth | |
1065 | [] 0 setdash | |
1066 | 0.078 0.910 0.078 setrgbcolor AdjustColor | |
1067 | stroke | |
1068 | grestore | |
1069 | gsave | |
1070 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
1071 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1072 | 282 117 [ | |
1073 | [(-30)] | |
1074 | ] 12 -0.0 0.5 0 false DrawText | |
1075 | grestore | |
1076 | gsave | |
1077 | 267 121 moveto | |
1078 | 275 121 lineto | |
1079 | 0 setlinecap | |
1080 | 1 setlinejoin | |
1081 | 2 setlinewidth | |
1082 | [] 0 setdash | |
1083 | 0.078 0.910 0.078 setrgbcolor AdjustColor | |
1084 | stroke | |
1085 | grestore | |
1086 | gsave | |
1087 | 267 124 moveto | |
1088 | 275 124 lineto | |
1089 | 0 setlinecap | |
1090 | 1 setlinejoin | |
1091 | 2 setlinewidth | |
1092 | [] 0 setdash | |
1093 | 0.078 0.910 0.078 setrgbcolor AdjustColor | |
1094 | stroke | |
1095 | grestore | |
1096 | gsave | |
1097 | grestore | |
1098 | gsave | |
1099 | 267 127 moveto | |
1100 | 275 127 lineto | |
1101 | 0 setlinecap | |
1102 | 1 setlinejoin | |
1103 | 2 setlinewidth | |
1104 | [] 0 setdash | |
1105 | 0.078 0.910 0.078 setrgbcolor AdjustColor | |
1106 | stroke | |
1107 | grestore | |
1108 | gsave | |
1109 | grestore | |
1110 | gsave | |
1111 | 267 130 moveto | |
1112 | 275 130 lineto | |
1113 | 0 setlinecap | |
1114 | 1 setlinejoin | |
1115 | 2 setlinewidth | |
1116 | [] 0 setdash | |
1117 | 0.078 0.910 0.078 setrgbcolor AdjustColor | |
1118 | stroke | |
1119 | grestore | |
1120 | gsave | |
1121 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
1122 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1123 | 282 129 [ | |
1124 | [(-20)] | |
1125 | ] 12 -0.0 0.5 0 false DrawText | |
1126 | grestore | |
1127 | gsave | |
1128 | 267 133 moveto | |
1129 | 275 133 lineto | |
1130 | 0 setlinecap | |
1131 | 1 setlinejoin | |
1132 | 2 setlinewidth | |
1133 | [] 0 setdash | |
1134 | 0.078 0.910 0.078 setrgbcolor AdjustColor | |
1135 | stroke | |
1136 | grestore | |
1137 | gsave | |
1138 | 267 136 moveto | |
1139 | 275 136 lineto | |
1140 | 0 setlinecap | |
1141 | 1 setlinejoin | |
1142 | 2 setlinewidth | |
1143 | [] 0 setdash | |
1144 | 0.078 0.910 0.078 setrgbcolor AdjustColor | |
1145 | stroke | |
1146 | grestore | |
1147 | gsave | |
1148 | grestore | |
1149 | gsave | |
1150 | 267 139 moveto | |
1151 | 275 139 lineto | |
1152 | 0 setlinecap | |
1153 | 1 setlinejoin | |
1154 | 2 setlinewidth | |
1155 | [] 0 setdash | |
1156 | 0.078 0.910 0.078 setrgbcolor AdjustColor | |
1157 | stroke | |
1158 | grestore | |
1159 | gsave | |
1160 | grestore | |
1161 | gsave | |
1162 | 267 142 moveto | |
1163 | 275 142 lineto | |
1164 | 0 setlinecap | |
1165 | 1 setlinejoin | |
1166 | 2 setlinewidth | |
1167 | [] 0 setdash | |
1168 | 0.910 0.910 0.157 setrgbcolor AdjustColor | |
1169 | stroke | |
1170 | grestore | |
1171 | gsave | |
1172 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
1173 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1174 | 282 141 [ | |
1175 | [(-12)] | |
1176 | ] 12 -0.0 0.5 0 false DrawText | |
1177 | grestore | |
1178 | gsave | |
1179 | 267 145 moveto | |
1180 | 275 145 lineto | |
1181 | 0 setlinecap | |
1182 | 1 setlinejoin | |
1183 | 2 setlinewidth | |
1184 | [] 0 setdash | |
1185 | 0.910 0.910 0.157 setrgbcolor AdjustColor | |
1186 | stroke | |
1187 | grestore | |
1188 | gsave | |
1189 | 267 148 moveto | |
1190 | 275 148 lineto | |
1191 | 0 setlinecap | |
1192 | 1 setlinejoin | |
1193 | 2 setlinewidth | |
1194 | [] 0 setdash | |
1195 | 0.910 0.910 0.157 setrgbcolor AdjustColor | |
1196 | stroke | |
1197 | grestore | |
1198 | gsave | |
1199 | grestore | |
1200 | gsave | |
1201 | 267 151 moveto | |
1202 | 275 151 lineto | |
1203 | 0 setlinecap | |
1204 | 1 setlinejoin | |
1205 | 2 setlinewidth | |
1206 | [] 0 setdash | |
1207 | 0.910 0.910 0.157 setrgbcolor AdjustColor | |
1208 | stroke | |
1209 | grestore | |
1210 | gsave | |
1211 | grestore | |
1212 | gsave | |
1213 | 267 154 moveto | |
1214 | 275 154 lineto | |
1215 | 0 setlinecap | |
1216 | 1 setlinejoin | |
1217 | 2 setlinewidth | |
1218 | [] 0 setdash | |
1219 | 0.910 0.910 0.157 setrgbcolor AdjustColor | |
1220 | stroke | |
1221 | grestore | |
1222 | gsave | |
1223 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
1224 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1225 | 282 153 [ | |
1226 | [(-6)] | |
1227 | ] 12 -0.0 0.5 0 false DrawText | |
1228 | grestore | |
1229 | gsave | |
1230 | 267 157 moveto | |
1231 | 275 157 lineto | |
1232 | 0 setlinecap | |
1233 | 1 setlinejoin | |
1234 | 2 setlinewidth | |
1235 | [] 0 setdash | |
1236 | 0.910 0.910 0.157 setrgbcolor AdjustColor | |
1237 | stroke | |
1238 | grestore | |
1239 | gsave | |
1240 | 267 160 moveto | |
1241 | 275 160 lineto | |
1242 | 0 setlinecap | |
1243 | 1 setlinejoin | |
1244 | 2 setlinewidth | |
1245 | [] 0 setdash | |
1246 | 0.910 0.910 0.157 setrgbcolor AdjustColor | |
1247 | stroke | |
1248 | grestore | |
1249 | gsave | |
1250 | grestore | |
1251 | gsave | |
1252 | 267 163 moveto | |
1253 | 275 163 lineto | |
1254 | 0 setlinecap | |
1255 | 1 setlinejoin | |
1256 | 2 setlinewidth | |
1257 | [] 0 setdash | |
1258 | 0.910 0.910 0.157 setrgbcolor AdjustColor | |
1259 | stroke | |
1260 | grestore | |
1261 | gsave | |
1262 | grestore | |
1263 | gsave | |
1264 | 267 166 moveto | |
1265 | 275 166 lineto | |
1266 | 0 setlinecap | |
1267 | 1 setlinejoin | |
1268 | 2 setlinewidth | |
1269 | [] 0 setdash | |
1270 | 0.910 0.910 0.157 setrgbcolor AdjustColor | |
1271 | stroke | |
1272 | grestore | |
1273 | gsave | |
1274 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
1275 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1276 | 282 165 [ | |
1277 | [(-2)] | |
1278 | ] 12 -0.0 0.5 0 false DrawText | |
1279 | grestore | |
1280 | gsave | |
1281 | 267 169 moveto | |
1282 | 275 169 lineto | |
1283 | 0 setlinecap | |
1284 | 1 setlinejoin | |
1285 | 2 setlinewidth | |
1286 | [] 0 setdash | |
1287 | 0.910 0.910 0.157 setrgbcolor AdjustColor | |
1288 | stroke | |
1289 | grestore | |
1290 | gsave | |
1291 | 267 172 moveto | |
1292 | 275 172 lineto | |
1293 | 0 setlinecap | |
1294 | 1 setlinejoin | |
1295 | 2 setlinewidth | |
1296 | [] 0 setdash | |
1297 | 0.988 0.675 0.267 setrgbcolor AdjustColor | |
1298 | stroke | |
1299 | grestore | |
1300 | gsave | |
1301 | grestore | |
1302 | gsave | |
1303 | 267 175 moveto | |
1304 | 275 175 lineto | |
1305 | 0 setlinecap | |
1306 | 1 setlinejoin | |
1307 | 2 setlinewidth | |
1308 | [] 0 setdash | |
1309 | 0.988 0.675 0.267 setrgbcolor AdjustColor | |
1310 | stroke | |
1311 | grestore | |
1312 | gsave | |
1313 | grestore | |
1314 | gsave | |
1315 | 267 178 moveto | |
1316 | 275 178 lineto | |
1317 | 0 setlinecap | |
1318 | 1 setlinejoin | |
1319 | 2 setlinewidth | |
1320 | [] 0 setdash | |
1321 | 0.988 0.157 0.157 setrgbcolor AdjustColor | |
1322 | stroke | |
1323 | grestore | |
1324 | gsave | |
1325 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
1326 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1327 | 282 177 [ | |
1328 | [(-0dB)] | |
1329 | ] 12 -0.0 0.5 0 false DrawText | |
1330 | grestore | |
1331 | gsave | |
1332 | 267 181 moveto | |
1333 | 275 181 lineto | |
1334 | 0 setlinecap | |
1335 | 1 setlinejoin | |
1336 | 2 setlinewidth | |
1337 | [] 0 setdash | |
1338 | 0.988 0.157 0.157 setrgbcolor AdjustColor | |
1339 | stroke | |
1340 | grestore | |
1341 | gsave | |
1342 | 267 184 moveto | |
1343 | 275 184 lineto | |
1344 | 0 setlinecap | |
1345 | 1 setlinejoin | |
1346 | 2 setlinewidth | |
1347 | [] 0 setdash | |
1348 | 0.988 0.157 0.157 setrgbcolor AdjustColor | |
1349 | stroke | |
1350 | grestore | |
1351 | gsave | |
1352 | grestore | |
1353 | gsave | |
1354 | 267 187 moveto | |
1355 | 275 187 lineto | |
1356 | 0 setlinecap | |
1357 | 1 setlinejoin | |
1358 | 2 setlinewidth | |
1359 | [] 0 setdash | |
1360 | 0.988 0.157 0.157 setrgbcolor AdjustColor | |
1361 | stroke | |
1362 | grestore | |
1363 | gsave | |
1364 | grestore | |
1365 | gsave | |
1366 | 267 190 moveto | |
1367 | 275 190 lineto | |
1368 | 0 setlinecap | |
1369 | 1 setlinejoin | |
1370 | 2 setlinewidth | |
1371 | [] 0 setdash | |
1372 | 0.988 0.157 0.157 setrgbcolor AdjustColor | |
1373 | stroke | |
1374 | grestore | |
1375 | gsave | |
1376 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
1377 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1378 | 282 189 [ | |
1379 | [(+2)] | |
1380 | ] 12 -0.0 0.5 0 false DrawText | |
1381 | grestore | |
1382 | gsave | |
1383 | 267 193 moveto | |
1384 | 275 193 lineto | |
1385 | 0 setlinecap | |
1386 | 1 setlinejoin | |
1387 | 2 setlinewidth | |
1388 | [] 0 setdash | |
1389 | 0.988 0.157 0.157 setrgbcolor AdjustColor | |
1390 | stroke | |
1391 | grestore | |
1392 | gsave | |
1393 | 267 196 moveto | |
1394 | 275 196 lineto | |
1395 | 0 setlinecap | |
1396 | 1 setlinejoin | |
1397 | 2 setlinewidth | |
1398 | [] 0 setdash | |
1399 | 0.988 0.157 0.157 setrgbcolor AdjustColor | |
1400 | stroke | |
1401 | grestore | |
1402 | gsave | |
1403 | grestore | |
1404 | gsave | |
1405 | 267 199 moveto | |
1406 | 275 199 lineto | |
1407 | 0 setlinecap | |
1408 | 1 setlinejoin | |
1409 | 2 setlinewidth | |
1410 | [] 0 setdash | |
1411 | 0.988 0.157 0.157 setrgbcolor AdjustColor | |
1412 | stroke | |
1413 | grestore | |
1414 | gsave | |
1415 | grestore | |
1416 | gsave | |
1417 | 267 202 moveto | |
1418 | 275 202 lineto | |
1419 | 0 setlinecap | |
1420 | 1 setlinejoin | |
1421 | 2 setlinewidth | |
1422 | [] 0 setdash | |
1423 | 0.988 0.157 0.157 setrgbcolor AdjustColor | |
1424 | stroke | |
1425 | grestore | |
1426 | gsave | |
1427 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
1428 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1429 | 282 201 [ | |
1430 | [(+6)] | |
1431 | ] 12 -0.0 0.5 0 false DrawText | |
1432 | grestore | |
1433 | gsave | |
1434 | 267 205 moveto | |
1435 | 275 205 lineto | |
1436 | 0 setlinecap | |
1437 | 1 setlinejoin | |
1438 | 2 setlinewidth | |
1439 | [] 0 setdash | |
1440 | 0.988 0.157 0.157 setrgbcolor AdjustColor | |
1441 | stroke | |
1442 | grestore | |
1443 | gsave | |
1444 | 267 208 moveto | |
1445 | 275 208 lineto | |
1446 | 0 setlinecap | |
1447 | 1 setlinejoin | |
1448 | 2 setlinewidth | |
1449 | [] 0 setdash | |
1450 | 0.988 0.157 0.157 setrgbcolor AdjustColor | |
1451 | stroke | |
1452 | grestore | |
1453 | gsave | |
1454 | grestore | |
1455 | gsave | |
1456 | 267 211 moveto | |
1457 | 275 211 lineto | |
1458 | 0 setlinecap | |
1459 | 1 setlinejoin | |
1460 | 2 setlinewidth | |
1461 | [] 0 setdash | |
1462 | 0.957 0.188 0.941 setrgbcolor AdjustColor | |
1463 | stroke | |
1464 | grestore | |
1465 | gsave | |
1466 | grestore | |
1467 | gsave | |
1468 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
1469 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1470 | 282 213 [ | |
1471 | [(>+12)] | |
1472 | ] 12 -0.0 0.5 0 false DrawText | |
1473 | grestore | |
1474 | gsave | |
1475 | 267 214 moveto 7 0 rlineto 0 -93 rlineto -7 0 rlineto closepath | |
1476 | 0.251 0.251 0.251 setrgbcolor AdjustColor | |
1477 | fill | |
1478 | 267 214 moveto 7 0 rlineto 0 -93 rlineto -7 0 rlineto closepath | |
1479 | 0 setlinejoin 2 setlinecap | |
1480 | 1 setlinewidth | |
1481 | [] 0 setdash | |
1482 | 0.251 0.251 0.251 setrgbcolor AdjustColor | |
1483 | stroke | |
1484 | grestore | |
1485 | gsave | |
1486 | 270 193 moveto | |
1487 | 270 193 lineto | |
1488 | 0 setlinecap | |
1489 | 1 setlinejoin | |
1490 | 2 setlinewidth | |
1491 | [] 0 setdash | |
1492 | 0.251 0.251 0.251 setrgbcolor AdjustColor | |
1493 | stroke | |
1494 | grestore | |
1495 | gsave | |
1496 | grestore | |
1497 | gsave | |
1498 | 262 92 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1499 | 0 setlinejoin 2 setlinecap | |
1500 | 1 setlinewidth | |
1501 | [] 0 setdash | |
1502 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1503 | stroke | |
1504 | grestore | |
1505 | gsave | |
1506 | 272 92 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1507 | 0 setlinejoin 2 setlinecap | |
1508 | 1 setlinewidth | |
1509 | [] 0 setdash | |
1510 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1511 | stroke | |
1512 | grestore | |
1513 | gsave | |
1514 | 262 215 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1515 | 0 setlinejoin 2 setlinecap | |
1516 | 1 setlinewidth | |
1517 | [] 0 setdash | |
1518 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1519 | stroke | |
1520 | grestore | |
1521 | gsave | |
1522 | 272 215 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1523 | 0 setlinejoin 2 setlinecap | |
1524 | 1 setlinewidth | |
1525 | [] 0 setdash | |
1526 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1527 | stroke | |
1528 | grestore | |
1529 | gsave | |
1530 | 262 239 moveto | |
1531 | 296 239 lineto | |
1532 | 296 223 lineto | |
1533 | 262 223 lineto | |
1534 | 262 239 lineto | |
1535 | 0 setlinecap | |
1536 | 1 setlinejoin | |
1537 | 1 setlinewidth | |
1538 | [] 0 setdash | |
1539 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1540 | stroke | |
1541 | grestore | |
1542 | gsave | |
1543 | 262 224 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1544 | 0 setlinejoin 2 setlinecap | |
1545 | 1 setlinewidth | |
1546 | [] 0 setdash | |
1547 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1548 | stroke | |
1549 | grestore | |
1550 | gsave | |
1551 | 262 239 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1552 | 0 setlinejoin 2 setlinecap | |
1553 | 1 setlinewidth | |
1554 | [] 0 setdash | |
1555 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1556 | stroke | |
1557 | grestore | |
1558 | gsave | |
1559 | 289 239 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1560 | 0 setlinejoin 2 setlinecap | |
1561 | 1 setlinewidth | |
1562 | [] 0 setdash | |
1563 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1564 | stroke | |
1565 | grestore | |
1566 | gsave | |
1567 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
1568 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1569 | 264 237 [ | |
1570 | [(- 100)] | |
1571 | ] 12 -0.0 0.0 0 false DrawText | |
1572 | grestore | |
1573 | gsave | |
1574 | 262 260 moveto | |
1575 | 290 260 lineto | |
1576 | 290 244 lineto | |
1577 | 262 244 lineto | |
1578 | 262 260 lineto | |
1579 | 0 setlinecap | |
1580 | 1 setlinejoin | |
1581 | 1 setlinewidth | |
1582 | [] 0 setdash | |
1583 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1584 | stroke | |
1585 | grestore | |
1586 | gsave | |
1587 | 262 245 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1588 | 0 setlinejoin 2 setlinecap | |
1589 | 1 setlinewidth | |
1590 | [] 0 setdash | |
1591 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1592 | stroke | |
1593 | grestore | |
1594 | gsave | |
1595 | 262 260 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1596 | 0 setlinejoin 2 setlinecap | |
1597 | 1 setlinewidth | |
1598 | [] 0 setdash | |
1599 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1600 | stroke | |
1601 | grestore | |
1602 | gsave | |
1603 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
1604 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1605 | 264 258 [ | |
1606 | [(env~)] | |
1607 | ] 12 -0.0 0.0 0 false DrawText | |
1608 | grestore | |
1609 | gsave | |
1610 | 314 261 moveto 15 0 rlineto 0 -133 rlineto -15 0 rlineto closepath | |
1611 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
1612 | fill | |
1613 | 314 261 moveto 15 0 rlineto 0 -133 rlineto -15 0 rlineto closepath | |
1614 | 0 setlinejoin 2 setlinecap | |
1615 | 1 setlinewidth | |
1616 | [] 0 setdash | |
1617 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1618 | stroke | |
1619 | grestore | |
1620 | gsave | |
1621 | 315 252 moveto | |
1622 | 329 252 lineto | |
1623 | 0 setlinecap | |
1624 | 1 setlinejoin | |
1625 | 3 setlinewidth | |
1626 | [] 0 setdash | |
1627 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1628 | stroke | |
1629 | grestore | |
1630 | gsave | |
1631 | grestore | |
1632 | gsave | |
1633 | 314 129 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1634 | 0 setlinejoin 2 setlinecap | |
1635 | 1 setlinewidth | |
1636 | [] 0 setdash | |
1637 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1638 | stroke | |
1639 | grestore | |
1640 | gsave | |
1641 | 314 261 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1642 | 0 setlinejoin 2 setlinecap | |
1643 | 1 setlinewidth | |
1644 | [] 0 setdash | |
1645 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1646 | stroke | |
1647 | grestore | |
1648 | gsave | |
1649 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
1650 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1651 | 142 532 [ | |
1652 | [( )] | |
1653 | ] 12 -0.0 0.0 0 false DrawText | |
1654 | grestore | |
1655 | gsave | |
1656 | 237 72 moveto | |
1657 | 271 72 lineto | |
1658 | 271 56 lineto | |
1659 | 237 56 lineto | |
1660 | 237 72 lineto | |
1661 | 0 setlinecap | |
1662 | 1 setlinejoin | |
1663 | 1 setlinewidth | |
1664 | [] 0 setdash | |
1665 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1666 | stroke | |
1667 | grestore | |
1668 | gsave | |
1669 | 237 57 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1670 | 0 setlinejoin 2 setlinecap | |
1671 | 1 setlinewidth | |
1672 | [] 0 setdash | |
1673 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1674 | stroke | |
1675 | grestore | |
1676 | gsave | |
1677 | 237 72 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1678 | 0 setlinejoin 2 setlinecap | |
1679 | 1 setlinewidth | |
1680 | [] 0 setdash | |
1681 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1682 | stroke | |
1683 | grestore | |
1684 | gsave | |
1685 | 264 72 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1686 | 0 setlinejoin 2 setlinecap | |
1687 | 1 setlinewidth | |
1688 | [] 0 setdash | |
1689 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1690 | stroke | |
1691 | grestore | |
1692 | gsave | |
1693 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
1694 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1695 | 239 70 [ | |
1696 | [(* 0.1)] | |
1697 | ] 12 -0.0 0.0 0 false DrawText | |
1698 | grestore | |
1699 | gsave | |
1700 | 314 107 moveto 15 0 rlineto 0 -15 rlineto -15 0 rlineto closepath | |
1701 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
1702 | fill | |
1703 | 314 107 moveto 15 0 rlineto 0 -15 rlineto -15 0 rlineto closepath | |
1704 | 0 setlinejoin 2 setlinecap | |
1705 | 1 setlinewidth | |
1706 | [] 0 setdash | |
1707 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1708 | stroke | |
1709 | grestore | |
1710 | gsave | |
1711 | 316 105 moveto | |
1712 | 328 93 lineto | |
1713 | 0 setlinecap | |
1714 | 1 setlinejoin | |
1715 | 1 setlinewidth | |
1716 | [] 0 setdash | |
1717 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1718 | stroke | |
1719 | grestore | |
1720 | gsave | |
1721 | 316 94 moveto | |
1722 | 328 106 lineto | |
1723 | 0 setlinecap | |
1724 | 1 setlinejoin | |
1725 | 1 setlinewidth | |
1726 | [] 0 setdash | |
1727 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1728 | stroke | |
1729 | grestore | |
1730 | gsave | |
1731 | grestore | |
1732 | gsave | |
1733 | 314 93 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1734 | 0 setlinejoin 2 setlinecap | |
1735 | 1 setlinewidth | |
1736 | [] 0 setdash | |
1737 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1738 | stroke | |
1739 | grestore | |
1740 | gsave | |
1741 | 314 107 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1742 | 0 setlinejoin 2 setlinecap | |
1743 | 1 setlinewidth | |
1744 | [] 0 setdash | |
1745 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1746 | stroke | |
1747 | grestore | |
1748 | gsave | |
1749 | 598 495 moveto | |
1750 | 626 495 lineto | |
1751 | 626 479 lineto | |
1752 | 598 479 lineto | |
1753 | 598 495 lineto | |
1754 | 0 setlinecap | |
1755 | 1 setlinejoin | |
1756 | 1 setlinewidth | |
1757 | [] 0 setdash | |
1758 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1759 | stroke | |
1760 | grestore | |
1761 | gsave | |
1762 | 598 480 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1763 | 0 setlinejoin 2 setlinecap | |
1764 | 1 setlinewidth | |
1765 | [] 0 setdash | |
1766 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1767 | stroke | |
1768 | grestore | |
1769 | gsave | |
1770 | 598 495 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1771 | 0 setlinejoin 2 setlinecap | |
1772 | 1 setlinewidth | |
1773 | [] 0 setdash | |
1774 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1775 | stroke | |
1776 | grestore | |
1777 | gsave | |
1778 | 619 495 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1779 | 0 setlinejoin 2 setlinecap | |
1780 | 1 setlinewidth | |
1781 | [] 0 setdash | |
1782 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1783 | stroke | |
1784 | grestore | |
1785 | gsave | |
1786 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
1787 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1788 | 600 493 [ | |
1789 | [(osc~)] | |
1790 | ] 12 -0.0 0.0 0 false DrawText | |
1791 | grestore | |
1792 | gsave | |
1793 | 644 471 moveto 15 0 rlineto 0 -15 rlineto -15 0 rlineto closepath | |
1794 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
1795 | fill | |
1796 | 644 471 moveto 15 0 rlineto 0 -15 rlineto -15 0 rlineto closepath | |
1797 | 0 setlinejoin 2 setlinecap | |
1798 | 1 setlinewidth | |
1799 | [] 0 setdash | |
1800 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1801 | stroke | |
1802 | grestore | |
1803 | gsave | |
1804 | 646 469 moveto | |
1805 | 658 457 lineto | |
1806 | 0 setlinecap | |
1807 | 1 setlinejoin | |
1808 | 1 setlinewidth | |
1809 | [] 0 setdash | |
1810 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
1811 | stroke | |
1812 | grestore | |
1813 | gsave | |
1814 | 646 458 moveto | |
1815 | 658 470 lineto | |
1816 | 0 setlinecap | |
1817 | 1 setlinejoin | |
1818 | 1 setlinewidth | |
1819 | [] 0 setdash | |
1820 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
1821 | stroke | |
1822 | grestore | |
1823 | gsave | |
1824 | grestore | |
1825 | gsave | |
1826 | 644 457 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1827 | 0 setlinejoin 2 setlinecap | |
1828 | 1 setlinewidth | |
1829 | [] 0 setdash | |
1830 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1831 | stroke | |
1832 | grestore | |
1833 | gsave | |
1834 | 644 471 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1835 | 0 setlinejoin 2 setlinecap | |
1836 | 1 setlinewidth | |
1837 | [] 0 setdash | |
1838 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1839 | stroke | |
1840 | grestore | |
1841 | gsave | |
1842 | 589 586 moveto 133 0 rlineto 0 -15 rlineto -133 0 rlineto closepath | |
1843 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
1844 | fill | |
1845 | 589 586 moveto 133 0 rlineto 0 -15 rlineto -133 0 rlineto closepath | |
1846 | 0 setlinejoin 2 setlinecap | |
1847 | 1 setlinewidth | |
1848 | [] 0 setdash | |
1849 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1850 | stroke | |
1851 | grestore | |
1852 | gsave | |
1853 | 639 585 moveto | |
1854 | 639 571 lineto | |
1855 | 0 setlinecap | |
1856 | 1 setlinejoin | |
1857 | 3 setlinewidth | |
1858 | [] 0 setdash | |
1859 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1860 | stroke | |
1861 | grestore | |
1862 | gsave | |
1863 | grestore | |
1864 | gsave | |
1865 | 589 572 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1866 | 0 setlinejoin 2 setlinecap | |
1867 | 1 setlinewidth | |
1868 | [] 0 setdash | |
1869 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1870 | stroke | |
1871 | grestore | |
1872 | gsave | |
1873 | 589 586 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1874 | 0 setlinejoin 2 setlinecap | |
1875 | 1 setlinewidth | |
1876 | [] 0 setdash | |
1877 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1878 | stroke | |
1879 | grestore | |
1880 | gsave | |
1881 | 692 550 moveto 133 0 rlineto 0 -15 rlineto -133 0 rlineto closepath | |
1882 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
1883 | fill | |
1884 | 692 550 moveto 133 0 rlineto 0 -15 rlineto -133 0 rlineto closepath | |
1885 | 0 setlinejoin 2 setlinecap | |
1886 | 1 setlinewidth | |
1887 | [] 0 setdash | |
1888 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1889 | stroke | |
1890 | grestore | |
1891 | gsave | |
1892 | 705 549 moveto | |
1893 | 705 535 lineto | |
1894 | 0 setlinecap | |
1895 | 1 setlinejoin | |
1896 | 3 setlinewidth | |
1897 | [] 0 setdash | |
1898 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1899 | stroke | |
1900 | grestore | |
1901 | gsave | |
1902 | grestore | |
1903 | gsave | |
1904 | 692 536 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1905 | 0 setlinejoin 2 setlinecap | |
1906 | 1 setlinewidth | |
1907 | [] 0 setdash | |
1908 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1909 | stroke | |
1910 | grestore | |
1911 | gsave | |
1912 | 692 550 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1913 | 0 setlinejoin 2 setlinecap | |
1914 | 1 setlinewidth | |
1915 | [] 0 setdash | |
1916 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1917 | stroke | |
1918 | grestore | |
1919 | gsave | |
1920 | 596 533 moveto | |
1921 | 636 533 lineto | |
1922 | 636 517 lineto | |
1923 | 596 517 lineto | |
1924 | 596 533 lineto | |
1925 | 0 setlinecap | |
1926 | 1 setlinejoin | |
1927 | 1 setlinewidth | |
1928 | [] 0 setdash | |
1929 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1930 | stroke | |
1931 | grestore | |
1932 | gsave | |
1933 | 596 518 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1934 | 0 setlinejoin 2 setlinecap | |
1935 | 1 setlinewidth | |
1936 | [] 0 setdash | |
1937 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1938 | stroke | |
1939 | grestore | |
1940 | gsave | |
1941 | 596 533 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1942 | 0 setlinejoin 2 setlinecap | |
1943 | 1 setlinewidth | |
1944 | [] 0 setdash | |
1945 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1946 | stroke | |
1947 | grestore | |
1948 | gsave | |
1949 | 629 533 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1950 | 0 setlinejoin 2 setlinecap | |
1951 | 1 setlinewidth | |
1952 | [] 0 setdash | |
1953 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1954 | stroke | |
1955 | grestore | |
1956 | gsave | |
1957 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
1958 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1959 | 598 531 [ | |
1960 | [(random)] | |
1961 | ] 12 -0.0 0.0 0 false DrawText | |
1962 | grestore | |
1963 | gsave | |
1964 | 671 526 moveto | |
1965 | 699 526 lineto | |
1966 | 699 510 lineto | |
1967 | 671 510 lineto | |
1968 | 671 526 lineto | |
1969 | 0 setlinecap | |
1970 | 1 setlinejoin | |
1971 | 1 setlinewidth | |
1972 | [] 0 setdash | |
1973 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1974 | stroke | |
1975 | grestore | |
1976 | gsave | |
1977 | 671 511 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1978 | 0 setlinejoin 2 setlinecap | |
1979 | 1 setlinewidth | |
1980 | [] 0 setdash | |
1981 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1982 | stroke | |
1983 | grestore | |
1984 | gsave | |
1985 | 671 526 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1986 | 0 setlinejoin 2 setlinecap | |
1987 | 1 setlinewidth | |
1988 | [] 0 setdash | |
1989 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1990 | stroke | |
1991 | grestore | |
1992 | gsave | |
1993 | 692 526 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
1994 | 0 setlinejoin 2 setlinecap | |
1995 | 1 setlinewidth | |
1996 | [] 0 setdash | |
1997 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
1998 | stroke | |
1999 | grestore | |
2000 | gsave | |
2001 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2002 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2003 | 673 524 [ | |
2004 | [(* 10)] | |
2005 | ] 12 -0.0 0.0 0 false DrawText | |
2006 | grestore | |
2007 | gsave | |
2008 | 602 559 moveto | |
2009 | 636 559 lineto | |
2010 | 636 543 lineto | |
2011 | 602 543 lineto | |
2012 | 602 559 lineto | |
2013 | 0 setlinecap | |
2014 | 1 setlinejoin | |
2015 | 1 setlinewidth | |
2016 | [] 0 setdash | |
2017 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2018 | stroke | |
2019 | grestore | |
2020 | gsave | |
2021 | 602 544 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2022 | 0 setlinejoin 2 setlinecap | |
2023 | 1 setlinewidth | |
2024 | [] 0 setdash | |
2025 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2026 | stroke | |
2027 | grestore | |
2028 | gsave | |
2029 | 602 559 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2030 | 0 setlinejoin 2 setlinecap | |
2031 | 1 setlinewidth | |
2032 | [] 0 setdash | |
2033 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2034 | stroke | |
2035 | grestore | |
2036 | gsave | |
2037 | 629 559 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2038 | 0 setlinejoin 2 setlinecap | |
2039 | 1 setlinewidth | |
2040 | [] 0 setdash | |
2041 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2042 | stroke | |
2043 | grestore | |
2044 | gsave | |
2045 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2046 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2047 | 604 557 [ | |
2048 | [(metro)] | |
2049 | ] 12 -0.0 0.0 0 false DrawText | |
2050 | grestore | |
2051 | gsave | |
2052 | 565 251 moveto 133 0 rlineto 0 -15 rlineto -133 0 rlineto closepath | |
2053 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
2054 | fill | |
2055 | 565 251 moveto 133 0 rlineto 0 -15 rlineto -133 0 rlineto closepath | |
2056 | 0 setlinejoin 2 setlinecap | |
2057 | 1 setlinewidth | |
2058 | [] 0 setdash | |
2059 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2060 | stroke | |
2061 | grestore | |
2062 | gsave | |
2063 | 591 250 moveto | |
2064 | 591 236 lineto | |
2065 | 0 setlinecap | |
2066 | 1 setlinejoin | |
2067 | 3 setlinewidth | |
2068 | [] 0 setdash | |
2069 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2070 | stroke | |
2071 | grestore | |
2072 | gsave | |
2073 | grestore | |
2074 | gsave | |
2075 | 565 237 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2076 | 0 setlinejoin 2 setlinecap | |
2077 | 1 setlinewidth | |
2078 | [] 0 setdash | |
2079 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2080 | stroke | |
2081 | grestore | |
2082 | gsave | |
2083 | 565 251 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2084 | 0 setlinejoin 2 setlinecap | |
2085 | 1 setlinewidth | |
2086 | [] 0 setdash | |
2087 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2088 | stroke | |
2089 | grestore | |
2090 | gsave | |
2091 | 524 243 moveto | |
2092 | 550 243 lineto | |
2093 | 546 239 lineto | |
2094 | 546 231 lineto | |
2095 | 550 227 lineto | |
2096 | 524 227 lineto | |
2097 | 524 243 lineto | |
2098 | 0 setlinecap | |
2099 | 1 setlinejoin | |
2100 | 1 setlinewidth | |
2101 | [] 0 setdash | |
2102 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2103 | stroke | |
2104 | grestore | |
2105 | gsave | |
2106 | 524 228 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2107 | 0 setlinejoin 2 setlinecap | |
2108 | 1 setlinewidth | |
2109 | [] 0 setdash | |
2110 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2111 | stroke | |
2112 | grestore | |
2113 | gsave | |
2114 | 524 243 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2115 | 0 setlinejoin 2 setlinecap | |
2116 | 1 setlinewidth | |
2117 | [] 0 setdash | |
2118 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2119 | stroke | |
2120 | grestore | |
2121 | gsave | |
2122 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2123 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2124 | 526 241 [ | |
2125 | [(0 )] | |
2126 | ] 12 -0.0 0.0 0 false DrawText | |
2127 | grestore | |
2128 | gsave | |
2129 | 222 526 moveto | |
2130 | 244 526 lineto | |
2131 | 244 510 lineto | |
2132 | 222 510 lineto | |
2133 | 222 526 lineto | |
2134 | 0 setlinecap | |
2135 | 1 setlinejoin | |
2136 | 1 setlinewidth | |
2137 | [] 0 setdash | |
2138 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2139 | stroke | |
2140 | grestore | |
2141 | gsave | |
2142 | 222 511 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2143 | 0 setlinejoin 2 setlinecap | |
2144 | 1 setlinewidth | |
2145 | [] 0 setdash | |
2146 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2147 | stroke | |
2148 | grestore | |
2149 | gsave | |
2150 | 222 526 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2151 | 0 setlinejoin 2 setlinecap | |
2152 | 1 setlinewidth | |
2153 | [] 0 setdash | |
2154 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2155 | stroke | |
2156 | grestore | |
2157 | gsave | |
2158 | 237 526 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2159 | 0 setlinejoin 2 setlinecap | |
2160 | 1 setlinewidth | |
2161 | [] 0 setdash | |
2162 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2163 | stroke | |
2164 | grestore | |
2165 | gsave | |
2166 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2167 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2168 | 224 524 [ | |
2169 | [(*~ )] | |
2170 | ] 12 -0.0 0.0 0 false DrawText | |
2171 | grestore | |
2172 | gsave | |
2173 | 286 526 moveto | |
2174 | 314 526 lineto | |
2175 | 314 510 lineto | |
2176 | 286 510 lineto | |
2177 | 286 526 lineto | |
2178 | 0 setlinecap | |
2179 | 1 setlinejoin | |
2180 | 1 setlinewidth | |
2181 | [] 0 setdash | |
2182 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2183 | stroke | |
2184 | grestore | |
2185 | gsave | |
2186 | 286 511 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2187 | 0 setlinejoin 2 setlinecap | |
2188 | 1 setlinewidth | |
2189 | [] 0 setdash | |
2190 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2191 | stroke | |
2192 | grestore | |
2193 | gsave | |
2194 | 286 526 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2195 | 0 setlinejoin 2 setlinecap | |
2196 | 1 setlinewidth | |
2197 | [] 0 setdash | |
2198 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2199 | stroke | |
2200 | grestore | |
2201 | gsave | |
2202 | 307 526 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2203 | 0 setlinejoin 2 setlinecap | |
2204 | 1 setlinewidth | |
2205 | [] 0 setdash | |
2206 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2207 | stroke | |
2208 | grestore | |
2209 | gsave | |
2210 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2211 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2212 | 288 524 [ | |
2213 | [(osc~)] | |
2214 | ] 12 -0.0 0.0 0 false DrawText | |
2215 | grestore | |
2216 | gsave | |
2217 | 344 575 moveto 133 0 rlineto 0 -15 rlineto -133 0 rlineto closepath | |
2218 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
2219 | fill | |
2220 | 344 575 moveto 133 0 rlineto 0 -15 rlineto -133 0 rlineto closepath | |
2221 | 0 setlinejoin 2 setlinecap | |
2222 | 1 setlinewidth | |
2223 | [] 0 setdash | |
2224 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2225 | stroke | |
2226 | grestore | |
2227 | gsave | |
2228 | 351 574 moveto | |
2229 | 351 560 lineto | |
2230 | 0 setlinecap | |
2231 | 1 setlinejoin | |
2232 | 3 setlinewidth | |
2233 | [] 0 setdash | |
2234 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2235 | stroke | |
2236 | grestore | |
2237 | gsave | |
2238 | grestore | |
2239 | gsave | |
2240 | 344 561 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2241 | 0 setlinejoin 2 setlinecap | |
2242 | 1 setlinewidth | |
2243 | [] 0 setdash | |
2244 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2245 | stroke | |
2246 | grestore | |
2247 | gsave | |
2248 | 344 575 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2249 | 0 setlinejoin 2 setlinecap | |
2250 | 1 setlinewidth | |
2251 | [] 0 setdash | |
2252 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2253 | stroke | |
2254 | grestore | |
2255 | gsave | |
2256 | 261 547 moveto | |
2257 | 287 547 lineto | |
2258 | 283 543 lineto | |
2259 | 283 535 lineto | |
2260 | 287 531 lineto | |
2261 | 261 531 lineto | |
2262 | 261 547 lineto | |
2263 | 0 setlinecap | |
2264 | 1 setlinejoin | |
2265 | 1 setlinewidth | |
2266 | [] 0 setdash | |
2267 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2268 | stroke | |
2269 | grestore | |
2270 | gsave | |
2271 | 261 532 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2272 | 0 setlinejoin 2 setlinecap | |
2273 | 1 setlinewidth | |
2274 | [] 0 setdash | |
2275 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2276 | stroke | |
2277 | grestore | |
2278 | gsave | |
2279 | 261 547 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2280 | 0 setlinejoin 2 setlinecap | |
2281 | 1 setlinewidth | |
2282 | [] 0 setdash | |
2283 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2284 | stroke | |
2285 | grestore | |
2286 | gsave | |
2287 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2288 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2289 | 263 545 [ | |
2290 | [(0 )] | |
2291 | ] 12 -0.0 0.0 0 false DrawText | |
2292 | grestore | |
2293 | gsave | |
2294 | 285 502 moveto | |
2295 | 319 502 lineto | |
2296 | 319 486 lineto | |
2297 | 285 486 lineto | |
2298 | 285 502 lineto | |
2299 | 0 setlinecap | |
2300 | 1 setlinejoin | |
2301 | 1 setlinewidth | |
2302 | [] 0 setdash | |
2303 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2304 | stroke | |
2305 | grestore | |
2306 | gsave | |
2307 | 285 487 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2308 | 0 setlinejoin 2 setlinecap | |
2309 | 1 setlinewidth | |
2310 | [] 0 setdash | |
2311 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2312 | stroke | |
2313 | grestore | |
2314 | gsave | |
2315 | 285 502 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2316 | 0 setlinejoin 2 setlinecap | |
2317 | 1 setlinewidth | |
2318 | [] 0 setdash | |
2319 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2320 | stroke | |
2321 | grestore | |
2322 | gsave | |
2323 | 312 502 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2324 | 0 setlinejoin 2 setlinecap | |
2325 | 1 setlinewidth | |
2326 | [] 0 setdash | |
2327 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2328 | stroke | |
2329 | grestore | |
2330 | gsave | |
2331 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2332 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2333 | 287 500 [ | |
2334 | [(/~ 10)] | |
2335 | ] 12 -0.0 0.0 0 false DrawText | |
2336 | grestore | |
2337 | gsave | |
2338 | 450 316 moveto | |
2339 | 478 316 lineto | |
2340 | 478 300 lineto | |
2341 | 450 300 lineto | |
2342 | 450 316 lineto | |
2343 | 0 setlinecap | |
2344 | 1 setlinejoin | |
2345 | 1 setlinewidth | |
2346 | [] 0 setdash | |
2347 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2348 | stroke | |
2349 | grestore | |
2350 | gsave | |
2351 | 450 301 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2352 | 0 setlinejoin 2 setlinecap | |
2353 | 1 setlinewidth | |
2354 | [] 0 setdash | |
2355 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2356 | stroke | |
2357 | grestore | |
2358 | gsave | |
2359 | 471 301 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2360 | 0 setlinejoin 2 setlinecap | |
2361 | 1 setlinewidth | |
2362 | [] 0 setdash | |
2363 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2364 | stroke | |
2365 | grestore | |
2366 | gsave | |
2367 | 450 316 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2368 | 0 setlinejoin 2 setlinecap | |
2369 | 1 setlinewidth | |
2370 | [] 0 setdash | |
2371 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2372 | stroke | |
2373 | grestore | |
2374 | gsave | |
2375 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2376 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2377 | 452 314 [ | |
2378 | [(adc~)] | |
2379 | ] 12 -0.0 0.0 0 false DrawText | |
2380 | grestore | |
2381 | gsave | |
2382 | 456 290 moveto | |
2383 | 478 290 lineto | |
2384 | 478 274 lineto | |
2385 | 456 274 lineto | |
2386 | 456 290 lineto | |
2387 | 0 setlinecap | |
2388 | 1 setlinejoin | |
2389 | 1 setlinewidth | |
2390 | [] 0 setdash | |
2391 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2392 | stroke | |
2393 | grestore | |
2394 | gsave | |
2395 | 456 275 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2396 | 0 setlinejoin 2 setlinecap | |
2397 | 1 setlinewidth | |
2398 | [] 0 setdash | |
2399 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2400 | stroke | |
2401 | grestore | |
2402 | gsave | |
2403 | 456 290 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2404 | 0 setlinejoin 2 setlinecap | |
2405 | 1 setlinewidth | |
2406 | [] 0 setdash | |
2407 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2408 | stroke | |
2409 | grestore | |
2410 | gsave | |
2411 | 471 290 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2412 | 0 setlinejoin 2 setlinecap | |
2413 | 1 setlinewidth | |
2414 | [] 0 setdash | |
2415 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2416 | stroke | |
2417 | grestore | |
2418 | gsave | |
2419 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2420 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2421 | 458 288 [ | |
2422 | [(+~ )] | |
2423 | ] 12 -0.0 0.0 0 false DrawText | |
2424 | grestore | |
2425 | gsave | |
2426 | 548 198 moveto | |
2427 | 576 198 lineto | |
2428 | 576 182 lineto | |
2429 | 548 182 lineto | |
2430 | 548 198 lineto | |
2431 | 0 setlinecap | |
2432 | 1 setlinejoin | |
2433 | 1 setlinewidth | |
2434 | [] 0 setdash | |
2435 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2436 | stroke | |
2437 | grestore | |
2438 | gsave | |
2439 | 548 183 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2440 | 0 setlinejoin 2 setlinecap | |
2441 | 1 setlinewidth | |
2442 | [] 0 setdash | |
2443 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2444 | stroke | |
2445 | grestore | |
2446 | gsave | |
2447 | 548 198 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2448 | 0 setlinejoin 2 setlinecap | |
2449 | 1 setlinewidth | |
2450 | [] 0 setdash | |
2451 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2452 | stroke | |
2453 | grestore | |
2454 | gsave | |
2455 | 569 198 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2456 | 0 setlinejoin 2 setlinecap | |
2457 | 1 setlinewidth | |
2458 | [] 0 setdash | |
2459 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2460 | stroke | |
2461 | grestore | |
2462 | gsave | |
2463 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2464 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2465 | 550 196 [ | |
2466 | [(/~ 1)] | |
2467 | ] 12 -0.0 0.0 0 false DrawText | |
2468 | grestore | |
2469 | gsave | |
2470 | 470 249 moveto | |
2471 | 492 249 lineto | |
2472 | 492 233 lineto | |
2473 | 470 233 lineto | |
2474 | 470 249 lineto | |
2475 | 0 setlinecap | |
2476 | 1 setlinejoin | |
2477 | 1 setlinewidth | |
2478 | [] 0 setdash | |
2479 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2480 | stroke | |
2481 | grestore | |
2482 | gsave | |
2483 | 470 234 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2484 | 0 setlinejoin 2 setlinecap | |
2485 | 1 setlinewidth | |
2486 | [] 0 setdash | |
2487 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2488 | stroke | |
2489 | grestore | |
2490 | gsave | |
2491 | 470 249 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2492 | 0 setlinejoin 2 setlinecap | |
2493 | 1 setlinewidth | |
2494 | [] 0 setdash | |
2495 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2496 | stroke | |
2497 | grestore | |
2498 | gsave | |
2499 | 485 249 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2500 | 0 setlinejoin 2 setlinecap | |
2501 | 1 setlinewidth | |
2502 | [] 0 setdash | |
2503 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2504 | stroke | |
2505 | grestore | |
2506 | gsave | |
2507 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2508 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2509 | 472 247 [ | |
2510 | [(*~ )] | |
2511 | ] 12 -0.0 0.0 0 false DrawText | |
2512 | grestore | |
2513 | gsave | |
2514 | 525 292 moveto 133 0 rlineto 0 -15 rlineto -133 0 rlineto closepath | |
2515 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
2516 | fill | |
2517 | 525 292 moveto 133 0 rlineto 0 -15 rlineto -133 0 rlineto closepath | |
2518 | 0 setlinejoin 2 setlinecap | |
2519 | 1 setlinewidth | |
2520 | [] 0 setdash | |
2521 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2522 | stroke | |
2523 | grestore | |
2524 | gsave | |
2525 | 548 291 moveto | |
2526 | 548 277 lineto | |
2527 | 0 setlinecap | |
2528 | 1 setlinejoin | |
2529 | 3 setlinewidth | |
2530 | [] 0 setdash | |
2531 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2532 | stroke | |
2533 | grestore | |
2534 | gsave | |
2535 | grestore | |
2536 | gsave | |
2537 | 525 278 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2538 | 0 setlinejoin 2 setlinecap | |
2539 | 1 setlinewidth | |
2540 | [] 0 setdash | |
2541 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2542 | stroke | |
2543 | grestore | |
2544 | gsave | |
2545 | 525 292 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2546 | 0 setlinejoin 2 setlinecap | |
2547 | 1 setlinewidth | |
2548 | [] 0 setdash | |
2549 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2550 | stroke | |
2551 | grestore | |
2552 | gsave | |
2553 | 505 270 moveto | |
2554 | 539 270 lineto | |
2555 | 539 254 lineto | |
2556 | 505 254 lineto | |
2557 | 505 270 lineto | |
2558 | 0 setlinecap | |
2559 | 1 setlinejoin | |
2560 | 1 setlinewidth | |
2561 | [] 0 setdash | |
2562 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2563 | stroke | |
2564 | grestore | |
2565 | gsave | |
2566 | 505 255 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2567 | 0 setlinejoin 2 setlinecap | |
2568 | 1 setlinewidth | |
2569 | [] 0 setdash | |
2570 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2571 | stroke | |
2572 | grestore | |
2573 | gsave | |
2574 | 505 270 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2575 | 0 setlinejoin 2 setlinecap | |
2576 | 1 setlinewidth | |
2577 | [] 0 setdash | |
2578 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2579 | stroke | |
2580 | grestore | |
2581 | gsave | |
2582 | 532 270 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2583 | 0 setlinejoin 2 setlinecap | |
2584 | 1 setlinewidth | |
2585 | [] 0 setdash | |
2586 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2587 | stroke | |
2588 | grestore | |
2589 | gsave | |
2590 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2591 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2592 | 507 268 [ | |
2593 | [(/ 125)] | |
2594 | ] 12 -0.0 0.0 0 false DrawText | |
2595 | grestore | |
2596 | gsave | |
2597 | 498 219 moveto | |
2598 | 520 219 lineto | |
2599 | 520 203 lineto | |
2600 | 498 203 lineto | |
2601 | 498 219 lineto | |
2602 | 0 setlinecap | |
2603 | 1 setlinejoin | |
2604 | 1 setlinewidth | |
2605 | [] 0 setdash | |
2606 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2607 | stroke | |
2608 | grestore | |
2609 | gsave | |
2610 | 498 204 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2611 | 0 setlinejoin 2 setlinecap | |
2612 | 1 setlinewidth | |
2613 | [] 0 setdash | |
2614 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2615 | stroke | |
2616 | grestore | |
2617 | gsave | |
2618 | 498 219 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2619 | 0 setlinejoin 2 setlinecap | |
2620 | 1 setlinewidth | |
2621 | [] 0 setdash | |
2622 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2623 | stroke | |
2624 | grestore | |
2625 | gsave | |
2626 | 513 219 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2627 | 0 setlinejoin 2 setlinecap | |
2628 | 1 setlinewidth | |
2629 | [] 0 setdash | |
2630 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2631 | stroke | |
2632 | grestore | |
2633 | gsave | |
2634 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2635 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2636 | 500 217 [ | |
2637 | [(*~ )] | |
2638 | ] 12 -0.0 0.0 0 false DrawText | |
2639 | grestore | |
2640 | gsave | |
2641 | 428 65 moveto 15 0 rlineto 0 -15 rlineto -15 0 rlineto closepath | |
2642 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
2643 | fill | |
2644 | 428 65 moveto 15 0 rlineto 0 -15 rlineto -15 0 rlineto closepath | |
2645 | 0 setlinejoin 2 setlinecap | |
2646 | 1 setlinewidth | |
2647 | [] 0 setdash | |
2648 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2649 | stroke | |
2650 | grestore | |
2651 | gsave | |
2652 | 430 63 moveto | |
2653 | 442 51 lineto | |
2654 | 0 setlinecap | |
2655 | 1 setlinejoin | |
2656 | 1 setlinewidth | |
2657 | [] 0 setdash | |
2658 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2659 | stroke | |
2660 | grestore | |
2661 | gsave | |
2662 | 430 52 moveto | |
2663 | 442 64 lineto | |
2664 | 0 setlinecap | |
2665 | 1 setlinejoin | |
2666 | 1 setlinewidth | |
2667 | [] 0 setdash | |
2668 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2669 | stroke | |
2670 | grestore | |
2671 | gsave | |
2672 | grestore | |
2673 | gsave | |
2674 | 428 51 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2675 | 0 setlinejoin 2 setlinecap | |
2676 | 1 setlinewidth | |
2677 | [] 0 setdash | |
2678 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2679 | stroke | |
2680 | grestore | |
2681 | gsave | |
2682 | 428 65 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2683 | 0 setlinejoin 2 setlinecap | |
2684 | 1 setlinewidth | |
2685 | [] 0 setdash | |
2686 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2687 | stroke | |
2688 | grestore | |
2689 | gsave | |
2690 | 378 66 moveto | |
2691 | 400 66 lineto | |
2692 | 400 50 lineto | |
2693 | 378 50 lineto | |
2694 | 378 66 lineto | |
2695 | 0 setlinecap | |
2696 | 1 setlinejoin | |
2697 | 1 setlinewidth | |
2698 | [] 0 setdash | |
2699 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2700 | stroke | |
2701 | grestore | |
2702 | gsave | |
2703 | 378 51 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2704 | 0 setlinejoin 2 setlinecap | |
2705 | 1 setlinewidth | |
2706 | [] 0 setdash | |
2707 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2708 | stroke | |
2709 | grestore | |
2710 | gsave | |
2711 | 378 66 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2712 | 0 setlinejoin 2 setlinecap | |
2713 | 1 setlinewidth | |
2714 | [] 0 setdash | |
2715 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2716 | stroke | |
2717 | grestore | |
2718 | gsave | |
2719 | 393 66 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2720 | 0 setlinejoin 2 setlinecap | |
2721 | 1 setlinewidth | |
2722 | [] 0 setdash | |
2723 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2724 | stroke | |
2725 | grestore | |
2726 | gsave | |
2727 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2728 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2729 | 380 64 [ | |
2730 | [(*~ )] | |
2731 | ] 12 -0.0 0.0 0 false DrawText | |
2732 | grestore | |
2733 | gsave | |
2734 | 549 222 moveto | |
2735 | 577 222 lineto | |
2736 | 577 206 lineto | |
2737 | 549 206 lineto | |
2738 | 549 222 lineto | |
2739 | 0 setlinecap | |
2740 | 1 setlinejoin | |
2741 | 1 setlinewidth | |
2742 | [] 0 setdash | |
2743 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2744 | stroke | |
2745 | grestore | |
2746 | gsave | |
2747 | 549 207 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2748 | 0 setlinejoin 2 setlinecap | |
2749 | 1 setlinewidth | |
2750 | [] 0 setdash | |
2751 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2752 | stroke | |
2753 | grestore | |
2754 | gsave | |
2755 | 549 222 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2756 | 0 setlinejoin 2 setlinecap | |
2757 | 1 setlinewidth | |
2758 | [] 0 setdash | |
2759 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2760 | stroke | |
2761 | grestore | |
2762 | gsave | |
2763 | 570 222 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2764 | 0 setlinejoin 2 setlinecap | |
2765 | 1 setlinewidth | |
2766 | [] 0 setdash | |
2767 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2768 | stroke | |
2769 | grestore | |
2770 | gsave | |
2771 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2772 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2773 | 551 220 [ | |
2774 | [(osc~)] | |
2775 | ] 12 -0.0 0.0 0 false DrawText | |
2776 | grestore | |
2777 | gsave | |
2778 | 221 330 moveto | |
2779 | 285 330 lineto | |
2780 | 285 314 lineto | |
2781 | 221 314 lineto | |
2782 | 221 330 lineto | |
2783 | 0 setlinecap | |
2784 | 1 setlinejoin | |
2785 | 1 setlinewidth | |
2786 | [] 0 setdash | |
2787 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2788 | stroke | |
2789 | grestore | |
2790 | gsave | |
2791 | 221 315 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2792 | 0 setlinejoin 2 setlinecap | |
2793 | 1 setlinewidth | |
2794 | [] 0 setdash | |
2795 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2796 | stroke | |
2797 | grestore | |
2798 | gsave | |
2799 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2800 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2801 | 223 328 [ | |
2802 | [(catch~ dac)] | |
2803 | ] 12 -0.0 0.0 0 false DrawText | |
2804 | grestore | |
2805 | gsave | |
2806 | 378 43 moveto | |
2807 | 442 43 lineto | |
2808 | 442 27 lineto | |
2809 | 378 27 lineto | |
2810 | 378 43 lineto | |
2811 | 0 setlinecap | |
2812 | 1 setlinejoin | |
2813 | 1 setlinewidth | |
2814 | [] 0 setdash | |
2815 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2816 | stroke | |
2817 | grestore | |
2818 | gsave | |
2819 | 378 43 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2820 | 0 setlinejoin 2 setlinecap | |
2821 | 1 setlinewidth | |
2822 | [] 0 setdash | |
2823 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2824 | stroke | |
2825 | grestore | |
2826 | gsave | |
2827 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2828 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2829 | 380 41 [ | |
2830 | [(throw~ dac)] | |
2831 | ] 12 -0.0 0.0 0 false DrawText | |
2832 | grestore | |
2833 | gsave | |
2834 | 596 447 moveto | |
2835 | 660 447 lineto | |
2836 | 660 431 lineto | |
2837 | 596 431 lineto | |
2838 | 596 447 lineto | |
2839 | 0 setlinecap | |
2840 | 1 setlinejoin | |
2841 | 1 setlinewidth | |
2842 | [] 0 setdash | |
2843 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2844 | stroke | |
2845 | grestore | |
2846 | gsave | |
2847 | 596 447 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2848 | 0 setlinejoin 2 setlinecap | |
2849 | 1 setlinewidth | |
2850 | [] 0 setdash | |
2851 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2852 | stroke | |
2853 | grestore | |
2854 | gsave | |
2855 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2856 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2857 | 598 445 [ | |
2858 | [(throw~ dac)] | |
2859 | ] 12 -0.0 0.0 0 false DrawText | |
2860 | grestore | |
2861 | gsave | |
2862 | 220 454 moveto | |
2863 | 284 454 lineto | |
2864 | 284 438 lineto | |
2865 | 220 438 lineto | |
2866 | 220 454 lineto | |
2867 | 0 setlinecap | |
2868 | 1 setlinejoin | |
2869 | 1 setlinewidth | |
2870 | [] 0 setdash | |
2871 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2872 | stroke | |
2873 | grestore | |
2874 | gsave | |
2875 | 220 454 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2876 | 0 setlinejoin 2 setlinecap | |
2877 | 1 setlinewidth | |
2878 | [] 0 setdash | |
2879 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2880 | stroke | |
2881 | grestore | |
2882 | gsave | |
2883 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2884 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2885 | 222 452 [ | |
2886 | [(throw~ dac)] | |
2887 | ] 12 -0.0 0.0 0 false DrawText | |
2888 | grestore | |
2889 | gsave | |
2890 | 271 475 moveto 15 0 rlineto 0 -15 rlineto -15 0 rlineto closepath | |
2891 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
2892 | fill | |
2893 | 271 475 moveto 15 0 rlineto 0 -15 rlineto -15 0 rlineto closepath | |
2894 | 0 setlinejoin 2 setlinecap | |
2895 | 1 setlinewidth | |
2896 | [] 0 setdash | |
2897 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2898 | stroke | |
2899 | grestore | |
2900 | gsave | |
2901 | 273 473 moveto | |
2902 | 285 461 lineto | |
2903 | 0 setlinecap | |
2904 | 1 setlinejoin | |
2905 | 1 setlinewidth | |
2906 | [] 0 setdash | |
2907 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
2908 | stroke | |
2909 | grestore | |
2910 | gsave | |
2911 | 273 462 moveto | |
2912 | 285 474 lineto | |
2913 | 0 setlinecap | |
2914 | 1 setlinejoin | |
2915 | 1 setlinewidth | |
2916 | [] 0 setdash | |
2917 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
2918 | stroke | |
2919 | grestore | |
2920 | gsave | |
2921 | grestore | |
2922 | gsave | |
2923 | 271 461 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2924 | 0 setlinejoin 2 setlinecap | |
2925 | 1 setlinewidth | |
2926 | [] 0 setdash | |
2927 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2928 | stroke | |
2929 | grestore | |
2930 | gsave | |
2931 | 271 475 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2932 | 0 setlinejoin 2 setlinecap | |
2933 | 1 setlinewidth | |
2934 | [] 0 setdash | |
2935 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2936 | stroke | |
2937 | grestore | |
2938 | gsave | |
2939 | 221 476 moveto | |
2940 | 243 476 lineto | |
2941 | 243 460 lineto | |
2942 | 221 460 lineto | |
2943 | 221 476 lineto | |
2944 | 0 setlinecap | |
2945 | 1 setlinejoin | |
2946 | 1 setlinewidth | |
2947 | [] 0 setdash | |
2948 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2949 | stroke | |
2950 | grestore | |
2951 | gsave | |
2952 | 221 461 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2953 | 0 setlinejoin 2 setlinecap | |
2954 | 1 setlinewidth | |
2955 | [] 0 setdash | |
2956 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2957 | stroke | |
2958 | grestore | |
2959 | gsave | |
2960 | 221 476 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2961 | 0 setlinejoin 2 setlinecap | |
2962 | 1 setlinewidth | |
2963 | [] 0 setdash | |
2964 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2965 | stroke | |
2966 | grestore | |
2967 | gsave | |
2968 | 236 476 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
2969 | 0 setlinejoin 2 setlinecap | |
2970 | 1 setlinewidth | |
2971 | [] 0 setdash | |
2972 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2973 | stroke | |
2974 | grestore | |
2975 | gsave | |
2976 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
2977 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
2978 | 223 474 [ | |
2979 | [(*~ )] | |
2980 | ] 12 -0.0 0.0 0 false DrawText | |
2981 | grestore | |
2982 | gsave | |
2983 | 33 330 moveto | |
2984 | 83 330 lineto | |
2985 | 87 326 lineto | |
2986 | 87 316 lineto | |
2987 | 33 316 lineto | |
2988 | 33 330 lineto | |
2989 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
2990 | eofill | |
2991 | 33 330 moveto | |
2992 | 83 330 lineto | |
2993 | 87 326 lineto | |
2994 | 87 316 lineto | |
2995 | 33 316 lineto | |
2996 | 33 330 lineto | |
2997 | 1 setlinejoin 1 setlinecap | |
2998 | 1 setlinewidth | |
2999 | [] 0 setdash | |
3000 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3001 | stroke | |
3002 | grestore | |
3003 | gsave | |
3004 | 33 330 moveto | |
3005 | 40 323 lineto | |
3006 | 33 316 lineto | |
3007 | 0 setlinecap | |
3008 | 1 setlinejoin | |
3009 | 1 setlinewidth | |
3010 | [] 0 setdash | |
3011 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3012 | stroke | |
3013 | grestore | |
3014 | gsave | |
3015 | grestore | |
3016 | gsave | |
3017 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
3018 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3019 | 42 322 [ | |
3020 | [(310)] | |
3021 | ] 12 -0.0 0.5 0 false DrawText | |
3022 | grestore | |
3023 | gsave | |
3024 | 33 317 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
3025 | 0 setlinejoin 2 setlinecap | |
3026 | 1 setlinewidth | |
3027 | [] 0 setdash | |
3028 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3029 | stroke | |
3030 | grestore | |
3031 | gsave | |
3032 | 33 330 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
3033 | 0 setlinejoin 2 setlinecap | |
3034 | 1 setlinewidth | |
3035 | [] 0 setdash | |
3036 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3037 | stroke | |
3038 | grestore | |
3039 | gsave | |
3040 | 33 393 moveto | |
3041 | 83 393 lineto | |
3042 | 87 389 lineto | |
3043 | 87 379 lineto | |
3044 | 33 379 lineto | |
3045 | 33 393 lineto | |
3046 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
3047 | eofill | |
3048 | 33 393 moveto | |
3049 | 83 393 lineto | |
3050 | 87 389 lineto | |
3051 | 87 379 lineto | |
3052 | 33 379 lineto | |
3053 | 33 393 lineto | |
3054 | 1 setlinejoin 1 setlinecap | |
3055 | 1 setlinewidth | |
3056 | [] 0 setdash | |
3057 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3058 | stroke | |
3059 | grestore | |
3060 | gsave | |
3061 | 33 393 moveto | |
3062 | 40 386 lineto | |
3063 | 33 379 lineto | |
3064 | 0 setlinecap | |
3065 | 1 setlinejoin | |
3066 | 1 setlinewidth | |
3067 | [] 0 setdash | |
3068 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3069 | stroke | |
3070 | grestore | |
3071 | gsave | |
3072 | grestore | |
3073 | gsave | |
3074 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
3075 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3076 | 42 385 [ | |
3077 | [(31)] | |
3078 | ] 12 -0.0 0.5 0 false DrawText | |
3079 | grestore | |
3080 | gsave | |
3081 | 33 380 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
3082 | 0 setlinejoin 2 setlinecap | |
3083 | 1 setlinewidth | |
3084 | [] 0 setdash | |
3085 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3086 | stroke | |
3087 | grestore | |
3088 | gsave | |
3089 | 33 393 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
3090 | 0 setlinejoin 2 setlinecap | |
3091 | 1 setlinewidth | |
3092 | [] 0 setdash | |
3093 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3094 | stroke | |
3095 | grestore | |
3096 | gsave | |
3097 | 32 363 moveto | |
3098 | 108 363 lineto | |
3099 | 108 347 lineto | |
3100 | 32 347 lineto | |
3101 | 32 363 lineto | |
3102 | 0 setlinecap | |
3103 | 1 setlinejoin | |
3104 | 1 setlinewidth | |
3105 | [] 0 setdash | |
3106 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3107 | stroke | |
3108 | grestore | |
3109 | gsave | |
3110 | 32 348 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
3111 | 0 setlinejoin 2 setlinecap | |
3112 | 1 setlinewidth | |
3113 | [] 0 setdash | |
3114 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3115 | stroke | |
3116 | grestore | |
3117 | gsave | |
3118 | 32 363 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
3119 | 0 setlinejoin 2 setlinecap | |
3120 | 1 setlinewidth | |
3121 | [] 0 setdash | |
3122 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3123 | stroke | |
3124 | grestore | |
3125 | gsave | |
3126 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
3127 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3128 | 34 361 [ | |
3129 | [(pd desetkrat)] | |
3130 | ] 12 -0.0 0.0 0 false DrawText | |
3131 | grestore | |
3132 | gsave | |
3133 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
3134 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3135 | 524 322 [ | |
3136 | [(VoxCoder)] | |
3137 | ] 12 -0.0 0.0 0 false DrawText | |
3138 | grestore | |
3139 | gsave | |
3140 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
3141 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3142 | 621 614 [ | |
3143 | [(Random Tones)] | |
3144 | ] 12 -0.0 0.0 0 false DrawText | |
3145 | grestore | |
3146 | gsave | |
3147 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
3148 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3149 | 265 301 [ | |
3150 | [(Mix Pult)] | |
3151 | ] 12 -0.0 0.0 0 false DrawText | |
3152 | grestore | |
3153 | gsave | |
3154 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
3155 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3156 | 324 616 [ | |
3157 | [(Modulated Oscillators)] | |
3158 | ] 12 -0.0 0.0 0 false DrawText | |
3159 | grestore | |
3160 | gsave | |
3161 | 378 151 moveto | |
3162 | 460 151 lineto | |
3163 | 460 135 lineto | |
3164 | 378 135 lineto | |
3165 | 378 151 lineto | |
3166 | 0 setlinecap | |
3167 | 1 setlinejoin | |
3168 | 1 setlinewidth | |
3169 | [] 0 setdash | |
3170 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3171 | stroke | |
3172 | grestore | |
3173 | gsave | |
3174 | 378 136 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
3175 | 0 setlinejoin 2 setlinecap | |
3176 | 1 setlinewidth | |
3177 | [] 0 setdash | |
3178 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3179 | stroke | |
3180 | grestore | |
3181 | gsave | |
3182 | 378 151 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
3183 | 0 setlinejoin 2 setlinecap | |
3184 | 1 setlinewidth | |
3185 | [] 0 setdash | |
3186 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3187 | stroke | |
3188 | grestore | |
3189 | gsave | |
3190 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
3191 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3192 | 380 149 [ | |
3193 | [(delread~ del1)] | |
3194 | ] 12 -0.0 0.0 0 false DrawText | |
3195 | grestore | |
3196 | gsave | |
3197 | 389 201 moveto | |
3198 | 439 201 lineto | |
3199 | 443 197 lineto | |
3200 | 443 187 lineto | |
3201 | 389 187 lineto | |
3202 | 389 201 lineto | |
3203 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
3204 | eofill | |
3205 | 389 201 moveto | |
3206 | 439 201 lineto | |
3207 | 443 197 lineto | |
3208 | 443 187 lineto | |
3209 | 389 187 lineto | |
3210 | 389 201 lineto | |
3211 | 1 setlinejoin 1 setlinecap | |
3212 | 1 setlinewidth | |
3213 | [] 0 setdash | |
3214 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3215 | stroke | |
3216 | grestore | |
3217 | gsave | |
3218 | 389 201 moveto | |
3219 | 396 194 lineto | |
3220 | 389 187 lineto | |
3221 | 0 setlinecap | |
3222 | 1 setlinejoin | |
3223 | 1 setlinewidth | |
3224 | [] 0 setdash | |
3225 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3226 | stroke | |
3227 | grestore | |
3228 | gsave | |
3229 | grestore | |
3230 | gsave | |
3231 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
3232 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3233 | 398 193 [ | |
3234 | [(1000)] | |
3235 | ] 12 -0.0 0.5 0 false DrawText | |
3236 | grestore | |
3237 | gsave | |
3238 | 389 188 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
3239 | 0 setlinejoin 2 setlinecap | |
3240 | 1 setlinewidth | |
3241 | [] 0 setdash | |
3242 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3243 | stroke | |
3244 | grestore | |
3245 | gsave | |
3246 | 389 201 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
3247 | 0 setlinejoin 2 setlinecap | |
3248 | 1 setlinewidth | |
3249 | [] 0 setdash | |
3250 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3251 | stroke | |
3252 | grestore | |
3253 | gsave | |
3254 | 495 115 moveto | |
3255 | 613 115 lineto | |
3256 | 613 99 lineto | |
3257 | 495 99 lineto | |
3258 | 495 115 lineto | |
3259 | 0 setlinecap | |
3260 | 1 setlinejoin | |
3261 | 1 setlinewidth | |
3262 | [] 0 setdash | |
3263 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3264 | stroke | |
3265 | grestore | |
3266 | gsave | |
3267 | 495 115 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
3268 | 0 setlinejoin 2 setlinecap | |
3269 | 1 setlinewidth | |
3270 | [] 0 setdash | |
3271 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3272 | stroke | |
3273 | grestore | |
3274 | gsave | |
3275 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
3276 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3277 | 497 113 [ | |
3278 | [(delwrite~ del1 1000)] | |
3279 | ] 12 -0.0 0.0 0 false DrawText | |
3280 | grestore | |
3281 | gsave | |
3282 | 424 179 moveto 15 0 rlineto 0 -15 rlineto -15 0 rlineto closepath | |
3283 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
3284 | fill | |
3285 | 424 179 moveto 15 0 rlineto 0 -15 rlineto -15 0 rlineto closepath | |
3286 | 0 setlinejoin 2 setlinecap | |
3287 | 1 setlinewidth | |
3288 | [] 0 setdash | |
3289 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3290 | stroke | |
3291 | grestore | |
3292 | gsave | |
3293 | 426 177 moveto | |
3294 | 438 165 lineto | |
3295 | 0 setlinecap | |
3296 | 1 setlinejoin | |
3297 | 1 setlinewidth | |
3298 | [] 0 setdash | |
3299 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
3300 | stroke | |
3301 | grestore | |
3302 | gsave | |
3303 | 426 166 moveto | |
3304 | 438 178 lineto | |
3305 | 0 setlinecap | |
3306 | 1 setlinejoin | |
3307 | 1 setlinewidth | |
3308 | [] 0 setdash | |
3309 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
3310 | stroke | |
3311 | grestore | |
3312 | gsave | |
3313 | grestore | |
3314 | gsave | |
3315 | 424 165 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
3316 | 0 setlinejoin 2 setlinecap | |
3317 | 1 setlinewidth | |
3318 | [] 0 setdash | |
3319 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3320 | stroke | |
3321 | grestore | |
3322 | gsave | |
3323 | 424 179 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
3324 | 0 setlinejoin 2 setlinecap | |
3325 | 1 setlinewidth | |
3326 | [] 0 setdash | |
3327 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3328 | stroke | |
3329 | grestore | |
3330 | gsave | |
3331 | 722 299 moveto | |
3332 | 722 159 lineto | |
3333 | 922 159 lineto | |
3334 | 922 299 lineto | |
3335 | 722 299 lineto | |
3336 | 0 setlinecap | |
3337 | 1 setlinejoin | |
3338 | 1 setlinewidth | |
3339 | [] 0 setdash | |
3340 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3341 | stroke | |
3342 | grestore | |
3343 | gsave | |
3344 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
3345 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3346 | 722 312 [ | |
3347 | [(voxcode)] | |
3348 | ] 12 -0.0 0.0 0 false DrawText | |
3349 | grestore | |
3350 | gsave | |
3351 | 722 227 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3352 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3353 | fill | |
3354 | 722 227 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3355 | 0 setlinejoin 2 setlinecap | |
3356 | 0 setlinewidth | |
3357 | [] 0 setdash | |
3358 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3359 | stroke | |
3360 | grestore | |
3361 | gsave | |
3362 | 724 227 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3363 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3364 | fill | |
3365 | 724 227 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3366 | 0 setlinejoin 2 setlinecap | |
3367 | 0 setlinewidth | |
3368 | [] 0 setdash | |
3369 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3370 | stroke | |
3371 | grestore | |
3372 | gsave | |
3373 | 726 227 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3374 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3375 | fill | |
3376 | 726 227 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3377 | 0 setlinejoin 2 setlinecap | |
3378 | 0 setlinewidth | |
3379 | [] 0 setdash | |
3380 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3381 | stroke | |
3382 | grestore | |
3383 | gsave | |
3384 | 728 227 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3385 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3386 | fill | |
3387 | 728 227 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3388 | 0 setlinejoin 2 setlinecap | |
3389 | 0 setlinewidth | |
3390 | [] 0 setdash | |
3391 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3392 | stroke | |
3393 | grestore | |
3394 | gsave | |
3395 | 730 227 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3396 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3397 | fill | |
3398 | 730 227 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3399 | 0 setlinejoin 2 setlinecap | |
3400 | 0 setlinewidth | |
3401 | [] 0 setdash | |
3402 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3403 | stroke | |
3404 | grestore | |
3405 | gsave | |
3406 | 732 228 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3407 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3408 | fill | |
3409 | 732 228 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3410 | 0 setlinejoin 2 setlinecap | |
3411 | 0 setlinewidth | |
3412 | [] 0 setdash | |
3413 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3414 | stroke | |
3415 | grestore | |
3416 | gsave | |
3417 | 734 229 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3418 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3419 | fill | |
3420 | 734 229 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3421 | 0 setlinejoin 2 setlinecap | |
3422 | 0 setlinewidth | |
3423 | [] 0 setdash | |
3424 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3425 | stroke | |
3426 | grestore | |
3427 | gsave | |
3428 | 736 230 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3429 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3430 | fill | |
3431 | 736 230 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3432 | 0 setlinejoin 2 setlinecap | |
3433 | 0 setlinewidth | |
3434 | [] 0 setdash | |
3435 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3436 | stroke | |
3437 | grestore | |
3438 | gsave | |
3439 | 738 231 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3440 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3441 | fill | |
3442 | 738 231 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3443 | 0 setlinejoin 2 setlinecap | |
3444 | 0 setlinewidth | |
3445 | [] 0 setdash | |
3446 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3447 | stroke | |
3448 | grestore | |
3449 | gsave | |
3450 | 740 232 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3451 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3452 | fill | |
3453 | 740 232 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3454 | 0 setlinejoin 2 setlinecap | |
3455 | 0 setlinewidth | |
3456 | [] 0 setdash | |
3457 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3458 | stroke | |
3459 | grestore | |
3460 | gsave | |
3461 | 742 232 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3462 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3463 | fill | |
3464 | 742 232 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3465 | 0 setlinejoin 2 setlinecap | |
3466 | 0 setlinewidth | |
3467 | [] 0 setdash | |
3468 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3469 | stroke | |
3470 | grestore | |
3471 | gsave | |
3472 | 744 233 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3473 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3474 | fill | |
3475 | 744 233 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3476 | 0 setlinejoin 2 setlinecap | |
3477 | 0 setlinewidth | |
3478 | [] 0 setdash | |
3479 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3480 | stroke | |
3481 | grestore | |
3482 | gsave | |
3483 | 746 235 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3484 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3485 | fill | |
3486 | 746 235 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3487 | 0 setlinejoin 2 setlinecap | |
3488 | 0 setlinewidth | |
3489 | [] 0 setdash | |
3490 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3491 | stroke | |
3492 | grestore | |
3493 | gsave | |
3494 | 748 236 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3495 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3496 | fill | |
3497 | 748 236 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3498 | 0 setlinejoin 2 setlinecap | |
3499 | 0 setlinewidth | |
3500 | [] 0 setdash | |
3501 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3502 | stroke | |
3503 | grestore | |
3504 | gsave | |
3505 | 750 238 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3506 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3507 | fill | |
3508 | 750 238 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3509 | 0 setlinejoin 2 setlinecap | |
3510 | 0 setlinewidth | |
3511 | [] 0 setdash | |
3512 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3513 | stroke | |
3514 | grestore | |
3515 | gsave | |
3516 | 752 238 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3517 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3518 | fill | |
3519 | 752 238 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3520 | 0 setlinejoin 2 setlinecap | |
3521 | 0 setlinewidth | |
3522 | [] 0 setdash | |
3523 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3524 | stroke | |
3525 | grestore | |
3526 | gsave | |
3527 | 754 241 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3528 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3529 | fill | |
3530 | 754 241 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3531 | 0 setlinejoin 2 setlinecap | |
3532 | 0 setlinewidth | |
3533 | [] 0 setdash | |
3534 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3535 | stroke | |
3536 | grestore | |
3537 | gsave | |
3538 | 756 242 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3539 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3540 | fill | |
3541 | 756 242 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3542 | 0 setlinejoin 2 setlinecap | |
3543 | 0 setlinewidth | |
3544 | [] 0 setdash | |
3545 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3546 | stroke | |
3547 | grestore | |
3548 | gsave | |
3549 | 758 243 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3550 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3551 | fill | |
3552 | 758 243 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3553 | 0 setlinejoin 2 setlinecap | |
3554 | 0 setlinewidth | |
3555 | [] 0 setdash | |
3556 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3557 | stroke | |
3558 | grestore | |
3559 | gsave | |
3560 | 760 245 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3561 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3562 | fill | |
3563 | 760 245 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3564 | 0 setlinejoin 2 setlinecap | |
3565 | 0 setlinewidth | |
3566 | [] 0 setdash | |
3567 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3568 | stroke | |
3569 | grestore | |
3570 | gsave | |
3571 | 762 247 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3572 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3573 | fill | |
3574 | 762 247 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3575 | 0 setlinejoin 2 setlinecap | |
3576 | 0 setlinewidth | |
3577 | [] 0 setdash | |
3578 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3579 | stroke | |
3580 | grestore | |
3581 | gsave | |
3582 | 764 248 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3583 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3584 | fill | |
3585 | 764 248 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3586 | 0 setlinejoin 2 setlinecap | |
3587 | 0 setlinewidth | |
3588 | [] 0 setdash | |
3589 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3590 | stroke | |
3591 | grestore | |
3592 | gsave | |
3593 | 766 248 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3594 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3595 | fill | |
3596 | 766 248 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3597 | 0 setlinejoin 2 setlinecap | |
3598 | 0 setlinewidth | |
3599 | [] 0 setdash | |
3600 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3601 | stroke | |
3602 | grestore | |
3603 | gsave | |
3604 | 768 250 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3605 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3606 | fill | |
3607 | 768 250 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3608 | 0 setlinejoin 2 setlinecap | |
3609 | 0 setlinewidth | |
3610 | [] 0 setdash | |
3611 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3612 | stroke | |
3613 | grestore | |
3614 | gsave | |
3615 | 770 254 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3616 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3617 | fill | |
3618 | 770 254 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3619 | 0 setlinejoin 2 setlinecap | |
3620 | 0 setlinewidth | |
3621 | [] 0 setdash | |
3622 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3623 | stroke | |
3624 | grestore | |
3625 | gsave | |
3626 | 772 255 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3627 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3628 | fill | |
3629 | 772 255 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3630 | 0 setlinejoin 2 setlinecap | |
3631 | 0 setlinewidth | |
3632 | [] 0 setdash | |
3633 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3634 | stroke | |
3635 | grestore | |
3636 | gsave | |
3637 | 774 256 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3638 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3639 | fill | |
3640 | 774 256 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3641 | 0 setlinejoin 2 setlinecap | |
3642 | 0 setlinewidth | |
3643 | [] 0 setdash | |
3644 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3645 | stroke | |
3646 | grestore | |
3647 | gsave | |
3648 | 776 257 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3649 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3650 | fill | |
3651 | 776 257 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3652 | 0 setlinejoin 2 setlinecap | |
3653 | 0 setlinewidth | |
3654 | [] 0 setdash | |
3655 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3656 | stroke | |
3657 | grestore | |
3658 | gsave | |
3659 | 778 259 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3660 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3661 | fill | |
3662 | 778 259 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3663 | 0 setlinejoin 2 setlinecap | |
3664 | 0 setlinewidth | |
3665 | [] 0 setdash | |
3666 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3667 | stroke | |
3668 | grestore | |
3669 | gsave | |
3670 | 780 260 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3671 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3672 | fill | |
3673 | 780 260 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3674 | 0 setlinejoin 2 setlinecap | |
3675 | 0 setlinewidth | |
3676 | [] 0 setdash | |
3677 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3678 | stroke | |
3679 | grestore | |
3680 | gsave | |
3681 | 782 263 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3682 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3683 | fill | |
3684 | 782 263 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3685 | 0 setlinejoin 2 setlinecap | |
3686 | 0 setlinewidth | |
3687 | [] 0 setdash | |
3688 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3689 | stroke | |
3690 | grestore | |
3691 | gsave | |
3692 | 784 265 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3693 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3694 | fill | |
3695 | 784 265 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3696 | 0 setlinejoin 2 setlinecap | |
3697 | 0 setlinewidth | |
3698 | [] 0 setdash | |
3699 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3700 | stroke | |
3701 | grestore | |
3702 | gsave | |
3703 | 786 267 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3704 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3705 | fill | |
3706 | 786 267 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3707 | 0 setlinejoin 2 setlinecap | |
3708 | 0 setlinewidth | |
3709 | [] 0 setdash | |
3710 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3711 | stroke | |
3712 | grestore | |
3713 | gsave | |
3714 | 788 269 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3715 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3716 | fill | |
3717 | 788 269 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3718 | 0 setlinejoin 2 setlinecap | |
3719 | 0 setlinewidth | |
3720 | [] 0 setdash | |
3721 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3722 | stroke | |
3723 | grestore | |
3724 | gsave | |
3725 | 790 271 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3726 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3727 | fill | |
3728 | 790 271 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3729 | 0 setlinejoin 2 setlinecap | |
3730 | 0 setlinewidth | |
3731 | [] 0 setdash | |
3732 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3733 | stroke | |
3734 | grestore | |
3735 | gsave | |
3736 | 792 272 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3737 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3738 | fill | |
3739 | 792 272 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3740 | 0 setlinejoin 2 setlinecap | |
3741 | 0 setlinewidth | |
3742 | [] 0 setdash | |
3743 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3744 | stroke | |
3745 | grestore | |
3746 | gsave | |
3747 | 794 275 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3748 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3749 | fill | |
3750 | 794 275 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3751 | 0 setlinejoin 2 setlinecap | |
3752 | 0 setlinewidth | |
3753 | [] 0 setdash | |
3754 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3755 | stroke | |
3756 | grestore | |
3757 | gsave | |
3758 | 796 277 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3759 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3760 | fill | |
3761 | 796 277 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3762 | 0 setlinejoin 2 setlinecap | |
3763 | 0 setlinewidth | |
3764 | [] 0 setdash | |
3765 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3766 | stroke | |
3767 | grestore | |
3768 | gsave | |
3769 | 798 278 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3770 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3771 | fill | |
3772 | 798 278 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3773 | 0 setlinejoin 2 setlinecap | |
3774 | 0 setlinewidth | |
3775 | [] 0 setdash | |
3776 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3777 | stroke | |
3778 | grestore | |
3779 | gsave | |
3780 | 800 281 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3781 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3782 | fill | |
3783 | 800 281 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3784 | 0 setlinejoin 2 setlinecap | |
3785 | 0 setlinewidth | |
3786 | [] 0 setdash | |
3787 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3788 | stroke | |
3789 | grestore | |
3790 | gsave | |
3791 | 802 283 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3792 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3793 | fill | |
3794 | 802 283 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3795 | 0 setlinejoin 2 setlinecap | |
3796 | 0 setlinewidth | |
3797 | [] 0 setdash | |
3798 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3799 | stroke | |
3800 | grestore | |
3801 | gsave | |
3802 | 804 285 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3803 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3804 | fill | |
3805 | 804 285 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3806 | 0 setlinejoin 2 setlinecap | |
3807 | 0 setlinewidth | |
3808 | [] 0 setdash | |
3809 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3810 | stroke | |
3811 | grestore | |
3812 | gsave | |
3813 | 806 286 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3814 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3815 | fill | |
3816 | 806 286 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3817 | 0 setlinejoin 2 setlinecap | |
3818 | 0 setlinewidth | |
3819 | [] 0 setdash | |
3820 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3821 | stroke | |
3822 | grestore | |
3823 | gsave | |
3824 | 808 287 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3825 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3826 | fill | |
3827 | 808 287 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3828 | 0 setlinejoin 2 setlinecap | |
3829 | 0 setlinewidth | |
3830 | [] 0 setdash | |
3831 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3832 | stroke | |
3833 | grestore | |
3834 | gsave | |
3835 | 810 288 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3836 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3837 | fill | |
3838 | 810 288 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3839 | 0 setlinejoin 2 setlinecap | |
3840 | 0 setlinewidth | |
3841 | [] 0 setdash | |
3842 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3843 | stroke | |
3844 | grestore | |
3845 | gsave | |
3846 | 812 289 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3847 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3848 | fill | |
3849 | 812 289 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3850 | 0 setlinejoin 2 setlinecap | |
3851 | 0 setlinewidth | |
3852 | [] 0 setdash | |
3853 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3854 | stroke | |
3855 | grestore | |
3856 | gsave | |
3857 | 814 290 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3858 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3859 | fill | |
3860 | 814 290 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3861 | 0 setlinejoin 2 setlinecap | |
3862 | 0 setlinewidth | |
3863 | [] 0 setdash | |
3864 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3865 | stroke | |
3866 | grestore | |
3867 | gsave | |
3868 | 816 291 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3869 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3870 | fill | |
3871 | 816 291 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3872 | 0 setlinejoin 2 setlinecap | |
3873 | 0 setlinewidth | |
3874 | [] 0 setdash | |
3875 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3876 | stroke | |
3877 | grestore | |
3878 | gsave | |
3879 | 818 291 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3880 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3881 | fill | |
3882 | 818 291 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3883 | 0 setlinejoin 2 setlinecap | |
3884 | 0 setlinewidth | |
3885 | [] 0 setdash | |
3886 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3887 | stroke | |
3888 | grestore | |
3889 | gsave | |
3890 | 820 291 moveto 3 0 rlineto 0 -2 rlineto -3 0 rlineto closepath | |
3891 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3892 | fill | |
3893 | 820 291 moveto 3 0 rlineto 0 -2 rlineto -3 0 rlineto closepath | |
3894 | 0 setlinejoin 2 setlinecap | |
3895 | 0 setlinewidth | |
3896 | [] 0 setdash | |
3897 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3898 | stroke | |
3899 | grestore | |
3900 | gsave | |
3901 | 823 292 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3902 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3903 | fill | |
3904 | 823 292 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3905 | 0 setlinejoin 2 setlinecap | |
3906 | 0 setlinewidth | |
3907 | [] 0 setdash | |
3908 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3909 | stroke | |
3910 | grestore | |
3911 | gsave | |
3912 | 825 293 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3913 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3914 | fill | |
3915 | 825 293 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3916 | 0 setlinejoin 2 setlinecap | |
3917 | 0 setlinewidth | |
3918 | [] 0 setdash | |
3919 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3920 | stroke | |
3921 | grestore | |
3922 | gsave | |
3923 | 827 293 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3924 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3925 | fill | |
3926 | 827 293 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3927 | 0 setlinejoin 2 setlinecap | |
3928 | 0 setlinewidth | |
3929 | [] 0 setdash | |
3930 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3931 | stroke | |
3932 | grestore | |
3933 | gsave | |
3934 | 829 293 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3935 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3936 | fill | |
3937 | 829 293 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3938 | 0 setlinejoin 2 setlinecap | |
3939 | 0 setlinewidth | |
3940 | [] 0 setdash | |
3941 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3942 | stroke | |
3943 | grestore | |
3944 | gsave | |
3945 | 831 293 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3946 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3947 | fill | |
3948 | 831 293 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3949 | 0 setlinejoin 2 setlinecap | |
3950 | 0 setlinewidth | |
3951 | [] 0 setdash | |
3952 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3953 | stroke | |
3954 | grestore | |
3955 | gsave | |
3956 | 833 294 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3957 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3958 | fill | |
3959 | 833 294 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3960 | 0 setlinejoin 2 setlinecap | |
3961 | 0 setlinewidth | |
3962 | [] 0 setdash | |
3963 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3964 | stroke | |
3965 | grestore | |
3966 | gsave | |
3967 | 835 294 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3968 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3969 | fill | |
3970 | 835 294 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3971 | 0 setlinejoin 2 setlinecap | |
3972 | 0 setlinewidth | |
3973 | [] 0 setdash | |
3974 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3975 | stroke | |
3976 | grestore | |
3977 | gsave | |
3978 | 837 294 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3979 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3980 | fill | |
3981 | 837 294 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3982 | 0 setlinejoin 2 setlinecap | |
3983 | 0 setlinewidth | |
3984 | [] 0 setdash | |
3985 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3986 | stroke | |
3987 | grestore | |
3988 | gsave | |
3989 | 839 294 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3990 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3991 | fill | |
3992 | 839 294 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
3993 | 0 setlinejoin 2 setlinecap | |
3994 | 0 setlinewidth | |
3995 | [] 0 setdash | |
3996 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
3997 | stroke | |
3998 | grestore | |
3999 | gsave | |
4000 | 841 295 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4001 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4002 | fill | |
4003 | 841 295 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4004 | 0 setlinejoin 2 setlinecap | |
4005 | 0 setlinewidth | |
4006 | [] 0 setdash | |
4007 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4008 | stroke | |
4009 | grestore | |
4010 | gsave | |
4011 | 843 295 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4012 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4013 | fill | |
4014 | 843 295 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4015 | 0 setlinejoin 2 setlinecap | |
4016 | 0 setlinewidth | |
4017 | [] 0 setdash | |
4018 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4019 | stroke | |
4020 | grestore | |
4021 | gsave | |
4022 | 845 295 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4023 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4024 | fill | |
4025 | 845 295 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4026 | 0 setlinejoin 2 setlinecap | |
4027 | 0 setlinewidth | |
4028 | [] 0 setdash | |
4029 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4030 | stroke | |
4031 | grestore | |
4032 | gsave | |
4033 | 847 295 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4034 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4035 | fill | |
4036 | 847 295 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4037 | 0 setlinejoin 2 setlinecap | |
4038 | 0 setlinewidth | |
4039 | [] 0 setdash | |
4040 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4041 | stroke | |
4042 | grestore | |
4043 | gsave | |
4044 | 849 295 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4045 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4046 | fill | |
4047 | 849 295 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4048 | 0 setlinejoin 2 setlinecap | |
4049 | 0 setlinewidth | |
4050 | [] 0 setdash | |
4051 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4052 | stroke | |
4053 | grestore | |
4054 | gsave | |
4055 | 851 293 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4056 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4057 | fill | |
4058 | 851 293 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4059 | 0 setlinejoin 2 setlinecap | |
4060 | 0 setlinewidth | |
4061 | [] 0 setdash | |
4062 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4063 | stroke | |
4064 | grestore | |
4065 | gsave | |
4066 | 853 291 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4067 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4068 | fill | |
4069 | 853 291 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4070 | 0 setlinejoin 2 setlinecap | |
4071 | 0 setlinewidth | |
4072 | [] 0 setdash | |
4073 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4074 | stroke | |
4075 | grestore | |
4076 | gsave | |
4077 | 855 286 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4078 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4079 | fill | |
4080 | 855 286 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4081 | 0 setlinejoin 2 setlinecap | |
4082 | 0 setlinewidth | |
4083 | [] 0 setdash | |
4084 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4085 | stroke | |
4086 | grestore | |
4087 | gsave | |
4088 | 857 283 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4089 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4090 | fill | |
4091 | 857 283 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4092 | 0 setlinejoin 2 setlinecap | |
4093 | 0 setlinewidth | |
4094 | [] 0 setdash | |
4095 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4096 | stroke | |
4097 | grestore | |
4098 | gsave | |
4099 | 859 280 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4100 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4101 | fill | |
4102 | 859 280 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4103 | 0 setlinejoin 2 setlinecap | |
4104 | 0 setlinewidth | |
4105 | [] 0 setdash | |
4106 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4107 | stroke | |
4108 | grestore | |
4109 | gsave | |
4110 | 861 271 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4111 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4112 | fill | |
4113 | 861 271 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4114 | 0 setlinejoin 2 setlinecap | |
4115 | 0 setlinewidth | |
4116 | [] 0 setdash | |
4117 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4118 | stroke | |
4119 | grestore | |
4120 | gsave | |
4121 | 863 265 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4122 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4123 | fill | |
4124 | 863 265 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4125 | 0 setlinejoin 2 setlinecap | |
4126 | 0 setlinewidth | |
4127 | [] 0 setdash | |
4128 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4129 | stroke | |
4130 | grestore | |
4131 | gsave | |
4132 | 865 258 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4133 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4134 | fill | |
4135 | 865 258 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4136 | 0 setlinejoin 2 setlinecap | |
4137 | 0 setlinewidth | |
4138 | [] 0 setdash | |
4139 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4140 | stroke | |
4141 | grestore | |
4142 | gsave | |
4143 | 867 253 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4144 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4145 | fill | |
4146 | 867 253 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4147 | 0 setlinejoin 2 setlinecap | |
4148 | 0 setlinewidth | |
4149 | [] 0 setdash | |
4150 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4151 | stroke | |
4152 | grestore | |
4153 | gsave | |
4154 | 869 249 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4155 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4156 | fill | |
4157 | 869 249 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4158 | 0 setlinejoin 2 setlinecap | |
4159 | 0 setlinewidth | |
4160 | [] 0 setdash | |
4161 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4162 | stroke | |
4163 | grestore | |
4164 | gsave | |
4165 | 871 240 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4166 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4167 | fill | |
4168 | 871 240 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4169 | 0 setlinejoin 2 setlinecap | |
4170 | 0 setlinewidth | |
4171 | [] 0 setdash | |
4172 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4173 | stroke | |
4174 | grestore | |
4175 | gsave | |
4176 | 873 237 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4177 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4178 | fill | |
4179 | 873 237 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4180 | 0 setlinejoin 2 setlinecap | |
4181 | 0 setlinewidth | |
4182 | [] 0 setdash | |
4183 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4184 | stroke | |
4185 | grestore | |
4186 | gsave | |
4187 | 875 233 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4188 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4189 | fill | |
4190 | 875 233 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4191 | 0 setlinejoin 2 setlinecap | |
4192 | 0 setlinewidth | |
4193 | [] 0 setdash | |
4194 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4195 | stroke | |
4196 | grestore | |
4197 | gsave | |
4198 | 877 222 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4199 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4200 | fill | |
4201 | 877 222 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4202 | 0 setlinejoin 2 setlinecap | |
4203 | 0 setlinewidth | |
4204 | [] 0 setdash | |
4205 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4206 | stroke | |
4207 | grestore | |
4208 | gsave | |
4209 | 879 220 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4210 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4211 | fill | |
4212 | 879 220 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4213 | 0 setlinejoin 2 setlinecap | |
4214 | 0 setlinewidth | |
4215 | [] 0 setdash | |
4216 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4217 | stroke | |
4218 | grestore | |
4219 | gsave | |
4220 | 881 216 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4221 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4222 | fill | |
4223 | 881 216 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4224 | 0 setlinejoin 2 setlinecap | |
4225 | 0 setlinewidth | |
4226 | [] 0 setdash | |
4227 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4228 | stroke | |
4229 | grestore | |
4230 | gsave | |
4231 | 883 212 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4232 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4233 | fill | |
4234 | 883 212 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4235 | 0 setlinejoin 2 setlinecap | |
4236 | 0 setlinewidth | |
4237 | [] 0 setdash | |
4238 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4239 | stroke | |
4240 | grestore | |
4241 | gsave | |
4242 | 885 210 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4243 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4244 | fill | |
4245 | 885 210 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4246 | 0 setlinejoin 2 setlinecap | |
4247 | 0 setlinewidth | |
4248 | [] 0 setdash | |
4249 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4250 | stroke | |
4251 | grestore | |
4252 | gsave | |
4253 | 887 208 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4254 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4255 | fill | |
4256 | 887 208 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4257 | 0 setlinejoin 2 setlinecap | |
4258 | 0 setlinewidth | |
4259 | [] 0 setdash | |
4260 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4261 | stroke | |
4262 | grestore | |
4263 | gsave | |
4264 | 889 206 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4265 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4266 | fill | |
4267 | 889 206 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4268 | 0 setlinejoin 2 setlinecap | |
4269 | 0 setlinewidth | |
4270 | [] 0 setdash | |
4271 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4272 | stroke | |
4273 | grestore | |
4274 | gsave | |
4275 | 891 205 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4276 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4277 | fill | |
4278 | 891 205 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4279 | 0 setlinejoin 2 setlinecap | |
4280 | 0 setlinewidth | |
4281 | [] 0 setdash | |
4282 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4283 | stroke | |
4284 | grestore | |
4285 | gsave | |
4286 | 893 205 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4287 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4288 | fill | |
4289 | 893 205 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4290 | 0 setlinejoin 2 setlinecap | |
4291 | 0 setlinewidth | |
4292 | [] 0 setdash | |
4293 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4294 | stroke | |
4295 | grestore | |
4296 | gsave | |
4297 | 895 203 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4298 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4299 | fill | |
4300 | 895 203 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4301 | 0 setlinejoin 2 setlinecap | |
4302 | 0 setlinewidth | |
4303 | [] 0 setdash | |
4304 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4305 | stroke | |
4306 | grestore | |
4307 | gsave | |
4308 | 897 202 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4309 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4310 | fill | |
4311 | 897 202 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4312 | 0 setlinejoin 2 setlinecap | |
4313 | 0 setlinewidth | |
4314 | [] 0 setdash | |
4315 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4316 | stroke | |
4317 | grestore | |
4318 | gsave | |
4319 | 899 201 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4320 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4321 | fill | |
4322 | 899 201 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4323 | 0 setlinejoin 2 setlinecap | |
4324 | 0 setlinewidth | |
4325 | [] 0 setdash | |
4326 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4327 | stroke | |
4328 | grestore | |
4329 | gsave | |
4330 | 901 200 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4331 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4332 | fill | |
4333 | 901 200 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4334 | 0 setlinejoin 2 setlinecap | |
4335 | 0 setlinewidth | |
4336 | [] 0 setdash | |
4337 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4338 | stroke | |
4339 | grestore | |
4340 | gsave | |
4341 | 903 200 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4342 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4343 | fill | |
4344 | 903 200 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4345 | 0 setlinejoin 2 setlinecap | |
4346 | 0 setlinewidth | |
4347 | [] 0 setdash | |
4348 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4349 | stroke | |
4350 | grestore | |
4351 | gsave | |
4352 | 905 200 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4353 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4354 | fill | |
4355 | 905 200 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4356 | 0 setlinejoin 2 setlinecap | |
4357 | 0 setlinewidth | |
4358 | [] 0 setdash | |
4359 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4360 | stroke | |
4361 | grestore | |
4362 | gsave | |
4363 | 907 200 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4364 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4365 | fill | |
4366 | 907 200 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4367 | 0 setlinejoin 2 setlinecap | |
4368 | 0 setlinewidth | |
4369 | [] 0 setdash | |
4370 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4371 | stroke | |
4372 | grestore | |
4373 | gsave | |
4374 | 909 201 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4375 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4376 | fill | |
4377 | 909 201 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4378 | 0 setlinejoin 2 setlinecap | |
4379 | 0 setlinewidth | |
4380 | [] 0 setdash | |
4381 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4382 | stroke | |
4383 | grestore | |
4384 | gsave | |
4385 | 911 204 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4386 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4387 | fill | |
4388 | 911 204 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4389 | 0 setlinejoin 2 setlinecap | |
4390 | 0 setlinewidth | |
4391 | [] 0 setdash | |
4392 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4393 | stroke | |
4394 | grestore | |
4395 | gsave | |
4396 | 913 208 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4397 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4398 | fill | |
4399 | 913 208 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4400 | 0 setlinejoin 2 setlinecap | |
4401 | 0 setlinewidth | |
4402 | [] 0 setdash | |
4403 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4404 | stroke | |
4405 | grestore | |
4406 | gsave | |
4407 | 915 211 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4408 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4409 | fill | |
4410 | 915 211 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4411 | 0 setlinejoin 2 setlinecap | |
4412 | 0 setlinewidth | |
4413 | [] 0 setdash | |
4414 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4415 | stroke | |
4416 | grestore | |
4417 | gsave | |
4418 | 917 214 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4419 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4420 | fill | |
4421 | 917 214 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4422 | 0 setlinejoin 2 setlinecap | |
4423 | 0 setlinewidth | |
4424 | [] 0 setdash | |
4425 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4426 | stroke | |
4427 | grestore | |
4428 | gsave | |
4429 | 919 218 moveto 3 0 rlineto 0 -2 rlineto -3 0 rlineto closepath | |
4430 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4431 | fill | |
4432 | 919 218 moveto 3 0 rlineto 0 -2 rlineto -3 0 rlineto closepath | |
4433 | 0 setlinejoin 2 setlinecap | |
4434 | 0 setlinewidth | |
4435 | [] 0 setdash | |
4436 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4437 | stroke | |
4438 | grestore | |
4439 | gsave | |
4440 | 922 232 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4441 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4442 | fill | |
4443 | 922 232 moveto 2 0 rlineto 0 -2 rlineto -2 0 rlineto closepath | |
4444 | 0 setlinejoin 2 setlinecap | |
4445 | 0 setlinewidth | |
4446 | [] 0 setdash | |
4447 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4448 | stroke | |
4449 | grestore | |
4450 | gsave | |
4451 | 597 175 moveto | |
4452 | 715 175 lineto | |
4453 | 715 159 lineto | |
4454 | 597 159 lineto | |
4455 | 597 175 lineto | |
4456 | 0 setlinecap | |
4457 | 1 setlinejoin | |
4458 | 1 setlinewidth | |
4459 | [] 0 setdash | |
4460 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4461 | stroke | |
4462 | grestore | |
4463 | gsave | |
4464 | 597 160 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4465 | 0 setlinejoin 2 setlinecap | |
4466 | 1 setlinewidth | |
4467 | [] 0 setdash | |
4468 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4469 | stroke | |
4470 | grestore | |
4471 | gsave | |
4472 | 597 175 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4473 | 0 setlinejoin 2 setlinecap | |
4474 | 1 setlinewidth | |
4475 | [] 0 setdash | |
4476 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4477 | stroke | |
4478 | grestore | |
4479 | gsave | |
4480 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
4481 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4482 | 599 173 [ | |
4483 | [(tabreceive~ voxcode)] | |
4484 | ] 12 -0.0 0.0 0 false DrawText | |
4485 | grestore | |
4486 | gsave | |
4487 | 485 146 moveto | |
4488 | 507 146 lineto | |
4489 | 507 130 lineto | |
4490 | 485 130 lineto | |
4491 | 485 146 lineto | |
4492 | 0 setlinecap | |
4493 | 1 setlinejoin | |
4494 | 1 setlinewidth | |
4495 | [] 0 setdash | |
4496 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4497 | stroke | |
4498 | grestore | |
4499 | gsave | |
4500 | 485 131 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4501 | 0 setlinejoin 2 setlinecap | |
4502 | 1 setlinewidth | |
4503 | [] 0 setdash | |
4504 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4505 | stroke | |
4506 | grestore | |
4507 | gsave | |
4508 | 485 146 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4509 | 0 setlinejoin 2 setlinecap | |
4510 | 1 setlinewidth | |
4511 | [] 0 setdash | |
4512 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4513 | stroke | |
4514 | grestore | |
4515 | gsave | |
4516 | 500 146 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4517 | 0 setlinejoin 2 setlinecap | |
4518 | 1 setlinewidth | |
4519 | [] 0 setdash | |
4520 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4521 | stroke | |
4522 | grestore | |
4523 | gsave | |
4524 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
4525 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4526 | 487 144 [ | |
4527 | [(*~ )] | |
4528 | ] 12 -0.0 0.0 0 false DrawText | |
4529 | grestore | |
4530 | gsave | |
4531 | 559 147 moveto | |
4532 | 587 147 lineto | |
4533 | 587 131 lineto | |
4534 | 559 131 lineto | |
4535 | 559 147 lineto | |
4536 | 0 setlinecap | |
4537 | 1 setlinejoin | |
4538 | 1 setlinewidth | |
4539 | [] 0 setdash | |
4540 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4541 | stroke | |
4542 | grestore | |
4543 | gsave | |
4544 | 559 132 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4545 | 0 setlinejoin 2 setlinecap | |
4546 | 1 setlinewidth | |
4547 | [] 0 setdash | |
4548 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4549 | stroke | |
4550 | grestore | |
4551 | gsave | |
4552 | 559 147 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4553 | 0 setlinejoin 2 setlinecap | |
4554 | 1 setlinewidth | |
4555 | [] 0 setdash | |
4556 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4557 | stroke | |
4558 | grestore | |
4559 | gsave | |
4560 | 580 147 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4561 | 0 setlinejoin 2 setlinecap | |
4562 | 1 setlinewidth | |
4563 | [] 0 setdash | |
4564 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4565 | stroke | |
4566 | grestore | |
4567 | gsave | |
4568 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
4569 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4570 | 561 145 [ | |
4571 | [(max~)] | |
4572 | ] 12 -0.0 0.0 0 false DrawText | |
4573 | grestore | |
4574 | gsave | |
4575 | 558 170 moveto 15 0 rlineto 0 -15 rlineto -15 0 rlineto closepath | |
4576 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
4577 | fill | |
4578 | 558 170 moveto 15 0 rlineto 0 -15 rlineto -15 0 rlineto closepath | |
4579 | 0 setlinejoin 2 setlinecap | |
4580 | 1 setlinewidth | |
4581 | [] 0 setdash | |
4582 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4583 | stroke | |
4584 | grestore | |
4585 | gsave | |
4586 | 560 168 moveto | |
4587 | 572 156 lineto | |
4588 | 0 setlinecap | |
4589 | 1 setlinejoin | |
4590 | 1 setlinewidth | |
4591 | [] 0 setdash | |
4592 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4593 | stroke | |
4594 | grestore | |
4595 | gsave | |
4596 | 560 157 moveto | |
4597 | 572 169 lineto | |
4598 | 0 setlinecap | |
4599 | 1 setlinejoin | |
4600 | 1 setlinewidth | |
4601 | [] 0 setdash | |
4602 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4603 | stroke | |
4604 | grestore | |
4605 | gsave | |
4606 | grestore | |
4607 | gsave | |
4608 | 558 156 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4609 | 0 setlinejoin 2 setlinecap | |
4610 | 1 setlinewidth | |
4611 | [] 0 setdash | |
4612 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4613 | stroke | |
4614 | grestore | |
4615 | gsave | |
4616 | 558 170 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4617 | 0 setlinejoin 2 setlinecap | |
4618 | 1 setlinewidth | |
4619 | [] 0 setdash | |
4620 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4621 | stroke | |
4622 | grestore | |
4623 | gsave | |
4624 | 596 471 moveto | |
4625 | 618 471 lineto | |
4626 | 618 455 lineto | |
4627 | 596 455 lineto | |
4628 | 596 471 lineto | |
4629 | 0 setlinecap | |
4630 | 1 setlinejoin | |
4631 | 1 setlinewidth | |
4632 | [] 0 setdash | |
4633 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4634 | stroke | |
4635 | grestore | |
4636 | gsave | |
4637 | 596 456 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4638 | 0 setlinejoin 2 setlinecap | |
4639 | 1 setlinewidth | |
4640 | [] 0 setdash | |
4641 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4642 | stroke | |
4643 | grestore | |
4644 | gsave | |
4645 | 596 471 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4646 | 0 setlinejoin 2 setlinecap | |
4647 | 1 setlinewidth | |
4648 | [] 0 setdash | |
4649 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4650 | stroke | |
4651 | grestore | |
4652 | gsave | |
4653 | 611 471 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4654 | 0 setlinejoin 2 setlinecap | |
4655 | 1 setlinewidth | |
4656 | [] 0 setdash | |
4657 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4658 | stroke | |
4659 | grestore | |
4660 | gsave | |
4661 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
4662 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4663 | 598 469 [ | |
4664 | [(*~ )] | |
4665 | ] 12 -0.0 0.0 0 false DrawText | |
4666 | grestore | |
4667 | gsave | |
4668 | 447 98 moveto | |
4669 | 469 98 lineto | |
4670 | 469 82 lineto | |
4671 | 447 82 lineto | |
4672 | 447 98 lineto | |
4673 | 0 setlinecap | |
4674 | 1 setlinejoin | |
4675 | 1 setlinewidth | |
4676 | [] 0 setdash | |
4677 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4678 | stroke | |
4679 | grestore | |
4680 | gsave | |
4681 | 447 83 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4682 | 0 setlinejoin 2 setlinecap | |
4683 | 1 setlinewidth | |
4684 | [] 0 setdash | |
4685 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4686 | stroke | |
4687 | grestore | |
4688 | gsave | |
4689 | 447 98 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4690 | 0 setlinejoin 2 setlinecap | |
4691 | 1 setlinewidth | |
4692 | [] 0 setdash | |
4693 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4694 | stroke | |
4695 | grestore | |
4696 | gsave | |
4697 | 462 98 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4698 | 0 setlinejoin 2 setlinecap | |
4699 | 1 setlinewidth | |
4700 | [] 0 setdash | |
4701 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4702 | stroke | |
4703 | grestore | |
4704 | gsave | |
4705 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
4706 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4707 | 449 96 [ | |
4708 | [(*~ )] | |
4709 | ] 12 -0.0 0.0 0 false DrawText | |
4710 | grestore | |
4711 | gsave | |
4712 | 468 127 moveto 15 0 rlineto 0 -15 rlineto -15 0 rlineto closepath | |
4713 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
4714 | fill | |
4715 | 468 127 moveto 15 0 rlineto 0 -15 rlineto -15 0 rlineto closepath | |
4716 | 0 setlinejoin 2 setlinecap | |
4717 | 1 setlinewidth | |
4718 | [] 0 setdash | |
4719 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4720 | stroke | |
4721 | grestore | |
4722 | gsave | |
4723 | 470 125 moveto | |
4724 | 482 113 lineto | |
4725 | 0 setlinecap | |
4726 | 1 setlinejoin | |
4727 | 1 setlinewidth | |
4728 | [] 0 setdash | |
4729 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
4730 | stroke | |
4731 | grestore | |
4732 | gsave | |
4733 | 470 114 moveto | |
4734 | 482 126 lineto | |
4735 | 0 setlinecap | |
4736 | 1 setlinejoin | |
4737 | 1 setlinewidth | |
4738 | [] 0 setdash | |
4739 | 0.988 0.988 0.988 setrgbcolor AdjustColor | |
4740 | stroke | |
4741 | grestore | |
4742 | gsave | |
4743 | grestore | |
4744 | gsave | |
4745 | 468 113 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4746 | 0 setlinejoin 2 setlinecap | |
4747 | 1 setlinewidth | |
4748 | [] 0 setdash | |
4749 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4750 | stroke | |
4751 | grestore | |
4752 | gsave | |
4753 | 468 127 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4754 | 0 setlinejoin 2 setlinecap | |
4755 | 1 setlinewidth | |
4756 | [] 0 setdash | |
4757 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4758 | stroke | |
4759 | grestore | |
4760 | gsave | |
4761 | 410 126 moveto | |
4762 | 450 126 lineto | |
4763 | 450 110 lineto | |
4764 | 410 110 lineto | |
4765 | 410 126 lineto | |
4766 | 0 setlinecap | |
4767 | 1 setlinejoin | |
4768 | 1 setlinewidth | |
4769 | [] 0 setdash | |
4770 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4771 | stroke | |
4772 | grestore | |
4773 | gsave | |
4774 | 410 111 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4775 | 0 setlinejoin 2 setlinecap | |
4776 | 1 setlinewidth | |
4777 | [] 0 setdash | |
4778 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4779 | stroke | |
4780 | grestore | |
4781 | gsave | |
4782 | 410 126 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4783 | 0 setlinejoin 2 setlinecap | |
4784 | 1 setlinewidth | |
4785 | [] 0 setdash | |
4786 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4787 | stroke | |
4788 | grestore | |
4789 | gsave | |
4790 | 443 126 moveto 7 0 rlineto 0 -1 rlineto -7 0 rlineto closepath | |
4791 | 0 setlinejoin 2 setlinecap | |
4792 | 1 setlinewidth | |
4793 | [] 0 setdash | |
4794 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4795 | stroke | |
4796 | grestore | |
4797 | gsave | |
4798 | /Courier-Bold findfont 8 scalefont ISOEncode setfont | |
4799 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4800 | 412 124 [ | |
4801 | [(*~ 0.7)] | |
4802 | ] 12 -0.0 0.0 0 false DrawText | |
4803 | grestore | |
4804 | gsave | |
4805 | 216 545 moveto | |
4806 | 225 526 lineto | |
4807 | 0 setlinecap | |
4808 | 1 setlinejoin | |
4809 | 2 setlinewidth | |
4810 | [] 0 setdash | |
4811 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4812 | stroke | |
4813 | grestore | |
4814 | gsave | |
4815 | 206 640 moveto | |
4816 | 215 617 lineto | |
4817 | 0 setlinecap | |
4818 | 1 setlinejoin | |
4819 | 1 setlinewidth | |
4820 | [] 0 setdash | |
4821 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4822 | stroke | |
4823 | grestore | |
4824 | gsave | |
4825 | 225 269 moveto | |
4826 | 265 260 lineto | |
4827 | 0 setlinecap | |
4828 | 1 setlinejoin | |
4829 | 2 setlinewidth | |
4830 | [] 0 setdash | |
4831 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4832 | stroke | |
4833 | grestore | |
4834 | gsave | |
4835 | 225 269 moveto | |
4836 | 199 231 lineto | |
4837 | 0 setlinecap | |
4838 | 1 setlinejoin | |
4839 | 2 setlinewidth | |
4840 | [] 0 setdash | |
4841 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4842 | stroke | |
4843 | grestore | |
4844 | gsave | |
4845 | 225 269 moveto | |
4846 | 220 231 lineto | |
4847 | 0 setlinecap | |
4848 | 1 setlinejoin | |
4849 | 2 setlinewidth | |
4850 | [] 0 setdash | |
4851 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4852 | stroke | |
4853 | grestore | |
4854 | gsave | |
4855 | 58 533 moveto | |
4856 | 58 528 lineto | |
4857 | 0 setlinecap | |
4858 | 1 setlinejoin | |
4859 | 1 setlinewidth | |
4860 | [] 0 setdash | |
4861 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4862 | stroke | |
4863 | grestore | |
4864 | gsave | |
4865 | 253 616 moveto | |
4866 | 230 617 lineto | |
4867 | 0 setlinecap | |
4868 | 1 setlinejoin | |
4869 | 1 setlinewidth | |
4870 | [] 0 setdash | |
4871 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4872 | stroke | |
4873 | grestore | |
4874 | gsave | |
4875 | 215 601 moveto | |
4876 | 216 561 lineto | |
4877 | 0 setlinecap | |
4878 | 1 setlinejoin | |
4879 | 1 setlinewidth | |
4880 | [] 0 setdash | |
4881 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4882 | stroke | |
4883 | grestore | |
4884 | gsave | |
4885 | 215 601 moveto | |
4886 | 245 593 lineto | |
4887 | 0 setlinecap | |
4888 | 1 setlinejoin | |
4889 | 1 setlinewidth | |
4890 | [] 0 setdash | |
4891 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4892 | stroke | |
4893 | grestore | |
4894 | gsave | |
4895 | 150 571 moveto | |
4896 | 216 561 lineto | |
4897 | 0 setlinecap | |
4898 | 1 setlinejoin | |
4899 | 1 setlinewidth | |
4900 | [] 0 setdash | |
4901 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4902 | stroke | |
4903 | grestore | |
4904 | gsave | |
4905 | 54 555 moveto | |
4906 | 58 546 lineto | |
4907 | 0 setlinecap | |
4908 | 1 setlinejoin | |
4909 | 1 setlinewidth | |
4910 | [] 0 setdash | |
4911 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4912 | stroke | |
4913 | grestore | |
4914 | gsave | |
4915 | 20 622 moveto | |
4916 | 51 594 lineto | |
4917 | 0 setlinecap | |
4918 | 1 setlinejoin | |
4919 | 1 setlinewidth | |
4920 | [] 0 setdash | |
4921 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4922 | stroke | |
4923 | grestore | |
4924 | gsave | |
4925 | 51 578 moveto | |
4926 | 54 571 lineto | |
4927 | 0 setlinecap | |
4928 | 1 setlinejoin | |
4929 | 1 setlinewidth | |
4930 | [] 0 setdash | |
4931 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4932 | stroke | |
4933 | grestore | |
4934 | gsave | |
4935 | 83 616 moveto | |
4936 | 66 594 lineto | |
4937 | 0 setlinecap | |
4938 | 1 setlinejoin | |
4939 | 1 setlinewidth | |
4940 | [] 0 setdash | |
4941 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4942 | stroke | |
4943 | grestore | |
4944 | gsave | |
4945 | 35 474 moveto | |
4946 | 35 463 lineto | |
4947 | 0 setlinecap | |
4948 | 1 setlinejoin | |
4949 | 1 setlinewidth | |
4950 | [] 0 setdash | |
4951 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4952 | stroke | |
4953 | grestore | |
4954 | gsave | |
4955 | 265 223 moveto | |
4956 | 265 215 lineto | |
4957 | 0 setlinecap | |
4958 | 1 setlinejoin | |
4959 | 1 setlinewidth | |
4960 | [] 0 setdash | |
4961 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4962 | stroke | |
4963 | grestore | |
4964 | gsave | |
4965 | 265 244 moveto | |
4966 | 265 239 lineto | |
4967 | 0 setlinecap | |
4968 | 1 setlinejoin | |
4969 | 1 setlinewidth | |
4970 | [] 0 setdash | |
4971 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4972 | stroke | |
4973 | grestore | |
4974 | gsave | |
4975 | 317 128 moveto | |
4976 | 317 107 lineto | |
4977 | 0 setlinecap | |
4978 | 1 setlinejoin | |
4979 | 1 setlinewidth | |
4980 | [] 0 setdash | |
4981 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4982 | stroke | |
4983 | grestore | |
4984 | gsave | |
4985 | 240 56 moveto | |
4986 | 240 285 lineto | |
4987 | 0 setlinecap | |
4988 | 1 setlinejoin | |
4989 | 1 setlinewidth | |
4990 | [] 0 setdash | |
4991 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
4992 | stroke | |
4993 | grestore | |
4994 | gsave | |
4995 | 317 92 moveto | |
4996 | 240 72 lineto | |
4997 | 0 setlinecap | |
4998 | 1 setlinejoin | |
4999 | 1 setlinewidth | |
5000 | [] 0 setdash | |
5001 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5002 | stroke | |
5003 | grestore | |
5004 | gsave | |
5005 | 601 479 moveto | |
5006 | 599 471 lineto | |
5007 | 0 setlinecap | |
5008 | 1 setlinejoin | |
5009 | 2 setlinewidth | |
5010 | [] 0 setdash | |
5011 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5012 | stroke | |
5013 | grestore | |
5014 | gsave | |
5015 | 647 456 moveto | |
5016 | 614 471 lineto | |
5017 | 0 setlinecap | |
5018 | 1 setlinejoin | |
5019 | 1 setlinewidth | |
5020 | [] 0 setdash | |
5021 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5022 | stroke | |
5023 | grestore | |
5024 | gsave | |
5025 | 592 571 moveto | |
5026 | 605 559 lineto | |
5027 | 0 setlinecap | |
5028 | 1 setlinejoin | |
5029 | 1 setlinewidth | |
5030 | [] 0 setdash | |
5031 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5032 | stroke | |
5033 | grestore | |
5034 | gsave | |
5035 | 592 571 moveto | |
5036 | 632 559 lineto | |
5037 | 0 setlinecap | |
5038 | 1 setlinejoin | |
5039 | 1 setlinewidth | |
5040 | [] 0 setdash | |
5041 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5042 | stroke | |
5043 | grestore | |
5044 | gsave | |
5045 | 695 535 moveto | |
5046 | 674 526 lineto | |
5047 | 0 setlinecap | |
5048 | 1 setlinejoin | |
5049 | 1 setlinewidth | |
5050 | [] 0 setdash | |
5051 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5052 | stroke | |
5053 | grestore | |
5054 | gsave | |
5055 | 599 517 moveto | |
5056 | 601 495 lineto | |
5057 | 0 setlinecap | |
5058 | 1 setlinejoin | |
5059 | 1 setlinewidth | |
5060 | [] 0 setdash | |
5061 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5062 | stroke | |
5063 | grestore | |
5064 | gsave | |
5065 | 674 510 moveto | |
5066 | 632 533 lineto | |
5067 | 0 setlinecap | |
5068 | 1 setlinejoin | |
5069 | 1 setlinewidth | |
5070 | [] 0 setdash | |
5071 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5072 | stroke | |
5073 | grestore | |
5074 | gsave | |
5075 | 605 543 moveto | |
5076 | 599 533 lineto | |
5077 | 0 setlinecap | |
5078 | 1 setlinejoin | |
5079 | 1 setlinewidth | |
5080 | [] 0 setdash | |
5081 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5082 | stroke | |
5083 | grestore | |
5084 | gsave | |
5085 | 568 236 moveto | |
5086 | 552 222 lineto | |
5087 | 0 setlinecap | |
5088 | 1 setlinejoin | |
5089 | 1 setlinewidth | |
5090 | [] 0 setdash | |
5091 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5092 | stroke | |
5093 | grestore | |
5094 | gsave | |
5095 | 527 227 moveto | |
5096 | 552 222 lineto | |
5097 | 0 setlinecap | |
5098 | 1 setlinejoin | |
5099 | 1 setlinewidth | |
5100 | [] 0 setdash | |
5101 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5102 | stroke | |
5103 | grestore | |
5104 | gsave | |
5105 | 225 510 moveto | |
5106 | 224 476 lineto | |
5107 | 0 setlinecap | |
5108 | 1 setlinejoin | |
5109 | 2 setlinewidth | |
5110 | [] 0 setdash | |
5111 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5112 | stroke | |
5113 | grestore | |
5114 | gsave | |
5115 | 289 510 moveto | |
5116 | 288 502 lineto | |
5117 | 0 setlinecap | |
5118 | 1 setlinejoin | |
5119 | 2 setlinewidth | |
5120 | [] 0 setdash | |
5121 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5122 | stroke | |
5123 | grestore | |
5124 | gsave | |
5125 | 347 560 moveto | |
5126 | 289 526 lineto | |
5127 | 0 setlinecap | |
5128 | 1 setlinejoin | |
5129 | 1 setlinewidth | |
5130 | [] 0 setdash | |
5131 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5132 | stroke | |
5133 | grestore | |
5134 | gsave | |
5135 | 264 531 moveto | |
5136 | 289 526 lineto | |
5137 | 0 setlinecap | |
5138 | 1 setlinejoin | |
5139 | 1 setlinewidth | |
5140 | [] 0 setdash | |
5141 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5142 | stroke | |
5143 | grestore | |
5144 | gsave | |
5145 | 288 486 moveto | |
5146 | 240 526 lineto | |
5147 | 0 setlinecap | |
5148 | 1 setlinejoin | |
5149 | 2 setlinewidth | |
5150 | [] 0 setdash | |
5151 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5152 | stroke | |
5153 | grestore | |
5154 | gsave | |
5155 | 453 300 moveto | |
5156 | 459 290 lineto | |
5157 | 0 setlinecap | |
5158 | 1 setlinejoin | |
5159 | 2 setlinewidth | |
5160 | [] 0 setdash | |
5161 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5162 | stroke | |
5163 | grestore | |
5164 | gsave | |
5165 | 474 300 moveto | |
5166 | 474 290 lineto | |
5167 | 0 setlinecap | |
5168 | 1 setlinejoin | |
5169 | 2 setlinewidth | |
5170 | [] 0 setdash | |
5171 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5172 | stroke | |
5173 | grestore | |
5174 | gsave | |
5175 | 459 274 moveto | |
5176 | 473 249 lineto | |
5177 | 0 setlinecap | |
5178 | 1 setlinejoin | |
5179 | 2 setlinewidth | |
5180 | [] 0 setdash | |
5181 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5182 | stroke | |
5183 | grestore | |
5184 | gsave | |
5185 | 551 182 moveto | |
5186 | 516 219 lineto | |
5187 | 0 setlinecap | |
5188 | 1 setlinejoin | |
5189 | 2 setlinewidth | |
5190 | [] 0 setdash | |
5191 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5192 | stroke | |
5193 | grestore | |
5194 | gsave | |
5195 | 473 233 moveto | |
5196 | 501 219 lineto | |
5197 | 0 setlinecap | |
5198 | 1 setlinejoin | |
5199 | 2 setlinewidth | |
5200 | [] 0 setdash | |
5201 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5202 | stroke | |
5203 | grestore | |
5204 | gsave | |
5205 | 528 277 moveto | |
5206 | 508 270 lineto | |
5207 | 0 setlinecap | |
5208 | 1 setlinejoin | |
5209 | 1 setlinewidth | |
5210 | [] 0 setdash | |
5211 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5212 | stroke | |
5213 | grestore | |
5214 | gsave | |
5215 | 508 254 moveto | |
5216 | 488 249 lineto | |
5217 | 0 setlinecap | |
5218 | 1 setlinejoin | |
5219 | 1 setlinewidth | |
5220 | [] 0 setdash | |
5221 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5222 | stroke | |
5223 | grestore | |
5224 | gsave | |
5225 | 501 203 moveto | |
5226 | 488 146 lineto | |
5227 | 0 setlinecap | |
5228 | 1 setlinejoin | |
5229 | 2 setlinewidth | |
5230 | [] 0 setdash | |
5231 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5232 | stroke | |
5233 | grestore | |
5234 | gsave | |
5235 | 431 50 moveto | |
5236 | 396 66 lineto | |
5237 | 0 setlinecap | |
5238 | 1 setlinejoin | |
5239 | 1 setlinewidth | |
5240 | [] 0 setdash | |
5241 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5242 | stroke | |
5243 | grestore | |
5244 | gsave | |
5245 | 381 50 moveto | |
5246 | 381 43 lineto | |
5247 | 0 setlinecap | |
5248 | 1 setlinejoin | |
5249 | 2 setlinewidth | |
5250 | [] 0 setdash | |
5251 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5252 | stroke | |
5253 | grestore | |
5254 | gsave | |
5255 | 552 206 moveto | |
5256 | 551 198 lineto | |
5257 | 0 setlinecap | |
5258 | 1 setlinejoin | |
5259 | 2 setlinewidth | |
5260 | [] 0 setdash | |
5261 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5262 | stroke | |
5263 | grestore | |
5264 | gsave | |
5265 | 224 314 moveto | |
5266 | 225 285 lineto | |
5267 | 0 setlinecap | |
5268 | 1 setlinejoin | |
5269 | 2 setlinewidth | |
5270 | [] 0 setdash | |
5271 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5272 | stroke | |
5273 | grestore | |
5274 | gsave | |
5275 | 274 460 moveto | |
5276 | 239 476 lineto | |
5277 | 0 setlinecap | |
5278 | 1 setlinejoin | |
5279 | 1 setlinewidth | |
5280 | [] 0 setdash | |
5281 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5282 | stroke | |
5283 | grestore | |
5284 | gsave | |
5285 | 224 460 moveto | |
5286 | 223 454 lineto | |
5287 | 0 setlinecap | |
5288 | 1 setlinejoin | |
5289 | 2 setlinewidth | |
5290 | [] 0 setdash | |
5291 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5292 | stroke | |
5293 | grestore | |
5294 | gsave | |
5295 | 36 379 moveto | |
5296 | 35 363 lineto | |
5297 | 0 setlinecap | |
5298 | 1 setlinejoin | |
5299 | 1 setlinewidth | |
5300 | [] 0 setdash | |
5301 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5302 | stroke | |
5303 | grestore | |
5304 | gsave | |
5305 | 35 347 moveto | |
5306 | 36 330 lineto | |
5307 | 0 setlinecap | |
5308 | 1 setlinejoin | |
5309 | 1 setlinewidth | |
5310 | [] 0 setdash | |
5311 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5312 | stroke | |
5313 | grestore | |
5314 | gsave | |
5315 | 381 135 moveto | |
5316 | 381 66 lineto | |
5317 | 0 setlinecap | |
5318 | 1 setlinejoin | |
5319 | 2 setlinewidth | |
5320 | [] 0 setdash | |
5321 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5322 | stroke | |
5323 | grestore | |
5324 | gsave | |
5325 | 381 135 moveto | |
5326 | 413 126 lineto | |
5327 | 0 setlinecap | |
5328 | 1 setlinejoin | |
5329 | 2 setlinewidth | |
5330 | [] 0 setdash | |
5331 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5332 | stroke | |
5333 | grestore | |
5334 | gsave | |
5335 | 392 187 moveto | |
5336 | 427 179 lineto | |
5337 | 0 setlinecap | |
5338 | 1 setlinejoin | |
5339 | 1 setlinewidth | |
5340 | [] 0 setdash | |
5341 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5342 | stroke | |
5343 | grestore | |
5344 | gsave | |
5345 | 427 164 moveto | |
5346 | 381 151 lineto | |
5347 | 0 setlinecap | |
5348 | 1 setlinejoin | |
5349 | 1 setlinewidth | |
5350 | [] 0 setdash | |
5351 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5352 | stroke | |
5353 | grestore | |
5354 | gsave | |
5355 | 600 159 moveto | |
5356 | 583 147 lineto | |
5357 | 0 setlinecap | |
5358 | 1 setlinejoin | |
5359 | 2 setlinewidth | |
5360 | [] 0 setdash | |
5361 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5362 | stroke | |
5363 | grestore | |
5364 | gsave | |
5365 | 488 130 moveto | |
5366 | 498 115 lineto | |
5367 | 0 setlinecap | |
5368 | 1 setlinejoin | |
5369 | 2 setlinewidth | |
5370 | [] 0 setdash | |
5371 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5372 | stroke | |
5373 | grestore | |
5374 | gsave | |
5375 | 562 131 moveto | |
5376 | 503 146 lineto | |
5377 | 0 setlinecap | |
5378 | 1 setlinejoin | |
5379 | 2 setlinewidth | |
5380 | [] 0 setdash | |
5381 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5382 | stroke | |
5383 | grestore | |
5384 | gsave | |
5385 | 561 155 moveto | |
5386 | 562 147 lineto | |
5387 | 0 setlinecap | |
5388 | 1 setlinejoin | |
5389 | 1 setlinewidth | |
5390 | [] 0 setdash | |
5391 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5392 | stroke | |
5393 | grestore | |
5394 | gsave | |
5395 | 599 455 moveto | |
5396 | 599 447 lineto | |
5397 | 0 setlinecap | |
5398 | 1 setlinejoin | |
5399 | 2 setlinewidth | |
5400 | [] 0 setdash | |
5401 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5402 | stroke | |
5403 | grestore | |
5404 | gsave | |
5405 | 450 82 moveto | |
5406 | 498 115 lineto | |
5407 | 0 setlinecap | |
5408 | 1 setlinejoin | |
5409 | 2 setlinewidth | |
5410 | [] 0 setdash | |
5411 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5412 | stroke | |
5413 | grestore | |
5414 | gsave | |
5415 | 471 112 moveto | |
5416 | 465 98 lineto | |
5417 | 0 setlinecap | |
5418 | 1 setlinejoin | |
5419 | 1 setlinewidth | |
5420 | [] 0 setdash | |
5421 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5422 | stroke | |
5423 | grestore | |
5424 | gsave | |
5425 | 413 110 moveto | |
5426 | 450 98 lineto | |
5427 | 0 setlinecap | |
5428 | 1 setlinejoin | |
5429 | 2 setlinewidth | |
5430 | [] 0 setdash | |
5431 | 0.000 0.000 0.000 setrgbcolor AdjustColor | |
5432 | stroke | |
5433 | grestore | |
5434 | restore showpage | |
5435 | ||
5436 | %%Trailer | |
5437 | end | |
5438 | %%EOF |