OpenCores
URL https://opencores.org/ocsvn/mpeg2fpga/mpeg2fpga/trunk

Subversion Repositories mpeg2fpga

[/] [mpeg2fpga/] [trunk/] [doc/] [vld-simple.ps] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 kdv
%!PS-Adobe-3.0 EPSF-3.0
2
%%Creator: uDraw(Graph) 3.1.1 (info available on http://www.b-novative.com/)
3
%%For: koen@macpro (on: i686 Linux 2.6.22-gentoo-r9 unix)
4
%%Title: vld-simple.ps
5
%%CreationDate: Sun Mar  2 13:41:52 2008
6
%%BoundingBox: 0 0 594 842
7
%%Pages: 1
8
%%DocumentData: Clean7Bit
9
%%Orientation: Landscape
10
%%DocumentNeededResources: font Helvetica-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
 
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
 
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
 
318
    } forall
319
} bind def
320
 
321
%%EndProlog
322
%%BeginSetup
323
/CL 2 def
324
%%IncludeResource: font Helvetica-Bold
325
%%EndSetup
326
 
327
%%Page: 1 1
328
save
329
0.0 0.0 translate
330
90 rotate
331
0.1909 0.1909 scale
332
173 -3111 translate
333
-173 3111 moveto 4232 3111 lineto 4232 0 lineto -173 0 lineto closepath clip newpath
334
gsave
335
 
336
1.000 1.000 1.000 setrgbcolor AdjustColor
337
fill
338
 
339
 
340
1 setlinewidth
341
[] 0 setdash
342
1.000 1.000 1.000 setrgbcolor AdjustColor
343
stroke
344
grestore
345
gsave
346
27 2509 moveto 180 0 rlineto 0 -23.9999999999999 rlineto -180 0 rlineto closepath
347
1.000 1.000 1.000 setrgbcolor AdjustColor
348
fill
349
27 2509 moveto 180 0 rlineto 0 -23.9999999999999 rlineto -180 0 rlineto closepath
350
 
351
1 setlinewidth
352
[] 0 setdash
353
0.000 0.000 0.000 setrgbcolor AdjustColor
354
stroke
355
grestore
356
gsave
357
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
358
0.000 0.000 0.000 setrgbcolor AdjustColor
359
117 2497 [
360
[(STATE_PICTURE_CODING_EXT)]
361
] 13 -0.5 0.5 0 false DrawText
362
grestore
363
gsave
364
grestore
365
gsave
366
20 2292 moveto 194 0 rlineto 0 -29.9999999999999 rlineto -194 0 rlineto closepath
367
1.000 1.000 1.000 setrgbcolor AdjustColor
368
fill
369
20 2292 moveto 194 0 rlineto 0 -29.9999999999999 rlineto -194 0 rlineto closepath
370
 
371
1 setlinewidth
372
[] 0 setdash
373
0.000 0.000 0.000 setrgbcolor AdjustColor
374
stroke
375
grestore
376
gsave
377
23 2289 moveto 188 0 rlineto 0 -23.9999999999998 rlineto -188 0 rlineto closepath
378
 
379
1 setlinewidth
380
[] 0 setdash
381
0.000 0.000 0.000 setrgbcolor AdjustColor
382
stroke
383
grestore
384
gsave
385
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
386
0.000 0.000 0.000 setrgbcolor AdjustColor
387
117 2277 [
388
[(STATE_PICTURE_CODING_EXT1)]
389
] 13 -0.5 0.5 0 false DrawText
390
grestore
391
gsave
392
grestore
393
gsave
394
20 2402 moveto 194 0 rlineto 0 -30 rlineto -194 0 rlineto closepath
395
1.000 1.000 1.000 setrgbcolor AdjustColor
396
fill
397
20 2402 moveto 194 0 rlineto 0 -30 rlineto -194 0 rlineto closepath
398
 
399
1 setlinewidth
400
[] 0 setdash
401
0.000 0.000 0.000 setrgbcolor AdjustColor
402
stroke
403
grestore
404
gsave
405
23 2399 moveto 188 0 rlineto 0 -24 rlineto -188 0 rlineto closepath
406
 
407
1 setlinewidth
408
[] 0 setdash
409
0.000 0.000 0.000 setrgbcolor AdjustColor
410
stroke
411
grestore
412
gsave
413
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
414
0.000 0.000 0.000 setrgbcolor AdjustColor
415
117 2387 [
416
[(STATE_PICTURE_CODING_EXT0)]
417
] 13 -0.5 0.5 0 false DrawText
418
grestore
419
gsave
420
grestore
421
gsave
422
619 2512 moveto 172 0 rlineto 0 -29.9999999999999 rlineto -172 0 rlineto closepath
423
1.000 1.000 1.000 setrgbcolor AdjustColor
424
fill
425
619 2512 moveto 172 0 rlineto 0 -29.9999999999999 rlineto -172 0 rlineto closepath
426
 
427
1 setlinewidth
428
[] 0 setdash
429
0.000 0.000 0.000 setrgbcolor AdjustColor
430
stroke
431
grestore
432
gsave
433
622 2509 moveto 166 0 rlineto 0 -23.9999999999999 rlineto -166 0 rlineto closepath
434
 
435
1 setlinewidth
436
[] 0 setdash
437
0.000 0.000 0.000 setrgbcolor AdjustColor
438
stroke
439
grestore
440
gsave
441
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
442
0.000 0.000 0.000 setrgbcolor AdjustColor
443
705 2497 [
444
[(STATE_QUANT_MATRIX_EXT)]
445
] 13 -0.5 0.5 0 false DrawText
446
grestore
447
gsave
448
grestore
449
gsave
450
642 2072 moveto 242 0 rlineto 0 -30 rlineto -242 0 rlineto closepath
451
1.000 1.000 1.000 setrgbcolor AdjustColor
452
fill
453
642 2072 moveto 242 0 rlineto 0 -30 rlineto -242 0 rlineto closepath
454
 
455
1 setlinewidth
456
[] 0 setdash
457
0.000 0.000 0.000 setrgbcolor AdjustColor
458
stroke
459
grestore
460
gsave
461
645 2069 moveto 236 0 rlineto 0 -24 rlineto -236 0 rlineto closepath
462
 
463
1 setlinewidth
464
[] 0 setdash
465
0.000 0.000 0.000 setrgbcolor AdjustColor
466
stroke
467
grestore
468
gsave
469
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
470
0.000 0.000 0.000 setrgbcolor AdjustColor
471
763 2057 [
472
[(STATE_LD_CHROMA_NON_INTRA_QUANT1)]
473
] 13 -0.5 0.5 0 false DrawText
474
grestore
475
gsave
476
grestore
477
gsave
478
626 2182 moveto 214 0 rlineto 0 -29.9999999999999 rlineto -214 0 rlineto closepath
479
1.000 1.000 1.000 setrgbcolor AdjustColor
480
fill
481
626 2182 moveto 214 0 rlineto 0 -29.9999999999999 rlineto -214 0 rlineto closepath
482
 
483
1 setlinewidth
484
[] 0 setdash
485
0.000 0.000 0.000 setrgbcolor AdjustColor
486
stroke
487
grestore
488
gsave
489
629 2179 moveto 208 0 rlineto 0 -24 rlineto -208 0 rlineto closepath
490
 
491
1 setlinewidth
492
[] 0 setdash
493
0.000 0.000 0.000 setrgbcolor AdjustColor
494
stroke
495
grestore
496
gsave
497
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
498
0.000 0.000 0.000 setrgbcolor AdjustColor
499
733 2167 [
500
[(STATE_LD_CHROMA_INTRA_QUANT1)]
501
] 13 -0.5 0.5 0 false DrawText
502
grestore
503
gsave
504
grestore
505
gsave
506
670 2292 moveto 194 0 rlineto 0 -29.9999999999999 rlineto -194 0 rlineto closepath
507
1.000 1.000 1.000 setrgbcolor AdjustColor
508
fill
509
670 2292 moveto 194 0 rlineto 0 -29.9999999999999 rlineto -194 0 rlineto closepath
510
 
511
1 setlinewidth
512
[] 0 setdash
513
0.000 0.000 0.000 setrgbcolor AdjustColor
514
stroke
515
grestore
516
gsave
517
673 2289 moveto 188 0 rlineto 0 -23.9999999999998 rlineto -188 0 rlineto closepath
518
 
519
1 setlinewidth
520
[] 0 setdash
521
0.000 0.000 0.000 setrgbcolor AdjustColor
522
stroke
523
grestore
524
gsave
525
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
526
0.000 0.000 0.000 setrgbcolor AdjustColor
527
767 2277 [
528
[(STATE_LD_NON_INTRA_QUANT1)]
529
] 13 -0.5 0.5 0 false DrawText
530
grestore
531
gsave
532
grestore
533
gsave
534
726 2622 moveto 200 0 rlineto 0 -29.9999999999999 rlineto -200 0 rlineto closepath
535
1.000 1.000 1.000 setrgbcolor AdjustColor
536
fill
537
726 2622 moveto 200 0 rlineto 0 -29.9999999999999 rlineto -200 0 rlineto closepath
538
 
539
1 setlinewidth
540
[] 0 setdash
541
0.000 0.000 0.000 setrgbcolor AdjustColor
542
stroke
543
grestore
544
gsave
545
729 2619 moveto 194 0 rlineto 0 -24 rlineto -194 0 rlineto closepath
546
 
547
1 setlinewidth
548
[] 0 setdash
549
0.000 0.000 0.000 setrgbcolor AdjustColor
550
stroke
551
grestore
552
gsave
553
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
554
0.000 0.000 0.000 setrgbcolor AdjustColor
555
826 2607 [
556
[(STATE_EXTENSION_START_CODE)]
557
] 13 -0.5 0.5 0 false DrawText
558
grestore
559
gsave
560
grestore
561
gsave
562
838 2402 moveto 166 0 rlineto 0 -30 rlineto -166 0 rlineto closepath
563
1.000 1.000 1.000 setrgbcolor AdjustColor
564
fill
565
838 2402 moveto 166 0 rlineto 0 -30 rlineto -166 0 rlineto closepath
566
 
567
1 setlinewidth
568
[] 0 setdash
569
0.000 0.000 0.000 setrgbcolor AdjustColor
570
stroke
571
grestore
572
gsave
573
841 2399 moveto 160 0 rlineto 0 -24 rlineto -160 0 rlineto closepath
574
 
575
1 setlinewidth
576
[] 0 setdash
577
0.000 0.000 0.000 setrgbcolor AdjustColor
578
stroke
579
grestore
580
gsave
581
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
582
0.000 0.000 0.000 setrgbcolor AdjustColor
583
921 2387 [
584
[(STATE_LD_INTRA_QUANT1)]
585
] 13 -0.5 0.5 0 false DrawText
586
grestore
587
gsave
588
grestore
589
gsave
590
1004 2509 moveto 194 0 rlineto 0 -23.9999999999999 rlineto -194 0 rlineto closepath
591
1.000 1.000 1.000 setrgbcolor AdjustColor
592
fill
593
1004 2509 moveto 194 0 rlineto 0 -23.9999999999999 rlineto -194 0 rlineto closepath
594
 
595
1 setlinewidth
596
[] 0 setdash
597
0.000 0.000 0.000 setrgbcolor AdjustColor
598
stroke
599
grestore
600
gsave
601
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
602
0.000 0.000 0.000 setrgbcolor AdjustColor
603
1101 2497 [
604
[(STATE_SEQUENCE_DISPLAY_EXT)]
605
] 13 -0.5 0.5 0 false DrawText
606
grestore
607
gsave
608
grestore
609
gsave
610
926 2182 moveto 208 0 rlineto 0 -29.9999999999999 rlineto -208 0 rlineto closepath
611
1.000 1.000 1.000 setrgbcolor AdjustColor
612
fill
613
926 2182 moveto 208 0 rlineto 0 -29.9999999999999 rlineto -208 0 rlineto closepath
614
 
615
1 setlinewidth
616
[] 0 setdash
617
0.000 0.000 0.000 setrgbcolor AdjustColor
618
stroke
619
grestore
620
gsave
621
929 2179 moveto 202 0 rlineto 0 -24 rlineto -202 0 rlineto closepath
622
 
623
1 setlinewidth
624
[] 0 setdash
625
0.000 0.000 0.000 setrgbcolor AdjustColor
626
stroke
627
grestore
628
gsave
629
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
630
0.000 0.000 0.000 setrgbcolor AdjustColor
631
1030 2167 [
632
[(STATE_SEQUENCE_DISPLAY_EXT2)]
633
] 13 -0.5 0.5 0 false DrawText
634
grestore
635
gsave
636
grestore
637
gsave
638
926 2292 moveto 208 0 rlineto 0 -29.9999999999999 rlineto -208 0 rlineto closepath
639
1.000 1.000 1.000 setrgbcolor AdjustColor
640
fill
641
926 2292 moveto 208 0 rlineto 0 -29.9999999999999 rlineto -208 0 rlineto closepath
642
 
643
1 setlinewidth
644
[] 0 setdash
645
0.000 0.000 0.000 setrgbcolor AdjustColor
646
stroke
647
grestore
648
gsave
649
929 2289 moveto 202 0 rlineto 0 -23.9999999999998 rlineto -202 0 rlineto closepath
650
 
651
1 setlinewidth
652
[] 0 setdash
653
0.000 0.000 0.000 setrgbcolor AdjustColor
654
stroke
655
grestore
656
gsave
657
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
658
0.000 0.000 0.000 setrgbcolor AdjustColor
659
1030 2277 [
660
[(STATE_SEQUENCE_DISPLAY_EXT1)]
661
] 13 -0.5 0.5 0 false DrawText
662
grestore
663
gsave
664
grestore
665
gsave
666
1066 2399 moveto 202 0 rlineto 0 -24 rlineto -202 0 rlineto closepath
667
1.000 1.000 1.000 setrgbcolor AdjustColor
668
fill
669
1066 2399 moveto 202 0 rlineto 0 -24 rlineto -202 0 rlineto closepath
670
 
671
1 setlinewidth
672
[] 0 setdash
673
0.000 0.000 0.000 setrgbcolor AdjustColor
674
stroke
675
grestore
676
gsave
677
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
678
0.000 0.000 0.000 setrgbcolor AdjustColor
679
1167 2387 [
680
[(STATE_SEQUENCE_DISPLAY_EXT0)]
681
] 13 -0.5 0.5 0 false DrawText
682
grestore
683
gsave
684
grestore
685
gsave
686
1194 2292 moveto 152 0 rlineto 0 -29.9999999999999 rlineto -152 0 rlineto closepath
687
1.000 1.000 1.000 setrgbcolor AdjustColor
688
fill
689
1194 2292 moveto 152 0 rlineto 0 -29.9999999999999 rlineto -152 0 rlineto closepath
690
 
691
1 setlinewidth
692
[] 0 setdash
693
0.000 0.000 0.000 setrgbcolor AdjustColor
694
stroke
695
grestore
696
gsave
697
1197 2289 moveto 146 0 rlineto 0 -23.9999999999998 rlineto -146 0 rlineto closepath
698
 
699
1 setlinewidth
700
[] 0 setdash
701
0.000 0.000 0.000 setrgbcolor AdjustColor
702
stroke
703
grestore
704
gsave
705
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
706
0.000 0.000 0.000 setrgbcolor AdjustColor
707
1270 2277 [
708
[(STATE_SEQUENCE_EXT1)]
709
] 13 -0.5 0.5 0 false DrawText
710
grestore
711
gsave
712
grestore
713
gsave
714
1308 2399 moveto 146 0 rlineto 0 -24 rlineto -146 0 rlineto closepath
715
1.000 1.000 1.000 setrgbcolor AdjustColor
716
fill
717
1308 2399 moveto 146 0 rlineto 0 -24 rlineto -146 0 rlineto closepath
718
 
719
1 setlinewidth
720
[] 0 setdash
721
0.000 0.000 0.000 setrgbcolor AdjustColor
722
stroke
723
grestore
724
gsave
725
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
726
0.000 0.000 0.000 setrgbcolor AdjustColor
727
1381 2387 [
728
[(STATE_SEQUENCE_EXT0)]
729
] 13 -0.5 0.5 0 false DrawText
730
grestore
731
gsave
732
grestore
733
gsave
734
1386 2292 moveto 166 0 rlineto 0 -29.9999999999999 rlineto -166 0 rlineto closepath
735
1.000 1.000 1.000 setrgbcolor AdjustColor
736
fill
737
1386 2292 moveto 166 0 rlineto 0 -29.9999999999999 rlineto -166 0 rlineto closepath
738
 
739
1 setlinewidth
740
[] 0 setdash
741
0.000 0.000 0.000 setrgbcolor AdjustColor
742
stroke
743
grestore
744
gsave
745
1389 2289 moveto 160 0 rlineto 0 -23.9999999999998 rlineto -160 0 rlineto closepath
746
 
747
1 setlinewidth
748
[] 0 setdash
749
0.000 0.000 0.000 setrgbcolor AdjustColor
750
stroke
751
grestore
752
gsave
753
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
754
0.000 0.000 0.000 setrgbcolor AdjustColor
755
1469 2277 [
756
[(STATE_PICTURE_HEADER2)]
757
] 13 -0.5 0.5 0 false DrawText
758
grestore
759
gsave
760
grestore
761
gsave
762
1312 2509 moveto 138 0 rlineto 0 -23.9999999999999 rlineto -138 0 rlineto closepath
763
1.000 1.000 1.000 setrgbcolor AdjustColor
764
fill
765
1312 2509 moveto 138 0 rlineto 0 -23.9999999999999 rlineto -138 0 rlineto closepath
766
 
767
1 setlinewidth
768
[] 0 setdash
769
0.000 0.000 0.000 setrgbcolor AdjustColor
770
stroke
771
grestore
772
gsave
773
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
774
0.000 0.000 0.000 setrgbcolor AdjustColor
775
1381 2497 [
776
[(STATE_SEQUENCE_EXT)]
777
] 13 -0.5 0.5 0 false DrawText
778
grestore
779
gsave
780
grestore
781
gsave
782
1497 2619 moveto 138 0 rlineto 0 -24 rlineto -138 0 rlineto closepath
783
1.000 1.000 1.000 setrgbcolor AdjustColor
784
fill
785
1497 2619 moveto 138 0 rlineto 0 -24 rlineto -138 0 rlineto closepath
786
 
787
1 setlinewidth
788
[] 0 setdash
789
0.000 0.000 0.000 setrgbcolor AdjustColor
790
stroke
791
grestore
792
gsave
793
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
794
0.000 0.000 0.000 setrgbcolor AdjustColor
795
1566 2607 [
796
[(STATE_GROUP_HEADER)]
797
] 13 -0.5 0.5 0 false DrawText
798
grestore
799
gsave
800
grestore
801
gsave
802
1494 2402 moveto 166 0 rlineto 0 -30 rlineto -166 0 rlineto closepath
803
1.000 1.000 1.000 setrgbcolor AdjustColor
804
fill
805
1494 2402 moveto 166 0 rlineto 0 -30 rlineto -166 0 rlineto closepath
806
 
807
1 setlinewidth
808
[] 0 setdash
809
0.000 0.000 0.000 setrgbcolor AdjustColor
810
stroke
811
grestore
812
gsave
813
1497 2399 moveto 160 0 rlineto 0 -24 rlineto -160 0 rlineto closepath
814
 
815
1 setlinewidth
816
[] 0 setdash
817
0.000 0.000 0.000 setrgbcolor AdjustColor
818
stroke
819
grestore
820
gsave
821
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
822
0.000 0.000 0.000 setrgbcolor AdjustColor
823
1577 2387 [
824
[(STATE_PICTURE_HEADER1)]
825
] 13 -0.5 0.5 0 false DrawText
826
grestore
827
gsave
828
grestore
829
gsave
830
1490 2512 moveto 152 0 rlineto 0 -29.9999999999999 rlineto -152 0 rlineto closepath
831
1.000 1.000 1.000 setrgbcolor AdjustColor
832
fill
833
1490 2512 moveto 152 0 rlineto 0 -29.9999999999999 rlineto -152 0 rlineto closepath
834
 
835
1 setlinewidth
836
[] 0 setdash
837
0.000 0.000 0.000 setrgbcolor AdjustColor
838
stroke
839
grestore
840
gsave
841
1493 2509 moveto 146 0 rlineto 0 -23.9999999999999 rlineto -146 0 rlineto closepath
842
 
843
1 setlinewidth
844
[] 0 setdash
845
0.000 0.000 0.000 setrgbcolor AdjustColor
846
stroke
847
grestore
848
gsave
849
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
850
0.000 0.000 0.000 setrgbcolor AdjustColor
851
1566 2497 [
852
[(STATE_GROUP_HEADER0)]
853
] 13 -0.5 0.5 0 false DrawText
854
grestore
855
gsave
856
grestore
857
gsave
858
1592 2289 moveto 166 0 rlineto 0 -23.9999999999998 rlineto -166 0 rlineto closepath
859
1.000 1.000 1.000 setrgbcolor AdjustColor
860
fill
861
1592 2289 moveto 166 0 rlineto 0 -23.9999999999998 rlineto -166 0 rlineto closepath
862
 
863
1 setlinewidth
864
[] 0 setdash
865
0.000 0.000 0.000 setrgbcolor AdjustColor
866
stroke
867
grestore
868
gsave
869
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
870
0.000 0.000 0.000 setrgbcolor AdjustColor
871
1675 2277 [
872
[(STATE_SEQUENCE_HEADER2)]
873
] 13 -0.5 0.5 0 false DrawText
874
grestore
875
gsave
876
grestore
877
gsave
878
1578 1962 moveto 194 0 rlineto 0 -30 rlineto -194 0 rlineto closepath
879
1.000 1.000 1.000 setrgbcolor AdjustColor
880
fill
881
1578 1962 moveto 194 0 rlineto 0 -30 rlineto -194 0 rlineto closepath
882
 
883
1 setlinewidth
884
[] 0 setdash
885
0.000 0.000 0.000 setrgbcolor AdjustColor
886
stroke
887
grestore
888
gsave
889
1581 1959 moveto 188 0 rlineto 0 -24 rlineto -188 0 rlineto closepath
890
 
891
1 setlinewidth
892
[] 0 setdash
893
0.000 0.000 0.000 setrgbcolor AdjustColor
894
stroke
895
grestore
896
gsave
897
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
898
0.000 0.000 0.000 setrgbcolor AdjustColor
899
1675 1947 [
900
[(STATE_LD_NON_INTRA_QUANT0)]
901
] 13 -0.5 0.5 0 false DrawText
902
grestore
903
gsave
904
grestore
905
gsave
906
1589 2182 moveto 172 0 rlineto 0 -29.9999999999999 rlineto -172 0 rlineto closepath
907
1.000 1.000 1.000 setrgbcolor AdjustColor
908
fill
909
1589 2182 moveto 172 0 rlineto 0 -29.9999999999999 rlineto -172 0 rlineto closepath
910
 
911
1 setlinewidth
912
[] 0 setdash
913
0.000 0.000 0.000 setrgbcolor AdjustColor
914
stroke
915
grestore
916
gsave
917
1592 2179 moveto 166 0 rlineto 0 -24 rlineto -166 0 rlineto closepath
918
 
919
1 setlinewidth
920
[] 0 setdash
921
0.000 0.000 0.000 setrgbcolor AdjustColor
922
stroke
923
grestore
924
gsave
925
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
926
0.000 0.000 0.000 setrgbcolor AdjustColor
927
1675 2167 [
928
[(STATE_SEQUENCE_HEADER3)]
929
] 13 -0.5 0.5 0 false DrawText
930
grestore
931
gsave
932
grestore
933
gsave
934
1689 2619 moveto 152 0 rlineto 0 -24 rlineto -152 0 rlineto closepath
935
1.000 1.000 1.000 setrgbcolor AdjustColor
936
fill
937
1689 2619 moveto 152 0 rlineto 0 -24 rlineto -152 0 rlineto closepath
938
 
939
1 setlinewidth
940
[] 0 setdash
941
0.000 0.000 0.000 setrgbcolor AdjustColor
942
stroke
943
grestore
944
gsave
945
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
946
0.000 0.000 0.000 setrgbcolor AdjustColor
947
1765 2607 [
948
[(STATE_PICTURE_HEADER)]
949
] 13 -0.5 0.5 0 false DrawText
950
grestore
951
gsave
952
grestore
953
gsave
954
1669 2072 moveto 166 0 rlineto 0 -30 rlineto -166 0 rlineto closepath
955
1.000 1.000 1.000 setrgbcolor AdjustColor
956
fill
957
1669 2072 moveto 166 0 rlineto 0 -30 rlineto -166 0 rlineto closepath
958
 
959
1 setlinewidth
960
[] 0 setdash
961
0.000 0.000 0.000 setrgbcolor AdjustColor
962
stroke
963
grestore
964
gsave
965
1672 2069 moveto 160 0 rlineto 0 -24 rlineto -160 0 rlineto closepath
966
 
967
1 setlinewidth
968
[] 0 setdash
969
0.000 0.000 0.000 setrgbcolor AdjustColor
970
stroke
971
grestore
972
gsave
973
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
974
0.000 0.000 0.000 setrgbcolor AdjustColor
975
1752 2057 [
976
[(STATE_LD_INTRA_QUANT0)]
977
] 13 -0.5 0.5 0 false DrawText
978
grestore
979
gsave
980
grestore
981
gsave
982
1700 2399 moveto 166 0 rlineto 0 -24 rlineto -166 0 rlineto closepath
983
1.000 1.000 1.000 setrgbcolor AdjustColor
984
fill
985
1700 2399 moveto 166 0 rlineto 0 -24 rlineto -166 0 rlineto closepath
986
 
987
1 setlinewidth
988
[] 0 setdash
989
0.000 0.000 0.000 setrgbcolor AdjustColor
990
stroke
991
grestore
992
gsave
993
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
994
0.000 0.000 0.000 setrgbcolor AdjustColor
995
1783 2387 [
996
[(STATE_SEQUENCE_HEADER1)]
997
] 13 -0.5 0.5 0 false DrawText
998
grestore
999
gsave
1000
grestore
1001
gsave
1002
1682 2512 moveto 166 0 rlineto 0 -29.9999999999999 rlineto -166 0 rlineto closepath
1003
1.000 1.000 1.000 setrgbcolor AdjustColor
1004
fill
1005
1682 2512 moveto 166 0 rlineto 0 -29.9999999999999 rlineto -166 0 rlineto closepath
1006
 
1007
1 setlinewidth
1008
[] 0 setdash
1009
0.000 0.000 0.000 setrgbcolor AdjustColor
1010
stroke
1011
grestore
1012
gsave
1013
1685 2509 moveto 160 0 rlineto 0 -23.9999999999999 rlineto -160 0 rlineto closepath
1014
 
1015
1 setlinewidth
1016
[] 0 setdash
1017
0.000 0.000 0.000 setrgbcolor AdjustColor
1018
stroke
1019
grestore
1020
gsave
1021
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1022
0.000 0.000 0.000 setrgbcolor AdjustColor
1023
1765 2497 [
1024
[(STATE_PICTURE_HEADER0)]
1025
] 13 -0.5 0.5 0 false DrawText
1026
grestore
1027
gsave
1028
grestore
1029
gsave
1030
1849 2952 moveto 96.0000000000002 0 rlineto 0 -30 rlineto -96.0000000000002 0 rlineto closepath
1031
1.000 1.000 1.000 setrgbcolor AdjustColor
1032
fill
1033
1849 2952 moveto 96.0000000000002 0 rlineto 0 -30 rlineto -96.0000000000002 0 rlineto closepath
1034
 
1035
1 setlinewidth
1036
[] 0 setdash
1037
0.000 0.000 0.000 setrgbcolor AdjustColor
1038
stroke
1039
grestore
1040
gsave
1041
1852 2949 moveto 90.0000000000005 0 rlineto 0 -24 rlineto -90.0000000000005 0 rlineto closepath
1042
 
1043
1 setlinewidth
1044
[] 0 setdash
1045
0.000 0.000 0.000 setrgbcolor AdjustColor
1046
stroke
1047
grestore
1048
gsave
1049
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1050
0.000 0.000 0.000 setrgbcolor AdjustColor
1051
1897 2937 [
1052
[(STATE_ERROR)]
1053
] 13 -0.5 0.5 0 false DrawText
1054
grestore
1055
gsave
1056
grestore
1057
gsave
1058
1814 2842 moveto 166 0 rlineto 0 -30 rlineto -166 0 rlineto closepath
1059
1.000 1.000 1.000 setrgbcolor AdjustColor
1060
fill
1061
1814 2842 moveto 166 0 rlineto 0 -30 rlineto -166 0 rlineto closepath
1062
 
1063
1 setlinewidth
1064
[] 0 setdash
1065
0.000 0.000 0.000 setrgbcolor AdjustColor
1066
stroke
1067
grestore
1068
gsave
1069
1817 2839 moveto 160 0 rlineto 0 -24 rlineto -160 0 rlineto closepath
1070
 
1071
1 setlinewidth
1072
[] 0 setdash
1073
0.000 0.000 0.000 setrgbcolor AdjustColor
1074
stroke
1075
grestore
1076
gsave
1077
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1078
0.000 0.000 0.000 setrgbcolor AdjustColor
1079
1897 2827 [
1080
[(STATE_NEXT_START_CODE)]
1081
] 13 -0.5 0.5 0 false DrawText
1082
grestore
1083
gsave
1084
grestore
1085
gsave
1086
1888 2509 moveto 166 0 rlineto 0 -23.9999999999999 rlineto -166 0 rlineto closepath
1087
1.000 1.000 1.000 setrgbcolor AdjustColor
1088
fill
1089
1888 2509 moveto 166 0 rlineto 0 -23.9999999999999 rlineto -166 0 rlineto closepath
1090
 
1091
1 setlinewidth
1092
[] 0 setdash
1093
0.000 0.000 0.000 setrgbcolor AdjustColor
1094
stroke
1095
grestore
1096
gsave
1097
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1098
0.000 0.000 0.000 setrgbcolor AdjustColor
1099
1971 2497 [
1100
[(STATE_SEQUENCE_HEADER0)]
1101
] 13 -0.5 0.5 0 false DrawText
1102
grestore
1103
gsave
1104
grestore
1105
gsave
1106
1881 2622 moveto 144 0 rlineto 0 -29.9999999999999 rlineto -144 0 rlineto closepath
1107
1.000 1.000 1.000 setrgbcolor AdjustColor
1108
fill
1109
1881 2622 moveto 144 0 rlineto 0 -29.9999999999999 rlineto -144 0 rlineto closepath
1110
 
1111
1 setlinewidth
1112
[] 0 setdash
1113
0.000 0.000 0.000 setrgbcolor AdjustColor
1114
stroke
1115
grestore
1116
gsave
1117
1884 2619 moveto 138 0 rlineto 0 -24 rlineto -138 0 rlineto closepath
1118
 
1119
1 setlinewidth
1120
[] 0 setdash
1121
0.000 0.000 0.000 setrgbcolor AdjustColor
1122
stroke
1123
grestore
1124
gsave
1125
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1126
0.000 0.000 0.000 setrgbcolor AdjustColor
1127
1953 2607 [
1128
[(STATE_SEQUENCE_END)]
1129
] 13 -0.5 0.5 0 false DrawText
1130
grestore
1131
gsave
1132
grestore
1133
gsave
1134
1832 2732 moveto 130 0 rlineto 0 -30 rlineto -130 0 rlineto closepath
1135
1.000 1.000 1.000 setrgbcolor AdjustColor
1136
fill
1137
1832 2732 moveto 130 0 rlineto 0 -30 rlineto -130 0 rlineto closepath
1138
 
1139
1 setlinewidth
1140
[] 0 setdash
1141
0.000 0.000 0.000 setrgbcolor AdjustColor
1142
stroke
1143
grestore
1144
gsave
1145
1835 2729 moveto 124 0 rlineto 0 -24 rlineto -124 0 rlineto closepath
1146
 
1147
1 setlinewidth
1148
[] 0 setdash
1149
0.000 0.000 0.000 setrgbcolor AdjustColor
1150
stroke
1151
grestore
1152
gsave
1153
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1154
0.000 0.000 0.000 setrgbcolor AdjustColor
1155
1897 2717 [
1156
[(STATE_START_CODE)]
1157
] 13 -0.5 0.5 0 false DrawText
1158
grestore
1159
gsave
1160
grestore
1161
gsave
1162
2065 2619 moveto 160 0 rlineto 0 -24 rlineto -160 0 rlineto closepath
1163
1.000 1.000 1.000 setrgbcolor AdjustColor
1164
fill
1165
2065 2619 moveto 160 0 rlineto 0 -24 rlineto -160 0 rlineto closepath
1166
 
1167
1 setlinewidth
1168
[] 0 setdash
1169
0.000 0.000 0.000 setrgbcolor AdjustColor
1170
stroke
1171
grestore
1172
gsave
1173
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1174
0.000 0.000 0.000 setrgbcolor AdjustColor
1175
2145 2607 [
1176
[(STATE_SEQUENCE_HEADER)]
1177
] 13 -0.5 0.5 0 false DrawText
1178
grestore
1179
gsave
1180
grestore
1181
gsave
1182
2997 2289 moveto 160 0 rlineto 0 -23.9999999999998 rlineto -160 0 rlineto closepath
1183
1.000 1.000 1.000 setrgbcolor AdjustColor
1184
fill
1185
2997 2289 moveto 160 0 rlineto 0 -23.9999999999998 rlineto -160 0 rlineto closepath
1186
 
1187
1 setlinewidth
1188
[] 0 setdash
1189
0.000 0.000 0.000 setrgbcolor AdjustColor
1190
stroke
1191
grestore
1192
gsave
1193
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1194
0.000 0.000 0.000 setrgbcolor AdjustColor
1195
3077 2277 [
1196
[(STATE_NEXT_MACROBLOCK)]
1197
] 13 -0.5 0.5 0 false DrawText
1198
grestore
1199
gsave
1200
grestore
1201
gsave
1202
3008 1436 moveto 180 0 rlineto 0 -24.0000000000002 rlineto -180 0 rlineto closepath
1203
1.000 1.000 1.000 setrgbcolor AdjustColor
1204
fill
1205
3008 1436 moveto 180 0 rlineto 0 -24.0000000000002 rlineto -180 0 rlineto closepath
1206
 
1207
1 setlinewidth
1208
[] 0 setdash
1209
0.000 0.000 0.000 setrgbcolor AdjustColor
1210
stroke
1211
grestore
1212
gsave
1213
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1214
0.000 0.000 0.000 setrgbcolor AdjustColor
1215
3098 1424 [
1216
[(STATE_NEXT_MOTION_VECTOR)]
1217
] 13 -0.5 0.5 0 false DrawText
1218
grestore
1219
gsave
1220
grestore
1221
gsave
1222
3087 2619 moveto 90 0 rlineto 0 -24 rlineto -90 0 rlineto closepath
1223
1.000 1.000 1.000 setrgbcolor AdjustColor
1224
fill
1225
3087 2619 moveto 90 0 rlineto 0 -24 rlineto -90 0 rlineto closepath
1226
 
1227
1 setlinewidth
1228
[] 0 setdash
1229
0.000 0.000 0.000 setrgbcolor AdjustColor
1230
stroke
1231
grestore
1232
gsave
1233
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1234
0.000 0.000 0.000 setrgbcolor AdjustColor
1235
3132 2607 [
1236
[(STATE_SLICE)]
1237
] 13 -0.5 0.5 0 false DrawText
1238
grestore
1239
gsave
1240
grestore
1241
gsave
1242
3061 1852 moveto 160 0 rlineto 0 -23.9999999999998 rlineto -160 0 rlineto closepath
1243
1.000 1.000 1.000 setrgbcolor AdjustColor
1244
fill
1245
3061 1852 moveto 160 0 rlineto 0 -23.9999999999998 rlineto -160 0 rlineto closepath
1246
 
1247
1 setlinewidth
1248
[] 0 setdash
1249
0.000 0.000 0.000 setrgbcolor AdjustColor
1250
stroke
1251
grestore
1252
gsave
1253
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1254
0.000 0.000 0.000 setrgbcolor AdjustColor
1255
3141 1840 [
1256
[(STATE_MACROBLOCK_TYPE)]
1257
] 13 -0.5 0.5 0 false DrawText
1258
grestore
1259
gsave
1260
grestore
1261
gsave
1262
3015 1540 moveto 166 0 rlineto 0 -24 rlineto -166 0 rlineto closepath
1263
1.000 1.000 1.000 setrgbcolor AdjustColor
1264
fill
1265
3015 1540 moveto 166 0 rlineto 0 -24 rlineto -166 0 rlineto closepath
1266
 
1267
1 setlinewidth
1268
[] 0 setdash
1269
0.000 0.000 0.000 setrgbcolor AdjustColor
1270
stroke
1271
grestore
1272
gsave
1273
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1274
0.000 0.000 0.000 setrgbcolor AdjustColor
1275
3098 1528 [
1276
[(STATE_MACROBLOCK_QUANT)]
1277
] 13 -0.5 0.5 0 false DrawText
1278
grestore
1279
gsave
1280
grestore
1281
gsave
1282
3075 1748 moveto 132 0 rlineto 0 -24 rlineto -132 0 rlineto closepath
1283
1.000 1.000 1.000 setrgbcolor AdjustColor
1284
fill
1285
3075 1748 moveto 132 0 rlineto 0 -24 rlineto -132 0 rlineto closepath
1286
 
1287
1 setlinewidth
1288
[] 0 setdash
1289
0.000 0.000 0.000 setrgbcolor AdjustColor
1290
stroke
1291
grestore
1292
gsave
1293
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1294
0.000 0.000 0.000 setrgbcolor AdjustColor
1295
3141 1736 [
1296
[(STATE_MOTION_TYPE)]
1297
] 13 -0.5 0.5 0 false DrawText
1298
grestore
1299
gsave
1300
grestore
1301
gsave
1302
3108 2509 moveto 160 0 rlineto 0 -23.9999999999999 rlineto -160 0 rlineto closepath
1303
1.000 1.000 1.000 setrgbcolor AdjustColor
1304
fill
1305
3108 2509 moveto 160 0 rlineto 0 -23.9999999999999 rlineto -160 0 rlineto closepath
1306
 
1307
1 setlinewidth
1308
[] 0 setdash
1309
0.000 0.000 0.000 setrgbcolor AdjustColor
1310
stroke
1311
grestore
1312
gsave
1313
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1314
0.000 0.000 0.000 setrgbcolor AdjustColor
1315
3188 2497 [
1316
[(STATE_SLICE_EXTENSION)]
1317
] 13 -0.5 0.5 0 false DrawText
1318
grestore
1319
gsave
1320
grestore
1321
gsave
1322
3170 2399 moveto 216 0 rlineto 0 -24 rlineto -216 0 rlineto closepath
1323
1.000 1.000 1.000 setrgbcolor AdjustColor
1324
fill
1325
3170 2399 moveto 216 0 rlineto 0 -24 rlineto -216 0 rlineto closepath
1326
 
1327
1 setlinewidth
1328
[] 0 setdash
1329
0.000 0.000 0.000 setrgbcolor AdjustColor
1330
stroke
1331
grestore
1332
gsave
1333
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1334
0.000 0.000 0.000 setrgbcolor AdjustColor
1335
3278 2387 [
1336
[(STATE_SLICE_EXTRA_INFORMATION)]
1337
] 13 -0.5 0.5 0 false DrawText
1338
grestore
1339
gsave
1340
grestore
1341
gsave
1342
3151 1332 moveto 188 0 rlineto 0 -24.0000000000002 rlineto -188 0 rlineto closepath
1343
1.000 1.000 1.000 setrgbcolor AdjustColor
1344
fill
1345
3151 1332 moveto 188 0 rlineto 0 -24.0000000000002 rlineto -188 0 rlineto closepath
1346
 
1347
1 setlinewidth
1348
[] 0 setdash
1349
0.000 0.000 0.000 setrgbcolor AdjustColor
1350
stroke
1351
grestore
1352
gsave
1353
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1354
0.000 0.000 0.000 setrgbcolor AdjustColor
1355
3245 1320 [
1356
[(STATE_MOTION_VERT_FLD_SEL)]
1357
] 13 -0.5 0.5 0 false DrawText
1358
grestore
1359
gsave
1360
grestore
1361
gsave
1362
3129 1644 moveto 110 0 rlineto 0 -24 rlineto -110 0 rlineto closepath
1363
1.000 1.000 1.000 setrgbcolor AdjustColor
1364
fill
1365
3129 1644 moveto 110 0 rlineto 0 -24 rlineto -110 0 rlineto closepath
1366
 
1367
1 setlinewidth
1368
[] 0 setdash
1369
0.000 0.000 0.000 setrgbcolor AdjustColor
1370
stroke
1371
grestore
1372
gsave
1373
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1374
0.000 0.000 0.000 setrgbcolor AdjustColor
1375
3184 1632 [
1376
[(STATE_DCT_TYPE)]
1377
] 13 -0.5 0.5 0 false DrawText
1378
grestore
1379
gsave
1380
grestore
1381
gsave
1382
3198 812 moveto 130 0 rlineto 0 -30 rlineto -130 0 rlineto closepath
1383
1.000 1.000 1.000 setrgbcolor AdjustColor
1384
fill
1385
3198 812 moveto 130 0 rlineto 0 -30 rlineto -130 0 rlineto closepath
1386
 
1387
1 setlinewidth
1388
[] 0 setdash
1389
0.000 0.000 0.000 setrgbcolor AdjustColor
1390
stroke
1391
grestore
1392
gsave
1393
3201 809 moveto 124 0 rlineto 0 -24 rlineto -124 0 rlineto closepath
1394
 
1395
1 setlinewidth
1396
[] 0 setdash
1397
0.000 0.000 0.000 setrgbcolor AdjustColor
1398
stroke
1399
grestore
1400
gsave
1401
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1402
0.000 0.000 0.000 setrgbcolor AdjustColor
1403
3263 797 [
1404
[(STATE_NEXT_BLOCK)]
1405
] 13 -0.5 0.5 0 false DrawText
1406
grestore
1407
gsave
1408
grestore
1409
gsave
1410
3178 916 moveto 152 0 rlineto 0 -24 rlineto -152 0 rlineto closepath
1411
1.000 1.000 1.000 setrgbcolor AdjustColor
1412
fill
1413
3178 916 moveto 152 0 rlineto 0 -24 rlineto -152 0 rlineto closepath
1414
 
1415
1 setlinewidth
1416
[] 0 setdash
1417
0.000 0.000 0.000 setrgbcolor AdjustColor
1418
stroke
1419
grestore
1420
gsave
1421
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1422
0.000 0.000 0.000 setrgbcolor AdjustColor
1423
3254 904 [
1424
[(STATE_MOTION_PREDICT)]
1425
] 13 -0.5 0.5 0 false DrawText
1426
grestore
1427
gsave
1428
grestore
1429
gsave
1430
3129 1228 moveto 132 0 rlineto 0 -24.0000000000005 rlineto -132 0 rlineto closepath
1431
1.000 1.000 1.000 setrgbcolor AdjustColor
1432
fill
1433
3129 1228 moveto 132 0 rlineto 0 -24.0000000000005 rlineto -132 0 rlineto closepath
1434
 
1435
1 setlinewidth
1436
[] 0 setdash
1437
0.000 0.000 0.000 setrgbcolor AdjustColor
1438
stroke
1439
grestore
1440
gsave
1441
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1442
0.000 0.000 0.000 setrgbcolor AdjustColor
1443
3195 1216 [
1444
[(STATE_MOTION_CODE)]
1445
] 13 -0.5 0.5 0 false DrawText
1446
grestore
1447
gsave
1448
grestore
1449
gsave
1450
3225 2179 moveto 160 0 rlineto 0 -24 rlineto -160 0 rlineto closepath
1451
1.000 1.000 1.000 setrgbcolor AdjustColor
1452
fill
1453
3225 2179 moveto 160 0 rlineto 0 -24 rlineto -160 0 rlineto closepath
1454
 
1455
1 setlinewidth
1456
[] 0 setdash
1457
0.000 0.000 0.000 setrgbcolor AdjustColor
1458
stroke
1459
grestore
1460
gsave
1461
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1462
0.000 0.000 0.000 setrgbcolor AdjustColor
1463
3305 2167 [
1464
[(STATE_MACROBLOCK_SKIP)]
1465
] 13 -0.5 0.5 0 false DrawText
1466
grestore
1467
gsave
1468
grestore
1469
gsave
1470
3248 1124 moveto 160.000000000001 0 rlineto 0 -23.9999999999998 rlineto -160.000000000001 0 rlineto closepath
1471
1.000 1.000 1.000 setrgbcolor AdjustColor
1472
fill
1473
3248 1124 moveto 160.000000000001 0 rlineto 0 -23.9999999999998 rlineto -160.000000000001 0 rlineto closepath
1474
 
1475
1 setlinewidth
1476
[] 0 setdash
1477
0.000 0.000 0.000 setrgbcolor AdjustColor
1478
stroke
1479
grestore
1480
gsave
1481
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1482
0.000 0.000 0.000 setrgbcolor AdjustColor
1483
3328 1112 [
1484
[(STATE_MOTION_RESIDUAL)]
1485
] 13 -0.5 0.5 0 false DrawText
1486
grestore
1487
gsave
1488
grestore
1489
gsave
1490
3226 1020 moveto 160 0 rlineto 0 -24 rlineto -160 0 rlineto closepath
1491
1.000 1.000 1.000 setrgbcolor AdjustColor
1492
fill
1493
3226 1020 moveto 160 0 rlineto 0 -24 rlineto -160 0 rlineto closepath
1494
 
1495
1 setlinewidth
1496
[] 0 setdash
1497
0.000 0.000 0.000 setrgbcolor AdjustColor
1498
stroke
1499
grestore
1500
gsave
1501
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1502
0.000 0.000 0.000 setrgbcolor AdjustColor
1503
3306 1008 [
1504
[(STATE_MOTION_DMVECTOR)]
1505
] 13 -0.5 0.5 0 false DrawText
1506
grestore
1507
gsave
1508
grestore
1509
gsave
1510
3234 1959 moveto 166 0 rlineto 0 -24 rlineto -166 0 rlineto closepath
1511
1.000 1.000 1.000 setrgbcolor AdjustColor
1512
fill
1513
3234 1959 moveto 166 0 rlineto 0 -24 rlineto -166 0 rlineto closepath
1514
 
1515
1 setlinewidth
1516
[] 0 setdash
1517
0.000 0.000 0.000 setrgbcolor AdjustColor
1518
stroke
1519
grestore
1520
gsave
1521
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1522
0.000 0.000 0.000 setrgbcolor AdjustColor
1523
3317 1947 [
1524
[(STATE_EMIT_EMPTY_BLOCK)]
1525
] 13 -0.5 0.5 0 false DrawText
1526
grestore
1527
gsave
1528
grestore
1529
gsave
1530
3348 2069 moveto 174 0 rlineto 0 -24 rlineto -174 0 rlineto closepath
1531
1.000 1.000 1.000 setrgbcolor AdjustColor
1532
fill
1533
3348 2069 moveto 174 0 rlineto 0 -24 rlineto -174 0 rlineto closepath
1534
 
1535
1 setlinewidth
1536
[] 0 setdash
1537
0.000 0.000 0.000 setrgbcolor AdjustColor
1538
stroke
1539
grestore
1540
gsave
1541
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1542
0.000 0.000 0.000 setrgbcolor AdjustColor
1543
3435 2057 [
1544
[(STATE_DELAY_EMPTY_BLOCK)]
1545
] 13 -0.5 0.5 0 false DrawText
1546
grestore
1547
gsave
1548
grestore
1549
gsave
1550
3322 702 moveto 180 0 rlineto 0 -24 rlineto -180 0 rlineto closepath
1551
1.000 1.000 1.000 setrgbcolor AdjustColor
1552
fill
1553
3322 702 moveto 180 0 rlineto 0 -24 rlineto -180 0 rlineto closepath
1554
 
1555
1 setlinewidth
1556
[] 0 setdash
1557
0.000 0.000 0.000 setrgbcolor AdjustColor
1558
stroke
1559
grestore
1560
gsave
1561
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1562
0.000 0.000 0.000 setrgbcolor AdjustColor
1563
3412 690 [
1564
[(STATE_DCT_DC_CHROMI_SIZE)]
1565
] 13 -0.5 0.5 0 false DrawText
1566
grestore
1567
gsave
1568
grestore
1569
gsave
1570
3363 182 moveto 160 0 rlineto 0 -24 rlineto -160 0 rlineto closepath
1571
1.000 1.000 1.000 setrgbcolor AdjustColor
1572
fill
1573
3363 182 moveto 160 0 rlineto 0 -24 rlineto -160 0 rlineto closepath
1574
 
1575
1 setlinewidth
1576
[] 0 setdash
1577
0.000 0.000 0.000 setrgbcolor AdjustColor
1578
stroke
1579
grestore
1580
gsave
1581
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1582
0.000 0.000 0.000 setrgbcolor AdjustColor
1583
3443 170 [
1584
[(STATE_NON_CODED_BLOCK)]
1585
] 13 -0.5 0.5 0 false DrawText
1586
grestore
1587
gsave
1588
grestore
1589
gsave
1590
3333 286 moveto 152 0 rlineto 0 -23.9999999999995 rlineto -152 0 rlineto closepath
1591
1.000 1.000 1.000 setrgbcolor AdjustColor
1592
fill
1593
3333 286 moveto 152 0 rlineto 0 -23.9999999999995 rlineto -152 0 rlineto closepath
1594
 
1595
1 setlinewidth
1596
[] 0 setdash
1597
0.000 0.000 0.000 setrgbcolor AdjustColor
1598
stroke
1599
grestore
1600
gsave
1601
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1602
0.000 0.000 0.000 setrgbcolor AdjustColor
1603
3409 274 [
1604
[(STATE_DCT_ESCAPE_B15)]
1605
] 13 -0.5 0.5 0 false DrawText
1606
grestore
1607
gsave
1608
grestore
1609
gsave
1610
3340 390 moveto 138 0 rlineto 0 -24 rlineto -138 0 rlineto closepath
1611
1.000 1.000 1.000 setrgbcolor AdjustColor
1612
fill
1613
3340 390 moveto 138 0 rlineto 0 -24 rlineto -138 0 rlineto closepath
1614
 
1615
1 setlinewidth
1616
[] 0 setdash
1617
0.000 0.000 0.000 setrgbcolor AdjustColor
1618
stroke
1619
grestore
1620
gsave
1621
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1622
0.000 0.000 0.000 setrgbcolor AdjustColor
1623
3409 378 [
1624
[(STATE_DCT_SUBS_B15)]
1625
] 13 -0.5 0.5 0 false DrawText
1626
grestore
1627
gsave
1628
grestore
1629
gsave
1630
3419 1332 moveto 202 0 rlineto 0 -24.0000000000002 rlineto -202 0 rlineto closepath
1631
1.000 1.000 1.000 setrgbcolor AdjustColor
1632
fill
1633
3419 1332 moveto 202 0 rlineto 0 -24.0000000000002 rlineto -202 0 rlineto closepath
1634
 
1635
1 setlinewidth
1636
[] 0 setdash
1637
0.000 0.000 0.000 setrgbcolor AdjustColor
1638
stroke
1639
grestore
1640
gsave
1641
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1642
0.000 0.000 0.000 setrgbcolor AdjustColor
1643
3520 1320 [
1644
[(STATE_MOTION_PIPELINE_FLUSH)]
1645
] 13 -0.5 0.5 0 false DrawText
1646
grestore
1647
gsave
1648
grestore
1649
gsave
1650
3445 494 moveto 146 0 rlineto 0 -24 rlineto -146 0 rlineto closepath
1651
1.000 1.000 1.000 setrgbcolor AdjustColor
1652
fill
1653
3445 494 moveto 146 0 rlineto 0 -24 rlineto -146 0 rlineto closepath
1654
 
1655
1 setlinewidth
1656
[] 0 setdash
1657
0.000 0.000 0.000 setrgbcolor AdjustColor
1658
stroke
1659
grestore
1660
gsave
1661
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1662
0.000 0.000 0.000 setrgbcolor AdjustColor
1663
3518 482 [
1664
[(STATE_DCT_DC_DIFF_0)]
1665
] 13 -0.5 0.5 0 false DrawText
1666
grestore
1667
gsave
1668
grestore
1669
gsave
1670
3452 598 moveto 132 0 rlineto 0 -24 rlineto -132 0 rlineto closepath
1671
1.000 1.000 1.000 setrgbcolor AdjustColor
1672
fill
1673
3452 598 moveto 132 0 rlineto 0 -24 rlineto -132 0 rlineto closepath
1674
 
1675
1 setlinewidth
1676
[] 0 setdash
1677
0.000 0.000 0.000 setrgbcolor AdjustColor
1678
stroke
1679
grestore
1680
gsave
1681
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1682
0.000 0.000 0.000 setrgbcolor AdjustColor
1683
3518 586 [
1684
[(STATE_DCT_DC_DIFF)]
1685
] 13 -0.5 0.5 0 false DrawText
1686
grestore
1687
gsave
1688
grestore
1689
gsave
1690
3573 1228 moveto 138 0 rlineto 0 -24.0000000000005 rlineto -138 0 rlineto closepath
1691
1.000 1.000 1.000 setrgbcolor AdjustColor
1692
fill
1693
3573 1228 moveto 138 0 rlineto 0 -24.0000000000005 rlineto -138 0 rlineto closepath
1694
 
1695
1 setlinewidth
1696
[] 0 setdash
1697
0.000 0.000 0.000 setrgbcolor AdjustColor
1698
stroke
1699
grestore
1700
gsave
1701
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1702
0.000 0.000 0.000 setrgbcolor AdjustColor
1703
3642 1216 [
1704
[(STATE_MARKER_BIT_0)]
1705
] 13 -0.5 0.5 0 false DrawText
1706
grestore
1707
gsave
1708
grestore
1709
gsave
1710
3573 1020 moveto 202 0 rlineto 0 -24 rlineto -202 0 rlineto closepath
1711
1.000 1.000 1.000 setrgbcolor AdjustColor
1712
fill
1713
3573 1020 moveto 202 0 rlineto 0 -24 rlineto -202 0 rlineto closepath
1714
 
1715
1 setlinewidth
1716
[] 0 setdash
1717
0.000 0.000 0.000 setrgbcolor AdjustColor
1718
stroke
1719
grestore
1720
gsave
1721
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1722
0.000 0.000 0.000 setrgbcolor AdjustColor
1723
3674 1008 [
1724
[(STATE_CODED_BLOCK_PATTERN_1)]
1725
] 13 -0.5 0.5 0 false DrawText
1726
grestore
1727
gsave
1728
grestore
1729
gsave
1730
3551 1124 moveto 188 0 rlineto 0 -23.9999999999998 rlineto -188 0 rlineto closepath
1731
1.000 1.000 1.000 setrgbcolor AdjustColor
1732
fill
1733
3551 1124 moveto 188 0 rlineto 0 -23.9999999999998 rlineto -188 0 rlineto closepath
1734
 
1735
1 setlinewidth
1736
[] 0 setdash
1737
0.000 0.000 0.000 setrgbcolor AdjustColor
1738
stroke
1739
grestore
1740
gsave
1741
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1742
0.000 0.000 0.000 setrgbcolor AdjustColor
1743
3645 1112 [
1744
[(STATE_CODED_BLOCK_PATTERN)]
1745
] 13 -0.5 0.5 0 false DrawText
1746
grestore
1747
gsave
1748
grestore
1749
gsave
1750
3564 286 moveto 118 0 rlineto 0 -23.9999999999995 rlineto -118 0 rlineto closepath
1751
1.000 1.000 1.000 setrgbcolor AdjustColor
1752
fill
1753
3564 286 moveto 118 0 rlineto 0 -23.9999999999995 rlineto -118 0 rlineto closepath
1754
 
1755
1 setlinewidth
1756
[] 0 setdash
1757
0.000 0.000 0.000 setrgbcolor AdjustColor
1758
stroke
1759
grestore
1760
gsave
1761
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1762
0.000 0.000 0.000 setrgbcolor AdjustColor
1763
3623 274 [
1764
[(STATE_DCT_ERROR)]
1765
] 13 -0.5 0.5 0 false DrawText
1766
grestore
1767
gsave
1768
grestore
1769
gsave
1770
3542 702 moveto 166 0 rlineto 0 -24 rlineto -166 0 rlineto closepath
1771
1.000 1.000 1.000 setrgbcolor AdjustColor
1772
fill
1773
3542 702 moveto 166 0 rlineto 0 -24 rlineto -166 0 rlineto closepath
1774
 
1775
1 setlinewidth
1776
[] 0 setdash
1777
0.000 0.000 0.000 setrgbcolor AdjustColor
1778
stroke
1779
grestore
1780
gsave
1781
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1782
0.000 0.000 0.000 setrgbcolor AdjustColor
1783
3625 690 [
1784
[(STATE_DCT_DC_LUMI_SIZE)]
1785
] 13 -0.5 0.5 0 false DrawText
1786
grestore
1787
gsave
1788
grestore
1789
gsave
1790
3695 916 moveto 89.9999999999995 0 rlineto 0 -24 rlineto -89.9999999999995 0 rlineto closepath
1791
1.000 1.000 1.000 setrgbcolor AdjustColor
1792
fill
1793
3695 916 moveto 89.9999999999995 0 rlineto 0 -24 rlineto -89.9999999999995 0 rlineto closepath
1794
 
1795
1 setlinewidth
1796
[] 0 setdash
1797
0.000 0.000 0.000 setrgbcolor AdjustColor
1798
stroke
1799
grestore
1800
gsave
1801
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1802
0.000 0.000 0.000 setrgbcolor AdjustColor
1803
3740 904 [
1804
[(STATE_BLOCK)]
1805
] 13 -0.5 0.5 0 false DrawText
1806
grestore
1807
gsave
1808
grestore
1809
gsave
1810
3788 390 moveto 137.999999999999 0 rlineto 0 -24 rlineto -137.999999999999 0 rlineto closepath
1811
1.000 1.000 1.000 setrgbcolor AdjustColor
1812
fill
1813
3788 390 moveto 137.999999999999 0 rlineto 0 -24 rlineto -137.999999999999 0 rlineto closepath
1814
 
1815
1 setlinewidth
1816
[] 0 setdash
1817
0.000 0.000 0.000 setrgbcolor AdjustColor
1818
stroke
1819
grestore
1820
gsave
1821
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1822
0.000 0.000 0.000 setrgbcolor AdjustColor
1823
3857 378 [
1824
[(STATE_DCT_SUBS_B14)]
1825
] 13 -0.5 0.5 0 false DrawText
1826
grestore
1827
gsave
1828
grestore
1829
gsave
1830
3770 702 moveto 188 0 rlineto 0 -24 rlineto -188 0 rlineto closepath
1831
1.000 1.000 1.000 setrgbcolor AdjustColor
1832
fill
1833
3770 702 moveto 188 0 rlineto 0 -24 rlineto -188 0 rlineto closepath
1834
 
1835
1 setlinewidth
1836
[] 0 setdash
1837
0.000 0.000 0.000 setrgbcolor AdjustColor
1838
stroke
1839
grestore
1840
gsave
1841
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1842
0.000 0.000 0.000 setrgbcolor AdjustColor
1843
3864 690 [
1844
[(STATE_DCT_NON_INTRA_FIRST)]
1845
] 13 -0.5 0.5 0 false DrawText
1846
grestore
1847
gsave
1848
grestore
1849
gsave
1850
3831 286 moveto 152 0 rlineto 0 -23.9999999999995 rlineto -152 0 rlineto closepath
1851
1.000 1.000 1.000 setrgbcolor AdjustColor
1852
fill
1853
3831 286 moveto 152 0 rlineto 0 -23.9999999999995 rlineto -152 0 rlineto closepath
1854
 
1855
1 setlinewidth
1856
[] 0 setdash
1857
0.000 0.000 0.000 setrgbcolor AdjustColor
1858
stroke
1859
grestore
1860
gsave
1861
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1862
0.000 0.000 0.000 setrgbcolor AdjustColor
1863
3907 274 [
1864
[(STATE_DCT_ESCAPE_B14)]
1865
] 13 -0.5 0.5 0 false DrawText
1866
grestore
1867
gsave
1868
grestore
1869
gsave
1870
3815 1020 moveto 202 0 rlineto 0 -24 rlineto -202 0 rlineto closepath
1871
1.000 1.000 1.000 setrgbcolor AdjustColor
1872
fill
1873
3815 1020 moveto 202 0 rlineto 0 -24 rlineto -202 0 rlineto closepath
1874
 
1875
1 setlinewidth
1876
[] 0 setdash
1877
0.000 0.000 0.000 setrgbcolor AdjustColor
1878
stroke
1879
grestore
1880
gsave
1881
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1882
0.000 0.000 0.000 setrgbcolor AdjustColor
1883
3916 1008 [
1884
[(STATE_CODED_BLOCK_PATTERN_2)]
1885
] 13 -0.5 0.5 0 false DrawText
1886
grestore
1887
gsave
1888
grestore
1889
gsave
1890
729 2592 moveto
1891
461 2551 lineto
1892
200.466386447199 2510.01718438495 lineto
1893
 
1894
1 setlinejoin
1895
1 setlinewidth
1896
[] 0 setdash
1897
0.000 0.000 0.000 setrgbcolor AdjustColor
1898
stroke
1899
194 2509 moveto
1900
206.710035965442 2505.4306880555 lineto
1901
205.932917699151 2510.3709398912 lineto
1902
205.777525124408 2511.35879268778 lineto
1903
205.000406858117 2516.29904452349 lineto
1904
194 2509 lineto
1905
fill
1906
grestore
1907
gsave
1908
117 2372 moveto
1909
117 2332 lineto
1910
117 2298.54590083621 lineto
1911
 
1912
1 setlinejoin
1913
1 setlinewidth
1914
[] 0 setdash
1915
0.000 0.000 0.000 setrgbcolor AdjustColor
1916
stroke
1917
117 2292 moveto
1918
122.501 2304.001 lineto
1919
117.5 2304.001 lineto
1920
116.5 2304.001 lineto
1921
111.499 2304.001 lineto
1922
117 2292 lineto
1923
fill
1924
grestore
1925
gsave
1926
117 2485 moveto
1927
117 2444 lineto
1928
117 2408.54590083621 lineto
1929
 
1930
1 setlinejoin
1931
1 setlinewidth
1932
[] 0 setdash
1933
0.000 0.000 0.000 setrgbcolor AdjustColor
1934
stroke
1935
117 2402 moveto
1936
122.501 2414.001 lineto
1937
117.5 2414.001 lineto
1938
116.5 2414.001 lineto
1939
111.499 2414.001 lineto
1940
117 2402 lineto
1941
fill
1942
grestore
1943
gsave
1944
687 2482 moveto
1945
632 2435 lineto
1946
577 2387 lineto
1947
577 2332 lineto
1948
577 2277 lineto
1949
644 2230 lineto
1950
705.678753012686 2185.81223664763 lineto
1951
 
1952
1 setlinejoin
1953
1 setlinewidth
1954
[] 0 setdash
1955
0.000 0.000 0.000 setrgbcolor AdjustColor
1956
stroke
1957
711 2182 moveto
1958
704.44793446016 2193.46104005584 lineto
1959
701.535425402686 2189.39566282979 lineto
1960
700.953040068259 2188.58274996715 lineto
1961
698.040531010786 2184.51737274109 lineto
1962
711 2182 lineto
1963
fill
1964
grestore
1965
gsave
1966
grestore
1967
gsave
1968
grestore
1969
gsave
1970
877 2372 moveto
1971
738 2325 lineto
1972
599 2277 lineto
1973
656 2230 lineto
1974
708.957075169137 2186.17345503244 lineto
1975
 
1976
1 setlinejoin
1977
1 setlinewidth
1978
[] 0 setdash
1979
0.000 0.000 0.000 setrgbcolor AdjustColor
1980
stroke
1981
714 2182 moveto
1982
708.261757747085 2193.88938929663 lineto
1983
705.0732816092 2190.03664729669 lineto
1984
704.435713895165 2189.26625297556 lineto
1985
701.24723775728 2185.41351097562 lineto
1986
714 2182 lineto
1987
fill
1988
grestore
1989
gsave
1990
grestore
1991
gsave
1992
684 2482 moveto
1993
619 2435 lineto
1994
555 2387 lineto
1995
555 2332 lineto
1996
555 2277 lineto
1997
555 2222 lineto
1998
555 2167 lineto
1999
644 2120 lineto
2000
728.224205144519 2075.08042392292 lineto
2001
 
2002
1 setlinejoin
2003
1 setlinewidth
2004
[] 0 setdash
2005
0.000 0.000 0.000 setrgbcolor AdjustColor
2006
stroke
2007
734 2072 moveto
2008
725.999588235294 2082.50135294118 lineto
2009
723.646176470588 2078.08870588235 lineto
2010
723.175588235294 2077.20635294118 lineto
2011
720.822176470588 2072.79370588235 lineto
2012
734 2072 lineto
2013
fill
2014
grestore
2015
gsave
2016
grestore
2017
gsave
2018
grestore
2019
gsave
2020
grestore
2021
gsave
2022
626 2167 moveto
2023
612.66 2153.66 602.67 2150.33 596 2157 curveto
2024
589.33 2163.67 589.33 2170.33 596 2177 curveto
2025
602.67 2183.67 611.118659260203 2181.8813407398 621.37134912974 2171.62865087026 curveto
2026
 
2027
1 setlinejoin
2028
1 setlinewidth
2029
[] 0 setdash
2030
0.000 0.000 0.000 setrgbcolor AdjustColor
2031
stroke
2032
626 2167 moveto
2033
621.403805922287 2179.37578288433 lineto
2034
617.867564909574 2175.83954187161 lineto
2035
617.160458128387 2175.13243509043 lineto
2036
613.624217115673 2171.59619407771 lineto
2037
626 2167 lineto
2038
fill
2039
grestore
2040
gsave
2041
grestore
2042
gsave
2043
642 2057 moveto
2044
628.66 2043.66 618.67 2040.33 612 2047 curveto
2045
605.33 2053.67 605.33 2060.33 612 2067 curveto
2046
618.67 2073.67 627.118659260203 2071.8813407398 637.37134912974 2061.62865087026 curveto
2047
 
2048
1 setlinejoin
2049
1 setlinewidth
2050
[] 0 setdash
2051
0.000 0.000 0.000 setrgbcolor AdjustColor
2052
stroke
2053
642 2057 moveto
2054
637.403805922287 2069.37578288433 lineto
2055
633.867564909574 2065.83954187161 lineto
2056
633.160458128387 2065.13243509043 lineto
2057
629.624217115673 2061.59619407771 lineto
2058
642 2057 lineto
2059
fill
2060
grestore
2061
gsave
2062
grestore
2063
gsave
2064
809 2592 moveto
2065
765 2552 lineto
2066
725.843574345189 2516.40324940472 lineto
2067
 
2068
1 setlinejoin
2069
1 setlinewidth
2070
[] 0 setdash
2071
0.000 0.000 0.000 setrgbcolor AdjustColor
2072
stroke
2073
721 2512 moveto
2074
733.580393860598 2516.002335857 lineto
2075
730.216357217823 2519.70277616405 lineto
2076
729.543684423827 2520.44271623745 lineto
2077
726.179647781051 2524.1431565445 lineto
2078
721 2512 lineto
2079
fill
2080
grestore
2081
gsave
2082
705 2482 moveto
2083
705 2435 lineto
2084
705 2387 lineto
2085
731 2340 lineto
2086
754.790798541527 2297.70524703729 lineto
2087
 
2088
1 setlinejoin
2089
1 setlinewidth
2090
[] 0 setdash
2091
0.000 0.000 0.000 setrgbcolor AdjustColor
2092
stroke
2093
758 2292 moveto
2094
756.910911892892 2305.15670510025 lineto
2095
752.552162631732 2302.70490864085 lineto
2096
751.680587094607 2302.21464740122 lineto
2097
747.321837833447 2299.76285094181 lineto
2098
758 2292 lineto
2099
fill
2100
grestore
2101
gsave
2102
grestore
2103
gsave
2104
900 2372 moveto
2105
844 2332 lineto
2106
793.326618609625 2295.8047275783 lineto
2107
 
2108
1 setlinejoin
2109
1 setlinewidth
2110
[] 0 setdash
2111
0.000 0.000 0.000 setrgbcolor AdjustColor
2112
stroke
2113
788 2292 moveto
2114
800.963006691601 2294.49909173771 lineto
2115
798.056234484812 2298.56857282722 lineto
2116
797.474996291092 2299.38230629843 lineto
2117
794.568224084303 2303.45178738793 lineto
2118
788 2292 lineto
2119
fill
2120
grestore
2121
gsave
2122
734 2482 moveto
2123
812 2442 lineto
2124
885.160027712399 2404.95694799372 lineto
2125
 
2126
1 setlinejoin
2127
1 setlinewidth
2128
[] 0 setdash
2129
0.000 0.000 0.000 setrgbcolor AdjustColor
2130
stroke
2131
891 2402 moveto
2132
882.778161958656 2412.32890997259 lineto
2133
880.519084516664 2407.86723202466 lineto
2134
880.067359373294 2406.9750748665 lineto
2135
877.808281931302 2402.51339691857 lineto
2136
891 2402 lineto
2137
fill
2138
grestore
2139
gsave
2140
762 2262 moveto
2141
749 2222 lineto
2142
738.880950764412 2188.26983588137 lineto
2143
 
2144
1 setlinejoin
2145
1 setlinewidth
2146
[] 0 setdash
2147
0.000 0.000 0.000 setrgbcolor AdjustColor
2148
stroke
2149
737 2182 moveto
2150
745.717464369683 2191.91417253044 lineto
2151
740.927375117292 2193.35119930616 lineto
2152
739.969548832071 2193.63854719172 lineto
2153
735.17945957968 2195.07557396744 lineto
2154
737 2182 lineto
2155
fill
2156
grestore
2157
gsave
2158
781 2262 moveto
2159
826 2215 lineto
2160
871 2167 lineto
2161
824 2120 lineto
2162
781.579674514968 2076.67711439827 lineto
2163
 
2164
1 setlinejoin
2165
1 setlinewidth
2166
[] 0 setdash
2167
0.000 0.000 0.000 setrgbcolor AdjustColor
2168
stroke
2169
777 2072 moveto
2170
789.326718992232 2076.72620364421 lineto
2171
785.753452349338 2080.22502723204 lineto
2172
785.038941922844 2080.92465202465 lineto
2173
781.46567527995 2084.42347561249 lineto
2174
777 2072 lineto
2175
fill
2176
grestore
2177
gsave
2178
grestore
2179
gsave
2180
737 2152 moveto
2181
747 2112 lineto
2182
756.264311956066 2078.31159288703 lineto
2183
 
2184
1 setlinejoin
2185
1 setlinewidth
2186
[] 0 setdash
2187
0.000 0.000 0.000 setrgbcolor AdjustColor
2188
stroke
2189
758 2072 moveto
2190
760.121950913078 2085.03005473214 lineto
2191
755.299959743666 2083.70400716055 lineto
2192
754.335754350863 2083.43885067753 lineto
2193
749.513763181451 2082.11280310594 lineto
2194
758 2072 lineto
2195
fill
2196
grestore
2197
gsave
2198
917 2372 moveto
2199
906 2325 lineto
2200
895 2277 lineto
2201
895 2222 lineto
2202
895 2167 lineto
2203
838 2120 lineto
2204
786.007032851382 2076.21644871695 lineto
2205
 
2206
1 setlinejoin
2207
1 setlinewidth
2208
[] 0 setdash
2209
0.000 0.000 0.000 setrgbcolor AdjustColor
2210
stroke
2211
781 2072 moveto
2212
793.723090026154 2075.5224965843 lineto
2213
790.501767161494 2079.34781748608 lineto
2214
789.857631415711 2080.1127286842 lineto
2215
786.636308551052 2083.93804958598 lineto
2216
781 2072 lineto
2217
fill
2218
grestore
2219
gsave
2220
grestore
2221
gsave
2222
grestore
2223
gsave
2224
670 2277 moveto
2225
656.66 2263.66 646.67 2260.33 640 2267 curveto
2226
633.33 2273.67 633.33 2280.33 640 2287 curveto
2227
646.67 2293.67 655.118659260203 2291.8813407398 665.37134912974 2281.62865087026 curveto
2228
 
2229
1 setlinejoin
2230
1 setlinewidth
2231
[] 0 setdash
2232
0.000 0.000 0.000 setrgbcolor AdjustColor
2233
stroke
2234
670 2277 moveto
2235
665.403805922287 2289.37578288433 lineto
2236
661.867564909573 2285.83954187161 lineto
2237
661.160458128387 2285.13243509043 lineto
2238
657.624217115673 2281.59619407771 lineto
2239
670 2277 lineto
2240
fill
2241
grestore
2242
gsave
2243
grestore
2244
gsave
2245
1832 2711 moveto
2246
1379 2665 lineto
2247
932.510950637164 2618.6755290948 lineto
2248
 
2249
1 setlinejoin
2250
1 setlinewidth
2251
[] 0 setdash
2252
0.000 0.000 0.000 setrgbcolor AdjustColor
2253
stroke
2254
926 2618 moveto
2255
938.504620249411 2613.76685998129 lineto
2256
937.988523063149 2618.74115839356 lineto
2257
937.885324265656 2619.73581914387 lineto
2258
937.369227079394 2624.71011755614 lineto
2259
926 2618 lineto
2260
fill
2261
grestore
2262
gsave
2263
838 2387 moveto
2264
824.66 2373.66 814.67 2370.33 808 2377 curveto
2265
801.33 2383.67 801.33 2390.33 808 2397 curveto
2266
814.67 2403.67 823.118659260203 2401.8813407398 833.37134912974 2391.62865087026 curveto
2267
 
2268
1 setlinejoin
2269
1 setlinewidth
2270
[] 0 setdash
2271
0.000 0.000 0.000 setrgbcolor AdjustColor
2272
stroke
2273
838 2387 moveto
2274
833.403805922287 2399.37578288433 lineto
2275
829.867564909573 2395.83954187161 lineto
2276
829.160458128387 2395.13243509043 lineto
2277
825.624217115673 2391.59619407771 lineto
2278
838 2387 lineto
2279
fill
2280
grestore
2281
gsave
2282
grestore
2283
gsave
2284
901 2592 moveto
2285
1110 2551 lineto
2286
1313.58121613502 2510.283756773 lineto
2287
 
2288
1 setlinejoin
2289
1 setlinewidth
2290
[] 0 setdash
2291
0.000 0.000 0.000 setrgbcolor AdjustColor
2292
stroke
2293
1320 2509 moveto
2294
1309.31088617043 2516.74776403477 lineto
2295
1308.3301093786 2511.84388007564 lineto
2296
1308.13399324346 2510.86329939995 lineto
2297
1307.15321645164 2505.95941544082 lineto
2298
1320 2509 lineto
2299
fill
2300
grestore
2301
gsave
2302
863 2592 moveto
2303
967 2551 lineto
2304
1064.9303668831 2511.45119798952 lineto
2305
 
2306
1 setlinejoin
2307
1 setlinewidth
2308
[] 0 setdash
2309
0.000 0.000 0.000 setrgbcolor AdjustColor
2310
stroke
2311
1071 2509 moveto
2312
1061.93209194872 2518.5946884042 lineto
2313
1060.05940223767 2513.95755197682 lineto
2314
1059.68493918807 2513.03031013971 lineto
2315
1057.81224947701 2508.39317371233 lineto
2316
1071 2509 lineto
2317
fill
2318
grestore
2319
gsave
2320
1093 2485 moveto
2321
1064 2436 lineto
2322
1035 2387 lineto
2323
1032 2340 lineto
2324
1030.27250941744 2298.54022601864 lineto
2325
 
2326
1 setlinejoin
2327
1 setlinewidth
2328
[] 0 setdash
2329
0.000 0.000 0.000 setrgbcolor AdjustColor
2330
stroke
2331
1030 2292 moveto
2332
1035.99583920217 2303.76158638372 lineto
2333
1030.99917470364 2303.96978073783 lineto
2334
1030.00004163054 2304.01141128254 lineto
2335
1025.00337713201 2304.21960563664 lineto
2336
1030 2292 lineto
2337
fill
2338
grestore
2339
gsave
2340
grestore
2341
gsave
2342
1152 2375 moveto
2343
1100 2334 lineto
2344
1053.09232582202 2296.11303239471 lineto
2345
 
2346
1 setlinejoin
2347
1 setlinewidth
2348
[] 0 setdash
2349
0.000 0.000 0.000 setrgbcolor AdjustColor
2350
stroke
2351
1048 2292 moveto
2352
1060.79255452971 2295.26121918986 lineto
2353
1057.65024065717 2299.15170303206 lineto
2354
1057.02190355008 2299.92964421226 lineto
2355
1053.87958967754 2303.82012805446 lineto
2356
1048 2292 lineto
2357
fill
2358
grestore
2359
gsave
2360
1030 2262 moveto
2361
1030 2222 lineto
2362
1030 2188.54590083621 lineto
2363
 
2364
1 setlinejoin
2365
1 setlinewidth
2366
[] 0 setdash
2367
0.000 0.000 0.000 setrgbcolor AdjustColor
2368
stroke
2369
1030 2182 moveto
2370
1035.501 2194.001 lineto
2371
1030.5 2194.001 lineto
2372
1029.5 2194.001 lineto
2373
1024.499 2194.001 lineto
2374
1030 2182 lineto
2375
fill
2376
grestore
2377
gsave
2378
1108 2485 moveto
2379
1133 2442 lineto
2380
1155.61302431676 2404.60153670689 lineto
2381
 
2382
1 setlinejoin
2383
1 setlinewidth
2384
[] 0 setdash
2385
0.000 0.000 0.000 setrgbcolor AdjustColor
2386
stroke
2387
1159 2399 moveto
2388
1157.49783215543 2412.11596331829 lineto
2389
1153.21831650554 2409.52834920441 lineto
2390
1152.36258452196 2409.0109298655 lineto
2391
1148.08306887207 2406.42331575161 lineto
2392
1159 2399 lineto
2393
fill
2394
grestore
2395
gsave
2396
1368 2375 moveto
2397
1326 2334 lineto
2398
1289.57255213092 2296.68407779265 lineto
2399
 
2400
1 setlinejoin
2401
1 setlinewidth
2402
[] 0 setdash
2403
0.000 0.000 0.000 setrgbcolor AdjustColor
2404
stroke
2405
1285 2292 moveto
2406
1297.31951294074 2296.74495552171 lineto
2407
1293.74092633713 2300.23833768238 lineto
2408
1293.02535213124 2300.93687440717 lineto
2409
1289.44676552764 2304.43025656784 lineto
2410
1285 2292 lineto
2411
fill
2412
grestore
2413
gsave
2414
1381 2485 moveto
2415
1381 2442 lineto
2416
1381 2405.54590083621 lineto
2417
 
2418
1 setlinejoin
2419
1 setlinewidth
2420
[] 0 setdash
2421
0.000 0.000 0.000 setrgbcolor AdjustColor
2422
stroke
2423
1381 2399 moveto
2424
1386.501 2411.001 lineto
2425
1381.5 2411.001 lineto
2426
1380.5 2411.001 lineto
2427
1375.499 2411.001 lineto
2428
1381 2399 lineto
2429
fill
2430
grestore
2431
gsave
2432
1562 2372 moveto
2433
1522 2332 lineto
2434
1487.56969426485 2296.68686591267 lineto
2435
 
2436
1 setlinejoin
2437
1 setlinewidth
2438
[] 0 setdash
2439
0.000 0.000 0.000 setrgbcolor AdjustColor
2440
stroke
2441
1483 2292 moveto
2442
1495.31661650174 2296.75246882673 lineto
2443
1491.7358998035 2300.24366760752 lineto
2444
1491.01989966388 2300.94176774364 lineto
2445
1487.43918296564 2304.43296652443 lineto
2446
1483 2292 lineto
2447
fill
2448
grestore
2449
gsave
2450
1851 2702 moveto
2451
1726 2661 lineto
2452
1608.19991446962 2621.09997103003 lineto
2453
 
2454
1 setlinejoin
2455
1 setlinewidth
2456
[] 0 setdash
2457
0.000 0.000 0.000 setrgbcolor AdjustColor
2458
stroke
2459
1602 2619 moveto
2460
1615.13144154438 2617.63976290067 lineto
2461
1613.52708556895 2622.37643292338 lineto
2462
1613.20627853527 2623.32357749901 lineto
2463
1611.60192255983 2628.06024752173 lineto
2464
1602 2619 lineto
2465
fill
2466
grestore
2467
gsave
2468
1739 2482 moveto
2469
1670 2442 lineto
2470
1607.64213589976 2405.31890347045 lineto
2471
 
2472
1 setlinejoin
2473
1 setlinewidth
2474
[] 0 setdash
2475
0.000 0.000 0.000 setrgbcolor AdjustColor
2476
stroke
2477
1602 2402 moveto
2478
1615.13319023233 2403.3432484213 lineto
2479
1612.59758257939 2407.65378143131 lineto
2480
1612.09056245283 2408.51571564647 lineto
2481
1609.55495479988 2412.82624865647 lineto
2482
1602 2402 lineto
2483
fill
2484
grestore
2485
gsave
2486
1566 2595 moveto
2487
1566 2554 lineto
2488
1566 2518.54590083621 lineto
2489
 
2490
1 setlinejoin
2491
1 setlinewidth
2492
[] 0 setdash
2493
0.000 0.000 0.000 setrgbcolor AdjustColor
2494
stroke
2495
1566 2512 moveto
2496
1571.501 2524.001 lineto
2497
1566.5 2524.001 lineto
2498
1565.5 2524.001 lineto
2499
1560.499 2524.001 lineto
2500
1566 2512 lineto
2501
fill
2502
grestore
2503
gsave
2504
1771 2375 moveto
2505
1728 2332 lineto
2506
1690.57387963363 2293.68278152967 lineto
2507
 
2508
1 setlinejoin
2509
1 setlinewidth
2510
[] 0 setdash
2511
0.000 0.000 0.000 setrgbcolor AdjustColor
2512
stroke
2513
1686 2289 moveto
2514
1698.32085738784 2293.74146340581 lineto
2515
1694.74326111563 2297.23585976471 lineto
2516
1694.02788493642 2297.93459928858 lineto
2517
1690.45028866422 2301.42899564748 lineto
2518
1686 2289 lineto
2519
fill
2520
grestore
2521
gsave
2522
1664 2152 moveto
2523
1631 2105 lineto
2524
1598 2057 lineto
2525
1631 2010 lineto
2526
1660.29155850453 1967.39409672069 lineto
2527
 
2528
1 setlinejoin
2529
1 setlinewidth
2530
[] 0 setdash
2531
0.000 0.000 0.000 setrgbcolor AdjustColor
2532
stroke
2533
1664 1962 moveto
2534
1661.73414222155 1975.00580218702 lineto
2535
1657.61310855863 1972.17259154376 lineto
2536
1656.78906663443 1971.60606272087 lineto
2537
1652.66803297151 1968.77285207761 lineto
2538
1664 1962 lineto
2539
fill
2540
grestore
2541
gsave
2542
grestore
2543
gsave
2544
1675 2265 moveto
2545
1675 2224 lineto
2546
1675 2188.54590083621 lineto
2547
 
2548
1 setlinejoin
2549
1 setlinewidth
2550
[] 0 setdash
2551
0.000 0.000 0.000 setrgbcolor AdjustColor
2552
stroke
2553
1675 2182 moveto
2554
1680.501 2194.001 lineto
2555
1675.5 2194.001 lineto
2556
1674.5 2194.001 lineto
2557
1669.499 2194.001 lineto
2558
1675 2182 lineto
2559
fill
2560
grestore
2561
gsave
2562
1741 2042 moveto
2563
1713 2002 lineto
2564
1688.7538276395 1967.36261091358 lineto
2565
 
2566
1 setlinejoin
2567
1 setlinewidth
2568
[] 0 setdash
2569
0.000 0.000 0.000 setrgbcolor AdjustColor
2570
stroke
2571
1685 1962 moveto
2572
1696.38871638948 1968.67698592181 lineto
2573
1692.29173755496 1971.54487110597 lineto
2574
1691.47250563444 1972.11833345033 lineto
2575
1687.37552679993 1974.98621863449 lineto
2576
1685 1962 lineto
2577
fill
2578
grestore
2579
gsave
2580
1578 1947 moveto
2581
1564.66 1933.66 1554.67 1930.33 1548 1937 curveto
2582
1541.33 1943.67 1541.33 1950.33 1548 1957 curveto
2583
1554.67 1963.67 1563.1186592602 1961.8813407398 1573.37134912974 1951.62865087026 curveto
2584
 
2585
1 setlinejoin
2586
1 setlinewidth
2587
[] 0 setdash
2588
0.000 0.000 0.000 setrgbcolor AdjustColor
2589
stroke
2590
1578 1947 moveto
2591
1573.40380592229 1959.37578288433 lineto
2592
1569.86756490957 1955.83954187161 lineto
2593
1569.16045812839 1955.13243509043 lineto
2594
1565.62421711567 1951.59619407771 lineto
2595
1578 1947 lineto
2596
fill
2597
grestore
2598
gsave
2599
grestore
2600
gsave
2601
1685 2152 moveto
2602
1713 2112 lineto
2603
1737.2461723605 2077.36261091358 lineto
2604
 
2605
1 setlinejoin
2606
1 setlinewidth
2607
[] 0 setdash
2608
0.000 0.000 0.000 setrgbcolor AdjustColor
2609
stroke
2610
1741 2072 moveto
2611
1738.62447320007 2084.98621863449 lineto
2612
1734.52749436555 2082.11833345033 lineto
2613
1733.70826244504 2081.54487110597 lineto
2614
1729.61128361052 2078.67698592181 lineto
2615
1741 2072 lineto
2616
fill
2617
grestore
2618
gsave
2619
1879 2702 moveto
2620
1829 2661 lineto
2621
1784.01222811472 2623.21027161636 lineto
2622
 
2623
1 setlinejoin
2624
1 setlinewidth
2625
[] 0 setdash
2626
0.000 0.000 0.000 setrgbcolor AdjustColor
2627
stroke
2628
1779 2619 moveto
2629
1791.72742374975 2622.50680576796 lineto
2630
1788.51082012555 2626.33609579677 lineto
2631
1787.86762803913 2627.10180066156 lineto
2632
1784.65102441493 2630.93109069037 lineto
2633
1779 2619 lineto
2634
fill
2635
grestore
2636
gsave
2637
1669 2057 moveto
2638
1655.66 2043.66 1645.67 2040.33 1639 2047 curveto
2639
1632.33 2053.67 1632.33 2060.33 1639 2067 curveto
2640
1645.67 2073.67 1654.1186592602 2071.8813407398 1664.37134912974 2061.62865087026 curveto
2641
 
2642
1 setlinejoin
2643
1 setlinewidth
2644
[] 0 setdash
2645
0.000 0.000 0.000 setrgbcolor AdjustColor
2646
stroke
2647
1669 2057 moveto
2648
1664.40380592229 2069.37578288433 lineto
2649
1660.86756490957 2065.83954187161 lineto
2650
1660.16045812839 2065.13243509043 lineto
2651
1656.62421711567 2061.59619407771 lineto
2652
1669 2057 lineto
2653
fill
2654
grestore
2655
gsave
2656
grestore
2657
gsave
2658
1950 2485 moveto
2659
1876 2442 lineto
2660
1808.64014871177 2402.32227937817 lineto
2661
 
2662
1 setlinejoin
2663
1 setlinewidth
2664
[] 0 setdash
2665
0.000 0.000 0.000 setrgbcolor AdjustColor
2666
stroke
2667
1803 2399 moveto
2668
1816.13238402173 2400.35110765886 lineto
2669
1813.59419721048 2404.66012247796 lineto
2670
1813.0866613554 2405.52175311565 lineto
2671
1810.54847454415 2409.83076793474 lineto
2672
1803 2399 lineto
2673
fill
2674
grestore
2675
gsave
2676
1765 2595 moveto
2677
1765 2554 lineto
2678
1765 2518.54590083621 lineto
2679
 
2680
1 setlinejoin
2681
1 setlinewidth
2682
[] 0 setdash
2683
0.000 0.000 0.000 setrgbcolor AdjustColor
2684
stroke
2685
1765 2512 moveto
2686
1770.501 2524.001 lineto
2687
1765.5 2524.001 lineto
2688
1764.5 2524.001 lineto
2689
1759.499 2524.001 lineto
2690
1765 2512 lineto
2691
fill
2692
grestore
2693
gsave
2694
1897 2922 moveto
2695
1897 2882 lineto
2696
1897 2848.54590083621 lineto
2697
 
2698
1 setlinejoin
2699
1 setlinewidth
2700
[] 0 setdash
2701
0.000 0.000 0.000 setrgbcolor AdjustColor
2702
stroke
2703
1897 2842 moveto
2704
1902.501 2854.001 lineto
2705
1897.5 2854.001 lineto
2706
1896.5 2854.001 lineto
2707
1891.499 2854.001 lineto
2708
1897 2842 lineto
2709
fill
2710
grestore
2711
gsave
2712
1930 2702 moveto
2713
2023 2661 lineto
2714
2111.02353551771 2621.67033519421 lineto
2715
 
2716
1 setlinejoin
2717
1 setlinewidth
2718
[] 0 setdash
2719
0.000 0.000 0.000 setrgbcolor AdjustColor
2720
stroke
2721
2117 2619 moveto
2722
2108.28706074601 2628.91814960344 lineto
2723
2106.24695249499 2624.35219304165 lineto
2724
2105.8390124328 2623.43918433103 lineto
2725
2103.79890418179 2618.87322776925 lineto
2726
2117 2619 lineto
2727
fill
2728
grestore
2729
gsave
2730
1897 2812 moveto
2731
1897 2772 lineto
2732
1897 2738.54590083621 lineto
2733
 
2734
1 setlinejoin
2735
1 setlinewidth
2736
[] 0 setdash
2737
0.000 0.000 0.000 setrgbcolor AdjustColor
2738
stroke
2739
1897 2732 moveto
2740
1902.501 2744.001 lineto
2741
1897.5 2744.001 lineto
2742
1896.5 2744.001 lineto
2743
1891.499 2744.001 lineto
2744
1897 2732 lineto
2745
fill
2746
grestore
2747
gsave
2748
1904 2702 moveto
2749
1924 2662 lineto
2750
1941.9572433919 2627.79572687257 lineto
2751
 
2752
1 setlinejoin
2753
1 setlinewidth
2754
[] 0 setdash
2755
0.000 0.000 0.000 setrgbcolor AdjustColor
2756
stroke
2757
1945 2622 moveto
2758
1944.29210224173 2635.1827115103 lineto
2759
1939.86422732964 2632.85807718145 lineto
2760
1938.9788294268 2632.39324328246 lineto
2761
1934.55095451471 2630.06860895361 lineto
2762
1945 2622 lineto
2763
fill
2764
grestore
2765
gsave
2766
2126 2595 moveto
2767
2057 2552 lineto
2768
1994.5325523386 2512.49852574353 lineto
2769
 
2770
1 setlinejoin
2771
1 setlinewidth
2772
[] 0 setdash
2773
0.000 0.000 0.000 setrgbcolor AdjustColor
2774
stroke
2775
1989 2509 moveto
2776
2002.0832337479 2510.76465200474 lineto
2777
1999.41039655082 2514.99146431639 lineto
2778
1998.87593600352 2515.83665774003 lineto
2779
1996.20309880645 2520.06347005169 lineto
2780
1989 2509 lineto
2781
fill
2782
grestore
2783
gsave
2784
1962 2712 moveto
2785
2524 2662 lineto
2786
3080.47976189399 2612.57906199876 lineto
2787
 
2788
1 setlinejoin
2789
1 setlinewidth
2790
[] 0 setdash
2791
0.000 0.000 0.000 setrgbcolor AdjustColor
2792
stroke
2793
3087 2612 moveto
2794
3075.53267726883 2618.54106347463 lineto
2795
3075.09027993831 2613.55966953297 lineto
2796
3075.00181816456 2612.56358996056 lineto
2797
3074.55942083404 2607.5821960189 lineto
2798
3087 2612 lineto
2799
fill
2800
grestore
2801
gsave
2802
3256 2375 moveto
2803
3177 2332 lineto
2804
3103.74939639573 2292.12941829135 lineto
2805
 
2806
1 setlinejoin
2807
1 setlinewidth
2808
[] 0 setdash
2809
0.000 0.000 0.000 setrgbcolor AdjustColor
2810
stroke
2811
3098 2289 moveto
2812
3111.17059917697 2289.90571481144 lineto
2813
3108.77975622553 2294.29819372221 lineto
2814
3108.30168324984 2295.17651384034 lineto
2815
3105.91084029841 2299.56899275111 lineto
2816
3098 2289 lineto
2817
fill
2818
grestore
2819
gsave
2820
3126 2595 moveto
2821
3101 2546 lineto
2822
3077 2497 lineto
2823
3077 2442 lineto
2824
3077 2387 lineto
2825
3077 2338 lineto
2826
3077 2295.54590083621 lineto
2827
 
2828
1 setlinejoin
2829
1 setlinewidth
2830
[] 0 setdash
2831
0.000 0.000 0.000 setrgbcolor AdjustColor
2832
stroke
2833
3077 2289 moveto
2834
3082.501 2301.001 lineto
2835
3077.5 2301.001 lineto
2836
3076.5 2301.001 lineto
2837
3071.499 2301.001 lineto
2838
3077 2289 lineto
2839
fill
2840
grestore
2841
gsave
2842
grestore
2843
gsave
2844
grestore
2845
gsave
2846
3077 2265 moveto
2847
3077 2216 lineto
2848
3077 2167 lineto
2849
3077 2112 lineto
2850
3077 2057 lineto
2851
3077 2002 lineto
2852
3077 1947 lineto
2853
3105 1900 lineto
2854
3129.70171023268 1857.65421102969 lineto
2855
 
2856
1 setlinejoin
2857
1 setlinewidth
2858
[] 0 setdash
2859
0.000 0.000 0.000 setrgbcolor AdjustColor
2860
stroke
2861
3133 1852 moveto
2862
3131.70469155653 1865.13800510109 lineto
2863
3127.38493327313 1862.61814610244 lineto
2864
3126.52115437224 1862.11427507692 lineto
2865
3122.20139608884 1859.59441607827 lineto
2866
3133 1852 lineto
2867
fill
2868
grestore
2869
gsave
2870
grestore
2871
gsave
2872
grestore
2873
gsave
2874
grestore
2875
gsave
2876
3178 2485 moveto
2877
3138 2436 lineto
2878
3099 2387 lineto
2879
3089 2338 lineto
2880
3080.30891840973 2295.41370020769 lineto
2881
 
2882
1 setlinejoin
2883
1 setlinewidth
2884
[] 0 setdash
2885
0.000 0.000 0.000 setrgbcolor AdjustColor
2886
stroke
2887
3079 2289 moveto
2888
3086.78962223131 2299.65864848343 lineto
2889
3081.88962213335 2300.65864850343 lineto
2890
3080.90981807457 2300.85860851542 lineto
2891
3076.00981797661 2301.85860853541 lineto
2892
3079 2289 lineto
2893
fill
2894
grestore
2895
gsave
2896
grestore
2897
gsave
2898
3101 2265 moveto
2899
3190 2222 lineto
2900
3274.09360869731 2181.82194251129 lineto
2901
 
2902
1 setlinejoin
2903
1 setlinewidth
2904
[] 0 setdash
2905
0.000 0.000 0.000 setrgbcolor AdjustColor
2906
stroke
2907
3280 2179 moveto
2908
3271.54293692279 2189.13721293591 lineto
2909
3269.38700226199 2184.62479155285 lineto
2910
3268.95590154997 2183.722487737 lineto
2911
3266.79996688917 2179.21006635393 lineto
2912
3280 2179 lineto
2913
fill
2914
grestore
2915
gsave
2916
2997 2277 moveto
2917
2983.66 2263.66 2973.67 2260.33 2967 2267 curveto
2918
2960.33 2273.67 2960.33 2280.33 2967 2287 curveto
2919
2973.67 2293.67 2982.1186592602 2291.8813407398 2992.37134912974 2281.62865087026 curveto
2920
 
2921
1 setlinejoin
2922
1 setlinewidth
2923
[] 0 setdash
2924
0.000 0.000 0.000 setrgbcolor AdjustColor
2925
stroke
2926
2997 2277 moveto
2927
2992.40380592229 2289.37578288433 lineto
2928
2988.86756490957 2285.83954187161 lineto
2929
2988.16045812839 2285.13243509043 lineto
2930
2984.62421711567 2281.59619407771 lineto
2931
2997 2277 lineto
2932
fill
2933
grestore
2934
gsave
2935
grestore
2936
gsave
2937
3055.86435624844 2260.94118477699 moveto
2938
2999 2216 lineto
2939
2937 2167 lineto
2940
2937 2112 lineto
2941
2937 2057 lineto
2942
2937 2002 lineto
2943
2937 1947 lineto
2944
2937 1894 lineto
2945
2937 1840 lineto
2946
2937 1788 lineto
2947
2937 1736 lineto
2948
2937 1684 lineto
2949
2937 1632 lineto
2950
2937 1580 lineto
2951
2937 1528 lineto
2952
2937 1476 lineto
2953
2937 1424 lineto
2954
2937 1372 lineto
2955
2937 1320 lineto
2956
2937 1268 lineto
2957
2937 1216 lineto
2958
2937 1164 lineto
2959
2937 1112 lineto
2960
2937 1060 lineto
2961
2937 1008 lineto
2962
2937 956 lineto
2963
2937 904 lineto
2964
3077 858 lineto
2965
3217 812 lineto
2966
 
2967
1 setlinejoin
2968
1 setlinewidth
2969
[] 0 setdash
2970
0.000 0.000 0.000 setrgbcolor AdjustColor
2971
stroke
2972
3061 2265 moveto
2973
3048.17359072416 2261.87458369354 lineto
2974
3051.27448324273 2257.95100540474 lineto
2975
3051.89453773554 2257.16644665873 lineto
2976
3054.99543025411 2253.24286836993 lineto
2977
3061 2265 lineto
2978
fill
2979
grestore
2980
gsave
2981
grestore
2982
gsave
2983
grestore
2984
gsave
2985
grestore
2986
gsave
2987
grestore
2988
gsave
2989
grestore
2990
gsave
2991
grestore
2992
gsave
2993
grestore
2994
gsave
2995
grestore
2996
gsave
2997
grestore
2998
gsave
2999
grestore
3000
gsave
3001
grestore
3002
gsave
3003
grestore
3004
gsave
3005
grestore
3006
gsave
3007
3100 1412 moveto
3008
3110 1366 lineto
3009
3120 1320 lineto
3010
3153 1274 lineto
3011
3182.18434285065 1233.31879481425 lineto
3012
 
3013
1 setlinejoin
3014
1 setlinewidth
3015
[] 0 setdash
3016
0.000 0.000 0.000 setrgbcolor AdjustColor
3017
stroke
3018
3186 1228 moveto
3019
3183.47429550342 1240.95784776867 lineto
3020
3179.41079171202 1238.04272548353 lineto
3021
3178.59825346139 1237.45981760808 lineto
3022
3174.53474966999 1234.54469532295 lineto
3023
3186 1228 lineto
3024
fill
3025
grestore
3026
gsave
3027
grestore
3028
gsave
3029
3098 1516 moveto
3030
3098 1476 lineto
3031
3098 1442.54590083621 lineto
3032
 
3033
1 setlinejoin
3034
1 setlinewidth
3035
[] 0 setdash
3036
0.000 0.000 0.000 setrgbcolor AdjustColor
3037
stroke
3038
3098 1436 moveto
3039
3103.501 1448.001 lineto
3040
3098.5 1448.001 lineto
3041
3097.5 1448.001 lineto
3042
3092.499 1448.001 lineto
3043
3098 1436 lineto
3044
fill
3045
grestore
3046
gsave
3047
3146 1412 moveto
3048
3308 1372 lineto
3049
3464.64272041735 1333.56006860924 lineto
3050
 
3051
1 setlinejoin
3052
1 setlinewidth
3053
[] 0 setdash
3054
0.000 0.000 0.000 setrgbcolor AdjustColor
3055
stroke
3056
3471 1332 moveto
3057
3460.65585080706 1340.20265685459 lineto
3058
3459.4639746528 1335.345761526 lineto
3059
3459.22564708747 1334.37457669725 lineto
3060
3458.03377093321 1329.51768136865 lineto
3061
3471 1332 lineto
3062
fill
3063
grestore
3064
gsave
3065
3114 1412 moveto
3066
3171 1372 lineto
3067
3222.64180906232 1335.76013399135 lineto
3068
 
3069
1 setlinejoin
3070
1 setlinewidth
3071
[] 0 setdash
3072
0.000 0.000 0.000 setrgbcolor AdjustColor
3073
stroke
3074
3228 1332 moveto
3075
3221.33641717954 1343.39656378014 lineto
3076
3218.46371400831 1339.30296176114 lineto
3077
3217.88928825921 1338.48440506868 lineto
3078
3215.01658508798 1334.39080304967 lineto
3079
3228 1332 lineto
3080
fill
3081
grestore
3082
gsave
3083
3008 1424 moveto
3084
2994.66 1410.66 2984.67 1407.33 2978 1414 curveto
3085
2971.33 1420.67 2971.33 1427.33 2978 1434 curveto
3086
2984.67 1440.67 2993.1186592602 1438.8813407398 3003.37134912974 1428.62865087026 curveto
3087
 
3088
1 setlinejoin
3089
1 setlinewidth
3090
[] 0 setdash
3091
0.000 0.000 0.000 setrgbcolor AdjustColor
3092
stroke
3093
3008 1424 moveto
3094
3003.40380592229 1436.37578288433 lineto
3095
2999.86756490957 1432.83954187161 lineto
3096
2999.16045812839 1432.13243509043 lineto
3097
2995.62421711567 1428.59619407771 lineto
3098
3008 1424 lineto
3099
fill
3100
grestore
3101
gsave
3102
grestore
3103
gsave
3104
3098 1405.45409916379 moveto
3105
3098 1366 lineto
3106
3098 1320 lineto
3107
3098 1268 lineto
3108
3098 1216 lineto
3109
3098 1164 lineto
3110
3098 1112 lineto
3111
3098 1060 lineto
3112
3098 1008 lineto
3113
3167 962 lineto
3114
3236 916 lineto
3115
 
3116
1 setlinejoin
3117
1 setlinewidth
3118
[] 0 setdash
3119
0.000 0.000 0.000 setrgbcolor AdjustColor
3120
stroke
3121
3098 1412 moveto
3122
3092.499 1399.999 lineto
3123
3097.5 1399.999 lineto
3124
3098.5 1399.999 lineto
3125
3103.501 1399.999 lineto
3126
3098 1412 lineto
3127
fill
3128
grestore
3129
gsave
3130
grestore
3131
gsave
3132
grestore
3133
gsave
3134
grestore
3135
gsave
3136
grestore
3137
gsave
3138
3138 2595 moveto
3139
3159 2552 lineto
3140
3178.01850055167 2514.82747619447 lineto
3141
 
3142
1 setlinejoin
3143
1 setlinewidth
3144
[] 0 setdash
3145
0.000 0.000 0.000 setrgbcolor AdjustColor
3146
stroke
3147
3181 2509 moveto
3148
3180.43109001697 2522.18944060342 lineto
3149
3175.97895895392 2519.91160610605 lineto
3150
3175.08871079094 2519.45613030173 lineto
3151
3170.63657972789 2517.17829580436 lineto
3152
3181 2509 lineto
3153
fill
3154
grestore
3155
gsave
3156
3297 1935 moveto
3157
3228 1894 lineto
3158
3165.56923932236 1855.43982428734 lineto
3159
 
3160
1 setlinejoin
3161
1 setlinewidth
3162
[] 0 setdash
3163
0.000 0.000 0.000 setrgbcolor AdjustColor
3164
stroke
3165
3160 1852 moveto
3166
3173.10116310316 1853.62620027807 lineto
3167
3170.47317320667 1857.88104106286 lineto
3168
3169.94768032595 1858.73183906022 lineto
3169
3167.31969042946 1862.98667984502 lineto
3170
3160 1852 lineto
3171
fill
3172
grestore
3173
gsave
3174
3197 2485 moveto
3175
3232 2442 lineto
3176
3263.79794630369 2404.01911969282 lineto
3177
 
3178
1 setlinejoin
3179
1 setlinewidth
3180
[] 0 setdash
3181
0.000 0.000 0.000 setrgbcolor AdjustColor
3182
stroke
3183
3268 2399 moveto
3184
3264.51405214497 2411.73315238077 lineto
3185
3260.67949702233 2408.52282716182 lineto
3186
3259.91273934933 2407.88089050536 lineto
3187
3256.0781842267 2404.67056528641 lineto
3188
3268 2399 lineto
3189
fill
3190
grestore
3191
gsave
3192
3141 1828 moveto
3193
3141 1788 lineto
3194
3141 1754.54590083621 lineto
3195
 
3196
1 setlinejoin
3197
1 setlinewidth
3198
[] 0 setdash
3199
0.000 0.000 0.000 setrgbcolor AdjustColor
3200
stroke
3201
3141 1748 moveto
3202
3146.501 1760.001 lineto
3203
3141.5 1760.001 lineto
3204
3140.5 1760.001 lineto
3205
3135.499 1760.001 lineto
3206
3141 1748 lineto
3207
fill
3208
grestore
3209
gsave
3210
3145 1724 moveto
3211
3162 1684 lineto
3212
3176.43963215529 1650.02439492873 lineto
3213
 
3214
1 setlinejoin
3215
1 setlinewidth
3216
[] 0 setdash
3217
0.000 0.000 0.000 setrgbcolor AdjustColor
3218
stroke
3219
3179 1644 moveto
3220
3179.36866155766 1657.19655601496 lineto
3221
3174.76608663445 1655.24046167259 lineto
3222
3173.84575571599 1654.84932103225 lineto
3223
3169.24318079278 1652.89322668988 lineto
3224
3179 1644 lineto
3225
fill
3226
grestore
3227
gsave
3228
3136 1724 moveto
3229
3117 1678 lineto
3230
3098 1632 lineto
3231
3098 1586 lineto
3232
3098 1546.54590083621 lineto
3233
 
3234
1 setlinejoin
3235
1 setlinewidth
3236
[] 0 setdash
3237
0.000 0.000 0.000 setrgbcolor AdjustColor
3238
stroke
3239
3098 1540 moveto
3240
3103.501 1552.001 lineto
3241
3098.5 1552.001 lineto
3242
3097.5 1552.001 lineto
3243
3092.499 1552.001 lineto
3244
3098 1540 lineto
3245
fill
3246
grestore
3247
gsave
3248
grestore
3249
gsave
3250
3174 1620 moveto
3251
3140 1580 lineto
3252
3111.16569971595 1545.04933298903 lineto
3253
 
3254
1 setlinejoin
3255
1 setlinewidth
3256
[] 0 setdash
3257
0.000 0.000 0.000 setrgbcolor AdjustColor
3258
stroke
3259
3107 1540 moveto
3260
3118.88055624575 1545.75650808143 lineto
3261
3115.02291847977 1548.93905923836 lineto
3262
3114.25154520123 1549.57544219316 lineto
3263
3110.39390743525 1552.75799335009 lineto
3264
3107 1540 lineto
3265
fill
3266
grestore
3267
gsave
3268
3287 2155 moveto
3269
3214 2106 lineto
3270
3141 2057 lineto
3271
3141 2002 lineto
3272
3141 1947 lineto
3273
3141 1900 lineto
3274
3141 1858.54590083621 lineto
3275
 
3276
1 setlinejoin
3277
1 setlinewidth
3278
[] 0 setdash
3279
0.000 0.000 0.000 setrgbcolor AdjustColor
3280
stroke
3281
3141 1852 moveto
3282
3146.501 1864.001 lineto
3283
3141.5 1864.001 lineto
3284
3140.5 1864.001 lineto
3285
3135.499 1864.001 lineto
3286
3141 1852 lineto
3287
fill
3288
grestore
3289
gsave
3290
grestore
3291
gsave
3292
grestore
3293
gsave
3294
3170 2387 moveto
3295
3156.66 2373.66 3146.67 2370.33 3140 2377 curveto
3296
3133.33 2383.67 3133.33 2390.33 3140 2397 curveto
3297
3146.67 2403.67 3155.1186592602 2401.8813407398 3165.37134912974 2391.62865087026 curveto
3298
 
3299
1 setlinejoin
3300
1 setlinewidth
3301
[] 0 setdash
3302
0.000 0.000 0.000 setrgbcolor AdjustColor
3303
stroke
3304
3170 2387 moveto
3305
3165.40380592229 2399.37578288433 lineto
3306
3161.86756490957 2395.83954187161 lineto
3307
3161.16045812839 2395.13243509043 lineto
3308
3157.62421711567 2391.59619407771 lineto
3309
3170 2387 lineto
3310
fill
3311
grestore
3312
gsave
3313
grestore
3314
gsave
3315
3234 1947 moveto
3316
3220.66 1933.66 3210.67 1930.33 3204 1937 curveto
3317
3197.33 1943.67 3197.33 1950.33 3204 1957 curveto
3318
3210.67 1963.67 3219.1186592602 1961.8813407398 3229.37134912974 1951.62865087026 curveto
3319
 
3320
1 setlinejoin
3321
1 setlinewidth
3322
[] 0 setdash
3323
0.000 0.000 0.000 setrgbcolor AdjustColor
3324
stroke
3325
3234 1947 moveto
3326
3229.40380592229 1959.37578288433 lineto
3327
3225.86756490957 1955.83954187161 lineto
3328
3225.16045812839 1955.13243509043 lineto
3329
3221.62421711567 1951.59619407771 lineto
3330
3234 1947 lineto
3331
fill
3332
grestore
3333
gsave
3334
grestore
3335
gsave
3336
3239 1308 moveto
3337
3219 1268 lineto
3338
3202.80856336126 1233.91276497108 lineto
3339
 
3340
1 setlinejoin
3341
1 setlinewidth
3342
[] 0 setdash
3343
0.000 0.000 0.000 setrgbcolor AdjustColor
3344
stroke
3345
3200 1228 moveto
3346
3210.11804038309 1236.47999179282 lineto
3347
3205.60074958381 1238.62570492247 lineto
3348
3204.69747207946 1239.05476173704 lineto
3349
3200.18018128018 1241.2004748667 lineto
3350
3200 1228 lineto
3351
fill
3352
grestore
3353
gsave
3354
3195 1204 moveto
3355
3195 1158 lineto
3356
3195 1112 lineto
3357
3195 1060 lineto
3358
3195 1008 lineto
3359
3221 962 lineto
3360
3243.77904199211 921.698618013953 lineto
3361
 
3362
1 setlinejoin
3363
1 setlinewidth
3364
[] 0 setdash
3365
0.000 0.000 0.000 setrgbcolor AdjustColor
3366
stroke
3367
3247 916 moveto
3368
3245.88378703853 929.15443159641 lineto
3369
3241.53010228209 926.693653255814 lineto
3370
3240.65953944337 926.201595999146 lineto
3371
3236.30585468693 923.74081765855 lineto
3372
3247 916 lineto
3373
fill
3374
grestore
3375
gsave
3376
grestore
3377
gsave
3378
grestore
3379
gsave
3380
3197 1204 moveto
3381
3207 1158 lineto
3382
3217 1112 lineto
3383
3256 1066 lineto
3384
3290.76686247056 1024.99293144499 lineto
3385
 
3386
1 setlinejoin
3387
1 setlinewidth
3388
[] 0 setdash
3389
0.000 0.000 0.000 setrgbcolor AdjustColor
3390
stroke
3391
3295 1020 moveto
3392
3291.43505635116 1032.71126188781 lineto
3393
3287.62050877686 1029.47718894439 lineto
3394
3286.85775181339 1028.83050369275 lineto
3395
3283.04320423909 1025.59643074932 lineto
3396
3295 1020 lineto
3397
fill
3398
grestore
3399
gsave
3400
grestore
3401
gsave
3402
3300 996 moveto
3403
3280 956 lineto
3404
3262.92741584875 921.854831697497 lineto
3405
 
3406
1 setlinejoin
3407
1 setlinewidth
3408
[] 0 setdash
3409
0.000 0.000 0.000 setrgbcolor AdjustColor
3410
stroke
3411
3260 916 moveto
3412
3270.28725433729 924.273898730345 lineto
3413
3265.81422395509 926.51041392144 lineto
3414
3264.91979676409 926.95762751694 lineto
3415
3260.4467663819 929.194142708035 lineto
3416
3260 916 lineto
3417
fill
3418
grestore
3419
gsave
3420
3695 894 moveto
3421
3511 853 lineto
3422
3334.38755021732 813.431090485848 lineto
3423
 
3424
1 setlinejoin
3425
1 setlinewidth
3426
[] 0 setdash
3427
0.000 0.000 0.000 setrgbcolor AdjustColor
3428
stroke
3429
3328 812 moveto
3430
3340.91333630555 809.255779261816 lineto
3431
3339.81999809301 814.135801039738 lineto
3432
3339.60137417528 815.111610233484 lineto
3433
3338.50803596274 819.991632011407 lineto
3434
3328 812 lineto
3435
fill
3436
grestore
3437
gsave
3438
3334.38707769444 781.566802078321 moveto
3439
3533 737 lineto
3440
3739 690 lineto
3441
3739 638 lineto
3442
3739 586 lineto
3443
3739 534 lineto
3444
3739 482 lineto
3445
3791 436 lineto
3446
3843 390 lineto
3447
 
3448
1 setlinejoin
3449
1 setlinewidth
3450
[] 0 setdash
3451
0.000 0.000 0.000 setrgbcolor AdjustColor
3452
stroke
3453
3328 783 moveto
3454
3338.50539862495 775.004901393301 lineto
3455
3339.6003468965 779.884562168666 lineto
3456
3339.81929276163 780.860299176338 lineto
3457
3340.91424103318 785.739959951703 lineto
3458
3328 783 lineto
3459
fill
3460
grestore
3461
gsave
3462
grestore
3463
gsave
3464
grestore
3465
gsave
3466
grestore
3467
gsave
3468
3267.65232870761 775.666073287485 moveto
3469
3278 736 lineto
3470
3291 690 lineto
3471
3291 638 lineto
3472
3291 586 lineto
3473
3291 534 lineto
3474
3291 482 lineto
3475
3343 436 lineto
3476
3395 390 lineto
3477
 
3478
1 setlinejoin
3479
1 setlinewidth
3480
[] 0 setdash
3481
0.000 0.000 0.000 setrgbcolor AdjustColor
3482
stroke
3483
3266 782 moveto
3484
3263.70645257221 768.99905225776 lineto
3485
3268.54550655146 770.261414165392 lineto
3486
3269.51312382386 770.513836062539 lineto
3487
3274.35217780312 771.776197970171 lineto
3488
3266 782 lineto
3489
fill
3490
grestore
3491
gsave
3492
grestore
3493
gsave
3494
grestore
3495
gsave
3496
grestore
3497
gsave
3498
3338 1100 moveto
3499
3377 1054 lineto
3500
3417 1008 lineto
3501
3344 962 lineto
3502
3277.51620615178 919.52424281919 lineto
3503
 
3504
1 setlinejoin
3505
1 setlinewidth
3506
[] 0 setdash
3507
0.000 0.000 0.000 setrgbcolor AdjustColor
3508
stroke
3509
3272 916 moveto
3510
3285.07487722734 917.825537589277 lineto
3511
3282.38239245256 922.039861584597 lineto
3512
3281.84400317545 922.88255784441 lineto
3513
3279.15151840067 927.09688183973 lineto
3514
3272 916 lineto
3515
fill
3516
grestore
3517
gsave
3518
grestore
3519
gsave
3520
3283 782 moveto
3521
3339 742 lineto
3522
3389.67338139037 705.804727578304 lineto
3523
 
3524
1 setlinejoin
3525
1 setlinewidth
3526
[] 0 setdash
3527
0.000 0.000 0.000 setrgbcolor AdjustColor
3528
stroke
3529
3395 702 moveto
3530
3388.4317759157 713.451787387931 lineto
3531
3385.52500370891 709.382306298426 lineto
3532
3384.94376551519 708.56857282722 lineto
3533
3382.0369933084 704.499091737714 lineto
3534
3395 702 lineto
3535
fill
3536
grestore
3537
gsave
3538
3313 782 moveto
3539
3448 742 lineto
3540
3577.72008856103 703.847032776167 lineto
3541
 
3542
1 setlinejoin
3543
1 setlinewidth
3544
[] 0 setdash
3545
0.000 0.000 0.000 setrgbcolor AdjustColor
3546
stroke
3547
3584 702 moveto
3548
3574.03885156392 710.663747678366 lineto
3549
3572.62773777764 705.865960805008 lineto
3550
3572.34557145365 704.906595303437 lineto
3551
3570.93445766737 700.108808430079 lineto
3552
3584 702 lineto
3553
fill
3554
grestore
3555
gsave
3556
3198 797 moveto
3557
3184.66 783.66 3174.67 780.33 3168 787 curveto
3558
3161.33 793.67 3161.33 800.33 3168 807 curveto
3559
3174.67 813.67 3183.1186592602 811.881340739797 3193.37134912974 801.62865087026 curveto
3560
 
3561
1 setlinejoin
3562
1 setlinewidth
3563
[] 0 setdash
3564
0.000 0.000 0.000 setrgbcolor AdjustColor
3565
stroke
3566
3198 797 moveto
3567
3193.40380592229 809.375782884327 lineto
3568
3189.86756490957 805.839541871613 lineto
3569
3189.16045812839 805.132435090426 lineto
3570
3185.62421711567 801.596194077712 lineto
3571
3198 797 lineto
3572
fill
3573
grestore
3574
gsave
3575
grestore
3576
gsave
3577
3328 786 moveto
3578
3562 744 lineto
3579
3789.55705828308 703.15642543637 lineto
3580
 
3581
1 setlinejoin
3582
1 setlinewidth
3583
[] 0 setdash
3584
0.000 0.000 0.000 setrgbcolor AdjustColor
3585
stroke
3586
3796 702 moveto
3587
3785.15959025429 709.534621327261 lineto
3588
3784.27609327626 704.612281021085 lineto
3589
3784.09942921347 703.628009814091 lineto
3590
3783.21593223544 698.705669507915 lineto
3591
3796 702 lineto
3592
fill
3593
grestore
3594
gsave
3595
3263.70734468175 775.492428927878 moveto
3596
3268 736 lineto
3597
3273 690 lineto
3598
3273 638 lineto
3599
3273 586 lineto
3600
3273 534 lineto
3601
3273 482 lineto
3602
3273 430 lineto
3603
3273 378 lineto
3604
3272 329 lineto
3605
3271 279.000000000001 lineto
3606
3346 231 lineto
3607
3422 182 lineto
3608
 
3609
1 setlinejoin
3610
1 setlinewidth
3611
[] 0 setdash
3612
0.000 0.000 0.000 setrgbcolor AdjustColor
3613
stroke
3614
3263 782 moveto
3615
3258.82802953706 769.474838745296 lineto
3616
3263.79974599687 770.015242708319 lineto
3617
3264.79389045994 770.123301889088 lineto
3618
3269.76560691975 770.663705852111 lineto
3619
3263 782 lineto
3620
fill
3621
grestore
3622
gsave
3623
grestore
3624
gsave
3625
grestore
3626
gsave
3627
grestore
3628
gsave
3629
grestore
3630
gsave
3631
grestore
3632
gsave
3633
3263 782 moveto
3634
3263 736 lineto
3635
3263 690 lineto
3636
3263 638 lineto
3637
3263 586 lineto
3638
3263 534 lineto
3639
3263 482 lineto
3640
3263 430 lineto
3641
3263 378 lineto
3642
3263 326 lineto
3643
3263 274 lineto
3644
3342 228 lineto
3645
3416.3253173059 185.262942549109 lineto
3646
 
3647
1 setlinejoin
3648
1 setlinewidth
3649
[] 0 setdash
3650
0.000 0.000 0.000 setrgbcolor AdjustColor
3651
stroke
3652
3422 182 moveto
3653
3414.33834711155 192.751003535341 lineto
3654
3411.84549301914 188.415605113751 lineto
3655
3411.34702189488 187.548698810693 lineto
3656
3408.85416780246 183.213300389102 lineto
3657
3422 182 lineto
3658
fill
3659
grestore
3660
gsave
3661
grestore
3662
gsave
3663
grestore
3664
gsave
3665
grestore
3666
gsave
3667
grestore
3668
gsave
3669
grestore
3670
gsave
3671
3210 1204 moveto
3672
3261 1164 lineto
3673
3306.84933555735 1128.03973681776 lineto
3674
 
3675
1 setlinejoin
3676
1 setlinewidth
3677
[] 0 setdash
3678
0.000 0.000 0.000 setrgbcolor AdjustColor
3679
stroke
3680
3312 1124 moveto
3681
3305.95185892174 1135.73477701098 lineto
3682
3302.8655421059 1131.79972307079 lineto
3683
3302.24840217072 1131.01286965343 lineto
3684
3299.16208535488 1127.07781571323 lineto
3685
3312 1124 lineto
3686
fill
3687
grestore
3688
gsave
3689
3305 2148.45409916379 moveto
3690
3305 2106 lineto
3691
3305 2057 lineto
3692
3310 2008 lineto
3693
3315 1959 lineto
3694
 
3695
1 setlinejoin
3696
1 setlinewidth
3697
[] 0 setdash
3698
0.000 0.000 0.000 setrgbcolor AdjustColor
3699
stroke
3700
3305 2155 moveto
3701
3299.499 2142.999 lineto
3702
3304.5 2142.999 lineto
3703
3305.5 2142.999 lineto
3704
3310.501 2142.999 lineto
3705
3305 2155 lineto
3706
fill
3707
grestore
3708
gsave
3709
grestore
3710
gsave
3711
3422 2045 moveto
3712
3375 2002 lineto
3713
3333.781956903 1963.47009014846 lineto
3714
 
3715
1 setlinejoin
3716
1 setlinewidth
3717
[] 0 setdash
3718
0.000 0.000 0.000 setrgbcolor AdjustColor
3719
stroke
3720
3329 1959 moveto
3721
3341.52359801207 1963.17666072743 lineto
3722
3338.10849573787 1966.83002595099 lineto
3723
3337.42561185981 1967.56055289032 lineto
3724
3334.0105095856 1971.21391811388 lineto
3725
3329 1959 lineto
3726
fill
3727
grestore
3728
gsave
3729
3319 2155 moveto
3730
3369 2112 lineto
3731
3414.99551268804 2073.2194696944 lineto
3732
 
3733
1 setlinejoin
3734
1 setlinewidth
3735
[] 0 setdash
3736
0.000 0.000 0.000 setrgbcolor AdjustColor
3737
stroke
3738
3420 2069 moveto
3739
3414.37089709057 2080.94144892528 lineto
3740
3411.14726623064 2077.11807278908 lineto
3741
3410.5026689781 2076.3535504663 lineto
3742
3407.27903811816 2072.5301743301 lineto
3743
3420 2069 lineto
3744
fill
3745
grestore
3746
gsave
3747
3325 1100 moveto
3748
3316 1060 lineto
3749
3309.28375677299 1026.41878386498 lineto
3750
 
3751
1 setlinejoin
3752
1 setlinewidth
3753
[] 0 setdash
3754
0.000 0.000 0.000 setrgbcolor AdjustColor
3755
stroke
3756
3308 1020 moveto
3757
3315.74776403477 1030.68911382957 lineto
3758
3310.84388007564 1031.6698906214 lineto
3759
3309.86329939995 1031.86600675654 lineto
3760
3304.95941544082 1032.84678354836 lineto
3761
3308 1020 lineto
3762
fill
3763
grestore
3764
gsave
3765
3340 378 moveto
3766
3326.66 364.66 3316.67 361.33 3310 368 curveto
3767
3303.33 374.67 3303.33 381.33 3310 388 curveto
3768
3316.67 394.67 3325.1186592602 392.881340739797 3335.37134912974 382.62865087026 curveto
3769
 
3770
1 setlinejoin
3771
1 setlinewidth
3772
[] 0 setdash
3773
0.000 0.000 0.000 setrgbcolor AdjustColor
3774
stroke
3775
3340 378 moveto
3776
3335.40380592229 390.375782884327 lineto
3777
3331.86756490957 386.839541871613 lineto
3778
3331.16045812839 386.132435090426 lineto
3779
3327.62421711567 382.596194077713 lineto
3780
3340 378 lineto
3781
fill
3782
grestore
3783
gsave
3784
grestore
3785
gsave
3786
3419 1320 moveto
3787
3405.66 1306.66 3395.67 1303.33 3389 1310 curveto
3788
3382.33 1316.67 3382.33 1323.33 3389 1330 curveto
3789
3395.67 1336.67 3404.1186592602 1334.8813407398 3414.37134912974 1324.62865087026 curveto
3790
 
3791
1 setlinejoin
3792
1 setlinewidth
3793
[] 0 setdash
3794
0.000 0.000 0.000 setrgbcolor AdjustColor
3795
stroke
3796
3419 1320 moveto
3797
3414.40380592229 1332.37578288433 lineto
3798
3410.86756490957 1328.83954187161 lineto
3799
3410.16045812839 1328.13243509043 lineto
3800
3406.62421711567 1324.59619407771 lineto
3801
3419 1320 lineto
3802
fill
3803
grestore
3804
gsave
3805
grestore
3806
gsave
3807
3412 678 moveto
3808
3412 632 lineto
3809
3412 586 lineto
3810
3412 534 lineto
3811
3412 482 lineto
3812
3460 430 lineto
3813
3509 378 lineto
3814
3559 332 lineto
3815
3604.18266857471 290.431944911263 lineto
3816
 
3817
1 setlinejoin
3818
1 setlinewidth
3819
[] 0 setdash
3820
0.000 0.000 0.000 setrgbcolor AdjustColor
3821
stroke
3822
3609 286 moveto
3823
3603.89257990389 298.173711922083 lineto
3824
3600.50662019326 294.493320932263 lineto
3825
3599.82956366244 293.7573899205 lineto
3826
3596.4436039518 290.07699893068 lineto
3827
3609 286 lineto
3828
fill
3829
grestore
3830
gsave
3831
grestore
3832
gsave
3833
grestore
3834
gsave
3835
grestore
3836
gsave
3837
3505 470 moveto
3838
3463 430 lineto
3839
3425.74013508829 394.514414369801 lineto
3840
 
3841
1 setlinejoin
3842
1 setlinewidth
3843
[] 0 setdash
3844
0.000 0.000 0.000 setrgbcolor AdjustColor
3845
stroke
3846
3421 390 moveto
3847
3433.48417241379 394.293068965517 lineto
3848
3430.03520689655 397.914482758621 lineto
3849
3429.34555172414 398.638620689655 lineto
3850
3425.8965862069 402.260034482759 lineto
3851
3421 390 lineto
3852
fill
3853
grestore
3854
gsave
3855
3424 678 moveto
3856
3464 638 lineto
3857
3500.31456234557 602.571158687246 lineto
3858
 
3859
1 setlinejoin
3860
1 setlinewidth
3861
[] 0 setdash
3862
0.000 0.000 0.000 setrgbcolor AdjustColor
3863
stroke
3864
3505 598 moveto
3865
3500.25138034779 610.318101046779 lineto
3866
3496.75906276356 606.738475522945 lineto
3867
3496.06073891149 606.022693574567 lineto
3868
3492.56842132726 602.443068050733 lineto
3869
3505 598 lineto
3870
fill
3871
grestore
3872
gsave
3873
3602 262 moveto
3874
3532 222 lineto
3875
3468.66312065903 185.282968497989 lineto
3876
 
3877
1 setlinejoin
3878
1 setlinewidth
3879
[] 0 setdash
3880
0.000 0.000 0.000 setrgbcolor AdjustColor
3881
stroke
3882
3463 182 moveto
3883
3476.14146408399 183.25973160996 lineto
3884
3473.6333103754 187.586296757286 lineto
3885
3473.13177993977 188.451436758751 lineto
3886
3470.62362623117 192.778001906078 lineto
3887
3463 182 lineto
3888
fill
3889
grestore
3890
gsave
3891
3410.58761415074 359.649543397054 moveto
3892
3414 346 lineto
3893
3419 326 lineto
3894
3414 306 lineto
3895
3409 286 lineto
3896
 
3897
1 setlinejoin
3898
1 setlinewidth
3899
[] 0 setdash
3900
0.000 0.000 0.000 setrgbcolor AdjustColor
3901
stroke
3902
3409 366 moveto
3903
3406.57391614276 353.023131382431 lineto
3904
3411.42559878599 354.236052043238 lineto
3905
3412.39574128613 354.478587668274 lineto
3906
3417.24742392936 355.691508329081 lineto
3907
3409 366 lineto
3908
fill
3909
grestore
3910
gsave
3911
3409 366 moveto
3912
3409 346 lineto
3913
3409 326 lineto
3914
3409 306 lineto
3915
3409 292.545900836212 lineto
3916
 
3917
1 setlinejoin
3918
1 setlinewidth
3919
[] 0 setdash
3920
0.000 0.000 0.000 setrgbcolor AdjustColor
3921
stroke
3922
3409 286 moveto
3923
3414.501 298.001 lineto
3924
3409.5 298.001 lineto
3925
3408.5 298.001 lineto
3926
3403.499 298.001 lineto
3927
3409 286 lineto
3928
fill
3929
grestore
3930
gsave
3931
3433 366 moveto
3932
3515 326 lineto
3933
3592.10316131251 288.841849969873 lineto
3934
 
3935
1 setlinejoin
3936
1 setlinewidth
3937
[] 0 setdash
3938
0.000 0.000 0.000 setrgbcolor AdjustColor
3939
stroke
3940
3598 286 moveto
3941
3589.57718001176 296.165682733872 lineto
3942
3587.40603626013 291.660559449238 lineto
3943
3586.97189433819 290.759714961209 lineto
3944
3584.80075058656 286.254591676575 lineto
3945
3598 286 lineto
3946
fill
3947
grestore
3948
gsave
3949
3520 1308 moveto
3950
3520 1262 lineto
3951
3520 1216 lineto
3952
3520 1164 lineto
3953
3520 1112 lineto
3954
3520 1060 lineto
3955
3520 1008 lineto
3956
3617 962 lineto
3957
3708.08546386956 918.80483156701 lineto
3958
 
3959
1 setlinejoin
3960
1 setlinewidth
3961
[] 0 setdash
3962
0.000 0.000 0.000 setrgbcolor AdjustColor
3963
stroke
3964
3714 916 moveto
3965
3705.51362493243 926.112687091594 lineto
3966
3703.37076285468 921.594043145038 lineto
3967
3702.94227613647 920.690495065343 lineto
3968
3700.79941405873 916.171851118786 lineto
3969
3714 916 lineto
3970
fill
3971
grestore
3972
gsave
3973
grestore
3974
gsave
3975
grestore
3976
gsave
3977
grestore
3978
gsave
3979
3522 1308 moveto
3980
3532 1262 lineto
3981
3542 1216 lineto
3982
3587 1170 lineto
3983
3628.37134912974 1128.62865087026 lineto
3984
 
3985
1 setlinejoin
3986
1 setlinewidth
3987
[] 0 setdash
3988
0.000 0.000 0.000 setrgbcolor AdjustColor
3989
stroke
3990
3633 1124 moveto
3991
3628.40380592229 1136.37578288433 lineto
3992
3624.86756490957 1132.83954187161 lineto
3993
3624.16045812839 1132.13243509043 lineto
3994
3620.62421711567 1128.59619407771 lineto
3995
3633 1124 lineto
3996
fill
3997
grestore
3998
gsave
3999
grestore
4000
gsave
4001
3612 678 moveto
4002
3571 638 lineto
4003
3534.68543765443 602.571158687246 lineto
4004
 
4005
1 setlinejoin
4006
1 setlinewidth
4007
[] 0 setdash
4008
0.000 0.000 0.000 setrgbcolor AdjustColor
4009
stroke
4010
3530 598 moveto
4011
3542.43157867274 602.443068050733 lineto
4012
3538.93926108851 606.022693574567 lineto
4013
3538.24093723644 606.738475522945 lineto
4014
3534.74861965221 610.318101046779 lineto
4015
3530 598 lineto
4016
fill
4017
grestore
4018
gsave
4019
3534 1308 moveto
4020
3580 1268 lineto
4021
3622.01503867218 1232.24252027899 lineto
4022
 
4023
1 setlinejoin
4024
1 setlinewidth
4025
[] 0 setdash
4026
0.000 0.000 0.000 setrgbcolor AdjustColor
4027
stroke
4028
3627 1228 moveto
4029
3621.4260663653 1239.96729985569 lineto
4030
3618.18482509902 1236.15884136782 lineto
4031
3617.5367064695 1235.39730197812 lineto
4032
3614.29546520322 1231.58884349025 lineto
4033
3627 1228 lineto
4034
fill
4035
grestore
4036
gsave
4037
3557 470 moveto
4038
3687 430 lineto
4039
3810.74356538757 391.925056803824 lineto
4040
 
4041
1 setlinejoin
4042
1 setlinewidth
4043
[] 0 setdash
4044
0.000 0.000 0.000 setrgbcolor AdjustColor
4045
stroke
4046
3817 390 moveto
4047
3807.14746237078 398.787064598879 lineto
4048
3805.67673904075 394.00721377626 lineto
4049
3805.38265319191 393.051434767538 lineto
4050
3803.91192986187 388.27158394492 lineto
4051
3817 390 lineto
4052
fill
4053
grestore
4054
gsave
4055
3518 574 moveto
4056
3518 534 lineto
4057
3518 500.545900836212 lineto
4058
 
4059
1 setlinejoin
4060
1 setlinewidth
4061
[] 0 setdash
4062
0.000 0.000 0.000 setrgbcolor AdjustColor
4063
stroke
4064
3518 494 moveto
4065
3523.501 506.001 lineto
4066
3518.5 506.001 lineto
4067
3517.5 506.001 lineto
4068
3512.499 506.001 lineto
4069
3518 494 lineto
4070
fill
4071
grestore
4072
gsave
4073
3688 1204 moveto
4074
3868 1158 lineto
4075
4048 1112 lineto
4076
4048 1060 lineto
4077
4048 1008 lineto
4078
3911 962 lineto
4079
3781.20080770283 918.097332017132 lineto
4080
 
4081
1 setlinejoin
4082
1 setlinewidth
4083
[] 0 setdash
4084
0.000 0.000 0.000 setrgbcolor AdjustColor
4085
stroke
4086
3775 916 moveto
4087
3788.13086140755 914.63417398776 lineto
4088
3786.52852161046 919.371526431336 lineto
4089
3786.20811773182 920.318807463845 lineto
4090
3784.60577793472 925.056159907421 lineto
4091
3775 916 lineto
4092
fill
4093
grestore
4094
gsave
4095
grestore
4096
gsave
4097
grestore
4098
gsave
4099
3642 1204 moveto
4100
3643 1164 lineto
4101
3643.83640359499 1130.54385620057 lineto
4102
 
4103
1 setlinejoin
4104
1 setlinewidth
4105
[] 0 setdash
4106
0.000 0.000 0.000 setrgbcolor AdjustColor
4107
stroke
4108
3644 1124 moveto
4109
3649.19935045678 1136.13473348812 lineto
4110
3644.19991253709 1136.00974754012 lineto
4111
3643.20022489068 1135.98475534896 lineto
4112
3638.200786971 1135.85976940097 lineto
4113
3644 1124 lineto
4114
fill
4115
grestore
4116
gsave
4117
3648 1100 moveto
4118
3659 1060 lineto
4119
3668.26431195607 1026.31159288703 lineto
4120
 
4121
1 setlinejoin
4122
1 setlinewidth
4123
[] 0 setdash
4124
0.000 0.000 0.000 setrgbcolor AdjustColor
4125
stroke
4126
3670 1020 moveto
4127
3672.12195091308 1033.03005473214 lineto
4128
3667.29995974367 1031.70400716055 lineto
4129
3666.33575435086 1031.43885067753 lineto
4130
3661.51376318145 1030.11280310594 lineto
4131
3670 1020 lineto
4132
fill
4133
grestore
4134
gsave
4135
3676 1100 moveto
4136
3780 1060 lineto
4137
3877.89041221588 1022.34984145543 lineto
4138
 
4139
1 setlinejoin
4140
1 setlinewidth
4141
[] 0 setdash
4142
0.000 0.000 0.000 setrgbcolor AdjustColor
4143
stroke
4144
3884 1020 moveto
4145
3874.77366329524 1029.44244211051 lineto
4146
3872.97840891961 1024.77478073389 lineto
4147
3872.6194298403 1023.84143512768 lineto
4148
3870.82417546468 1019.17377375106 lineto
4149
3884 1020 lineto
4150
fill
4151
grestore
4152
gsave
4153
3633 1100 moveto
4154
3587 1054 lineto
4155
3542 1008 lineto
4156
3629 962 lineto
4157
3711.1988561253 919.032416116321 lineto
4158
 
4159
1 setlinejoin
4160
1 setlinewidth
4161
[] 0 setdash
4162
0.000 0.000 0.000 setrgbcolor AdjustColor
4163
stroke
4164
3717 916 moveto
4165
3708.91276985261 926.434639933568 lineto
4166
3706.59603555169 922.002626488314 lineto
4167
3706.13278134234 921.116401044353 lineto
4168
3703.81604704141 916.684387599099 lineto
4169
3717 916 lineto
4170
fill
4171
grestore
4172
gsave
4173
grestore
4174
gsave
4175
3830 366 moveto
4176
3740 326 lineto
4177
3655.98171978025 288.658542124557 lineto
4178
 
4179
1 setlinejoin
4180
1 setlinewidth
4181
[] 0 setdash
4182
0.000 0.000 0.000 setrgbcolor AdjustColor
4183
stroke
4184
3650 286 moveto
4185
3663.20082009675 285.847190402148 lineto
4186
3661.16972162802 290.417161956797 lineto
4187
3660.76358316197 291.330973505418 lineto
4188
3658.73248469323 295.900945060067 lineto
4189
3650 286 lineto
4190
fill
4191
grestore
4192
gsave
4193
3625 678 moveto
4194
3625 632 lineto
4195
3625 586 lineto
4196
3625 534 lineto
4197
3625 482 lineto
4198
3625 430 lineto
4199
3625 378 lineto
4200
3624 332 lineto
4201
3623.14226857872 292.544354621276 lineto
4202
 
4203
1 setlinejoin
4204
1 setlinewidth
4205
[] 0 setdash
4206
0.000 0.000 0.000 setrgbcolor AdjustColor
4207
stroke
4208
3623 286 moveto
4209
3628.76053028123 297.87860652093 lineto
4210
3623.76071157332 297.987298231971 lineto
4211
3622.76094778449 298.00903222738 lineto
4212
3617.76112907658 298.117723938422 lineto
4213
3623 286 lineto
4214
fill
4215
grestore
4216
gsave
4217
grestore
4218
gsave
4219
grestore
4220
gsave
4221
grestore
4222
gsave
4223
3847 678 moveto
4224
3782 632 lineto
4225
3717 586 lineto
4226
3717 534 lineto
4227
3717 482 lineto
4228
3717 430 lineto
4229
3717 378 lineto
4230
3675 332 lineto
4231
3637.41370039378 290.834052812234 lineto
4232
 
4233
1 setlinejoin
4234
1 setlinewidth
4235
[] 0 setdash
4236
0.000 0.000 0.000 setrgbcolor AdjustColor
4237
stroke
4238
3633 286 moveto
4239
3645.15431533972 291.15340864115 lineto
4240
3641.46114938458 294.525429730621 lineto
4241
3640.72266389066 295.199699094642 lineto
4242
3637.02949793552 298.571720184113 lineto
4243
3633 286 lineto
4244
fill
4245
grestore
4246
gsave
4247
grestore
4248
gsave
4249
grestore
4250
gsave
4251
grestore
4252
gsave
4253
3681 996 moveto
4254
3706 956 lineto
4255
3728.43256030011 921.488368769059 lineto
4256
 
4257
1 setlinejoin
4258
1 setlinewidth
4259
[] 0 setdash
4260
0.000 0.000 0.000 setrgbcolor AdjustColor
4261
stroke
4262
3732 916 moveto
4263
3730.07187313777 929.060142755849 lineto
4264
3725.87881661265 926.334656014522 lineto
4265
3725.04037299635 925.789667663926 lineto
4266
3720.84731647123 923.064180922599 lineto
4267
3732 916 lineto
4268
fill
4269
grestore
4270
gsave
4271
3895 996 moveto
4272
3827 956 lineto
4273
3765.62045192734 919.355493687965 lineto
4274
 
4275
1 setlinejoin
4276
1 setlinewidth
4277
[] 0 setdash
4278
0.000 0.000 0.000 setrgbcolor AdjustColor
4279
stroke
4280
3760 916 moveto
4281
3773.1241851209 917.428554133487 lineto
4282
3770.56062292322 921.72252081461 lineto
4283
3770.04801300566 922.581142426512 lineto
4284
3767.48445080798 926.875109107635 lineto
4285
3760 916 lineto
4286
fill
4287
grestore
4288
gsave
4289
3874 678 moveto
4290
3915 632 lineto
4291
3957 586 lineto
4292
3957 534 lineto
4293
3957 482 lineto
4294
3957 430 lineto
4295
3957 378 lineto
4296
3934 332 lineto
4297
3914.82426490059 291.90528115578 lineto
4298
 
4299
1 setlinejoin
4300
1 setlinewidth
4301
[] 0 setdash
4302
0.000 0.000 0.000 setrgbcolor AdjustColor
4303
stroke
4304
3912 286 moveto
4305
3922.14053777636 294.45307610318 lineto
4306
3917.62896453396 296.610785045197 lineto
4307
3916.72683031233 297.042240542502 lineto
4308
3912.21525706993 299.199949484519 lineto
4309
3912 286 lineto
4310
fill
4311
grestore
4312
gsave
4313
grestore
4314
gsave
4315
grestore
4316
gsave
4317
grestore
4318
gsave
4319
3864 678 moveto
4320
3864 632 lineto
4321
3864 586 lineto
4322
3864 534 lineto
4323
3864 482 lineto
4324
3860 436 lineto
4325
3857.42600157957 396.532024220081 lineto
4326
 
4327
1 setlinejoin
4328
1 setlinewidth
4329
[] 0 setdash
4330
0.000 0.000 0.000 setrgbcolor AdjustColor
4331
stroke
4332
3857 390 moveto
4333
3863.2703531902 401.617558817158 lineto
4334
3858.27995478027 401.943019583023 lineto
4335
3857.2820746743 402.008098720369 lineto
4336
3852.29167626437 402.333559486234 lineto
4337
3857 390 lineto
4338
fill
4339
grestore
4340
gsave
4341
grestore
4342
gsave
4343
grestore
4344
gsave
4345
3865.9763081671 360.800212396863 moveto
4346
3875 349 lineto
4347
3889 331 lineto
4348
3895 309.000000000001 lineto
4349
3901 286 lineto
4350
 
4351
1 setlinejoin
4352
1 setlinewidth
4353
[] 0 setdash
4354
0.000 0.000 0.000 setrgbcolor AdjustColor
4355
stroke
4356
3862 366 moveto
4357
3864.92024630175 353.125328604694 lineto
4358
3868.89282982447 356.163186592655 lineto
4359
3869.68718765745 356.770636700226 lineto
4360
3873.65977118016 359.808494688188 lineto
4361
3862 366 lineto
4362
fill
4363
grestore
4364
gsave
4365
3862 366 moveto
4366
3871 347 lineto
4367
3881 327 lineto
4368
3891 307 lineto
4369
3898.18569741659 291.910035425152 lineto
4370
 
4371
1 setlinejoin
4372
1 setlinewidth
4373
[] 0 setdash
4374
0.000 0.000 0.000 setrgbcolor AdjustColor
4375
stroke
4376
3901 286 moveto
4377
3900.80700281576 299.200293712144 lineto
4378
3896.29179736112 297.050195876602 lineto
4379
3895.3889368423 296.62026229621 lineto
4380
3890.87373138766 294.470164460668 lineto
4381
3901 286 lineto
4382
fill
4383
grestore
4384
gsave
4385
3788 378 moveto
4386
3774.66 364.66 3764.67 361.33 3758 368 curveto
4387
3751.33 374.67 3751.33 381.33 3758 388 curveto
4388
3764.67 394.67 3773.1186592602 392.881340739797 3783.37134912974 382.62865087026 curveto
4389
 
4390
1 setlinejoin
4391
1 setlinewidth
4392
[] 0 setdash
4393
0.000 0.000 0.000 setrgbcolor AdjustColor
4394
stroke
4395
3788 378 moveto
4396
3783.40380592229 390.375782884327 lineto
4397
3779.86756490957 386.839541871613 lineto
4398
3779.16045812839 386.132435090426 lineto
4399
3775.62421711567 382.596194077712 lineto
4400
3788 378 lineto
4401
fill
4402
grestore
4403
gsave
4404
grestore
4405
restore showpage
4406
 
4407
%%Trailer
4408
end
4409
%%EOF
4410
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.