forked from berndporr/digital_signal_processing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrequency_response.eps
More file actions
3204 lines (3101 loc) · 132 KB
/
frequency_response.eps
File metadata and controls
3204 lines (3101 loc) · 132 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: 79 112 739 503
%%LanguageLevel: 1
%%Creator: CorelDRAW
%%Title: frequency_response.eps
%%CreationDate: Mon Jun 29 10:45:13 2009
%%DocumentProcessColors: Black
%%DocumentSuppliedResources: (atend)
%%EndComments
%%BeginProlog
/AutoFlatness false def
/AutoSteps 0 def
/CMYKMarks true def
/UseLevel 1 def
%Build: CorelDRAW Version 13.0.0.739
%Color profile: Generic offset separations profile
/CorelIsEPS true def
%%BeginResource: procset wCorel3Dict 3.0 0
/wCorel3Dict 300 dict def wCorel3Dict begin
% Copyright (c)1992-2005 Corel Corporation
% All rights reserved. v13 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/fill_color 6 array def/num_fill_inks 1 def/$o 0 def/$fil 0 def
/outl_color 6 array def/num_outl_inks 1 def/$O 0 def/$PF false def/$bkg false
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
/get_ps_level/languagelevel where{pop systemdict/languagelevel get exec}{1
}ifelse def/level2 get_ps_level 2 ge def/level3 get_ps_level 3 ge def
/is_distilling{/product where{pop systemdict/setdistillerparams known product
(Adobe PostScript Parser)ne and}{false}ifelse}bd/is_rip_separation{
is_distilling{false}{level2{currentpagedevice/Separations 2 copy known{get}{
pop pop false}ifelse}{false}ifelse}ifelse}bd/is_current_sep_color{
is_separation{gsave false setoverprint 1 1 1 1 5 -1 roll findcmykcustomcolor 1
setcustomcolor currentgray 0 eq grestore}{pop false}ifelse}bd
/get_sep_color_index{dup length 1 sub 0 1 3 -1 roll{dup 3 -1 roll dup 3 -1 roll
get is_current_sep_color{exit}{exch pop}ifelse}for pop -1}bd/is_separation{
/LumSepsDict where{pop false}{/AldusSepsDict where{pop false}{
is_rip_separation{true}{1 0 0 0 gsave setcmykcolor currentcmykcolor grestore
add add add 0 ne 0 1 0 0 gsave setcmykcolor currentcmykcolor grestore add add
add 0 ne 0 0 1 0 gsave setcmykcolor currentcmykcolor grestore add add add 0 ne
0 0 0 1 gsave setcmykcolor currentcmykcolor grestore add add add 0 ne and and
and not}ifelse}ifelse}ifelse}bind def/is_composite{is_separation not
is_distilling or}bd/is_sim_devicen{level2 level3 not and{is_distilling
is_rip_separation or}{false}ifelse}bd/@PL{/LV where{pop LV 2 ge level2 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 level2{/@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 0 0 0 1 null 1 set_fill_color/$fil 0 def}bd/G{1 sub
neg 0 0 0 1 null 1 set_outline_color}bd/set_fill_color{/fill_color exch def
/num_fill_inks fill_color length 6 idiv def/bFillDeviceN num_fill_inks 1 gt def
/$fil 0 def}bd/set_outline_color{/outl_color exch def/num_outl_inks outl_color
length 6 idiv def/bOutlDeviceN num_outl_inks 1 gt def}bd
/get_devicen_color_names{dup length 6 idiv dup 5 mul exch getinterval}bd
/create_colorarray_from_devicen_params{/ink_names_temp exch def
/tint_params_temp exch def/ink_values_temp exch def[ink_values_temp aload pop
tint_params_temp aload pop ink_names_temp aload pop]}bd
/get_devicen_color_specs{dup length 6 idiv dup 4 mul getinterval}bd
/get_devicen_color{dup length 6 idiv 0 exch getinterval}bd/mult_devicen_color{
/colorarray exch def/mult_vals exch def 0 1 mult_vals length 1 sub{colorarray
exch dup mult_vals exch get exch dup colorarray exch get 3 -1 roll mul put}for
colorarray}bd/combine_devicen_colors{/colorarray2 exch def/colorarray1 exch def
/num_inks1 colorarray1 length 6 idiv def/num_inks2 colorarray2 length 6 idiv
def/num3 0 def/colorarray3[num_inks1 num_inks2 add 6 mul{0}repeat]def 0 1
num_inks1 1 sub{colorarray1 exch get colorarray3 num3 3 -1 roll put/num3 num3 1
add def}for 0 1 num_inks2 1 sub{colorarray2 exch get colorarray3 num3 3 -1 roll
put/num3 num3 1 add def}for colorarray1 num_inks1 dup 4 mul getinterval
colorarray3 num3 3 -1 roll putinterval/num3 num3 num_inks1 4 mul add def
colorarray2 num_inks2 dup 4 mul getinterval colorarray3 num3 3 -1 roll
putinterval/num3 num3 num_inks2 4 mul add def colorarray1 num_inks1 dup 5 mul
exch getinterval colorarray3 num3 3 -1 roll putinterval/num3 num3 num_inks1 add
def colorarray2 num_inks2 dup 5 mul exch getinterval colorarray3 num3 3 -1 roll
putinterval/num3 num3 num_inks2 add def colorarray3}bd/get_devicen_color_spec{
/colorant_index exch def/colorarray exch def/ncolorants colorarray length 6
idiv def[colorarray colorant_index get colorarray ncolorants colorant_index 4
mul add 4 getinterval aload pop colorarray ncolorants 5 mul colorant_index add
get]}bd/set_devicen_color{level3{/colorarray exch def/numcolorants colorarray
length 6 idiv def colorarray get_devicen_color_specs/tint_params exch def[
/DeviceN colorarray get_devicen_color_names/DeviceCMYK{tint_params
CorelTintTransformFunction}]setcolorspace colorarray get_devicen_color aload
pop setcolor}{/DeviceCMYK setcolorspace devicen_to_cmyk aload pop pop @tc_5
setprocesscolor_5}ifelse}bd/sf{/bmp_fill_fg_color 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/devicen_to_cmyk{/convertcolor exch def convertcolor
get_devicen_color aload pop convertcolor get_devicen_color_specs
CorelTintTransformFunction}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}{SepsColor not{4 1 roll pop pop pop
1 exch sub SetGry}{SetCmyk_5}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}{dup(CorelRegistrationColor)eq{5 rp 1 exch sub
setregcolor}{findcmykcustomcolor exch setcustomcolor}ifelse}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 null 6 array astore currentoverprint set_current_color/$ffpnt xd}bd
/currentcmykcolor{GetCmyk}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
/WaldoColor_13 where{pop}{/separate_color{SepMode_5 0 ne{[exch/colorarray_sep
exch def/ink_num -1 def colorarray_sep length 6 idiv 1 gt{colorarray_sep
get_devicen_color_names dup length 1 sub 0 1 3 -1 roll{exch dup 3 -1 roll dup 3
1 roll get CurrentInkName_5 eq{/ink_num exch def}{pop}ifelse}for pop ink_num -1
ne{colorarray_sep ink_num get_devicen_color_spec aload pop pop SepsColor not{
pop pop pop pop 1 0 0 0 5 -1 roll}if null}{0 0 0 0 0 null}ifelse}{
colorarray_sep 5 get $ink_5 4 eq{CurrentInkName_5 eq{colorarray_sep aload pop
pop SepsColor not{pop pop pop pop 0 0 0 1}if null}{0 0 0 0 0 null}ifelse}{
colorarray_sep 0 get colorarray_sep $ink_5 1 add get 3 -1 roll null eq{0 0 0 4
-1 roll SepsColor{4 $ink_5 1 add roll}if null}{pop pop 0 0 0 0 0 null}ifelse
}ifelse}ifelse]}if}bd/separate_cmyk_color{$ink_5 -1 ne{[exch aload pop 3 $ink5
sub index/colorarray_sep exch def/ink_num -1 def colorarray_sep
get_devicen_color_names dup length 1 sub 0 1 3 -1 roll{exch dup 3 -1 roll dup 3
1 roll get CurrentInkName_5 eq{/ink_num exch def}{pop}ifelse}for pop ink_num -1
ne{[colorarray_sep ink_num get_devicen_color_spec aload pop]}{[0 0 0 0 0 null]
}ifelse}if}bd/set_current_color{dup type/booleantype eq{dup currentoverprint ne
{setoverprint}{pop}ifelse}{1 eq setoverprint}ifelse/cur_color exch def
/nNumColors cur_color length 6 idiv def nNumColors 1 eq{cur_color 5 get
(CorelRegistrationColor)eq{cur_color aload pop 5 rp 1 exch sub setregcolor}{
SepMode_5 0 eq{cur_color aload pop dup null eq{pop @tc_5 setprocesscolor_5}{
findcmykcustomcolor exch setcustomcolor}ifelse}{cur_color separate_color aload
pop pop @tc_5 setprocesscolor_5}ifelse}ifelse}{SepMode_5 0 eq{is_distilling
is_rip_separation or{cur_color set_devicen_color}{cur_color devicen_to_cmyk
setprocesscolor_5}ifelse}{cur_color separate_color aload pop pop @tc_5
setprocesscolor_5}ifelse}ifelse SepMode_5 0 eq{true}{GetGry 1 eq
currentoverprint and not}ifelse}bd}ifelse/WaldoColor_13 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 fill_color $o set_current_color 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}{level3{fill_color $o
set_current_color{wfill}{@np}ifelse}{/overprint_flag $o def is_distilling
is_rip_separation or{0 1 num_fill_inks 1 sub{dup 0 gt{/overprint_flag true def
}if fill_color exch get_devicen_color_spec overprint_flag set_current_color{
@gs wfill @gr}{@np exit}ifelse}for}{fill_color overprint_flag set_current_color
{@gs wfill @gr}{@np}ifelse}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 level3{outl_color $O set_current_color{matrix
currentmatrix $ptm concat stroke setmatrix}{@np}ifelse}{/overprint_flag $O def
is_distilling is_rip_separation or{0 1 num_outl_inks 1 sub{dup 0 gt{
/overprint_flag true def}if outl_color exch get_devicen_color_spec
overprint_flag set_current_color{matrix currentmatrix $ptm concat @gs stroke
@gr setmatrix}{@np exit}ifelse}for}{outl_color overprint_flag set_current_color
{matrix currentmatrix $ptm concat @gs stroke @gr setmatrix}{@np}ifelse}ifelse
}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 level2{/setregcolor{/neg_flag exch def[/Separation/All/DeviceCMYK{
dup dup dup}]setcolorspace 1.0 neg_flag sub setcolor}bd}{/setregcolor{1 exch
sub dup dup dup setcmykcolor}bd}ifelse/CorelTintTransformFunction{
/colorantSpecArray exch def/nColorants colorantSpecArray length 4 idiv def
/inColor nColorants 1 add 1 roll nColorants array astore def/outColor 4 array
def 0 1 3{/nOutInk exch def 1 0 1 nColorants 1 sub{dup inColor exch get exch 4
mul nOutInk add colorantSpecArray exch get mul 1 exch sub mul}for 1 exch sub
outColor nOutInk 3 -1 roll put}for outColor aload pop}bind def
% Copyright (c)1992-2005 Corel Corporation
% All rights reserved. v13 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}{fill_color $o
set_current_color{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 outl_color $O set_current_color{{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-2005 Corel Corporation
% All rights reserved. v13 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{bmp_fill_fg_color $O set_current_color/$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{fill_color set_current_color 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
]/$dat $wid $bts mul $ncl mul 8 div ceiling cvi string def $msimage false eq
$ncl 1 eq or{/@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/bImgDeviceN false def/nNumInksDeviceN 0 def
/sNamesDeviceN[]def/tint_params[]def level2{/@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}{COMP 3 eq{/LZWDecode
filter}if}ifelse}ifelse def currentdict end image $SDF{$dsf $dsa $dsp @ss}if
@gr $ctm setmatrix}bd}{/@I_2{}bd}ifelse level2{/@I_2D{@sm @gs @ii @np/$ury xd
/$urx xd/$lly xd/$llx xd/$ncl xd/$bts xd/$hei xd/$wid xd $ngx/scanline $wid
$bts mul $ncl mul 8 div ceiling cvi string def/readscanline{currentfile
scanline readhexstring pop}bind def level3{[/DeviceN sNamesDeviceN/DeviceCMYK{
tint_params CorelTintTransformFunction}]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[nNumInksDeviceN{0 1}repeat]def
/ImageMatrix[$wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse]def/DataSource{
readscanline}def currentdict end image}{/scanline_height $lly $ury sub 1 sub
$hei div def/plate_scanline $wid string def/cmyk_scanline $wid 4 mul string def
is_distilling is_rip_separation or{/bSimDeviceN true def}{/bSimDeviceN false
def}ifelse/scanline_img_dict 8 dict begin/ImageType 1 def/Width $wid def
/Height 1 def/BitsPerComponent $bts def/Decode bSimDeviceN{[0 1]}{[0 1 0 1 0 1
0 1]}ifelse def/ImageMatrix[$wid 0 0 1 neg 0 1]def/DataSource bSimDeviceN{
plate_scanline}{cmyk_scanline}ifelse def currentdict end def 0 1 $hei 1 sub{
@gs/nScanIndex exch def readscanline pop/$t_lly $ury $lly scanline_height
nScanIndex mul sub sub ceiling cvi def/$t_ury $t_lly scanline_height sub
ceiling cvi def bSimDeviceN{0 1 $ncl 1 sub{@gs/nInkIndex exch def 0 1
plate_scanline length 1 sub{dup $ncl mul nInkIndex add scanline exch get
plate_scanline 3 1 roll put}for[0 1 $ncl 1 sub{nInkIndex eq{1.0}{0.0}ifelse
}for]/sepTintTransformParams exch def[/Separation sNamesDeviceN nInkIndex get
/DeviceCMYK{sepTintTransformParams aload pop tint_params
CorelTintTransformFunction @tc_5}]setcolorspace $llx $t_lly Tl $urx $llx sub
$t_ury $t_lly sub scale nInkIndex 0 eq currentoverprint not and{false
setoverprint}{true setoverprint}ifelse scanline_img_dict image @gr}for}{0 1
$wid 1 sub{dup $ncl mul scanline exch $ncl getinterval 0 1 $ncl 1 sub{2 copy
get 255 div 3 1 roll pop}for pop tint_params CorelTintTransformFunction 5 -1
roll cmyk_scanline exch 0 1 3{3 1 roll 2 copy 5 -1 roll dup 8 exch sub index
255 mul cvi 3 1 roll exch 4 mul add exch put}for 6 rp}for/DeviceCMYK
setcolorspace $llx $t_lly Tl $urx $llx sub $t_ury $t_lly sub scale
scanline_img_dict image}ifelse @gr}for}ifelse $SDF{$dsf $dsa $dsp @ss}if @gr
$ctm setmatrix}bd}{/@I_2D{}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 bImgDeviceN{[/DeviceN sNamesDeviceN/DeviceCMYK{
tint_params CorelTintTransformFunction}]}{$ncl 1 eq{/DeviceGray}{$ncl 3 eq
{/DeviceRGB}{/DeviceCMYK}ifelse}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{0 1}repeat]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}{COMP 3 eq{/LZWDecode filter}if}
ifelse}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 bImgDeviceN{@I_2D}{@I_2}ifelse}{11 index 1 eq{12 -1 roll pop @i}{
7 -2 roll pop pop @I}ifelse}ifelse}ifelse}bd/disable_raster_output{/@BMP load
/old_raster_func exch bind def/@BMP{8 rp/$ury xd/$urx xd/$lly xd/$llx xd/$ncl
xd/$bts xd/$hei xd/$wid xd/scanline $wid $bts mul $ncl mul 8 div ceiling cvi
string def 0 1 $hei 1 sub{currentfile scanline readhexstring pop pop pop}for
}def}bd/enable_raster_output{/old_raster_func where{pop/old_raster_func load
/@BMP exch bd}if}bd
end
%%EndResource
%%EndProlog
%%BeginSetup
wCorel3Dict begin
@BeginSysCorelDict
1.00 setflat
/$fst 128 def
%%EndSetup
%%Page: 1 1
%%ViewingOrientation: 0 1 1 0
%LogicalPage: 1
%%BeginPageSetup
@sv
@sm
@sv
%%EndPageSetup
@rax %Note: Object
177.69487 265.58561 177.69600 460.19962 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 1.99984 1.99984 0.00000 @w
177.69543 451.55367 m
177.69543 265.58561 L
S
@j
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
0 @g
0 @G
[] 0 d 0 J 0 j
0 R 0 O
0 1.99219 1.99219 0 @w
182.90296 450.73276 m
177.69543 460.19962 L
172.48791 450.73276 L
182.90296 450.73276 L
f
@J
@rax %Note: Object
555.62145 262.02586 555.62258 456.63987 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 1.99984 1.99984 0.00000 @w
555.62202 447.99392 m
555.62202 262.02586 L
S
@j
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
0 @g
0 @G
[] 0 d 0 J 0 j
0 R 0 O
0 1.99219 1.99219 0 @w
560.82954 447.17301 m
555.62202 456.63987 L
550.41449 447.17301 L
560.82954 447.17301 L
f
@J
@rax %Note: Object
82.76882 362.89928 330.76460 362.90041 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 1.99984 1.99984 0.00000 @w
82.76882 362.89984 m
322.08406 362.89984 L
S
@j
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
0 @g
0 @G
[] 0 d 0 J 0 j
0 R 0 O
0 2.00013 2.00013 0 @w
321.26003 368.12806 m
330.76460 362.89984 L
321.26003 357.67162 L
321.26003 368.12806 L
f
@J
@rax %Note: Object
82.76882 132.70224 330.76460 132.70337 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 1.99984 1.99984 0.00000 @w
82.76882 132.70280 m
322.08406 132.70280 L
S
@j
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
0 @g
0 @G
[] 0 d 0 J 0 j
0 R 0 O
0 2.00013 2.00013 0 @w
321.26003 137.93102 m
330.76460 132.70280 L
321.26003 127.47458 L
321.26003 137.93102 L
f
@J
@rax %Note: Object
461.88198 132.70224 738.94904 132.70337 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 1.99984 1.99984 0.00000 @w
461.88198 132.70280 m
730.26850 132.70280 L
S
@j
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
0 @g
0 @G
[] 0 d 0 J 0 j
0 R 0 O
0 2.00013 2.00013 0 @w
729.44447 137.93102 m
738.94904 132.70280 L
729.44447 127.47458 L
729.44447 137.93102 L
f
@J
@rax %Note: Object
460.69540 359.33953 708.69118 359.34066 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 1.99984 1.99984 0.00000 @w
460.69540 359.34009 m
700.01065 359.34009 L
S
@j
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
0 @g
0 @G
[] 0 d 0 J 0 j
0 R 0 O
0 2.00013 2.00013 0 @w
699.18661 364.56831 m
708.69118 359.34009 L
699.18661 354.11187 L
699.18661 364.56831 L
f
@J
@rax %Note: Object
193.12044 269.15981 193.12157 447.14721 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 3.99997 3.99997 0.00000 @w
193.12101 269.15981 m
193.12101 429.78614 L
S
@j
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
0 @g
0 @G
[] 0 d 0 J 0 j
0 R 0 O
0 4.00025 4.00025 0 @w
182.66428 428.13808 m
193.12101 447.14721 L
203.57773 428.13808 L
182.66428 428.13808 L
f
@J
@rax %Note: Object
497.47946 302.97005 613.76457 415.69540 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 3.99997 3.99997 0.00000 @w
555.62202 415.69540 m
587.72778 415.69540 613.76457 390.45572 613.76457 359.33272 c
613.76457 328.20973 587.72778 302.97005 555.62202 302.97005 c
523.51625 302.97005 497.47946 328.20973 497.47946 359.33272 c
497.47946 390.45572 523.51625 415.69540 555.62202 415.69540 c
@c
S
@rax %Note: Object
593.16831 387.10772 607.40731 403.71987 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 3.99997 3.99997 0.00000 @w
604.43631 390.57392 m
607.40731 387.10772 L
S
@j
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
0 @g
0 @G
[] 0 d 0 J 0 j
0 R 0 O
0 3.98948 3.98948 0 @w
613.42384 396.11254 m
593.16831 403.71987 L
597.58809 382.53912 L
613.42384 396.11254 L
f
@J
@rax %Note: Object
218.73770 369.72113 326.50611 467.61732 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
228.83783 454.44529 m
231.01767 454.17742 L
230.67383 452.90126 230.03773 451.91339 229.10967 451.20926 c
228.17764 450.50939 226.98964 450.15732 225.54567 450.15732 c
223.72583 450.15732 222.28157 450.71745 221.21773 451.83742 c
220.14964 452.95739 219.61757 454.52948 219.61757 456.55342 c
219.61757 458.64935 220.15757 460.27332 221.23361 461.42929 c
222.31361 462.58554 223.70967 463.16551 225.42973 463.16551 c
227.09367 463.16551 228.45373 462.59745 229.50567 461.46529 c
230.56186 460.33342 231.08967 458.73751 231.08967 456.68551 c
231.08967 456.55739 231.08570 456.36945 231.07776 456.12142 C
221.79770 456.12142 L
221.87367 454.75342 222.26173 453.70545 222.95764 452.98148 c
223.65383 452.25326 224.51783 451.88929 225.55786 451.88929 c
226.32973 451.88929 226.98964 452.09339 227.53786 452.50129 c
228.08580 452.90551 228.51780 453.55351 228.83783 454.44529 C
@c
221.91364 457.85735 m
228.86164 457.85735 L
228.76980 458.90135 228.50164 459.68939 228.06567 460.20954 c
227.39386 461.02139 226.52164 461.42929 225.45383 461.42929 c
224.48580 461.42929 223.66970 461.10529 223.00980 460.45729 c
222.34961 459.80929 221.98564 458.94132 221.91364 457.85735 C
@c
F
@rax %Note: Object
218.73770 369.72113 326.50611 467.61732 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
237.12576 450.43739 m
232.38964 462.88148 L
234.61767 462.88148 L
237.28989 455.42948 l
237.57789 454.62529 237.84180 453.78935 238.08586 452.92139 C
238.27380 453.57732 238.53373 454.36535 238.86992 455.28945 c
241.63767 462.88148 L
243.80589 462.88148 L
239.09386 450.43739 L
237.12576 450.43739 L
@c
F
@rax %Note: Object
218.73770 369.72113 326.50611 467.61732 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
253.79008 451.97348 m
253.00602 451.30932 252.25398 450.84132 251.53398 450.56551 c
250.81002 450.29339 250.03389 450.15732 249.20589 450.15732 c
247.83789 450.15732 246.78992 450.48926 246.05405 451.15739 c
245.32186 451.82551 244.95392 452.68129 244.95392 453.71735 c
244.95392 454.32935 245.08998 454.88551 245.37005 455.38951 c
245.64586 455.89351 246.00983 456.29745 246.45798 456.60132 c
246.90983 456.90548 247.41383 457.13735 247.97792 457.29354 c
248.39008 457.40154 249.01398 457.50954 249.84992 457.60932 c
251.55411 457.81342 252.80986 458.05351 253.61405 458.33754 C
253.62198 458.62554 253.62595 458.80951 253.62595 458.88548 c
253.62595 459.74551 253.42611 460.35354 253.02586 460.70135 c
252.49011 461.18154 251.68592 461.41739 250.62605 461.41739 c
249.63392 461.41739 248.90202 461.24532 248.42608 460.89751 c
247.95383 460.54942 247.60602 459.93345 247.37783 459.04932 C
245.31789 459.33335 L
245.50583 460.21351 245.81395 460.92954 246.24198 461.46954 c
246.67002 462.01351 247.29392 462.43332 248.10605 462.72557 c
248.91789 463.01754 249.85786 463.16551 250.92992 463.16551 c
251.99405 463.16551 252.85408 463.03739 253.51795 462.78935 c
254.18211 462.53735 254.66995 462.22554 254.98602 461.84542 c
255.29811 461.46529 255.51411 460.98935 255.64195 460.40939 c
255.70998 460.04939 255.74598 459.40139 255.74598 458.46539 c
255.74598 455.65342 l
255.74598 453.68929 255.78992 452.44942 255.88205 451.93351 c
255.96992 451.41335 256.14992 450.91332 256.41411 450.43739 C
254.20989 450.43739 L
253.99389 450.87335 253.84989 451.38529 253.79008 451.97348 C
@c
253.61405 456.68551 m
252.84586 456.36945 251.69811 456.10554 250.16995 455.88529 c
249.30198 455.76142 248.68602 455.62139 248.32998 455.46548 c
247.96998 455.30929 247.68992 455.08139 247.49802 454.77751 c
247.30186 454.47732 247.20208 454.14539 247.20208 453.77745 c
247.20208 453.21335 247.41808 452.74535 247.84186 452.36948 c
248.26592 451.99729 248.89011 451.80935 249.70989 451.80935 c
250.52202 451.80935 251.24598 451.98539 251.87811 452.34142 c
252.50995 452.69745 252.97795 453.18529 253.27389 453.80126 c
253.50208 454.27748 253.61405 454.98132 253.61405 455.90939 c
253.61405 456.68551 L
@c
F
@rax %Note: Object
218.73770 369.72113 326.50611 467.61732 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
258.97011 450.43739 m
258.97011 467.61732 L
261.07795 467.61732 L
261.07795 450.43739 L
258.97011 450.43739 L
@c
F
@rax %Note: Object
218.73770 369.72113 326.50611 467.61732 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
272.50611 450.43739 m
272.50611 452.26545 L
271.53411 450.85748 270.21798 450.15732 268.55405 450.15732 c
267.82214 450.15732 267.13389 450.29735 266.49808 450.57742 c
265.86198 450.85748 265.39002 451.21351 265.08189 451.63729 c
264.77008 452.06532 264.55408 452.58548 264.42992 453.20145 c
264.34602 453.61729 264.30208 454.27351 264.30208 455.17351 c
264.30208 462.88148 L
266.40992 462.88148 L
266.40992 455.98139 l
266.40992 454.87729 266.45386 454.13745 266.53805 453.75335 c
266.67411 453.19748 266.95389 452.76548 267.38192 452.44545 c
267.81392 452.12939 268.34598 451.97348 268.97811 451.97348 c
269.60995 451.97348 270.20211 452.13335 270.75798 452.45735 c
271.31414 452.78135 271.70589 453.22526 271.93408 453.78142 c
272.16595 454.34126 272.28189 455.15339 272.28189 456.21354 c
272.28189 462.88148 L
274.39002 462.88148 L
274.39002 450.43739 L
272.50611 450.43739 L
@c
F
@rax %Note: Object
218.73770 369.72113 326.50611 467.61732 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
285.81817 451.97348 m
285.03411 451.30932 284.28208 450.84132 283.56208 450.56551 c
282.83811 450.29339 282.06198 450.15732 281.23398 450.15732 c
279.86598 450.15732 278.81802 450.48926 278.08214 451.15739 c
277.34995 451.82551 276.98202 452.68129 276.98202 453.71735 c
276.98202 454.32935 277.11808 454.88551 277.39814 455.38951 c
277.67395 455.89351 278.03792 456.29745 278.48608 456.60132 c
278.93792 456.90548 279.44192 457.13735 280.00602 457.29354 c
280.41817 457.40154 281.04208 457.50954 281.87802 457.60932 c
283.58220 457.81342 284.83795 458.05351 285.64214 458.33754 C
285.65008 458.62554 285.65405 458.80951 285.65405 458.88548 c
285.65405 459.74551 285.45420 460.35354 285.05395 460.70135 c
284.51820 461.18154 283.71402 461.41739 282.65414 461.41739 c
281.66202 461.41739 280.93011 461.24532 280.45417 460.89751 c
279.98192 460.54942 279.63411 459.93345 279.40592 459.04932 C
277.34598 459.33335 L
277.53392 460.21351 277.84205 460.92954 278.27008 461.46954 c
278.69811 462.01351 279.32202 462.43332 280.13414 462.72557 c
280.94598 463.01754 281.88595 463.16551 282.95802 463.16551 c
284.02214 463.16551 284.88217 463.03739 285.54605 462.78935 c
286.21020 462.53735 286.69805 462.22554 287.01411 461.84542 c
287.32620 461.46529 287.54220 460.98935 287.67005 460.40939 c
287.73808 460.04939 287.77408 459.40139 287.77408 458.46539 c
287.77408 455.65342 l
287.77408 453.68929 287.81802 452.44942 287.91014 451.93351 c
287.99802 451.41335 288.17802 450.91332 288.44220 450.43739 C
286.23798 450.43739 L
286.02198 450.87335 285.87798 451.38529 285.81817 451.97348 C
@c
285.64214 456.68551 m
284.87395 456.36945 283.72620 456.10554 282.19805 455.88529 c
281.33008 455.76142 280.71411 455.62139 280.35808 455.46548 c
279.99808 455.30929 279.71802 455.08139 279.52611 454.77751 c
279.32995 454.47732 279.23017 454.14539 279.23017 453.77745 c
279.23017 453.21335 279.44617 452.74535 279.86995 452.36948 c
280.29402 451.99729 280.91820 451.80935 281.73798 451.80935 c
282.55011 451.80935 283.27408 451.98539 283.90620 452.34142 c
284.53805 452.69745 285.00605 453.18529 285.30198 453.80126 c
285.53017 454.27748 285.64214 454.98132 285.64214 455.90939 c
285.64214 456.68551 L
@c
F
@rax %Note: Object
218.73770 369.72113 326.50611 467.61732 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
295.65014 452.32526 m
295.95402 450.46148 L
295.36214 450.33732 294.83008 450.27326 294.36208 450.27326 c
293.59417 450.27326 293.00202 450.39345 292.57824 450.63751 c
292.15814 450.87732 291.86220 451.19735 291.69014 451.59335 c
291.51808 451.98539 291.43020 452.81735 291.43020 454.08132 c
291.43020 461.24135 L
289.88220 461.24135 L
289.88220 462.88148 L
291.43020 462.88148 L
291.43020 465.96557 L
293.53011 467.22954 L
293.53011 462.88148 L
295.65014 462.88148 L
295.65014 461.24135 L
293.53011 461.24135 L
293.53011 453.96539 l
293.53011 453.36132 293.56611 452.97751 293.63811 452.80545 c
293.71408 452.63339 293.83427 452.49732 294.00208 452.39329 c
294.17017 452.29351 294.41027 452.24135 294.72208 452.24135 c
294.95820 452.24135 295.26605 452.26942 295.65014 452.32526 C
@c
F
@rax %Note: Object
218.73770 369.72113 326.50611 467.61732 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
297.72198 465.18945 m
297.72198 467.61732 L
299.83408 467.61732 L
299.83408 465.18945 L
297.72198 465.18945 L
@c
297.72198 450.43739 m
297.72198 462.88148 L
299.83408 462.88148 L
299.83408 450.43739 L
297.72198 450.43739 L
@c
F
@rax %Note: Object
218.73770 369.72113 326.50611 467.61732 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
302.25798 456.66142 m
302.25798 458.96542 302.89805 460.67329 304.18214 461.78135 c
305.24995 462.70148 306.55417 463.16551 308.09395 463.16551 c
309.80608 463.16551 311.20611 462.60539 312.29008 461.48145 c
313.37802 460.36148 313.91802 458.81348 313.91802 456.83745 c
313.91802 455.23332 313.67820 453.97332 313.19802 453.05745 c
312.71811 452.13732 312.01795 451.42526 311.10208 450.91729 c
310.18195 450.40932 309.18217 450.15732 308.09395 450.15732 c
306.35405 450.15732 304.94608 450.71348 303.87005 451.83345 c
302.79402 452.94945 302.25798 454.55754 302.25798 456.66142 c
@c
304.42592 456.66142 m
304.42592 455.06551 304.77402 453.87326 305.46992 453.08126 c
306.16611 452.28529 307.04202 451.88929 308.09395 451.88929 c
309.14192 451.88929 310.01414 452.28926 310.71005 453.08551 c
311.40198 453.88148 311.75008 455.09754 311.75008 456.72945 c
311.75008 458.26951 311.40198 459.43739 310.70211 460.22939 c
310.00195 461.02139 309.13398 461.41739 308.09395 461.41739 c
307.04202 461.41739 306.16611 461.02139 305.46992 460.23335 c
304.77402 459.44532 304.42592 458.25335 304.42592 456.66142 c
@c
F
@rax %Note: Object
218.73770 369.72113 326.50611 467.61732 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
316.39408 450.43739 m
316.39408 462.88148 L
318.29017 462.88148 L
318.29017 461.11351 L
319.20605 462.48151 320.52614 463.16551 322.25017 463.16551 c
323.00220 463.16551 323.69017 463.02945 324.31805 462.76157 c
324.95017 462.48945 325.41817 462.13739 325.72998 461.69745 c
326.04605 461.26148 326.26205 460.74132 326.39017 460.14151 c
326.46614 459.74948 326.50611 459.06548 326.50611 458.08951 c
326.50611 450.43739 L
324.39402 450.43739 L
324.39402 458.00929 l
324.39402 458.86535 324.31408 459.50939 324.15024 459.93742 c
323.98611 460.36148 323.69414 460.70135 323.27802 460.95335 c
322.85820 461.20932 322.37008 461.33745 321.80598 461.33745 c
320.90598 461.33745 320.13411 461.04945 319.47817 460.48139 c
318.82620 459.90935 318.50220 458.82935 318.50220 457.23345 c
318.50220 450.43739 L
316.39408 450.43739 L
@c
F
@rax %Note: Object
218.73770 369.72113 326.50611 467.61732 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
228.44183 425.16142 m
227.65776 424.49726 226.90573 424.02926 226.18573 423.75345 c
225.46176 423.48132 224.68564 423.34526 223.85764 423.34526 c
222.48964 423.34526 221.44167 423.67720 220.70580 424.34532 c
219.97361 425.01345 219.60567 425.86923 219.60567 426.90529 c
219.60567 427.51729 219.74173 428.07345 220.02180 428.57745 c
220.29761 429.08145 220.66157 429.48539 221.10973 429.78926 c
221.56157 430.09342 222.06557 430.32529 222.62967 430.48148 c
223.04183 430.58948 223.66573 430.69748 224.50167 430.79726 c
226.20586 431.00135 227.46161 431.24145 228.26580 431.52548 C
228.27373 431.81348 228.27770 431.99745 228.27770 432.07342 c
228.27770 432.93345 228.07786 433.54148 227.67761 433.88929 c
227.14186 434.36948 226.33767 434.60532 225.27780 434.60532 c
224.28567 434.60532 223.55376 434.43326 223.07783 434.08545 c
222.60557 433.73735 222.25776 433.12139 222.02957 432.23726 C
219.96964 432.52129 L
220.15757 433.40145 220.46570 434.11748 220.89373 434.65748 c
221.32176 435.20145 221.94567 435.62126 222.75780 435.91351 c
223.56964 436.20548 224.50961 436.35345 225.58167 436.35345 c
226.64580 436.35345 227.50583 436.22532 228.16970 435.97729 c
228.83386 435.72529 229.32170 435.41348 229.63776 435.03335 c
229.94986 434.65323 230.16586 434.17729 230.29370 433.59732 c
230.36173 433.23732 230.39773 432.58932 230.39773 431.65332 c
230.39773 428.84135 l
230.39773 426.87723 230.44167 425.63735 230.53380 425.12145 c
230.62167 424.60129 230.80167 424.10126 231.06586 423.62532 C
228.86164 423.62532 L
228.64564 424.06129 228.50164 424.57323 228.44183 425.16142 C
@c
228.26580 429.87345 m
227.49761 429.55739 226.34986 429.29348 224.82170 429.07323 c
223.95373 428.94935 223.33776 428.80932 222.98173 428.65342 c
222.62173 428.49723 222.34167 428.26932 222.14976 427.96545 c
221.95361 427.66526 221.85383 427.33332 221.85383 426.96539 c
221.85383 426.40129 222.06983 425.93329 222.49361 425.55742 c
222.91767 425.18523 223.54186 424.99729 224.36164 424.99729 c
225.17376 424.99729 225.89773 425.17332 226.52986 425.52935 c
227.16170 425.88539 227.62970 426.37323 227.92564 426.98920 c
228.15383 427.46542 228.26580 428.16926 228.26580 429.09732 c
228.26580 429.87345 L
@c
F
@rax %Note: Object
218.73770 369.72113 326.50611 467.61732 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
233.62186 423.62532 m
233.62186 440.80526 L
235.72970 440.80526 L
235.72970 423.62532 L
233.62186 423.62532 L
@c
F
@rax %Note: Object
218.73770 369.72113 326.50611 467.61732 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
238.21370 429.84935 m
238.21370 432.15335 238.85376 433.86123 240.13786 434.96929 c
241.20567 435.88942 242.50989 436.35345 244.04967 436.35345 c
245.76180 436.35345 247.16183 435.79332 248.24580 434.66939 c
249.33373 433.54942 249.87373 432.00142 249.87373 430.02539 c
249.87373 428.42126 249.63392 427.16126 249.15373 426.24539 c
248.67383 425.32526 247.97367 424.61320 247.05780 424.10523 c
246.13767 423.59726 245.13789 423.34526 244.04967 423.34526 c
242.30976 423.34526 240.90180 423.90142 239.82576 425.02139 c
238.74973 426.13739 238.21370 427.74548 238.21370 429.84935 c
@c
240.38164 429.84935 m
240.38164 428.25345 240.72973 427.06120 241.42564 426.26920 c
242.12183 425.47323 242.99773 425.07723 244.04967 425.07723 c
245.09764 425.07723 245.96986 425.47720 246.66576 426.27345 c
247.35770 427.06942 247.70580 428.28548 247.70580 429.91739 c
247.70580 431.45745 247.35770 432.62532 246.65783 433.41732 c
245.95767 434.20932 245.08970 434.60532 244.04967 434.60532 c
242.99773 434.60532 242.12183 434.20932 241.42564 433.42129 c
240.72973 432.63326 240.38164 431.44129 240.38164 429.84935 c
@c
F
@rax %Note: Object
218.73770 369.72113 326.50611 467.61732 @E
/$fm 1 def
0 O 0 @g