-
Notifications
You must be signed in to change notification settings - Fork 0
/
gretsifr.ps
15458 lines (15389 loc) · 412 KB
/
gretsifr.ps
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
%%Title: gretsifr.dvi
%%Creator: ADOBEPS4.DRV Version 4.24
%%CreationDate: 04/24/01 11:34:47
%%For: lacaze
%%BoundingBox: (atend)
%%Pages: (atend)
%%PageOrder: Special
%%DocumentNeededResources: (atend)
%%DocumentSuppliedResources: (atend)
%%DocumentSuppliedFeatures: (atend)
%%DocumentData: Clean7Bit
%%LanguageLevel: 3
%%TargetDevice: (GP300-405) (3010.104) 1
%%EndComments
%%BeginDefaults
%%PageBoundingBox: 8 8 588 834
%%ViewingOrientation: 1 0 0 1
%%PageFeatures:
%%+ *Resolution 600dpi
%%+ *EFLandscape EFLandscapeDEF
%%+ *EFUserRotate180 EFUserRotate180DEF
%%+ *InputSlot AutoSelectTray
%%+ *PageSize A4
%%+ *PageRegion A4
%%+ *EFDestination Printer
%%+ *MediaType Plain
%%+ *EFFinishing Sort
%%+ *EFRefine True
%%+ *EFDuplexing None
%%+ *TonerReduction False
%%+ *EFDarkness 5
%%+ *EFFirstPage None
%%+ *EFBooklet False
%%EndDefaults
%%BeginProlog
%%BeginResource: procset AdobePS_Win_Feature_Safe 4.2 0
userdict begin/lucas 21690 def/featurebegin{countdictstack lucas[}bind def
/featurecleanup{stopped{cleartomark dup lucas eq{pop exit}if}loop
countdictstack exch sub dup 0 gt{{end}repeat}{pop}ifelse}bind def end
%%EndResource
%%BeginResource: procset AdobePS_Win_ErrorHandler 4.2 0
/currentpacking where{pop/oldpack currentpacking def/setpacking where{pop
false setpacking}if}if/$brkpage 64 dict def $brkpage begin/prnt{dup type
/stringtype ne{=string cvs}if dup length 6 mul/tx exch def/ty 10 def
currentpoint/toy exch def/tox exch def 1 setgray newpath tox toy 2 sub moveto
0 ty rlineto tx 0 rlineto 0 ty neg rlineto closepath fill tox toy moveto 0
setgray show}bind def/nl{currentpoint exch pop lmargin exch moveto 0 -10
rmoveto}def/=={/cp 0 def typeprint nl}def/typeprint{dup type exec}readonly def
/lmargin 72 def/rmargin 72 def/tprint{dup length cp add rmargin gt{nl/cp 0 def
}if dup length cp add/cp exch def prnt}readonly def/cvsprint{=string cvs
tprint( )tprint}readonly def/integertype{cvsprint}readonly def/realtype{
cvsprint}readonly def/booleantype{cvsprint}readonly def/operatortype{(--)
tprint =string cvs tprint(-- )tprint}readonly def/marktype{pop(-mark- )tprint}
readonly def/dicttype{pop(-dictionary- )tprint}readonly def/nulltype{pop
(-null- )tprint}readonly def/filetype{pop(-filestream- )tprint}readonly def
/savetype{pop(-savelevel- )tprint}readonly def/fonttype{pop(-fontid- )tprint}
readonly def/nametype{dup xcheck not{(/)tprint}if cvsprint}readonly def
/stringtype{dup rcheck{(\()tprint tprint(\))tprint}{pop(-string- )tprint}
ifelse}readonly def/arraytype{dup rcheck{dup xcheck{({)tprint{typeprint}forall
(})tprint}{([)tprint{typeprint}forall(])tprint}ifelse}{pop(-array- )tprint}
ifelse}readonly def/packedarraytype{dup rcheck{dup xcheck{({)tprint{typeprint}
forall(})tprint}{([)tprint{typeprint}forall(])tprint}ifelse}{pop
(-packedarray- )tprint}ifelse}readonly def/courier/Courier findfont 10
scalefont def end errordict/handleerror{systemdict begin $error begin $brkpage
begin newerror{/newerror false store vmstatus pop pop 0 ne{grestoreall}if
showpage initgraphics courier setfont lmargin 720 moveto(ERROR: )prnt
errorname prnt nl(OFFENDING COMMAND: )prnt/command load prnt $error/ostack
known{nl nl(STACK:)prnt nl nl $error/ostack get aload length{==}repeat}if
systemdict/showpage get exec(%%[ Error: )print errorname =print
(; OffendingCommand: )print/command load =print( ]%%)= flush}if end end end}
dup 0 systemdict put dup 4 $brkpage put bind readonly put/currentpacking where
{pop/setpacking where{pop oldpack setpacking}if}if
%%EndResource
%%BeginResource: procset AdobePS_Win_Driver_Incr_L2 4.2 0
userdict /AdobePS_Win_Driver_Incr_L2 250 dict dup begin put
%%BeginResource: procset AdobePS_FatalError 4.2 0
/FatalErrorIf{{initgraphics findfont 1 index 0 eq{exch pop}{dup length dict
begin{1 index/FID ne{def}{pop pop}ifelse}forall/Encoding{ISOLatin1Encoding}
stopped{StandardEncoding}if def currentdict end/ErrFont-Latin1 exch definefont
}ifelse exch scalefont setfont counttomark 3 div cvi{moveto show}repeat
showpage quit}{cleartomark}ifelse}bind def
%%EndResource
[
(Ce travail requiert une imprimante PostScript(R) Niveau 2.) 100 500
(Veuillez envoyer ce fichier vers une imprimante Niveau 2 ou corriger les) 100 485
(paramètres des feuilles de propriétés du pilote, puis recommencez.) 100 470
12 /Times-Roman
/languagelevel where {pop languagelevel}{1} ifelse 2 lt FatalErrorIf
/VM? {vmstatus exch sub exch pop gt { [
(La mémoire disponible est insuffisante pour imprimer ce document.) 100 500
(Essayez une ou plusieurs des opérations suivantes, puis recommencez :) 100 485
(Dans la boîte de dialogue PostScript, sélectionnez PostScript (optimiser pour portabilité ADSC).) 115 470
(Dans les Options du périphérique, assurez-vous que la valeur de l'option Mémoire d'imprimante disponible est exacte.) 115 455
(Réduisez le nombre de polices utilisées dans le document.) 115 440
(Imprimez-le en plusieurs fois.) 115 425
12 /Times-Roman showpage
(%%[ PrinterError: Low Printer VM ]%%) =
true FatalErrorIf}if} bind def
30000 VM?
%%BeginResource: procset AdobePS_Win_Utils 4.2 0
/d/def load def/,/load load d/~/exch , d/?/ifelse , d/!/pop , d/`/begin , d/^
/index , d/@/dup , d/+/translate , d/$/roll , d/U/userdict , d/M/moveto , d/-
/rlineto , d/&/currentdict , d/:/gsave , d/;/grestore , d/F/false , d/T/true ,
d/N/newpath , d/E/end , d/Ac/arc , d/An/arcn , d/A/ashow , d/D/awidthshow , d
/C/closepath , d/V/div , d/O/eofill , d/L/fill , d/I/lineto , d/-C/rcurveto ,
d/-M/rmoveto , d/+S/scale , d/Ji/setfont , d/Lc/setlinecap , d/Lj/setlinejoin
, d/Lw/setlinewidth , d/S/show , d/LH/showpage , d/K/stroke , d/W/widthshow ,
d/R/rotate , d/XS/xshow , d/b{bind d}bind d/bd{bind d}bind d/xd{~ d}bd/ld{, d}
bd/lw/Lw ld/lc/Lc ld/lj/Lj ld/sg/setgray ld/bn/bind ld/L2? F/languagelevel
where{! languagelevel 2 ge{! T}if}if d/L3? F/languagelevel where{!
languagelevel 3 ge{! T}if}if d/g{@ not{U/DefIf_save save put}if U/DefIf_bool 2
^ put}b/DefIf_El{if U/DefIf_bool get not @{U/DefIf_save get restore}if}b/e{
DefIf_El !}b/self & d/reinitialize{[/TextInit/GraphInit/UtilsInit counttomark{
@ where{self eq}{F}?{cvx exec}{!}?}repeat cleartomark}b/initialize{`{
/ADO_mxRot ~ d/TextInitialised? F d reinitialize E}{U/Pscript_Win_Data 230
dict @ ` put/ADO_mxRot ~ d/TextInitialised? F d reinitialize}?}b/terminate{!{&
self eq{exit}{E}?}loop E}b/suspend/terminate , d/resume{` Pscript_Win_Data `}b
/snap{transform 0.25 sub round 0.25 add ~ 0.25 sub round 0.25 add ~ itransform
}b/dsnap{dtransform round ~ round ~ idtransform}b U<04>cvn{}put/setjn{{
statusdict/jobname known{statusdict/jobname 3 -1 $ put}if}stopped cleartomark}
b/solid{[]0 setdash}b/setdsh{0 setdash}b/colspRefresh{}b/rp{4 2 $ M 1 ^ 0 - 0
~ - neg 0 -}b/rr{1 ^ 0 - 0 ~ - neg 0 - C}b/CTMsave{globaldict ` currentglobal
T setglobal/SavedCTM matrix currentmatrix d setglobal E}b/CTMrestore{
globaldict ` currentglobal T setglobal/SavedCTM where{! SavedCTM setmatrix}if
setglobal E}b/emuxs{! ! currentpoint( )@ 0 6 -1 $ put S ~ 3 ^ 3 ^ get add ~ M
1 add}b/XSE{version cvi 2015 ge{XS}{0/emuxs , 4 -1 $ cshow ! !}?}b
%%EndResource
%%BeginResource: procset AdobePS_Win_Utils_L2 4.2 0
/colspA/DeviceGray d/colspABC/DeviceRGB d/setAorABC{{colspA}{colspABC}?
setcolorspace}b/rf/rectfill , d/fx{1 1 dtransform @ 0 ge{1 sub 0.5}{1 add -0.5
}? 3 -1 $ @ 0 ge{1 sub 0.5}{1 add -0.5}? 3 1 $ 4 1 $ idtransform 4 -2 $
idtransform}b/BZ{4 -2 $ snap + +S fx rf}b/rs/rectstroke , d/rc/rectclip , d/sg
{@ @ setcolor}b/sco{setcolor}b/colspRefresh{colspABC setcolorspace}b/sgco{{sg
}{sco}?}b/UtilsInit{currentglobal{F setglobal}if}b/resourcestatus where{!
/ColorRendering/ProcSet resourcestatus{! ! T}{F}?}{F}? not{/ColorRendering<<
/GetHalftoneName{currenthalftone @/HalftoneName known{/HalftoneName get}{!
/none}?}bn/GetPageDeviceName{currentpagedevice @/PageDeviceName known{
/PageDeviceName get @ null eq{!/none}if}{!/none}?}bn/GetSubstituteCRD{!
/DefaultColorRendering/ColorRendering resourcestatus{! !/DefaultColorRendering
}{(DefaultColorRendering*){cvn exit}127 string/ColorRendering resourceforall}?
}bn>>/defineresource where{!/ProcSet defineresource !}{! !}?}if/buildcrdname{
/ColorRendering/ProcSet findresource ` mark GetHalftoneName @ type @/nametype
ne ~/stringtype ne and{!/none}if(.)GetPageDeviceName @ type @/nametype ne ~
/stringtype ne and{!/none}if(.)5 ^ 0 5 -1 1{^ length add}for string 6 1 $ 5 ^
5{~ 1 ^ cvs length 1 ^ length 1 ^ sub getinterval}repeat ! cvn 3 1 $ ! ! E}b
/definecolorrendering{~ buildcrdname ~/ColorRendering defineresource !}b
/findcolorrendering where{!}{/findcolorrendering{buildcrdname @/ColorRendering
resourcestatus{! ! T}{/ColorRendering/ProcSet findresource ` GetSubstituteCRD
E F}?}b}?/selectcolorrendering{findcolorrendering !/ColorRendering
findresource setcolorrendering}b/ExecWMForm{execform}b/setpagedevice where{!
/realstpgdev/setpagedevice ld}if/SC_topddict 0 d/SC_spdict 0 d/dopgdev{
Pscript_Win_Data/setpagedevice undef SC_topddict @ length 0 gt{realstpgdev}if}
bd/stpgdev{SC_topddict @ 3 -1 ${SC_spdict 2 ^ known{SC_spdict 2 ^ get @ 3 -1 $
{put @}forall ! put @}{put @}?}forall ! !}bd/ststpgdev{Pscript_Win_Data
/setpagedevice/stpgdev , put/SC_topddict 0 dict store/SC_spdict 3 dict `
/InputAttributes 0 dict d/Policies 0 dict d/OutputAttributes 0 dict d & E
store}d
%%EndResource
%%BeginResource: procset AdobePS_Win_Clip_Emul 4.2 0
L3? not{/clipsave/: , d/cliprestore{U `/curr_cs currentcolorspace d/curr_cd
currentcolorrendering d/curr_color[currentcolor]d/curr_font currentfont d
/curr_lc currentlinecap d/curr_lj currentlinejoin d/curr_lw currentlinewidth d
/curr_dash[currentdash]d/curr_ml currentmiterlimit d ; curr_cs setcolorspace
curr_cd setcolorrendering curr_color{}forall setcolor curr_font Ji curr_lc Lc
curr_lj Lj curr_lw Lw curr_dash{}forall setdash curr_ml setmiterlimit E}bind d
}if/cs/clipsave , d/cr/cliprestore , d
%%EndResource
end
%%EndResource
%%BeginFeature: *Copies 1
%%Empty Option
%%EndFeature
%%EndProlog
%%BeginSetup
statusdict begin (%%[ ProductName: ) print product print ( ]%%)= flush end
/findresource where{pop mark{/CIDParams /ProcSet findresource /SetBuildCompatible get true exch exec}stopped cleartomark}if
[ 1 0 0 1 0 0 ] false AdobePS_Win_Driver_Incr_L2 dup /initialize get exec
%%BeginNonPPDFeature: JobTimeout 0
featurebegin{0
/languagelevel where{pop languagelevel}{1}ifelse 2 ge{1 dict dup/JobTimeout 4 -1 roll put setuserparams}{statusdict/setjobtimeout get exec}ifelse
}featurecleanup
%%EndNonPPDFeature
%%BeginNonPPDFeature: WaitTimeout 240
featurebegin{240
/languagelevel where{pop languagelevel}{1}ifelse 2 ge{1 dict dup/WaitTimeout 4 -1 roll put setuserparams}{statusdict/waittimeout 3 -1 roll put}ifelse
}featurecleanup
%%EndNonPPDFeature
featurebegin{
%%BeginFeature: *Resolution 600dpi
/XJXsetresolution where { pop ([600 600]) XJXsetresolution } if
%%EndFeature
}featurecleanup
featurebegin{ ststpgdev
%%BeginFeature: *EFLandscape EFLandscapeDEF
%%EndFeature
%%BeginFeature: *EFUserRotate180 EFUserRotate180DEF
%%EndFeature
%%BeginFeature: *InputSlot AutoSelectTray
%%EndFeature
dopgdev }featurecleanup
featurebegin{
%%BeginFeature: *PageSize A4
/XJXsetpagesize where { pop (A4) XJXsetpagesize } if
%%EndFeature
}featurecleanup
featurebegin{ ststpgdev
%%BeginFeature: *EFDestination Printer
/XJXsetdestination where { pop 0 XJXsetdestination } if
%%EndFeature
%%BeginFeature: *MediaType Plain
/XJXsetmediatype where { pop 0 XJXsetmediatype } if
%%EndFeature
%%BeginFeature: *EFFinishing Sort
/XJXsetsorter where { pop 1 XJXsetsorter } if
/XJXsetcollate where { pop false XJXsetcollate } if
/XJXsetstapler where { pop 0 XJXsetstapler } if
%%EndFeature
%%BeginFeature: *EFRefine True
/XJXsetrefine where { pop 1 XJXsetrefine } if
%%EndFeature
%%BeginFeature: *EFDuplexing None
/XJXSetEngineDuplex where { pop 0 XJXSetEngineDuplex } if
/XJXSetEngineBinding where { pop 0 XJXSetEngineBinding } if
%%EndFeature
%%BeginFeature: *TonerReduction False
/XJXsettonermode where { pop 0 XJXsettonermode } if
%%EndFeature
%%BeginFeature: *EFDarkness 5
/XJXsetdensity where { pop 5 XJXsetdensity } if
%%EndFeature
%%BeginFeature: *EFFirstPage None
/XJXsetFirstPageTray where { pop 0 XJXsetFirstPageTray } if
%%EndFeature
dopgdev }featurecleanup
featurebegin{
%%BeginFeature: *EFBooklet False
/XJXsetbooklet where { pop 0 XJXsetbooklet } if
%%EndFeature
}featurecleanup
1 setlinecap 1 setlinejoin
/mysetup [ .12 0 0 -.12 8 834 ] def
userdict begin /savelevel0 save def end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
featurebegin{ ststpgdev
%%BeginFeature: *EFMailboxOption False
%%EndFeature
%%BeginFeature: *EFDeckOption False
%%EndFeature
%%BeginFeature: *EFLowTrayOption None
%%EndFeature
%%BeginFeature: *EFFinisherOption None
%%EndFeature
dopgdev }featurecleanup
mysetup concat colspRefresh
%%EndPageSetup
AdobePS_Win_Driver_Incr_L2 begin
%%BeginResource: procset AdobePS_Win_Text 4.2 0
/TextInit{TextInitialised? not{/Pscript_Windows_Font & d/TextInitialised? T d
/fM[1 0 0 -1 0 0]d/mFM matrix d/iMat[1 0 0.212557 neg 1 0 0]d}if}b/copyfont{1
^ length add dict `{1 ^/FID ne{d}{! !}?}forall & E}b/EncodeDict 9 dict d
/bullets{{/bullet}repeat}b/rF{3 copyfont @ ` ~ EncodeDict ~ get/Encoding ~ &
/CharStrings known{CharStrings/Eth known not{! EncodeDict/ANSIEncodingOld get}
if}if d E}b/FDV/FDepVector d/pd_scratch 128 string d/pd_concatnames{2 copy cvs
length 3 ^ 2 ^ cvs length @ 3 1 $ add 1 add string @ @ @ 0 9 -1 $ 7 ^ cvs
putinterval 3 ^ 45 put 5 -2 $ cvs 4 -1 $ 1 add ~ putinterval cvn}b
/pd_genunqname{pd_Incr @ 1 add/pd_Incr ~ d pd_scratch cvs cvn pd_InstName ~
pd_scratch pd_concatnames}b/pd_GetAdoNotDefFont{U(AdoNotDefFont)2 copy known{
get}{@ 11 dict `/FontName 1 ^ d/FontMatrix matrix d/FontType 0 d/FMapType 2 d
/Encoding[0 0 0 0]d/FDepVector[/NotDefFont findfont]d & E definefont @ 4 1 $
put}?}b/pd_FCIsCovered{@/SubsVector get @ 0 ~{add}forall 256 ge{! ! T}{length
1 sub ~/Encoding get ~ get F}?}b/pd_CoverFCRange{@ pd_FCIsCovered not{~ @ FDV
2 copy get @ 6 -1 $ pd_GetAdoNotDefFont put put}if}b/pd_RKSJ2Ext{{(Ext-RKSJ-H)
}{(Ext-RKSJ-V)}? ~ @ length @ 6 sub ~ 4 add string @ @ 0 6 -1 $ @ length
string cvs putinterval 4 2 $ ~ putinterval cvn}b/pd_FindExtFont{pd_RKSJ2Ext @{
findfont}stopped{! ! F}{@/FontName 2 copy known{get 3 -1 $ eq @ not{~ !}if}{4{
!}repeat F}?}?}b/pd_AddEm87{pd_FindExtFont{FDV get 2 get FDV get 7 get ~ @ FDV
2 copy get @ length array copy @ 2 2 copy get 0 copyfont @ FDV 2 copy get @
length @ @ 1 add array @ 0 6 -1 $ putinterval @ 4 2 $ 6 1 $ 14 -1 $ put put 1
^/Encoding 2 copy get @ length array copy @ 6 6 -1 $ put put @/FontName
pd_genunqname @ 4 1 $ put ~ definefont put put}if pd_CoverFCRange}b/mF{@ 7 1 $
findfont ~{@/Encoding get @ StandardEncoding eq{! T}{{ISOLatin1Encoding}
stopped{! F}{eq}?{T}{@ ` T 32 1 127{Encoding 1 ^ get StandardEncoding 3 -1 $
get eq and}for E}?}?}{F}?{1 ^ ~ rF}{0 copyfont}? 6 -2 ${T pd_AddEm87 ~ !}{! ~
!/pd_charset @ where{~ get 128 eq{@ FDV 2 copy get @ length array copy put
pd_CoverFCRange}if}{!}?}? 2 ^ ~ definefont fM 5 4 -1 $ put fM 4 0 put fM
makefont Pscript_Windows_Font 3 1 $ put}b/pd_IsModeSwitchAble{F/resourcestatus
where{!/CIDParams/ProcSet 2 copy resourcestatus{! ! findresource @
/SetBuildCompatible known ~/GetBuildCompatible known and ~ 0}if ! !}if}b
/pd_LParams 8 dict d/pd_DefLocalParams{pd_LParams `/pd_InstName ~ d/pd_Incr 0
d @/pd_charset ~ d/pd_SwitchAble pd_IsModeSwitchAble d/pd_PreviousMode T d ! &
E}b/pd_IsCID-KeyedFont{/resourcestatus where{!{/CMap resourcestatus}stopped{!
! ! F}{{! !/CIDFont resourcestatus{! ! T}{F}?}{! F}?}?}{! ! F}?}b
/pd_SwitchToNative{F pd_SwitchAble{!/CIDParams/ProcSet findresource @
/GetBuildCompatible get exec F 3 -1 $/SetBuildCompatible get exec}if
/pd_PreviousMode ~ d}b/pd_IsCIDCapable{/CIDInit/ProcSet resourcestatus @{! ! !
T}if}b/pd_mF_Finally{fM @ 4 0 put @ 5 5 -1 $ put makefont Pscript_Windows_Font
3 1 $ put}b/pd_SwitchToPrevious{pd_SwitchAble{pd_PreviousMode/CIDParams
/ProcSet findresource/SetBuildCompatible get exec}if}b/pd_gen90ms{{
/90ms-RKSJ-H}{/90ms-RKSJ-V}? pd_scratch pd_concatnames}b/pd_GetHKPos{@
/SubsVector get @ length 1 sub 0 1 ^ 1 1 3 -1 ${~ 3 ^ 2 ^ get add @ 160 eq{4 2
$ ! ! ! exit}{~ 2 ^ ge{! ! ! 0}if}?}for ~/Encoding get ~ get}b/mF_83pv_CID{T
pd_gen90ms[4 ^[5 -2 $ ~]/CIDInit/ProcSet findresource ` beginrearrangedfont 1
usefont 2 beginbfrange<00><80><00><a0><df><a0>endbfrange endrearrangedfont E
cleartomark 1 ^ findfont}b/mF_83pv_CSL{T pd_gen90ms ~ findfont @ pd_GetHKPos ~
FDV get @ 0 get 3 1 $ ~ get 3 -1 $ findfont 0 copyfont @ pd_GetHKPos ~ @ FDV 2
copy get @ length array copy @ 0 9 -1 $ 2 ^ 10 -2 $ ~ put put put 2 ^ ~
definefont}b/mF_FE{6 -1 $ ! 6 ^ pd_DefLocalParams ` 2 copy pd_IsCID-KeyedFont{
4 -1 $ ! 6 -1 ${3 -1 $ ! !/90ms-RKSJ-H 2 copy pd_scratch pd_concatnames 3 1 $}
if pd_SwitchToNative @/83pv-RKSJ-H eq{! pd_IsCIDCapable{mF_83pv_CID}{
mF_83pv_CSL}?}{4 ^ ~[4 -1 $]composefont ~ !}? pd_mF_Finally
pd_SwitchToPrevious}{! !/0 3 1 $ mF}? E}b/xF{scalefont Pscript_Windows_Font 3
1 $ put}b/xMF{mFM astore makefont Pscript_Windows_Font 3 1 $ put}b/xF2
/scalefont , d/xMF2{mFM astore makefont}b/sLT{: Lw -M currentpoint snap M 0 -
0 Lc K ;}b/xUP null d/yUP null d/uW null d/xSP null d/ySP null d/sW null d/sSU
{N/uW ~ d/yUP ~ d/xUP ~ d}b/sU{xUP yUP uW sLT}b/sST{N/sW ~ d/ySP ~ d/xSP ~ d}b
/sT{xSP ySP sW sLT}b/sR{: + R 0 0 M}b/sRxy{: matrix astore concat 0 0 M}b/eR/;
, d/AddOrigFP{{&/FontInfo known{&/FontInfo get length 6 add}{6}? dict `
/WinPitchAndFamily ~ d/WinCharSet ~ d/OrigFontType ~ d/OrigFontStyle ~ d
/OrigFontName ~ d & E/FontInfo ~ d}{! ! ! ! !}?}b/G00GFFEncoding[/G00/G01/G02
/G03/G04/G05/G06/G07/G08/G09/G0A/G0B/G0C/G0D/G0E/G0F/G10/G11/G12/G13/G14/G15
/G16/G17/G18/G19/G1A/G1B/G1C/G1D/G1E/G1F/G20/G21/G22/G23/G24/G25/G26/G27/G28
/G29/G2A/G2B/G2C/G2D/G2E/G2F/G30/G31/G32/G33/G34/G35/G36/G37/G38/G39/G3A/G3B
/G3C/G3D/G3E/G3F/G40/G41/G42/G43/G44/G45/G46/G47/G48/G49/G4A/G4B/G4C/G4D/G4E
/G4F/G50/G51/G52/G53/G54/G55/G56/G57/G58/G59/G5A/G5B/G5C/G5D/G5E/G5F/G60/G61
/G62/G63/G64/G65/G66/G67/G68/G69/G6A/G6B/G6C/G6D/G6E/G6F/G70/G71/G72/G73/G74
/G75/G76/G77/G78/G79/G7A/G7B/G7C/G7D/G7E/G7F/G80/G81/G82/G83/G84/G85/G86/G87
/G88/G89/G8A/G8B/G8C/G8D/G8E/G8F/G90/G91/G92/G93/G94/G95/G96/G97/G98/G99/G9A
/G9B/G9C/G9D/G9E/G9F/GA0/GA1/GA2/GA3/GA4/GA5/GA6/GA7/GA8/GA9/GAA/GAB/GAC/GAD
/GAE/GAF/GB0/GB1/GB2/GB3/GB4/GB5/GB6/GB7/GB8/GB9/GBA/GBB/GBC/GBD/GBE/GBF/GC0
/GC1/GC2/GC3/GC4/GC5/GC6/GC7/GC8/GC9/GCA/GCB/GCC/GCD/GCE/GCF/GD0/GD1/GD2/GD3
/GD4/GD5/GD6/GD7/GD8/GD9/GDA/GDB/GDC/GDD/GDE/GDF/GE0/GE1/GE2/GE3/GE4/GE5/GE6
/GE7/GE8/GE9/GEA/GEB/GEC/GED/GEE/GEF/GF0/GF1/GF2/GF3/GF4/GF5/GF6/GF7/GF8/GF9
/GFA/GFB/GFC/GFD/GFE/GFF]readonly d
%%EndResource
%%BeginResource: procset AdobePS_Win_Encoding 4.2 0
/ANSIEncoding[/grave/acute/circumflex/tilde/macron/breve/dotaccent/dieresis
/ring/cedilla/hungarumlaut/ogonek/caron/dotlessi 18 bullets StandardEncoding
32 95 getinterval aload !/.notdef/.notdef/.notdef/quotesinglbase/florin
/quotedblbase/ellipsis/dagger/daggerdbl/circumflex/perthousand/Scaron
/guilsinglleft/OE/.notdef/.notdef/.notdef/.notdef/quoteleft/quoteright
/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark/scaron
/guilsinglright/oe/.notdef/.notdef/Ydieresis{ISOLatin1Encoding}stopped{96
bullets}{160 96 getinterval aload !}?]d ANSIEncoding @ 39/quotesingle put 96
/grave put/ANSIEncodingOld ANSIEncoding 256 array copy d ANSIEncodingOld @[138
153 154 169 172 174 177 178 179 181 185 188 189 190 208 215 221 222 240 247
253 254]{/bullet put @}forall 166/bar put 176/ring put EncodeDict/0
ANSIEncoding put EncodeDict/ANSIEncodingOld ANSIEncodingOld put
%%EndResource
end reinitialize
AdobePS_Win_Driver_Incr_L2 begin
%%BeginResource: procset AdobePS_Win_Type42 4.2 0
/asc42 0 d/sF42{/asc42 ~ d Ji}bind d/bS42{0 asc42 -M}bind d/eS42{0 asc42 neg
-M}b/Type42Encoding{/Encoding G00GFFEncoding d}bind d/Type42DictBegin{
/PaintType 0 d/FontType 42 d/FontMatrix[1 0 0 1 0 0]d ! 4 array astore cvx
/FontBBox ~ d/sfnts}bind d/t42CSB{/CharStrings 266 dict `/.notdef 0 d 0 1 255{
G00GFFEncoding ~ get 0 d}for & E d}bind d/T42NumChars 0 d/T42StartIndex 0 d
/t42BBC{/T42NumChars ~ d/T42StartIndex ~ d}bind d/t42EBC{1 1 T42NumChars{!
CharStrings 3 1 $ put}for}bind d/t42CSE{}bind d/Is2015?{version cvi 2015 ge}
bind d/AllocGlyphStorage{Is2015?{!}{{string}forall}?}bind d/PrepFor2015{
Is2015?{/GlyphDirectory 16 dict d sfnts 0 get @ 2 ^(glyx)putinterval 2 ^(locx)
putinterval ! !}{! !}?}bind d/AddT42Char{Is2015?{findfont/GlyphDirectory get `
d E ! !}{findfont/sfnts get 4 ^ get 3 ^ 2 ^ putinterval ! ! ! !}?}bind d
/Type42DescendantEncoding{/Type42DescendantEncoding G00GFFEncoding d}bind d
/Type0Encoding{/Encoding ~ @ array @ 3 -1 $ 1 sub 0 1 3 -1 ${@ put @}for ! d}
bind d/Type0DictBegin{/FontType 0 d/FMapType 2 d/FontMatrix[1 0 0 1 0 0]d
/sfnts}bind d/Type42DescendantCharString{/GlyphIndex ~ d/maxGlyphs ~ d 0 1 3
-1 $ 1 sub{@ @ 10 lt{! 11 string}{100 lt{12 string}{13 string}?}? @ 0
(CharString)putinterval @ 3 -1 $ 3 string cvs 10 ~ putinterval cvn 256 dict @
3 1 $ d Type42DescendantEncoding{1 ^ ~ GlyphIndex maxGlyphs lt{GlyphIndex put
/GlyphIndex GlyphIndex 1 add d}{! !}?}forall !}for}bind d/AddGDirDict{Is2015?{
/GlyphDirectory get/GlyphDirectory ~ d}{!}?}bind d/RD{string currentfile ~
readstring !}executeonly d/B42CS{{/GITable ~ d/BeginCharCode GITable 0 get d
/EndCharCode GITable 1 get d CharStrings ` BeginCharCode 1 EndCharCode{@
Encoding ~ get ~ BeginCharCode sub 2 add GITable ~ get d}for E}{!}?}bind d
/CIDT42Hdr{25 dict `{/XUID ~ d}if @/WMode ~ d 0 gt{/Metrics2 16 dict d
/CDevProc{! @ 1.9 gt 3 ^ neg 0.99 gt or{! 0.85}{4 ^ add}?}bind d/FontMatrix[0
1 -1 0 0 0]d}{/FontMatrix[1 0 0 1 0 0]d}?/Encoding StandardEncoding d
/CharStrings 2 dict @ `/.notdef 0 d E d/CIDMap ~ d/CIDCount ~ d/CIDFontName ~
d AddOrigFP/CIDSystemInfo 3 dict @ ` 3 -1 $/Supplement ~ d 3 -1 $/Ordering ~ d
3 -1 $/Registry ~ d E d/GDBytes 2 d/CIDFontType 2 d/FontType 42 d/PaintType 0
d ! 4 array astore cvx/FontBBox ~ d/sfnts}bind d/T0AddT42Mtx2{/CIDFont
findresource/Metrics2 get ` d E}bind d/UpdateCIDMap{/CIDFont findresource
/CIDMap get 3 1 $ putinterval}d/T0AddT42Char{/CIDFont findresource
/GlyphDirectory get ` d E ! !}bind d/CIDT42Tlr{CIDFontName & E/CIDFont
defineresource !}d/CopyT42Hdr{findfont @ length dict `{1 ^/FID ne{1 ^
/CharStrings ne{d}{@ length dict `{1 ^/.notdef ne{! !}{d}?}forall & E d}?}{! !
}?}forall & E `/FontName ~ d/FontType 42 d B42CS FontName & E definefont !}
bind d/t42MF{findfont 0 copyfont `/FontName ~ d/Encoding G00GFFEncoding d get
/CharStrings ~ @/.notdef 0 put d & @ E/FontName get ~ definefont !}bind d
%%EndResource
end reinitialize
8856 VM?
15 dict begin
/FontName /MSTT31ec7d9767t def
2 Type0Encoding
Type42DescendantEncoding
2 273 0 Type42DescendantCharString
Type0DictBegin
[ < 00010000000A000A000A000A6376742078047250000000AC0000012C6670676D0211C261000001
D8000001D8676C79665479902900000CE40000A43A6865616467F049C0000003B0000000366868
65610E7608E9000003E800000024686D747860EE576B0000040C000004446C6F63610056B35A00
000850000004486D617870023A00FA00000C9800000020707265700E9800A700000CB80000002C
6764697200000000000000000000000000060008000E002800360060FE62FE73FFE90000038703
A605660598028D01C301660156013F013D0137012F01290127010000FC00C700C500C300AC0098
0096009300910083007F007D007B006800640062006000580056005400520050004C004A004800
44004200330021092F06A00666061F059E059A04A204960485042B041203F2038F038B037B036F
036A034E030C02D302CB0291028102790275026F02540225021F021901FE01FC01F801F401F201
E901E501DD01DB01D701CF01C501BE01BA01B6018F0162015C01580146013F013D0139012F012D
0129012701230121011D01190117010E010C01060104010000FC00FA00F600F200F000EE00E900
E700E300DF00DD00D300CB00C900C700C500C300C100B0009A0091007B006D006A00620060004A
0033002140161514131211100F0E0D0C0B0A090807060504030201002CB200800043208A628A23
4266562D2CB22A0000435478B0002B58173959B0002B58173C59B0002B58B00A2A59B0014310B0
002B58173C59B0002B58B00A2A592D2C2B2D2C2BB0022A2D2CB0022A2D2CB00162B0002342B101
032542204620686164B0032546206820B0044323612064B140408A545821212121B100211C5950
582121B1000425204668B007254561B0005158211BB0054338591B6164595358232F23F91B2F23
E959B0012B2D2CB00162B0002342B101032542204620686164B0032546206861645358232F23F9
1B2F23E959B0012B2D2CB00162B0002342B1010525423FE9B0012B2D2CB00162B0002342B10103
25423FF9B0012B2D2C111217392D2CC12D2CB2000100432020B004438A45B00343616960446042
2D2C4520B0032342B201020543764323438A23616960B004234218B00B2A2D2CB0002342184569
B0406120B000515821B0411BB04061B0005158B0461BB0485959B00523424520B001234269B002
2342B00C2A182D2C204568442D2CBA00110005FFC0422B2D2CB2110500422B2D2C2020B102038A
4223B0016142466820B0405458B0406059B00423422D2CB1020343114312173931002D2C2E2D2C
C52D2C3FB0142A2D0001000000010000A165611D5F0F3CF5000308000000000000000000000000
0000000000FF8BFD89094E073B00000006000200010000000000010000059AFE4E00000A37FF8B
FF52094E000100000000000000000000000000000111060001000000000000000000049A00F004
9A01E7049A010A049A00C5049A00D3049A011F06F40283049A0110049A00E1049A00A4028D00A6
04170112028DFFF2028D00AC041700DF041700DF04D3011F04D3004E04D30144062100DF062100
DF049A0000093300000000000003930081028D005E02CFFF8B055E003D051D003D051D003D07AA
003D07AA003D049A006202CD00C5049A010207AA0083049A008307AA008307270062028D00A603
9300DD03930083049A009607270083028D00A60310001B028D00A6049A0083049A005C049A00AC
049A0075049A0062049A0042049A0075049A0062049A0083049A0062049A0062028D00A6028D00
A6072700C307270083072700C3045800830727008306F40054068B005006A40083070E0050060A
005005C90050073B008307330050037D004204C1002F073500500587005008BA00520733005006
E90083064A005006E9008306E50050051D0083066600560714005006F400350983003106F40046
06F4002705A00083028D0106049A0085028D003105A00110072700C5028D008504790042051D00
4A0417004E051D004E0437004202CF0054049A0042051D005A028D005E02CFFF8B04DB004A028D
005E07AA005A051D005A049A0042051D004A04DB004E03C9004A03A2004E0393002B051D005A04
DB003506A4003304DB002D04DB002D04170042049A00A0028D0108049A00A005A000C503100000
06F4000006F4000006A4000006A40000070E0000060A0000060A0000073B000005870000058700
0005870050073300000733000006BA005A06E9000006E5000006E50000051D0000051D0083051D
00000666000006660000071400000714000006F4002705A0000005A0000005A000000817000003
7D0000051D004E043B00A404790000047900000417000004170000067B00000437000004370000
049A0000028D000004040000028D0023051D0000051D0000051D005A049A000003C9000003C900
0003A2000003A2004E03A20000040E000003930000051D0000051D000004DB002D041700000417
000004170000055E000002CD00C50458008305E1008306F4005406F4005406F4005406F4005406
F4005406F400540854005406A40083060A0050060A0050060A0050060A0050037D0042037D0042
037D0042037D0042070E00500733005006E9008306E9008306E9008306E9008306E90083095A00
AA072700830714005007140050071400500714005006F4002705C700500A370000047900420479
00420479004204790042047900420479004206A4004E0417004E04370042043700420437004204
370042028DFFFC028D005E028D001703100025049A0042051D005A049A0042049A0042049A0042
049A0042049A004207270042049A0042051D005A051D005A051D005A051D005A04DB002D051D00
2504C7004A0310000002AA000002AA000002AA000002AA000002AA000002AA000002AA000002AA
000002AA000002AA000002AA000002AA000002AA0000000000000000004A0000004A0000004A00
00008A000000CA0000010A00000174000001E200000246000002C4000003000000035A0000038C
000003D400000438000004AE00000530000005A200000614000006E8000007C40000089E000009
7200000A4600000A7800000AAA00000AAA00000B4400000B9A00000C1A00000D4800000E2A0000
0F0A0000104C000011A40000120200001276000012D6000013EC00001514000016B80000181200
001890000019100000199800001A7A00001B0000001B8000001BB200001BF600001C4E00001D10
00001D8600001E5A00001F8000002014000021280000223A000022CA000023B8000024BA000025
2A000025D400002646000026BE000027300000280E000029A600002A6800002B4E00002C3A0000
2CDA00002DA200002E6200002F7C00003046000030B60000315A00003268000032E2000033CE00
0034A800003570000036280000378200003892000039B200003A4800003B1A00003BB600003C9A
00003DA200003E7000003F0E00003F5800003F9C00003FE2000040200000406A000040E0000041
D60000429C000043660000444400004518000045D20000475000004824000048A6000049580000
4A4800004AAC00004BDE00004CC000004D7400004E5200004F2600004FDE000050EE0000518400
005238000052DC000053D0000054BA0000559800005630000056EC00005732000057E800005858
000058580000585800005858000058580000585800005858000058580000585800005858000058
5800005858000058FA000058FA000058FA00005A0600005A0600005A0600005A0600005A060000
5B5000005B5000005B5000005B5000005B5000005B5000005C6C00005C6C00005C6C00005C6C00
005C6C00005C6C00005D6600005EA200005EA200005EA200005EA200005EA200005EA200005EA2
00005EA200005EA200005EA200005EA200005F2A00005F2A00005F2A0000602E0000602E000060
2E0000602E0000602E0000616600006166000061660000616600006166000061660000629C0000
629C0000629C0000629C0000629C00006312000063F00000654A000066300000671A0000680000
00691600006A3400006B5600006C8200006DAC00006E9C00006F8E0000707E000071A000007238
000072D20000736E000074320000751600007642000077360000782C0000792400007A4200007B
5E00007CAE00007DCA00007EC600007FC4000080C2000081EA000082E8000083B8000083B80000
84D2000085EE0000870C000088520000899E00008B0800008C7A00008D8800008E8800008F8A00
00908A000091B400009236000092B600009336000094040000950C000096420000972400009806
000098EA000099F000009AFE00009C7000009D7200009E4E00009F2A0000A0080000A1200000A2
280000A3020000A43A0000A43A0000A43A0000A43A0000A43A0000A43A0000A43A0000A43A0000
A43A0000A43A0000A43A0000A43A0000A43A0000A43A0000A43A00010000011100720004000000
000002000C00060016000000FE007F0004000140220730052C05290B1E0C1205297F0E0D0A920B
83067F0776086F366A067F7F360D3B008DB8033C851D2B2B00>
[ 16285 14729 11033 ] AllocGlyphStorage
] def
108 44 PrepFor2015
currentdict dup /FontName get exch
end
def
25 dict begin
/FontName /MSTT31ec7d9767t00 def
4479 4415 2497 1888 16#1d6165a1 Type42DictBegin
MSTT31ec7d9767t /sfnts get def
/Encoding MSTT31ec7d9767t /Type42DescendantEncoding get def
MSTT31ec7d9767t AddGDirDict
/CharStrings MSTT31ec7d9767t /CharString0 get dup /.notdef 0 put def
currentdict dup /FontName get exch definefont pop
end
25 dict begin
/FontName /MSTT31ec7d9767t01 def
4479 4415 2497 1888 16#1d6165a1 Type42DictBegin
MSTT31ec7d9767t /sfnts get def
/Encoding MSTT31ec7d9767t /Type42DescendantEncoding get def
MSTT31ec7d9767t AddGDirDict
/CharStrings MSTT31ec7d9767t /CharString1 get dup /.notdef 0 put def
currentdict dup /FontName get exch definefont pop
end
MSTT31ec7d9767t dup
/FDepVector [/MSTT31ec7d9767t00 findfont
/MSTT31ec7d9767t01 findfont
] put
dup /FontName get exch definefont pop
false /F0 .9034 /0 false (MSTT31ec7d9767t) cvn mF
332 VM?
1 0 0< 00020100000005000500000300070022401B3502060006043500090007020495
03050005950701000602090F032B31002B3021112111271121110100040021FC
420500FB002104BEFB42
> /MSTT31ec7d9767t AddT42Char
1 12358 76< 0001004200000337057D00110036402E080109010229040C0A08000111010F01
0B290D090B07020411010D0915060C0D09040004126F0B02000501130F032B2B
3F2B2B3037331123351633323715231133152623220742E9E9BEBCBFBCE9E9BB
C0BBBF6004BD60060660FB4360060600
> /MSTT31ec7d9767t AddT42Char
/F0S145 F0 145 xF
F0S145 Ji
0 0 0 sco 1099 525 M
bS42 < 004c> S
eS42 332 VM?
2 3138 113< 0001005A000004EC039A00310057404C05030222140908010A01110122300E0A
0D0831281B03302A1A032E1802142916090B070204302A1A03160915070A060A
16011B0111017F131D15052A013106020807027F2801150602330F032B31003F
3F2B2B2B30371134272623353F011D013E023332161716151133152623220735
33113426272623220E021511331526232623220735E91817609CC61E69884C4B
802C4E90818481818E0A111A383E6F56308D6A3521428084600290240B086206
0B25BD4366391C2A469BFDED60060660021341531E2B2F56743EFE4760040206
6000
> /MSTT31ec7d9767t AddT42Char
1159 525 M
bS42 < 0071> S
eS42 332 VM?
2 4162 118< 0001004EFFF4034E03A00047004A40413B391303032A090B0119010801033306
0A0B083D0131012E012A2F2C090B070204442E23220805161F092701412A0291
0F16110535013B018D1F00030602490F032B2B31002B2B30133436373E013332
1737363332161D0114062B012226353426232206070E011514161F011E021514
0607062322270706232226351134363B01321716333237363534262F0126264E
35313B8A5673514808150B11110B290A137B6A3E5823181D5B4D9C4E8A533233
60BA87615E08170A120F0D2917043DE47A3E35644E997AA902913D6E22281A29
2504100DDD0C11130A595F0E170D321D2E3E0F1A0E507C4D4577264B433D0612
0A011B0C1115F429264B39510C1C1686
> /MSTT31ec7d9767t AddT42Char
1248 525 M
bS42 < 0076> S
eS42 332 VM?
2 4434 119< 0001002BFFF4030C0514001F0037402E1401090F091F0101010929070A03080F
2C19090007020406090192151201050601010105017F0B1E0D0602210F032B31
002E2B2B301335323E01353311211521111417163332363D013315140E012322
272E0135112B5D8A48620129FED71F1B3D3544603E6C419E582C2C032D4A74BE
6BFE7960FDC55A2927614978784376453F216737023B
> /MSTT31ec7d9767t AddT42Char
1312 525 M
bS42 < 0077> S
eS42 332 VM?
2 3978 117< 0001004A00000387039A0023004F4043211311030206091A0118010230160A0C
080D010C010A01062908090B0702040C01080915150A140A0801000609020179
1E000105140D0216150283060F050602250F032B2B31003F3F2B2B2B30013437
2206151133152623220735331134272623353F011D013633321E011514062322
26028B297688B29090807E8F18195E9BBB4CBE3765414C31324D02F23A24E6A3
FE99600606600290240B0862060B25C7EC264D3539444300
> /MSTT31ec7d9767t AddT42Char
1375 525 M
bS42 < 0075> S
eS42 332 VM?
2 4584 120< 0001005AFFF404EC039A00280038402D23012601102F22091207010421091B0A
090A170115090921011A0122017F1B15150508017F09020406022A0F032B2B31
003F3F3F2B30252635113427262335251114171E0233323E0135113427262335
2511141716331505350E01232226014C63181760017914122C322C4070401718
5F0177191661FE932A8C565C8C2D3D8801FE240B086211FD5879151011044678
4501AE240B086211FD0027090A600CA24B571300
> /MSTT31ec7d9767t AddT42Char
1441 525 M
bS42 < 0078> S
eS42 332 VM?
2 768 102< 0001004EFFF403D103A000330032402A311A180204041009042D2C0A00081701
102C1E09100702041A010201782E001105760A24000602350F032B31002B2B30
01343726232206070E01151416171E0133323E0137363B011716150E02232226
272E0135343E01373E02332015140623222602B62944513A641F25141F272573
3F416649120416270A130D70AB5F68BF48454820402D2F7A8145016C4B34344D
02E33A270A35303985645A8E3331332A5135120203175370373D423FB362407F
70292C3A1BBD3C434300
> /MSTT31ec7d9767t AddT42Char
1530 525 M
bS42 < 0066> S
eS42 1602 525 M
bS42 < 0077> S
eS42 332 VM?
2 2184 108< 0002005E0000024A0591000F001B002A40201013160C000801040D0F010B0915
080A190B02130700038308021405011D0F032B31003F2B2E2B30373311342726
233525113315262322071322263534363332161514065E9017165B01657F7B7B
7B7BE1425D5C43455B5C600290230C086211FCC660060604545F41415C5B4242
5E00
> /MSTT31ec7d9767t AddT42Char
1665 525 M
bS42 < 006c> S
eS42 332 VM?
2 3364 114< 00020042FFF4045403A00016002E0023401C1D30050A0008292C110900070204
760B170005762300000602300F032B31002B3013343637363332171E02151406
070E01232226272626253426272E01232206070E01151416171E013332363736
364248458EEDED902E3F2049444AC56E6CC54A4449030C101F1F74423F73211F
10101F2270414273201F1001BE66B84183832B70824260B13C403D3D403CB17B
66882D303232302F86666D8E32333132322F9100
> /MSTT31ec7d9767t AddT42Char
1710 525 M
bS42 < 0072> S
eS42 1790 525 M
bS42 < 0071> S
eS42 1880 525 M
bS42 < 0076> S
eS42 332 VM?
2 324 100< 00020042FFF4047503A0002F003D0047403D38352E272503062C30092C30090A
00081C01302F1F091007020419093801280009150135011C017F0E2813052E25
0278000601067D3B220006033F0F032B2B31003F2B2B30011406232226353436
3332171E011511143332161D0114062B01223D010E0123222635343637362535
3427262322071613323E013D010E01070E0115141601934B34344DDA9DC37938
458D0F16160F7DD724A360A4EF7955B3011639375F64422F563F6F425C8F3E39
466C02E33C43433C734A50247742FE1C2F14111611147F23505E6C7F54811F45
07546A3C3D0E22FD19365C39D5051E201B673B435D00
> /MSTT31ec7d9767t AddT42Char
1997 525 M
bS42 < 0064> S
eS42 2076 525 M
bS42 < 0078> S
eS42 332 VM?
2 5172 123< 0001002D000004AC038D0033005240432D25200B04132F2B22031E0915150A13
0A110A080A060A040A250B0903232B091B01241C1A1816110E0C085D1E230505
0A010232282604020006632B30110602350F032B2B31003F3F3F3F3F3F2B2A30
3709012335163332371523173734272623351633323715220706070301331526
2322073533030714171633152623220735323736EE0118FEC3926F6C7E7E50C7
BA1218216A6B5E5C5A2D2D0EFC0156916F6C7E7E50DFD5101C1F6A6B5E5C5A2B
327B0139017960060660EBD20A07086006066006040FFEE4FE6860060660010A
EF0B0808600606600609
> /MSTT31ec7d9767t AddT42Char
2165 525 M
bS42 < 007b> S
eS42 2304 525 M
bS42 < 0064> S
eS42 2383 525 M
bS42 < 0078> S
eS42 2472 525 M
bS42 < 0077> S
eS42 332 VM?
2 1192 104< 00020042FFF403F203A0002800340035402D16141203060C092E30270A000832
290600060C2C1A09000703041614028A032901053401760720080602360F032B
31002B2B30011E011514062321141E0233323637363B01321716150E02232226
272E0135343E01373E0133321326272E01232206070E010703813E33160FFD7B
194C764768A51C091A170804171B7EA6576CC94E494C1E3F2E48BE68D81E033E
1C62373965201E1502032D3CAC620F165D8364325E54180207284F6B333E433F
B3663E7D6F2A423DFE62A4582A2E352F2F705100
> /MSTT31ec7d9767t AddT42Char
2535 525 M
bS42 < 0068> S
eS42 2609 525 M
bS42 < 0078> S
eS42 2699 525 M
bS42 < 0075> S
eS42 2764 525 M
bS42 < 0076> S
eS42 332 VM?
2 970 103< 0002004EFFF404CF058D001E003200444039110F022A220905012A30030A0408
14011301222F16091207020412090C0C080113300912010B01260106017F0C13
170576301C000602340F032B2B31003F3F2B2B30133E01333217113427262335
25111417163315053506232226272E01353436131E0133323637112E02232206
070E01151416DD4DC169997518175E016A191760FE877BA066BA46444348F120
683B538E2B1D495933407126261313031B433C5D01A627080B6010FB0D260A0A
600C66663F4241B16061B4FDC83035524601FA2A371E3433358865658B00
> /MSTT31ec7d9767t AddT42Char
2882 525 M
bS42 < 0067> S
eS42 2971 525 M
bS42 < 0078> S
eS42 332 VM?
1 11874 74< 00010083FFE906C305930048004E40452825022D4009170119012D291D0C0C08
44014501420129403E0B060601020002392809091107030440013E3409450146
012819060200056F213E19056A34110006024A0F032B2B31002B2B302506232E
02270E0123222E01272E0235343E01373621321737363B013216151114062B01
2226272E0323220E01070E01151416171621323E013D01213516333237152311
14061B061F3B293F1835D07570D6C2534A6633336749E30178DFAC93060D100A
131409330B10020A4D7A9F56589B8A344A35384B9B0120467646FED9C7CAADB0
A4100E1C132517434128574641AAC06566C1AB3FC48B8506110BFE0E0914100B
5B9B7842234B3853E59793E952A6284D33E560060660FE460500
> /MSTT31ec7d9767t AddT42Char
3115 525 M
bS42 < 004a> S
eS42 332 VM?
1 14210 85< 00020050FFE906DB057D00350043004F40462F00022E150937010229050C0208
0F0130392E01061D013301153024091107030435013109150400021231013E2F
0992201900050F016A0A3E04063801732F02080603450F032B2B2B2B2B2B3037
331123352120171E01151406070607161F011E0133323E013534363B01321615
140E0123222E013D01342E012321113315262322070123113332373E01353426
27262650DDDD02F40121AB4E5E5E4E505CD317160F4544233A2214111611143C
663D82CE813E6940FF00DFB5B6B2B602CDD9D9C55D2A1A1A2A36896004BD6069
2D915650872D2D174BB5B06C6929452A0F16160F3B693E2D7C70B23F693EFDC6
600606051DFDC64822664D4E69202C1A
> /MSTT31ec7d9767t AddT42Char
3242 525 M
bS42 < 0055> S
eS42 332 VM?
1 11482 72< 00010050000005C70573002C003F4038170102101C1902202202090E01022705
0C020807012A012910201406000122292C09080703042A18060400051221016F
0F020805012E0F032B2B2B2A3037331123352113232E01272E01232111333236
373E01353311233426272E012B011121323E01373E013733032150DDDD04F63F
620D303C3B9C7BFEF85A47581F2010606010201E59475A011A4C7A732E423B16
635FFAE86004B063FE106D9D34341BFDF4101F205946FDC2465A1F2110FDBC0C
29293BB088FDCF00
> /MSTT31ec7d9767t AddT42Char
3362 525 M
bS42 < 0048> S
eS42 332 VM?
1 14770 87< 000100560000060C0566001C003840300F0B02031609150103290D0C02080001
1C011A01162918090B0702041C01180915180E0B0004126F16020005011E0F03
2B2B2B2B2B302521112322070E030723132113232E0127262B01112115262322
070166013A9CA650171F130C03602B05602B600B212C50A69B0139E4E7E4E760
04A6501749566C1D01EFFE117C972C50FB5A60060600
> /MSTT31ec7d9767t AddT42Char
3468 525 M
bS42 < 0057> S
eS42 332 VM?
1 14482 86< 00010083FFE904960593004D0047403E4A493A1C1715061A4009070109011A2A
0D0C0C082E012B0140283209120702044A492E1C0905453D0917110287264501
051E010001923D361206024F0F032B2B31002B2B30133436373E023332173736
3B013216151114062B0122272E012322070615141617051E0215140607062322
262707062B012226351134363B013216151404333236373635342E0127252E01
2683403D3066753FDC846A070E0E0D10110C27180413E0B77647436E54012566
A25D403D80CC7ED94B68070E0E0D100F0E270C10010BDF37602546345E37FEDB
639E5D03F8579D372A2F17726A08100CFE520C111BB3C13B3D614B74123F177C
B66759AB3C793A376809120B01AE0C11110CB2B81F22436D3862470B3D1674A8
> /MSTT31ec7d9767t AddT42Char
3580 525 M
bS42 < 0056> S
eS42 3670 525 M
bS42 < 004c> S
eS42 332 VM?
1 11682 73< 0001005000000564057300290046403E180102111A01222302090F010227050C
020807012911221006000129012701232925090B070304290125091525190604
00051223016F10020805012B0F032B2B2B2B2A3037331123352113232E02272E
012B0111333236373E01353311233426272E022B011121152623220750DDDD04
D53F620A142F2A389774F85444561E1F0E63630F1E143D3A2D540114D3D3B8B6
6004B063FE104E676425331CFDD91020205947FDC1465B1D141805FDD7600606
> /MSTT31ec7d9767t AddT42Char
1844 707 M
bS42 < 0049> S
eS42 1932 707 M
bS42 < 0072> S
eS42 2012 707 M
bS42 < 0075> S
eS42 332 VM?
2 2832 112< 0001005A00000779039A004A0069405E050302271A090D0802120A023B012730
150A0E084A41342D21054943332F200547311E031A291C090B0702044943332F
20051C0915070A060A1C0121017F192314052F01340112017F2D36150643014A
06020807027F41011506034C0F032B31003F3F2B2B2B30371134272623353F01
1D013E013332161716173E013332171615113315262322073533113427262322
0E0215113315262322073533113426272623220E021511331526232623220735
E91817609CC62DBD734B802C351131B36AAA4E508D818183818F1D173B3E7058
2F90818481818E091417393F7056308D6A3521428084600290240B0862060B25
BD657D1C2A3051596E46469BFDED6006066002137B372B2F58723EFE47600606
6002134150212B2F56743EFE476004020660
> /MSTT31ec7d9767t AddT42Char
2078 707 M
bS42 < 0070> S
eS42 2213 707 M
bS42 < 0064> S
eS42 2291 707 M
bS42 < 0077> S
eS42 332 VM?
1 12904 79< 0001005000000523057D00150032402A1301020C09080109010229040C0A0800
010C29150908070204060C1309040004126F0B02000501170F032B2B3F2B2B30
373311233516333237152111333236373E013733032150DDDDB5B9D2D4FEECD7
5296353C360D6040FB6D6004BD60060660FB4339383EB171FDCF
> /MSTT31ec7d9767t AddT42Char
2408 707 M
bS42 < 004f> S
eS42 332 VM?
1 10662 68< 000200540000069E0598000200240048403E161402060B0928010600061E1103
0324201003220E020B290C090B07020402242010030C09151B0C200403010412
16140907060006540C11010501260F032B2B3F2B2E2B2B300121031333032103
141716331526232207353236373637013E013B01321701331526232207023101
D5E9C8C379FDDB70333C4987897678334B1A3603020A061F122524140212C9A3
A1BCB901EC023BFC39012BFEF0090A086006066003030A0B04F80E1725FAED60
0606
> /MSTT31ec7d9767t AddT42Char
/F0S100 F0 100 xF
F0S100 Ji
2447 718 M
bS42 < 0044> S
eS42 F0S145 Ji
2507 707 M
bS42 < 0057> S
eS42 2592 739 M
bS42 < 0048> S
eS42 332 VM?
1 15514 91< 00010046000006AC057D00350061405529260E03021D09151108031610090302
29040C0A08312B2403302C23032E21021D291F090B070204302C23031F091513
0C0B0A060C342C29272625241D1C1B1816110E0C0B0A090402010016381F3101
0501370F032B31003F3F3F2B2B2B302509012335163332371523090134272623
35163332371522070E0107090133152623220735330901141716331526232207
3532363736014C01A8FE39C9A3A3BEB9AA0125011E37374C9C9D88877D3E251F
05FE990206C9A3A3BABCAAFE9BFE9E39394A9C9D89873F5D1E447B022F027360
060660FE6A017B0A08096006066006060609FE2BFD336006066001EEFE2D080B
0860060660030309
> /MSTT31ec7d9767t AddT42Char
2678 707 M
bS42 < 005b> S
eS42 332 VM?
1 7558 53< 000100750000041F053F0030004240392F1E1804041500091528250C00080701
0C0100180909110702042F01101B092A01080604037207100905210130180C03
6E1B0A030602320F032B2B31002B2B3001323E01373637330321353437013E01
35342E02232206071E0115140623222635343E0133321E0215140E020707020C
4FA687051F12613EFC9408017385912545653F406B283245583C3C577ECA6E68
BB844D557FB81EE801000105062398FE3944080C017987E37D3D6B502D252509
4B3D444D4D44658F493663945A5694778419BA00
> /MSTT31ec7d9767t AddT42Char
2824 707 M
bS42 < 0035> S
eS42
5590 VM?
15 dict begin
/FontName /MSTT318c8adf42t def
1 Type0Encoding
Type42DescendantEncoding
1 133 0 Type42DescendantCharString
Type0DictBegin
[ < 00010000000A000A000A000A63767420B6F5BA74000000AC000001406670676D0211C261000001
EC000001D8676C79662F71D1B70000088C0000707E68656164691148FC000003C4000000366868
65610F9D04B1000003FC00000024686D7478C26C427600000420000002146C6F6361001C817800
000634000002186D617870018100DD0000084C0000002070726570AB4F0FE10000086C00000020
6764697200000000000000000000000000060008000E00230031006FFE60FE73FFE9000003A003
A2056605980193013F013B013700FC00FA00F800F600F400EE00E900E700E500E100D900D700D1
00C5009C00980087007F007D007B0068006200600058005600520050004E004C004A0021092B08
FE082D08290779074A073306EE06BE06B006980658063F0627061F060E05DF05D905BE059C057D
0573052F0523051B051204D704CF04C904BA049C0498047D047504710462044804350421041203
DF03DB03CD03B00391038F0389036D036A033302A802A0029E027D020001D901C101580146013D
01350131012F012D012901270123011F011D011B01170112010E010A010000FA00F800F200F000
EE00EC00E900E700E500E100DF00DD00DB00D900D500D300D100CF00C500BC00B200AC00AA0096
007D007B0071006D006A0066006400620060005E005A002140161514131211100F0E0D0C0B0A09
0807060504030201002CB200800043208A628A234266562D2CB22A0000435478B0002B58173959
B0002B58173C59B0002B58B00A2A59B0014310B0002B58173C59B0002B58B00A2A592D2C2B2D2C
2BB0022A2D2CB0022A2D2CB00162B0002342B101032542204620686164B0032546206820B00443
23612064B140408A545821212121B100211C5950582121B1000425204668B007254561B0005158
211BB0054338591B6164595358232F23F91B2F23E959B0012B2D2CB00162B0002342B101032542
204620686164B0032546206861645358232F23F91B2F23E959B0012B2D2CB00162B0002342B101
0525423FE9B0012B2D2CB00162B0002342B1010325423FF9B0012B2D2C111217392D2CC12D2CB2
000100432020B004438A45B003436169604460422D2C4520B0032342B201020543764323438A23
616960B004234218B00B2A2D2CB0002342184569B0406120B000515821B0411BB04061B0005158
B0461BB0485959B00523424520B001234269B0022342B00C2A182D2C204568442D2CBA00110005
FFC0422B2D2CB2110500422B2D2C2020B102038A4223B0016142466820B0405458B0406059B004
23422D2CB1020343114312173931002D2C2E2D2CC52D2C3FB0142A2D0001000000010000D831CA
075F0F3CF50003080000000000000000000000000000000000FFC3FE000A370600000000060002
0001000000010001000005A0FE4C00000933FFC3FCAC0A37000100000000000000000000000000
0000850600010000000000000000000542005007AA007706F000E90673005206BA007507DB0050
07140089055E013D062300F405B60137070800AC0617005E0548002104B80019042D005E03DD00
660410006204CD0042047F005E034C005E05580066055E005E05AA0052049E005C041000330575
003D04E50052057D0056042B003D050C004205B2007505BE004C0610004205BE002D043B004805
89004207CD003D04E500A60364004605FA006809330083093300830933008309330083028D0081
028D0081049A0042049A0042049A005C049A00B0049A0068049A0062049A0042049A0075049A00
62049A0083049A0062049A0062028D00A6028D00A6072700C5049A0083072700C5049A002F0506
007B06F4005406EE0050068900EE07810050067B005005830050071900EE07DB00500417004205
0C005207C50050060C005009230052079A005006B200EC05C9005006F400EC06FA0050058B0083
051900E906660129056D010E08BE010C0793004605660102062F00890393008303930093039300
83093300810933008103CB0006051000D7042B00E3041B00D904E100D7046F00DD048BFFD9045C
00770558009A033D009E03C5FFC304D5009A02C900B80842009E05B4009E04AE00D904CF003104
5600D7043B009E043F00AE035200B80573009E0489009E06A6009E0546008904B8009E04710081
032700420383FFE305EC00AC049A017F028D023102AA000002AA0000000000000000004A000000
4A0000004A000000D60000013E0000025800000300000003E80000048600000544000006220000
0754000008660000097800000A9600000BD400000C9800000D9800000E5E00000F760000104C00
00112E000011C2000012CE00001364000014480000151200001694000017620000182C000018EC
0000197A00001A6C00001B7800001C8E00001DCE00001ED000001FFC000021560000226C000023
A20000246600002566000025E000002652000026C800002744000027B600002824000028A00000
291C000029D000002A8E00002B7600002C9000002D6800002E7200002F80000030340000312400
00322C00003270000032F20000336C000033C000003438000034DE00003616000036DA000037D0
000038AE0000395200003A2A00003AFE00003C0C00003CE800003D6200003E0200003F1600003F
9A00004092000041740000424C0000430C0000446C00004582000046A800004748000048220000
48C4000049B200004AC400004B9200004C3200004CC800004D6E00004EB800004F3600004FC200
0050D8000051E0000052F6000053CE0000550A000055F20000570E000058260000594800005A32
00005B3400005C7E00005D3C00005EB000005FB800006078000061C6000062EC000063AC000064
CC000065A4000066B00000678E000068CA00006A1C00006B4000006C5200006D1400006DDA0000
6F5E000070040000707E0000707E0000707E000100000085006B0003000000000002000C000600
16000000D20069000400014016062F05280625121F042F880E0D6F88018888310D3B008DB8033C
851D2B2B00>
[ 15593 13209 ] AllocGlyphStorage
] def
108 44 PrepFor2015
currentdict dup /FontName get exch
end
def
25 dict begin
/FontName /MSTT318c8adf42t00 def
6271 31 1761 0 16#7ca31d8 Type42DictBegin
MSTT318c8adf42t /sfnts get def
/Encoding MSTT318c8adf42t /Type42DescendantEncoding get def
MSTT318c8adf42t AddGDirDict
/CharStrings MSTT318c8adf42t /CharString0 get dup /.notdef 0 put def
currentdict dup /FontName get exch definefont pop
end
MSTT318c8adf42t dup
/FDepVector [/MSTT318c8adf42t00 findfont
] put
dup /FontName get exch definefont pop
false /F3 .7517 /0 false (MSTT318c8adf42t) cvn mF
466 VM?
1 0 0< 00020100000005000500000300070022401B300206000604300009000702049F
030500059F0701000602090F032B31002B3021112111271121110100040021FC
420500FB002104BEFB42
> /MSTT318c8adf42t AddT42Char
1 7888 37< 00020048FFDD03D903B00047004F004B4043140B09030D1841014E4A36310220
2B03090D20020A000816012F184E010622012F4A2001062B203909000704044C
484341363426221B16140B0C5D063D010501510F032B31002B2A300136333217
16151406232227262322070E010706151617363332161514070E012322270607
061514171E0133323E0137363332161514070E01232227263534373637263534
3736361316333237342322015A8ECA95771B392318115268B7662F4107040314
708E5163040E764F8F574D1304352E7D595B8866160A100E15043CED87CB6A4E
0819622B0610654D3B556808565D03624E5A1221213B0E3F28123B22180B2C1C
341C3207143C202D3D5216093C201B100C2826141A110C066B625A407025216B
4B314619184174FE9F141E13
> /MSTT318c8adf42t AddT42Char
/F3S145 F3 145 xF
F3S145 Ji
2905 751 M
bS42 < 0025> S
eS42
8786 VM?
15 dict begin
/FontName /MSTT31f9bdbd9dt def
2 Type0Encoding
Type42DescendantEncoding
2 273 0 Type42DescendantCharString
Type0DictBegin
[ < 00010000000A000A000A000A637674205E886187000000AC000001106670676D0211C261000001
BC000001D8676C79668A10AEDE00000CC40000A84E6865616466D54A2700000394000000366868
65610D6707CF000003CC00000024686D7478AFD84E8D000003F0000004446C6F63610058D76800
000834000004486D617870022800EC00000C7C00000020707265705063D79400000C9C00000028
6764697200000000000000000000000000060008000E002500330055FE56FE73FFD30000036D03
A0056D05A601BC0168014A00EC00D900D700D100CD00C100AE00A800A2009E008100790077006D
0064005E005C005A0052004E00440042003F003D00390037003500330031002F002D002B002700
2107FC07EC05C305AE059C057905770575055004DF04DB0406040403FC03E703E503A8038B0317
031202FC02F202E102A8026202520221021F021901DF01B601A40189017B0175015C012500E300
D900D700D300D100CD00C700BE00BC00BA00B600B400B200B000AC00AA00A800A400A0009E009C
009A00980093008F008D008900870081007F00790077006A006800660064005C0052004A003F00
3D003900330031002F002D0021001F40161514131211100F0E0D0C0B0A09080706050403020100
2CB200800043208A628A234266562D2CB22A0000435478B0002B58173959B0002B58173C59B000
2B58B00A2A59B0014310B0002B58173C59B0002B58B00A2A592D2C2B2D2C2BB0022A2D2CB0022A
2D2CB00162B0002342B101032542204620686164B0032546206820B0044323612064B140408A54
5821212121B100211C5950582121B1000425204668B007254561B0005158211BB0054338591B61
64595358232F23F91B2F23E959B0012B2D2CB00162B0002342B101032542204620686164B00325
46206861645358232F23F91B2F23E959B0012B2D2CB00162B0002342B1010525423FE9B0012B2D
2CB00162B0002342B1010325423FF9B0012B2D2C111217392D2CC12D2CB2000100432020B00443
8A45B003436169604460422D2C4520B0032342B201020543764323438A23616960B004234218B0
0B2A2D2CB0002342184569B0406120B000515821B0411BB04061B0005158B0461BB0485959B005
23424520B001234269B0022342B00C2A182D2C204568442D2CBA00110005FFC0422B2D2CB21105
00422B2D2C2020B102038A4223B0016142466820B0405458B0406059B00423422D2CB102034311
4312173931002D2C2E2D2CC52D2C3FB0142A2D0001000000010000D6A6AB415F0F3CF500030800
00000000000000000000000000000000FFAEFE000810072B000000060002000100000000000100
0005A6FE42000008E3FFAEFF980810000100000000000000000000000000000111060001000000
000000000000040000DB040001A6040000EE040000AA040000D30400010606000239040000F204
0000CD0400008D023900AE038D010C02390017023900F2038D00C1038D00C10400013504000046
04000119055600C1055600C1040000000800000000000000031D0071023900420271FFAE04AA00