-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathvisualisation.eps
More file actions
3500 lines (3373 loc) · 111 KB
/
visualisation.eps
File metadata and controls
3500 lines (3373 loc) · 111 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%!PS-Adobe-3.0 EPSF-3.0
%%BoundingBox: -293 48 1107 538
%%LanguageLevel: 1
%%Creator: CorelDRAW 12
%%Title: visualisation.eps
%%CreationDate: Fri Jul 03 21:39:22 2009
%%DocumentProcessColors: Black
%%DocumentSuppliedResources: (atend)
%%EndComments
%%BeginProlog
/AutoFlatness false def
/AutoSteps 0 def
/CMYKMarks true def
/UseLevel 1 def
%Build: CorelDRAW Version 12.154
%Color profile: Disabled
/CorelIsEPS true def
%%BeginResource: procset wCorel12Dict 12.0 0
/wCorel12Dict 300 dict def wCorel12Dict begin
% Copyright (c)1992-2003 Corel Corporation
% All rights reserved. v12 r0.0
/bd{bind def}bind def/ld{load def}bd/xd{exch def}bd/_ null def/rp{{pop}repeat}
bd/@cp/closepath ld/@gs/gsave ld/@gr/grestore ld/@np/newpath ld/Tl/translate ld
/$sv 0 def/@sv{/$sv save def}bd/@rs{$sv restore}bd/spg/showpage ld/showpage{}
bd currentscreen/@dsp xd/$dsp/@dsp def/$dsa xd/$dsf xd/$sdf false def/$SDF
false def/$Scra 0 def/SetScr/setscreen ld/@ss{2 index 0 eq{$dsf 3 1 roll 4 -1
roll pop}if exch $Scra add exch load SetScr}bd/SepMode_5 where{pop}{/SepMode_5
0 def}ifelse/CorelIsSeps where{pop}{/CorelIsSeps false def}ifelse
/CorelIsInRIPSeps where{pop}{/CorelIsInRIPSeps false def}ifelse/CorelIsEPS
where{pop}{/CorelIsEPS false def}ifelse/CurrentInkName_5 where{pop}
{/CurrentInkName_5(Composite)def}ifelse/$ink_5 where{pop}{/$ink_5 -1 def}
ifelse/$c 0 def/$m 0 def/$y 0 def/$k 0 def/$t 1 def/$n _ def/$o 0 def/$fil 0
def/$C 0 def/$M 0 def/$Y 0 def/$K 0 def/$T 1 def/$N _ def/$O 0 def/$PF false
def/s1c 0 def/s1m 0 def/s1y 0 def/s1k 0 def/s1t 0 def/s1n _ def/$bkg false def
/SK 0 def/SM 0 def/SY 0 def/SC 0 def/$op false def matrix currentmatrix/$ctm xd
/$ptm matrix def/$ttm matrix def/$stm matrix def/$ffpnt true def
/CorelDrawReencodeVect[16#0/grave 16#5/breve 16#6/dotaccent 16#8/ring
16#A/hungarumlaut 16#B/ogonek 16#C/caron 16#D/dotlessi 16#27/quotesingle
16#60/grave 16#7C/bar 16#80/Euro
16#82/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl
16#88/circumflex/perthousand/Scaron/guilsinglleft/OE
16#91/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash
16#98/tilde/trademark/scaron/guilsinglright/oe 16#9F/Ydieresis
16#A1/exclamdown/cent/sterling/currency/yen/brokenbar/section
16#a8/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/minus/registered/macron
16#b0/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered
16#b8/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown
16#c0/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
16#c8/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
16#d0/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
16#d8/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
16#e0/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
16#e8/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
16#f0/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
16#f8/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]def
/L2?/languagelevel where{pop languagelevel 2 ge}{false}ifelse def/Comp?{
/LumSepsDict where{pop false}{/AldusSepsDict where{pop false}{1 0 0 0 @gs
setcmykcolor currentcmykcolor @gr add add add 0 ne 0 1 0 0 @gs setcmykcolor
currentcmykcolor @gr add add add 0 ne 0 0 1 0 @gs setcmykcolor currentcmykcolor
@gr add add add 0 ne 0 0 0 1 @gs setcmykcolor currentcmykcolor @gr add add add
0 ne and and and}ifelse}ifelse}bd/@PL{/LV where{pop LV 2 ge L2? not and{@np
/Courier findfont 12 scalefont setfont 72 144 m
(The PostScript level set in the Corel application is higher than)show 72 132 m
(the PostScript level of this device. Change the PS Level in the Corel)show 72
120 m(application to Level 1 by selecting the PostScript tab in the print)show
72 108 m(dialog, and selecting Level 1 from the Compatibility drop down list.)
show flush spg quit}if}if}bd/@BeginSysCorelDict{systemdict/Corel30Dict known
{systemdict/Corel30Dict get exec}if systemdict/CorelLexDict known{1 systemdict
/CorelLexDict get exec}if}bd/@EndSysCorelDict{systemdict/Corel30Dict known
{end}if/EndCorelLexDict where{pop EndCorelLexDict}if}bd AutoFlatness{/@ifl{dup
currentflat exch sub 10 gt{
([Error: PathTooComplex; OffendingCommand: AnyPaintingOperator]\n)print flush
@np exit}{currentflat 2 add setflat}ifelse}bd/@fill/fill ld/fill{currentflat{
{@fill}stopped{@ifl}{exit}ifelse}bind loop setflat}bd/@eofill/eofill ld/eofill
{currentflat{{@eofill}stopped{@ifl}{exit}ifelse}bind loop setflat}bd/@clip
/clip ld/clip{currentflat{{@clip}stopped{@ifl}{exit}ifelse}bind loop setflat}
bd/@eoclip/eoclip ld/eoclip{currentflat{{@eoclip}stopped{@ifl}{exit}ifelse}
bind loop setflat}bd/@stroke/stroke ld/stroke{currentflat{{@stroke}stopped
{@ifl}{exit}ifelse}bind loop setflat}bd}if L2?{/@ssa{true setstrokeadjust}bd}{
/@ssa{}bd}ifelse/d/setdash ld/j/setlinejoin ld/J/setlinecap ld/M/setmiterlimit
ld/w/setlinewidth ld/O{/$o xd}bd/R{/$O xd}bd/W/eoclip ld/c/curveto ld/C/c ld/l
/lineto ld/L/l ld/rl/rlineto ld/m/moveto ld/n/newpath ld/N/newpath ld/P{11 rp}
bd/u{}bd/U{}bd/A{pop}bd/q/@gs ld/Q/@gr ld/&{}bd/@j{@sv @np}bd/@J{@rs}bd/g{1
exch sub/$k xd/$c 0 def/$m 0 def/$y 0 def/$t 1 def/$n _ def/$fil 0 def}bd/G{1
sub neg/$K xd _ 1 0 0 0/$C xd/$M xd/$Y xd/$T xd/$N xd}bd/k{1 index type
/stringtype eq{/$t xd/$n xd}{/$t 0 def/$n _ def}ifelse/$k xd/$y xd/$m xd/$c xd
/$fil 0 def}bd/K{1 index type/stringtype eq{/$T xd/$N xd}{/$T 0 def/$N _ def}
ifelse/$K xd/$Y xd/$M xd/$C xd}bd/x/k ld/X/K ld/sf{1 index type/stringtype eq{
/s1t xd/s1n xd}{/s1t 0 def/s1n _ def}ifelse/s1k xd/s1y xd/s1m xd/s1c xd}bd/i{
dup 0 ne{setflat}{pop}ifelse}bd/v{4 -2 roll 2 copy 6 -2 roll c}bd/V/v ld/y{2
copy c}bd/Y/y ld/@w{matrix rotate/$ptm xd matrix scale $ptm dup concatmatrix
/$ptm xd 1 eq{$ptm exch dup concatmatrix/$ptm xd}if 1 w}bd/@g{1 eq dup/$sdf xd
{/$scp xd/$sca xd/$scf xd}if}bd/@G{1 eq dup/$SDF xd{/$SCP xd/$SCA xd/$SCF xd}
if}bd/@D{2 index 0 eq{$dsf 3 1 roll 4 -1 roll pop}if 3 copy exch $Scra add exch
load SetScr/$dsp xd/$dsa xd/$dsf xd}bd/$ngx{$SDF{$SCF SepMode_5 0 eq{$SCA}
{$dsa}ifelse $SCP @ss}if}bd/@MN{2 copy le{pop}{exch pop}ifelse}bd/@MX{2 copy ge
{pop}{exch pop}ifelse}bd/InRange{3 -1 roll @MN @MX}bd/@sqr{dup 0 rl dup 0 exch
rl neg 0 rl @cp}bd/currentscale{1 0 dtransform matrix defaultmatrix idtransform
dup mul exch dup mul add sqrt 0 1 dtransform matrix defaultmatrix idtransform
dup mul exch dup mul add sqrt}bd/@unscale{}bd/wDstChck{2 1 roll dup 3 -1 roll
eq{1 add}if}bd/@dot{dup mul exch dup mul add 1 exch sub}bd/@lin{exch pop abs 1
exch sub}bd/cmyk2rgb{3{dup 5 -1 roll add 1 exch sub dup 0 lt{pop 0}if exch}
repeat pop}bd/rgb2cmyk{3{1 exch sub 3 1 roll}repeat 3 copy @MN @MN 3{dup 5 -1
roll sub neg exch}repeat}bd/rgb2g{2 index .299 mul 2 index .587 mul add 1 index
.114 mul add 4 1 roll pop pop pop}bd/WaldoColor_5 where{pop}{/SetRgb
/setrgbcolor ld/GetRgb/currentrgbcolor ld/SetGry/setgray ld/GetGry/currentgray
ld/SetRgb2 systemdict/setrgbcolor get def/GetRgb2 systemdict/currentrgbcolor
get def/SetHsb systemdict/sethsbcolor get def/GetHsb systemdict
/currenthsbcolor get def/rgb2hsb{SetRgb2 GetHsb}bd/hsb2rgb{3 -1 roll dup floor
sub 3 1 roll SetHsb GetRgb2}bd/setcmykcolor where{pop/LumSepsDict where{pop
/SetCmyk_5{LumSepsDict/setcmykcolor get exec}def}{/AldusSepsDict where{pop
/SetCmyk_5{AldusSepsDict/setcmykcolor get exec}def}{/SetCmyk_5/setcmykcolor ld
}ifelse}ifelse}{/SetCmyk_5{cmyk2rgb SetRgb}bd}ifelse/currentcmykcolor where{
pop/GetCmyk/currentcmykcolor ld}{/GetCmyk{GetRgb rgb2cmyk}bd}ifelse
/setoverprint where{pop}{/setoverprint{/$op xd}bd}ifelse/currentoverprint where
{pop}{/currentoverprint{$op}bd}ifelse/@tc_5{5 -1 roll dup 1 ge{pop}{4{dup 6 -1
roll mul exch}repeat pop}ifelse}bd/@trp{exch pop 5 1 roll @tc_5}bd
/setprocesscolor_5{SepMode_5 0 eq{SetCmyk_5}{0 4 $ink_5 sub index exch pop 5 1
roll pop pop pop pop SepsColor true eq{$ink_5 3 gt{1 sub neg SetGry}{0 0 0 4
$ink_5 roll SetCmyk_5}ifelse}{1 sub neg SetGry}ifelse}ifelse}bd
/findcmykcustomcolor where{pop}{/findcmykcustomcolor{5 array astore}bd}ifelse
/Corelsetcustomcolor_exists false def/setcustomcolor where{pop
/Corelsetcustomcolor_exists true def}if CorelIsSeps true eq CorelIsInRIPSeps
false eq and{/Corelsetcustomcolor_exists false def}if
Corelsetcustomcolor_exists false eq{/setcustomcolor{exch aload pop SepMode_5 0
eq{pop @tc_5 setprocesscolor_5}{CurrentInkName_5 eq{4 index}{0}ifelse 6 1 roll
5 rp 1 sub neg SetGry}ifelse}bd}if/@scc_5{dup type/booleantype eq{dup
currentoverprint ne{setoverprint}{pop}ifelse}{1 eq setoverprint}ifelse dup _ eq
{pop setprocesscolor_5 pop}{findcmykcustomcolor exch setcustomcolor}ifelse
SepMode_5 0 eq{true}{GetGry 1 eq currentoverprint and not}ifelse}bd/colorimage
where{pop/ColorImage{colorimage}def}{/ColorImage{/ncolors xd/$multi xd $multi
true eq{ncolors 3 eq{/daqB xd/daqG xd/daqR xd pop pop exch pop abs{daqR pop
daqG pop daqB pop}repeat}{/daqK xd/daqY xd/daqM xd/daqC xd pop pop exch pop abs
{daqC pop daqM pop daqY pop daqK pop}repeat}ifelse}{/dataaq xd{dataaq ncolors
dup 3 eq{/$dat xd 0 1 $dat length 3 div 1 sub{dup 3 mul $dat 1 index get 255
div $dat 2 index 1 add get 255 div $dat 3 index 2 add get 255 div rgb2g 255 mul
cvi exch pop $dat 3 1 roll put}for $dat 0 $dat length 3 idiv getinterval pop}{
4 eq{/$dat xd 0 1 $dat length 4 div 1 sub{dup 4 mul $dat 1 index get 255 div
$dat 2 index 1 add get 255 div $dat 3 index 2 add get 255 div $dat 4 index 3
add get 255 div cmyk2rgb rgb2g 255 mul cvi exch pop $dat 3 1 roll put}for $dat
0 $dat length ncolors idiv getinterval}if}ifelse}image}ifelse}bd}ifelse
/setcmykcolor{1 5 1 roll _ currentoverprint @scc_5/$ffpnt xd}bd
/currentcmykcolor{GetCmyk}bd/setrgbcolor{rgb2cmyk setcmykcolor}bd
/currentrgbcolor{currentcmykcolor cmyk2rgb}bd/sethsbcolor{hsb2rgb setrgbcolor}
bd/currenthsbcolor{currentrgbcolor rgb2hsb}bd/setgray{dup dup setrgbcolor}bd
/currentgray{currentrgbcolor rgb2g}bd/InsideDCS false def/IMAGE/image ld/image
{InsideDCS{IMAGE}{/EPSDict where{pop SepMode_5 0 eq{IMAGE}{dup type/dicttype eq
{dup/ImageType get 1 ne{IMAGE}{dup dup/BitsPerComponent get 8 eq exch
/BitsPerComponent get 1 eq or currentcolorspace 0 get/DeviceGray eq and{
CurrentInkName_5(Black)eq{IMAGE}{dup/DataSource get/TCC xd/Height get abs{TCC
pop}repeat}ifelse}{IMAGE}ifelse}ifelse}{2 index 1 ne{CurrentInkName_5(Black)eq
{IMAGE}{/TCC xd pop pop exch pop abs{TCC pop}repeat}ifelse}{IMAGE}ifelse}
ifelse}ifelse}{IMAGE}ifelse}ifelse}bd}ifelse/WaldoColor_5 true def/$fm 0 def
/wfill{1 $fm eq{fill}{eofill}ifelse}bd/@Pf{@sv SepMode_5 0 eq $Psc 0 ne or
$ink_5 3 eq or{0 J 0 j[]0 d $t $c $m $y $k $n $o @scc_5 pop $ctm setmatrix 72
1000 div dup matrix scale dup concat dup Bburx exch Bbury exch itransform
ceiling cvi/Bbury xd ceiling cvi/Bburx xd Bbllx exch Bblly exch itransform
floor cvi/Bblly xd floor cvi/Bbllx xd $Prm aload pop $Psn load exec}{1 SetGry
wfill}ifelse @rs @np}bd/F{matrix currentmatrix $sdf{$scf $sca $scp @ss}if $fil
1 eq{CorelPtrnDoFill}{$fil 2 eq{@ff}{$fil 3 eq{@Pf}{$fil 4 eq
{CorelShfillDoFill}{$t $c $m $y $k $n $o @scc_5{wfill}{@np}ifelse}ifelse}
ifelse}ifelse}ifelse $sdf{$dsf $dsa $dsp @ss}if setmatrix}bd/f{@cp F}bd/S{
matrix currentmatrix $ctm setmatrix $SDF{$SCF $SCA $SCP @ss}if $T $C $M $Y $K
$N $O @scc_5{matrix currentmatrix $ptm concat stroke setmatrix}{@np}ifelse $SDF
{$dsf $dsa $dsp @ss}if setmatrix}bd/s{@cp S}bd/B{@gs F @gr S}bd/b{@cp B}bd/_E{
5 array astore exch cvlit xd}bd/@cc{currentfile $dat readhexstring pop}bd/@sm{
/$ctm $ctm currentmatrix def}bd/@E{/Bbury xd/Bburx xd/Bblly xd/Bbllx xd}bd/@c{
@cp}bd/@P{/$fil 3 def/$Psn xd/$Psc xd array astore/$Prm xd}bd/tcc{@cc}def/@B{
@gs S @gr F}bd/@b{@cp @B}bd/@sep{CurrentInkName_5(Composite)eq{/$ink_5 -1 def}
{CurrentInkName_5(Cyan)eq{/$ink_5 0 def}{CurrentInkName_5(Magenta)eq{/$ink_5 1
def}{CurrentInkName_5(Yellow)eq{/$ink_5 2 def}{CurrentInkName_5(Black)eq
{/$ink_5 3 def}{/$ink_5 4 def}ifelse}ifelse}ifelse}ifelse}ifelse}bd/@whi{@gs
-72000 dup m -72000 72000 l 72000 dup l 72000 -72000 l @cp 1 SetGry fill @gr}
bd/@neg{[{1 exch sub}/exec cvx currenttransfer/exec cvx]cvx settransfer @whi}
bd/deflevel 0 def/@sax{/deflevel deflevel 1 add def}bd/@eax{/deflevel deflevel
dup 0 gt{1 sub}if def deflevel 0 gt{/eax load}{eax}ifelse}bd/eax{{exec}forall}
bd/@rax{deflevel 0 eq{@rs @sv}if}bd systemdict/pdfmark known not{/pdfmark
/cleartomark ld}if/wclip{1 $fm eq{clip}{eoclip}ifelse}bd
% Copyright (c)1992-2003 Corel Corporation
% All rights reserved. v12 r0.0
/z{exch findfont exch scalefont setfont}bd/ZB{9 dict dup begin 4 1 roll
/FontType 3 def/FontMatrix xd/FontBBox xd/Encoding 256 array def 0 1 255{
Encoding exch/.notdef put}for/CharStrings 256 dict def CharStrings/.notdef{}
put/Metrics 256 dict def Metrics/.notdef 3 -1 roll put/BuildChar{exch dup
/$char exch/Encoding get 3 index get def dup/Metrics get $char get aload pop
setcachedevice begin Encoding exch get CharStrings exch get end exec}def end
definefont pop}bd/ZBAddChar{findfont begin dup 4 1 roll dup 6 1 roll Encoding 3
1 roll put CharStrings 3 1 roll put Metrics 3 1 roll put end}bd/Z{findfont dup
maxlength 2 add dict exch dup{1 index/FID ne{3 index 3 1 roll put}{pop pop}
ifelse}forall pop dup dup/Encoding get 256 array copy dup/$fe xd/Encoding exch
put dup/Fontname 3 index put 3 -1 roll dup length 0 ne{0 exch{dup type 0 type
eq{exch pop}{$fe exch 2 index exch put 1 add}ifelse}forall pop}if dup 256 dict
dup/$met xd/Metrics exch put dup/FontMatrix get 0 get 1000 mul 1 exch div 3
index length 256 eq{0 1 255{dup $fe exch get dup/.notdef eq{pop pop}{5 index 3
-1 roll get 2 index mul $met 3 1 roll put}ifelse}for}if pop definefont pop pop
}bd/CorelIsValidCharpath{pathbbox 3 -1 roll sub abs 0.5 ge 3 1 roll sub abs 0.5
ge and}bd/@ftx{{currentpoint 3 -1 roll(0)dup 3 -1 roll 0 exch put dup @gs true
charpath $ctm setmatrix CorelIsValidCharpath{@@txt}if @gr @np stringwidth pop 3
-1 roll add exch m}forall}bd/@ft{matrix currentmatrix exch $sdf{$scf $sca $scp
@ss}if $fil 1 eq{/@@txt/@pf ld @ftx}{$fil 2 eq{/@@txt/@ff ld @ftx}{$fil 3 eq
{/@@txt/@Pf ld @ftx}{$fil 4 eq{/@@txt/CorelShfillDoFill ld @ftx}{$t $c $m $y $k
$n $o @scc_5{show}{pop}ifelse}ifelse}ifelse}ifelse}ifelse $sdf{$dsf $dsa $dsp
@ss}if setmatrix}bd/@st{matrix currentmatrix exch $SDF{$SCF $SCA $SCP @ss}if $T
$C $M $Y $K $N $O @scc_5{{currentpoint 3 -1 roll(0)dup 3 -1 roll 0 exch put dup
@gs true charpath $ctm setmatrix $ptm concat stroke @gr @np stringwidth pop 3
-1 roll add exch m}forall}{pop}ifelse $SDF{$dsf $dsa $dsp @ss}if setmatrix}bd
/@te{@ft}bd/@tr{@st}bd/@ta{dup @gs @ft @gr @st}bd/@t@a{dup @gs @st @gr @ft}bd
/@tm{@sm concat}bd/e{/t{@te}def}bd/r{/t{@tr}def}bd/o{/t{pop}def}bd/a{/t{@ta}
def}bd/@a{/t{@t@a}def}bd/t{@te}def/T{@np $ctm setmatrix/$ttm matrix def}bd/ddt
{t}def/@t{/$stm $stm currentmatrix def 3 1 roll m $ttm concat ddt $stm
setmatrix}bd/@n{/$ttm exch matrix rotate def}bd/@s{}bd/@l{}bd/_lineorientation
0 def/_bitfont null def/_bitlobyte 0 def/_bitkey null def/_bithibyte 0 def
% Copyright (c)1992-2003 Corel Corporation
% All rights reserved. v12 r0.0
/@ii{concat 3 index 3 index m 3 index 1 index l 2 copy l 1 index 3 index l 3
index 3 index l clip pop pop pop pop}bd/@i{@sm @gs @ii 6 index 1 ne{/$frg true
def pop pop}{1 eq{s1t s1c s1m s1y s1k s1n $O @scc_5/$frg xd}{/$frg false def}
ifelse 1 eq{@gs $ctm setmatrix F @gr}if}ifelse @np/$ury xd/$urx xd/$lly xd
/$llx xd/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul 8 div ceiling cvi string
def $bkg $frg or{$SDF{$SCF $SCA $SCP @ss}if $llx $lly Tl $urx $llx sub $ury
$lly sub scale $bkg{$t $c $m $y $k $n $o @scc_5 pop}if $wid $hei abs $bts 1 eq
{$bkg}{$bts}ifelse[$wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse]/tcc load $bts
1 eq{imagemask}{image}ifelse $SDF{$dsf $dsa $dsp @ss}if}{$hei abs{tcc pop}
repeat}ifelse @gr $ctm setmatrix}bd/@I{@sm @gs @ii @np/$ury xd/$urx xd/$lly xd
/$llx xd/$ncl xd/$bts xd/$hei xd/$wid xd $ngx $llx $lly Tl $urx $llx sub $ury
$lly sub scale $wid $hei abs $bts[$wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse
]$msimage false eq $ncl 1 eq or{/$dat $wid $bts mul $ncl mul 8 div ceiling cvi
string def/@cc load false $ncl ColorImage}{$wid $bts mul 8 div ceiling cvi $ncl
3 eq{dup dup/$dat1 exch string def/$dat2 exch string def/$dat3 exch string def
/@cc1 load/@cc2 load/@cc3 load}{dup dup dup/$dat1 exch string def/$dat2 exch
string def/$dat3 exch string def/$dat4 exch string def/@cc1 load/@cc2 load
/@cc3 load/@cc4 load}ifelse true $ncl ColorImage}ifelse $SDF{$dsf $dsa $dsp
@ss}if @gr $ctm setmatrix}bd/@cc1{currentfile $dat1 readhexstring pop}bd/@cc2{
currentfile $dat2 readhexstring pop}bd/@cc3{currentfile $dat3 readhexstring pop
}bd/@cc4{currentfile $dat4 readhexstring pop}bd/$msimage false def/COMP 0 def
/MaskedImage false def L2?{/@I_2{@sm @gs @ii @np/$ury xd/$urx xd/$lly xd/$llx
xd/$ncl xd/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul $ncl mul 8 div ceiling
cvi string def $ngx $ncl 1 eq{/DeviceGray}{$ncl 3 eq{/DeviceRGB}{/DeviceCMYK}
ifelse}ifelse setcolorspace $llx $lly Tl $urx $llx sub $ury $lly sub scale 8
dict begin/ImageType 1 def/Width $wid def/Height $hei abs def/BitsPerComponent
$bts def/Decode $ncl 1 eq{[0 1]}{$ncl 3 eq{[0 1 0 1 0 1]}{[0 1 0 1 0 1 0 1]}
ifelse}ifelse def/ImageMatrix[$wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse]def
/DataSource currentfile/ASCII85Decode filter COMP 1 eq{/DCTDecode filter}{COMP
2 eq{/RunLengthDecode filter}if}ifelse def currentdict end image $SDF{$dsf $dsa
$dsp @ss}if @gr $ctm setmatrix}bd}{/@I_2{}bd}ifelse/@I_3{@sm @gs @ii @np/$ury
xd/$urx xd/$lly xd/$llx xd/$ncl xd/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul
$ncl mul 8 div ceiling cvi string def $ngx $ncl 1 eq{/DeviceGray}{$ncl 3 eq
{/DeviceRGB}{/DeviceCMYK}ifelse}ifelse setcolorspace $llx $lly Tl $urx $llx sub
$ury $lly sub scale/ImageDataDict 8 dict def ImageDataDict begin/ImageType 1
def/Width $wid def/Height $hei abs def/BitsPerComponent $bts def/Decode $ncl 1
eq{[0 1]}{$ncl 3 eq{[0 1 0 1 0 1]}{[0 1 0 1 0 1 0 1]}ifelse}ifelse def
/ImageMatrix[$wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse]def/DataSource
currentfile/ASCII85Decode filter COMP 1 eq{/DCTDecode filter}{COMP 2 eq{
/RunLengthDecode filter}if}ifelse def end/MaskedImageDict 7 dict def
MaskedImageDict begin/ImageType 3 def/InterleaveType 3 def/MaskDict
ImageMaskDict def/DataDict ImageDataDict def end MaskedImageDict image $SDF
{$dsf $dsa $dsp @ss}if @gr $ctm setmatrix}bd/@SetMask{/$mbts xd/$mhei xd/$mwid
xd/ImageMaskDict 8 dict def ImageMaskDict begin/ImageType 1 def/Width $mwid def
/Height $mhei abs def/BitsPerComponent $mbts def/DataSource maskstream def
/ImageMatrix[$mwid 0 0 $mhei neg 0 $mhei 0 gt{$mhei}{0}ifelse]def/Decode[1 0]
def end}bd/@daq{dup type/arraytype eq{{}forall}if}bd/@BMP{/@cc xd UseLevel 3 eq
MaskedImage true eq and{7 -2 roll pop pop @I_3}{12 index 1 gt UseLevel 2 eq
UseLevel 3 eq or and{7 -2 roll pop pop @I_2}{11 index 1 eq{12 -1 roll pop @i}{
7 -2 roll pop pop @I}ifelse}ifelse}ifelse}bd
end
%%EndResource
%%EndProlog
%%BeginSetup
wCorel12Dict begin
@BeginSysCorelDict
2.6131 setmiterlimit
1.00 setflat
/$fst 128 def
%%EndSetup
%%Page: 1 1
%LogicalPage: 1
%%BeginPageSetup
@sv
@sm
@sv
%%EndPageSetup
@rax %Note: Object
-256.35770 101.36013 382.42630 101.36126 @E
0 J 0 j [] 0 d 0 R 0 @G
0.00 0.00 0.00 1.00 K
0 2.00013 2.00013 90.00000 @w
/$fm 0 def
-256.35770 101.36069 m
-250.09370 101.36069 L
382.42630 101.36069 m
376.09030 101.36069 L
S
@rax %Note: Object
-292.21370 99.92069 -288.75770 101.14469 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-292.21370 101.14469 m
-292.21370 99.92069 L
-288.75770 99.92069 L
-288.75770 101.14469 L
-292.21370 101.14469 L
@c
F
@rax %Note: Object
-286.74170 96.68069 -283.06970 106.47269 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-283.06970 106.47269 m
-284.07770 106.47269 L
-284.22170 105.89669 -284.43770 105.46469 -284.65370 105.24869 C
-285.08570 104.81669 -285.66170 104.67269 -286.74170 104.60069 C
-286.74170 103.66469 L
-284.43770 103.66469 L
-284.43770 96.68069 L
-283.06970 96.68069 L
-283.06970 106.47269 L
@c
F
@rax %Note: Object
-279.90170 96.39269 -273.13370 106.25669 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-278.82170 106.25669 m
-279.54170 101.00069 L
-278.46170 100.92869 L
-277.88570 101.57669 -277.30970 101.86469 -276.58970 101.86469 C
-275.36570 101.86469 -274.50170 101.00069 -274.50170 99.70469 C
-274.50170 98.33669 -275.36570 97.47269 -276.58970 97.47269 C
-277.74170 97.47269 -278.46170 98.04869 -278.60570 99.12869 C
-279.90170 99.12869 L
-279.82970 98.55269 -279.75770 98.40869 -279.61370 98.04869 C
-279.18170 96.96869 -278.10170 96.39269 -276.58970 96.39269 C
-274.50170 96.39269 -273.13370 97.76069 -273.13370 99.84869 C
-273.13370 101.64869 -274.57370 103.01669 -276.37370 103.01669 C
-277.09370 103.01669 -277.66970 102.80069 -278.24570 102.44069 C
-277.88570 105.10469 L
-273.70970 105.10469 L
-273.70970 106.25669 L
-278.82170 106.25669 L
@c
F
@rax %Note: Object
-272.05370 96.39269 -265.28570 106.47269 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-268.66970 106.47269 m
-270.82970 106.47269 -272.05370 104.67269 -272.05370 101.50469 C
-272.05370 98.19269 -270.82970 96.39269 -268.66970 96.39269 C
-266.50970 96.39269 -265.28570 98.19269 -265.28570 101.43269 C
-265.28570 104.67269 -266.50970 106.47269 -268.66970 106.47269 C
-268.66970 106.47269 L
@c
-270.68570 101.72069 m
-270.61370 104.16869 -269.96570 105.39269 -268.66970 105.39269 C
-267.30170 105.39269 -266.65370 104.02469 -266.65370 101.36069 C
-266.65370 98.84069 -267.37370 97.47269 -268.66970 97.47269 C
-270.03770 97.47269 -270.68570 98.84069 -270.68570 101.43269 C
-270.68570 101.50469 -270.68570 101.64869 -270.68570 101.72069 C
-270.68570 101.72069 L
@c
F
@rax %Note: Object
-256.35770 161.69613 382.42630 161.69726 @E
0 J 0 j [] 0 d 0 R 0 @G
0.00 0.00 0.00 1.00 K
0 2.00013 2.00013 90.00000 @w
/$fm 0 def
-256.35770 161.69669 m
-250.09370 161.69669 L
382.42630 161.69669 m
376.09030 161.69669 L
S
@rax %Note: Object
-292.21370 160.25669 -288.75770 161.55269 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-292.21370 161.55269 m
-292.21370 160.25669 L
-288.75770 160.25669 L
-288.75770 161.55269 L
-292.21370 161.55269 L
@c
F
@rax %Note: Object
-286.74170 157.08869 -283.06970 166.88069 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-283.06970 166.88069 m
-284.07770 166.88069 L
-284.22170 166.30469 -284.43770 165.87269 -284.65370 165.65669 C
-285.08570 165.22469 -285.66170 165.08069 -286.74170 165.00869 C
-286.74170 164.07269 L
-284.43770 164.07269 L
-284.43770 157.08869 L
-283.06970 157.08869 L
-283.06970 166.88069 L
@c
F
@rax %Note: Object
-279.82970 156.80069 -273.06170 166.88069 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-276.44570 166.88069 m
-278.60570 166.88069 -279.82970 165.08069 -279.82970 161.91269 C
-279.82970 158.60069 -278.60570 156.80069 -276.44570 156.80069 C
-274.28570 156.80069 -273.06170 158.60069 -273.06170 161.84069 C
-273.06170 165.08069 -274.28570 166.88069 -276.44570 166.88069 C
-276.44570 166.88069 L
@c
-278.53370 162.12869 m
-278.46170 164.57669 -277.74170 165.80069 -276.44570 165.80069 C
-275.07770 165.80069 -274.42970 164.43269 -274.42970 161.76869 C
-274.42970 159.24869 -275.14970 157.88069 -276.44570 157.88069 C
-277.81370 157.88069 -278.53370 159.24869 -278.53370 161.76869 C
-278.53370 161.91269 -278.53370 162.05669 -278.53370 162.12869 C
-278.53370 162.12869 L
@c
F
@rax %Note: Object
-272.05370 156.80069 -265.28570 166.88069 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-268.66970 166.88069 m
-270.82970 166.88069 -272.05370 165.08069 -272.05370 161.91269 C
-272.05370 158.60069 -270.82970 156.80069 -268.66970 156.80069 C
-266.50970 156.80069 -265.28570 158.60069 -265.28570 161.84069 C
-265.28570 165.08069 -266.50970 166.88069 -268.66970 166.88069 C
-268.66970 166.88069 L
@c
-270.68570 162.12869 m
-270.61370 164.57669 -269.96570 165.80069 -268.66970 165.80069 C
-267.30170 165.80069 -266.65370 164.43269 -266.65370 161.76869 C
-266.65370 159.24869 -267.37370 157.88069 -268.66970 157.88069 C
-270.03770 157.88069 -270.68570 159.24869 -270.68570 161.76869 C
-270.68570 161.91269 -270.68570 162.05669 -270.68570 162.12869 C
-270.68570 162.12869 L
@c
F
@rax %Note: Object
-256.35770 222.10413 382.42630 222.10526 @E
0 J 0 j [] 0 d 0 R 0 @G
0.00 0.00 0.00 1.00 K
0 2.00013 2.00013 90.00000 @w
/$fm 0 def
-256.35770 222.10469 m
-250.09370 222.10469 L
382.42630 222.10469 m
376.09030 222.10469 L
S
@rax %Note: Object
-284.36570 220.66469 -280.98170 221.96069 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-284.36570 221.96069 m
-284.36570 220.66469 L
-280.98170 220.66469 L
-280.98170 221.96069 L
-284.36570 221.96069 L
@c
F
@rax %Note: Object
-279.90170 217.20869 -273.13370 227.07269 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-278.82170 227.07269 m
-279.54170 221.81669 L
-278.46170 221.74469 L
-277.88570 222.39269 -277.30970 222.68069 -276.58970 222.68069 C
-275.36570 222.68069 -274.50170 221.81669 -274.50170 220.52069 C
-274.50170 219.15269 -275.36570 218.28869 -276.58970 218.28869 C
-277.74170 218.28869 -278.46170 218.86469 -278.60570 219.94469 C
-279.90170 219.94469 L
-279.82970 219.36869 -279.75770 219.22469 -279.61370 218.86469 C
-279.18170 217.78469 -278.10170 217.20869 -276.58970 217.20869 C
-274.50170 217.20869 -273.13370 218.57669 -273.13370 220.66469 C
-273.13370 222.46469 -274.57370 223.83269 -276.37370 223.83269 C
-277.09370 223.83269 -277.66970 223.61669 -278.24570 223.18469 C
-277.88570 225.84869 L
-273.70970 225.84869 L
-273.70970 227.07269 L
-278.82170 227.07269 L
@c
F
@rax %Note: Object
-272.05370 217.20869 -265.28570 227.28869 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-268.66970 227.28869 m
-270.82970 227.28869 -272.05370 225.48869 -272.05370 222.32069 C
-272.05370 219.00869 -270.82970 217.20869 -268.66970 217.20869 C
-266.50970 217.20869 -265.28570 219.00869 -265.28570 222.24869 C
-265.28570 225.48869 -266.50970 227.28869 -268.66970 227.28869 C
-268.66970 227.28869 L
@c
-270.68570 222.53669 m
-270.61370 224.98469 -269.96570 226.20869 -268.66970 226.20869 C
-267.30170 226.20869 -266.65370 224.84069 -266.65370 222.17669 C
-266.65370 219.65669 -267.37370 218.28869 -268.66970 218.28869 C
-270.03770 218.28869 -270.68570 219.65669 -270.68570 222.17669 C
-270.68570 222.32069 -270.68570 222.39269 -270.68570 222.53669 C
-270.68570 222.53669 L
@c
F
@rax %Note: Object
-256.35770 282.51213 382.42630 282.51326 @E
0 J 0 j [] 0 d 0 R 0 @G
0.00 0.00 0.00 1.00 K
0 2.00013 2.00013 90.00000 @w
/$fm 0 def
-256.35770 282.51269 m
-250.09370 282.51269 L
382.42630 282.51269 m
376.09030 282.51269 L
S
@rax %Note: Object
-272.05370 277.61669 -265.28570 287.69669 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-268.66970 287.69669 m
-270.82970 287.69669 -272.05370 285.89669 -272.05370 282.72869 C
-272.05370 279.41669 -270.82970 277.61669 -268.66970 277.61669 C
-266.50970 277.61669 -265.28570 279.41669 -265.28570 282.58469 C
-265.28570 285.89669 -266.50970 287.69669 -268.66970 287.69669 C
-268.66970 287.69669 L
@c
-270.68570 282.94469 m
-270.61370 285.39269 -269.96570 286.54469 -268.66970 286.54469 C
-267.30170 286.54469 -266.65370 285.24869 -266.65370 282.51269 C
-266.65370 280.06469 -267.37370 278.69669 -268.66970 278.69669 C
-270.03770 278.69669 -270.68570 280.06469 -270.68570 282.58469 C
-270.68570 282.72869 -270.68570 282.80069 -270.68570 282.94469 C
-270.68570 282.94469 L
@c
F
@rax %Note: Object
-256.35770 342.99213 382.42630 342.99326 @E
0 J 0 j [] 0 d 0 R 0 @G
0.00 0.00 0.00 1.00 K
0 2.00013 2.00013 90.00000 @w
/$fm 0 def
-256.35770 342.99269 m
-250.09370 342.99269 L
382.42630 342.99269 m
376.09030 342.99269 L
S
@rax %Note: Object
-279.90170 338.09669 -273.13370 347.96069 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-278.82170 347.96069 m
-279.54170 342.70469 L
-278.46170 342.63269 L
-277.88570 343.28069 -277.30970 343.56869 -276.58970 343.56869 C
-275.36570 343.56869 -274.50170 342.70469 -274.50170 341.40869 C
-274.50170 340.04069 -275.36570 339.17669 -276.58970 339.17669 C
-277.74170 339.17669 -278.46170 339.75269 -278.60570 340.83269 C
-279.90170 340.83269 L
-279.82970 340.25669 -279.75770 340.11269 -279.61370 339.75269 C
-279.18170 338.67269 -278.10170 338.09669 -276.58970 338.09669 C
-274.50170 338.09669 -273.13370 339.46469 -273.13370 341.55269 C
-273.13370 343.35269 -274.57370 344.72069 -276.37370 344.72069 C
-277.09370 344.72069 -277.66970 344.50469 -278.24570 344.14469 C
-277.88570 346.73669 L
-273.70970 346.73669 L
-273.70970 347.96069 L
-278.82170 347.96069 L
@c
F
@rax %Note: Object
-272.05370 338.09669 -265.28570 348.17669 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-268.66970 348.17669 m
-270.82970 348.17669 -272.05370 346.37669 -272.05370 343.20869 C
-272.05370 339.89669 -270.82970 338.09669 -268.66970 338.09669 C
-266.50970 338.09669 -265.28570 339.89669 -265.28570 343.13669 C
-265.28570 346.37669 -266.50970 348.17669 -268.66970 348.17669 C
-268.66970 348.17669 L
@c
-270.68570 343.42469 m
-270.61370 345.87269 -269.96570 347.09669 -268.66970 347.09669 C
-267.30170 347.09669 -266.65370 345.72869 -266.65370 343.06469 C
-266.65370 340.54469 -267.37370 339.17669 -268.66970 339.17669 C
-270.03770 339.17669 -270.68570 340.54469 -270.68570 343.13669 C
-270.68570 343.20869 -270.68570 343.35269 -270.68570 343.42469 C
-270.68570 343.42469 L
@c
F
@rax %Note: Object
-256.35770 403.40013 382.42630 403.40126 @E
0 J 0 j [] 0 d 0 R 0 @G
0.00 0.00 0.00 1.00 K
0 2.00013 2.00013 90.00000 @w
/$fm 0 def
-256.35770 403.40069 m
-250.09370 403.40069 L
382.42630 403.40069 m
376.09030 403.40069 L
S
@rax %Note: Object
-286.74170 398.79269 -283.06970 408.58469 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-283.06970 408.58469 m
-284.07770 408.58469 L
-284.22170 407.93669 -284.43770 407.57669 -284.65370 407.36069 C
-285.08570 406.92869 -285.66170 406.78469 -286.74170 406.71269 C
-286.74170 405.77669 L
-284.43770 405.77669 L
-284.43770 398.79269 L
-283.06970 398.79269 L
-283.06970 408.58469 L
@c
F
@rax %Note: Object
-279.82970 398.50469 -273.06170 408.58469 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-276.44570 408.58469 m
-278.60570 408.58469 -279.82970 406.78469 -279.82970 403.61669 C
-279.82970 400.30469 -278.60570 398.50469 -276.44570 398.50469 C
-274.28570 398.50469 -273.06170 400.30469 -273.06170 403.54469 C
-273.06170 406.78469 -274.28570 408.58469 -276.44570 408.58469 C
-276.44570 408.58469 L
@c
-278.53370 403.83269 m
-278.46170 406.28069 -277.74170 407.50469 -276.44570 407.50469 C
-275.07770 407.50469 -274.42970 406.13669 -274.42970 403.47269 C
-274.42970 400.95269 -275.14970 399.58469 -276.44570 399.58469 C
-277.81370 399.58469 -278.53370 400.95269 -278.53370 403.47269 C
-278.53370 403.61669 -278.53370 403.76069 -278.53370 403.83269 C
-278.53370 403.83269 L
@c
F
@rax %Note: Object
-272.05370 398.50469 -265.28570 408.58469 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-268.66970 408.58469 m
-270.82970 408.58469 -272.05370 406.78469 -272.05370 403.61669 C
-272.05370 400.30469 -270.82970 398.50469 -268.66970 398.50469 C
-266.50970 398.50469 -265.28570 400.30469 -265.28570 403.54469 C
-265.28570 406.78469 -266.50970 408.58469 -268.66970 408.58469 C
-268.66970 408.58469 L
@c
-270.68570 403.83269 m
-270.61370 406.28069 -269.96570 407.50469 -268.66970 407.50469 C
-267.30170 407.50469 -266.65370 406.13669 -266.65370 403.47269 C
-266.65370 400.95269 -267.37370 399.58469 -268.66970 399.58469 C
-270.03770 399.58469 -270.68570 400.95269 -270.68570 403.47269 C
-270.68570 403.61669 -270.68570 403.76069 -270.68570 403.83269 C
-270.68570 403.83269 L
@c
F
@rax %Note: Object
-256.35770 463.80813 382.42630 463.80926 @E
0 J 0 j [] 0 d 0 R 0 @G
0.00 0.00 0.00 1.00 K
0 2.00013 2.00013 90.00000 @w
/$fm 0 def
-256.35770 463.80869 m
-250.09370 463.80869 L
382.42630 463.80869 m
376.09030 463.80869 L
S
@rax %Note: Object
-286.74170 459.12869 -283.06970 468.99269 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-283.06970 468.99269 m
-284.07770 468.99269 L
-284.22170 468.34469 -284.43770 467.98469 -284.65370 467.69669 C
-285.08570 467.33669 -285.66170 467.12069 -286.74170 467.12069 C
-286.74170 466.11269 L
-284.43770 466.11269 L
-284.43770 459.12869 L
-283.06970 459.12869 L
-283.06970 468.99269 L
@c
F
@rax %Note: Object
-279.90170 458.91269 -273.13370 468.77669 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-278.82170 468.77669 m
-279.54170 463.52069 L
-278.46170 463.44869 L
-277.88570 464.09669 -277.30970 464.38469 -276.58970 464.38469 C
-275.36570 464.38469 -274.50170 463.52069 -274.50170 462.22469 C
-274.50170 460.85669 -275.36570 459.92069 -276.58970 459.92069 C
-277.74170 459.92069 -278.46170 460.56869 -278.60570 461.64869 C
-279.90170 461.64869 L
-279.82970 461.07269 -279.75770 460.92869 -279.61370 460.56869 C
-279.18170 459.48869 -278.10170 458.91269 -276.58970 458.91269 C
-274.50170 458.91269 -273.13370 460.28069 -273.13370 462.36869 C
-273.13370 464.16869 -274.57370 465.46469 -276.37370 465.46469 C
-277.09370 465.46469 -277.66970 465.32069 -278.24570 464.88869 C
-277.88570 467.55269 L
-273.70970 467.55269 L
-273.70970 468.77669 L
-278.82170 468.77669 L
@c
F
@rax %Note: Object
-272.05370 458.91269 -265.28570 468.99269 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-268.66970 468.99269 m
-270.82970 468.99269 -272.05370 467.19269 -272.05370 464.02469 C
-272.05370 460.71269 -270.82970 458.91269 -268.66970 458.91269 C
-266.50970 458.91269 -265.28570 460.71269 -265.28570 463.95269 C
-265.28570 467.19269 -266.50970 468.99269 -268.66970 468.99269 C
-268.66970 468.99269 L
@c
-270.68570 464.24069 m
-270.61370 466.68869 -269.96570 467.91269 -268.66970 467.91269 C
-267.30170 467.91269 -266.65370 466.54469 -266.65370 463.88069 C
-266.65370 461.36069 -267.37370 459.99269 -268.66970 459.99269 C
-270.03770 459.99269 -270.68570 461.36069 -270.68570 463.88069 C
-270.68570 464.02469 -270.68570 464.09669 -270.68570 464.24069 C
-270.68570 464.24069 L
@c
F
@rax %Note: Object
-256.35770 524.21613 382.42630 524.21726 @E
0 J 0 j [] 0 d 0 R 0 @G
0.00 0.00 0.00 1.00 K
0 2.00013 2.00013 90.00000 @w
/$fm 0 def
-256.35770 524.21669 m
-250.09370 524.21669 L
382.42630 524.21669 m
376.09030 524.21669 L
S
@rax %Note: Object
-287.74970 519.53669 -281.05370 529.40069 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-286.38170 520.76069 m
-286.30970 521.12069 -286.23770 521.26469 -285.94970 521.62469 C
-285.80570 521.76869 -285.66170 521.91269 -285.51770 522.05669 C
-285.15770 522.34469 -284.79770 522.56069 -283.71770 523.13669 C
-282.63770 523.71269 -282.13370 524.07269 -281.70170 524.50469 C
-281.26970 525.08069 -281.05370 525.72869 -281.05370 526.44869 C
-281.05370 528.17669 -282.27770 529.40069 -284.14970 529.40069 C
-285.44570 529.40069 -286.45370 528.89669 -287.02970 528.03269 C
-287.31770 527.52869 -287.46170 526.88069 -287.53370 525.87269 C
-286.30970 525.87269 L
-286.23770 526.08869 L
-286.16570 526.80869 -286.09370 527.16869 -285.87770 527.52869 C
-285.51770 528.03269 -285.01370 528.24869 -284.29370 528.24869 C
-283.14170 528.24869 -282.34970 527.60069 -282.34970 526.44869 C
-282.34970 525.65669 -282.70970 525.08069 -283.64570 524.50469 C
-285.73370 523.28069 L
-286.23770 522.99269 -286.81370 522.41669 -287.10170 521.91269 C
-287.60570 521.12069 -287.74970 520.76069 -287.74970 519.53669 C
-281.05370 519.53669 L
-281.05370 520.76069 L
-286.38170 520.76069 L
@c
F
@rax %Note: Object
-279.82970 519.32069 -273.06170 529.40069 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-276.44570 529.40069 m
-278.60570 529.40069 -279.82970 527.60069 -279.82970 524.43269 C
-279.82970 521.12069 -278.60570 519.32069 -276.44570 519.32069 C
-274.28570 519.32069 -273.06170 521.12069 -273.06170 524.28869 C
-273.06170 527.60069 -274.28570 529.40069 -276.44570 529.40069 C
-276.44570 529.40069 L
@c
-278.53370 524.64869 m
-278.46170 527.09669 -277.74170 528.24869 -276.44570 528.24869 C
-275.07770 528.24869 -274.42970 526.95269 -274.42970 524.21669 C
-274.42970 521.76869 -275.14970 520.40069 -276.44570 520.40069 C
-277.81370 520.40069 -278.53370 521.76869 -278.53370 524.28869 C
-278.53370 524.43269 -278.53370 524.50469 -278.53370 524.64869 C
-278.53370 524.64869 L
@c
F
@rax %Note: Object
-272.05370 519.32069 -265.28570 529.40069 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-268.66970 529.40069 m
-270.82970 529.40069 -272.05370 527.60069 -272.05370 524.43269 C
-272.05370 521.12069 -270.82970 519.32069 -268.66970 519.32069 C
-266.50970 519.32069 -265.28570 521.12069 -265.28570 524.28869 C
-265.28570 527.60069 -266.50970 529.40069 -268.66970 529.40069 C
-268.66970 529.40069 L
@c
-270.68570 524.64869 m
-270.61370 527.09669 -269.96570 528.24869 -268.66970 528.24869 C
-267.30170 528.24869 -266.65370 526.95269 -266.65370 524.21669 C
-266.65370 521.76869 -267.37370 520.40069 -268.66970 520.40069 C
-270.03770 520.40069 -270.68570 521.76869 -270.68570 524.28869 C
-270.68570 524.43269 -270.68570 524.50469 -270.68570 524.64869 C
-270.68570 524.64869 L
@c
F
@rax %Note: Object
-256.35827 77.09669 -256.35713 536.31269 @E
0 J 0 j [] 0 d 0 R 0 @G
0.00 0.00 0.00 1.00 K
0 2.00013 2.00013 90.00000 @w
/$fm 0 def
-256.35770 77.09669 m
-256.35770 83.43269 L
-256.35770 536.31269 m
-256.35770 530.04869 L
S
@rax %Note: Object
-259.74170 58.16069 -252.97370 68.31269 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-256.42970 68.31269 m
-258.51770 68.31269 -259.74170 66.44069 -259.74170 63.27269 C
-259.74170 60.03269 -258.58970 58.16069 -256.35770 58.16069 C
-254.19770 58.16069 -252.97370 60.03269 -252.97370 63.20069 C
-252.97370 66.51269 -254.19770 68.31269 -256.42970 68.31269 C
-256.42970 68.31269 L
@c
-258.44570 63.56069 m
-258.37370 66.00869 -257.65370 67.16069 -256.35770 67.16069 C
-254.98970 67.16069 -254.34170 65.86469 -254.34170 63.12869 C
-254.34170 60.68069 -255.06170 59.31269 -256.42970 59.31269 C
-257.72570 59.31269 -258.44570 60.68069 -258.44570 63.20069 C
-258.44570 63.34469 -258.44570 63.41669 -258.44570 63.56069 C
-258.44570 63.56069 L
@c
F
@rax %Note: Object
-146.27027 77.09669 -146.26913 536.31269 @E
0 J 0 j [] 0 d 0 R 0 @G
0.00 0.00 0.00 1.00 K
0 2.00013 2.00013 90.00000 @w
/$fm 0 def
-146.26970 77.09669 m
-146.26970 83.43269 L
-146.26970 536.31269 m
-146.26970 530.04869 L
S
@rax %Note: Object
-153.61370 58.16069 -146.84570 68.09669 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-152.53370 68.09669 m
-153.25370 62.84069 L
-152.17370 62.76869 L
-151.59770 63.41669 -151.02170 63.70469 -150.37370 63.70469 C
-149.07770 63.70469 -148.21370 62.76869 -148.21370 61.54469 C
-148.21370 60.17669 -149.07770 59.24069 -150.37370 59.24069 C
-151.45370 59.24069 -152.17370 59.88869 -152.31770 60.89669 C
-153.61370 60.89669 L
-153.54170 60.39269 -153.46970 60.17669 -153.32570 59.81669 C
-152.89370 58.73669 -151.81370 58.16069 -150.30170 58.16069 C
-148.21370 58.16069 -146.84570 59.52869 -146.84570 61.68869 C
-146.84570 63.48869 -148.28570 64.78469 -150.08570 64.78469 C
-150.80570 64.78469 -151.38170 64.64069 -151.95770 64.20869 C
-151.59770 66.87269 L
-147.42170 66.87269 L
-147.42170 68.09669 L
-152.53370 68.09669 L
@c
F
@rax %Note: Object
-145.76570 58.16069 -138.99770 68.31269 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-142.38170 68.31269 m
-144.54170 68.31269 -145.76570 66.44069 -145.76570 63.27269 C
-145.76570 60.03269 -144.54170 58.16069 -142.38170 58.16069 C
-140.22170 58.16069 -138.99770 60.03269 -138.99770 63.20069 C
-138.99770 66.51269 -140.22170 68.31269 -142.38170 68.31269 C
-142.38170 68.31269 L
@c
-144.39770 63.56069 m
-144.39770 66.00869 -143.67770 67.16069 -142.38170 67.16069 C
-141.01370 67.16069 -140.36570 65.86469 -140.36570 63.12869 C
-140.36570 60.68069 -141.08570 59.31269 -142.38170 59.31269 C
-143.74970 59.31269 -144.39770 60.68069 -144.39770 63.20069 C
-144.39770 63.34469 -144.39770 63.41669 -144.39770 63.56069 C
-144.39770 63.56069 L
@c
F
@rax %Note: Object
-36.11027 77.09669 -36.10913 536.31269 @E
0 J 0 j [] 0 d 0 R 0 @G
0.00 0.00 0.00 1.00 K
0 2.00013 2.00013 90.00000 @w
/$fm 0 def
-36.10970 77.09669 m
-36.10970 83.43269 L
-36.10970 536.31269 m
-36.10970 530.04869 L
S
@rax %Note: Object
-46.33370 58.44869 -42.73370 68.31269 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-42.73370 68.31269 m
-43.74170 68.31269 L
-43.88570 67.66469 -44.02970 67.30469 -44.31770 67.01669 C
-44.67770 66.65669 -45.32570 66.44069 -46.33370 66.44069 C
-46.33370 65.43269 L
-44.02970 65.43269 L
-44.02970 58.44869 L
-42.73370 58.44869 L
-42.73370 68.31269 L
@c
F
@rax %Note: Object
-39.42170 58.16069 -32.72570 68.31269 @E
0 O 0 @g
0.00 0.00 0.00 1.00 k
/$fm 0 def
-36.10970 68.31269 m
-38.19770 68.31269 -39.42170 66.44069 -39.42170 63.27269 C
-39.42170 60.03269 -38.26970 58.16069 -36.10970 58.16069 C
-33.94970 58.16069 -32.72570 60.03269 -32.72570 63.20069 C
-32.72570 66.51269 -33.94970 68.31269 -36.10970 68.31269 C
-36.10970 68.31269 L
@c
-38.12570 63.56069 m
-38.05370 66.00869 -37.40570 67.16069 -36.10970 67.16069 C
-34.74170 67.16069 -34.02170 65.86469 -34.02170 63.12869 C
-34.02170 60.68069 -34.74170 59.31269 -36.10970 59.31269 C
-37.40570 59.31269 -38.12570 60.68069 -38.12570 63.20069 C
-38.12570 63.34469 -38.12570 63.41669 -38.12570 63.56069 C
-38.12570 63.56069 L
@c
F