-
Notifications
You must be signed in to change notification settings - Fork 16
/
image.eps
10921 lines (10893 loc) · 423 KB
/
image.eps
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.1 EPSF-3.0
%ADO_DSC_Encoding: MacOS Japanese
%%Title: image.eps
%%Creator: Adobe Illustrator(R) 13.0
%%For: kuro
%%CreationDate: 1/18/11
%%BoundingBox: 0 0 129 129
%%HiResBoundingBox: 0 0 128.5000 128.7324
%%CropBox: 0 0 128.5000 128.7324
%%LanguageLevel: 2
%%DocumentData: Clean7Bit
%ADOBeginClientInjection: DocumentHeader "AI11EPS"
%%AI8_CreatorVersion: 13.0.3%AI9_PrintingDataBegin%ADO_BuildNumber: Adobe Illustrator(R) 13.0.3 x483 R agm 4.4379 ct 5.1039%ADO_ContainsXMP: MainFirst%AI7_Thumbnail: 128 128 8%%BeginData: 29094 Hex Bytes%0000330000660000990000CC0033000033330033660033990033CC0033FF%0066000066330066660066990066CC0066FF009900009933009966009999%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333%3333663333993333CC3333FF3366003366333366663366993366CC3366FF%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033%6600666600996600CC6600FF6633006633336633666633996633CC6633FF%6666006666336666666666996666CC6666FF669900669933669966669999%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF%9933009933339933669933999933CC9933FF996600996633996666996699%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100%000011111111220000002200000022222222440000004400000044444444%550000005500000055555555770000007700000077777777880000008800%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF%524C45FD35FFA9A97E7E545453542954295429545354547E78A9A8FD66FF%A8A25454295429302F5A305A305B5A5A5A5B5A5A305A303029302953537E%7ECBFD5DFF7E7E53542F30305A5A615A615A615A615A615A615A615A615A%615A615A615A5A2F54295478A9FD57FF7E78292F2FFD045A5B5A5A5A5B5A%5A365B5A5A365B5A5A365B5A5A365B5A5A5A5B5A5A365A3030295453A9A9%FD50FFA97E2954305B5A855A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A3029547EFD4DFFA853302F5A%5A615A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A615A5A30302978A8FD48FF7E54295A5A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A5B5A615A5B5A615A615A5B303053A9FD44FFA8292F2F5B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A5A615A302954A8FD40FFA878%295A5A855A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%303054FD3EFF54292F5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A615A30297EFD3AFFA929305A615A615A5B5A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5A2954A9FD%36FFA87829365A5B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A2F297EFD34FFA8542F5B5A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A855A3053FD32FF7E292F615A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A615A3029A9%FD2FFF54305A615A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5A29A9FD2DFF532F%36615A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A297EFD2BFF53305A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A61297EFD28FFCB29305A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B2954FD27FF29545A61%5A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A612F54FD24FFA9%29305A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A5A5B%2954A9FD22FF295A5A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A612F78FD21FF4D305A5B5A5A5A5B5A5A5A5B5A5A5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A2978FD1FFF53305A615A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B297E%FD1DFF532F5A5B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A36%5B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A%5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A36%5B5A5A365B5A5A365B5A5A07A2FD1BFF7E305A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A5B29CBFD19%FFA82F365B5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5BFD045A29FD19FF5430615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A3054%FD17FF7E295A5A5B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A362F7EFD15FFA9295B5A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A855A54A9FD14FF29FD045A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A612F54%FD13FF78305A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A6129A9FD11FFA829365A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365BFD045A29FD11FF7830615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A307EFD0FFFA8295B5A5A5A5B5A5A5A5B5A5A5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A613629A8FD0EFF535A5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A612F7EFD0DFF7E2F5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365BFD04%5A29A9FD0CFF5430615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%3078FD0BFFA8295B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A61%362FA8FD0AFF535A5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B%5A612F7EFD09FFA82F5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A%5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A36%5B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A%5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A36%5BFD045A29FD09FF7E30615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A307EFD08FF29FD045A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A613054FD07FFA2305A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A5B29FD07FF782F5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A5A307EFD06FF535B5A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A853078FD05FF7E305A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5BFD045A29FD%05FF7E2F615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A307EFD04FF4D5A5A5B5A5A365B5A5A365B5A5A365B5A5A365B5A%5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A36%5B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A%5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A36%5B5A5A365B5A5A365B5A5A2F7EFFFFFFA9545A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A5B53FFFFFFA8295A5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A3654A8%FFFF78305A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A612FA9FFFF542F5B5A5A365B5A5A365B5A5A365B5A5A365B5A%5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A36%5B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A%5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A36%5B5A5A365B5A5A365B5A5A365B5A3053FFFF295B5A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A61307EFFA82F365B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A%5A29FFA92F5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A5B5A615A54A97E305A5A365B5A5A365B5A5A365B5A5A365B5A%5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A36%5B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A%5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A36%5B5A5A365B5A5A365B5A5A365B5A5A5A5B29A97E30615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A547E53FD04%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A612F7E5430615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A307E295A5A5B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A2F7E545A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A5A54295A%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5B3054545A615A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5A53295A5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B3054545A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A5A53%295B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A613054545A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A5A53295A5A5B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A2F78545A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%5A78535A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5B2F7E7E30615A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A307E53305A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A5A5B29A2A32F615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A54A87E305A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A5B29FFCB29615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A613654FFA953305B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A3053FFFF53%5A5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A612F7EFFFF7E2F615A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A5B5A307EFFFF7E305A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A5B5A6129FFFFFFCB295A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A3054FD04%FF5436615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A5A78FD04FF78305A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A29A8FD04FFA92F615A615A5B5A615A5B5A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A5B5A615A5B5A615A5B5A615A54A9FD04FFA853365A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365BFD045A53FD06FF54545A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A612FA2FD%06FFA9295A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A%5A3654A8FD07FF545A615A615A5B5A615A5B5A615A5B5A615A5B5A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A5A53FD08FF53305A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A5A5B29A2FD09FF295B5A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A54FD0AFF542F5B5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A%5A5A5B5A5A5A5B5A5A5A3078FD0AFFA2305A615A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5A29FD0CFF295A5A5A365B5A5A365B5A5A365B5A%5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A36%5B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A%5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A36%5B5A5A365B5A5A36612F78FD0CFFA929615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A54A9FD0DFF54305B5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A3053FD0EFFA2305A615A615A5B5A615A5B5A615A5B5A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5A29FD10FF4D305A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B297EFD11%FF295B5A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A853054FD12FF7E295B5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A307EFD13FF5430615A615A5B5A615A5B5A61%5A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B%5A615A3053FD14FF7E295A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365BFD045A29CBFD15FF7830%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A6129A9FD17FF29305A5B5A5A5A5B5A5A5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5B29%78FD18FFCB295A5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A%615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A613054FD1AFFA2295A5A5B5A5A365B5A%5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A36%5B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A%5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A30%29A8FD1BFF7E29615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A307EFD1DFF5429615A5A5A5B5A5A5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A615A2F78FD1FFF54%2F615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A615A3054FD20FFA84D2F615A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A2F4DFD22FFA95430615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A3053FD24FFA8532F5B5A5B5A5A%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A3053FD26FFA9543061%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A3053FD28FFA854%295A5A5B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A%365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B%5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A362F53FD2BFF7829%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A3078FD2DFF7E29FD045A%5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A%5B5A5A5A5B5A5A5A5B5A5A5A6130297EFD2FFFA2295A5A615A615A5B5A61%5A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B%5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A612F54A8FD31FFA929305A5A365B5A5A365B5A5A365B5A5A36%5B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A%5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365BFD045A2954A8FD%34FF783030855A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A615A61%5A615A615A615A615A615A615A5A29A2FD37FF7E5329FD045A5B5A5A5A5B%5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A%5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A61302F4DCB%FD3AFF7E295A5A615A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A61%5A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A5B%5A615A5B5A615A5B2F547EFD3DFFA94D2F305A5A5B5A5A365B5A5A365B5A%5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A36%5B5A5A365B5A5A365B5A5A365B5A5A36302978A8FD40FFA254295A5A615A%615A615A615A615A615A615A615A615A615A615A615A615A615A615A615A%615A615A615A615A615A615A615A615A615A615A5B305453A9FD44FFA229%30305A5A615A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A%5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5A5A5B5A5B36302954A2FD48FFA2%78293036615A615A615A5B5A615A5B5A615A5B5A615A5B5A615A5B5A615A%5B5A615A5B5A615A5B5A615A5B5A615A615A5A2F5453CBFD4CFFA9535329%30365A5A5B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A5A365B5A%5A365B5A5A5A5B5A5A365A2F2F297EA8FD51FFA95454295A5A5B5A855A61%5A615A615A615A615A615A615A615A615A615A615A615A615A615A5A2F54%537EA8FD56FFA9A8535429302F5A365A5A615A5B5A615A5A5A5B5A5A5A61%5A5B5A615A5A365A30302954537EA2FD5EFF7E7E53542F302F54305A365B%5A5B5A615A5B365A305A2F302F5429787EA9A9FD64FFA8A97E7E53785353%292F2929292F29532954537E7EA9A8FD34FFFF%%EndData
%ADOEndClientInjection: DocumentHeader "AI11EPS"
%%Pages: 1
%%DocumentNeededResources:
%%DocumentSuppliedResources: procset Adobe_AGM_Image 1.0 0
%%+ procset Adobe_CoolType_Utility_T42 1.0 0
%%+ procset Adobe_CoolType_Utility_MAKEOCF 1.23 0
%%+ procset Adobe_CoolType_Core 2.31 0
%%+ procset Adobe_AGM_Core 2.0 0
%%+ procset Adobe_AGM_Utils 1.0 0
%%DocumentFonts:
%%DocumentNeededFonts:
%%DocumentNeededFeatures:
%%DocumentSuppliedFeatures:
%%DocumentProcessColors: Cyan Magenta
%%DocumentCustomColors:
%%CMYKCustomColor:
%%RGBCustomColor:
%%EndComments
%%BeginDefaults
%%ViewingOrientation: 1 0 0 1
%%EndDefaults
%%BeginProlog
%%BeginResource: procset Adobe_AGM_Utils 1.0 0
%%Version: 1.0 0
%%Copyright: Copyright(C)2000-2006 Adobe Systems, Inc. All Rights Reserved.
systemdict/setpacking known
{currentpacking true setpacking}if
userdict/Adobe_AGM_Utils 73 dict dup begin put
/bdf
{bind def}bind def
/nd{null def}bdf
/xdf
{exch def}bdf
/ldf
{load def}bdf
/ddf
{put}bdf
/xddf
{3 -1 roll put}bdf
/xpt
{exch put}bdf
/ndf
{
exch dup where{
pop pop pop
}{
xdf
}ifelse
}def
/cdndf
{
exch dup currentdict exch known{
pop pop
}{
exch def
}ifelse
}def
/gx
{get exec}bdf
/ps_level
/languagelevel where{
pop systemdict/languagelevel gx
}{
1
}ifelse
def
/level2
ps_level 2 ge
def
/level3
ps_level 3 ge
def
/ps_version
{version cvr}stopped{-1}if
def
/set_gvm
{currentglobal exch setglobal}bdf
/reset_gvm
{setglobal}bdf
/makereadonlyarray
{
/packedarray where{pop packedarray
}{
array astore readonly}ifelse
}bdf
/map_reserved_ink_name
{
dup type/stringtype eq{
dup/Red eq{
pop(_Red_)
}{
dup/Green eq{
pop(_Green_)
}{
dup/Blue eq{
pop(_Blue_)
}{
dup()cvn eq{
pop(Process)
}if
}ifelse
}ifelse
}ifelse
}if
}bdf
/AGMUTIL_GSTATE 22 dict def
/get_gstate
{
AGMUTIL_GSTATE begin
/AGMUTIL_GSTATE_clr_spc currentcolorspace def
/AGMUTIL_GSTATE_clr_indx 0 def
/AGMUTIL_GSTATE_clr_comps 12 array def
mark currentcolor counttomark
{AGMUTIL_GSTATE_clr_comps AGMUTIL_GSTATE_clr_indx 3 -1 roll put
/AGMUTIL_GSTATE_clr_indx AGMUTIL_GSTATE_clr_indx 1 add def}repeat pop
/AGMUTIL_GSTATE_fnt rootfont def
/AGMUTIL_GSTATE_lw currentlinewidth def
/AGMUTIL_GSTATE_lc currentlinecap def
/AGMUTIL_GSTATE_lj currentlinejoin def
/AGMUTIL_GSTATE_ml currentmiterlimit def
currentdash/AGMUTIL_GSTATE_do xdf/AGMUTIL_GSTATE_da xdf
/AGMUTIL_GSTATE_sa currentstrokeadjust def
/AGMUTIL_GSTATE_clr_rnd currentcolorrendering def
/AGMUTIL_GSTATE_op currentoverprint def
/AGMUTIL_GSTATE_bg currentblackgeneration cvlit def
/AGMUTIL_GSTATE_ucr currentundercolorremoval cvlit def
currentcolortransfer cvlit/AGMUTIL_GSTATE_gy_xfer xdf cvlit/AGMUTIL_GSTATE_b_xfer xdf
cvlit/AGMUTIL_GSTATE_g_xfer xdf cvlit/AGMUTIL_GSTATE_r_xfer xdf
/AGMUTIL_GSTATE_ht currenthalftone def
/AGMUTIL_GSTATE_flt currentflat def
end
}def
/set_gstate
{
AGMUTIL_GSTATE begin
AGMUTIL_GSTATE_clr_spc setcolorspace
AGMUTIL_GSTATE_clr_indx{AGMUTIL_GSTATE_clr_comps AGMUTIL_GSTATE_clr_indx 1 sub get
/AGMUTIL_GSTATE_clr_indx AGMUTIL_GSTATE_clr_indx 1 sub def}repeat setcolor
AGMUTIL_GSTATE_fnt setfont
AGMUTIL_GSTATE_lw setlinewidth
AGMUTIL_GSTATE_lc setlinecap
AGMUTIL_GSTATE_lj setlinejoin
AGMUTIL_GSTATE_ml setmiterlimit
AGMUTIL_GSTATE_da AGMUTIL_GSTATE_do setdash
AGMUTIL_GSTATE_sa setstrokeadjust
AGMUTIL_GSTATE_clr_rnd setcolorrendering
AGMUTIL_GSTATE_op setoverprint
AGMUTIL_GSTATE_bg cvx setblackgeneration
AGMUTIL_GSTATE_ucr cvx setundercolorremoval
AGMUTIL_GSTATE_r_xfer cvx AGMUTIL_GSTATE_g_xfer cvx AGMUTIL_GSTATE_b_xfer cvx
AGMUTIL_GSTATE_gy_xfer cvx setcolortransfer
AGMUTIL_GSTATE_ht/HalftoneType get dup 9 eq exch 100 eq or
{
currenthalftone/HalftoneType get AGMUTIL_GSTATE_ht/HalftoneType get ne
{
mark AGMUTIL_GSTATE_ht{sethalftone}stopped cleartomark
}if
}{
AGMUTIL_GSTATE_ht sethalftone
}ifelse
AGMUTIL_GSTATE_flt setflat
end
}def
/get_gstate_and_matrix
{
AGMUTIL_GSTATE begin
/AGMUTIL_GSTATE_ctm matrix currentmatrix def
end
get_gstate
}def
/set_gstate_and_matrix
{
set_gstate
AGMUTIL_GSTATE begin
AGMUTIL_GSTATE_ctm setmatrix
end
}def
/AGMUTIL_str256 256 string def
/AGMUTIL_src256 256 string def
/AGMUTIL_dst64 64 string def
/AGMUTIL_srcLen nd
/AGMUTIL_ndx nd
/AGMUTIL_cpd nd
/capture_cpd{
//Adobe_AGM_Utils/AGMUTIL_cpd currentpagedevice ddf
}def
/thold_halftone
{
level3
{sethalftone currenthalftone}
{
dup/HalftoneType get 3 eq
{
sethalftone currenthalftone
}{
begin
Width Height mul{
Thresholds read{pop}if
}repeat
end
currenthalftone
}ifelse
}ifelse
}def
/rdcmntline
{
currentfile AGMUTIL_str256 readline pop
(%)anchorsearch{pop}if
}bdf
/filter_cmyk
{
dup type/filetype ne{
exch()/SubFileDecode filter
}{
exch pop
}
ifelse
[
exch
{
AGMUTIL_src256 readstring pop
dup length/AGMUTIL_srcLen exch def
/AGMUTIL_ndx 0 def
AGMCORE_plate_ndx 4 AGMUTIL_srcLen 1 sub{
1 index exch get
AGMUTIL_dst64 AGMUTIL_ndx 3 -1 roll put
/AGMUTIL_ndx AGMUTIL_ndx 1 add def
}for
pop
AGMUTIL_dst64 0 AGMUTIL_ndx getinterval
}
bind
/exec cvx
]cvx
}bdf
/filter_indexed_devn
{
cvi Names length mul names_index add Lookup exch get
}bdf
/filter_devn
{
4 dict begin
/srcStr xdf
/dstStr xdf
dup type/filetype ne{
0()/SubFileDecode filter
}if
[
exch
[
/devicen_colorspace_dict/AGMCORE_gget cvx/begin cvx
currentdict/srcStr get/readstring cvx/pop cvx
/dup cvx/length cvx 0/gt cvx[
Adobe_AGM_Utils/AGMUTIL_ndx 0/ddf cvx
names_index Names length currentdict/srcStr get length 1 sub{
1/index cvx/exch cvx/get cvx
currentdict/dstStr get/AGMUTIL_ndx/load cvx 3 -1/roll cvx/put cvx
Adobe_AGM_Utils/AGMUTIL_ndx/AGMUTIL_ndx/load cvx 1/add cvx/ddf cvx
}for
currentdict/dstStr get 0/AGMUTIL_ndx/load cvx/getinterval cvx
]cvx/if cvx
/end cvx
]cvx
bind
/exec cvx
]cvx
end
}bdf
/AGMUTIL_imagefile nd
/read_image_file
{
AGMUTIL_imagefile 0 setfileposition
10 dict begin
/imageDict xdf
/imbufLen Width BitsPerComponent mul 7 add 8 idiv def
/imbufIdx 0 def
/origDataSource imageDict/DataSource get def
/origMultipleDataSources imageDict/MultipleDataSources get def
/origDecode imageDict/Decode get def
/dstDataStr imageDict/Width get colorSpaceElemCnt mul string def
imageDict/MultipleDataSources known{MultipleDataSources}{false}ifelse
{
/imbufCnt imageDict/DataSource get length def
/imbufs imbufCnt array def
0 1 imbufCnt 1 sub{
/imbufIdx xdf
imbufs imbufIdx imbufLen string put
imageDict/DataSource get imbufIdx[AGMUTIL_imagefile imbufs imbufIdx get/readstring cvx/pop cvx]cvx put
}for
DeviceN_PS2{
imageDict begin
/DataSource[DataSource/devn_sep_datasource cvx]cvx def
/MultipleDataSources false def
/Decode[0 1]def
end
}if
}{
/imbuf imbufLen string def
Indexed_DeviceN level3 not and DeviceN_NoneName or{
/srcDataStrs[imageDict begin
currentdict/MultipleDataSources known{MultipleDataSources{DataSource length}{1}ifelse}{1}ifelse
{
Width Decode length 2 div mul cvi string
}repeat
end]def
imageDict begin
/DataSource[AGMUTIL_imagefile Decode BitsPerComponent false 1/filter_indexed_devn load dstDataStr srcDataStrs devn_alt_datasource/exec cvx]cvx def
/Decode[0 1]def
end
}{
imageDict/DataSource[1 string dup 0 AGMUTIL_imagefile Decode length 2 idiv string/readstring cvx/pop cvx names_index/get cvx/put cvx]cvx put
imageDict/Decode[0 1]put
}ifelse
}ifelse
imageDict exch
load exec
imageDict/DataSource origDataSource put
imageDict/MultipleDataSources origMultipleDataSources put
imageDict/Decode origDecode put
end
}bdf
/write_image_file
{
begin
{(AGMUTIL_imagefile)(w+)file}stopped{
false
}{
Adobe_AGM_Utils/AGMUTIL_imagefile xddf
2 dict begin
/imbufLen Width BitsPerComponent mul 7 add 8 idiv def
MultipleDataSources{DataSource 0 get}{DataSource}ifelse type/filetype eq{
/imbuf imbufLen string def
}if
1 1 Height MultipleDataSources not{Decode length 2 idiv mul}if{
pop
MultipleDataSources{
0 1 DataSource length 1 sub{
DataSource type dup
/arraytype eq{
pop DataSource exch gx
}{
/filetype eq{
DataSource exch get imbuf readstring pop
}{
DataSource exch get
}ifelse
}ifelse
AGMUTIL_imagefile exch writestring
}for
}{
DataSource type dup
/arraytype eq{
pop DataSource exec
}{
/filetype eq{
DataSource imbuf readstring pop
}{
DataSource
}ifelse
}ifelse
AGMUTIL_imagefile exch writestring
}ifelse
}for
end
true
}ifelse
end
}bdf
/close_image_file
{
AGMUTIL_imagefile closefile(AGMUTIL_imagefile)deletefile
}def
statusdict/product known userdict/AGMP_current_show known not and{
/pstr statusdict/product get def
pstr(HP LaserJet 2200)eq
pstr(HP LaserJet 4000 Series)eq or
pstr(HP LaserJet 4050 Series )eq or
pstr(HP LaserJet 8000 Series)eq or
pstr(HP LaserJet 8100 Series)eq or
pstr(HP LaserJet 8150 Series)eq or
pstr(HP LaserJet 5000 Series)eq or
pstr(HP LaserJet 5100 Series)eq or
pstr(HP Color LaserJet 4500)eq or
pstr(HP Color LaserJet 4600)eq or
pstr(HP LaserJet 5Si)eq or
pstr(HP LaserJet 1200 Series)eq or
pstr(HP LaserJet 1300 Series)eq or
pstr(HP LaserJet 4100 Series)eq or
{
userdict/AGMP_current_show/show load put
userdict/show{
currentcolorspace 0 get
/Pattern eq
{false charpath f}
{AGMP_current_show}ifelse
}put
}if
currentdict/pstr undef
}if
/consumeimagedata
{
begin
AGMIMG_init_common
currentdict/MultipleDataSources known not
{/MultipleDataSources false def}if
MultipleDataSources
{
DataSource 0 get type
dup/filetype eq
{
1 dict begin
/flushbuffer Width cvi string def
1 1 Height cvi
{
pop
0 1 DataSource length 1 sub
{
DataSource exch get
flushbuffer readstring pop pop
}for
}for
end
}if
dup/arraytype eq exch/packedarraytype eq or DataSource 0 get xcheck and
{
Width Height mul cvi
{
0 1 DataSource length 1 sub
{dup DataSource exch gx length exch 0 ne{pop}if}for
dup 0 eq
{pop exit}if
sub dup 0 le
{exit}if
}loop
pop
}if
}
{
/DataSource load type
dup/filetype eq
{
1 dict begin
/flushbuffer Width Decode length 2 idiv mul cvi string def
1 1 Height{pop DataSource flushbuffer readstring pop pop}for
end
}if
dup/arraytype eq exch/packedarraytype eq or/DataSource load xcheck and
{
Height Width BitsPerComponent mul 8 BitsPerComponent sub add 8 idiv Decode length 2 idiv mul mul
{
DataSource length dup 0 eq
{pop exit}if
sub dup 0 le
{exit}if
}loop
pop
}if
}ifelse
end
}bdf
/addprocs
{
2{/exec load}repeat
3 1 roll
[5 1 roll]bind cvx
}def
/modify_halftone_xfer
{
currenthalftone dup length dict copy begin
currentdict 2 index known{
1 index load dup length dict copy begin
currentdict/TransferFunction known{
/TransferFunction load
}{
currenttransfer
}ifelse
addprocs/TransferFunction xdf
currentdict end def
currentdict end sethalftone
}{
currentdict/TransferFunction known{
/TransferFunction load
}{
currenttransfer
}ifelse
addprocs/TransferFunction xdf
currentdict end sethalftone
pop
}ifelse
}def
/clonearray
{
dup xcheck exch
dup length array exch
Adobe_AGM_Core/AGMCORE_tmp -1 ddf
{
Adobe_AGM_Core/AGMCORE_tmp 2 copy get 1 add ddf
dup type/dicttype eq
{
Adobe_AGM_Core/AGMCORE_tmp get
exch
clonedict
Adobe_AGM_Core/AGMCORE_tmp 4 -1 roll ddf
}if
dup type/arraytype eq
{
Adobe_AGM_Core/AGMCORE_tmp get exch
clonearray
Adobe_AGM_Core/AGMCORE_tmp 4 -1 roll ddf
}if
exch dup
Adobe_AGM_Core/AGMCORE_tmp get 4 -1 roll put
}forall
exch{cvx}if
}bdf
/clonedict
{
dup length dict
begin
{
dup type/dicttype eq
{clonedict}if
dup type/arraytype eq
{clonearray}if
def
}forall
currentdict
end
}bdf
/DeviceN_PS2
{
/currentcolorspace AGMCORE_gget 0 get/DeviceN eq level3 not and
}bdf
/Indexed_DeviceN
{
/indexed_colorspace_dict AGMCORE_gget dup null ne{
dup/CSDBase known{
/CSDBase get/CSD get_res/Names known
}{
pop false
}ifelse
}{
pop false
}ifelse
}bdf
/DeviceN_NoneName
{
/Names where{
pop
false Names
{
(None)eq or
}forall
}{
false
}ifelse
}bdf
/DeviceN_PS2_inRip_seps
{
/AGMCORE_in_rip_sep where
{
pop dup type dup/arraytype eq exch/packedarraytype eq or
{
dup 0 get/DeviceN eq level3 not and AGMCORE_in_rip_sep and
{
/currentcolorspace exch AGMCORE_gput
false
}{
true
}ifelse
}{
true
}ifelse
}{
true
}ifelse
}bdf
/base_colorspace_type
{
dup type/arraytype eq{0 get}if
}bdf
/currentdistillerparams where{pop currentdistillerparams/CoreDistVersion get 5000 lt}{true}ifelse
{
/pdfmark_5{cleartomark}bind def
}{
/pdfmark_5{pdfmark}bind def
}ifelse
/ReadBypdfmark_5
{
currentfile exch 0 exch/SubFileDecode filter
/currentdistillerparams where
{pop currentdistillerparams/CoreDistVersion get 5000 lt}{true}ifelse
{flushfile cleartomark}
{/PUT pdfmark}ifelse
}bdf
/xpdfm
{
{
dup 0 get/Label eq
{
aload length[exch 1 add 1 roll/PAGELABEL
}{
aload pop
[{ThisPage}<<5 -2 roll>>/PUT
}ifelse
pdfmark_5
}forall
}bdf
/ds{
Adobe_AGM_Utils begin
}bdf
/dt{
currentdict Adobe_AGM_Utils eq{
end
}if
}bdf
systemdict/setpacking known
{setpacking}if
%%EndResource
%%BeginResource: procset Adobe_AGM_Core 2.0 0
%%Version: 2.0 0
%%Copyright: Copyright(C)1997-2007 Adobe Systems, Inc. All Rights Reserved.
systemdict/setpacking known
{
currentpacking
true setpacking
}if
userdict/Adobe_AGM_Core 209 dict dup begin put
/Adobe_AGM_Core_Id/Adobe_AGM_Core_2.0_0 def
/AGMCORE_str256 256 string def
/AGMCORE_save nd
/AGMCORE_graphicsave nd
/AGMCORE_c 0 def
/AGMCORE_m 0 def
/AGMCORE_y 0 def
/AGMCORE_k 0 def
/AGMCORE_cmykbuf 4 array def
/AGMCORE_screen[currentscreen]cvx def
/AGMCORE_tmp 0 def
/AGMCORE_&setgray nd
/AGMCORE_&setcolor nd
/AGMCORE_&setcolorspace nd
/AGMCORE_&setcmykcolor nd
/AGMCORE_cyan_plate nd
/AGMCORE_magenta_plate nd
/AGMCORE_yellow_plate nd
/AGMCORE_black_plate nd
/AGMCORE_plate_ndx nd
/AGMCORE_get_ink_data nd
/AGMCORE_is_cmyk_sep nd
/AGMCORE_host_sep nd
/AGMCORE_avoid_L2_sep_space nd
/AGMCORE_distilling nd
/AGMCORE_composite_job nd
/AGMCORE_producing_seps nd
/AGMCORE_ps_level -1 def
/AGMCORE_ps_version -1 def
/AGMCORE_environ_ok nd
/AGMCORE_CSD_cache 0 dict def
/AGMCORE_currentoverprint false def
/AGMCORE_deltaX nd
/AGMCORE_deltaY nd
/AGMCORE_name nd
/AGMCORE_sep_special nd
/AGMCORE_err_strings 4 dict def
/AGMCORE_cur_err nd
/AGMCORE_current_spot_alias false def
/AGMCORE_inverting false def
/AGMCORE_feature_dictCount nd
/AGMCORE_feature_opCount nd
/AGMCORE_feature_ctm nd
/AGMCORE_ConvertToProcess false def
/AGMCORE_Default_CTM matrix def
/AGMCORE_Default_PageSize nd
/AGMCORE_Default_flatness nd
/AGMCORE_currentbg nd
/AGMCORE_currentucr nd
/AGMCORE_pattern_paint_type 0 def
/knockout_unitsq nd
currentglobal true setglobal
[/CSA/Gradient/Procedure]
{
/Generic/Category findresource dup length dict copy/Category defineresource pop
}forall
setglobal
/AGMCORE_key_known
{
where{
/Adobe_AGM_Core_Id known
}{
false
}ifelse
}ndf
/flushinput
{
save
2 dict begin
/CompareBuffer 3 -1 roll def
/readbuffer 256 string def
mark
{
currentfile readbuffer{readline}stopped
{cleartomark mark}
{
not
{pop exit}
if
CompareBuffer eq
{exit}
if
}ifelse
}loop
cleartomark
end
restore
}bdf
/getspotfunction
{
AGMCORE_screen exch pop exch pop
dup type/dicttype eq{
dup/HalftoneType get 1 eq{
/SpotFunction get
}{
dup/HalftoneType get 2 eq{
/GraySpotFunction get
}{
pop
{
abs exch abs 2 copy add 1 gt{
1 sub dup mul exch 1 sub dup mul add 1 sub
}{
dup mul exch dup mul add 1 exch sub
}ifelse
}bind
}ifelse
}ifelse
}if
}def
/np
{newpath}bdf
/clp_npth
{clip np}def
/eoclp_npth
{eoclip np}def
/npth_clp
{np clip}def
/graphic_setup
{
/AGMCORE_graphicsave save store
concat
0 setgray
0 setlinecap
0 setlinejoin
1 setlinewidth
[]0 setdash
10 setmiterlimit
np
false setoverprint
false setstrokeadjust
//Adobe_AGM_Core/spot_alias gx
/Adobe_AGM_Image where{
pop
Adobe_AGM_Image/spot_alias 2 copy known{
gx
}{
pop pop
}ifelse
}if
/sep_colorspace_dict null AGMCORE_gput
100 dict begin
/dictstackcount countdictstack def
/showpage{}def
mark
}def
/graphic_cleanup
{
cleartomark
dictstackcount 1 countdictstack 1 sub{end}for
end
AGMCORE_graphicsave restore
}def
/compose_error_msg
{
grestoreall initgraphics
/Helvetica findfont 10 scalefont setfont
/AGMCORE_deltaY 100 def
/AGMCORE_deltaX 310 def
clippath pathbbox np pop pop 36 add exch 36 add exch moveto
0 AGMCORE_deltaY rlineto AGMCORE_deltaX 0 rlineto
0 AGMCORE_deltaY neg rlineto AGMCORE_deltaX neg 0 rlineto closepath
0 AGMCORE_&setgray
gsave 1 AGMCORE_&setgray fill grestore
1 setlinewidth gsave stroke grestore
currentpoint AGMCORE_deltaY 15 sub add exch 8 add exch moveto
/AGMCORE_deltaY 12 def
/AGMCORE_tmp 0 def
AGMCORE_err_strings exch get
{
dup 32 eq
{
pop
AGMCORE_str256 0 AGMCORE_tmp getinterval
stringwidth pop currentpoint pop add AGMCORE_deltaX 28 add gt
{
currentpoint AGMCORE_deltaY sub exch pop
clippath pathbbox pop pop pop 44 add exch moveto
}if
AGMCORE_str256 0 AGMCORE_tmp getinterval show( )show
0 1 AGMCORE_str256 length 1 sub
{
AGMCORE_str256 exch 0 put
}for
/AGMCORE_tmp 0 def
}{
AGMCORE_str256 exch AGMCORE_tmp xpt
/AGMCORE_tmp AGMCORE_tmp 1 add def
}ifelse
}forall
}bdf
/AGMCORE_CMYKDeviceNColorspaces[
[/Separation/None/DeviceCMYK{0 0 0}]
[/Separation(Black)/DeviceCMYK{0 0 0 4 -1 roll}bind]
[/Separation(Yellow)/DeviceCMYK{0 0 3 -1 roll 0}bind]
[/DeviceN[(Yellow)(Black)]/DeviceCMYK{0 0 4 2 roll}bind]
[/Separation(Magenta)/DeviceCMYK{0 exch 0 0}bind]
[/DeviceN[(Magenta)(Black)]/DeviceCMYK{0 3 1 roll 0 exch}bind]
[/DeviceN[(Magenta)(Yellow)]/DeviceCMYK{0 3 1 roll 0}bind]
[/DeviceN[(Magenta)(Yellow)(Black)]/DeviceCMYK{0 4 1 roll}bind]
[/Separation(Cyan)/DeviceCMYK{0 0 0}]
[/DeviceN[(Cyan)(Black)]/DeviceCMYK{0 0 3 -1 roll}bind]
[/DeviceN[(Cyan)(Yellow)]/DeviceCMYK{0 exch 0}bind]
[/DeviceN[(Cyan)(Yellow)(Black)]/DeviceCMYK{0 3 1 roll}bind]
[/DeviceN[(Cyan)(Magenta)]/DeviceCMYK{0 0}]
[/DeviceN[(Cyan)(Magenta)(Black)]/DeviceCMYK{0 exch}bind]
[/DeviceN[(Cyan)(Magenta)(Yellow)]/DeviceCMYK{0}]
[/DeviceCMYK]
]def
/ds{
Adobe_AGM_Core begin
/currentdistillerparams where
{
pop currentdistillerparams/CoreDistVersion get 5000 lt
{<</DetectBlends false>>setdistillerparams}if
}if
/AGMCORE_ps_version xdf
/AGMCORE_ps_level xdf
errordict/AGM_handleerror known not{
errordict/AGM_handleerror errordict/handleerror get put
errordict/handleerror{
Adobe_AGM_Core begin
$error/newerror get AGMCORE_cur_err null ne and{
$error/newerror false put
AGMCORE_cur_err compose_error_msg
}if
$error/newerror true put
end
errordict/AGM_handleerror get exec
}bind put
}if
/AGMCORE_environ_ok
ps_level AGMCORE_ps_level ge
ps_version AGMCORE_ps_version ge and
AGMCORE_ps_level -1 eq or
def
AGMCORE_environ_ok not
{/AGMCORE_cur_err/AGMCORE_bad_environ def}if
/AGMCORE_&setgray systemdict/setgray get def
level2{
/AGMCORE_&setcolor systemdict/setcolor get def
/AGMCORE_&setcolorspace systemdict/setcolorspace get def
}if
/AGMCORE_currentbg currentblackgeneration def
/AGMCORE_currentucr currentundercolorremoval def
/AGMCORE_Default_flatness currentflat def
/AGMCORE_distilling
/product where{
pop systemdict/setdistillerparams known product(Adobe PostScript Parser)ne and
}{
false
}ifelse
def
/AGMCORE_GSTATE AGMCORE_key_known not{
/AGMCORE_GSTATE 21 dict def
/AGMCORE_tmpmatrix matrix def
/AGMCORE_gstack 32 array def
/AGMCORE_gstackptr 0 def
/AGMCORE_gstacksaveptr 0 def
/AGMCORE_gstackframekeys 14 def
/AGMCORE_&gsave/gsave ldf
/AGMCORE_&grestore/grestore ldf
/AGMCORE_&grestoreall/grestoreall ldf
/AGMCORE_&save/save ldf
/AGMCORE_&setoverprint/setoverprint ldf
/AGMCORE_gdictcopy{
begin
{def}forall
end
}def
/AGMCORE_gput{
AGMCORE_gstack AGMCORE_gstackptr get
3 1 roll
put
}def
/AGMCORE_gget{
AGMCORE_gstack AGMCORE_gstackptr get
exch
get
}def
/gsave{
AGMCORE_&gsave
AGMCORE_gstack AGMCORE_gstackptr get
AGMCORE_gstackptr 1 add
dup 32 ge{limitcheck}if
/AGMCORE_gstackptr exch store
AGMCORE_gstack AGMCORE_gstackptr get
AGMCORE_gdictcopy
}def
/grestore{
AGMCORE_&grestore
AGMCORE_gstackptr 1 sub
dup AGMCORE_gstacksaveptr lt{1 add}if
dup AGMCORE_gstack exch get dup/AGMCORE_currentoverprint known
{/AGMCORE_currentoverprint get setoverprint}{pop}ifelse
/AGMCORE_gstackptr exch store
}def
/grestoreall{
AGMCORE_&grestoreall
/AGMCORE_gstackptr AGMCORE_gstacksaveptr store
}def
/save{
AGMCORE_&save
AGMCORE_gstack AGMCORE_gstackptr get
AGMCORE_gstackptr 1 add
dup 32 ge{limitcheck}if
/AGMCORE_gstackptr exch store
/AGMCORE_gstacksaveptr AGMCORE_gstackptr store
AGMCORE_gstack AGMCORE_gstackptr get
AGMCORE_gdictcopy
}def
/setoverprint{
dup/AGMCORE_currentoverprint exch AGMCORE_gput AGMCORE_&setoverprint
}def
0 1 AGMCORE_gstack length 1 sub{
AGMCORE_gstack exch AGMCORE_gstackframekeys dict put
}for
}if
level3/AGMCORE_&sysshfill AGMCORE_key_known not and
{
/AGMCORE_&sysshfill systemdict/shfill get def
/AGMCORE_&sysmakepattern systemdict/makepattern get def
/AGMCORE_&usrmakepattern/makepattern load def
}if
/currentcmykcolor[0 0 0 0]AGMCORE_gput
/currentstrokeadjust false AGMCORE_gput
/currentcolorspace[/DeviceGray]AGMCORE_gput
/sep_tint 0 AGMCORE_gput
/devicen_tints[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]AGMCORE_gput
/sep_colorspace_dict null AGMCORE_gput
/devicen_colorspace_dict null AGMCORE_gput
/indexed_colorspace_dict null AGMCORE_gput
/currentcolor_intent()AGMCORE_gput
/customcolor_tint 1 AGMCORE_gput
/absolute_colorimetric_crd null AGMCORE_gput
/relative_colorimetric_crd null AGMCORE_gput
/saturation_crd null AGMCORE_gput
/perceptual_crd null AGMCORE_gput
currentcolortransfer cvlit/AGMCore_gray_xfer xdf cvlit/AGMCore_b_xfer xdf
cvlit/AGMCore_g_xfer xdf cvlit/AGMCore_r_xfer xdf
<<
/MaxPatternItem currentsystemparams/MaxPatternCache get
>>
setuserparams
end
}def
/ps
{
/setcmykcolor where{
pop
Adobe_AGM_Core/AGMCORE_&setcmykcolor/setcmykcolor load put
}if
Adobe_AGM_Core begin