aboutsummaryrefslogtreecommitdiff
path: root/src/doc/ps/h-docsearch.ps
blob: 26a62718205301be545ec1635af7bd701ef9b3f4 (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
%!PS-Adobe-2.0 EPSF-1.2
%%BoundingBox: 143.000000 280.520006 469.000000 541.719999
%%Creator: xwd2ps
%%CreationDate: Fri Nov 22 15:15:28 1991
%%Title: h-docsearch.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-docsearch.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
002010700020149004501000008010000060100001d0100001001000030010000
0d0102003b010000550106000201040002010200020103000201020004010100040102000201280
000011d00011206010111011206010111050002010d0002010000020105000201
0700020149004401010007010100050101001d0100000f0102002f0100000e010100290100000f0
10200540106000201040002010200020103000201020004010100040102000201
260004011b00011206010111011206010111050002010d000201000002010500020107000201490
04301020006010200040102001c010100100100002f0101000e0101000d010100
19010000100100000f01010043010600020104000201020002010300020102000b0102000201240
008011900011206010111011206010111050002010e0004010600020107000201
49004201030006010200030103001c010100410101000e0101000d0101001801010021010100430
10600020104000201020002010300020102000201000003010000020102000201
22000c0117000112060101110112060101110500080108000401060002010700020149004401010
00501000000010100050101000a01030002010100000102000201060001010100
0001030002010300050103000301030000010000060100000001010000010100020104000201060
00301030003010400070101000001000001010100000101000201010003010300
0301050001010100010102000201030004010100020101000001010000010000010101004001060
00a010200020103000201020002010000030100000201020007011b0010011500
0112060101110112060101110500090108000201070002010700020149004401010005010000000
10100050101000901010001010100020101000101010003010100050102000101
0100030101000401010001010100010101000201010006010100000101000001010000010100020
10100030101000501010001010100020102000001010006010200000107000001
0300010101000101010003010100030100000001020001010100030101000301000000010100000
101000101020000010300400106000a0102000201030002010200020101000101
0100020102000801180014011300011206010111011206010111050009010800020107000201070
00201490044010100040100000101010005010100080101000201010002010100
0101010003010100050101000201010003010100030101000201010001010100030100000601010
00001010000010100000101000201010003010100040101000201010002010100
0101010008010000000100000301000000010000000100000001010005010100030101000501020
00101010002010100060103000401000000010000430106000a01020002010300
0201020002010100010101000201020008011600180111000112060101110112060101110500020
10e00040106000201070002014900440101000401000001010100050101000801
0600020101000101010003010100050101000801010003010600020102000901010000010100000
10100030103000301010004010100070101000101010006010100000101000301
0000000101000101010002010300040101000501010007010100070102000201010000010100430
10600020104000201020002010300020102000201050002010200020121000e01
1600011206010111011206010111050002010e00040106000201070002014900440101000301000
00201010005010100080101000701010001010100030101000501010008010100
0301010009010200070101000001010000010100010101000101010003010100040101000701010
00101010005010100020101000101010000010100000101000101010001010100
0301010006010100070101000601020002010100020101004201060002010400020102000201030
0020102000201050002010200020121000e011600011206010111011206010111
050002010d000201000002010500020107000201490044010100030107000301010008010100070
10100010101000301010005010100080101000301010006010000030101000601
0100000101000001010000010100020101000301010004010100030100000201010001010100050
10100020101000101010000010000010101000001010002010100030101000501
0100070101000601010000010100010101000201010042010600020104000201020002010300020
102000201050002010200020121000e0116000112060101110112060101110500
02010d0002010000020105000201070002014900440101000701010005010100090101000201000
00201010001010100030101000101000002010100080101000401010002010000
0101010002010100060101000001010000010100000101000101020003010100010100000201010
00101010002010100010101000e01000001010000010100000101010001010200
0001000001010100010100000201010007010100010100000301000001010100000100004901060
0020104000201020002010300020102000201050002010200020121000e011600
011206010111011206010111050002010c000201020002010400020107000201490043010400050
10100040104000801030002010200000103000301020002010400040105000301
0300020100000001030007010100000101000001010001010200010101000301020004010300020
10200000103000d01000004010000020102000101010003010200030101000801
020002010100030101004a010600020104000201020002010300020102000201050002010200020
121000e011600011206010111011206010111050002010c000201020002010400
02010700020149004201050004010300020105008b0100007701060002010400020102000201030
00201020002010500020102000201470001120601011101120601011105000201
0b0002010400020103000201070002014900ff015f0106000201040002010200020103000201020
00201050002010200020147000112060101110112060101110500090104000201
0400020103000201070002014900ff015f010600020104000201020009010200020105000201020
00801410001120601011101120601011105000a01020002010600020102000201
070002014900ff015f0106000201040002010300080102000201050002010200090140000112060
1011101120601011106000901030001010700010103000101080001014900ff01
5f01070001010500010104000601040001010600010103000801400001120601011101120601011
17b00ff015f017b000112060101110112060101117b00ff015f017b0001120601
01110112060101117b00ff015f017b000112060101110112060101117b00ff015f017b000112060
10111011206010111ff00ff005700011206010111011206010111ff00ff005700
011206010111011206010111ff01ff015701011206010111011206010111ff01ff0157010112060
10111011206010111ff01ff015701011206010111011206010111ff01ff015701
011206010111011206010111ff01ff015701011206010111011206010111ff01ff0157010112060
10111011206010111ff01ff015701011206010111011206010111ff01ff015701
011206010111011206010111ff01ff015701011206010111011206010111ff01ff0157010112060
10111011206010111ff01ff015701011206010111011206010111ff01ff015701
011206010111011206010111ff01ff015701011206010111011206010111ff01ff0157010112060
10111011206010111ff01ff015701011206010111011206010111ff01ff015701
011206010111011206010111ff01ff015701011206010111011206010111ff01ff0157010112060
10111011206010111ff01ff015701011206010111011206010111140105003b01
000010010000070100001c010300000100004901000008010000060100002601000007010000300
1030037010000c50101120601011101120601011115010100010101003a010000
10010000060102001a0101000101020048010100070101000501010026010000060102002e01010
001010100240100000f010200c401011206010111011206010111150101000201
0100380101000f010100070100001b0100000301010047010200060102000401020025010100070
100002f010100010101000801010019010000100100000f010100b30101120601
01110112060101111501010002010100380101000f0101002401010003010000460103000601020
00301030025010100380101000c0101001801010021010100b301011206010111
0112060101111501010002010100020103000401030002010200000102000101000000010100000
10100030103000201010000010200020106000201040002010600020103000501
0300020101000001020007010200050102000001020001010000000101000001010001010000000
10100000101000201040002010100000103000101030000010200030100000c01
0100050100000001010005010100080100000001010000010100030103000201010000010200020
10600020103000501030002010100000102000301030000010000080103000401
0100090101000001000001010100000101000201010003010300030105000101010001010200020
10300040101000201010000010100000100000101010003010000ab0101120601
0111011206010111150101000201010001010100010101000201010001010100020101000101010
00101010000010100000101000101010001010100020101000101010003010100
0401010002010100030101000701010004010100010101000201010001010100070103000401010
00101010001010100000101000001010000010100000101000001010000010100
0201010002010200010101000101010002010000030102000b01010005010000000101000501010
00801010000010100000101000101010001010100020101000101010003010100
0701010004010100010101000201010001010100010101000201010007010100010101000201040
00701020000010700000103000101010001010100030101000301000000010200
0101010003010100030100000001010000010100010102000001030002010200aa0101120601011
10112060101111501010002010100000101000301010000010100020101000201
0100010101000101010000010100000101000001010002010100020101000101010003010100040
10100020101000301010007010100030101000301010001010100010101000801
0300030101000101010001010100000101000001010000010100000101000001010000010100020
1010002010100020101000101010002010000040100000c010100040100000101
0100050101000801010000010100000101000001010002010100020101000101010003010100070
10100030101000301010001010100010101000101010003010000060101000301
0100020101000b01000000010000030100000001000000010000000101000501010003010100050
10200010101000201010006010300040100000001000006010000ab0101120601
0111011206010111150101000201010000010100030101000001010007010100010101000101010
00001010000010100000106000201010001010100030101000701030003010100
07010100030101000301010001010100010101000a0102000201010001010100010101000001010
00001010000010100000101000001010003010300020101000701010000010000
1301010004010000010101000501010008010100000101000001010000010600020101000101010
00301010007010100030101000301010001010100010101000201020009010100
0301010002010100090101000001010003010000000101000101010002010300040101000501010
007010100070102000201010000010100b3010112060101110112060101111501
0100020101000001010003010100000101000701010001010100010101000001010000010100000
10100070101000101010003010100050101000101010003010100070101000301
0100030101000101010001010100060100000301010002010100010101000101010000010100000
10100000101000001010000010100010101000101010002010100070101000001
0000130101000301000002010100050101000801010000010100000101000001010007010100010
10100030101000701010003010100030101000101010001010100040102000701
0100030101000201010008010100020101000101010000010100000101000101010001010100030
101000601010007010100060102000201010002010100b2010112060101110112
0601011115010100020101000001010003010100000101000301000002010100010101000101010
00001010000010100000101000701010001010100030101000401010002010100
0301010007010100030101000301010001010100010101000601010003010000020101000101010
00101010000010100000101000001010000010100000101000001010002010100
0201010008010100140101000301070003010100080101000001010000010100000101000701010
00101010003010100070101000301010003010100010101000101010001010000
0301010006010100030101000201010008010100020101000101010000010000010101000001010
00201010003010100050101000701010006010100000101000101010002010100
b201011206010111011206010111150101000101010002010100010101000201010001010100020
10100000102000101010000010100000101000101010002010000020101000101
0100030101000101000001010100010102000301010001010000040101000401010001010100020
10100010101000601020001010100020101000001020001010100000101000001
010000010100000101000001010000010100010102000201010008010100060100000c010100070
10100050101000801010000010100000101000101010002010000020101000101
0100030101000101000004010100040101000101010002010100010101000101010002010100070
10100010101000301010011010000010100000101000001010100010102000001
000001010100010100000201010007010100010100000301000001010100000100000c010000ab0
10112060101110112060101111401050004010300040103000401020000010100
0001010000010100000101000201030002010200000103000301020003010200010101000301020
00301050003010300020102000001030005010000000103000401020000010100
0001010000010100000101000001010000010100000101000101020001010100000104000601000
0060102000a010400050101000401040006010100000101000001010002010300
0201020000010300030102000301050003010300020102000001030000010000000103000901030
00301030010010000040100000201020001010100030102000301010008010200
02010100030101000c010200aa01011206010111011206010111c7010000070100000a010500040
1030002010500790100003a010000ab01011206010111011206010111c4010000
00010000ff018f01011206010111011206010111c4010200ff018f0101120601011101120601011
1ff01ff015701011206010111011206010111ff01ff0157010112060101110112
06010111ff01ff015701011206010111011206010111ff01ff01570101120601011101120601011
1ff01ff015701011206010111011206010111ff01ff0157010112060101110112
06010111ff01ff015701011206010111011206010111ff01ff01570101120601011101120601011
1ff01ff015701011206010111011206010111ff01ff0157010112060101110112
0601011125010b0008010100040103000501020041010000ff01c50101120601011101120601011
125010b0007010200030100000201010003010100000101003701000006010200
ff01c40101120601011101120601011125010100000100000001000000010000000102000601030
00701010002010100010101003701000007010000ff01c5010112060101110112
0601011125010200000100000001000000010000000101000801010007010100020101000201000
036010100ff01ce01011206010111011206010111250101000001000000010000
0001000000010200070101000701010003010100010101000901020003010100000101000401030
00201010001010200030103000301050002010300060102000201010001010100
04010300ff01a901011206010111011206010111250102000001000000010000000100000001010
00701010005010200030101000201010007010100010101000101000000010100
0001010001010200010101000001000000010200010101000101010001010100030101000701010
004010100010101000001000000010000000103000101020001010100ff01a801
0112060101110112060101112501010000010000000100000001000000010200070101000601010
00301010002010100070101000101010003010100000101000101010002010100
0201020001010100050101000301010006010100050101000101010002010200000101000101010
002010000ff01a901011206010111011206010111250102000001000000010000
0001000000010100070101000701010002010100020101000601010002010100030100000101010
00001010002010100030101000701030004010100060101000401010002010100
020101000101010002010100ff01ac0101120601011101120601011125010100000100000001000
00001000000010200060101000801010002010100010101000701010002010100
0201010001010100000104000501010005010100010101000301010007010100040101000201010
0010101000201000004010200ff01aa0101120601011101120601011125010200
0001000000010000000100000001010006010100080101000201000002010100070101000101010
00301010000010100010101000701010005010100020101000301010006010100
050101000101010002010100010101000201000002010100ff01a90101120601011101120601011
125010b0006010100080101000201010001010100070101000101010003010100
0001010002010100020100000201010005010100010102000001000001010100010100000301010
001010000020101000101010002010100010101000001020001010200ff01a901
01120601011101120601011125010b0005010200030100000201010003010100000101000901020
00401040004010300030101000601020001010100030102000501020004010200
030101000301010001010300ff01ab0101120601011101120601011136010400030103000501020
012010100ff01f5010112060101110112060101115f010100ff01f50101120601
01110112060101115e010300ff01f401011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff01570101120601011101120601011125010b0006010300
4a010000ff01ce0101120601011101120601011125010b0005010000020101001c0100002a01020
0ff01cd0101120601011101120601011125010100000100000001000000010000
00010200090101001c0100002b010000ff01ce01011206010111011206010111250102000001000
0000100000001000000010100090101001b010100ff01fb010112060101110112
0601011125010100000100000001000000010000000102000801010009010300040103000301050
00301030005010200000100000301020002010100010102000201030005010300
04010300ff01bb01011206010111011206010111250102000001000000010000000100000001010
00601020008010200010101000201010001010100030101000401020001010100
0301010000010200010101000101010000010000000102000101010003010100030102000101010
00101020001010100ff01ba010112060101110112060101112501010000010000
0001000000010000000102000701010008010100020100000701010003010100040101000201010
00201010002010000020101000101010002010200010101000201010004010100
020101000101010002010000ff01bb0101120601011101120601011125010200000100000001000
00001000000010100080101000601010009010300040101000301010002010100
030101000101010001010100020101000201010007010100030101000201010003010100ff01be0
10112060101110112060101112501010000010000000100000001000000010200
0801010006010100070101000101010003010100040104000501040002010100020101000201010
0070101000301040006010200ff01bc0101120601011101120601011125010200
0001000000010000000100000001010008010100060101000601010002010100030101000401010
00701010006010100010101000201010007010100040101000701000002010100
ff01bb0101120601011101120601011125010b00080101000701010002010000010101000101020
00001000001010100010100000201010002010000020104000301010001010100
02010100070101000101000002010100020100000101010001010200ff01bb01011206010111011
20601011125010b00030100000201010009010300030102000101010003010200
04010300040104000301020004010100080102000401030003010300ff01bd01011206010111011
206010111360103002d01000003010000ff01e801011206010111011206010111
6701010002010100ff01e80101120601011101120601011168010400ff01e901011206010111011
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
206010111ff01ff01570101120601011101120601011138010100030101000c01
0000100101000d010200000101000d010000ae010300000101002d010100030101000c010000100
101000d010200000101000d010000a20101120601011101120601011138010100
030101000b0101000f0103000b0106000c010100ad0107002d010100030101000b0101000f01030
00b0106000c010100a20101120601011101120601011138010200010102000b01
0100100101000c010200000102000c010100ad010200010102002d010200010102000b010100100
101000c010200000102000c010100a20101120601011101120601011138010200
010102000a0102001f010200010101000b010200ad010200020101002d010200010102000a01020
01f010200010101000b010200a201011206010111011206010111380107000101
0400020106000101020001010100020104000201030000010200000102000101010002010400020
10600030103000301040000010000020103000201020001010100010103000001
02007c0103000101010002010200000101000001020000010300010104000201020001010100030
10300020107000101040002010600010102000101010002010400020103000001
0200000102000101010002010400020106000301030003010400000100000201030002010200010
10100010103000001020071010112060101110112060101113801070000010600
0101060001010700010104000201020001010200000102000501060001010600020105000101070
0010105000101070000010300000102007d010300040106000001020000010300
0001060001010700010105000101070000010600010106000101070001010400020102000101020
00001020005010600010106000201050001010700010105000101070000010300
0001020071010112060101110112060101113801070000010100010102000201020005010600030
10200030102000001010001010200050101000101020002010200040102000101
0200000102000001030000010200010102000101060000010200010102007e01030002010200010
10200000102000101020000010100010102000201060000010200010102000001
0700000101000101020002010200050106000301020003010200000101000101020005010100010
10200020102000401020001010200000102000001030000010200010102000101
0600000102000101020071010112060101110112060101113801010000010100000101000301030
00201020005010300000101000301020004010300020102000801030002010200
0401020001010200000102000001020001010200010102000101030000010100010102000001010
08001030001010200010102000001020001010200030103000201030000010100
0001020001010200000101000001010000010100030103000201020005010300000101000301020
00401030002010200080103000201020004010200010102000001020000010200
0101020001010200010103000001010001010200000101007201011206010111011206010111380
10100000101000001010001010500020102000501020007010200040103000201
02000601050002010200040107000001020000010200010102000101020001010200050105007d0
10100010103000001020001010200000102000101020001010500020102000401
0700000101000001010000010100010105000201020005010200070102000401030002010200060
10500020102000401070000010200000102000101020001010200010102000501
0500720101120601011101120601011138010100000101000001010000010200000102000201020
00501020007010200040103000201020001010100010102000001020002010200
0401020006010400020102000101020001010200060103007e01010002010200000102000101020
00001020001010200000102000001020002010200040102000501010000010100
0001010000010200000102000201020005010200070102000401030002010200010101000101020
00001020002010200040102000601040002010200010102000101020006010300
7301011206010111011206010111380101000301010000010200000102000201020000010100020
10200070102000301010000010200010102000101010001010200000102000201
020000010100010103000101010000010300040102000101020001010200060103007e010200010
10200000103000001020000010200000103000001020000010200020102000401
0300010101000001010003010100000102000001020002010200000101000201020007010200030
10100000102000101020001010100010102000001020002010200000101000101
0300010101000001030004010200010102000101020006010300730101120601011101120601011
13801020001010200000107000101050001010400040106000001020001010200
00010600010107000101050002010600000106000201050001010400060101007f0107000101060
00001070000010700000104000401060000010200010102000001070001010500
0101040004010600000102000101020000010600010107000101050002010600000106000201050
00101040006010100740101120601011101120601011138010200010102000101
0200000102000201030002010400040106000001020000010300010104000301020000010200020
1030004010400020106000201030002010400050102007f010100000103000301
0500010103000001010001010200000102000001040005010400010102000101020001010200000
10200020103000201040004010600000102000001030001010400030102000001
0200020103000401040002010600020103000201040005010200740101120601011101120601011
19201020001010200130102008e0102007e010200010102001301020075010112
0601011101120601011192010700120103008e0102007e010700120103007501011206010111011
20601011193010500130102008e0103007f010500130102007601011206010111
011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
10111ff01ff015701011206010111011206010111ff01ff015701011206010111
011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
10111ff01ff015701011206010111011206010111ff01ff015701011206010111
011206010111ff01ff0157010112060101110112060101113701070016010000290104001401010
0030101000c010000100101000d010200000101000d010000ff016f0101120601
011101120601011137010800140101002901040014010100030101000b0101000f0103000b01060
00c010100ff016f01011206010111011206010111380102000101020014010100
2b01020014010200010102000b010100100101000c010200000102000c010100ff016f010112060
101110112060101113801020001010200130102002b0102001401020001010200
0a0102001f010200010101000b010200ff016f01011206010111011206010111380102000001020
00301030004010200000101000001060002010400010103000001020002010400
0001000000010200000103000301020003010400020102000101010001010700010104000201060
00101020001010100020104000201030000010200000102000101010002010400
020106000301030003010400000100000201030002010200010101000101030000010200ff013e0
10112060101110112060101113801050003010500020106000001060001010600
0001080000010700000102000001030003010200020106000101070000010700000106000101060
00101070001010400020102000101020000010200050106000101060002010500
0101070001010500010107000001030000010200ff013e010112060101110112060101113801050
00201020001010200000103000001020001010200040101000101020001010300
0001020000010200000103000001020001010200030102000201010001010200020106000001070
00001010001010200020102000501060003010200030102000001010001010200
0501010001010200020102000401020001010200000102000001030000010200010102000101060
00001020001010200ff013e010112060101110112060101113801020000010200
0101020001010200000102000201010001010200070103000101020001010200000102000001020
00101020001010200030102000501030002010300000101000001010000010100
0001010003010300020102000501030000010100030102000401030002010200080103000201020
00401020001010200000102000001020001010200010102000101030000010100
0101020000010100ff013f010112060101110112060101113801020000010200010107000001020
00601020005010500010102000101020000010200000102000101020001010200
0301020003010500020102000401010000010100000101000101050002010200050102000701020
00401030002010200060105000201020004010700000102000001020001010200
010102000101020005010500ff013f0101120601011101120601011138010200000102000101020
00501020006010200040102000001020001010200010102000101040002010200
0101020003010200020102000001020002010200040101000001010000010100000102000001020
00201020005010200070102000401030002010200010101000101020000010200
02010200040102000601040002010200010102000101020006010300ff014001011206010111011
20601011138010200010102000001030001010100000103000101010001010200
0001010001010200000102000101020001010200000103000401020000010300030102000201020
00001020002010200040101000301010000010200000102000201020000010100
0201020007010200030101000001020001010200010101000101020000010200020102000001010
001010300010101000001030004010200010102000101020006010300ff014001
011206010111011206010111370103000101020001010600010106000101050001010b000001030
00001060001010700010106000001070000010400030102000101020000010700
0101050001010400040106000001020001010200000106000101070001010500020106000001060
0020105000101040006010100ff01410101120601011101120601011137010300
0101020002010400030104000301030003010200000106000001030001010600010103000001010
00101060001010200000102000001040003010200010102000101020000010200
0201030002010400040106000001020000010300010104000301020000010200020103000401040
002010600020103000201040005010200ff014101011206010111011206010111
6e010200010102007e0102000101020013010200ff0142010112060101110112060101116e01070
07e01070012010300ff0142010112060101110112060101116f01050080010500
13010200ff014301011206010111011206010111ff01ff015701011206010111011206010111ff0
1ff015701011206010111011206010111ff01ff01570101120601011101120601
0111ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff0
1ff015701011206010111011206010111ff01ff01570101120601011101120601
0111ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff0
1ff01570101120601011101120601011125010b00060103000c0102001f010000
ff01e90101120601011101120601011125010b0005010000020101000c0101001e010200ff01e80
10112060101110112060101112501010000010000000100000001000000010200
0a0101000b0101001f010000ff01e90101120601011101120601011125010200000100000001000
000010000000101000a0101000a010100ff01ff010b0101120601011101120601
011125010100000100000001000000010000000102000a010100070101000001010004010200020
10100020101000301030003010300030101000101010004010300ff01d6010112
0601011101120601011125010200000100000001000000010000000101000901020006010000010
10200020101000101010000010300000103000101010001010100040101000201
000000010000000103000101020001010100ff01d50101120601011101120601011125010100000
10000000100000001000000010200080102000601010001010100030101000101
0100010100000001000000010000000101000501010003010100050102000001010001010100020
10000ff01d6010112060101110112060101112501020000010000000100000001
0000000101000701020007010100010101000201010002010100010100000001010001010100020
1030004010100050101000101010002010100ff01d90101120601011101120601
0111250101000001000000010000000100000001020006010100080101000201010002010100020
10100000101000001010000010100010101000101010004010100040101000201
000004010200ff01d70101120601011101120601011125010200000100000001000000010000000
10100050100000a01010001010100030101000101010001010100000100000101
010000010100020101000301010005010100010101000201000002010100ff01d60101120601011
101120601011125010b0004010000040100000501010000010200000100000101
0100010101000101000001010000010100000101010001010200000100000101010001010000020
10100010101000001020001010200ff01d6010112060101110112060101112501
0b00030107000601020000010100030102000301000004010000020102000101010003010200020
101000301010001010300ff01d801011206010111011206010111350106001f01
0000ff01f901011206010111011206010111ff01ff015701011206010111011206010111ff01ff0
15701011206010111011206010111ff01ff015701011206010111011206010111
ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff0
15701011206010111011206010111ff01ff015701011206010111011206010111
ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff0
15701011206010111011206010111ff01ff015701011206010111011206010111
38010400060101000d010300000101002d010100030101000c010000100101007f0101000301010
00c01000010010100fb0101120601011101120601011138010400050103000b01
07002d010100030101000b0101000f0103007e010100030101000b0101000f010300fa010112060
1011101120601011139010200070101000c010200010102002d01020001010200
0b010100100101007f010200010102000b01010010010100fb01011206010111011206010111390
1020016010200020101002d010200010102000a01020092010200010102000a01
0200ff010e010112060101110112060101113901020005010400040103000201030001010100020
10200000101000001020000010300010104000201020001010100030103000201
0700010104000201060001010200010101000201040002010300000102007301070001010400020
106000101020001010100020104000201030000010200ef010112060101110112
0601011139010200050104000301050002010300040106000001020000010300000106000101070
00101050001010700000106000101060001010700010104000201020001010200
73010700000106000101060001010700010104000201020001010200ef010112060101110112060
10111390102000701020002010200010102000201030002010200010102000001
0200010102000001010001010200020106000001020001010200000107000001010001010200020
10200050106000301020003010200000101007401070000010100010102000201
020005010600030102000301020000010100f001011206010111011206010111390102000701020
00201020001010200030103000101020001010200000102000101020003010300
0201030000010100000102000101020000010100000101000001010003010300020102000501030
00001010003010200040103007501010000010100000101000301030002010200
05010300000101000301020004010300f1010112060101110112060101113901020007010200020
10700000101000101030000010200010102000001020001010200010105000201
0200040107000001010000010100000101000101050002010200050102000701020004010300750
1010000010100000101000101050002010200050102000701020004010300f101
0112060101110112060101113901020001010100030102000201020005010100020102000001020
00101020000010200010102000001020000010200020102000401020005010100
0001010000010100000102000001020002010200050102000701020004010300750101000001010
000010100000102000001020002010200050102000701020004010300f1010112
0601011101120601011139010200000102000301020002010300010101000001020001010200000
10300000102000001020000010300000102000001020002010200040103000101
0100000101000301010000010200000102000201020000010100020102000701020003010100000
10200740101000301010000010200000102000201020000010100020102000701
02000301010000010200f0010112060101110112060101113801070001010600010106000001070
00101060000010700000107000001040004010600000102000101020000010700
0101050001010400040106000001020001010200730102000101020000010700010105000101040
0040106000001020001010200ef01011206010111011206010111380107000101
0600020104000101010000010300030105000101030000010100010102000001020000010400050
10400010102000101020001010200000102000201030002010400040106000001
0200000103007301020001010200010102000001020002010300020104000401060000010200000
10300ef0101120601011101120601011161010200ff01f2010112060101110112
0601011161010200ff01f20101120601011101120601011160010300ff01f201011206010111011
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
206010111ff01ff0157010112060101110112060101113d010000ff01ff011801
01120601011101120601011125010b000901010021010200ff01f40101120601011101120601011
125010b000801010023010100ff01f40101120601011101120601011125010100
000100000001000000010000000102000701010024010100ff01f40101120601011101120601011
12501020000010000000100000001000000010100060101002501010000010200
ff01f00101120601011101120601011125010100000100000001000000010000000102000601010
00a01010000010100040103000401030002010100020100000401030005010200
000100000201030004010300ff01cd0101120601011101120601011125010200000100000001000
00001000000010100050101000001010007010000000101000001010002010100
0101010001010200010101000101010001010000040101000101010003010100000102000001020
0010101000101020001010100ff01cc0101120601011101120601011125010100
0001000000010000000100000001020005010200000101000801010000010100060101000101010
00201000002010300090101000201010002010000010101000201010001010100
02010000ff01cd01011206010111011206010111250102000001000000010000000100000001010
00501010001010100080100000101010003010300010101000701030006010300
0301010001010100000101000201010003010100ff01d0010112060101110112060101112501010
00001000000010000000100000001020004010100020101000701010001010100
0101010001010100010101000701000001010000040101000101010003010400010104000601020
0ff01ce0101120601011101120601011125010200000100000001000000010000
0001010004010100010101000801010000010100010101000201010001010100060101000101010
0020101000201010002010100050101000701000002010100ff01cd0101120601
011101120601011125010b000401010001010100080101000001010001010100010102000001000
00001010002010000010101000101010000010000000101000101020000010000
0001040003010100020100000101010001010200ff01cd0101120601011101120601011125010b0
00401010000010100080104000301020001010100020103000201010002010100
0201020001010100020104000301030003010300ff01cf010112060101110112060101113701020
0090101002a01000003010000ff01df0101120601011101120601011144010100
2901010002010100ff01df010112060101110112060101114301030029010400ff01e0010112060
10111011206010111ff01ff015701011206010111011206010111ff01ff015701
011206010111011206010111ff01ff015701011206010111011206010111ff01ff0157010112060
10111011206010111ff01ff015701011206010111011206010111ff01ff015701
011206010111011206010111ff01ff015701011206010111011206010111ff01ff0157010112060
10111011206010111ff01ff015701011206010111011206010111390102000001
0100000103002c010000190101000f010000070101000c0106000b010400290101000d010400020
1060012010300ff01280101120601011101120601011138010600000103002b01
0100180103000d010100060103000b0107000a010400280103000c0104000201070011010300ff0
128010112060101110112060101113801020000010200010102002b0101001901
01000e010100070101000d010200000102000c010200290101000f0102000301020000010200120
10200ff0128010112060101110112060101113801020001010100010102002a01
02002901020017010200000102000c0102003b010200030102000001020012010200ff012801011
20601011101120601011138010200010101000101060002010400020102000101
0100020104000401020000010100000106000301030002010200010101000201040003010300000
10000010106000201040004010200000101000101020000010200020103000501
0200020103000001060000010200030103000201000000010100000101000201040003010400050
10200030102000001020001010400040102000001010000010200010102000101
0400030104000001000002010300ff010a010112060101110112060101113801020005010700000
10600010107000001060002010600000106000201050001010700010104000201
0600010106000201040003010600010102000001020001010500040102000201030000010b00010
10500010107000101040002010600040102000301020000010200000106000201
06000001020001010200000106000101070001010500ff010901011206010111011206010111380
10200050103000001020000010100010102000201060000010100010102000101
0300000102000101020004010200010102000101060003010200020102000001020002010200070
10200020103000001020001010600000102000101020003010200020102000101
0200000103000001020000010200010102000001070003010200020101000101020004010200030
10600000101000101020001010300000102000001020000010200010101000101
020001010200000103000001020001010200ff01080101120601011101120601011138010200050
10200010102000301030002010300000101000301030001010200020101000101
0200040102000101020001010300000101000301020002010300010100000201020007010200020
10200020101000101050001010200010102000301020003010200000101000101
0200010102000001020001010200000101000001010000010100030102000501030004010200030
10500040103000101020002010100000105000501030001010200000102000101
020001010200ff01080101120601011101120601011138010200050102000101020001010500020
10200050105000101020006010200040107000101020007010200030104000301
0200070102000201020006010200040102000101020003010200030105000101020001010200000
10200010102000001010000010100000101000301020003010500040102000301
020005010500010102000501040004010500010102000001020001010700ff01080101120601011
10112060101113801020001010100010102000101020000010200000102000201
0200040102000001020001010200060102000401020006010200070102000201000001010300020
10200070102000201020006010200040102000101020003010200040103000201
0200010102000001020001010200000101000001010000010100030102000201020000010200040
10200030102000401020000010200010102000501020000010100020102000001
02000201040002010200ff010d01011206010111011206010111380102000101010001010200010
10200000102000001020002010200040102000001020001010300010101000101
0200000101000101030001010100010102000701020002010200000102000201020000010100040
10200020103000101010001010200040102000101020003010200040103000201
0200010102000001020001010200000101000001010000010100030102000201020000010200040
10200030102000401020000010200010103000101010000010200000102000101
020000010200010103000401030001010100ff01080101120601011101120601011138010600000
10300000103000001070000010400030107000101060001010500020106000001
0400040106000001060002010500020106000101060000010400040105000201060003010100020
10300000103000101050001010100000101000001010001010600000107000101
06000001040003010700010106000001020001010200000107000001060002010600ff010801011
20601011101120601011139010400010103000001030001010200000102000001
0400040102000001020002010400030103000401040001010400040106000001000000010300040
10300030106000201040001010400050103000301060002010200020103000001
0300020103000201010000010100000101000101060001010200000102000101060000010400040
10200000102000201040001010200010102000101020000010200010106000201
0400ff010901011206010111011206010111d20102006701020001010200ff01110101120601011
1011206010111d101030067010700ff011101011206010111011206010111d101
020069010500ff011201011206010111011206010111ff01ff01570101120601011101120601011
1ff01ff015701011206010111011206010111ff01ff0157010112060101110112
06010111ff01ff015701011206010111011206010111ff01ff01570101120601011101120601011
1ff01ff015701011206010111011206010111ff01ff0157010112060101110112
06010111ff01ff015701011206010111011206010111ff01ff01570101120601011101120601011
1380104000601010028010300000101001501000016010100030101000c010000
100101000c01060012010300ff015e0101120601011101120601011138010400050103002601070
01401010016010100030101000b0101000f0103000b01070011010300ff015e01
0112060101110112060101113901020007010100270102000101020014010100160102000101020
00b010100100101000d0102000001020012010200ff015e010112060101110112
060101113901020031010200020101001301020016010200010102000a010200200102000001020
012010200ff015e01011206010111011206010111390102000501040001010300
0001020003010300030104000201020001010100010103000101010000010300000102000101030
00001000001010600030103000201000000010100000101000101070001010400
0201060001010200010101000201040002010300000102000101020000010200010104000401020
000010100000102000101020001010400030104000001000002010300ff014001
0112060101110112060101113901020005010400010108000101050001010600010107000101030
00301030000010200000106000101060002010500010107000001070000010600
0101060001010700010104000201020001010200010102000001020000010600020106000001020
001010200000106000101070001010500ff013f01011206010111011206010111
3901020007010200020103000001020000010200010102000001010001010200020106000201030
00201020001010200000102000001020002010200040102000101020000010700
0001070000010100010102000201020005010600030102000301020000010100020106000001010
00101020001010300000102000001020000010200010101000101020001010200
000103000001020001010200ff013e0101120601011101120601011139010200070102000201020
00101020000010200010102000301030002010300000101000301030002010200
0001010001010300010100000201020004010200010102000001010000010100000101000001010
00001010000010100030103000201020005010300000101000301020004010300
0301050004010300010102000201010000010500050103000101020000010200010102000101020
0ff013e0101120601011101120601011139010200070102000201020001010200
0001070001010500020102000401010001010300010105000201040003010200040107000001010
00001010000010100000101000001010000010100010105000201020005010200
0701020004010300030102000501050001010200050104000401050001010200000102000101070
0ff013e0101120601011101120601011139010200010101000301020002010200
0101020000010200050102000001020002010200040101000201020002010300020100000101030
00201020004010200050101000001010000010100000101000001010000010100
0001020000010200020102000501020007010200040103000301020004010200000102000101020
0050102000001010002010200000102000201040002010200ff01430101120601
0111011206010111390102000001020003010200020102000101020000010300010101000001020
00001020002010200040102000101020002010300020102000001020002010200
0001010001010300010101000001010000010100000101000001010003010100000102000001020
00201020000010100020102000701020003010100000102000201020004010200
0001020001010300010101000001020000010200010102000001020001010300040103000101010
0ff013e010112060101110112060101113801070001010a000001030001010600
0001070000010400030107000301010003010600020105000201060000010100000101000001010
00001020001010200000107000101050001010400040106000001020001010200
0001040003010700010106000001020001010200000107000001060002010600ff013e010112060
101110112060101113801070001010a0000010300020104000201020000010200
0001040003010100000103000301020003010000000103000401030004010400010101000001010
00001010000010200010102000101020000010200020103000201040004010600
0001020000010300000104000401020000010200020104000101020001010200010102000001020
00101060002010400ff013f01011206010111011206010111780102008b010200
01010200ff014701011206010111011206010111770103008b010700ff014701011206010111011
206010111770102008d010500ff014801011206010111011206010111ff01ff01
5701011206010111011206010111ff01ff015701011206010111011206010111ff01ff015701011
206010111011206010111ff01ff015701011206010111011206010111ff01ff01
5701011206010111011206010111ff01ff015701011206010111011206010111ff01ff015701011
206010111011206010111ff01ff015701011206010111011206010111ff01ff01
570101120601011101120601011138010100030101000c010000100101000d010200000101000d0
10000310107001e010000070101001f010400ff01490101120601011101120601
011138010100030101000b0101000f0103000b0106000c010100310107001d010100060103001d0
10600ff01480101120601011101120601011138010200010102000b0101001001
01000c010200000102000c01010032010200000102001d010100070101001e01010001010300ff0
1470101120601011101120601011138010200010102000a0102001f0102000101
01000b01020032010200010101001c0102002801010002010200ff0147010112060101110112060
10111380107000101040002010600010102000101010002010400020103000001
0200000102000101010002010400020106000301030003010400000100000201030002010200010
10100010103000001020001010200040102000001070000010200030102000001
01000001060002010400040103000101030000010200020103000001000006010200ff014701011
20601011101120601011138010700000106000101060001010700010104000201
0200010102000001020005010600010106000201050001010700010105000101070000010300000
10200010104000201020000010c00010106000001060002010400030105000001
08000001060006010100ff014801011206010111011206010111380107000001010001010200020
10200050106000301020003010200000101000101020005010100010102000201
0200040102000101020000010200000103000001020001010200010106000001020001010200010
10400020102000101020000010300000102000001030000010200010102000701
020002010200010102000001030000010200000102000001020005010100ff01490101120601011
10112060101113801010000010100000101000301030002010200050103000001
0100030102000401030002010200080103000201020004010200010102000001020000010200010
10200010102000101030000010100010102000001010002010200040102000101
0200000102000101020000010200020101000101020007010200020102000101020000010200010
10200000103000101000004010100ff014a010112060101110112060101113801
0100000101000001010001010500020102000501020007010200040103000201020006010500020
10200040107000001020000010200010102000101020001010200050105000201
0200040102000101020000010200010102000001020006010200070102000201020001010200000
10200010102000101040004010100ff014b010112060101110112060101113801
0100000101000001010000010200000102000201020005010200070102000401030002010200010
10100010102000001020002010200040102000601040002010200010102000101
0200060103000301020004010200010102000001020001010200000102000601020007010200020
10200010102000001020001010200000100000101030002010100ff014c010112
0601011101120601011138010100030101000001020000010200020102000001010002010200070
10200030101000001020001010200010101000101020000010200020102000001
0100010103000101010000010300040102000101020001010200060103000301020004010200000
10300000102000101020000010300010101000101020000010100040102000201
020001010200000102000101020000010200000102000101020003010000ff01470101120601011
10112060101113801020001010200000107000101050001010400040106000001
0200010102000001060001010700010105000201060000010600020105000101040006010100030
1040003010b000001030001010600010105000201060001010500000103000001
0300000106000101020002010100ff0147010112060101110112060101113801020001010200010
10200000102000201030002010400040106000001020000010300010104000301
0200000102000201030004010400020106000201030002010400050102000301040004010300000
10500000103000201040003010300030106000201030001010300000103000001
00000001030002010700ff014701011206010111011206010111920102000101020013010200550
10700ff0147010112060101110112060101119201070012010300ff01a5010112
060101110112060101119301050013010200ff01a601011206010111011206010111ff01ff01570
1011206010111011206010111ff01ff015701011206010111011206010111ff01
ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
1011206010111011206010111ff01ff015701011206010111011206010111ff01
ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
101120601011101120601011138010100030101000c010000100101000d010200
000101002e0106002801010018010000ff016601011206010111011206010111380101000301010
00b0101000f0103000b0106002e0107002601030016010100ff01660101120601
011101120601011138010200010102000b010100100101000c010200000102002f0102000001020
02701010017010100ff0166010112060101110112060101113801020001010200
0a0102001f010200010101002f0102000001020040010200ff01660101120601011101120601011
13801070001010400020106000101020001010100020104000201030000010200
0001020001010100030103000201000000010100000101000101000000010100000101000301030
00101030000010200020102000001020002010300010103000001020003010300
0201000000010100000101000201040001010300000102000201040002010600030103000201020
001010100ff015101011206010111011206010111380107000001060001010600
0101070001010400020102000101020000010200060105000101070000010700010105000001080
00101020000010200010105000001080001010500010107000101040001010800
00010600010106000201050001010700ff015001011206010111011206010111380107000001010
00101020002010200050106000301020003010200000101000101020005010200
0101020000010700000107000001020001010200000103000001020001010200000102000001020
00101020000010300000102000001020001010200000107000301020002010300
00010200000101000101020002010200040102000101020001010600ff015001011206010111011
20601011138010100000101000001010003010300020102000501030000010100
0301020004010300020102000501020001010200000101000001010000010100000101000001010
00001010000010200010102000001020001010200010102000001020000010200
0101020000010200010102000001020001010200000101000001010000010100030102000201020
001010200030103000201020004010200010102000101030000010100ff015001
0112060101110112060101113801010000010100000101000101050002010200050102000701020
00401030002010200050102000101020000010100000101000001010000010100
0001010000010100000102000101020000010200010102000101020000010200000107000001020
00101020000010200010102000001010000010100000101000301020002010200
010102000101050002010200040102000101020001010200ff01540101120601011101120601011
13801010000010100000101000001020000010200020102000501020007010200
0401030002010200010101000101020001010200000101000001010000010100000101000001010
00001010000010200010102000001020001010200010102000001020000010200
0501020001010200000102000101020000010100000101000001010003010200020102000101020
0000102000001020002010200040102000101020001010200ff01540101120601
0111011206010111380101000301010000010200000102000201020000010100020102000701020
00301010000010200010102000101010001010200010102000001010000010100
0001010000010100000101000001010000010200010102000001020001010200010102000001020
00001030001010100000102000101020000010200010102000001010000010100
0001010003010200020102000101020000010200000102000201020000010100010102000101020
001010200ff015401011206010111011206010111380102000101020000010700
0101050001010400040106000001020001010200000106000201050001010100000101000001010
00001010000010100000101000101050000010300000103000001070001010a00
000103000101050001010100000101000001010001010a000001030000010700010105000201050
001010400ff015301011206010111011206010111380102000101020001010200
0001020002010300020104000401060000010200000103000101040004010300020101000001010
00001010000010100000101000001010002010300010103000001030000010600
0301040000010300000103000201030002010100000101000001010001010a00000103000101020
000010200020103000401030002010400ff015301011206010111011206010111
ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff0
15701011206010111011206010111ff01ff015701011206010111011206010111
ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff0
15701011206010111011206010111ff01ff015701011206010111011206010111
ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff0
15701011206010111011206010111ff01ff015701011206010111011206010111
38010100030101000c010000100101000c010400060101002801030004010400130103001701070
01e01000007010100ff0141010112060101110112060101113801010003010100
0b0101000f0103000b01040005010300270103000401040013010300170107001d0101000601030
0ff01400101120601011101120601011138010200010102000b01010010010100
0d0102000701010029010200060102001401020018010200000102001d01010007010100ff01410
101120601011101120601011138010200010102000a0102002001020032010400
050102001401020018010200010101001c010200ff014b010112060101110112060101113801070
00101040002010600010102000101010002010400020103000001020001010200
0501040001010300000102000301030003010400020102000101010002010400050102000301040
00001000002010300020105000201020001010100020104000301020004010200
0001070000010200030102000001010000010600020104000401030001010300000102000201030
000010000ff012401011206010111011206010111380107000001060001010600
0101070001010400020102000101020001010200050104000101080001010500010106000101070
00101010000010100050102000201070001010500010106000101070000010600
020104000201020000010c00010106000001060002010400030105000001080000010600ff01240
10112060101110112060101113801070000010100010102000201020005010600
0301020003010200000101000201020007010200020103000001020000010200010102000001010
00101020002010600010101000001020004010200020102000001030000010200
0101020000010300000102000101060000010100010102000201040002010200010102000001030
00001020000010300000102000101020007010200020102000101020000010300
000102000001020000010200ff01240101120601011101120601011138010100000101000001010
00301030002010200050103000001010003010200040103000301020007010200
0201020001010200000102000101020003010300020103000001010001010100010101000401020
00201020000010200010102000101020000010200010102000101030000010100
0301030002010200040102000101020000010200010102000001020002010100010102000701020
0020102000101020000010200010102000001030001010000ff01240101120601
0111011206010111380101000001010000010100010105000201020005010200070102000401030
00301020007010200020102000101020000010700010105000201020004010600
0401020002010200000102000101070000010200010102000101020005010500020102000401020
00101020000010200010102000001020006010200070102000201020001010200
000102000101020001010400ff01250101120601011101120601011138010100000101000001010
00001020000010200020102000501020007010200040103000301020001010100
0301020002010200010102000001020005010200000102000201020004010700030102000301040
00201020005010200010102000101020004010200000102000201020004010200
0101020000010200010102000001020006010200070102000201020001010200000102000101020
00001000001010300ff0124010112060101110112060101113801010003010100
0001020000010200020102000001010002010200070102000301010000010200020102000001020
00301020002010200010102000001030001010100000102000001020002010200
0401010002010200030102000201030004010300010101000001020001010200010102000401020
00001020002010200040102000001030000010200010102000001030001010100
010102000001010004010200020102000101020000010200010102000001020000010200ff01240
10112060101110112060101113801020001010200000107000101050001010400
0401060000010200010102000001070001010a00000103000101060000010700000104000201030
00001030001010600000106000201060000010600010104000301070000010400
03010b000001030001010600010105000201060001010500000103000001030000010600ff01240
10112060101110112060101113801020001010200010102000001020002010300
020104000401060000010200000103000001070001010a000001030002010400020102000001020
00001040002010300000103000101060001010600020104000101010000010200
0201040004010200000102000001040004010300000105000001030002010400030103000301060
00201030001010300000103000001000000010300ff0125010112060101110112
06010111b601020001010200ff019801011206010111011206010111b6010700ff0198010112060
10111011206010111b7010500ff019901011206010111011206010111ff01ff01
5701011206010111011206010111ff01ff015701011206010111011206010111ff01ff015701011
206010111011206010111ff01ff015701011206010111011206010111ff01ff01
5701011206010111011206010111ff01ff015701011206010111011206010111ff01ff015701011
206010111011206010111ff01ff015701011206010111011206010111ff01ff01
570101120601011101120601011137010700160100002901040014010100030101000c010000100
101000d010200000101000d010000310107001e010000070101001f010400e601
01120601011101120601011137010800140101002901040014010100030101000b0101000f01030
00b0106000c010100310107001d010100060103001d010600e501011206010111
0112060101113801020001010200140101002b01020014010200010102000b010100100101000c0
10200000102000c01010032010200000102001d010100070101001e0101000101
0300e4010112060101110112060101113801020001010200130102002b010200140102000101020
00a0102001f010200010101000b01020032010200010101001c01020028010100
02010200e4010112060101110112060101113801020000010200030103000401020000010100000
10600020104000101030000010200020104000001000000010200000103000301
0200030104000201020001010100010107000101040002010600010102000101010002010400020
10300000102000001020001010100020104000201060003010300030104000001
0000020103000201020001010100010103000001020001010200040102000001070000010200030
10200000101000001060002010400040103000101030000010200020103000001
000006010200e401011206010111011206010111380105000301050002010600000106000101060
00001080000010700000102000001030003010200020106000101070000010700
0001060001010600010107000101040002010200010102000001020005010600010106000201050
00101070001010500010107000001030000010200010104000201020000010c00
01010600000106000201040003010500000108000001060006010100e5010112060101110112060
10111380105000201020001010200000103000001020001010200040101000101
0200010103000001020000010200000103000001020001010200030102000201010001010200020
10600000107000001010001010200020102000501060003010200030102000001
0100010102000501010001010200020102000401020001010200000102000001030000010200010
10200010106000001020001010200010104000201020001010200000103000001
0200000103000001020001010200070102000201020001010200000103000001020000010200000
1020005010100e601011206010111011206010111380102000001020001010200
0101020000010200020101000101020007010300010102000101020000010200000102000101020
00101020003010200050103000201030000010100000101000001010000010100
0301030002010200050103000001010003010200040103000201020008010300020102000401020
00101020000010200000102000101020001010200010103000001010001010200
0001010002010200040102000101020000010200010102000001020002010100010102000701020
002010200010102000001020001010200000103000101000004010100e7010112
0601011101120601011138010200000102000101070000010200060102000501050001010200010
10200000102000001020001010200010102000301020003010500020102000401
0100000101000001010001010500020102000501020007010200040103000201020006010500020
10200040107000001020000010200010102000101020001010200050105000201
0200040102000101020000010200010102000001020006010200070102000201020001010200000
10200010102000101040004010100e80101120601011101120601011138010200
0001020001010200050102000601020004010200000102000101020001010200010104000201020
00101020003010200020102000001020002010200040101000001010000010100
0001020000010200020102000501020007010200040103000201020001010100010102000001020
00201020004010200060104000201020001010200010102000601030003010200
0401020001010200000102000101020000010200060102000701020002010200010102000001020
001010200000100000101030002010100e9010112060101110112060101113801
0200010102000001030001010100000103000101010001010200000101000101020000010200010
10200010102000001030004010200000103000301020002010200000102000201
0200040101000301010000010200000102000201020000010100020102000701020003010100000
10200010102000101010001010200000102000201020000010100010103000101
0100000103000401020001010200010102000601030003010200040102000001030000010200010
10200000103000101010001010200000101000401020002010200010102000001
02000101020000010200000102000101020003010000e4010112060101110112060101113701030
00101020001010600010106000101050001010b00000103000001060001010700
0101060000010700000104000301020001010200000107000101050001010400040106000001020
00101020000010600010107000101050002010600000106000201050001010400
060101000301040003010b000001030001010600010105000201060001010500000103000001030
0000106000101020002010100e401011206010111011206010111370103000101
0200020104000301040003010300030102000001060000010300010106000101030000010100010
10600010102000001020000010400030102000101020001010200000102000201
0300020104000401060000010200000103000101040003010200000102000201030004010400020
10600020103000201040005010200030104000401030000010500000103000201
04000301030003010600020103000101030000010300000100000001030002010700e4010112060
101110112060101116e010200010102007e010200010102001301020055010700
e4010112060101110112060101116e0107007e01070012010300ff0142010112060101110112060
101116f0105008001050013010200ff014301011206010111011206010111ff01
ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
1011206010111011206010111ff01ff015701011206010111011206010111ff01
ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
1011206010111011206010111ff01ff015701011206010111011206010111ff01
ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
1011206010111011206010111ff01ff015701011206010111011206010111ff01
ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
1011206010111011206010111ff01ff015701011206010111011206010111ff01
ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
1011206010111011206010111ff01ff015701011206010111011206010111ff01
ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
1011206010111011206010111ff01ff015701011206010111011206010111ff01
ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
1011206010111011206010111ff01ff015701011206010111011206010111ff01
ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
1011206010111011206010111ff01ff015701011206010111011206010111ff01
ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
101120601011100120911ff01ff0157010112081109120011ff01ff0157010912
0011011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
206010111ff12ff12591206010111011206010011ff12ff125a12060101110112
1e0100110012ff01ff012701001100121e01011101121e0100110012ff01ff012701001100121e0
1011101121e0100110012ff01ff012701001100121e01011101121e0100110012
ff01ff012701001100121e01011101121e0100110012ff01ff012701001100121e01011101121e0
100110012ff01ff012701001100121e01011101121e0100110012ff01ff012701
001100121e01011101121f110012ff11ff112811001220110012ff11ff116c11
pop pop setmatrix

/#copies 1 def
grestore
%%Trailer