aboutsummaryrefslogtreecommitdiff
path: root/src/doc/ps/h-matargs.ps
blob: 5a9806d8c7b39db88f3b660505c02dfd2755671f (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
%!PS-Adobe-2.0 EPSF-1.2
%%BoundingBox: 143.000000 280.520006 469.000000 541.719999
%%Creator: xwd2ps
%%CreationDate: Fri Nov 22 15:16:00 1991
%%Title: h-matargs.xwd
%%EndComments
% xwd2ps -- program written by Robert C. Tatar and Craig A. McGowan.
% The command used to create this file (missing quotes on strings):
%   xwd2ps -w4.5 -h2.5 h-matargs.xwd
% by loan7:themos (Themos Tsikas, NAG Ltd)
% Information from XWD rasterfile header:
%   width =  622, height = 495, depth = 8
%   file_version = 7, pixmap_format = 2, byte_order = 1
%   bitmap_unit = 32, bitmap_bit_order = 1, bitmap_pad = 32
%   bits_per_pixel = 8, bytes_per_line = 624, visual_class = 3
%   bits/rgb = 8, colormap entries = 256, ncolors = 256
% Portion of raster image in this file:
%   starting line = 1
%   ending line = 495
%   starting column = 1
%   ending column = 622
gsave
/inch {72 mul} def
/buffer 2 string def
/rgbmap 768 string def
/rgb (000) def
/pixels 768 string def
%%Title: colorimage.ps
% Written 11-4-88 by Bob Tatar
% U.S. Mail: GE-CRD, PO Box 8, KW-C214, Schenectady, NY 12301
%    E-Mail: tatar@crd.ge.com
% colorimage procedure to be used on monochrome printers
% or when the colorimage procedure is not available
% NOTE: Only 1 color mode is supported: single proc. & RGB

systemdict /colorimage known not {        % only create if not in systemdict
  % Utility procedure for colorimage operator.  This procedure takes a
  % string of rgb encoded values and creates a string 1/3 as long with
  % monochrome values.  This procedure assumes 8 bits/color (i.e. 
  % 1 character/color)
  % storage format for input string:  (r1 g1 b1  r2 g2 b2  r3 g3 b3  ... )
  % storage format for output string: (g1  g2  g3 ... )
  
  /colortograyscale { %def                % (string)
    dup /rgbdata exch store               % (string)
    length 3 idiv                         % Ns/3 
    /npixls exch store                    % ; npixls => Ns/3
    /indx 0 store                         % ; indx => 0
    /pixls npixls string store            % ; pixls => (....)
    0 1 npixls -1 add {                   % counter 
      pixls exch                          % pixls counter
      rgbdata indx get .3 mul             % pixls counter .3*rgbdata(ind)
      rgbdata indx 1 add get .59 mul add  % pixls counter .3*rgbdata(ind) + 
					  %          .59*rgbdata(ind+1)
      rgbdata indx 2 add get .11 mul add  % pixls counter .3*rgbdata(ind) + .59
					  %  *rgbdata(ind+1)+.11*rgbdata(ind+2)
      cvi                                 % pixls counter <grayscale value>
      put                                 %
      /indx indx 3 add store              % ; /ind => ind+3
    } for                                 % repeat for each rgb value
    pixls                                 % (pixls)
  } bind def                              % ; /colortograyscale -> dictionary
  
  % Utility procedure for colorimage operator.  This procedure takes two
  % procedures off the stack and merges them into a single procedure.
  
  /mergeprocs { %def      % {proc1} {proc2}
    dup length            % {proc1} {proc2} N2
    3 -1 roll             % {proc2} N2 {proc1}
    dup                   % {proc2} N2 {proc1} {proc1}
    length                % {proc2} N2 {proc1} N1
    dup                   % {proc2} N2 {proc1} N1 N1
    5 1 roll              % N1 {proc2} N2 {proc1} N1
    3 -1 roll             % N1 {proc2} {proc1} N1 N2
    add                   % N1 {proc2} {proc1} N1+N2
    array cvx             % N1 {proc2} {proc1} { ... }
    dup                   % N1 {proc2} {proc1} { ... } { ... }
    3 -1 roll             % N1 {proc2} { ... } { ... } {proc1}
    0 exch                % N1 {proc2} { ... } { ... } 0 {proc1}
    putinterval           % N1 {proc2} { <<{proc1}>> ... }
    dup                   % N1 {proc2} { <<{proc1}>> ... } { <<{proc1}>> ... }
    4 2 roll              % { <<{proc1}>> ... } { <<{proc1}>> ... } N1 {proc2}
    putinterval           % { <<{proc1}>> <<{proc2}>> }
  } bind def              % ; /mergeprocs => dictionary

  /colorimage { %def               % {imageproc} multiproc ncolors
     pop                           % {imageproc} multiproc ; assume 3 colors
     pop                           % {imageproc}           ; assume false
     {colortograyscale}            % {imageproc} {colortograyscale}
     mergeprocs                    % {imageproc colortograyscale}
     image                         % construct monochrome image
  } bind def                       % ; /colorimage => dictionary
} if                               % only create if it doesn't already exist
/drawcolorimage {
  622 495 8
  [622 0 0 -495 0 495]
  {currentfile buffer readhexstring pop pop  % get run length & color info
    /npixels buffer 0 get 1 add 3 mul store  % number of pixels (run length)
    /color buffer 1 get 3 mul store          % color of pixels
    % /pixels npixels string store          % create string to hold colors
    /rgb rgbmap color 3 getinterval store    % get rgb value
    0 3 npixels -1 add {
	  pixels exch rgb putinterval
    } for
    pixels 0 npixels getinterval             % Return color values
  }
  false 3
  colorimage
} bind def
%2.000000 inch 3.910000 inch translate
matrix currentmatrix
4.500000 inch 2.500000 inch scale

% get rgb color table
currentfile rgbmap readhexstring pop pop
000000
ffffff
b3b3b3
d8d8bf
dbdb70
ffff00
3299cc
236b8e
238e23
cc7f32
0000ff
2f2f4f
5f9f9f
ff0000
1a1a1a
333333
7f7f7f
4d4d4d
cccccc
d4d8e8
757780
46474d
b4b8c5
fbfbfb
626262
3b3b3b
00dbaa
00dbff
00ff00
00ff55
00ffaa
00ffff
240000
240055
2400aa
2400ff
242400
242455
2424aa
2424ff
244900
244955
2449aa
2449ff
246d00
246d55
246daa
246dff
249200
249255
2492aa
2492ff
24b600
24b655
24b6aa
24b6ff
24db00
24db55
24dbaa
24dbff
24ff00
24ff55
24ffaa
24ffff
490000
490055
4900aa
4900ff
492400
492455
4924aa
4924ff
494900
494955
4949aa
4949ff
496d00
496d55
496daa
496dff
499200
499255
4992aa
4992ff
49b600
49b655
49b6aa
49b6ff
49db00
49db55
49dbaa
49dbff
49ff00
49ff55
49ffaa
49ffff
6d0000
6d0055
6d00aa
6d00ff
6d2400
6d2455
6d24aa
6d24ff
6d4900
6d4955
6d49aa
6d49ff
6d6d00
6d6d55
6d6daa
6d6dff
6d9200
6d9255
6d92aa
6d92ff
6db600
6db655
6db6aa
6db6ff
6ddb00
6ddb55
6ddbaa
6ddbff
6dff00
6dff55
6dffaa
6dffff
920000
920055
9200aa
9200ff
922400
922455
9224aa
9224ff
924900
924955
9249aa
9249ff
926d00
926d55
926daa
926dff
929200
929255
9292aa
9292ff
92b600
92b655
92b6aa
92b6ff
92db00
92db55
92dbaa
92dbff
92ff00
92ff55
92ffaa
92ffff
b60000
b60055
b600aa
b600ff
b62400
b62455
b624aa
b624ff
b64900
b64955
b649aa
b649ff
b66d00
b66d55
b66daa
b66dff
b69200
b69255
b692aa
b692ff
b6b600
b6b655
b6b6aa
b6b6ff
b6db00
b6db55
b6dbaa
b6dbff
b6ff00
b6ff55
b6ffaa
b6ffff
db0000
db0055
db00aa
db00ff
db2400
db2455
db24aa
db24ff
db4900
db4955
db49aa
db49ff
db6d00
db6d55
db6daa
db6dff
db9200
db9255
db92aa
db92ff
dbb600
dbb655
dbb6aa
dbb6ff
dbdb00
dbdb55
dbdbaa
dbdbff
dbff00
dbff55
dbffaa
dbffff
ff0000
ff0055
ff00aa
ff00ff
ff2400
ff2455
ff24aa
ff24ff
ff4900
ff4955
ff49aa
ff49ff
ff6d00
ff6d55
ff6daa
ff6dff
ff9200
ff9255
ff92aa
ff92ff
ffb600
ffb655
ffb6aa
ffb6ff
ffdb00
ffdb55
ffdbaa
ffdbff
ffff00
ffff55
ffffaa
ffffff


drawcolorimage
ff12ff126d1220120011ff12ff12281200112012001101121e0100110012ff01ff0127010011001
21e01011101121e0100110012ff01ff012701001100121e01011101121e010011
0012ff01ff012701001100121e01011101121e0100110012ff01ff012701001100121e010111011
21e0100110012ff01ff012701001100121e01011101121e0100110012ff01ff01
2701001100121e01011101121e0100110012ff01ff012701001100121e010111011206011811001
2ff11ff1128110012171106010111011206010011ff12ff125a12060101110112
060100110012150100110012ff01ff010f010011001215010011001215010011001206010111011
2060100110012150100110012ff01ff010f010011001215010011001215010011
0012060101110112060100110012150100110012ff01ff010f01001100121501001100121501001
10012060101110112060100110012150100110012ff01ff010f01001100121501
0011001202010f12020100110012060101110112060100110012150100110012ff01ff010f01001
10012150100110012020100120d01001102010011001206010111011206010011
0012150100110012ff01ff010f0100110012150100110012020100120d010011020100110012060
101110112060100110012150100110012ff01ff010f0100110012150100110012
020100120d010011020100110012060101110112060100110012150100110012ff01ff010f01001
10012150100110012020100120d01001102010011001206010111011206010011
0012150100110012ff01ff010f0100110012150100110012020100120d010011020100110012060
10111011206010011001202010f12020100110012ff01ff010f01001100120801
0312080100110012020100120d010011020100110012060101110112060100110012020100120d0
10011020100110012ff01ff010f01001100120801001201010011080100110012
020100120d010011020100110012060101110112060100110012020100120d01001102010011001
2ff01ff010f01001100120801001201010011080100110012020100120d010011
020100110012060101110112060100110012020100120e11020100110012ff01ff010f010011001
2080100120211080100110012020100120d010011020100110012060101110112
060100110012150100110012ff01ff010f0100110012150100110012020100120d0100110201001
10012060101110112060100110012150100110012ff01ff010f01001100121501
00110012020100120d010011020100110012060101110112060100110012150100110012ff01ff0
10f0100110012150100110012020100120d010011020100110012060101110112
060100110012150100110012ff01ff010f0100110012150100110012020100120d0100110201001
10012060101110112060100110012150100110012ff01ff010f01001100121501
00110012020100120d010011020100110012060101110112060100110012150100110012ff01ff0
10f0100110012150100110012020100120e110201001100120601011101120601
00110012150100110012ff01ff010f0100110012150100110012150100110012060101110112060
100110012150100110012ff01ff010f0100110012150100110012150100110012
06010111011206010011001216110012ff11ff11101100121611001216110012060101110012ff1
1ff11621100120811091200117b00ff015f017b00091200110112060101117b00
ff015f017b000112060101110112060101117b00ff015f017b000112060101110112060101117b0
0ff015f017b000112060101110112060101110500090103000101070001010300
010103000b014500ff015f010600010105000101040006010400010106000101030008014100011
20601011101120601011105000a0102000201060002010200020102000c014400
ff015f0106000201040002010200080103000201050002010200090140000112060101110112060
1011105000a0103000201040002010300020103000b014400ff015f0106000201
04000201020009010200030103000301020009014000011206010111011206010111050002010b0
002010400020103000201070002014900ff015f01060002010400020102000201
030002010200030103000301020002014700011206010111011206010111050002010c000201020
0020104000201070002014900ff015f0106000201040002010200020103000201
0200030103000301020002014700011206010111011206010111050002010c00020102000201040
002010700020149002a010200040105000601050020010000140102003c010000
1e01030007010000040100001f0100001001010003010500040100002b010600020104000201020
0020103000201020004010100040102000201280000011d000112060101110112
06010111050002010d0002010000020105000201070002014900290101000001010003010400080
10100010101001e010200140101003c0100001d01010001010100060100000301
01000d0100000f0102000e0100000601010001010100040100002a0106000201040002010200020
103000201020004010100040102000201260004011b0001120601011101120601
0111050002010d00020100000201050002010700020149002801010002010100020100000c01010
0020101001e010000150101003b0101001d010100010101000601010002010100
0d010000100100000e0101000601010001010100040100002a01060002010400020102000201030
0020102000b010200020124000801190001120601011101120601011105000201
0e000401060002010700020149002801010002010100020100000c01010002010100340103003a0
101001d0101000a010100010101000d0101001f01010007010100010101000401
01002901060002010400020102000201030002010200020100000301000002010200020122000c0
11700011206010111011206010111050008010800040106000201070002014900
2801020001010000030100000001020008010100020101000201030002010000000101000001010
00201040003010300030101000001020009010000000101000201010000010300
0201030000010100000102000001020001010000000101000001010003010300020101000001020
002010600020103000001000008010300040101000a0105000301030003010500
0101010001010200020103000401010002010100010101000601010001010100050101002901060
00a010200020103000201020002010000030100000201020007011b0010011500
0112060101110112060101110500090108000201070002010700020149002901030004010100010
10100070101000201010001010100010101000101010000010100000101000001
0100020101000401010004010100010101000801000000010100030102000101010000010100010
10100000100000101010001010100010101000001010000010100010101000101
0100020101000101010003010100040101000201010007010100010101000201040007010600020
10100010101000301010003010000000102000101010003010100030100000001
01000001010001010100070101000101010005010100290106000a0102000201030002010200020
10100010101000201020008011800140113000112060101110112060101110500
090108000201070002010700020149002a010200040100000301010006010100020101000001010
00301010000010100000101000001010000010100020101000401010004010100
0101010008010000010101000201010002010100000101000101010003010100010101000101010
00001010000010100000101000201010002010100010101000301010004010100
0301000006010100030101000201010009010000000102000001000006010100030101000501020
0010101000201010006010300020101000701040006010100290106000a010200
0201030002010200020101000101010002010200080116001801110001120601011101120601011
1050002010e000401060002010700020149002a01030008010100060101000201
0100000101000301010000010100000101000001010003010300040101000401010001010100070
10500020101000501010001010100030101000101010001010100000101000001
0100000106000201010001010100030101000501020009010100030101000201010009010000010
10000010100000301030004010100050101000701010007010200020101000701
0300060101002a010600020104000201020002010300020102000201050002010200020121000e0
11600011206010111011206010111050002010e00040106000201070002014900
2901000001010200070101000601010002010100000101000301010000010100000101000001010
00101010001010100040101000401010001010100070100000201010002010100
0601030004010100010101000101010000010100000101000001010007010100010101000301010
00701020007010100030101000201010009010000030100000201010001010100
03010100060101000701010006010200030101000601010000010100060101002a0106000201040
00201020002010300020102000201050002010200020121000e01160001120601
0111011206010111050002010d00020100000201050002010700020149002801010002010100070
10100060101000201010000010100030101000001010000010100000101000001
0100020101000401010004010100010101000701000003010100010101000501000008010100010
10100010101000001010000010100000101000701010001010100030101000401
0000030101000601010003010100020101000801000004010000010101000201010003010100050
10100070101000601010000010100020101000601010001010100040101002b01
0600020104000201020002010300020102000201050002010200020121000e01160001120601011
1011206010111050002010d000201000002010500020107000201490028010100
0201010001010000030101000701010001010100020101000101010001010100000101000001010
00001010001010200040101000401010001010100060101000301010001010100
0501050003010100000102000101010000010100000101000101010002010000020101000101010
00301010001010000010101000201010007010100010101000301010008010000
0401000001010100010102000001000001010100010100000201010007010100010100000301000
00101010000010000010100000601010001010100040101002b01060002010400
0201020002010300020102000201050002010200020121000e01160001120601011101120601011
1050002010c000201020002010400020107000201490028010100020101000101
0100010101000701050004010300020101000001010000010100010102000101010001010500010
10200000103000501020001010200000104000401050003010200000101000001
0100000101000001010002010300020102000001030003010200020100000001030009010300030
10300070101000201020001010200010101000301020003010100080102000201
010003010100020100000501030001010100020100002d010600020104000201020002010300020
102000201050002010200020121000e0116000112060101110112060101110500
02010c0002010200020104000201070002014900290104000301030055010000040100008b01000
00d0101002e010600020104000201020002010300020102000201050002010200
02014700011206010111011206010111050002010b00020104000201030002010700020149008c0
1010002010100cb01060002010400020102000201030002010200020105000201
0200020147000112060101110112060101110500090104000201040002010300020107000201490
08d010400cc010600020104000201020009010200020105000201020008014100
01120601011101120601011105000a01020002010600020102000201070002014900ff015f01060
00201040002010300080102000201050002010200090140000112060101110112
0601011106000901030001010700010103000101080001014900ff015f010700010105000101040
0060104000101060001010300080140000112060101110112060101117b00ff01
5f017b000112060101110112060101117b00ff015f017b000112060101110112060101117b00ff0
15f017b000112060101110112060101117b00ff015f017b000112060101110112
06010111ff00ff005700011206010111011206010111ff00ff00570001120601011101120601011
1ff01ff0140011600011206010111011206010111ff01ff014001160001120601
0111011206010111ff01ff0140011600011206010111011206010111ff01ff01400116000112060
10111011206010111ff01ff0140010b0000010900011206010111011206010111
ff01ff0140010a0002010800011206010111011206010111ff01ff0140010900040107000112060
10111011206010111ff01ff014001080006010600011206010111011206010111
ff01ff014001070008010500011206010111011206010111ff01ff01400106000a0104000112060
10111011206010111ff01ff01400105000c010300011206010111011206010111
ff01ff01400104000e010200011206010111011206010111ff01ff0140010300100101000112060
10111011206010111ff01ff014001020012010000011206010111011206010111
ff01ff0140011600011206010111011206010111ff01ff014001160001120601011101120601011
1ff01ff0140011600011206010111011206010111ff01ff014001160001120601
01110112060101111501030004010400130103001a0101000c0107001e010000070101001501070
0030101000d01040006010300ff01660116000112060101110112060101111501
03000401040013010300190103000b0107001d0101000601030014010700020103000c010400060
10300ff0166011600011206010111011206010111160102000601020014010200
1a0101000d010200000102001d010100070101001601020000010200030101000f0102000701020
0ff01660116000112060101110112060101111501040005010200140102002a01
0200010101001c01020020010200010101001501020007010200ff0166011600011206010111011
20601011115010400050102000301040000010000020103000201050002010200
0101010002010400030104000401020000010100010102000401020000010700000102000301020
00001010000010600020104000401030001010300000102000201020005010400
040103000501020004010500ff01660116000112060101110112060101111501010000010100050
10200020107000101050001010600010107000001060002010400030106000101
04000201020000010c0001010600000106000201040003010500000108000101040003010400030
105000401020003010600ff016601020000010100000101000001010000010100
0001010000010100000100000112060101110112060101111501010000010200040102000201020
00001030000010200010102000001030000010200010106000001010001010200
0401020002010300000102000101040002010200010102000001030000010200000103000001020
00101020007010200020102000101020000010300000102000101040005010200
0201020001010200030102000201020000010300ff0166011600011206010111011206010111150
10100010101000401020002010200000102000101020001010200000102000101
0200010103000001010003010300040102000201020002010100010102000401020001010200000
10200010102000001020002010100010102000701020002010200010102000001
02000101020001010200070102000201020001010200030102000201020001010200ff016601030
00001010000010100000101000001010000010100000101000001011206010111
0112060101111401060004010200020102000001020001010700000102000101020001010200050
10500040102000201020006010200040102000101020000010200010102000001
0200060102000701020002010200010102000001020001010200010102000701020002010700030
102000201020001010200ff016601020000010100000101000001010000010100
0001010000010100000100000112060101110112060101111401070003010200030104000201020
00501020001010200010102000401020000010200040102000201020006010200
0401020001010200000102000101020000010200060102000701020002010200010102000001020
001010200010102000701020002010200080102000201020001010200ff016601
1600011206010111011206010111140101000201020003010200020103000401030001010100000
10200010102000101020004010200000102000401020002010300010101000101
0200040102000001030000010200010102000001030001010100010102000001010004010200020
10200010102000001020001010200010102000701020002010300010101000301
02000201020001010200ff016601030000010100000101000001010000010100000101000001010
00001011206010111011206010111130103000001030001010600000106000201
060000010600010104000301070001010600010106000001040003010b000001030001010600010
10500020106000101050000010300000103000001040004010600010106000101
060001010600ff01660102000001010000010100000101000001010000010100000101000001000
00112060101110112060101111301030000010300010106000101060002010400
0101010000010200020104000401020000010200010106000201040001010400040103000001050
00001030002010400030103000301060002010300010103000001030000010400
0401060002010400020106000201020000010100ff0166011600011206010111011206010111260
1020001010200ff01ff0111010300000101000001010000010100000101000001
010000010100000101120601011101120601011126010700ff01ff0111010200000101000001010
00001010000010100000101000001010000010000011206010111011206010111
27010500ff01ff0112011600011206010111011206010111ff01ff0140010300000101000001010
0000101000001010000010100000101000001011206010111011206010111ff01
ff01400102000001010000010100000101000001010000010100000101000001000001120601011
1011206010111ff01ff0140011600011206010111011206010111ff01ff014001
0300000101000001010000010100000101000001010000010100000101120601011101120601011
1ff01ff0140010200000101000001010000010100000101000001010000010100
00010000011206010111011206010111ff01ff0140011600011206010111011206010111ff01ff0
14001030000010100000101000001010000010100000101000001010000010112
06010111011206010111ff01ff01400102000001010000010100000101000001010000010100000
1010000010000011206010111011206010111ff01ff0140011600011206010111
0112060101111501030004010400130103001a0101000c0101000201020011010300ff01bc01030
00001010000010100000101000001010000010100000101000001011206010111
011206010111150103000401040013010300190103000b0102000101020011010300ff01bc01020
00001010000010100000101000001010000010100000101000001000001120601
01110112060101111601020006010200140102001a0101000c0102000201010012010200ff01bc0
11600011206010111011206010111150104000501020014010200290103000101
010012010200ff01bc0103000001010000010100000101000001010000010100000101000001011
20601011101120601011115010400050102000301040000010000020103000201
0500020102000101010002010400030104000401020000010100000103000101010000010200000
1030000010000000101000001010001010500040103000201020001010100ff01
a601020000010100000101000001010000010100000101000001010000010000011206010111011
20601011115010100000101000501020002010700010105000101060001010700
0001060002010400030106000001040000010100000102000001030000010700000106000201050
001010700ff01a501160001120601011101120601011115010100000102000401
0200020102000001030000010200010102000001030000010200010106000001010001010200040
10200020103000001020000010100000101000001010000010200010102000001
07000001030000010200000102000101020001010600ff01a501030000010100000101000001010
00001010000010100000101000001011206010111011206010111150101000101
0100040102000201020000010200010102000101020000010200010102000101030000010100030
10300040102000201020002010100000101000001040000010200010102000001
01000001010000010100000102000101020000010200010102000101030000010100ff01a501020
00001010000010100000101000001010000010100000101000001000001120601
0111011206010111140106000401020002010200000102000101070000010200010102000101020
00501050004010200020102000501010001010300000102000101020000010100
000101000001010000010200010102000001070001010200ff01a90116000112060101110112060
10111140107000301020003010400020102000501020001010200010102000401
0200000102000401020002010200050101000101030000010200010102000001010000010100000
1010000010200010102000001020006010200ff01a90103000001010000010100
0001010000010100000101000001010000010112060101110112060101111401010002010200030
10200020103000401030001010100000102000101020001010200040102000001
0200040102000201030001010100000101000201020000010200000103000001010000010100000
101000001020001010200000103000101010001010200ff01a901020000010100
0001010000010100000101000001010000010100000100000112060101110112060101111301030
00001030001010600000106000201060000010600010104000301070001010600
0101060000010200010102000001070000010100000101000001010000010600020106000001040
0ff01a80116000112060101110112060101111301030000010300010106000101
0600020104000101010000010200020104000401020000010200010106000201040001010200020
10100010103000001010000010100000101000001010000010100000102000401
040001010400ff01a80103000001010000010100000101000001010000010100000101000001011
2060101110112060101112601020001010200ff01ff0111010200000101000001
0100000101000001010000010100000101000001000001120601011101120601011126010700ff0
1ff011101160001120601011101120601011127010500ff01ff01120103000001
010000010100000101000001010000010100000101000001011206010111011206010111ff01ff0
14001020000010100000101000001010000010100000101000001010000010000
011206010111011206010111ff01ff0140011600011206010111011206010111ff01ff014001030
00001010000010100000101000001010000010100000101000001011206010111
011206010111ff01ff0140010200000101000001010000010100000101000001010000010100000
10000011206010111011206010111ff01ff014001160001120601011101120601
0111ff01ff014001030000010100000101000001010000010100000101000001010000010112060
10111011206010111ff01ff014001020000010100000101000001010000010100
000101000001010000010000011206010111011206010111ff01ff0140011600011206010111011
206010111ff01ff01400103000001010000010100000101000001010000010100
000101000001011206010111011206010111140106000b0104002a0103000001060002010300070
10300030101000c0106000d010000ff01a0010200000101000001010000010100
00010100000101000001010000010000011206010111011206010111140107000a0104002a01030
0000107000101030007010300020103000b0106000c010100ff01a00116000112
0601011101120601011115010200000102000c0102002b010200010102000001020002010200080
10200030101000e0102000e010100ff01a0010300000101000001010000010100
000101000001010000010100000101120601011101120601011115010200000102000c0102002b0
1020001010200000102000101040007010200140102000d010200ff01a0010200
0001010000010100000101000001010000010100000101000001000001120601011101120601011
11501020000010200010104000501020003010400010103000001020003010200
0001010002010300040105000101020000010200010104000401050001010400040102000001010
00201020002010300000102000101060003010300030104000001000002010300
0201020001010100ff0179011600011206010111011206010111150105000101060004010200020
10600000108000101060001010500020106000101020000010200010101000001
0100030106000101040003010600020102000201080000010600020105000101070001010500010
10700ff0178010300000101000001010000010100000101000001010000010100
0001011206010111011206010111150105000101010001010200040102000201010001010200010
10300000102000001030000010200000102000101020000010200000103000101
0600010101000001020001010200000103000301020002010300000102000201020003010300000
10200010102000401020001010200000102000001030000010200010102000101
0600ff0178010200000101000001010000010100000101000001010000010100000100000112060
10111011206010111150102000001020003010300040102000501030001010200
0101020000010200020101000001020001010200000102000101020001010500020101000101010
00101020001010200030102000201020002010100020102000301020001010200
010102000401020001010200000102000001020001010200010102000101030000010100ff01780
11600011206010111011206010111150102000001020001010500040102000301
0500010102000101020000010200050107000001020001010200010102000401060001010200010
10200030102000201020007010200030102000101020001010200040107000001
0200000102000101070001010200ff017c010300000101000001010000010100000101000001010
00001010000010112060101110112060101111501020000010200000102000001
0200040102000201020000010200010102000101020000010200050102000501020001010200010
10200040107000001020001010200030102000201020007010200030102000101
02000101020004010200060104000201020006010200ff017c01020000010100000101000001010
00001010000010100000101000001000001120601011101120601011115010200
0001020000010200000102000401020002010200000102000101020001010200000103000101010
00001030001010100000102000101020001010200040101000201020000010200
0101020003010200020103000101010002010200030102000101020001010200000101000101030
00101010000010300040103000101010001010200ff017c010300000101000001
0100000101000001010000010100000101000001011206010111011206010111140107000001070
00101060000010b00000103000101060001010600010106000001040002010300
0001030001010600010106000101060000010600000103000001030001010500020106000001060
00201060000010400ff017b010100140101120601011101120601011114010600
0201020000010200010106000101020000010600000103000201040003010400030102000001010
00001040002010300000103000201020000010100010106000201040001010600
00010300000103000201030004010400020106000201040001010400ff017b01010014010112060
10111011206010111ad01020001010200ff018a01030000010100000101000001
01000001010000010100000101000001011206010111011206010111ad010700ff018a010100140
1011206010111011206010111ae010500ff018b01010014010112060101110112
06010111ff01ff01400103000001010000010100000101000001010000010100000101000001011
206010111011206010111ff01ff01400101001401011206010111011206010111
ff01ff01400101001401011206010111011206010111ff01ff01400103000001010000010100000
101000001010000010100000101000001011206010111011206010111ff01ff01
400101001401011206010111011206010111ff01ff0140010100140101120601011101120601011
1ff01ff0140010300000101000001010000010100000101000001010000010100
0001011206010111011206010111ff01ff01400101001401011206010111011206010111ff01ff0
1400101001401011206010111011206010111140106000b0104002a0103000001
06000201030007010300030101000b0107000d010000070101001f010400ff01710103000001010
00001010000010100000101000001010000010100000101120601011101120601
0111140107000a0104002a010300000107000101030007010300020103000a0108000b010100060
103001e010400ff01710101001401011206010111011206010111150102000001
02000c0102002b01020001010200000102000201020008010200030101000c010200010102000b0
101000701010021010200ff017101010014010112060101110112060101111501
0200000102000c0102002b0102000101020000010200010104000701020012010200010102000a0
102002b010200ff01710103000001010000010100000101000001010000010100
0001010000010112060101110112060101111501020000010200010104000501020003010400010
10300000102000301020000010100020103000401050001010200000102000101
0400040105000101040004010200000101000001020000010200020104000201060002010400040
1030001010300000102000201040005010200ff01710101001401011206010111
0112060101111501050001010600040102000201060000010800010106000101050002010600010
10200000102000101010000010100030106000101040003010600000105000201
0600010106000201040003010500000108000001060004010200ff0171010100140101120601011
10112060101111501050001010100010102000401020002010100010102000101
0300000102000001030000010200000102000101020000010200000103000101060001010100000
10200010102000001030003010200020103000001020000010500020101000101
0200020102000701020002010200010102000001030000010200000101000101020004010200ff0
17101030000010100000101000001010000010100000101000001010000010112
0601011101120601011115010200000102000301030004010200050103000101020001010200000
10200020101000001020001010200000102000101020001010500020101000101
0100010102000101020003010200020102000201010000010200000102000401030002010200070
10200020102000101020000010200010102000301030004010200ff0171010100
1401011206010111011206010111150102000001020001010500040102000301050001010200010
10200000102000501070000010200010102000101020004010600010102000101
0200030102000201020005010200000102000201050002010200070102000201020001010200000
10200010102000101050004010200ff0171010100140101120601011101120601
0111150102000001020000010200000102000401020002010200000102000101020001010200000
10200050102000501020001010200010102000401070000010200010102000301
0200020102000501020000010200010102000001020002010200070102000201020001010200000
1020001010200000102000001020004010200ff01710103000001010000010100
0001010000010100000101000001010000010112060101110112060101111501020000010200000
10200000102000401020002010200000102000101020001010200000103000101
0100000103000101010000010200010102000101020004010100020102000001020001010200030
10200020103000101010000010200010102000001020000010200020102000001
01000401020002010200010102000001020001010200000102000001020004010200ff017101010
0140101120601011101120601011114010700000107000101060000010b000001
0300010106000101060001010600000104000201030000010300010106000101060001010a00010
10200000107000101050002010600010105000001030000010300000107000101
0600ff016f010100140101120601011101120601011114010600020102000001020001010600010
10200000106000001030002010400030104000301020000010100000104000201
0300000103000201020000010100010106000201040000010300010102000101020000010200020
1030003010600020103000101030000010300010102000001020001010600ff01
6f01030000010100000101000001010000010100000101000001010000010112060101110112060
10111ff01ff01400101001401011206010111011206010111ff01ff0140010100
1401011206010111011206010111ff01ff014001030000010100000101000001010000010100000
10100000101000001011206010111011206010111ff01ff014001010014010112
06010111011206010111ff01ff01400101001401011206010111011206010111ff01ff014001030
00001010000010100000101000001010000010100000101000001011206010111
011206010111ff01ff01400101001401011206010111011206010111ff01ff01400101001401011
206010111011206010111ff01ff01400103000001010000010100000101000001
010000010100000101000001011206010111011206010111ff01ff0140010100140101120601011
1011206010111ff01ff01400101001401011206010111011206010111ff01ff01
4001030000010100000101000001010000010100000101000001010000010112060101110112060
1011114010600040101002701070030010100ff01ba0101001401011206010111
0112060101111401070002010300260107002f010300ff01b901010014010112060101110112060
10111150102000001020003010100280102000001020030010100ff01ba010300
0001010000010100000101000001010000010100000101000001011206010111011206010111150
10200000102002e01020001010100ff01ed010100140101120601011101120601
0111150102000001020001010400010103000001020002010400020102000101010001010300000
10200010102000401030000010200000101000001030002010400010103000001
0200020103000001000002010400040103000101030000010200ff01a6010100140101120601011
10112060101111501050002010400010108000001060001010700000103000001
0200010104000201020001010200000107000001060000010800000106000201040003010500000
10800ff01a5010300000101000001010000010100000101000001010000010100
0001011206010111011206010111150105000401020002010300000102000001010001010200020
10600000102000101020001010400030102000001010001010300000102000001
0100010102000101030000010200000102000001020004010200020102000101020000010300000
10200ff01a5010100140101120601011101120601011115010200000102000301
0200020102000101020003010300020103000001010001010200000101000201020006010300020
10200010102000301030001010200010102000001030001010000040102000201
0200010102000001020001010200ff01a5010100140101120601011101120601011115010200000
10200030102000201020001010200010105000201020005010500020102000601
0300020102000101020001010500010102000101020001010400050102000201020001010200000
1020001010200ff01a50103000001010000010100000101000001010000010100
0001010000010112060101110112060101111501020000010200030102000201020001010200000
10200000102000201020006010300030102000101010002010300020102000101
0200000102000001020001010200010102000001000001010300040102000201020001010200000
1020001010200ff01a50101001401011206010111011206010111150102000001
0200030102000201020001010200000102000001020002010200060103000301020000010200010
10100000102000101020000010300000102000001020001010200010102000001
0200000102000401020002010200010102000001020001010200ff01a5010100140101120601011
10112060101111401070001010a00000103000001070000010400060101000301
070000010200010102000001060001010b000001030000010600020106000101050000010300000
10300ff01a5010300000101000001010000010100000101000001010000010100
00010112060101110112060101111401060002010a0000010300010102000001020000010400050
10200030107000001020000010300000105000301020000010600000103000001
00000001030003010600020103000101030000010300ff01a501010014010112060101110112060
101114201020016010200ff01e001010014010112060101110112060101114101
030016010200ff01e00103000001010000010100000101000001010000010100000101000001011
2060101110112060101114101020016010400ff01df0101001401011206010111
011206010111ff01ff01400101001401011206010111011206010111ff01ff01400103000001010
00001010000010100000101000001010000010100000101120601011101120601
0111ff01ff01400101001401011206010111011206010111ff01ff0140010100140101120601011
1011206010111ff01ff0140010300000101000001010000010100000101000001
0100000101000001011206010111011206010111ff01ff014001010014010112060101110112060
10111ff01ff01400101001401011206010111011206010111ff01ff0140010300
0001010000010100000101000001010000010100000101000001011206010111011206010111ff0
1ff01400101001401011206010111011206010111150102000001010002010400
05010100050104000301040017010300010103000401040013010300ff01bc01010014010112060
10111011206010111140106000201040004010300030106000101060016010300
010103000401040013010300ff01bc0103000001010000010100000101000001010000010100000
10100000101120601011101120601011114010200000102000401020005010100
0401020000010200010102000001020017010200020102000601020014010200ff01bc010100140
10112060101110112060101111401020001010100040102000c01020005010200
1b010200010104000501020014010200ff01bc01010014010112060101110112060101111401020
00101010004010200030104000201050002010500040103000201020001010100
0301050001010400050102000301040000010000020103000201050002010200010101000201040
0ff01a70103000001010000010100000101000001010000010100000101000001
0112060101110112060101111401020008010200030104000201050002010500030105000101070
00101060001010100000101000501020002010700010105000101060001010700
00010600ff01a601010014010112060101110112060101111401020008010200050102000301020
00501020004010200010102000101060000010200000103000101010000010200
0401020002010200000103000001020001010200000103000001020001010600000101000101020
0ff01a60101001401011206010111011206010111140102000801020005010200
0301020005010200040102000101020001010300000101000001020001010200010101000101010
00401020002010200000102000101020001010200000102000101020001010300
0001010003010300ff01a6010300000101000001010000010100000101000001010000010100000
10112060101110112060101111401020008010200050102000301020005010200
0401020001010200010102000401020001010200000106000401020002010200000102000101070
000010200010102000101020005010500ff01a601010014010112060101110112
0601011114010200010101000401020005010200030102000501020004010200010102000101020
00401020001010200000107000301020003010400020102000501020001010200
010102000401020000010200ff01a60101001401011206010111011206010111140102000101010
00401020005010200030102000501020004010200010102000101020004010200
0101020000010100020102000301020002010300040103000101010000010200010102000101020
00401020000010200ff01a6010300000101000001010000010100000101000001
0100000101000001011206010111011206010111140106000201060001010600000104000301040
0040105000101040004010a000001030001010600000106000201060000010600
0101040003010700ff01a5010100140101120601011101120601011115010400030106000101060
00001040003010400050103000201040005010200000105000001030001010600
01010600020104000101010000010200020104000401020000010200ff01a501010014010112060
101110112060101116e01020001010200ff01c901030000010100000101000001
010000010100000101000001010000010112060101110112060101116e010700ff01c9010100140
10112060101110112060101116f010500ff01ca01010014010112060101110112
06010111ff01ff01400103000001010000010100000101000001010000010100000101000001011
206010111011206010111ff01ff01400101001401011206010111011206010111
ff01ff01400101001401011206010111011206010111ff01ff01400103000001010000010100000
101000001010000010100000101000001011206010111011206010111ff01ff01
400101001401011206010111011206010111ff01ff0140010100140101120601011101120601011
1ff01ff0140010300000101000001010000010100000101000001010000010100
0001011206010111011206010111ff01ff01400101001401011206010111011206010111ff01ff0
140010100140101120601011101120601011115010200000101001d010400ff01
ff01010103000001010000010100000101000001010000010100000101000001011206010111011
206010111140106001d010400ff01ff0101010100140101120601011101120601
011114010200000102001f010200ff01ff010101010014010112060101110112060101111401020
0010101001f010200ff01ff010101030000010100000101000001010000010100
0001010000010100000101120601011101120601011114010200010101000301030002010000000
1010000010100010101000001030004010200040103000201030000010200ff01
ed01010014010112060101110112060101111401020006010500010107000001070003010200030
105000101020001010200ff01ed01010014010112060101110112060101111401
0200050102000101020000010700000103000001020003010200020102000101020001010200000
10100ff01ee010300000101000001010000010100000101000001010000010100
0001011206010111011206010111140102000501020001010200000101000001010000010100000
102000101020003010200020102000101020002010300ff01ef01010014010112
0601011101120601011114010200050102000101020000010100000101000001010000010200010
10200030102000201070002010300ff01ef010100140101120601011101120601
0111140102000101010001010200010102000001010000010100000101000001020001010200030
102000201020007010300ff01ef01030000010100000101000001010000010100
0001010000010100000101120601011101120601011114010200010101000101020001010200000
10100000101000001010000010200000103000301020002010300010101000101
010000010200ff01ee0101001401011206010111011206010111140106000201050001010100000
10100000101000001060002010600010106000001020001010200ff01ed010100
1401011206010111011206010111150104000401030002010100000101000001010000010500030
10600020104000101020000010300ff01ed010300000101000001010000010100
00010100000101000001010000010112060101110112060101112f010200ff01ff010d010100140
10112060101110112060101112f010200ff01ff010d0101001401011206010111
0112060101112e010400ff01ff010c0103000001010000010100000101000001010000010100000
101000001011206010111011206010111ff01ff01400101001401011206010111
011206010111ff01ff01400101001401011206010111011206010111ff01ff01400103000001010
00001010000010100000101000001010000010100000101120601011101120601
0111ff01ff01400101001401011206010111011206010111ff01ff0140010100140101120601011
1011206010111ff01ff0140010300000101000001010000010100000101000001
0100000101000001011206010111011206010111ff01ff014001010014010112060101110112060
10111ff01ff01400101001401011206010111011206010111ff01ff0140010300
0001010000010100000101000001010000010100000101000001011206010111011206010111150
1020000010100160100000701010022010300000107001e01000007010100ff01
a8010100140101120601011101120601011114010600150101000601030021010300000107001d0
1010006010300ff01a70101001401011206010111011206010111140102000001
020015010100070101002301020001010200000102001d01010007010100ff01a80103000001010
00001010000010100000101000001010000010100000101120601011101120601
01111401020001010100140102002d01020001010200010101001c010200ff01b20101001401011
20601011101120601011114010200010101000301030001010300000102000101
0600020104000101030000010200010102000001030002010300040105000101020004010200010
10100020104000401020000010100000106000201040004010300010103000001
0200ff0194010100140101120601011101120601011114010200060105000001080000010600020
10400010108000001020000010300010105000201060001010400020107000001
06000201060000010600020104000301050000010800ff019301030000010100000101000001010
00001010000010100000101000001011206010111011206010111140102000501
0200010102000001030000010200010102000701020002010300000102000001020001010200000
10200010102000001020000010300010104000301060000010100010102000101
030000010200010102000701020002010200010102000001030000010200ff01930101001401011
20601011101120601011114010200050102000101020000010200010102000101
0200070102000201020001010200000102000101020000010200010102000001020001010200010
10200050103000001010003010300010102000201010001010200070102000201
0200010102000001020001010200ff0193010100140101120601011101120601011114010200050
10200010102000001020001010200010102000701020002010200010102000001
0200010102000001070000010200010102000101020005010200050105000101020006010200070
1020002010200010102000001020001010200ff01930103000001010000010100
0001010000010100000101000001010000010112060101110112060101111401020001010100010
10200010102000001020001010200010102000701020002010200010102000001
0200010102000001020005010200010102000101020005010200040102000001020001010200060
102000701020002010200010102000001020001010200ff019301010014010112
0601011101120601011114010200010101000101020001010200000102000101020001010200000
10100040102000201020001010200000102000001030000010300010101000001
0200010102000101020005010200040102000001020001010300010101000101020000010100040
1020002010200010102000001020001010200ff01930101001401011206010111
011206010111140106000201050000010300000103000101050002010a000001030000010700010
10600010106000001040003010400030107000101060001010500020106000101
05000001030000010300ff019301030000010100000101000001010000010100000101000001010
00001011206010111011206010111150104000401030001010300000103000201
030003010a000001030001010300000101000201040003010200000101000001040003010400040
1020000010200020104000301030003010600020103000101030000010300ff01
930101001401011206010111011206010111ff01ff0140010100140101120601011101120601011
1ff01ff0140010300000101000001010000010100000101000001010000010100
0001011206010111011206010111ff01ff01400101001401011206010111011206010111ff01ff0
1400101001401011206010111011206010111ff01ff0140010300000101000001
0100000101000001010000010100000101000001011206010111011206010111ff01ff014001010
01401011206010111011206010111ff01ff014001010014010112060101110112
06010111ff01ff01400103000001010000010100000101000001010000010100000101000001011
206010111011206010111ff01ff01400101001401011206010111011206010111
ff01ff01400101001401011206010111011206010111ff01ff01400103000001010000010100000
101000001010000010100000101000001011206010111011206010111ff01ff01
4001010014010112060101110112060101111401060016010100160104000201070030010100ff0
1b101010014010112060101110112060101111401070014010300150104000201
07002f010300ff01b00103000001010000010100000101000001010000010100000101000001011
20601011101120601011115010200000102001501010018010200030102000001
020030010100ff01b10101001401011206010111011206010111150102000001020030010200030
1020001010100ff01e40101001401011206010111011206010111150102000001
0200020103000401020000010100010104000201000000010100000101000201040005010200030
10200040103000001020000010100000103000201040001010300000102000201
03000001000002010400040103000101030000010200ff019d01030000010100000101000001010
00001010000010100000101000001011206010111011206010111150102000001
0200010105000201060001010400020107000001060004010200030104000201020001010200000
10700000106000001080000010600020104000301050000010800ff019c010100
1401011206010111011206010111150102000001020000010200010102000001030000010200030
10200020107000001010001010200040102000301040003010200000101000101
0300000102000001010001010200010103000001020000010200000102000401020002010200010
102000001030000010200ff019c01010014010112060101110112060101111501
0200000102000001020001010200000102000201010003010200020101000001010000010100030
10300040102000301020006010300020102000101020003010300010102000101
020000010300010100000401020002010200010102000001020001010200ff019c0103000001010
00001010000010100000101000001010000010100000101120601011101120601
0111150102000001020000010700000102000801020002010100000101000001010001010500040
10200030102000601030002010200010102000101050001010200010102000101
04000501020002010200010102000001020001010200ff019c01010014010112060101110112060
10111150102000001020000010200050102000801020002010100000101000001
0100000102000001020004010200030102000101010002010300020102000101020000010200000
10200010102000101020000010000010103000401020002010200010102000001
020001010200ff019c0101001401011206010111011206010111150102000001020000010300010
10100000103000101010003010200020101000001010000010100000102000001
0200040102000301020000010200010101000001020001010200000103000001020000010200010
10200010102000001020000010200040102000201020001010200000102000101
0200ff019c010300000101000001010000010100000101000001010000010100000101120601011
10112060101111401070001010600010106000101060000010100000101000001
010000010700010106000001070000010200010102000001060001010b000001030000010600020
10600010105000001030000010300ff019c010100140101120601011101120601
0111140106000301040003010400020106000001010000010100000101000101020000010200010
10600000107000001020000010300000105000301020000010600000103000001
00000001030003010600020103000101030000010300ff019c01010014010112060101110112060
1011165010200ff01d70103000001010000010100000101000001010000010100
00010100000101120601011101120601011165010200ff01d701010014010112060101110112060
1011164010400ff01d60101001401011206010111011206010111ff01ff014001
0300000101000001010000010100000101000001010000010100000101120601011101120601011
1ff01ff01400101001401011206010111011206010111ff01ff01400101001401
011206010111011206010111ff01ff0140010300000101000001010000010100000101000001010
0000101000001011206010111011206010111ff01ff0140010100140101120601
0111011206010111ff01ff01400101001401011206010111011206010111ff01ff0140010300000
10100000101000001010000010100000101000001010000010112060101110112
06010111ff01ff01400101001401011206010111011206010111ff01ff014001010014010112060
10111011206010111140106000401010005010400030104002801000007010100
0d01040003010300000101002d010100030101000a0104000501000007010100210101000f01000
00d0106000b010400290101000d010400c6010300000101000001010000010100
0001010000010100000101000001011206010111011206010111140107000201030003010600010
1060026010100060103000c010400020107002d010100030101000a0104000401
0100060103001f0103000d0101000d0107000a010400280103000c010400c601010014010112060
10111011206010111150102000001020003010100040102000001020001010200
0001020026010100070101000f01020002010200010102002d010200010102000c0102000401010
007010100210101000e0101000e010200000102000c010200290101000f010200
c6010100140101120601011101120601011115010200000102000a0102000501020029010200190
1020002010200020101002d010200010102000c010200030102003b0102000e01
0200000102000c0102003b010200c60103000001010000010100000101000001010000010100000
10100000101120601011101120601011115010200000102000101040002010500
0201050004010300020102000101010003010300010103000001020001010600020104000301040
00501020002010300010101000001010000010300020104000201020001010100
0201030000010000030103000201070000010200000103000301020002010600020104000201020
00101020001010400020102000101010002010400030104000201060003010300
0301020000010200020103000501020002010300000106000001020003010300020100000001010
000010100020104000301040005010200c6010100140101120601011101120601
0111150102000001020001010400020105000201050003010500010107000101050000010800000
10600020104000201060004010200030103000301070000010600010107000001
0600020105000101070000010200000103000301020002010600020104000201020001010200000
10600010107000101040002010600010106000201050002010200000102000101
0500040102000201030000010b000101050001010700010104000201060004010200c6010100140
10112060101110112060101111501020000010200030102000301020005010200
0401020001010200010106000001020001010200000103000001020001010200070102000201010
00101020004010200040103000201030000010200000101000101020002010600
0001020000010200010102000101020000010700000102000101020003010200030102000701020
00201020001010200000101000101020002010600030102000201010001010200
0201020004010200010102000101060000010200010102000301020002010200010102000001030
00001020000010200010102000001070003010200020101000101020004010200
c601030000010100000101000001010000010100000101000001010000010112060101110112060
10111150102000001020003010200030102000501020004010200010102000101
0300000101000001020001010200000102000101020001010200070102000501030004010200050
10300010102000101020003010300020103000001010000010300010100000101
0200010102000001010000010100000101000001020001010200030102000301020007010200030
10200000101000401030002010300000101000301020005010300020102000401
0200010102000101050001010200010102000301020003010200000101000101020001010200000
1020001010200000101000001010000010100030102000501030004010200c601
0100140101120601011101120601011115010200000102000301020003010200050102000401070
00101020004010700000102000101020001010200070102000301050004010200
0201010001010300000102000101020001010500020102000501040002010700000101000001010
00001010000010200010102000301020003010200070102000301020000010100
0201050002010200070102000301050002010200040107000101020004010200010102000301020
00301050001010200010102000001020001010200000101000001010000010100
030102000301050004010200c601010014010112060101110112060101111501020000010200030
10200030102000501020004010200060102000401020005010200010102000101
0200070102000201020000010200040102000201010002010200000102000101020000010200000
10200020102000401000001010300010102000501010000010100000101000001
0200010102000301020003010200070102000301040002010200000102000201020007010200020
10200000102000201020004010200060102000401020001010200030102000401
0300020102000101020000010200010102000001010000010100000101000301020002010200000
1020004010200c601030000010100000101000001010000010100000101000001
0100000101120601011101120601011115010200000102000301020003010200050102000401030
00101010001010200040103000101010000010200010102000101020000010100
0401020002010200000102000401020002010200010102000001020000010300000102000001020
00201020004010200000102000101030001010100000101000301010000010200
0001030003010200030102000001010004010200040103000201020000010200020102000701020
00201020000010200020102000001010001010300010101000101020004010200
0101020003010200040103000201020001010200000102000101020000010100000101000001010
003010200020102000001020004010200c6010100140101120601011101120601
011114010700010106000001040003010400040106000001040004010a000001030001010500020
10600000107000101060000010700000106000101070000010400030106000201
0600000102000101020000010700010106000101050002010600020102000301070000010400040
10600000107000101050002010600000104000401050002010600030101000201
03000001030001010500010101000001010000010100010106000001070001010600c4010100140
10112060101110112060101111401060002010600000104000301040005010400
0101040005010400000103000001030002010300030106000101020000010200010106000001010
00001030001010500030102000001020000010400030100000001030004010400
0101020001010200010103000001010001010600020103000301060002010200040102000001020
00001040004010600010102000001020002010300040104000101040005010300
0301060002010200020103000001030002010300020101000001010000010100010106000101020
00001020001010600c40103000001010000010100000101000001010000010100
00010100000101120601011101120601011189010200b1010200fe0101001401011206010111011
20601011189010200b0010300fe01010014010112060101110112060101118801
0400af010200ff01030000010100000101000001010000010100000101000001010000010112060
10111011206010111ff01ff01400101001401011206010111011206010111ff01
ff01400101001401011206010111011206010111ff01ff014001030000010100000101000001010
00001010000010100000101000001011206010111011206010111ff01ff014001
01001401011206010111011206010111ff01ff01400101001401011206010111011206010111ff0
1ff01400103000001010000010100000101000001010000010100000101000001
011206010111011206010111ff01ff01400101001401011206010111011206010111ff01ff01400
101001401011206010111011206010111ff01ff01400103000001010000010100
0001010000010100000101000001010000010112060101110112060101111401060004010100210
10000040106001701030015010000ff01bb010100140101120601011101120601
011114010700020103001f010100040107001601030014010100ff01bb010100140101120601011
10112060101111501020000010200030101002001010005010200000102001701
020014010100ff01bb0103000001010000010100000101000001010000010100000101000001011
20601011101120601011115010200000102002501020005010200000102001701
020013010200ff01bb0101001401011206010111011206010111150102000001020001010400020
10200010101000301030004010200000101000001060002010200000102000001
02000101010003010300040105000001020000010300020102000001010000010600ff01b801010
01401011206010111011206010111150102000001020001010400020107000101
0500020106000001060002010200000102000001070001010500020106000001020000010300010
1060000010600ff01b80103000001010000010100000101000001010000010100
0001010000010112060101110112060101111501020000010200030102000301060000010200010
10200000103000001020001010200050106000101060000010200010102000001
0200000103000001020001010200000103000001020001010200ff01bb010100140101120601011
10112060101111501020000010200030102000301030000010100000102000101
0200000102000201010001010200050105000201030000010100000102000101020000010200010
102000001020001010200000102000201010001010200ff01bb01010014010112
0601011101120601011115010200000102000301020003010200040107000001020006010200050
10200050102000401020001010200000102000101020000010200010102000001
020006010200ff01bb0103000001010000010100000101000001010000010100000101000001011
20601011101120601011115010200000102000301020003010200040102000501
0200060102000501020005010200040102000101020000010200010102000001020001010200000
1020006010200ff01bb0101001401011206010111011206010111150102000001
0200030102000301020004010300010101000001030001010100010102000001010002010200050
10200040102000101020000010200010102000001020000010300000103000101
01000101020000010100ff01b801010014010112060101110112060101111401070001010600000
10400040106000101060001010500010104000301040004010500020106000001
07000101060001010500ff01b801030000010100000101000001010000010100000101000001010
00001011206010111011206010111140106000201060000010400050104000301
0400030103000201040003010400050103000401020000010100010103000001010002010400030
10300ff01b90101001401011206010111011206010111ff01ff01400101001401
011206010111011206010111ff01ff0140010300000101000001010000010100000101000001010
0000101000001011206010111011206010111ff01ff0140010100140101120601
0111011206010111ff01ff01400101001401011206010111011206010111ff01ff0140010300000
10100000101000001010000010100000101000001010000010112060101110112
06010111ff01ff01400101001401011206010111011206010111ff01ff014001010014010112060
10111011206010111ff01ff014001030000010100000101000001010000010100
00010100000101000001011206010111011206010111ff01ff01400101001401011206010111011
206010111ff01ff01400101001401011206010111011206010111ff01ff014001
0300000101000001010000010100000101000001010000010100000101120601011101120601011
1ff01ff0140010100140101120601011101120601011114010600040101002101
000004010600170103001501000004010100030101000c010000100101000c010100030101000d0
103000a010400ff01560101001401011206010111011206010111140107000201
03001f01010004010700160103001401010004010100030101000b0101000f0103000b010100030
101000d0103000a010400ff015601030000010100000101000001010000010100
0001010000010100000101120601011101120601011115010200000102000301010020010100050
1020000010200170102001401010004010200010102000b010100100101000c01
0200010102000e0102000c010200ff0156010100140101120601011101120601011115010200000
10200250102000501020000010200170102001301020004010200010102000a01
02001f010200010102000e0102000c010200ff01560101001401011206010111011206010111150
10200000102000101040002010200010101000301030004010200000101000001
0600020102000001020000010200010101000301030004010500000102000001030002010200000
10100000106000101070001010400020106000101020001010100020104000201
03000001020000010700020103000401050000010200000103000301020004010300ff014d01030
00001010000010100000101000001010000010100000101000001011206010111
0112060101111501020000010200010104000201070001010500020106000001060002010200000
10200000107000101050002010600000102000001030001010600000106000101
0700000106000101060001010700010104000201020001010200000107000101050002010600000
10200000103000301020003010500ff014c010100140101120601011101120601
0111150102000001020003010200030106000001020001010200000103000001020001010200050
10600010106000001020001010200000102000001030000010200010102000001
0300000102000101020004010700000101000101020002010200050106000301020003010200000
10100010107000001020001010200000102000001030000010200010102000301
02000201020001010200ff014b01010014010112060101110112060101111501020000010200030
10200030103000001010000010200010102000001020002010100010102000501
0500020103000001010000010200010102000001020001010200000102000101020000010200020
10100010102000401010000010100000101000301030002010200050103000001
0100030102000401030002010100000101000001010000010200010102000001020001010200000
1020001010200030102000201020001010200ff014b0103000001010000010100
0001010000010100000101000001010000010112060101110112060101111501020000010200030
10200030102000401070000010200060102000501020005010200040102000101
0200000102000101020000010200010102000001020006010200040101000001010000010100010
10500020102000501020007010200040103000201010000010100000101000001
020001010200000102000101020000010200010102000301020002010700ff014b0101001401011
20601011101120601011115010200000102000301020003010200040102000501
0200060102000501020005010200040102000101020000010200010102000001020001010200000
10200060102000401010000010100000101000001020000010200020102000501
0200070102000401030002010100000101000001010000010200010102000001020001010200000
10200010102000301020002010200ff0150010100140101120601011101120601
0111150102000001020003010200030102000401030001010100000103000101010001010200000
10100020102000501020004010200010102000001020001010200000102000001
0300000103000101010001010200000101000101010003010100000102000001020002010200000
10100020102000701020003010100000102000101010003010100000102000101
020000010200010102000001020000010300030102000201030001010100ff014b0103000001010
00001010000010100000101000001010000010100000101120601011101120601
0111140107000101060000010400040106000101060001010500010104000301040004010500020
10600000107000101060001010500010102000101020000010700010105000101
0400040106000001020001010200000102000101020001010500020106000001070001010600010
10600ff014b010100140101120601011101120601011114010600020106000001
0400050104000301040003010300020104000301040005010300040102000001010001010300000
10100020104000301030002010200010102000101020000010200020103000201
0400040106000001020000010300000102000101020002010300040102000001010001010300000
101000101060002010400ff014c0101001401011206010111011206010111ff01
ff01400103000001010000010100000101000001010000010100000101000001011206010111011
206010111ff01ff01400101001401011206010111011206010111ff01ff014001
01001401011206010111011206010111ff01ff01400103000001010000010100000101000001010
000010100000101000001011206010111011206010111ff01ff01400101001401
011206010111011206010111ff01ff01400101001401011206010111011206010111ff01ff01400
10300000101000001010000010100000101000001010000010100000101120601
0111011206010111ff01ff01400101001401011206010111011206010111ff01ff0140010100140
1011206010111011206010111ff01ff0140010300000101000001010000010100
0001010000010100000101000001011206010111011206010111ff01ff014001010014010112060
10111011206010111ff01ff014001010014010112060101110112060101111401
0600040101002101000004010600170103001501000004010100030101000d0103000a010400ff0
18c01030000010100000101000001010000010100000101000001010000010112
0601011101120601011114010700020103001f01010004010700160103001401010004010100030
101000d0103000a010400ff018c01010014010112060101110112060101111501
02000001020003010100200101000501020000010200170102001401010004010200010102000e0
102000c010200ff018c0101001401011206010111011206010111150102000001
0200250102000501020000010200170102001301020004010200010102000e0102000c010200ff0
18c01030000010100000101000001010000010100000101000001010000010112
0601011101120601011115010200000102000101040002010200010101000301030004010200000
10100000106000201020000010200000102000101010003010300040105000001
0200000103000201020000010100000106000101070002010300040105000001020000010300030
1020004010300ff01830101001401011206010111011206010111150102000001
0200010104000201070001010500020106000001060002010200000102000001070001010500020
10600000102000001030001010600000106000101070001010500020106000001
0200000103000301020003010500ff0182010100140101120601011101120601011115010200000
10200030102000301060000010200010102000001030000010200010102000501
0600010106000001020001010200000102000001030000010200010102000001030000010200010
10200040107000001020001010200000102000001030000010200010102000301
02000201020001010200ff018101030000010100000101000001010000010100000101000001010
00001011206010111011206010111150102000001020003010200030103000001
0100000102000101020000010200020101000101020005010500020103000001010000010200010
10200000102000101020000010200010102000001020002010100010102000401
0100000101000001010000010200010102000001020001010200000102000101020003010200020
1020001010200ff01810101001401011206010111011206010111150102000001
0200030102000301020004010700000102000601020005010200050102000401020001010200000
10200010102000001020001010200000102000601020004010100000101000001
01000001020001010200000102000101020000010200010102000301020002010700ff018101160
00112060101110112060101111501020000010200030102000301020004010200
0501020006010200050102000501020004010200010102000001020001010200000102000101020
00001020006010200040101000001010000010100000102000101020000010200
0101020000010200010102000301020002010200ff0186011600011206010111011206010111150
10200000102000301020003010200040103000101010000010300010101000101
0200000101000201020005010200040102000101020000010200010102000001020000010300000
10300010101000101020000010100010101000301010000010200010102000001
0200010102000001020000010300030102000201030001010100ff0181011600011206010111011
20601011114010700010106000001040004010600010106000101050001010400
0301040004010500020106000001070001010600010105000101020001010200010105000201060
0000107000101060001010600ff01810116000112060101110112060101111401
0600020106000001040005010400030104000301030002010400030104000501030004010200000
10100010103000001010002010400030103000201020001010200020103000401
02000001010001010300000101000101060002010400ff018201160001120601011101120601011
1ff01ff0140011600011206010111011206010111ff01ff014001160001120601
0111011206010111ff01ff0140011600011206010111011206010111ff01ff01400116000112060
10111011206010111ff01ff014001020012010000011206010111011206010111
ff01ff014001030010010100011206010111011206010111ff01ff01400104000e0102000112060
10111011206010111ff01ff01400105000c010300011206010111011206010111
ff01ff01400106000a010400011206010111011206010111ff01ff0140010700080105000112060
10111011206010111ff01ff014001080006010600011206010111011206010111
ff01ff014001090004010700011206010111011206010111ff01ff0140010a00020108000112060
10111011206010111ff01ff0140010b0000010900011206010111011206010111
ff01ff0140011600011206010111011206010111ff01ff014001160001120601011101120601011
1ff01ff0140011600011206010111011206010111ff00ff005700011206010111
011206010111ff00ff005700011206010111011206010111ff01ff0140011600011206010111011
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
0111011206010111ff01ff015701011206010111011206010111ff01a4019900180101120601011
1011206010111ff01a40199001801011206010111011206010111ff012e010000
3c0104000401010004010400050100001a019900180101120601011101120601011114010200010
10200040100008a01020009010000110102005c0101003b010600020103000301
0400040101001a01990018010112060101110112060101111501010002010100030102008a01010
008010200110101005c0101003b01020000010200030101000601020004010100
1a01990018010112060101110112060101111501010002010000050100008b01010009010000120
101005b0102003b01020010010200030102001a01990018010112060101110112
0601011115010100020100009201010000010200180101002501010000010300020104000201020
00101010002010400020100000001010000010100030103000201060003010300
020102000101010002010300000100001c010500030104000501020002010600030103000201020
00101010005019900180101120601011101120601011115010100010100000301
030005010300010101000401000003010300050100001f010100010101000401030002010100020
1010003010300040103001d010100020100000301030003010100010101000401
010000010100030103001d010700000106000101070000010600010107000101050001010600020
1050001010700000106001c010500030104000501020002010600020105000101
0700040199001801011206010111011206010111150101000101000005010100030102000101010
001010100020101000101020001010100030102001d0100000001000000010300
02010100010101000001030000010300000102000101010001010200010101001c0101000101000
00601010002010000000100000001030002010000010102000101020001010100
1c01030000010200000101000101020002010600000101000101020001010700000102000101020
00101020004010200010102000101060000010200000102001d01020007010200
0501020003010200040102000101020001010600040199001801011206010111011206010111150
10100010100000401010004010100020101000101010002010100010101000201
0000050100002001020000010100060101000101000000010000000100000001010000010100020
1010001010100020100001d010300060101000501020000010100010101000101
010002010100020100001d010200010102000301030002010300000101000301030001010100000
10100000101000001020001010200010102000401020001010200010103000001
010000010300010100001d010200070102000501020003010200040102000101020001010300000
10100040199001801011206010111011206010111150101000001000005010100
03010100020101000201010002010000030101002a0101000101010003010300020100000001010
00101030002010100030101002001030006010100050101000101010001010100
0101010003010100200102000101020001010500020102000501050001010100000101000001010
000010700010102000401070001010200050104001e0102000701020005010200
0301020004010700010102000801990018010112060101110112060101111501010000010000050
10100030104000301010001010000000100000401020027010100020100000201
01000101010001010100000101000001010000010400060102001e0100000101000006010100040
10100020100000101010002010100040102001e01020001010200000102000001
0200020102000401020000010200010101000001010000010100000102000601020004010200060
1020004010000010103001d010200070102000501020003010200040102000601
0200080199001801011206010111011206010111150101000001000004010100040101000601010
00001010000010000020100000201010026010100010101000101010002010100
0101010000010000010101000001010007010000020101001c01010001010100040101000501010
001010100010101000101010003010000020101001d0102000001030000010200
0001020002010200040102000001020001010100000101000001010000010300010101000101020
00001010001010300010101000101020004010200000102001d01020007010200
0501020003010200000101000101030001010100010102000801990018010112060101110112060
10111150102000501010001010000020101000201000001010600010101000101
0200040100002001010001010100000102000101020000010100010100000101000002010100020
1000001010100010102001c010100010101000001000002010100010100000201
01000101010000010200000102000001000000010100010102001d0106000101070000010400030
10700000101000001010000010100010106000101050002010600000104000301
06001c0104000401060001010600010105000201060000010400070199001801011206010111011
20601011115010100070102000401030003010100000101000301030005010200
1e010100030101000101020001010100000100000401000003010300030103001e0101000201010
00401020002010100030101000101020000010100020103001f01050003010200
0001020000010400040102000001020000010100000101000001010002010400030103000401040
00101040003010000000103001d01040004010600010106000201030004010400
01010400070199001801011206010111011206010111430100003801000076010200ab019900180
1011206010111011206010111f5010200ab019900180101120601011101120601
0111f4010400aa0199001801011206010111011206010111ff01a40199001801011206010111011
206010111ff01a40199001801011206010111011206010111ff01a40104000801
8b001801011206010111011206010111ff01a401040008018b00180101120601011101120601011
1ff01a40199001801011206010111011206010111ff01ff015701011206010111
011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
10111ff01ff0157010112060101110112060101116d0103000401030034010400
04010100040104004e0103000301010006010000070101003d010300270101000f0100000701010
09f010112060101110112060101116d0103000401030033010600020103000301
04004e0103000201030004010100060103003c010300260103000d010100060103009e010112060
101110112060101116e0102000501020033010200000102000301010006010200
4f0102000301010005010100070101003e010200270101000e010100070101009f0101120601011
10112060101116e0102000501020033010200100102004f0102000a0102004801
020037010200a901011206010111011206010111660104000201050002010500020102000101010
002010300000100001c0105000301040005010200040103000301030000010000
1e01020000010100020103000101030000010200030105000101040002010600020104000401030
0010103000001020002010300000100001e010500020103000301030000010000
0301020000010100000102000101010002010400020101000001030001010600020104000401030
001010300000102008b0101120601011100120911650106000101060001010600
01010700000106001c010500030104000501020003010500010106001d010600010105000001080
0010106000101040002010600020104000301050000010800000106001d010600
0101050001010600020106000001070001010400020107000001060002010400030105000001080
08a01011208110912001165010100010102000101030000010200000103000001
02000101060000010200000102001d0102000701020005010200020102000101020000010200000
102001c0103000001020000010200010102000001030000010200000102000001
03000301020003010200070102000201020001010200000103000001020000010200000102001c0
10200000103000001020001010200000102000001020001010300000102000101
06000301020002010300000102000101020007010200020102000101020000010300000102008a0
10912001101120601011168010300010102000101020000010200010102000101
03000001010000010300010100001d0102000701020005010200020102000101020000010300010
100001c0102000201010000010200010102000001020001010200000102000101
02000301020003010200070102000201020001010200000102000101020000010300010100001c0
10200010102000001020001010200000103000101000001010200020101000101
0300000101000301020002010200010102000101020007010200020102000101020000010200010
102008a0101120601011101120601011166010500010102000101020000010200
0101020001010200050104001e010200070102000501020002010700010104001d0102000501020
00101020000010200010102000001020001010200030102000301020007010200
02010200010102000001020001010200010104001d0102000101020000010700010104000201020
00601020007010200020102000101020001010200070102000201020001010200
00010200010102008a0101120601011101120601011165010200000102000101020001010200000
10200010102000101020004010000010103001d01020007010200050102000201
020005010000010103001c010200050102000101020000010200010102000001020001010200030
10200030102000701020002010200010102000001020001010200000100000101
03001c0102000101020000010200050100000101030001010200060102000701020002010200010
102000101020007010200020102000101020000010200010102008a0101120601
0111011206010111650102000001020001010200010102000001020001010200010102000401020
0000102001d010200070102000501020002010300010101000001020000010200
1c01030001010100000102000101020000010200010102000001020001010200030102000301020
00001010004010200020102000101020000010200010102000001020000010200
1c01020001010200000103000101010000010200000102000101030001010100010102000701020
00201020000010300010102000001010004010200020102000101020000010200
010102008a0101120601011101120601011165010700000106000101060001010400030106001c0
10400040106000101060001010600000106001d01060001010500000103000001
030001010600010106000101050002010600010105000001030000010300000106001d010600010
10600000106000201060000010400040106000001060002010500020106000101
050000010300000103008a010112060101110112060101116601020000010200000101000001020
002010100000102000201040003010000000103001d0104000401060001010600
0201040001010000000103001f01040003010300010103000001030002010200000101000101060
0020103000301060002010300010103000001030000010000000103001f010200
0001010002010400010100000001030004010400010104000401060000010500040103000301060
00201030001010300000103008a01011206010111011206010111ff01a0010200
b301011206010111011206010111ff01a0010200b301011206010111011206010111ff019f01040
0b201011206010111011206010111ff01ff015701011206010111011206010111
ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff0
15701011206010111011206010111ff01ff015701011206010111011206010111
ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff0
15701011206010111011206010111ff01ff015701011206010111011206010111
ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff0
15701011206010111011206010111ff01ff015701011206010111011206010111
ff12ff12591206010111011206010011ff12ff125a120601011101121e0100110012ff01ff01270
1001100121e01011101121e0100110012ff01ff012701001100121e0101110112
1e0100110012ff01ff012701001100121e01011101121e0100110012ff01ff012701001100121e0
1011101121e0100110012ff01ff012701001100121e01011101121e0100110012
ff01ff012701001100121e01011101121e0100110012ff01ff012701001100121e01011101121f1
10012ff11ff112811001220110012ff11ff116c11
pop pop setmatrix

/#copies 1 def
grestore
%%Trailer