forked from kenjihiranabe/The-Art-of-Linear-Algebra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SVD-j.eps
2801 lines (2745 loc) · 205 KB
/
SVD-j.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-2.0 EPSF-2.0
%%BoundingBox: 116 451 448 508
%%HiResBoundingBox: 116.5 452 447 507
%APL_DSC_Encoding: UTF8
%APLProducer: (Version 12.4 (Build 21F79) Quartz PS Context)
%%Title: (Illustrations-j)
%%Creator: (PowerPoint: cgpdftops CUPS filter)
%%CreationDate: (Saturday, August 13 2022 12:39:12 JST)
%%For: (hiranabe)
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%PageOrder: Ascend
%RBINumCopies: 1
%%EndComments
% EPSF created by ps2eps 1.68
%%BeginProlog
save
countdictstack
mark
newpath
/showpage {} def
/setpagedevice {pop} def
%%EndProlog
%%Page 1 1
userdict/dscInfo 5 dict dup begin
/Title(Illustrations-j)def
/Creator(PowerPoint: cgpdftops CUPS filter)def
/CreationDate(Saturday, August 13 2022 12:39:12 JST)def
/For(hiranabe)def
/Pages 21 def
end put
%%BeginProlog
%%BeginFile: lw8_errorhandler-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 %$brkpage
errordict/handleerror
{systemdict begin $error begin $brkpage begin newerror
{/newerror false store
vmstatus pop pop 0 ne{grestoreall}if initgraphics courier setfont
lmargin 720 moveto(ERROR: )prnt errorname prnt
nl(OFFENDING COMMAND: )prnt/command load prnt
$error/ostack known{
$error/ostack get type dup/arraytype eq exch /packedarraytype eq or
{nl nl(STACK:)prnt nl nl $error/ostack get aload length{==}repeat}if}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
%%EndFile
%%BeginFile: cg-pdf.ps
%%Copyright: Copyright 2000-2004 Apple Computer Incorporated.
%%Copyright: All Rights Reserved.
currentpacking true setpacking
/cg_md 141 dict def
cg_md begin
/L3? languagelevel 3 ge def
/bd{bind def}bind def
/ld{load def}bd
/xs{exch store}bd
/xd{exch def}bd
/cmmtx matrix def
mark
/sc/setcolor
/scs/setcolorspace
/dr/defineresource
/fr/findresource
/T/true
/F/false
/d/setdash
/w/setlinewidth
/J/setlinecap
/j/setlinejoin
/M/setmiterlimit
/i/setflat
/rc/rectclip
/rf/rectfill
/rs/rectstroke
/f/fill
/f*/eofill
/sf/selectfont
/s/show
%/as/ashow
/xS/xshow
/yS/yshow
/xyS/xyshow
/S/stroke
/m/moveto
/l/lineto
/c/curveto
/h/closepath
/n/newpath
/q/gsave
/Q/grestore
counttomark 2 idiv
%dup (number of ld's = )print == flush % *** how many
{ld}repeat pop
/SC{ % CSname
/ColorSpace fr scs
}bd
/sopr /setoverprint where{pop/setoverprint}{/pop}ifelse ld
/soprm /setoverprintmode where{pop/setoverprintmode}{/pop}ifelse ld
/cgmtx matrix def
/sdmtx{cgmtx currentmatrix pop}bd
/CM {cgmtx setmatrix}bd % pop the ctm: our gstate ctm on host is now identity
/cm {cmmtx astore CM concat}bd % reset the matrix and then concat
/W{clip newpath}bd
/W*{eoclip newpath}bd
statusdict begin product end dup (HP) anchorsearch{
pop pop pop % pop off the search results
true
}{
pop % previous search result
(hp) anchorsearch{
pop pop true
}{
pop false
}ifelse
}ifelse
{ % HP is the product: we use this method of stroking because of a bug in their clone printers with certain T3 fonts
{
{ % charCode Wx Wy
pop pop % charCode
(0)dup 0 4 -1 roll put
F charpath
}cshow
}
}{
{F charpath}
}ifelse
/cply exch bd
/cps {cply stroke}bd
/pgsave 0 def
/bp{/pgsave save store}bd
/ep{pgsave restore showpage}def % dont' bind
/re{4 2 roll m 1 index 0 rlineto 0 exch rlineto neg 0 rlineto h}bd
/scrdict 10 dict def
/scrmtx matrix def
/patarray 0 def
/createpat{patarray 3 1 roll put}bd
/makepat{
scrmtx astore pop
gsave
initgraphics
CM
patarray exch get
scrmtx
makepattern
grestore
setpattern
}bd
/cg_BeginEPSF{
userdict save/cg_b4_Inc_state exch put
userdict/cg_endepsf/cg_EndEPSF load put
count userdict/cg_op_count 3 -1 roll put
countdictstack dup array dictstack userdict/cg_dict_array 3 -1 roll put
3 sub{end}repeat
/showpage {} def
0 setgray 0 setlinecap 1 setlinewidth 0 setlinejoin
10 setmiterlimit [] 0 setdash newpath
false setstrokeadjust false setoverprint % don't use F
}bd
/cg_EndEPSF{
countdictstack 3 sub { end } repeat
cg_dict_array 3 1 index length 3 sub getinterval
{begin}forall
count userdict/cg_op_count get sub{pop}repeat
userdict/cg_b4_Inc_state get restore
F setpacking
}bd
/cg_biproc{currentfile/RunLengthDecode filter}bd
/cg_aiproc{currentfile/ASCII85Decode filter/RunLengthDecode filter}bd
/ImageDataSource 0 def
L3?{
/cg_mibiproc{pop pop/ImageDataSource{cg_biproc}def}bd
/cg_miaiproc{pop pop/ImageDataSource{cg_aiproc}def}bd
}{
/ImageBandMask 0 def
/ImageBandData 0 def
/cg_mibiproc{
string/ImageBandMask xs
string/ImageBandData xs
/ImageDataSource{[currentfile/RunLengthDecode filter dup ImageBandMask/readstring cvx
/pop cvx dup ImageBandData/readstring cvx/pop cvx]cvx bind}bd
}bd
/cg_miaiproc{
string/ImageBandMask xs
string/ImageBandData xs
/ImageDataSource{[currentfile/ASCII85Decode filter/RunLengthDecode filter
dup ImageBandMask/readstring cvx
/pop cvx dup ImageBandData/readstring cvx/pop cvx]cvx bind}bd
}bd
}ifelse
/imsave 0 def
/BI{save/imsave xd mark}bd
/EI{imsave restore}bd
/ID{
counttomark 2 idiv
dup 2 add % leave room for imagetype and imagematrix
dict begin
{def} repeat
pop % remove mark
/ImageType 1 def
/ImageMatrix[Width 0 0 Height neg 0 Height]def
currentdict dup/ImageMask known{ImageMask}{F}ifelse exch
% currentdict on stack
L3?{
dup/MaskedImage known
{
pop
<<
/ImageType 3
/InterleaveType 2
/DataDict currentdict
/MaskDict
<< /ImageType 1
/Width Width
/Height Height
/ImageMatrix ImageMatrix
/BitsPerComponent 1
/Decode [0 1]
currentdict/Interpolate known
{/Interpolate Interpolate}if
>>
>>
}if
}if
exch
{imagemask}{image}ifelse
end % pop imagedict from dict stack
}bd
/cguidfix{statusdict begin mark version end
{cvr}stopped{cleartomark 0}{exch pop}ifelse
2012 lt{dup findfont dup length dict begin
{1 index/FID ne 2 index/UniqueID ne and
{def} {pop pop} ifelse}forall
currentdict end definefont pop
}{pop}ifelse
}bd
/t_array 0 def
/t_i 0 def
/t_c 1 string def
/x_proc{ % x y
exch t_array t_i get add exch moveto
/t_i t_i 1 add store
}bd
/y_proc{ % x y
t_array t_i get add moveto
/t_i t_i 1 add store
}bd
/xy_proc{
% x y
t_array t_i 2 copy 1 add get 3 1 roll get
4 -1 roll add 3 1 roll add moveto
/t_i t_i 2 add store
}bd
/sop 0 def % don't bind sop
/cp_proc/x_proc ld % default moveto proc is for xwidths only
/base_charpath % string array
{
/t_array xs
/t_i 0 def
{ % char
t_c 0 3 -1 roll put
currentpoint
t_c cply sop
cp_proc
}forall
/t_array 0 def
}bd
/sop/stroke ld % default sop is stroke. Done here so we don't bind in /base_charpath
% default sop is stroke
/nop{}def
/xsp/base_charpath ld
/ysp{/cp_proc/y_proc ld base_charpath/cp_proc/x_proc ld}bd
/xysp{/cp_proc/xy_proc ld base_charpath/cp_proc/x_proc ld}bd
/xmp{/sop/nop ld /cp_proc/x_proc ld base_charpath/sop/stroke ld}bd
/ymp{/sop/nop ld /cp_proc/y_proc ld base_charpath/sop/stroke ld}bd
/xymp{/sop/nop ld /cp_proc/xy_proc ld base_charpath/sop/stroke ld}bd
/refnt{ % newname encoding fontname
findfont dup length dict copy dup
/Encoding 4 -1 roll put
definefont pop
}bd
/renmfont{ % newname fontname
findfont dup length dict copy definefont pop
}bd
L3? dup dup{save exch}if
% languagelevel2 ONLY code goes here
/Range 0 def
/DataSource 0 def
/val 0 def
/nRange 0 def
/mulRange 0 def
/d0 0 def
/r0 0 def
/di 0 def
/ri 0 def
/a0 0 def
/a1 0 def
/r1 0 def
/r2 0 def
/dx 0 def
/Nsteps 0 def
/sh3tp 0 def
/ymax 0 def
/ymin 0 def
/xmax 0 def
/xmin 0 def
/setupFunEval % funDict -- % this calculates and sets up a function dict for evaulation.
{
begin
/nRange Range length 2 idiv store
/mulRange % precompute the range data needed to map a sample value from the table to a range value
% this data looks like [ range0mul range0min range1mul range1min ... rangeN-1mul rangeN-1min ]
[
0 1 nRange 1 sub
{ % index
2 mul/nDim2 xd % 2*dimension# we are dealing with
Range nDim2 get % ymin
Range nDim2 1 add get % ymin ymax
1 index sub % ymin (ymax-ymin)
% xmin = 0, xmax = 255 (2^bitspersample - 1)
255 div % ymin (ymax-ymin)/(xmax - xmin)
exch % (ymax-ymin)/(xmax - xmin) ymin
}for
]store
end
}bd
/FunEval % val1 fundict -> comp1 comp2 ... compN
{
begin
% the value passed in is the base index into the table
nRange mul /val xd % compute the actual index to the table
% since there are nRange entries per base index
0 1 nRange 1 sub
{
dup 2 mul/nDim2 xd % dim
val % base value to use to do our lookup
add DataSource exch get % lookedupval
mulRange nDim2 get mul % lookedupval*(ymax-ymin)/(xmax-xmin)
mulRange nDim2 1 add get % lookedupval*(ymax-ymin)/(xmax-xmin) ymin
add % interpolated result
}for % comp1 comp2 ... compN
end
}bd
/max % a b -> max(a, b)
{
2 copy lt
{exch pop}{pop}ifelse
}bd
/sh2
{ % emulation of shading type 2. Assumes shading dictionary is top dictionary on the dict stack
/Coords load aload pop % x0 y0 x1 y1
3 index 3 index translate % origin is now at beginning point of shading
% x0 y0 x1 y1
3 -1 roll sub % x0 x1 y1-y0
3 1 roll exch % y1-y0 x1 x0
sub % y1-y0 x1-x0
2 copy
dup mul exch dup mul add sqrt % length of segment between two points
dup
scale
atan % atan (dy/dx)
%dup (rotation angle = )print ==
rotate % now line between 0,0 and 1,0 is the line perpendicular to which the axial lines are drawn
/Function load setupFunEval % may need to setup function dictionary by calling setupFunEval
% this is now specific to axial shadings. Compute the maximum bounds to fill
clippath {pathbbox}stopped {0 0 0 0}if newpath % x0 y0 x1 y1
/ymax xs
/xmax xs
/ymin xs
/xmin xs
currentdict/Extend known
{
/Extend load 0 get
{
0/Function load FunEval sc % evaluate the function to get a color and set it
xmin ymin xmin abs ymax ymin sub rectfill
}if
}if
% paint the rects. The sampling frequency is that of our table
/Nsteps/Function load/Size get 0 get 1 sub store
/dx 1 Nsteps div store
gsave
/di ymax ymin sub store
/Function load
% loop Nsteps + 1 times, incrementing the index by 1 each time
0 1 Nsteps
{
1 index FunEval sc
0 ymin dx di rectfill
dx 0 translate
}for
pop % pop our function
grestore % origin is back to start point
currentdict/Extend known
{
/Extend load 1 get
{
Nsteps/Function load FunEval sc % last element
1 ymin xmax 1 sub abs ymax ymin sub rectfill
}if
}if
}bd
/shp % this paints our shape for shading type 3
{ % x1 r1 x0 r0 -
4 copy
% fill interior arc
dup 0 gt{
0 exch a1 a0 arc
}{
pop 0 moveto
}ifelse
dup 0 gt{
0 exch a0 a1 arcn
}{
pop 0 lineto
}ifelse
fill
% fill exterior arc
dup 0 gt{
0 exch a0 a1 arc
}{
pop 0 moveto
}ifelse
dup 0 gt{
0 exch a1 a0 arcn
}{
pop 0 lineto
}ifelse
fill
}bd
/calcmaxs
{ % calculate maximum distance vector from origin to corner points
% of bbox
xmin dup mul ymin dup mul add sqrt % (xmin2 + ymin2)
xmax dup mul ymin dup mul add sqrt % (xmax2 + ymin2)
xmin dup mul ymax dup mul add sqrt % (xmin2 + ymax2)
xmax dup mul ymax dup mul add sqrt % (xmax2 + ymax2)
max max max % maximum value
}bd
/sh3
{ % emulation of shading type 3. Assumes shading dictionary is top dictionary on the dict stack
/Coords load aload pop % x0 y0 r1 x1 y1 r2
5 index 5 index translate % origin is now at first circle origin
3 -1 roll 6 -1 roll sub % y0 r1 y1 r2 dx
3 -1 roll 5 -1 roll sub % r1 r2 dx dy
2 copy dup mul exch dup mul add sqrt
/dx xs % r1 r2 dx dy
2 copy 0 ne exch 0 ne or
{
% r1 r2 dx dy
exch atan rotate % we are now rotated so dy is zero and positive values of dx move us as expected
}{
pop pop
}ifelse
% r1 r2
/r2 xs
/r1 xs
/Function load
dup/Size get 0 get 1 sub % this is the size of our table minus 1
/Nsteps xs % at some point we should optimize this better so NSteps is based on needed steps for the device
setupFunEval % may need to setup function dictionary by calling setupFunEval
% determine the case:
% case 0: circle1 inside circle2
% case 1: circle 2 inside circle 1
% case 2: r1 = r2
% case 3: r1 != r2
dx r2 add r1 lt{
% circle 2 inside of circle 1
0
}{
dx r1 add r2 le
{ % circle 1 inside of circle 2
1
}{ % circles don't contain each other
r1 r2 eq
{ % equal
2
}{ % r1 != r2
3
}ifelse
}ifelse
}ifelse
/sh3tp xs % sh3tp has the number of our different cases
clippath {pathbbox}stopped {0 0 0 0}if
newpath % x0 y0 x1 y1
/ymax xs
/xmax xs
/ymin xs
/xmin xs
% Arc angle atan( sqrt((dx*dx + dy*dy) - dr*dr), dr)
dx dup mul r2 r1 sub dup mul sub dup 0 gt
{
sqrt r2 r1 sub atan
/a0 exch 180 exch sub store
/a1 a0 neg store
}{
pop
/a0 0 store
/a1 360 store
}ifelse
currentdict/Extend known
{
/Extend load 0 get r1 0 gt and % no need to extend if the radius of the first end is 0
{
0/Function load FunEval sc % evaluate the function to get a color and set it
% case 0: circle1 inside circle2
% case 1: circle 2 inside circle 1
% case 2: circles don't contain each other and r1 == r2
% case 3: circles don't contain each other and r1 != r2
{
{ % case 0
dx 0 r1 360 0 arcn
xmin ymin moveto
xmax ymin lineto
xmax ymax lineto
xmin ymax lineto
xmin ymin lineto
eofill % for the bigger radius we fill everything except our circle
}
{ % case 1
r1 0 gt{0 0 r1 0 360 arc fill}if
}
{ % case 2
% r1 == r2, extend 0
% r3 = r, x3 = -(abs(minx) + r), x1 = 0
% x(i+1) r(i+1) x(i) r(i) shp
0 r1 xmin abs r1 add neg r1 shp
}
{ % case 3
% no containment, r1 != r2
r2 r1 gt{ % the endpoint we are drawing is that with a circle of zero radius
% x(i+1) r(i+1) x(i) r(i) shp
0 r1
r1 neg r2 r1 sub div dx mul % this is point of beginning circle
0 % point of ending circle
shp % takes x(i+1) r(i+1) x(i) r(i)
}{ % the first circle is the bigger of the two
% we find a circle on our line which is outside the bbox in the
% negative direction
% x(i+1) r(i+1) x(i) r(i) shp
0 r1 calcmaxs % 0 r1 maxs
dup
% calculating xs: (-(maxs+r2)*x2)/(x2-(r1-r2))
r2 add dx mul dx r1 r2 sub sub div
neg % maxs xs'
exch 1 index % xs' maxs xs'
abs exch sub
shp
}ifelse
}
}sh3tp get exec % execute the extend at beginning proc for our shading type
}if
}if
% now do the shading
/d0 0 store
/r0 r1 store
/di dx Nsteps div store
/ri r2 r1 sub Nsteps div store
/Function load
0 1 Nsteps
{ % function t(i)
1 index FunEval sc
d0 di add r0 ri add d0 r0 shp
{
% fill interior arc
d0 0 r0 a1 a0 arc
d0 di add 0 r0 ri add a0 a1 arcn
fill
% fill exterior arc
d0 0 r0 a0 a1 arc
d0 di add 0 r0 ri add a1 a0 arcn
fill
}pop
% advance to next
/d0 d0 di add store
/r0 r0 ri add store
}for
pop % pop our function dict
% handle Extend
currentdict/Extend known
{
/Extend load 1 get r2 0 gt and % no need to extend if the radius of the last end is 0
{
Nsteps/Function load FunEval sc % last element
% case 0: circle1 inside circle2
% case 1: circle 2 inside circle 1
% case 2: circles don't contain each other and r1 == r2
% case 3: circles don't contain each other and r1 != r2
{
{
dx 0 r2 0 360 arc fill
}
{
dx 0 r2 360 0 arcn
xmin ymin moveto
xmax ymin lineto
xmax ymax lineto
xmin ymax lineto
xmin ymin lineto
eofill % for the bigger radius we fill everything except our circle
}
{ % r1 == r2, extend 1
% r3 = r, x3 = (abs(xmax) + r), x1 = dx
% x(i+1) r(i+1) x(i) r(i) shp
xmax abs r1 add r1 dx r1 shp
}
{ % no containment, r1 != r2
r2 r1 gt{
% we find a circle on our line which is outside the bbox in the
% positive direction
% x(i+1) r(i+1) x(i) r(i) shp
calcmaxs dup % maxs maxs
% calculating xs: ((maxs+r1)*x2)/(x2-(r2-r1))
r1 add dx mul dx r2 r1 sub sub div % maxs xs
exch 1 index % xs maxs xs
exch sub
dx r2
shp
}{ % the endpoint we are drawing is that with a circle of zero radius
% x(i+1) r(i+1) x(i) r(i) shp
r1 neg r2 r1 sub div dx mul % this is point of ending circle
0 % radius of ending circle
dx % point of starting circle
r2 % radius of starting circle
shp
}ifelse
}
}
sh3tp get exec % execute the extend at end proc for our shading type
}if
}if
}bd
/sh % emulation of shfill operator for type 2 and type 3 shadings based on type 0 functions
{ % shadingDict --
begin
/ShadingType load dup dup 2 eq exch 3 eq or
{ % shadingtype
gsave
newpath
/ColorSpace load scs
currentdict/BBox known
{
/BBox load aload pop % llx lly urx ury
2 index sub % llx lly urx ury-lly
3 index % llx lly urx ury-lly llx
3 -1 roll exch sub
exch rectclip
}if
2 eq
{sh2}{sh3}ifelse
grestore
}{
% shadingtype
pop
(DEBUG: shading type unimplemented\n)print flush
}ifelse
end
}bd
% end of language level 2 ONLY code
{restore}if not dup{save exch}if
% languagelevel3 ONLY code goes here
L3?{ % we do these loads conditionally or else they will fail on a level 2 printer
/sh/shfill ld
/csq/clipsave ld
/csQ/cliprestore ld
}if
{restore}if
%currentdict dup maxlength exch length sub (number of extra slots in md = )print == flush % *** how many entries are free
end
setpacking
% count 0 ne { pstack(***extras on stack during prolog execution***\n)print flush}if % *** BARK if anything is left on stack
%%EndFile
%%EndProlog
%%BeginSetup
% Disable CTRL-D as an end-of-file marker...
userdict dup(\004)cvn{}put (\004\004)cvn{}put
[{
%%BeginFeature: *OKMultiOutputMode False
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *Collate True
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKAboutDriver Name
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKAlwaysKToner True
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKBlackFinish Gloss
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKColorBrightness 0
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKColorContrast 0
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKColorRenderStyle Auto
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKControl Auto
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKDrumCleaning False
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKDuplex None
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKHardCollate True
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKLongEdgeFeed True
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKMPTPaperSizeCheck True
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKMediaType PrinterDefault
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKOptionTray 0
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKOutputToFile False
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKPaperSizeCheck True
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKPaperSource Auto
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKPhotoMode False
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKResolution 600x600dpi
<< /HWResolution [600 600] >> setpagedevice
<< /cupsColorOrder 0/cupsColorSpace 1/cupsBitsPerColor 8 >> setpagedevice
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *OKTraySwitch True
%%EndFeature
} stopped cleartomark
[{
%%BeginFeature: *PageSize A4
<</PageSize[595 842]/ImagingBBox null>>setpagedevice
%%EndFeature
} stopped cleartomark
userdict/ESPrc/rectclip where{pop/rectclip load}
{{newpath 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto
neg 0 rlineto closepath clip newpath}bind}ifelse put
userdict/ESPrf/rectfill where{pop/rectfill load}
{{gsave newpath 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto
neg 0 rlineto closepath fill grestore}bind}ifelse put
userdict/ESPrs/rectstroke where{pop/rectstroke load}
{{gsave newpath 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto
neg 0 rlineto closepath stroke grestore}bind}ifelse put
userdict/ESPwl{}bind put
%%EndSetup
%%Page: 19 1
%%PageBoundingBox: 0 0 595 842
%%BeginPageSetup
%%EndPageSetup
cg_md begin
bp
sdmtx
%RBIBeginFontSubset: AFEWUV+Calibri
%!FontType1-1.0: AFEWUV+Calibri 1.0000.6.2000
14 dict begin
/FontName /AFEWUV+Calibri def
/PaintType 0 def
/Encoding 256 array 0 1 255 {1 index exch/.notdef put} for
dup 33 /gid2 put
dup 34 /gid11 put
readonly def
42/FontType resourcestatus{pop pop false}{true}ifelse
%APLsfntBegin
{currentfile 0(%APLsfntEnd\n)/SubFileDecode filter flushfile}if
/FontType 42 def
/FontMatrix matrix def
/FontBBox[2048 -1030 1 index div -640 2 index div 2540 3 index div 2102 5 -1 roll div]cvx def
/sfnts [<
74727565000900000000000063767420000000000000009C000005BC6670676D000000000000065800000D2B676C796600000000000013840000044A6865616400000000000017D00000003668686561000000000000180800000024686D7478000000000000182C0000000C6C6F63610000000000001838000000086D617870000000000000184000000020707265700000000000001860000024EB0000079E0000FE930000000000000000000000000050006A0073008000800086008D009300BF00DB006200830093009900A000A600A900B000C100C900D700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000FE79056D000C03B7000600130000FFFAFFEDFEA6FFEDFEB8050E000600130000FFFAFFEDFE93050E00130420000600130000FFFAFFEDFF10FFEE050E00130420000600130000FFFAFFEEFE93FF10FEB80612000A050E0006000D02D2FFFAFFF301FDFFFA023F0006000DFF36FFFAFFF302870006000F0000FFFAFFF1079EFEAFFEA700000000000000000000000000500051005A005B005C005D006000610062006400680069006A006B006C006D006E00680069006E00600067006E00660068005F00610063006400660068006A006B006C006D006E006F0070006F00720074007500760076007000720073007400750076006F007000710072007300750077007700780079007A007B007C007D007B007C007D00770079007A007C0078007A007C007D0078007D007E007F008000810082007E007F00810082007E007F00800081008200830084008500860087008800890083008400850086008700880089008300840085008600870088008900890086008700880089008A008B008C008D008E008F008A008B008C008D008E008F008A008B008C008D008E008F008D008A008B008C008D008E008F0090009000910092009300940095009600980099009B009C0090009100920093009400950096009700980099009A009E009F00A60090009100950098009F009000910096009700BC00C600B500AE00AF00B6006800690063006A006F00700071006F0070007100720066006C006D00700079007C007F00830086008700880089008A0074007500760077007A007B007C007D007E008200850086008A0088008900830078007B00820083008600870088008900760079007A007C007D007E0083008500880089008A0073007400750077007A007D00880089008A008B008C008D008E00900094008B008C008D00910092009300940095008C008D00910095008F009000910092009300940095008B008C008D008E008F009000910092009300940095008B008C008D008E008F00900091
009200930096009700980099009C0096009700980099009A009B009C00960099009A009C0096009700980099009A009B009C009700980099009A009B009C009700980099009A009B009C0096009D00A000A1009D009E009F00A000A100A2009D009F00A000A1009F00A2009D009E009F00A000A100A2009D009E00A000A1009D009E00A000A2009D00A300A400A500A600A700A300A400A600A700A300A400A500A600A700A600A300A700A800A900AA00AB00AC00AC00A800A900AA00AB00AC00A800A900AA00AB00AC00A800AA00AB00AC00AE00AD00AE00AF00B000B100B200B300B400B500B600B700B800AD00AE00AD00AE00AF00B000B100B200B300B400B500B600B700B800AD00AE00AF00B000B100B200B300B400B500B600B700B800B300AE00AF00B000B200B500B600B700B800B900BA00BB00BC00BE00C000C100C200C200B900BA00BB00BC00BD00BE00BF00C000C100C200C400BA00BB00BE00BF00C000C200C300C400B900BA00BF00C000C200C600C700C900CA00CB00CC00CF00C500C700CE00C500C700C800CF00D000D200D300D7010D00D000D100E900D000FD00D005E4000E0041000005BA009C009C005E005E0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000051A001500A0FFF8FF77FFF803480066015401CC00AC00A200B4008C0101006E00000000000000000000011F000A04E2001400B4FFF6035C00140028FDDA0568FEA2FFEF405A868574737271706F6E6D6C6B6A696867666564625F5E5D5C5B5A59585554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A39383736352F2E2D2C2826252423221F181411100F0D0B0A090807060504030201002C4523466020B02660B004262348482D2C452346236120B02661B004262348482D2C45234660B0206120B04660B004262348482D2C4523462361B0206020B02661B02061B004262348482D2C45234660B0406120B06660B004262348482D2C4523462361B0406020B02661B04061B004262348482D2C0110203C003C2D2C20452320B0CD442320B8015A51582320B08D44235920B0ED51582320B04D44235920B0042651582320B00D44235921212D2C20204518684420B001602045B04676688A4560442D2C01B10B0A432343650A2D2C00B10A0B4323430B2D2C00B0282370B101283E01B0282370B10228453AB10200080D2D2C2045B00325456164B050515845441B2121592D2C2045B0004360442D2C01B00643B00743650A2D2C2069B04061B0008B20B12CC08A8CB8100062602B0C642364615C58B00361592D2C8A03458A8A87B0112BB0292344B0
297AE4182D2C4565B02C234445B02B23442D2C4B525845441B2121592D2C01B005251023208AF500B0016023EDEC2D2C01B005251023208AF500B0016123EDEC2D2C01B0062510F500EDEC2D2C20B001600110203C003C2D2C20B001610110203C003C2D2C00B00743B006430B2D2C21210C6423648BB84000622D2C21B08051580C6423648BB82000621BB200402F2B59B002602D2C21B0C051580C6423648BB81555621BB200802F2B59B002602D2C0C6423648BB84000626023212D2C4523456023456023456023766818B08062202D2CB00426B00426B00425B0042545234520B003266062636820B0032661658A2344442D2C2045B0005458B040442045B04061441B2121592D2C45B1302F4523456160B0016069442D2C4B5158B02F2370B01423421B2121592D2C4B515820B0032545695358441B2121591B2121592D2C45B01443B0006063B0016069442D2CB02F45442D2C452320458A60442D2C45234560442D2C4B235158B90033FFE0B134201BB3330034005944442D2CB0164358B00326458A586466B01F601B64B020606620581B21B04059B001615923586559B02923442310B029E01B2121212121592D2CB0164358B004254564B020606620581B21B04059B0016123586559B0292344B00425B00725082058021B0359B0052510B004252046B0042523423CB0072510B006252046B00425B0016023423C2058011B0059B0052510B00425B029E0B0072510B00625B029E0B00425B00725082058021B0359B00425B003254348B00625B00325B0016043481B2159212121212121212D2CB0164358B004254564B020606620581B21B04059B0016123581B6559B0292344B00525B00825082058021B0359B0042510B005252046B0042523423CB00425B0072508B0072510B006252046B00425B0016023423C2058011B0059B0042510B00525B029E0B02920456544B0072510B00625B029E0B00525B00825082058021B0359B00525B003254348B00425B0072508B00625B00325B0016043481B2159212121212121212D2C02B00425202046B004252342B0052508B003254548212121212D2C02B0032520B0042508B0022543482121212D2C452320451820B00050205823652359236820B040505821B04059235865598A60442D2C4B53234B515A5820458A60441B2121592D2C4B545820458A60441B2121592D2C4B53234B515A58381B2121592D2CB000214B5458381B2121592D2CB002435458B0462B1B21212121592D2CB002435458B0472B1B212121592D2CB002435458B0482B1B21212121592D2CB002435458B0492B1B212121592D2C2320B000508A8A64B10003255458B0401BB10103255458B005438B59B04F2B5923B0622B2321235865592D2CB108000C215460432D2C014623466023466123201020468A61B8FF80
628AB140408A704560683A2D2C208A2349648A2353583C1B21592D2C4B52587D1B7A592D2CB012004B014B54422D2CB1020042B123018851B1400188535A58B910000020885458B202010243604259B12401885158B920000040885458B2020202436042B12401885458B2022002436042004B014B5258B2020802436042591BB940000080885458B202040243604259B94000008063B80100885458B202080243604259B94000010063B80200885458B202100243604259B12601885158B94000020063B80400885458B202400243604259B94000040063B80800885458B202800243604259B12801885158B94000080063B81000885458BA00020100000243604259595959595959B10002435458400A0540084009400C020D021BB10102435458B2054008BA010000090100B30C010D011BB18002435258B2054008B80180B109401BB901000002435258B2054008BA0180000901401BB901800002435258B2054008B80200B109401BB2054008BA010000090100595959B9400000808855B94000020063B8040088555A58B30C000D011BB30C000D0159595942424242422D2C451868234B51582320452064B04050587C59688A6059442D2CB00016B00225B0022501B001233E00B002233EB10102060CB00A236542B00B234201B001233F00B002233FB10102060CB006236542B0072342B00116012D2C20B82000628A6023622D2CB0072558001B0159B0042510B00325B0022520B8FFFF545821CD1BED5921B006255CB006255A58B0092B5920B005254AB0042547B004254760B0062547B0806361B00225B0005558B00325B00725496359B0082558001B0159B00425B0062549B009255CB009255A58B0092B59B0072546B0806361B0032520B0005558631B2159612320B0005558B080631B21B08059B0592BB006255C586959B00425202010B00048233AB0062658001B0159B0052658B003252F598A12233221212D2CB00625B00A2587B00625B009254AB0005358B00625B00A251BB00925B0072559B00225B00225070CB005256323B00625636020B94000040063535821B00426B00426B00A1BB94000040063655158B0042665B0042665B00A1BB00426B00426B000B00325B003250B0D0AB0092EB00725B007250B0D0AB00B2EB00525B0052507595920B0005558B00525B0052587B00725B007250BB0092510B00B25B0092620B8FFFF545821CD1BED59B00525B0052507B00825B00B254923B00625B0062587B00A2510B00B25C15920B00051B800522378B00161B00225B00725B0072507B00A25B00D254961B08062B00525B005250BB00A252338B00625B0062587B00825B008250BB00A2510B00B25C4B00625B0062507B00925B00C2549B0032554B8FFA723792121212121212121212121212D2C23B0005458B9400000001BB9
00004000598AB0005458B9400000001BB90000400059B05B2B2D2C08B0005458B9400000001BB900004000590DB05B2B2D2C8A8A080D8AB0005458B9400000001BB90000400059B05B2B2D2CB00426B00426080DB00426B00426080DB05B2B2D2CB0022563B0206066B00225B82000626023622D2C204569442D2C234AB1024E2B2D2C234AB1014E2B2D2C238A4A234564B0022564B002256164B00343525821206459B1024E2B23B000505865592D2C238A4A234564B0022564B002256164B00343525821206459B1014E2B23B000505865592D2C20B003254AB1024E2B8A103B2D2C20B003254AB1014E2B8A103B2D2CB00325B003258AB0672B8A103B2D2CB00325B003258AB0682B8A103B2D2CB0032546B003254660B004252EB00425B00425B0042620B000505821B06A1BB06C592BB0032546B00325466061B08062208A2010233A232010233A2D2CB0032547B003254760B0052547B0806361B00225B00625496323B005254AB080632058621B2159B0042646608A468A4660B02063612D2CB00426B00425B00425B00426B06E2B208A2010233A232010233A2D2C2320B001545821B00225B1024E2BB0805020605920606020B001515821211B20B005515821206661B0402361B100032550B00325B00325505A5820B00325618A535821B000591B21591BB00754582066616523211B2121B000595959B1024E2B2D2CB00225B004254AB0005358B0001B8A8A238AB00159B004254620666120B00526B0062649B00526B00526B0702B236165B02060206661B02061652D2CB0022546208A20B000505821B1024E2B1B452321596165B00225103B2D2CB0042620B802006220B80200638A236120B05D602BB00525118A128A20398A58BA005D10000004266356602B23212010204620B1024E2B23611B2321208A201049B1024E2B593B2D2CBA005D10000009256356602BB00525B00525B00526B06D2BB15D0725602BB00525B00525B00525B00525B06F2BBA005D10000008266356602B20B0005258B0502BB00525B00525B00725B00725B00525B0712BB0021738B00052B00225B001525A58B00425B0062549B00325B00525496020B0405258211BB000525820B0025458B00425B00425B00725B0072549B00217381BB00425B00425B00425B0062549B0021738595959595921212121212D2CB12801885158B94000040063B8080088545C1BB001592D2CB12801885158B94000040063B8080088545C1BB001592D0000050000FE7303D2050E000300070039004D004E0097B0852B58BC000D01520016003A01B5B5154444082D07BE0143000200200154000800010143400F04020DB71A1A3F23B735068D031149B8012DB43F078D0202003FFDDEFDCE2FFDDEED12392FED012FDDE1DEE110F1CE11392F33E1D4E131301B40141A0DB76C
1A1A3F3523B76C3503068D6C03113F49B8012D40096C3F4002078D6C020200183F2B1ACE2BCE2F2BCE2B12392F2B303159011121110111211101140E020707140623222E02352726363333323E0235342623220E0223222E02353436373E0333321E0203140E0223222E0235343E0233321E020103D2FC5A034FFD06027E233F5633051E1A0F140D0605021C18122D3C2510535B253C2E1D0703070603050807283742224B6C4522DA07111D15161D120808121D16151D1107FDDB050EFAF2050EFB43046CFB9403063B5C3F2403980A0802040606B81E18192A3B2149560F1310040B13101116080712110C28445CFD86151C120808121C15151D120808121DFD4D000200ACFFFA03C7050E001C0029009FB0852B58B12406B8FFE8B310014D06B8FFF0B30F014D06B8FFF0B30D014D06B8FFF6B30C014D06B8FFE8B30B014D06B802114017111D1810014D1D100F014D1D100C0D014C1D200B014D1DB80232B2001125B8010AB306060C23B8010BB315510C55003F3FED12392FED012FD4E12B2B2B2B10E12B2B2B2B2B3231301BB10625B8010AB56C06060C1523B8010BB46C15510C5500183F3F2B12392F2B30315901140E02232311140E0223222E02351134363321321E0407342E0223231133323E0203C74077AD789309132119192114082A1A01152A4D696D4C29B53B575D2C9F9B4E6746240393619C6E3CFE2E080C070505070C0804AA282207173F5C79574F6A340EFDF928476300020030FFFA03D30514002A002E0125B0852B58403A252E01262D01272C01242701242601251C01261B01231A01241901251801251701261601261501261401261001260F012405012404012B1B0130B8FFC040120F024D6030012D16180F024D162010014D16B8FFE0B30F014D16B8FFE0B70C014D161C2E2E10B8FFFC401D0F024D101810014D10100F014D10100D014D100A0C014D10100B014D10BB021100270004FFD4B30F024D04B8FFD0B30C014D04B8FFE0400A0B014D0404302F271B2EB8010B400A042B2110100A21520A55003F3F12392F123933ED3232111201392F2B2B2B33E12B2B2B2B2B2B321133CD2B2B2B2B3231305D2B005D015D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D5D1BB3271B102EB8010B400B6C042B2110100A21520A5500183F3F12392F1239332B3232303159011406232311140E0223222E02351121222E0235343E0237013E0333321E0215113332160123012103D31412920814201918201307FDEA0C100D0502060A0701D205131E2C1E21311E10921115FEA102FE5B01A701702126FEF0080B080404080B08011006101E18131E19170D0312080C080305080D09FCC62302E9FD3A0000000001000000063333A1099DFD5F0F3CF50019080000000000BBEB7CCC00000000D5968A66FBFAFD8009EC083600000009
000200000000000000010000079EFDDA00000AA0FBFAFAA009EC000100000000000000000000000000000003040E0000042200AC040E0030000000BF014B0225000100000003006000050000000000020010002F008700001236023500000000B10903415302C802C60038001F02C702C60038001F02DD003802DA005502D9003802D7005502D8003802D7005502D6003802D5005502D4003802D3005502D2003802D1005502BF003802BE005502BD003802BC0055000402DB003402DB005402DB0003003402DB005402DB006402DB00A402DB00D402DB0005006B02D50001000B02D10001001402C2004402C2006402C2007402C2009402C2000500A402BE000100A402BC000100200284B40918014A20B80283B40918014A20B80282B40918014A20B80281B40918014A20B80280B40918014A20B8027FB40918014A20B8027EB40918014A20B8027DB40918014A20B8027CB40918014A20B8027BB40918014A20B8027AB40918014A20B80279B40918014A20B80278B40918014A20B80277B40918014A20B80276B40918014A20B80275B40918014A20B80274B40918014A20B80273B40918014A20B80271B40918014A20B80270B40918014A20B8026FB40918014A20B8026EB40918014A20B8026DB40918014A20B8026CB40918014A20B8026BB40918014A20B8026AB40918014A20B80269B40918014A20B80268B40918014A20B80267B40918014A20B80266B40918014A20B80265B40918014A20B80264B40918014A20B80263B40918014A20B80262B40918014A20B80261B40918014A20B80260B40918014A20B8025FB40918014A20B8025EB40918014A20B8025DB40918014A20B8025CB40918014A20B8025BB40918014A20B8025AB40918014A20B80259B40918014A20B80258B40918014A20B80257B40918014A20B80256B40918014A20B80255B40918014A20B80254B40918014A20B80253B40918014A20B80252B40918014A20B80251B40918014A20B80250B40918014A20B8024FB40918014A20B8024EB40918014A20B8024DB40918014A20B8024CB40918014A20B8024BB40918014A20B8024AB40918014A20B80249B40918014A20B80248B40918014A20B80247B40918014A20B80246B40918014A20B80245B40918014A20B80244B40918014A20B80243B40918014A20B80242B40918014A20B80241B40918014A20B80240B40918014A20B8023FB40918014A20B8023EB40918014A20B8023DB40918014A20B8023CB40918014A20B8023BB40918014A20B8023AB40918014A20B80239B40918014A20B80238B40918014A20B80237B40918014A20B80236B40918014A20B80235B40918014A20B80234B40918014A20B80233B40918014A20B80232B40918014A20B80231B40918014A20B80230B40918014A20B8022FB4
0918014A20B8022EB40918014A20B8022DB40918014A20B8022CB40918014A20B8022BB40918014A20B8022AB40918014A20B80229B40918014A20B80228B40918014A20B80227B40918014A20B80226B40918014A20B80225B40918014A20B80224B40918014A20B80223B40918014A20B80222B40918014A20B80221B40918014A20B80220B40918014A20B8021FB40918014A20B8021EB40918014A20B8021DB40918014A20B8021CB40918014A20B8021BB40918014A20B8021AB40918014A20B80219B40918014A20B80218B40918014A20B80217B40918014A20B80216B40918014A20B80215B40918014A20B80214B40918014A20B80213B40918014A20B80212B40918014A20B80211B40918014A20B80210B40918014A20B8020FB40918014A20B8020EB40918014A20B8020DB40918014A20B8020CB40918014A20B8020BB40918014A20B8020AB40918014A20B80209B40918014A20B80208B40918014A20B80207B40918014A20B80206B40918014A20B80205B40918014A20B80204B40918014A20B80203B40918014A20B80202B40918014A20B80201B40918014A20B80200B40918014A20B801FFB40918014A20B801FEB40918014A20B801FDB40918014A20B801FCB40918014A20B801FBB40918014A20B801FAB40918014A20B801F9B40918014A20B801F8B40918014A20B801F7B40918014A20B801F6B40918014A20B801F5B40918014A20B801F4B40918014A20B801F3B40918014A20B801F2B40918014A20B801F1B40918014A20B801F0B40918014A20B801EFB40918014A20B801EEB40918014A20B801EDB40918014A20B801ECB40918014A20B801EBB40918014A20B801EAB40918014A20B801E9B40918014A20B801E8B40918014A20B801E7B40918014A20B801E6B40918014A20B801E5B40918014A20B801E4B40918014A20B801E3B40918014A20B801E2B40918014A20B801E1B40918014A20B801E0B40918014A20B801DFB40918014A20B801DEB40918014A20B801DDB40918014A20B801DCB40918014A20B801DBB40918014A20B801DAB40918014A20B801D9B40918014A20B801D8B40918014A20B801D7B40918014A20B801D6B40918014A20B801D5B40918014A20B801D4B40918014A20B801D3B40918014A20B801D2B40918014A20B801D1B40918014A20B801D0B40918014A20B801CFB40918014A20B801CEB40918014A20B801CDB40918014A20B801CCB40918014A20B801CBB40918014A20B801CAB40918014A20B801C9B40918014A20B801C8B40918014A20B801C7B40918014A20B801C6B40918014A20B801C5B40918014A20B801C4B40918014A20B801C3B40918014A20B801C2B40918014A20B801C1B40918014A20B801C0B40918014A20B801BFB40918014A20B801BEB40918014A20B801
BDB40918014A20B801BCB40918014A20B801BBB40918014A20B801BAB40918014A20B801B9B40918014A20B801B8B40918014A20B801B7B40918014A20B801B6B40918014A20B801B5B40918014A20B801B4B40918014A20B801B3B40918014A20B801B2B40918014A20B801B1B40918014A20B801B0B40918014A20B801AFB40918014A20B801AEB40918014A20B801ADB40918014A20B801ACB40918014A20B801ABB40918014A20B801AAB40918014A20B801A9B40918014A20B801A8B40918014A20B801A7B40918014A20B801A6B40918014A20B801A5B40918014A20B801A4B40918014A20B801A3B40918014A20B801A2B40918014A20B801A1B40918014A20B801A0B40918014A20B8019FB40918014A20B8019EB40918014A20B8019DB40918014A20B8019CB40918014A20B8019BB40918014A20B8019AB40918014A20B80199B40918014A20B80198B40918014A20B80197B40918014A20B80196B40918014A20B80195B40918014A20B80194B40918014A20B80193B40918014A20B80192B40918014A20B80191B40918014A20B80190B40918014A20B8018FB40918014A20B8018EB40918014A20B8018DB40918014A20B8018CB40918014A20B8018BB40918014A20B8018AB40918014A20B80189B40918014A20B80188B40918014A20B80187B40918014A20B80186B40918014A20B80185B40918014A20B80184B40918014A20B80183B40918014A20B80182B40918014A20B80181B40918014A20B80180B40918014A20B8017FB40918014A20B8017EB40918014A20B8017DB40918014A20B8017CB40918014A20B8017BB40918014A20B8017AB40918014A20B80179B40918014A20B80178B40918014A20B80177B40918014A20B80176B40918014A20B80175B40918014A20B80174B40918014A20B80173B40918014A20B80172B40918014A20B80171B40918014A20B80170B40918014A20B8016FB40918014A20B8016EB40918014A20B8016DB40918014A20B8016CB40918014A20B8016BB40918014A20B8016AB40918014A20B80169B40918014A20B80168B40918014A20B80167B40918014A20B80166B40918014A20B80165B40918014A20B80164B40918014A20B80163B40918014A20B80162B40918014A20B80161B40918014A20B80160B40918014A20B8015FB40918014A20B8015EB40918014A20B8015DB40918014A20B8015CB40918014A20B8015BB40918014A20B8015AB40918014A20B80159B40918014A20B80158B40918014A20B80157B40918014A20B80156B40918014A20B80155B40918014A20B80154B40918014A20B80153B40918014A20B80152B40918014A20B80150B40918014A20B8014FB40918014A20B8014EB40918014A20B8014CB40918014A20B8014BB40918014A20B8014AB40918014A20
B80149B40918014A20B80148B40918014A20B80147B40918014A20B80146B40918014A20B80145B40918014A20B80144B40918014A20B80143B30918014AB80284B21E3E1FB80283B21E151FB80282B21E3E1FB80281B21E3A1FB80280B21E3E1FB8027FB21E3E1FB8027EB21E0C1FB8027DB21E3E1FB8027CB21E3E1FB8027BB21E3E1FB8027AB21E3E1FB80279B21D411FB80278B21D431FB80277B21D431FB80276B21D431FB80275B21D411FB80274B21D431FB80273B21D431FB80272B21D411FB80271B21D421FB80270B21D421FB8026FB21D421FB8026EB21D431FB8026DB21D431FB8026CB21D431FB8026BB21C451FB8026AB21C451FB80269B21C451FB80268B21C451FB80267B21C451FB80266B21C441FB80265B21C451FB80264B21C451FB80263B21C451FB80262B21C451FB80261B21C451FB80260B21C451FB8025FB21C451FB8025EB21C441FB8025DB21C451FB8025CB21C451FB8025BB21C451FB8025AB21C451FB80259B21C451FB80258B21C451FB80257B21C451FB80256B21C451FB80255B21C451FB80254B21C451FB80253B21C451FB80252B21C451FB80251B21C451FB80250B21C451FB8024FB21C451FB8024EB21C451FB8024DB21C451FB8024CB21C451FB8024BB21C451FB8024AB21B491FB80249B21B491FB80248B21B4A1FB80247B21B4A1FB80246B21B4B1FB80245B21B4C1FB80244B21B4C1FB80243B21B4C1FB80242B21B4B1FB80241B21B491FB80240B21B491FB8023FB21B4A1FB8023EB21B4A1FB8023DB21B4A1FB8023CB21B4B1FB8023BB21B4B1FB8023AB21B4C1FB80239B21B4C1FB80238B21B4C1FB80237B21B4C1FB80236B21B4C1FB80235B21B491FB80234B21B491FB80233B21B4A1FB80232B21B4A1FB80231B21B4A1FB80230B21B4B1FB8022FB21B4B1FB8022EB21B4C1FB8022DB21B4C1FB8022CB21B4C1FB8022BB21B4C1FB8022AB21B4C1FB80229B21B4C1FB80228B21B4C1FB80227B21B491FB80226B21B491FB80225B21B4A1FB80224B21B4A1FB80223B21B4A1FB80222B21B4B1FB80221B21B4B1FB80220B21B4C1FB8021FB21B4C1FB8021EB21B4C1FB8021DB21B4C1FB8021CB21B4C1FB8021BB21B4C1FB8021AB21A4E1FB80219B21A4E1FB80218B21A4F1FB80217B21A4F1FB80216B21A4E1FB80215B21A4E1FB80214B21A4F1FB80213B21A4F1FB80212B21A4F1FB80211B21A4E1FB80210B21A4E1FB8020FB21A4F1FB8020EB21A4F1FB8020DB21A4F1FB8020CB21A4E1FB8020BB21A4E1FB8020AB21A4E1FB80209B21A4F1FB80208B21A4F1FB80207B21A4F1FB80206B219501FB80205B219511FB80204B219511FB80203B219501FB80202B219511FB80201B219511FB80200B219511FB801FFB219511FB801FEB219501FB801FDB219511FB801FCB219511FB801FB
B219511FB801FAB219501FB801F9B219511FB801F8B219511FB801F7B219511FB801F6B219511FB801F5B218541FB801F4B218531FB801F3B218541FB801F2B218541FB801F1B218541FB801F0B218531FB801EFB218541FB801EEB218541FB801EDB218541FB801ECB218531FB801EBB218531FB801EAB218541FB801E9B218541FB801E8B218541FB801E7B218541FB801E6B218531FB801E5B218541FB801E4B218531FB801E3B218541FB801E2B218541FB801E1B218541FB801E0B218531FB801DFB218531FB801DEB218541FB801DDB218541FB801DCB218541FB801DBB218541FB801DAB218531FB801D9B218541FB801D8B218541FB801D7B217571FB801D6B217561FB801D5B217561FB801D4B217571FB801D3B217571FB801D2B217571FB801D1B217571FB801D0B217561FB801CFB217561FB801CEB217571FB801CDB217571FB801CCB217571FB801CBB217571FB801CAB217561FB801C9B217561FB801C8B217571FB801C7B217571FB801C6B217571FB801C5B217571FB801C4B217571FB801C3B217561FB801C2B217571FB801C1B217571FB801C0B217571FB801BFB217561FB801BEB217561FB801BDB217571FB801BCB217571FB801BBB217571FB801BAB217571FB801B9B217571FB801B8B217561FB801B7B217571FB801B6B217571FB801B5B217571FB801B4B217571FB801B3B2163F1FB801B2B2165B1FB801B1B2165B1FB801B0B2165B1FB801AFB2165B1FB801AEB2165B1FB801ADB2165B1FB801ACB2165B1FB801ABB2165B1FB801AAB2163E1FB801A9B2163F1FB801A8B2163F1FB801A7B2165B1FB801A6B2165B1FB801A5B2165B1FB801A4B2165B1FB801A3B2165B1FB801A2B2165B1FB801A1B2165B1FB801A0B2165B1FB8019FB2163E1FB8019EB2163F1FB8019DB2163F1FB8019CB2165B1FB8019BB2165B1FB8019AB2165B1FB80199B2165B1FB80198B2163E1FB80197B2165B1FB80196B2165B1FB80195B2165B1FB80194B2163E1FB80193B2163F1FB80192B2163F1FB80191B2165B1FB80190B2165B1FB8018FB2165B1FB8018EB2165B1FB8018DB2165B1FB8018CB2163F1FB8018BB2165B1FB8018AB2165B1FB80189B2165B1FB80188B2165B1FB80187B2165B1FB80186B215611FB80185B215621FB80184B215621FB80183B215661FB80182B215661FB80181B215551FB80180B215451FB8017FB215361FB8017EB215361FB8017DB215611FB8017CB215621FB8017BB215621FB8017AB215641FB80179B215661FB80178B215661FB80177B215661FB80176B215661FB80175B215661FB80174B215661FB80173B215451FB80172B215621FB80171B215621FB80170B215631FB8016FB215641FB8016EB215661FB8016DB215661FB8016CB215661FB8016BB215661FB8016AB215661FB80169B215
621FB80168B215621FB80167B215611FB80166B215641FB80165B215641FB80164B215661FB80163B215661FB80162B215661FB80161B215661FB80160B215661FB8015FB215661FB8015EB215551FB8015DB215451FB8015CB215451FB8015BB215361FB8015AB215611FB80159B215621FB80158B215621FB80157B215631FB80156B215641FB80155B215661FB80154B215661FB80153B215661FB80152B215661FB80151B214401FB80150B214551FB8014FB214561FB8014EB214831FB8014DB2142D1FB8014CB214401FB8014BB214401FB8014AB214411FB80149B214401FB80148B214401FB80147B214411FB80146B2147E1FB80145B214871FB80144B2147F1FB80143B214801FB80142B212461FB80141B212461FB80140B212461FB8013FB212461FB8013EB212441FB8013DB212461FB8013CB211591FB8013BB211591FB8013AB2115B1FB80139B2115B1FB80138B211471FB80137B211581FB80136B2115A1FB80135B2115B1FB80134B2115B1FB80133B2112C1FB80132B211471FB80131B211551FB80130B211571FB8012FB211571FB8012EB211581FB8012DB211591FB8012CB211591FB8012BB2115A1FB8012AB2115A1FB80129B2115B1FB80128B2115B1FB80127B2115B1FB80126B2115B1FB80125B211561FB80124B211561FB80123B211571FB80122B211581FB80121B211591FB80120B2115A1FB8011FB2115A1FB8011EB2115B1FB8011DB2115B1FB8011CB2115B1FB8011BB2115B1FB8011AB2115B1FB80119B2105D1FB80118B2105E1FB80117B2105F1FB80116B2105F1FB80115B2105F1FB80114B2105F1FB80113B2105F1FB80112B2105D1FB80111B2105E1FB80110B2105F1FB8010FB2105F1FB8010EB2105F1FB8010DB2105F1FB8010CB2105D1FB8010BB2105E1FB8010AB2105F1FB80109B2105F1FB80108B2105F1FB80107B2105F1FB80106B2105D1FB80105B2105E1FB80104B2105F1FB80103B2105F1FB80102B2105F1FB80101B2105F1FB8010040FF0F621FFF0F621FFE0F631FFD0F641FFC0F621FFB0F621FFA0F621FF90F631FF80F641FF70F641FF60F641FF50F641FF40F621FF30F621FF20F631FF10F641FF00F641FEF0F641FEE0F641FED0F621FEC0F621FEB0F631FEA0F641FE90F641FE80F641FE70F641FE60E671FE50E681FE40E681FE30E681FE20E681FE10E671FE00E681FDF0E681FDE0E681FDD0E671FDC0E681FDB0E681FDA0E681FD90E681FD80D6B1FD70D311FD60D6B1FD50D6C1FD40D261FD30D261FD20D6C1FD10D2B1FD00D2B1FCF0D2B1FCE0D6B1FCD0D6C1FCC0D6D1FCB0D6B1FCA0D6C1FC90D6D1FC80D6A1FC70D691FC60D681FC50D671FC40D261FC30D311FC20D311FC10D311F40FFC00D311FBF0D311FBE0D311FBD0C711FBC0C721FBB0C731FBA0C741FB90C741F
B80C741FB70C711FB60C711FB50C721FB40C731FB30C741FB20C741FB10C741FB00C741FAF0B791FAE0B7A1FAD0B7C1FAC0B7D1FAB0B7E1FAA0B7E1FA90B7E1FA80B7E1FA70B7E1FA60B7E1FA50B2D1FA40B7E1FA30B7E1FA20B791FA10B7E1FA00B6B1F9F0B791F9E0B7E1F9D0B7E1F9C0B791F9B0B7A1F9A0B7C1F990B7D1F980B7E1F970B7E1F960B7E1F950B7E1F940B7E1F930B7E1F920B6B1F910B2D1F900A4E1F8F0A4F1F8E0A671F8D0AA51F8C0AA71F8503251F8403381F8301381F8255805581AB80557F557D557EAB7D550B7D010B7D1B7D4B7D7B7DAB7DDB7D4012060A7C557A557BAB7A557955775578AB7755BA028600660285403C5576AB755504751475747503F47501AB750144750130750102007510752075030C7455725573AB7255007250728072B072043BB072E072020072010AB8FFC0B3721B1E46B8FFC0407C720D104671556F5570AB6F556E666D556A03251F6938675568AB67556638645565AB645563386255613860555F385D555EAB5D555C385A555BAB5A55593858555703251F5638545555AB54555338515552AB51554F384E554E03251F4D384B554CAB4B554A38485549AB4855473846554503381F001C101C201C0310B8FFC0404E1C1B1E46001B0142301B401BE01BF01B04001BB01BC01B03120F1A1F1A02290F1901434F19016F197F198F19030F18CF18024018292C460F17CF17DF17EF1704134017292E460016101620160315B8FFC0B3164D5446B8FFC0B3163F4446B8FFC0B316313546B8FFC0401F162326460F15010F151F150245EF1501860003012001010001100120010308B8FFC0B401151F4603BD0100010000050001019000542B4BB80800524BB008505BB00188B02553B00188B040515AB00688B000555A5B58B101018E59B101024354B0144B515A58B101018E59858D8D001D424BB01D5358B203A0A01D42594BB0805358B20340401D42594BB0FF5358B20300001D42592B5E7375732B58403D0011E011F0110315BF10CF10020F0F010F0FFF0F02400F3135460F0E1F0E020F0E1F0EFF0E03400E3137460F0D1F0D020F0D1F0DFF0D0316400D313746B8FFC040270C5054460F0B1F0B02553F0B4F0B02400B3F4346400B2D30460003012001010001100120010308B8FFC0B301151F462B5E7375732B2B745E732B2B5E73742B73742B7374745E735901755E73742B2B2B2B5E732B5E732B7374755E735E735E73755E732B5E73002B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B5E73755E732B2B5E735F73737373742B2B2B2B2B2B5E73742B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B
2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B012B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2BB1000243545841FF0284006402830064028200640281006402800064027F0064027E0064027D0064027C0064027B0064027A0064027900640278006402770064027600640275006402740064027300640271006402700064026F0064026E0064026D0064026C0064026B0064026A006402690064026800640267006402660064026500640264006402630064026200640261006402600064025F0064025E0064025D0064025C0064025B0064025A006402590064025800640257006402560064025500640254006402530064025200640251006402500064024F0064024E0064024D0064024C0064024B0064024A006402490064024800640247006402460064024500640244006402430064024200640241006402400064023F0064023E0064023D0064023C0064023B0064023A006402390064023800640237006402360064023500640234006402330064023200640231006402300064022F0064022E0064022D0064022C0064022B0064022A006402290064022800640227006402260064022500640224006402230064022200640221006402200064021F0064021E0064021D0064021C0064021B0064021A006402190064021800640217006402160064021500640214006402130064021200640211006402100064020F0064020E0064020D0064020C0064020B0064020A00640209006402080064020700640206006402050064020441FF00640203006402020064020100640200006401FF006401FE006401FD006401FC006401FB006401FA006401F9006401F8006401F7006401F6006401F5006401F4006401F3006401F200
6401F1006401F0006401EF006401EE006401ED006401EC006401EB006401EA006401E9006401E8006401E7006401E6006401E5006401E4006401E3006401E2006401E1006401E0006401DF006401DE006401DD006401DC006401DB006401DA006401D9006401D8006401D7006401D6006401D5006401D4006401D3006401D2006401D1006401D0006401CF006401CE006401CD006401CC006401CB006401CA006401C9006401C8006401C7006401C6006401C5006401C4006401C3006401C2006401C1006401C0006401BF006401BE006401BD006401BC006401BB006401BA006401B9006401B8006401B7006401B6006401B5006401B4006401B3006401B2006401B1006401B0006401AF006401AE006401AD006401AC006401AB006401AA006401A9006401A8006401A7006401A6006401A5006401A4006401A3006401A2006401A1006401A00064019F0064019E0064019D0064019C0064019B0064019A006401990064019800640197006401960064019500640194006401930064019200640191006401900064018F0064018E0064018D0064018C0064018B0064018A0064018900640188006401870064018600640185006441800184006401830064018200640181006401800064017F0064017E0064017D0064017C0064017B0064017A006401790064017800640177006401760064017500640174006401730064017200640171006401700064016F0064016E0064016D0064016C0064016B0064016A006401690064016800640167006401660064016500640164006401630064016200640161006401600064015F0064015E0064015D0064015C0064015B0064015A0064015900640158006401570064015600640155006401540064015300640152006401500064014F0064014E0064014C0064014B0064014A0064014900640148006401470064014600640145006401440064014300642B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B592B2B2B2B2B2B2B2B2B
2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B00737373737373742B2B2B2B2B2B2B2B2B2B185F5E00
00>] def
/CharStrings 3 dict dup begin
/.notdef 0 def
/gid2 1 def
/gid11 2 def
end readonly def
currentdict dup/FontName get exch definefont pop end
%APLsfntEnd
42/FontType resourcestatus{pop pop true}{false}ifelse
{currentfile 0(%APLT1End\n)/SubFileDecode filter flushfile}if
/FontType 1 def
/FontMatrix [ 0.00048828125 0 0 0.00048828125 0 0 ] readonly def
/FontBBox {-1030 -640 2540 2102} readonly def
/UniqueID 4105981 def
currentdict end
currentfile eexec
54544758EC884CF30C3CD503CEDBFF3839C47C3C3333173232E3FDBFF439491DB843E1924E63AA7726BBB0485AB56D93D8C0906F647A47162891E73FFC2A9873C4B1EAC5EEBDFFC4D06084FBD84139DF4583C6E259D10699944D1068C9C45667DCCCFB9B7EA01B606435EDCBD273ABAC093D14085CCBAC149BD7382E842CFE0D7FE4FD2EF589A2471F6074A80A8B675C2F7A50D63AC1EF90D787BADD11633CB01CF6EE3B37AAF9078A69AC4740E9B6525D78BBD839551A1CB80DB8682FA5E87591BBD6EE8B946063A2A58D9CA3685AB305495DC5FB5747EB8A9A059C4976C0FE4EEAB1D56FF47F1E9664ED9F4A7DAB763AF92B2F6CF2FA7DEC24710E0B9096E30F772BA7FEA9BDBE496C42ED2CEB58F54E80BDF57CE7B4DB6CCFE7182F43BF93CCA0767AF95D62C5D2C3DC6AE1E6D139F51A2C63432117F1714C5566572EE9967A715420ABDCD1D7BD74F8450B89965FCC81C6ACA565C5F3CCF91D430D1F953E4F1A645300A98DD8C47CD64555F08F422340A85404EAE0D3229C4F9336B9470CACBD6BBF3395104750A915CC6EAAC197668267B8C62D2764C8CD69FD937CA3C924D997A0EDE7964BEB9EA2F92EF70C5E5DA0AA55675454E59AEC12A68086DDD95476477C46AE143377694529C58844212FC811560E27EEE2CF00BCB28024022816FF807CAF9CEF58EA120E680185C875EBD525A3037499613F60D97EE968F6024DDA0F0B3B2C2B558C2F38941578605E02945A9F94777AD8017864D4F41E285AFD4F7A5B6CA2215F8E2D616F6C28A1CCBBE63E2C4A74296C9B7882FD72375336B886D3008A270582B0B2FF746EDF0AF556A408D4A71868EB35752B29C801F3D2636A2B942F69EEEE910B18883CC61FE502828E6FB40143FCA0A751344D68AA5EDF37F3388AB4E68440D69B7777E8E860CC71980460BF96B6B0FFC14739542C41ED47C9F0816BDF9A9746CACB0E791E662CA1581BC1BF85E4C9E20F9B42A391FBFE13BDE22EA86998FEF8FD77AA772FA6D59C6B8862F443EDC771286D1A5FED277DD44F5A289A9BE2104305856FDE1CD9E441EDB68B446F5BEFAE91F1A9914F01D742C362C513D79EEA9A894734DA4BD78FE8D57D4BEBFC9FF3EA43B7311624E6E281866EFA0FA6DD50947FE1C55D2651FA9DB03791431AE183CA671E9E33E33405BE49C295FD60FE7C51FA95084D68982C65A2FCC548D7864E4D53AE8C105AF0E67F73C424611E2A8D9826A07FC513364C0A098DA74A07903835EC442D2DBDFBC3FE72D5F346ACA8A5A001D229BC367E777600E2B1F9399797337657B31B6CDFD12C2D08C9A408F51D7A0104F759C0324AF85B515EE4B51EE595A8830488F19D6262A73CA41B7E5A9D054904C79CB226FEB88FA9C2ECFF1286A74398BA4199E1867111056BCBAD51085CC8DC870BAFA76F68FC7423CB915E66400124D6EE68E1
85FB66F00B0EA9090AF4BA884C981E4A12B64C782B66AFF5BF1C04C54B263BA5C0BF7A39E5AFE8FCACA950AFB066E5231319F32F7E81D5ACF7F8FA8C0265BD1CBB51D18D2B506E486DC5D7B3AB658CFEC76C3EDC75EABF63FDE427FB078B246E05D397C38A3D830A55ADDF79310F4E041F8E72F36301F6548E21ECFF5538D098970C5CE4065F8D09CF2B71CFC506A8C5413D79DE75CE52EFDDCEE84418ADDBCD3F731D301F7F46BC2027CAC683ECB49B995F6B64ABAE34E5C0433155F740CB25DB224177F4B9570A58F7FF83F2850E83C40DEB216B09342A5FADAB9414AEBAA1FF8026D4FDB7F8623DB4411C5D8D1BF5E5F462F6A63154CDF711AA31EE1F82EF3CFADFC0EE8A765C9A513279F3F3C5E4A31610D59B9F14C2C0200B2C61CA9836656EAB1D90ADEB47517898EDA851AFB0A34DE3D90A79750780DD872F8B19B062945DDF91AE2BA52992B10BD047F39A528D701CADAB494D278067D52AD0E338BDCB30C162675D6387C083A883FDD4258EFFE94F6C7A42DAC08B6CB08F769D3F8EF87D24DE3DF11313FF243E252B501FB872373D48326376B925CB46FF66587DC88FC9885DE73DB33EA0E8FD6E3C4E380E2ABD5828E47B917F56621421B23935BC0488638B58A094E70F712C8D61CCC911CCF3E934D01ABF2311096EE21CDC37498559D3752EF9D135F095A36C96F3130DAA40733923C535FD502368DBB780185C36F9F1C972A7D9120235DE6B7D4DB326CF2580A860CEAF1B5E9501A7228DE014199A19481E
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
cleartomark
%APLT1End
%RBIEndFontSubset
/AFEWUV+Calibri cguidfix
/F1.1/AFEWUV+Calibri renmfont
%RBIBeginFontSubset: JBTRDX+Calibri
%!FontType1-1.0: JBTRDX+Calibri 1.0000.6.2000
14 dict begin
/FontName /JBTRDX+Calibri def
/PaintType 0 def
/Encoding 256 array 0 1 255 {1 index exch/.notdef put} for
dup 33 /gid5 put
dup 34 /gid4 put
dup 35 /gid2 put
dup 36 /gid3 put
dup 37 /gid1 put
dup 38 /gid6 put
dup 39 /gid7 put
dup 40 /gid8 put
readonly def
42/FontType resourcestatus{pop pop false}{true}ifelse
%APLsfntBegin
{currentfile 0(%APLsfntEnd\n)/SubFileDecode filter flushfile}if
/FontType 42 def
/FontMatrix matrix def
/FontBBox[2048 -1030 1 index div -640 2 index div 2540 3 index div 2102 5 -1 roll div]cvx def
/sfnts [<
74727565000900000000000063767420000000000000009C000005BC6670676D000000000000065800000D2B676C7966000000000000138400000E386865616400000000000021BC000000366868656100000000000021F400000024686D74780000000000002218000000246C6F6361000000000000223C000000146D617870000000000000225000000020707265700000000000002270000024EB0000079E0000FE930000000000000000000000000050006A0073008000800086008D009300BF00DB006200830093009900A000A600A900B000C100C900D700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000FE79056D000C03B7000600130000FFFAFFEDFEA6FFEDFEB8050E000600130000FFFAFFEDFE93050E00130420000600130000FFFAFFEDFF10FFEE050E00130420000600130000FFFAFFEEFE93FF10FEB80612000A050E0006000D02D2FFFAFFF301FDFFFA023F0006000DFF36FFFAFFF302870006000F0000FFFAFFF1079EFEAFFEA700000000000000000000000000500051005A005B005C005D006000610062006400680069006A006B006C006D006E00680069006E00600067006E00660068005F00610063006400660068006A006B006C006D006E006F0070006F00720074007500760076007000720073007400750076006F007000710072007300750077007700780079007A007B007C007D007B007C007D00770079007A007C0078007A007C007D0078007D007E007F008000810082007E007F00810082007E007F00800081008200830084008500860087008800890083008400850086008700880089008300840085008600870088008900890086008700880089008A008B008C008D008E008F008A008B008C008D008E008F008A008B008C008D008E008F008D008A008B008C008D008E008F0090009000910092009300940095009600980099009B009C0090009100920093009400950096009700980099009A009E009F00A60090009100950098009F009000910096009700BC00C600B500AE00AF00B6006800690063006A006F00700071006F0070007100720066006C006D00700079007C007F00830086008700880089008A0074007500760077007A007B007C007D007E008200850086008A0088008900830078007B00820083008600870088008900760079007A007C007D007E0083008500880089008A0073007400750077007A007D00880089008A008B008C008D008E00900094008B008C008D00910092009300940095008C008D00910095008F009000910092009300940095008B008C008D008E008F009000910092009300940095008B008C008D008E008F00900091
009200930096009700980099009C0096009700980099009A009B009C00960099009A009C0096009700980099009A009B009C009700980099009A009B009C009700980099009A009B009C0096009D00A000A1009D009E009F00A000A100A2009D009F00A000A1009F00A2009D009E009F00A000A100A2009D009E00A000A1009D009E00A000A2009D00A300A400A500A600A700A300A400A600A700A300A400A500A600A700A600A300A700A800A900AA00AB00AC00AC00A800A900AA00AB00AC00A800A900AA00AB00AC00A800AA00AB00AC00AE00AD00AE00AF00B000B100B200B300B400B500B600B700B800AD00AE00AD00AE00AF00B000B100B200B300B400B500B600B700B800AD00AE00AF00B000B100B200B300B400B500B600B700B800B300AE00AF00B000B200B500B600B700B800B900BA00BB00BC00BE00C000C100C200C200B900BA00BB00BC00BD00BE00BF00C000C100C200C400BA00BB00BE00BF00C000C200C300C400B900BA00BF00C000C200C600C700C900CA00CB00CC00CF00C500C700CE00C500C700C800CF00D000D200D300D7010D00D000D100E900D000FD00D005E4000E0041000005BA009C009C005E005E0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000051A001500A0FFF8FF77FFF803480066015401CC00AC00A200B4008C0101006E00000000000000000000011F000A04E2001400B4FFF6035C00140028FDDA0568FEA2FFEF405A868574737271706F6E6D6C6B6A696867666564625F5E5D5C5B5A59585554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A39383736352F2E2D2C2826252423221F181411100F0D0B0A090807060504030201002C4523466020B02660B004262348482D2C452346236120B02661B004262348482D2C45234660B0206120B04660B004262348482D2C4523462361B0206020B02661B02061B004262348482D2C45234660B0406120B06660B004262348482D2C4523462361B0406020B02661B04061B004262348482D2C0110203C003C2D2C20452320B0CD442320B8015A51582320B08D44235920B0ED51582320B04D44235920B0042651582320B00D44235921212D2C20204518684420B001602045B04676688A4560442D2C01B10B0A432343650A2D2C00B10A0B4323430B2D2C00B0282370B101283E01B0282370B10228453AB10200080D2D2C2045B00325456164B050515845441B2121592D2C2045B0004360442D2C01B00643B00743650A2D2C2069B04061B0008B20B12CC08A8CB8100062602B0C642364615C58B00361592D2C8A03458A8A87B0112BB0292344B0
297AE4182D2C4565B02C234445B02B23442D2C4B525845441B2121592D2C01B005251023208AF500B0016023EDEC2D2C01B005251023208AF500B0016123EDEC2D2C01B0062510F500EDEC2D2C20B001600110203C003C2D2C20B001610110203C003C2D2C00B00743B006430B2D2C21210C6423648BB84000622D2C21B08051580C6423648BB82000621BB200402F2B59B002602D2C21B0C051580C6423648BB81555621BB200802F2B59B002602D2C0C6423648BB84000626023212D2C4523456023456023456023766818B08062202D2CB00426B00426B00425B0042545234520B003266062636820B0032661658A2344442D2C2045B0005458B040442045B04061441B2121592D2C45B1302F4523456160B0016069442D2C4B5158B02F2370B01423421B2121592D2C4B515820B0032545695358441B2121591B2121592D2C45B01443B0006063B0016069442D2CB02F45442D2C452320458A60442D2C45234560442D2C4B235158B90033FFE0B134201BB3330034005944442D2CB0164358B00326458A586466B01F601B64B020606620581B21B04059B001615923586559B02923442310B029E01B2121212121592D2CB0164358B004254564B020606620581B21B04059B0016123586559B0292344B00425B00725082058021B0359B0052510B004252046B0042523423CB0072510B006252046B00425B0016023423C2058011B0059B0052510B00425B029E0B0072510B00625B029E0B00425B00725082058021B0359B00425B003254348B00625B00325B0016043481B2159212121212121212D2CB0164358B004254564B020606620581B21B04059B0016123581B6559B0292344B00525B00825082058021B0359B0042510B005252046B0042523423CB00425B0072508B0072510B006252046B00425B0016023423C2058011B0059B0042510B00525B029E0B02920456544B0072510B00625B029E0B00525B00825082058021B0359B00525B003254348B00425B0072508B00625B00325B0016043481B2159212121212121212D2C02B00425202046B004252342B0052508B003254548212121212D2C02B0032520B0042508B0022543482121212D2C452320451820B00050205823652359236820B040505821B04059235865598A60442D2C4B53234B515A5820458A60441B2121592D2C4B545820458A60441B2121592D2C4B53234B515A58381B2121592D2CB000214B5458381B2121592D2CB002435458B0462B1B21212121592D2CB002435458B0472B1B212121592D2CB002435458B0482B1B21212121592D2CB002435458B0492B1B212121592D2C2320B000508A8A64B10003255458B0401BB10103255458B005438B59B04F2B5923B0622B2321235865592D2CB108000C215460432D2C014623466023466123201020468A61B8FF80
628AB140408A704560683A2D2C208A2349648A2353583C1B21592D2C4B52587D1B7A592D2CB012004B014B54422D2CB1020042B123018851B1400188535A58B910000020885458B202010243604259B12401885158B920000040885458B2020202436042B12401885458B2022002436042004B014B5258B2020802436042591BB940000080885458B202040243604259B94000008063B80100885458B202080243604259B94000010063B80200885458B202100243604259B12601885158B94000020063B80400885458B202400243604259B94000040063B80800885458B202800243604259B12801885158B94000080063B81000885458BA00020100000243604259595959595959B10002435458400A0540084009400C020D021BB10102435458B2054008BA010000090100B30C010D011BB18002435258B2054008B80180B109401BB901000002435258B2054008BA0180000901401BB901800002435258B2054008B80200B109401BB2054008BA010000090100595959B9400000808855B94000020063B8040088555A58B30C000D011BB30C000D0159595942424242422D2C451868234B51582320452064B04050587C59688A6059442D2CB00016B00225B0022501B001233E00B002233EB10102060CB00A236542B00B234201B001233F00B002233FB10102060CB006236542B0072342B00116012D2C20B82000628A6023622D2CB0072558001B0159B0042510B00325B0022520B8FFFF545821CD1BED5921B006255CB006255A58B0092B5920B005254AB0042547B004254760B0062547B0806361B00225B0005558B00325B00725496359B0082558001B0159B00425B0062549B009255CB009255A58B0092B59B0072546B0806361B0032520B0005558631B2159612320B0005558B080631B21B08059B0592BB006255C586959B00425202010B00048233AB0062658001B0159B0052658B003252F598A12233221212D2CB00625B00A2587B00625B009254AB0005358B00625B00A251BB00925B0072559B00225B00225070CB005256323B00625636020B94000040063535821B00426B00426B00A1BB94000040063655158B0042665B0042665B00A1BB00426B00426B000B00325B003250B0D0AB0092EB00725B007250B0D0AB00B2EB00525B0052507595920B0005558B00525B0052587B00725B007250BB0092510B00B25B0092620B8FFFF545821CD1BED59B00525B0052507B00825B00B254923B00625B0062587B00A2510B00B25C15920B00051B800522378B00161B00225B00725B0072507B00A25B00D254961B08062B00525B005250BB00A252338B00625B0062587B00825B008250BB00A2510B00B25C4B00625B0062507B00925B00C2549B0032554B8FFA723792121212121212121212121212D2C23B0005458B9400000001BB9
00004000598AB0005458B9400000001BB90000400059B05B2B2D2C08B0005458B9400000001BB900004000590DB05B2B2D2C8A8A080D8AB0005458B9400000001BB90000400059B05B2B2D2CB00426B00426080DB00426B00426080DB05B2B2D2CB0022563B0206066B00225B82000626023622D2C204569442D2C234AB1024E2B2D2C234AB1014E2B2D2C238A4A234564B0022564B002256164B00343525821206459B1024E2B23B000505865592D2C238A4A234564B0022564B002256164B00343525821206459B1014E2B23B000505865592D2C20B003254AB1024E2B8A103B2D2C20B003254AB1014E2B8A103B2D2CB00325B003258AB0672B8A103B2D2CB00325B003258AB0682B8A103B2D2CB0032546B003254660B004252EB00425B00425B0042620B000505821B06A1BB06C592BB0032546B00325466061B08062208A2010233A232010233A2D2CB0032547B003254760B0052547B0806361B00225B00625496323B005254AB080632058621B2159B0042646608A468A4660B02063612D2CB00426B00425B00425B00426B06E2B208A2010233A232010233A2D2C2320B001545821B00225B1024E2BB0805020605920606020B001515821211B20B005515821206661B0402361B100032550B00325B00325505A5820B00325618A535821B000591B21591BB00754582066616523211B2121B000595959B1024E2B2D2CB00225B004254AB0005358B0001B8A8A238AB00159B004254620666120B00526B0062649B00526B00526B0702B236165B02060206661B02061652D2CB0022546208A20B000505821B1024E2B1B452321596165B00225103B2D2CB0042620B802006220B80200638A236120B05D602BB00525118A128A20398A58BA005D10000004266356602B23212010204620B1024E2B23611B2321208A201049B1024E2B593B2D2CBA005D10000009256356602BB00525B00525B00526B06D2BB15D0725602BB00525B00525B00525B00525B06F2BBA005D10000008266356602B20B0005258B0502BB00525B00525B00725B00725B00525B0712BB0021738B00052B00225B001525A58B00425B0062549B00325B00525496020B0405258211BB000525820B0025458B00425B00425B00725B0072549B00217381BB00425B00425B00425B0062549B0021738595959595921212121212D2CB12801885158B94000040063B8080088545C1BB001592D2CB12801885158B94000040063B8080088545C1BB001592D0000050000FE7303D2050E000300070039004D004E0097B0852B58BC000D01520016003A01B5B5154444082D07BE0143000200200154000800010143400F04020DB71A1A3F23B735068D031149B8012DB43F078D0202003FFDDEFDCE2FFDDEED12392FED012FDDE1DEE110F1CE11392F33E1D4E131301B40141A0DB76C
1A1A3F3523B76C3503068D6C03113F49B8012D40096C3F4002078D6C020200183F2B1ACE2BCE2F2BCE2B12392F2B303159011121110111211101140E020707140623222E02352726363333323E0235342623220E0223222E02353436373E0333321E0203140E0223222E0235343E0233321E020103D2FC5A034FFD06027E233F5633051E1A0F140D0605021C18122D3C2510535B253C2E1D0703070603050807283742224B6C4522DA07111D15161D120808121D16151D1107FDDB050EFAF2050EFB43046CFB9403063B5C3F2403980A0802040606B81E18192A3B2149560F1310040B13101116080712110C28445CFD86151C120808121C15151D120808121DFD4D00030035FE93038903C8003E004E005F0116B0852B584015122D47100F014D47080C014D47201013014C47333FB8FFF8B30C014D3FB8FFF0B30F014D3FB8FFE0B61013014C3F074FB8FFE0400D0F12014C4F1B040F3003330707B8FFE0B310014D1BB8FFC0400D10014D2D33071B1B07332D0400B8FFE040340B014D0058100F014D58201012014C582A25400B12014C250F300703384ADA0C53E81515603803E93C482A2042D9384A5BD9204F003FED3FED12393FED1112392FEDD6ED121739012F2B33CD2B2BC42B17392F2F2F2F2B2B1112173910CD2B10CD2B2B2B10CD2B2B2B10CD31301B40270F300703380C4ADA6C0C151553E86C151560383C03E96C3C482A203842D96C384A205BD96C204F00183F2B3F2B12393F2B1112392F2B10C62B1217393031590114062323161615140E0223222627060615141617171E0315140E0223222E0235343E0237262635343637262635343E023332161721321601342623220E0215141633323E0213342627270E0315141633323E020389130F81231C325D804E37631B12174136EB4370522E346BA6716D99622C10213120312F32251F24345C814C29471F01101111FEFE655D30472F17655B31482F17535F51E92029180984764B653E1B0374231F24572F4E78532C1D16122E1E232E020A02213D593B3E70553125405934213E383319194C2C3D6026255D424D7A542D090821FEF15C672038492859661F3748FD5E3A3F0208192D29281541431D303E0000020085FFFA0151052F0015002100A7B0852B58B73F234F236F230316B8FFE8B30D014D16B8FFF6B30C014D16B8FFE8B313014D16B8FFE0B310014D16B8FFF0B30F014D16B8FFE8B30B014D16BB0271001C0015FFF0B30D014D15B8FFF6B30C014D15B8FFE8B30B014D15B8FFF0B40F10014C15B801F8B60A1F400F014D1FB8013EB4191049054C003F3FD6ED2B012FE12B2B2B2BD4E12B2B2B2B2B2B31305D1BB1191FB8013EB56C191049054C00183F3FC62B30315925140E0223222E023511343E0233321E0215131406232226353436333216013E08122019182013
070713201819201208132C3B3A2B2C3B3A2B19080B080404080B080384070C080404080C0701303A2A29393A2A2900010099FFFA03A003CA003200B8B0852B58400F12100B014D13100B014D3F34012A13B8FFF0B310014D13B8FFF0B30F014D13B8FFF0B30D014D13B8FFF6B30C014D13B8FFE8B30B014D13B801F8401B1E0B1010014D0B100D014D0B100F014D0B0A0C014D0B180B014D0BB801F8B700400C014D001E10B80106400A2D4A2A192449194C054C003F3F3F12393FED012F2F2BE12B2B2B2B2B10E12B2B2B2B2B3931305D002B2B1BB12D10B80106400B6C2D4A2A192449194C054C00183F3F3F12393F2B30315925140E0223222E023511342E022322060711140E0223222E023511343E0233321E021515363633321E021503A00812201819201208182E49303E7C44081220191820130706121C17161D10074C974D5A7B4C2119080B080404080B08020F4D5E44245855FD8B080B080404080B080384080B090303090B0877554F3D6689600000010051FFED02CE03CA00490110B0852B58400C2F4B3F4B4F4B7F4BAF4B0541B8FFF0B30D014D41B8FFF6B30C014D41B8FFF0B30F014D41B8FFC0B313014D41B8FFF0B310014D41B8FFF0B30B014D41B801DC401F243224320C1B100D014D1B0A0C014D1B1010014D1B100B014D1B100F014D1BBA01F60000FFC0400A0F014D000C400B014D0CB8FFC0402613014D3F0CAF0C020C2EDD370AEB115011601170110337113711163CDB411B05294A16E8054D003FED3F123939ED1139392F2F5D10ED10ED012F5D2B2BD42BE12B2B2B2B2B1239392F2FE12B2B2B2B2B2B31305D1B4025372EDD6C110AEB6C001110112011030E033711371116293CDB6C411B05294A0516E86C054D00183F2B3F1239392B1139392F2F5F5E5D2B2B30315901140E0223222E0435343E0233321E0233323E0235342E0635343E0233321E0615140E0223222E0223220E0215141E0602CE335E824E30574530160A04060B070B2B3F56382A44321B2740505551402729527B5224483A291507030303070A06092236492F2A40291528405255534027010E456C4A260F171914241F131A10071B201B122336252634281F222B3E563C3561492C0C1215100C0F1610111910071619161323301C27352820222A3C540000010094FFED039C03BC003200B8B0852B58401F3F34010B27100D014D270A0C014D27080B014D27100F10014C27100B014D27B801F9B6004011014D001FB8FFF0B30D014D1FB8FFF6B30C014D1FB8FFF8B40F10014C1FB8FFF8B30B014D1FB8FFF0B40F10014C1FB8FFF0B30B014D1FB801F94009132D49270B05194924B80105B30E4D054C003F3FED3F1239393F012FE12B2B2B2B2B2BD42BE12B2B2B2B2B3931305D1B40092D49270B0519490E24B80105B46C0E4D054C00183F3F2B
3F1239393F30315925140E0223222E023535060623222E023511343E0233321E021511141E023332363711343E0233321E0215039C07121D15171D11064D964D5A7B4C210714201818201308172F48303E7B4507141F191820120919080B080404080B0877554E3C6789620222080B090303090B08FDF44F5F432558550275080B090303090B0800000100AE0000039F0517002E010CB0852B584024241E01241D01241C01231B01241A01241901261801261701291201291101122010014D30B8FFC0400D0F024D60300100200B014D0029B8FFE8B310014D29B8FFF0B30F014D29B8FFF0B30D014D29B8FFF6B30C014D29B8FFF8B30B014D29B80211400E1E18200B014D180B200B014D0B11B8FFE0B30F014D11B8FFD4B30F024D11B8FFC0B310014D11B8FFE0B30F014D11B8FFC0B30C014D11B8FFF040090B014DA01101111312B8013FB323522910B80107B10654003FED323FFDCD012F5D2B2B2B2B2B2BCD2BC42B33F12B2B2B2B2BC52B31305D2B002B015D5D5D5D5D5D5D5D5D5D1BB313402312B8013FB56C2352290610B80107B26C065400183F2B323F2B1ACD30315925140E022321222E0235343E02332111070606262635343E0237253E0333321E02151133321E02039F060A0D07FD5C070C0B0606090D08010EFA13170E0503060B09012A040C12181218201206EA080E090544131A100707101A13121A110903D8950A040D1E171118100C06BF0304040104070B06FB8F09111A000100720000039C0521003E00CAB0852B58400D2936012B1E01291D01261E0140B8FFC040170F024D604001161810014D16100C0D014C16200B014D16B8022DB633253325330039B8FFE8B310014D39BA027F000BFFC0B30C014D0BB8FFE0400B0F014D0B1138392020391BB8012EB63316062E531039B80128B10654003FED323F123939ED11392F123939012F2B2BE12BCD39392F2F10E12B2B2B31305D2B005D015D5D5D1BB71138392020392E1BB8012E40096C3316062E53100639B80128B26C065400183F2B323F1239392B11392F12393930315925140E022321222E0235343E0237133E0335342E0223220E0223222E0235343E0633321E0215140E02070721321E02039C05090F09FD350E150F07030A0F0CFB576939121C3550343D6149310C070B0704020508183B596B3B5E8D5D2E1647866FCD0233080F0B054A121C130907101E16141E17170D010A5C9278622B2B4D3A2222282208121E150F16100E15242318355C7A453E7B8FAF72D609121B0000010067FFED0392052100580147B0852B58B9005AFFC0401C0F024D605A01310810014D31100F014D31100C0D014C31200B014D31B80235400A4E53264E4E1813014D40B8FFE840260F014D26200F014D40264E4E2640030E1B0810014D1B100F014D1B100C0D014C1B200B014D
1BB8FFF8B30B014D1BB8022DB500080B014D00B8FFE8B40F024D000EB8FFE0B30F014D0EB8FFF0B30F014D0EB8FFC040130C014D0E3B400F014D3B400C0D014C2F3B0111B8FFC0B30F014D11B8FFC0400A0C0D014C3B113B111636B8010B400A49532CF3202005495316B8010BB10556003FED3F12392FED3910ED1139392F2F2B2B5D2B2B012F2B2B2BD42B2BE12B2B2B2B2B1217392F2F2F2B2B2B11123910E12B2B2B2B31305D2B1B400C0F3B010B033B113B11164936B8010B400D6C53202CF36C20200549530516B8010BB26C055600183F2B3F12392F2B392B1139392F2F5F5E5D30315901140E0223222E0635343633321E0233323E0235342E022323222E0235343E023333323E0235342E0223220E0223222E0235343E0633321E0215140E0207151E0303923E74AA6B4171583A0F0806030E0D0935536F44426444222B53794D7B080F0B07060B0E0971426949271A3451353A614C320A070B0703020608133A556F405A885B2D203E5A3B436F502D0172598F6637151D1F0E0E141D15241C202520223E55323758402207101A1513190F07224059372849361F232823050F1B160F17110E132423182E5475473D6951390B020735506B0001000000063333A1099DFD5F0F3CF50019080000000000BBEB7CCC00000000D5968A66FBFAFD8009EC083600000009000200000000000000010000079EFDDA00000AA0FBFAFAA009EC000100000000000000000000000000000009040E000003C4003501D60085043400990321005104340094040E00AE040E0072040E0067000000BF01CF025502F803DF0482054C0607071C000100000009006000050000000000020010002F008700001236023500000000B10903415302C802C60038001F02C702C60038001F02DD003802DA005502D9003802D7005502D8003802D7005502D6003802D5005502D4003802D3005502D2003802D1005502BF003802BE005502BD003802BC0055000402DB003402DB005402DB0003003402DB005402DB006402DB00A402DB00D402DB0005006B02D50001000B02D10001001402C2004402C2006402C2007402C2009402C2000500A402BE000100A402BC000100200284B40918014A20B80283B40918014A20B80282B40918014A20B80281B40918014A20B80280B40918014A20B8027FB40918014A20B8027EB40918014A20B8027DB40918014A20B8027CB40918014A20B8027BB40918014A20B8027AB40918014A20B80279B40918014A20B80278B40918014A20B80277B40918014A20B80276B40918014A20B80275B40918014A20B80274B40918014A20B80273B40918014A20B80271B40918014A20B80270B40918014A20B8026FB40918014A20B8026EB40918014A20B8026DB40918014A20B8026CB40918014A20B8026BB40918014A20B8026AB4091801
4A20B80269B40918014A20B80268B40918014A20B80267B40918014A20B80266B40918014A20B80265B40918014A20B80264B40918014A20B80263B40918014A20B80262B40918014A20B80261B40918014A20B80260B40918014A20B8025FB40918014A20B8025EB40918014A20B8025DB40918014A20B8025CB40918014A20B8025BB40918014A20B8025AB40918014A20B80259B40918014A20B80258B40918014A20B80257B40918014A20B80256B40918014A20B80255B40918014A20B80254B40918014A20B80253B40918014A20B80252B40918014A20B80251B40918014A20B80250B40918014A20B8024FB40918014A20B8024EB40918014A20B8024DB40918014A20B8024CB40918014A20B8024BB40918014A20B8024AB40918014A20B80249B40918014A20B80248B40918014A20B80247B40918014A20B80246B40918014A20B80245B40918014A20B80244B40918014A20B80243B40918014A20B80242B40918014A20B80241B40918014A20B80240B40918014A20B8023FB40918014A20B8023EB40918014A20B8023DB40918014A20B8023CB40918014A20B8023BB40918014A20B8023AB40918014A20B80239B40918014A20B80238B40918014A20B80237B40918014A20B80236B40918014A20B80235B40918014A20B80234B40918014A20B80233B40918014A20B80232B40918014A20B80231B40918014A20B80230B40918014A20B8022FB40918014A20B8022EB40918014A20B8022DB40918014A20B8022CB40918014A20B8022BB40918014A20B8022AB40918014A20B80229B40918014A20B80228B40918014A20B80227B40918014A20B80226B40918014A20B80225B40918014A20B80224B40918014A20B80223B40918014A20B80222B40918014A20B80221B40918014A20B80220B40918014A20B8021FB40918014A20B8021EB40918014A20B8021DB40918014A20B8021CB40918014A20B8021BB40918014A20B8021AB40918014A20B80219B40918014A20B80218B40918014A20B80217B40918014A20B80216B40918014A20B80215B40918014A20B80214B40918014A20B80213B40918014A20B80212B40918014A20B80211B40918014A20B80210B40918014A20B8020FB40918014A20B8020EB40918014A20B8020DB40918014A20B8020CB40918014A20B8020BB40918014A20B8020AB40918014A20B80209B40918014A20B80208B40918014A20B80207B40918014A20B80206B40918014A20B80205B40918014A20B80204B40918014A20B80203B40918014A20B80202B40918014A20B80201B40918014A20B80200B40918014A20B801FFB40918014A20B801FEB40918014A20B801FDB40918014A20B801FCB40918014A20B801FBB40918014A20B801FAB40918014A20B801F9B40918014A20B801F8B409
18014A20B801F7B40918014A20B801F6B40918014A20B801F5B40918014A20B801F4B40918014A20B801F3B40918014A20B801F2B40918014A20B801F1B40918014A20B801F0B40918014A20B801EFB40918014A20B801EEB40918014A20B801EDB40918014A20B801ECB40918014A20B801EBB40918014A20B801EAB40918014A20B801E9B40918014A20B801E8B40918014A20B801E7B40918014A20B801E6B40918014A20B801E5B40918014A20B801E4B40918014A20B801E3B40918014A20B801E2B40918014A20B801E1B40918014A20B801E0B40918014A20B801DFB40918014A20B801DEB40918014A20B801DDB40918014A20B801DCB40918014A20B801DBB40918014A20B801DAB40918014A20B801D9B40918014A20B801D8B40918014A20B801D7B40918014A20B801D6B40918014A20B801D5B40918014A20B801D4B40918014A20B801D3B40918014A20B801D2B40918014A20B801D1B40918014A20B801D0B40918014A20B801CFB40918014A20B801CEB40918014A20B801CDB40918014A20B801CCB40918014A20B801CBB40918014A20B801CAB40918014A20B801C9B40918014A20B801C8B40918014A20B801C7B40918014A20B801C6B40918014A20B801C5B40918014A20B801C4B40918014A20B801C3B40918014A20B801C2B40918014A20B801C1B40918014A20B801C0B40918014A20B801BFB40918014A20B801BEB40918014A20B801BDB40918014A20B801BCB40918014A20B801BBB40918014A20B801BAB40918014A20B801B9B40918014A20B801B8B40918014A20B801B7B40918014A20B801B6B40918014A20B801B5B40918014A20B801B4B40918014A20B801B3B40918014A20B801B2B40918014A20B801B1B40918014A20B801B0B40918014A20B801AFB40918014A20B801AEB40918014A20B801ADB40918014A20B801ACB40918014A20B801ABB40918014A20B801AAB40918014A20B801A9B40918014A20B801A8B40918014A20B801A7B40918014A20B801A6B40918014A20B801A5B40918014A20B801A4B40918014A20B801A3B40918014A20B801A2B40918014A20B801A1B40918014A20B801A0B40918014A20B8019FB40918014A20B8019EB40918014A20B8019DB40918014A20B8019CB40918014A20B8019BB40918014A20B8019AB40918014A20B80199B40918014A20B80198B40918014A20B80197B40918014A20B80196B40918014A20B80195B40918014A20B80194B40918014A20B80193B40918014A20B80192B40918014A20B80191B40918014A20B80190B40918014A20B8018FB40918014A20B8018EB40918014A20B8018DB40918014A20B8018CB40918014A20B8018BB40918014A20B8018AB40918014A20B80189B40918014A20B80188B40918014A20B80187B40918014A20B80186
B40918014A20B80185B40918014A20B80184B40918014A20B80183B40918014A20B80182B40918014A20B80181B40918014A20B80180B40918014A20B8017FB40918014A20B8017EB40918014A20B8017DB40918014A20B8017CB40918014A20B8017BB40918014A20B8017AB40918014A20B80179B40918014A20B80178B40918014A20B80177B40918014A20B80176B40918014A20B80175B40918014A20B80174B40918014A20B80173B40918014A20B80172B40918014A20B80171B40918014A20B80170B40918014A20B8016FB40918014A20B8016EB40918014A20B8016DB40918014A20B8016CB40918014A20B8016BB40918014A20B8016AB40918014A20B80169B40918014A20B80168B40918014A20B80167B40918014A20B80166B40918014A20B80165B40918014A20B80164B40918014A20B80163B40918014A20B80162B40918014A20B80161B40918014A20B80160B40918014A20B8015FB40918014A20B8015EB40918014A20B8015DB40918014A20B8015CB40918014A20B8015BB40918014A20B8015AB40918014A20B80159B40918014A20B80158B40918014A20B80157B40918014A20B80156B40918014A20B80155B40918014A20B80154B40918014A20B80153B40918014A20B80152B40918014A20B80150B40918014A20B8014FB40918014A20B8014EB40918014A20B8014CB40918014A20B8014BB40918014A20B8014AB40918014A20B80149B40918014A20B80148B40918014A20B80147B40918014A20B80146B40918014A20B80145B40918014A20B80144B40918014A20B80143B30918014AB80284B21E3E1FB80283B21E151FB80282B21E3E1FB80281B21E3A1FB80280B21E3E1FB8027FB21E3E1FB8027EB21E0C1FB8027DB21E3E1FB8027CB21E3E1FB8027BB21E3E1FB8027AB21E3E1FB80279B21D411FB80278B21D431FB80277B21D431FB80276B21D431FB80275B21D411FB80274B21D431FB80273B21D431FB80272B21D411FB80271B21D421FB80270B21D421FB8026FB21D421FB8026EB21D431FB8026DB21D431FB8026CB21D431FB8026BB21C451FB8026AB21C451FB80269B21C451FB80268B21C451FB80267B21C451FB80266B21C441FB80265B21C451FB80264B21C451FB80263B21C451FB80262B21C451FB80261B21C451FB80260B21C451FB8025FB21C451FB8025EB21C441FB8025DB21C451FB8025CB21C451FB8025BB21C451FB8025AB21C451FB80259B21C451FB80258B21C451FB80257B21C451FB80256B21C451FB80255B21C451FB80254B21C451FB80253B21C451FB80252B21C451FB80251B21C451FB80250B21C451FB8024FB21C451FB8024EB21C451FB8024DB21C451FB8024CB21C451FB8024BB21C451FB8024AB21B491FB80249B21B491FB80248B21B4A1FB80247B21B4A1F
B80246B21B4B1FB80245B21B4C1FB80244B21B4C1FB80243B21B4C1FB80242B21B4B1FB80241B21B491FB80240B21B491FB8023FB21B4A1FB8023EB21B4A1FB8023DB21B4A1FB8023CB21B4B1FB8023BB21B4B1FB8023AB21B4C1FB80239B21B4C1FB80238B21B4C1FB80237B21B4C1FB80236B21B4C1FB80235B21B491FB80234B21B491FB80233B21B4A1FB80232B21B4A1FB80231B21B4A1FB80230B21B4B1FB8022FB21B4B1FB8022EB21B4C1FB8022DB21B4C1FB8022CB21B4C1FB8022BB21B4C1FB8022AB21B4C1FB80229B21B4C1FB80228B21B4C1FB80227B21B491FB80226B21B491FB80225B21B4A1FB80224B21B4A1FB80223B21B4A1FB80222B21B4B1FB80221B21B4B1FB80220B21B4C1FB8021FB21B4C1FB8021EB21B4C1FB8021DB21B4C1FB8021CB21B4C1FB8021BB21B4C1FB8021AB21A4E1FB80219B21A4E1FB80218B21A4F1FB80217B21A4F1FB80216B21A4E1FB80215B21A4E1FB80214B21A4F1FB80213B21A4F1FB80212B21A4F1FB80211B21A4E1FB80210B21A4E1FB8020FB21A4F1FB8020EB21A4F1FB8020DB21A4F1FB8020CB21A4E1FB8020BB21A4E1FB8020AB21A4E1FB80209B21A4F1FB80208B21A4F1FB80207B21A4F1FB80206B219501FB80205B219511FB80204B219511FB80203B219501FB80202B219511FB80201B219511FB80200B219511FB801FFB219511FB801FEB219501FB801FDB219511FB801FCB219511FB801FBB219511FB801FAB219501FB801F9B219511FB801F8B219511FB801F7B219511FB801F6B219511FB801F5B218541FB801F4B218531FB801F3B218541FB801F2B218541FB801F1B218541FB801F0B218531FB801EFB218541FB801EEB218541FB801EDB218541FB801ECB218531FB801EBB218531FB801EAB218541FB801E9B218541FB801E8B218541FB801E7B218541FB801E6B218531FB801E5B218541FB801E4B218531FB801E3B218541FB801E2B218541FB801E1B218541FB801E0B218531FB801DFB218531FB801DEB218541FB801DDB218541FB801DCB218541FB801DBB218541FB801DAB218531FB801D9B218541FB801D8B218541FB801D7B217571FB801D6B217561FB801D5B217561FB801D4B217571FB801D3B217571FB801D2B217571FB801D1B217571FB801D0B217561FB801CFB217561FB801CEB217571FB801CDB217571FB801CCB217571FB801CBB217571FB801CAB217561FB801C9B217561FB801C8B217571FB801C7B217571FB801C6B217571FB801C5B217571FB801C4B217571FB801C3B217561FB801C2B217571FB801C1B217571FB801C0B217571FB801BFB217561FB801BEB217561FB801BDB217571FB801BCB217571FB801BBB217571FB801BAB217571FB801B9B217571FB801B8B217561FB801B7B217571FB801B6B217571FB801B5B217571FB801
B4B217571FB801B3B2163F1FB801B2B2165B1FB801B1B2165B1FB801B0B2165B1FB801AFB2165B1FB801AEB2165B1FB801ADB2165B1FB801ACB2165B1FB801ABB2165B1FB801AAB2163E1FB801A9B2163F1FB801A8B2163F1FB801A7B2165B1FB801A6B2165B1FB801A5B2165B1FB801A4B2165B1FB801A3B2165B1FB801A2B2165B1FB801A1B2165B1FB801A0B2165B1FB8019FB2163E1FB8019EB2163F1FB8019DB2163F1FB8019CB2165B1FB8019BB2165B1FB8019AB2165B1FB80199B2165B1FB80198B2163E1FB80197B2165B1FB80196B2165B1FB80195B2165B1FB80194B2163E1FB80193B2163F1FB80192B2163F1FB80191B2165B1FB80190B2165B1FB8018FB2165B1FB8018EB2165B1FB8018DB2165B1FB8018CB2163F1FB8018BB2165B1FB8018AB2165B1FB80189B2165B1FB80188B2165B1FB80187B2165B1FB80186B215611FB80185B215621FB80184B215621FB80183B215661FB80182B215661FB80181B215551FB80180B215451FB8017FB215361FB8017EB215361FB8017DB215611FB8017CB215621FB8017BB215621FB8017AB215641FB80179B215661FB80178B215661FB80177B215661FB80176B215661FB80175B215661FB80174B215661FB80173B215451FB80172B215621FB80171B215621FB80170B215631FB8016FB215641FB8016EB215661FB8016DB215661FB8016CB215661FB8016BB215661FB8016AB215661FB80169B215621FB80168B215621FB80167B215611FB80166B215641FB80165B215641FB80164B215661FB80163B215661FB80162B215661FB80161B215661FB80160B215661FB8015FB215661FB8015EB215551FB8015DB215451FB8015CB215451FB8015BB215361FB8015AB215611FB80159B215621FB80158B215621FB80157B215631FB80156B215641FB80155B215661FB80154B215661FB80153B215661FB80152B215661FB80151B214401FB80150B214551FB8014FB214561FB8014EB214831FB8014DB2142D1FB8014CB214401FB8014BB214401FB8014AB214411FB80149B214401FB80148B214401FB80147B214411FB80146B2147E1FB80145B214871FB80144B2147F1FB80143B214801FB80142B212461FB80141B212461FB80140B212461FB8013FB212461FB8013EB212441FB8013DB212461FB8013CB211591FB8013BB211591FB8013AB2115B1FB80139B2115B1FB80138B211471FB80137B211581FB80136B2115A1FB80135B2115B1FB80134B2115B1FB80133B2112C1FB80132B211471FB80131B211551FB80130B211571FB8012FB211571FB8012EB211581FB8012DB211591FB8012CB211591FB8012BB2115A1FB8012AB2115A1FB80129B2115B1FB80128B2115B1FB80127B2115B1FB80126B2115B1FB80125B211561FB80124B211561FB80123B211571FB80122B2
11581FB80121B211591FB80120B2115A1FB8011FB2115A1FB8011EB2115B1FB8011DB2115B1FB8011CB2115B1FB8011BB2115B1FB8011AB2115B1FB80119B2105D1FB80118B2105E1FB80117B2105F1FB80116B2105F1FB80115B2105F1FB80114B2105F1FB80113B2105F1FB80112B2105D1FB80111B2105E1FB80110B2105F1FB8010FB2105F1FB8010EB2105F1FB8010DB2105F1FB8010CB2105D1FB8010BB2105E1FB8010AB2105F1FB80109B2105F1FB80108B2105F1FB80107B2105F1FB80106B2105D1FB80105B2105E1FB80104B2105F1FB80103B2105F1FB80102B2105F1FB80101B2105F1FB8010040FF0F621FFF0F621FFE0F631FFD0F641FFC0F621FFB0F621FFA0F621FF90F631FF80F641FF70F641FF60F641FF50F641FF40F621FF30F621FF20F631FF10F641FF00F641FEF0F641FEE0F641FED0F621FEC0F621FEB0F631FEA0F641FE90F641FE80F641FE70F641FE60E671FE50E681FE40E681FE30E681FE20E681FE10E671FE00E681FDF0E681FDE0E681FDD0E671FDC0E681FDB0E681FDA0E681FD90E681FD80D6B1FD70D311FD60D6B1FD50D6C1FD40D261FD30D261FD20D6C1FD10D2B1FD00D2B1FCF0D2B1FCE0D6B1FCD0D6C1FCC0D6D1FCB0D6B1FCA0D6C1FC90D6D1FC80D6A1FC70D691FC60D681FC50D671FC40D261FC30D311FC20D311FC10D311F40FFC00D311FBF0D311FBE0D311FBD0C711FBC0C721FBB0C731FBA0C741FB90C741FB80C741FB70C711FB60C711FB50C721FB40C731FB30C741FB20C741FB10C741FB00C741FAF0B791FAE0B7A1FAD0B7C1FAC0B7D1FAB0B7E1FAA0B7E1FA90B7E1FA80B7E1FA70B7E1FA60B7E1FA50B2D1FA40B7E1FA30B7E1FA20B791FA10B7E1FA00B6B1F9F0B791F9E0B7E1F9D0B7E1F9C0B791F9B0B7A1F9A0B7C1F990B7D1F980B7E1F970B7E1F960B7E1F950B7E1F940B7E1F930B7E1F920B6B1F910B2D1F900A4E1F8F0A4F1F8E0A671F8D0AA51F8C0AA71F8503251F8403381F8301381F8255805581AB80557F557D557EAB7D550B7D010B7D1B7D4B7D7B7DAB7DDB7D4012060A7C557A557BAB7A557955775578AB7755BA028600660285403C5576AB755504751475747503F47501AB750144750130750102007510752075030C7455725573AB7255007250728072B072043BB072E072020072010AB8FFC0B3721B1E46B8FFC0407C720D104671556F5570AB6F556E666D556A03251F6938675568AB67556638645565AB645563386255613860555F385D555EAB5D555C385A555BAB5A55593858555703251F5638545555AB54555338515552AB51554F384E554E03251F4D384B554CAB4B554A38485549AB4855473846554503381F001C101C201C0310B8FFC0404E1C1B1E46001B0142301B401BE01BF01B04001BB01BC01B03120F1A1F1A02290F1901434F19016F197F19
8F19030F18CF18024018292C460F17CF17DF17EF1704134017292E460016101620160315B8FFC0B3164D5446B8FFC0B3163F4446B8FFC0B316313546B8FFC0401F162326460F15010F151F150245EF1501860003012001010001100120010308B8FFC0B401151F4603BD0100010000050001019000542B4BB80800524BB008505BB00188B02553B00188B040515AB00688B000555A5B58B101018E59B101024354B0144B515A58B101018E59858D8D001D424BB01D5358B203A0A01D42594BB0805358B20340401D42594BB0FF5358B20300001D42592B5E7375732B58403D0011E011F0110315BF10CF10020F0F010F0FFF0F02400F3135460F0E1F0E020F0E1F0EFF0E03400E3137460F0D1F0D020F0D1F0DFF0D0316400D313746B8FFC040270C5054460F0B1F0B02553F0B4F0B02400B3F4346400B2D30460003012001010001100120010308B8FFC0B301151F462B5E7375732B2B745E732B2B5E73742B73742B7374745E735901755E73742B2B2B2B5E732B5E732B7374755E735E735E73755E732B5E73002B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B5E73755E732B2B5E735F73737373742B2B2B2B2B2B5E73742B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B012B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2BB1000243545841FF0284006402830064028200640281006402800064027F0064027E0064027D0064027C0064027B0064027A006402790064027800640277006402
7600640275006402740064027300640271006402700064026F0064026E0064026D0064026C0064026B0064026A006402690064026800640267006402660064026500640264006402630064026200640261006402600064025F0064025E0064025D0064025C0064025B0064025A006402590064025800640257006402560064025500640254006402530064025200640251006402500064024F0064024E0064024D0064024C0064024B0064024A006402490064024800640247006402460064024500640244006402430064024200640241006402400064023F0064023E0064023D0064023C0064023B0064023A006402390064023800640237006402360064023500640234006402330064023200640231006402300064022F0064022E0064022D0064022C0064022B0064022A006402290064022800640227006402260064022500640224006402230064022200640221006402200064021F0064021E0064021D0064021C0064021B0064021A006402190064021800640217006402160064021500640214006402130064021200640211006402100064020F0064020E0064020D0064020C0064020B0064020A00640209006402080064020700640206006402050064020441FF00640203006402020064020100640200006401FF006401FE006401FD006401FC006401FB006401FA006401F9006401F8006401F7006401F6006401F5006401F4006401F3006401F2006401F1006401F0006401EF006401EE006401ED006401EC006401EB006401EA006401E9006401E8006401E7006401E6006401E5006401E4006401E3006401E2006401E1006401E0006401DF006401DE006401DD006401DC006401DB006401DA006401D9006401D8006401D7006401D6006401D5006401D4006401D3006401D2006401D1006401D0006401CF006401CE006401CD006401CC006401CB006401CA006401C9006401C8006401C7006401C6006401C5006401C4006401C3006401C2006401C1006401C0006401BF006401BE006401BD006401BC006401BB006401BA006401B9006401B8006401B7006401B6006401B5006401B4006401B3006401B2006401B1006401B0006401AF006401AE006401AD006401AC006401AB006401AA006401A9006401A8006401A7006401A6006401A5006401A4006401A3006401A2006401A1006401A00064019F0064019E0064019D0064019C0064019B0064019A006401990064019800640197006401960064019500640194006401930064019200640191006401900064018F0064018E0064018D0064018C0064018B0064018A0064018900640188006401870064018600640185006441800184006401830064018200640181006401800064017F0064017E0064017D0064017C0064017B0064017A006401790064017800640177006401
760064017500640174006401730064017200640171006401700064016F0064016E0064016D0064016C0064016B0064016A006401690064016800640167006401660064016500640164006401630064016200640161006401600064015F0064015E0064015D0064015C0064015B0064015A0064015900640158006401570064015600640155006401540064015300640152006401500064014F0064014E0064014C0064014B0064014A0064014900640148006401470064014600640145006401440064014300642B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B592B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B00737373737373742B2B2B2B2B2B2B2B2B2B185F5E00
00>] def
/CharStrings 9 dict dup begin
/.notdef 0 def
/gid1 1 def
/gid2 2 def
/gid3 3 def
/gid4 4 def
/gid5 5 def
/gid6 6 def
/gid7 7 def
/gid8 8 def
end readonly def
currentdict dup/FontName get exch definefont pop end
%APLsfntEnd
42/FontType resourcestatus{pop pop true}{false}ifelse
{currentfile 0(%APLT1End\n)/SubFileDecode filter flushfile}if
/FontType 1 def
/FontMatrix [ 0.00048828125 0 0 0.00048828125 0 0 ] readonly def
/FontBBox {-1030 -640 2540 2102} readonly def
/UniqueID 4105981 def
currentdict end
currentfile eexec
54544758EC884CF30C3CD503CEDBFF3839C47C3C3333173232E3FDBFF439491DB843E1924E63AA7726BBB0485AB56D93D8C0906F647A47162891E73FFC2A9873C4B1EAC5EEBDFFC4D06084FBD84139DF4583C6E259D10699944D1068C9C45667DCCCFB9B7EA01B606435EDCBD273ABAC093D14085CCBAC149BD7382E842CFE0D7FE4FD2EF589A2471F6074A80A8B675C2F7A50D63AC1EF90D787BADD11633CB01CF6EE3B37AAF9078A69AC4740E9B6525D78BBD839551A1CB80DB8682FA5E87591BBD6EE8B946063A2A58D9CA3685AB305495DC5FB5747EB8A9A059C4976C0FE4EEAB1D56FF47F1E9664ED9F4A7DAB763AF92B2F6CF2FA7DEC24710E0B9096E30F772BA7FEA9BDBE496C42ED2CEB58F54E80BDF57CE7B4DB6CCFE7182F43BF93CCA0767AF95D62C5D2C3DC6AE1E6D139F51A2C63432117F1714C5566572EE9967A715420ABDCD1D7BD74F8450B89965FCC81C6ACA565C5F3CCF91D430D1F953E4F1A645300A98DD8C47CD64555F08F422340A85404EAE0D3229C4F9336B9470CACBD6BBF3395104750A915CC6EAAC197668267B8C62D2764C8CD69FD937CA3C924D997A0EDE7964BEB9EA2F92EF70C5E5DA0AA55675454E59AEC12A68086DDD95476477C46AE143377694529C58844212FC811560E27EEE2CF00BCB28A34314447AEE989C9D5F058EB91AA64CFFCFD907A0DD23543824A0EFF185E41F8AEC11AAD685C58955DA2865CC791A72D793F40A8B0E132024E097DF702070871DC0DFB7F1AF8888DBCA95D8BABD91E1D8DED17FBEE357538F8BC3561367902A69EB1A5EF2B5472406271497AE537ACF6F0448C66E0EADFE03D482AFE776741ABB81EB2DF185C0C4AE0D8D18EE8F3DCA99B9A87274115FBA66849B7F796A5B2A53EBB91F3DB009C59226C347A354CAB9244F3DBD8050C94DD92CCD6F9535F24386577A61E14C989309391BD423E4C1B6E625D7610C5F63A9072D8D9DE853322E8CAD12C91F31541E5B591F2D61315577ECB2850909A1921C42805F64A0439CCD076FE0D803F973825A4E9C480454EA328F4BCD4A404EC0DA1B3C66852298EC8A604D608EB447752E9DC250632BC23D486C15C6969083F9CDD85CEE92E8192FF65F9EC301D8379C05974DB51E1D6AA8AD4C600E5F840ED50595838B635EAAB8A2303C9094E847CE736A2B832C651530AE483A41BF4996E43798FA49AD727F9AC9EB6D3AE0035B4E620F223AA320BD3D9EE08F4B193FAABBD0644E2F118F3AA71F692BB0B30A58B6CAF8B07112EA689D79BB8E3AABB7CD77789148D1A10360F2A05E18DD574989CD33BE734B13291B4DA716FC0F3305A0CFEDBF16BFFA941887C09C6384F0B80AF5FA0341EDE54C75B8574B66A6D7D33400DF24D8A59870E058491048DE417D1D62049E1E5CAE5D86757E4166416B1BCA9CA357C4124388F6A798F471421
BFCC0DE9AFDB9B4C2589865FAC281F72AC37FBC4FEF840D231272BC6C8715172F534E9613CDD7AABC946962E3FADC0C6C5B4D52223F6F3653F1FFDE6E2109BC85964E36E97BF64C3A3B2EA5A6430F5FECE1E9602D9AA37A5065EC7CED3A1A3BC00A0F4BF0C03B028BEAD5796EF3E305A76D4B3CB6CF20195DCA2F4378F3928964DB179A06D2DE98F45416D7D705CE9D7DB8C42D5CAFFA7455860F31E117F7298C4D16146B3EE44A33CF51B11CE241EEF1C92CD18E9E8531919EFCAAC3C9AFCA25BEF2A9A516803CD5F5BDA19FE41953ACB96BAA0883F7BE92622A8F1A9984CF28FA19A6127AB66E659CF22EAB48952B5CB4BB6239E74CEB5A7219450BDAE92128CCF6E316271C0F069AF9A2D40A0686A33080ABAD9BDCFC4DFDD424484D9A0D033029B360FED8114634C0F22942C2B0B65AF46824319FCF492A451A2461A8CF4462AB7A43ED708C49FA627660BF5B205F827ACD835A089FDD8648D4B8424988DCC16B9A9E7183315F1FE664C6C60F7FACA418FD65A9281B09D7420B7FC66BFF16F478B099672EE5E3A4760C1AF9F550536DEC281C476F55F1E4814932D46D6264DF8AC053742FA8E95B5AC349737C17609A1DB91F7704114EC838696E85E99E448AE638F8C86C3278FFCE8EC8DACF372C33E9EE355DAD15F607E42D07F064D4AC0F89DB4DF3A8C0799308A82BEAAE74ED0451308F8BE211C3EEC551D13D44853C8772105D0DBF7EC641BB890DDA69EDE98296967A6B6BB6119CC979DB1748D1D36D55506542FAC8AC1255809D07DCC8F1B84164B14BBBBDFD12EABF036065D3E8ED14054F365A54FAF885BD931D7984F34A4CDDEDFE6A74237AD7BD003380B95FC0146F46A912EB54ED13AC4BA01B5E04E43F40987E216259CA8C4FE6C37E4C3E14E66A8C30CC07F5B1635800E7616CA2B6775ACC345E9CA689918E8DD6CC4209AD249D4EA09DA894FFB1EDB0BD988F37325CF58BB43B8DC6392CD3B9D157DE55A5901073FBE7C0C1824CFD2C972F3F892C4551285FC4B997B12A4DCD5CCD3F94007495BD7B41376BA10B9063581EC63F6037356DCDD887A425216CEBEAFD333378D0D95BB7B0CF49111ECFF0B3EF6CE6D131BAA0D1DFAB9F8C1D4EC9C983DD62B5F14AA74D1CAF7EB30D72A269BD402E53772D32FD9A6C05AE52D3B42826411171ED24EE2A055E8ADD75A51C822278BFA91A4BE10AB6B79559206CB1497434575FC805B4341247A6135C04ED5EB5DDF3683FE37F030BFCBCF6BC58C0A0F62952543A207670FF6976B7A228BC0B915806F8A91B9B3F50A68EEECDAF5748A82ED170D06E8B1ACEAB9365278B34CF457B7B45DF2213C4E7A49065CDAE8B069B5BDA4D2FBEA99750A4DEF11B6CAFBF356334E692B8EB223D977D2809997B150F95935B02ACE241B170BEF21B9851525651D7AE755836DEB43334D10BFF7F19BD000
0BCAC1C89BE170B0F5B6E3C7EEF1EB227C4147E5DBDE84D8178D5051CA107DC035FB91856C9916C948B494B787FB7FCB82D7CB08483B41D90A4DC3A0A5AA85CB73F673697BC065FCF1F17866CF9F0D43AF19ECFCCD180A63DE28068C4B83F4A90FF50405886AB4D1FFDCB9A9F45D4535ACBBF7FDCF56768D71113669D6CE45CAF44F775C19C3FD163D109AE544E9EA3836B88D6574E52958FC14697389556762461AD54EDD42B692E809A8746AC43C9463141B5B8E82C3DF3C6B65AED415720DBE58C69C9B9FE01D60D78F1E180854EF5D7279D37D3FEEB2DDFE71F3B921AC966C700D3556A4B85B87CF29FAA504F08FAF44DB3D6604C237ADA3C9F9EA323DAD3B561AC05C581A9A7496D5460C3DFEFC04DF5DC5F84D608C5197A2D1EE8CCE52D7F3BCBB2A23050A351F7BE697057763F32FFF51E64A58979C42DDF85D8A5CAA3C4CF951EA55716971A1E7E2662319CBD2A8F04248409A1AC2DD84284101C4D4548C9AE9BDAB5EE28E46E8A674321067DE39139B315FF91D6A4712BABB9BBC98A1E52E836CE5A9686729644FA05CB50507B2779AE34FC103A9CD77FEFD74FF9D8520FB501C4A2F04F3370DE19730A27FAC94B07B36C1433AE0A48D818891F39EB8C19A02E1F7259D0789CEE3541B30DC6FCDE212F8D05E573F989B5B5F45C1C63364B8E40C83016332A314A0EC6F567E246880CB66310C0C7318BC88DDEA4DBBD34474EAB16AB51B4B3D4075FA509FB8D7D983739D4857038718CD7986A0ECE1FCA4EA7BF4CF159F1A5F83EB3B9661C9A464E20C7B59FBF67609FFA08D3A73B86CC02C97272AF2A0E6D94BD0B5AFF274A816B13BDE82C4FC6A5A8563454A4EF13CC04B4EE32C13677480D2CF709A1FBC5DE81EC9726B71D4B53EC69770E798FEBCD4618A931F050CEEFA70437DA9F148BF683E2316CA7699B8ACB7276B488713AA3F0D12AFE58FA5C1242374092B3078B150508805E594896099781E10C880FF26EBE576D1441651E6F64B828E5B6668FED4C314B5C8DB6C87BAE06C10EEDE68748052634CFB9A14EF6CEC315D0019B515D705E3360AC7E1B1A661670BC72AD9B6C010C107CCA1592F6D40093944036E60EF8B0E42B5D3635CCD9A8D1662120A8A316E9AAF6685CD0DA202DE6C9BED7D38268E99956A24F5949EDF456E0059163F561B19FD141FA1F0D732E1832AD04EA8778B9529C86A1C9BE6AF127179FB263B3F305F8F43D03A1E2375122D36306FADA424F33B99F6A01A4EB438253ABD7652BEEE2D7B6D1471E4902CFFC9A103AF782319B54CCF6ADBE168E4633A24705AC79690522EF2B56540BCC0DF4E5B559E5D57038FE3B3E204991C043E1A60B81B4E72DBAD46AD3B7EE78C1F7411A1E790B5CCC20F0D623CDE0BBBA29A54DC479F5A60CEA2F17DFD7BB3E325BA1000576E45F9B84E7C70D5E5B197A5EB8D17C83E
3086C6040FFF132496AED3061F7EC95E3B1F105641EB544E452E1EA18C61E22E268E223836540B6FF19AF42C1C40182149C894C8CAE3E53A007F31BD13C73F21AE99448C240221F2D44BB7C1C9DA6F90577F5501BFA564790D22C513A8355AD164C2910D86E80C48444C5E105E397EDA9036447C4357CA10F5ED3DA90A225F79BCE6AB34696F7834582C718B3BA5AD86ED460A31DC438F89E5F3F3E62C24BB5DE7B0347400D8095B029391FCBB70A7976137614F2CF9308125DEB7CC51BCC39C172A03EEC793EFE17341B3DAD423AF2FFFF5E08CB05D2CD6606DDA5520D8FCB4116A5F6026B4B4DAFBA8F8A13725CFC99A52121DE32D4A420F33FE3546C4328A666CF922A62457B22EA88455E7F6BA674130C7B67CE5AD3032DD507E1116D77BD109121217D8BA3923A25ADEB5753FF9F90078B4F9FB14A0C39AB5AC45BCA85FE69324BEB242162A4E25538BC39CCD4632B7EC2F1E7DAAA18DA4B9ECBF1A3ED041B04671B43450F247B4B5D70366CBB59728127C5E6F70FD330C4E67E75A6D636C8C0B429E46D49FBE53A43FC8D2BED274F2B8AB57A1538E5E77209163D05B2E31F0B3278B71D21A57376B5A694D6C2028836571B5DC7834C4566A4AA7DC91A818B109E711974B0F7CA727231518482328A2B269FAFF7A2C11F2834294C5BD3D6B6C797C43E1C27203BC493F9566B231142C4ADD9AC464BF9419F204F595709086EA18B67D02E481A3AC9450D752BAE1DFA749F2BB8EC674E965E0617D00AD82B0FB7E0170289420CFE44C5DD91BF59CAD6CFD2DA0D5C91782D7D8AB12D7A24957DFD2099B3D66FCDD21D45F952FF0249DC995CA8B30DA08D1C31B39C2CA89A3F218C7C5B5EDB930D068F43548AE14AFB78A6CC0BA47C884C7F2D80E717DCDA5DFCD966CAB03C559108D3BEB0AA8FEC89737FDF465CB4187F337B6204814B5F3ACCD4D75BB39CBA33DB2AA3D1FC384DD74A81B9A73C3FAA394AF5666806C27F0EACE6A1D944CE920B54EC855A4F6BCFFDF77C97C9181EB642A2C3B7BCE26CC4FA4E887984C815786E909076A2CCE23ABC9B04B3CB3E02C32A034B9635C2B2813EFD0716AB2ABAFE2E53354C566A722435E65C92751B64BD146DEC7175012A1D01DA70A24FD394A5932DB7B1CEA982111977EDB01951435C8CE3D012927C8B92871B5B2D63B66F27FFCC251CAA4C2856E9FD3C65D41B83587DEA1A4CEE3AB5985E8266C88C70A388A417C8158C4A4BC247C9452B8B7CBDFF4C6B61BD3B92CC445EC96B4B990BA7D6ABC5B6B2C21A58D195FF5F31C2CD274A1DD48F0681CA712ACF8B77BDE0C5941FABCBFD19F3ACEC500B7F8EC00C33D2B1C2503F12349405588D8E950C66710C060B7CA0CE272DE
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
cleartomark
%APLT1End
%RBIEndFontSubset
/JBTRDX+Calibri cguidfix
/F2.1/JBTRDX+Calibri renmfont
%RBIBeginFontSubset: WPQZIG+CambriaMath
%!FontType1-1.0: WPQZIG+CambriaMath 1.0000.6.9000
14 dict begin
/FontName /WPQZIG+CambriaMath def
/PaintType 0 def
/Encoding 256 array 0 1 255 {1 index exch/.notdef put} for
dup 33 /gid8 put