aboutsummaryrefslogtreecommitdiff
path: root/src/doc/ps/h-root.ps
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2007-08-14 05:14:52 +0000
committerdos-reis <gdr@axiomatics.org>2007-08-14 05:14:52 +0000
commitab8cc85adde879fb963c94d15675783f2cf4b183 (patch)
treec202482327f474583b750b2c45dedfc4e4312b1d /src/doc/ps/h-root.ps
downloadopen-axiom-ab8cc85adde879fb963c94d15675783f2cf4b183.tar.gz
Initial population.
Diffstat (limited to 'src/doc/ps/h-root.ps')
-rw-r--r--src/doc/ps/h-root.ps1335
1 files changed, 1335 insertions, 0 deletions
diff --git a/src/doc/ps/h-root.ps b/src/doc/ps/h-root.ps
new file mode 100644
index 00000000..862e881a
--- /dev/null
+++ b/src/doc/ps/h-root.ps
@@ -0,0 +1,1335 @@
+%!PS-Adobe-2.0 EPSF-1.2
+%%BoundingBox: 143.000000 281.197176 469.000000 541.042830
+%%Creator: xwd2ps
+%%CreationDate: Sat Nov 23 21:42:29 1991
+%%Title: h-root.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 h-root.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.919405 inch translate
+matrix currentmatrix
+4.500000 inch 3.581190 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
+7fff00
+d6d6d6
+767676
+474747
+b6b6b6
+aab87f
+a4b068
+c0ba76
+8da468
+aeb19a
+99ad80
+a2ae58
+c7c497
+aa9c7c
+aa9468
+c69882
+c8ad97
+e4c5a0
+e6ccbb
+a98f73
+a88f82
+929d7e
+909169
+c1a66c
+8e944f
+8ea252
+a79857
+738d47
+907d4c
+6f7d42
+747858
+758e58
+647a5a
+666f40
+58643e
+4e4a3e
+4c552c
+594936
+4c3c34
+595139
+544c29
+4d422a
+403c30
+34242c
+3c2424
+3c242c
+342c2c
+442c30
+3c3424
+342424
+2c2931
+3c2830
+3c0e2a
+34241c
+34360e
+1a1410
+341313
+340424
+341c24
+594e46
+4c3434
+340d2d
+3c2414
+312e1c
+3c342c
+3c3434
+3c2c34
+443434
+381c34
+505c3e
+443820
+4c2034
+3a160f
+2c1429
+343424
+381c2c
+2c1610
+481814
+3c3411
+1c2c2e
+342434
+3f3c22
+543a28
+505c4e
+565141
+645c40
+796f40
+577346
+484848
+5e624e
+d1cdc2
+caa698
+e2a99e
+9c8470
+a79498
+8c8454
+414126
+414d2e
+5c5c54
+3c241c
+3c2c1c
+4d3a1f
+342c34
+6a6158
+2a3017
+441130
+431614
+1c1527
+5c303c
+58654d
+baacb9
+cc9793
+c48e6a
+a08665
+a0804c
+481430
+4c251a
+443218
+645038
+715f3a
+6e5424
+a9c3cb
+c18e79
+deb877
+343c24
+c4c9ca
+a08054
+ac8454
+541c1f
+391c3c
+9a845c
+8d7054
+d09068
+e1a48d
+8b8f77
+2c3434
+1c2e13
+725f48
+8d6971
+d49474
+a8855c
+c08064
+c59c67
+b48458
+bd8458
+b47454
+937d3d
+c29258
+91a79d
+9fa8bd
+e1a373
+8e5c4a
+81613b
+a06c54
+89815d
+98808b
+8c6c44
+a16a5c
+8b7c6e
+6f7568
+80604a
+815134
+8c573f
+9e644e
+7c4434
+7c4c44
+774f38
+796e57
+a46c4c
+898666
+6d4f37
+8d6232
+90654d
+9e683e
+622c34
+542841
+cf8e7c
+64605e
+946444
+643c34
+788c68
+a26a64
+dcced4
+ebd3d1
+90645c
+343a30
+ac7f46
+d48464
+c48656
+926939
+e19b6c
+7d6767
+e49780
+a97273
+bc7c54
+526460
+7c5d58
+b07240
+de925d
+5b6a6e
+8c9086
+6e8f8b
+b47459
+c47c5c
+7a7788
+5f6f8c
+584e5b
+88939b
+503c58
+8b9eae
+6e3a22
+e9e3d4
+6c4434
+3f234d
+6e4d42
+bf7c43
+4c4b58
+b77a41
+84543c
+955f3f
+9b4e3c
+cd7f79
+743d47
+a66841
+724a57
+723a3e
+6d2534
+e28f74
+cc7d69
+70403a
+
+
+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
+010103000b010c000101050001010300080103000101090007010900ff015f017b0001120601011
+101120601011105000a0102000201060002010200020102000c010b0002010400
+02010200090102000201080008010800ff015f017b0001120601011101120601011105000a01030
+00201040002010300020103000b010b0002010400020102000901020002010800
+09010700ff015f017b00011206010111011206010111050002010b0002010400020103000201070
+002011000020104000201020002010900020108000201030003010600ff015f01
+7b00011206010111011206010111050002010c00020102000201040002010700020110000201040
+00201020002010900020108000201040002010600ff015f017b00011206010111
+011206010111050002010c000201020002010400020107000201100002010400020102000201090
+00201080002010400020106007b010200000103003d01050097017b0001120601
+0111011206010111050002010d00020100000201050002010700020110000201040002010200020
+109000201080002010400020106007c010100010101003f010100010101009601
+7b00011206010111011206010111050002010d00020100000201050002010700020110000201040
+002010200020109000201080002010400020106007c010100010101003f010100
+0201010095017b00011206010111011206010111050002010e00040106000201070002011000020
+1040002010200020109000201080002010400020106007c010100010101003f01
+01000201010095017b0001120601011101120601011105000801080004010600020107000201100
+00a010200070104000201080002010300030106007c0101000101010006010300
+0001020005010100000102000901030007010100000103000701010002010100070103000901030
+07b017b0001120601011101120601011105000901080002010700020107000201
+10000a0102000801030002010800090107007c01050007010100020100000701020000010100070
+10100010101000701020001010100060101000201010006010100010101000701
+0100010101007a017b0001120601011101120601011105000901080002010700020107000201100
+00a0102000801030002010800080108007c010100010101000701010002010000
+0701010002010100050101000201010007010100020101000601010002010100050101000301010
+005010100020101007a017b00011206010111011206010111050002010e000401
+0600020107000201100002010400020102000201090002010800070109007c01010001010100080
+1010000010000080101000201010005010600070101000b010100020101000501
+010003010100050101007f017b00011206010111011206010111050002010e00040106000201070
+0020110000201040002010200020109000201080002010e007c01010001010100
+08010100000100000801010002010100050101000c0101000b01010002010100050101000301010
+0050101007f017b00011206010111011206010111050002010d00020100000201
+050002010700020110000201040002010200020109000201080002010e007c01010001010100090
+101000901010002010100050101000c0101000b01010002010100050101000301
+010005010100030100007a017b00011206010111011206010111050002010d00020100000201050
+002010700020110000201040002010200020109000201080002010e007c010100
+010101000901010009010100010101000701010002010000070101000b010100010101000701010
+00101010007010100010101007a017b0001120601011101120601011105000201
+0c00020102000201040002010700020110000201040002010200020109000201080002010e007b0
+1020000010300080100000a010400090103000701040008010500090103000901
+03007b017b00011206010111011206010111050002010c000201020002010400020107000201100
+00201040002010200020109000201080002010e008c0100000a010100c4017b00
+011206010111011206010111050002010b000201040002010300020107000201100002010400020
+10200020109000201080002010e0089010000000100000b010100c4017b000112
+0601011101120601011105000901040002010400020103000201070002011000020104000201020
+0080103000701030002010e00890102000a010300c3017b000112060101110112
+0601011105000a01020002010600020102000201070002011000020104000201020009010200080
+1020002010e00ff015f017b000112060101110112060101110600090103000101
+07000101030001010800010111000101050001010300080103000801020001010e00ff015f017b0
+00112060101110112060101117b00ff015f017b00011206010111011206010111
+7b00ff015f017b000112060101110112060101117b00ff015f017b0001120601011101120601011
+17b00ff015f017b00011206010111011206010111ff00ff005700011206010111
+011206010111ff00ff005700011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111140107000001020008010000150100001501000004010200160100001c01
+03001f0103001401030006010200000103002401050027010700210103001801000023010000070
+1000050010000040102004e010112060101110112060101111401010000010100
+000101000101010007010200130102001401000005010100160100001e010100210101001301010
+00101010006010100010101002601010001010100260101000001010000010100
+2301010018010000220102000601000050010000050101004e01011206010111011206010111140
+10000010101000101000001010100080100001501000014010100050101001501
+01001e0101002101010013010100010101000601010001010100260101000201010025010000010
+1010001010000230101001701010023010000060101004f010100050101004e01
+01120601011101120601011117010100040101003501010005010100150101001e0101002101010
+0130101000a010100010101002601010002010100280101002601010017010100
+2b0101004f010100050101004e01011206010111011206010111170101000401040003010300040
+10300000100000701030004010300000100000601060002010400040103000701
+06000301030002010100000102000a01010005010300020102000101020002010300050101000a0
+10300040101000a01010001010100010103000001020000010100000102000401
+0300020101000001030002010100020101000201030004010300180101000501030008010300000
+10000030103000501010005010300040103000201060007010400020101000001
+02000801030003010600030103000201000000010100000101000f0100000001010000010100030
+10300020102000101020002010300070106000201040004010300420101120601
+0111011206010111170101000401020000010100040101000301010002010100090101000301010
+00201010008010100050102000001010002010100010101000801010005010100
+0101010002010200000101000901010004010100010101000201010002010000020101000101010
+00401010009010100010101000201040008010500020101000201000002010200
+0001010002010100010101000201020001010100010101000201010001010100010101000201010
+00101010017010100040101000101010006010100020101000201010001010100
+0401010004010100010101000201010001010100030101000901010002010100020101000101010
+0090101000501010005010100010101000101010000010100000101000e010100
+0001010000010100010101000101010002010100020100000201010001010100080101000501020
+00001010002010100010101004101011206010111011206010111170101000401
+0100010101000401010003010100030100000901010003010100030100000801010005010100010
+10100010101000201010008010100040101000301010001010100020101000801
+0100030101000201010002010100020100000101010002010100040101000801010003010100020
+101000a0101000101010002010100020100000201010002010100000101000201
+0100020101000201010001010100020101000001010003010100000101000201010017010100030
+10100030101000501010003010000010101000201010004010100030101000201
+0100010101000201010003010100090101000201010002010100010101000901010005010100040
+10100020101000101010000010100000101000e01010000010100000101000001
+0100030101000101010002010000010101000201010008010100050101000101010001010100020
+10100410101120601011101120601011117010100040101000101010004010100
+040102000c010100040102000b01010005010100010101000101060008010100040101000301010
+00101010002010100080101000301060003010100000100000201060004010100
+0801010003010100020101000a01010001010100030101000001000003010100020101000001060
+00201010006010100020101000001010003010100000101001c01010003010100
+030101000601020004010600040101000301060001010100080101000c010300020101000101010
+00901010005010100040106000101010000010100000101000e01010000010100
+0001010000010100030101000201010000010000020106000801010005010100010101000101060
+04101011206010111011206010111170101000401010001010100040101000601
+02000a01010006010200090101000501010001010100010101000d0101000401010003010100010
+10100020101000801010003010100080101000001000002010100090101000801
+010003010100020101000a010100010101000301010000010000030101000201010000010100070
+1010006010100020101000001010003010100000101001c010100030101000301
+01000801020002010100090101000301010006010100080101000a0101000101010002010100010
+101000901010005010100040101000601010000010100000101000e0101000001
+01000001010000010100030101000201010000010000020101000d0101000501010001010100010
+10100460101120601011101120601011117010100040101000101010004010100
+0301000003010100090101000301000003010100080101000501010001010100010101000d01010
+00401010003010100010101000201010008010100030101000801030002010100
+090101000801010003010100020101000a010100010101000401010004010100020101000001010
+00701010006010100020101000001010003010100000101000301000017010100
+0301010003010100050100000301010001010100090101000301010006010100030100000301010
+00901010002010100020101000101010009010100050101000401010006010100
+00010100000101000e0101000001010000010100000101000301010002010300020101000d01010
+00501010001010100010101004601011206010111011206010111170101000401
+0100010101000401010003010100020101000901010003010100020101000801010001010000020
+10100010101000201010002010000080101000101000002010100010101000201
+0100010101000901010004010100020100000401010004010100020100000401010009010100010
+10100030101000a01010001010100040101000401010001010100020101000201
+0000020101000601010001010100020101000101010002010100010101000401000011010100040
+10100010101000601010002010100020101000201000004010100040101000201
+0000020101000101010003010100010100000601010001010200020101000101010009010100050
+10100010100000201010002010000010101000001010000010100030100000901
+0100000101000001010001010100010101000401010004010100020100000801010001010000020
+10100010101000201010002010000410101120601011101120601011116010300
+02010200000103000101050001010000000103000801050001010000000103000a0102000201020
+000010300020103000a0102000401030003010400080105000301030005010100
+0501030003010500080103000301030008010200000103000301000005010400040103000201040
+0030105000401030004010300040102000f010300040103000701000000010300
+0401030003010500030103000401030005010200080102000101010000010200000103000601050
+00401020004010300020101000001010000010100020102000801010000010100
+000101000201030005010100050103000a010200020102000001030002010300420101120601011
+1011206010111870101005f01000005010100350100009e0101008c0101120601
+0111011206010111870101005c0100000001000006010100d50101008c010112060101110112060
+10111860103005b01020005010300d30101008d01011206010111011206010111
+ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff0
+15701011206010111011206010111ff01ff015701011206010111011206010111
+ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff0
+15701011206010111011206010111ff01ff015701011206010111011206010111
+ff01ff015701011206010111011206010111ff01370100000301030008010100130104001601000
+0da010112060101110112060101115b01000007010000040102000d0100000401
+0200480100003f0102000901000019010100030103000701030011010600140101000c010000040
+1020026010300060100000d01020080010112060101110112060101115a010200
+06010000050101000d0100000501010048010000400101000801020018010100040102000801010
+01201020000010200140101000c0100000501010028010100050102000d010100
+80010112060101110112060101115b01000006010100050101000c0101000501010047010100400
+101000901000018010200040102001d010200170102000b010100050101002801
+0100060100000e010100800101120601011101120601011163010100050101000c0101000501010
+04701010040010100220106000101060002010400030103000001000006010500
+0401030001010300000102000101060008010100050101002801010016010100800101120601011
+10112060101111601030002010200000102000101010000010300020103000001
+0000030103000201010000010300060101000301010001010300030106000201040007010600020
+10400040103000701000000010100000101000301030002010200000102000201
+0300000100000301030007010600030103000801040007010100030101000201030002010100000
+10300030104000701030003010100000102000c01060001010700010104000201
+0600060105000301050000010800000106000601060002010400040103000201010000010200090
+10300050101000401030005010300030101000101020006010400070100000001
+0100000101000301030002010200000102000201030000010000030103003d01011206010111011
+20601011115010100010101000201010001010100020102000101010000010100
+0201010002010100010101000201020001010100050101000301010003010100050101000501020
+00001010008010100050102000001010002010100010101000601010000010100
+0001010001010100010101000201010001010100010101000201010002010100010101000801010
+00501010001010100060101000201010006010100030101000101010001010100
+020102000101010001010100000102000901010004010100010101000c010200040103000001020
+00301020002010200000102000701020004010200010102000001030000010200
+010102000b010100050102000001010002010100010101000201010001010100070101000101010
+00401010006010100040101000101010002010100010101000601010002010100
+0601010000010100000101000101010001010100020101000101010001010100020101000201010
+0010101003c010112060101110112060101111401010002010100020101000101
+0100020101000201010000010100030100000101010003010100010101000201010005010100000
+10100000101000301010005010100050101000101010008010100050101000101
+0100010101000201010006010100000101000001010000010100030101000101010001010100010
+10100030100000101010002010100080101000401010003010100050101000201
+0100060101000001010000010100000101000301010001010100020101000001010002010100090
+1010004010100010101000c010200040102000101020003010200020103000101
+00000701020004010200010102000001020001010200010102000b0101000501010001010100010
+10100020101000201010001010100060101000201010004010100060101000301
+0100020101000201010000010100070101000201010006010100000101000001010000010100030
+101000101010001010100010101000301000001010100020101003c0101120601
+0111011206010111140101000701010001010100020101000601020004010100030101000101010
+00a01010000010100000101000301010005010100050101000101010008010100
+0501010001010100010106000601010000010100000101000001010003010100010101000101010
+00201020004010600080101000401010003010100080103000601010000010100
+0001010000010100030101000101010005010100020101000901010004010100010101000c01020
+00401020001010200030102000301040008010200040102000101020000010200
+01010200010102000b0101000501010001010100010106000201010001010100060101000901010
+00601010003010100070103000b01030006010100000101000001010000010100
+03010100010101000101010002010200040106003c0101120601011101120601011114010100070
+101000101010002010100080102000201010003010100010101000a0101000001
+01000001010003010100050101000501010001010100080101000501010001010100010101000b0
+10100000101000001010000010100030101000101010001010100040102000201
+01000d0101000401010003010100060101000101010006010100000101000001010000010100030
+101000101010005010100020101000901010004010100010101000c0102000401
+0200010102000301020002010000010103000701020004010200010102000001020001010200010
+102000b0101000501010001010100010101000701010001010100060101000901
+0100060101000301010007010300090101000101010006010100000101000001010000010100030
+10100010101000101010004010200020101004101011206010111011206010111
+1401010003010000020101000101010002010100050100000301010001010100030101000101010
+00b01010000010200040101000501010005010100010101000801010005010100
+01010100010101000b0101000001010000010100000101000301010001010100010101000101000
+003010100010101000d0101000401010003010100050101000201010007010100
+0001020001010100030101000101010005010100020101000901010004010100010101000c01020
+00001010001010200010102000301020002010200000102000701020004010200
+0101020000010200010102000101020000010100080101000501010001010100010101000701010
+00101010006010100030100000401010006010100030101000301000002010100
+0001010007010100020101000601010000010100000101000001010003010100010101000101010
+00101000003010100010101004101011206010111011206010111150101000101
+010002010100000102000201010005010100020101000201010001010100020101000b010100010
+10100040101000501010001010000020101000101010008010100010100000201
+0100010101000201010002010000060101000001010000010100010101000101010002010100000
+10200010101000201010002010100020100000801010001010000020101000101
+0100060101000101020007010100010101000201010001010100020101000601010000010200090
+1010004010100010101000c010500000103000001030001010600000106000601
+0400040105000001030000010300010105000801010001010000020101000101010002010100020
+10000020101000101010007010100010101000401010006010100040101000101
+0100020101000101010006010100010102000601010000010100000101000101010001010100020
+1010000010200010101000201010002010100020100003c010112060101110112
+0601011116010300040102000001010000010400030100000001030004010300020104000901000
+00301000002010500040102000201020000010300080102000201020000010300
+0201030007010100000101000001010002010300040102000001010000010000000103000401030
+00a01020004010300080102000101010006010000030100000301030002010400
+05010200000101000601050001010200000103000c0103000101030000010300010106000001000
+00001030007010400050103000101030000010300020103000a01020002010200
+0001030002010300020102000001030007010300030105000201050003010300020103000001020
+00601020001010100050101000001010000010100020103000401020000010100
+0001000000010300040103003d01011206010111011206010111ff01ff015701011206010111011
+206010111ff01ff015701011206010111011206010111ff01ff01570101120601
+0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
+206010111ff01ff015701011206010111011206010111ff01ff01570101120601
+0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
+206010111ff01ff015701011206010111011206010111ff01ff01570101120601
+0111011206010111ff01ff015701011206010111011206010111ff01bb010200000103000001070
+00001040003010600790101120601011101120601011114010200110100000701
+00002401070031010000100100001a01020016010000070100001e0100001201020000010300240
+105002c010300060100000d010200260102000101020000010700000104000301
+0700780101120601011101120601011115010100110100000701000025010100020101003001020
+00f0100001b01010016010000060102001d010000130101000101010026010100
+010101002d010100050102000d01010026010200010102000101020000010200010102000501020
+00001020078010112060101110112060101111501010010010100060101002501
+010003010000310100000f0101001b01010015010100070100001d0101001301010001010100260
+10100020101002c010100060100000e0101002601020001010200010102000101
+0100010102000501020000010200780101120601011101120601011115010100100101000601010
+025010100470101001b0101001501010026010100130101000101010026010100
+020101002c010100160101002601020001010200010102000501020005010200000102007801011
+20601011101120601011115010400020102000001020001010600010106000301
+0300020101000001020011010100010100000401030002010100000103000701040002010100000
+10200080103000301010000010200020106000101010000010300030103000401
+0400010102000001020003010300020106000201030005010300020101000001020007010600030
+10300080101000101010001010300000102000001010000010200040103000201
+0100000103000201010002010100020103000401030012010300050101000401030005010300030
+10100010102000701030002010100000102000c01070001010400030102000501
+0200000102007801011206010111011206010111150102000001010002010100010101000301010
+00601010005010100010101000201010001010100100104000301010001010100
+0201020001010100050101000201010002010100010101000901010004010100010101000301010
+00501020001010100010101000101010002010100000102000201010001010100
+0201010001010100030101000701010004010100010101000201010001010100080101000501010
+00101010007010500020101000201000002010200000101000201010001010100
+0201020001010100010101000201010001010100010101000201010001010100100101000101010
+00401010006010100040101000101010002010100010101000701010001010100
+02010100010101000b0107000101040003010200050106007801011206010111011206010111150
+10100020101000101010001010100030101000601010004010100030101000101
+0100010101001001010001010000020101000301010001010100020101000501010002010100020
+10100010101000901010004010100010101000301010005010100020101000001
+0100030101000001010002010100020101000101010001010100020101000301010007010100030
+10100030101000101010001010100080101000401010003010100060101000101
+0100020101000201000002010100020101000001010002010100020101000201010001010100020
+10100000101000301010000010100020101000f01010002010100040101000601
+010003010100020101000201010000010100070101000301010001010100010101000b010200010
+10200010102000501020005010500790101120601011101120601011115010100
+0201010001010100010101000301010006010100040101000301010001010100010101001001010
+00501010003010100010101000d01030002010100010101000901010004010100
+0101010003010100050101000501010003010100000101000201010002010100010101000101010
+00801010007010100030101000301010001010100010101000801010004010100
+0301010006010100010101000301010000010000030101000201010000010600020101000601010
+00201010000010100030101000001010014010100090101000601010003010100
+07010300080101000301010001010100010101000b0102000101020001010200050102000501020
+07c01011206010111011206010111150101000201010001010100010101000301
+01000601010004010100030101000101010001010100100101000501010003010100010101000b0
+10100010101000201010001010100090101000401010001010100030101000501
+0100050101000301010000010100020101000201010001010100010101000801010007010100030
+10100030101000101010001010100080101000401010003010100060101000101
+0100030101000001000003010100020101000001010007010100060101000201010000010100030
+10100000101001401010009010100060101000301010007010300080101000301
+010001010100010101000b0102000101020001010200010101000101020001010100010102007c0
+10112060101110112060101111501010002010100010101000101010003010100
+0601010004010100030101000101010001010100100101000501010003010100010101000a01010
+00201010002010100010101000901010004010100010101000301010005010100
+0501010003010100000101000201010002010100010101000101010003010000030101000701010
+00301010003010100010101000101010008010100040101000301010006010100
+0101010004010100040101000201010000010100070101000601010002010100000101000301010
+000010100030100000f0101000301000004010100060101000301010003010000
+0201010000010100070101000301010001010100010101000b01020001010200010102000001020
+00101020000010200010102007c01011206010111011206010111150102000001
+0100020101000001020003010100010100000301010001010000020101000101010002010100010
+10100040100000a0101000601010001010100020101000a010100010102000201
+0100010101000901010004010100010101000301010001010000020101000601010001010100020
+10100000102000201010000010200020101000101010003010100010100000401
+0100040101000101010002010100010101000801010001010000020101000101010007010100010
+10100040101000401010001010100020101000201000002010100060101000101
+010002010100010101000201010001010100040100000a010100010101000401010006010100040
+10100010101000201010001010100070101000101010002010100010101000b01
+0200010102000001070000010700000104000601000073010112060101110112060101111401010
+00001020004010200000101000301020005010200040103000201020000010300
+0201020008010300060103000201040009010200010101000001020000010300060105000101020
+00001030003010200020104000501030004010200000101000201020000010100
+0201030005010200030105000301030002010200000103000801020004010300070102000001030
+00301000005010400040103000201040003010500040103000401030004010200
+0a01030003010500020105000301030002010300000102000701030002010200000103000a01020
+00001030000010700000107000001040005010200720101120601011101120601
+01114d010000d401000005010100350101007d0100007301011206010111011206010111ff01200
+10000000100000601010035010100f201011206010111011206010111ff012001
+02000501030033010100f301011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff00ff005700011206010111
+011206010111ff00ff005700011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+0112060101111401010003010100000102001101000025010300070102002701030006010000040
+1020016010000160102000c010200ff0170010112060101110112060101111401
+0100030101000101010011010000270101000801010029010100050102000401010016010000170
+101000b01010000010100ff016f01011206010111011206010111140101000301
+01000101010010010100270101000801010029010100060100000501010015010100170101000a0
+1010002010100ff016e0101120601011101120601011114010100030101000101
+0100100101002701010008010100290101000d01010015010100170101000a01020001010100ff0
+16e01011206010111011206010111140101000001010000010100010104000301
+0400020106000601010003010100020103000201020000010200040101000501040006010300000
+10200020103000201020000010200090101000401030004010100010102000201
+0300070106000301030009010400030103000301000002010100ff016e010112060101110112060
+10111140101000001010000010100010102000001010001010100020101000301
+0100090101000301010001010100010101000201010001010100040101000401010000010200070
+10100020100000201010001010100020101000101010009010100060101000401
+0100010101000201010001010100080101000501010001010100070101000001020002010100010
+1010005010100ff016f0101120601011101120601011114010100000101000001
+0100010101000101010001010100020101000301010009010100000101000001010000010100030
+10100010101000101010004010100030101000201010007010100020100000101
+0100030101000101010001010100090101000601010004010100000101000201010002010100080
+1010004010100030101000501010002010100010101000301010003010100ff01
+7001011206010111011206010111150105000201010001010100040103000301010009010100000
+10100000101000001010003010100010101000101010004010100030101000201
+0100080101000001000002010100030101000101010001010100090101000601010004010300030
+10600080101000401010003010100050101000201010001010100030101000201
+0100ff0171010112060101110112060101111501010000010200020101000101010002010100010
+10100030101000901010000010100000101000001010003010100010101000101
+0100040101000301010002010100080101000001000002010100030101000101010001010100090
+101000601010004010300030101000d0101000401010003010100050101000201
+0100010101000301010003010000ff0171010112060101110112060101111501010001010100020
+10100010101000101010002010100030101000a01010000010200010101000301
+0100010101000101010004010100030101000201010009010100030101000301010001010100010
+1010009010100060101000401010000010100020101000d010100040101000301
+010005010100020101000101010003010100ff01760101120601011101120601011115010100010
+10100020101000101010001010100010102000301010001010000070101000101
+0100020101000101010002010100000102000401010004010100000102000901010004010100010
+10100020101000001020009010100060101000401010001010100020101000201
+0000080101000101000002010100010101000701010000010200020101000101010004010000ff0
+17101011206010111011206010111150100000301000001010200000103000101
+0200010101000301020008010000030100000301030004010200000101000101050003010200000
+10100080100000601030004010200000101000601050002010500010103000001
+0200020103000a0102000401030009010200000101000201030004010200ff01700101120601011
+10112060101117201000070010000ff0171010112060101110112060101116f01
+000000010000ff01e4010112060101110112060101116f010200ff01e4010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111240106001601010012010200
+0001010032010300ff01c20101120601011101120601011113010b0004010700140103001001060
+03201030020010300000100000b01030035010200060103002301020016010300
+040100000501030004010300060100001e01000015010000200103000f010000770101120601011
+101120601011113010b0005010200000102001501010011010200000102003301
+02001f010100010102000d010100360101000801010024010100150101000101010002010200060
+1010006010100050102001c01020014010000220101000f010000770101120601
+0111011206010111130101000001000000010000000100000001020005010200000102002901020
+001010100330102001f010000030101000d010100360101000801010024010100
+1501010001010100030100000701010006010100060100001e01000014010100220101000e01010
+07701011206010111011206010111130102000001000000010000000100000001
+0100050102000001020001010400030103000001000002010400040102000001010005010200010
+10100030103000201000000010100000101000101000000010100000101000201
+0400010103000001020003010500010103000001000017010100030100000d01010036010100080
+10100240101001501010010010100060101003c010100220101000e0101007701
+0112060101110112060101111301010000010000000100000001000000010200050105000101060
+00101060002010400030106000501020006010500010107000001070000010600
+0001080001010600000106001701020007010300050101000301020001010200020103000701010
+00001020002010100000103000301030003010400050101000501030002010000
+0001010000010100020103000001000007010400020103000001020007010100050103000601010
+00601010004010300030101000001020003010300000101000601030003010100
+0001020007010600030103000201000000010100000101000101010000010200050101000401040
+00201060003010300030103000001000062010112060101110112060101111301
+0200000100000001000000010000000101000501050001010100010102000101020000010200040
+10200020103000001020005010200050102000101020000010700000107000001
+0100010102000101030000010200000102000001030000010200000102001801030004010100010
+10100040101000401010002010000020101000101010007010200000101000201
+0200010101000101010001010100020102000001010004010100040101000101010001010100000
+10100000101000001010002010100070102000001010002010100020100000701
+0400050101000601010006010100060101000401010001010100010101000101010000010000080
+10100040101000101010008010100050101000101010001010100000101000001
+0100010102000001010004010100030101000201010003010100050101000101010001010100020
+10100620101120601011101120601011113010100000100000001000000010000
+0001020005010200000102000301030001010300010100000401020002010200020101000501020
+00501020001010200000101000001010000010100000101000001010000010100
+0301030001010200010102000001020001010200000103000101000019010300020101000301010
+00301010004010100020100000101010002010100070101000201010001010100
+0201010000010100030101000101010002010100030101000301010002010100010101000001010
+00001010000010100030100000701010002010100010101000201000008010100
+07010100060101000601010006010100040101000101010001010100010101000a0101000401010
+00101010008010100040101000201010001010100000101000001010001010100
+0201010003010100030101000201010003010100040101000201010001010100030100006201011
+20601011101120601011113010200000100000001000000010000000101000501
+020000010200010105000201040005010200020102000a010200050102000101020000010100000
+10100000101000001010000010100000101000101050001010200010102000001
+020001010200010104001c010200010101000301010003010100050101000001000002010600070
+10100020101000101010005010100030101000101010002010100030101000301
+0600010101000001010000010100010102000a01010002010100020101000001000009010100070
+10100060101000601010006010100040101000101010001010100010101000a01
+0100040101000101010008010100040106000101010000010100000101000101010002010100030
+10100060103000301010004010600020102006501011206010111011206010111
+1301010000010000000100000001000000010200050102000001020000010200000102000101000
+00101030004010200020102000a01020001010100010102000101020000010100
+0001010000010100000101000001010000010100000102000001020001010200010102000001020
+00101020000010000010103001701000003010100010101000301010003010100
+0501010000010000020101000c01010002010100010101000501010003010100010101000201010
+00301010003010100060101000001010000010100030102000801010002010100
+0201010000010000090101000701010006010100060101000601010004010100010101000201030
+00b01010004010100010101000801010004010100060101000001010000010100
+0101010002010100030101000401010001010100030101000401010009010200630101120601011
+10112060101111301020000010000000100000001000000010100050102000001
+0200000102000001020001010200000102000401020002010300010101000501020001010100010
+10200010102000001010000010100000101000001010000010100000101000001
+0200000102000101020001010200000102000101020000010200000102001701010003010000010
+10100030101000301010005010300020101000c01010002010100010101000501
+0100030101000101010002010100030101000301010006010100000101000001010000010000030
+101000701010002010100030101000a0101000701010006010100060101000601
+01000401010001010100010100000f0101000401010001010100080101000401010006010100000
+10100000101000101010002010100030101000301010002010100030101000401
+01000601000003010100620101120601011101120601011113010b0004010700000107000001060
+00201060001010600050106000201050001010100000101000001010000010100
+000101000001010000010b000001030001010600000106001701020001010100020101000101010
+00401010006010100040101000201000007010100010101000201010006010100
+0101010002010200000101000401010004010100020100000101010000010100000101000001010
+0020101000701020000010100040101000a010100070101000601010006010100
+060101000401010001010100010105000a010100040101000101010008010100010100000201010
+00201000001010100000101000001010001010100010101000401010003010100
+01010200030101000101000002010100020100000101010002010100040100005c0101120601011
+101120601011113010b0004010600020102000001020000010000000103000301
+0600020104000701040004010300020101000001010000010100000101000001010000010100010
+10200000106000001030002010200000101000001000000010300180100000001
+0300040103000301050004010100050103000801040002010400050103000201010000010200030
+10500030103000201010000010100000101000001000000010300070101000001
+0200050100000a01030004010500020105000201050002010500010102000001030001010500070
+10500010102000001030008010200040103000201010000010100000101000101
+040003010500020102000101010003010200040103000201000000010300040102005b010112060
+10111011206010111e7010100550100003f010000040100003901010035010000
+5c01011206010111011206010111e70101005201000000010000400101000201010039010100930
+1011206010111011206010111e601030051010200410104003901030092010112
+06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
+1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
+06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
+1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
+06010111011206010111ff01ff0157010112060101110112060101112301080015010100ff01ff0
+1120101120601011101120601011113010b0003010800140103006e0103002d01
+02001f010000340102000f010000240102001601000019010000a80101120601011101120601011
+113010b0003010100000102000001010015010100700101002f0101001f010000
+350101000e010200240101001601000018010200a70101120601011101120601011113010100000
+10000000100000001000000010200060102008b0101002f0101001e0101003501
+01000f010000250101001501010019010000a801011206010111011206010111130102000001000
+00001000000010000000101000601020005010300020101000001030002010400
+040102000001010001010300000100005c0101002f0101001e01010034010300350101001501010
+0c301011206010111011206010111130101000001000000010000000100000001
+02000601020004010500010107000101040003010600000106005c0101000701030003010400020
+10100000103000101010000010200080104000401030002010100030101000501
+0600030103000701020000010200020103000001000003010300090100000001010002010200010
+10200010103000501030002010000000101000001010010010400020103000001
+02000501060003010300020101000001020003010300050103009d0101120601011101120601011
+11301020000010000000100000001000000010100060102000301020001010200
+000103000001020003010200020103000001020000010200000102005c010100060101000101010
+00101010002010100020102000101010001010100010101000701020000010100
+0201010001010100010101000301010007010100050101000101010007010100010101000101010
+00201010002010100010101000801000000010100030101000101010004010100
+04010100010101000101010000010100000101000f0102000001010002010100020100000801010
+0050101000101010002010200000101000401010004010100010101009c010112
+0601011101120601011113010100000100000001000000010000000102000601020003010200010
+10200000102000101020003010200020102000201010000010300010100005c01
+0100050101000201010001010100020101000201010002010100010101000101010007010100010
+10100010101000301010000010100000101000001010007010100040101000301
+0100060101000101010001010100030100000101010002010100080100000101010003010100000
+100000501010003010100030101000001010000010100000101000f0101000201
+0100010101000201000008010100040101000301010001010100020101000301010003010100020
+101009c0101120601011101120601011113010200000100000001000000010000
+0001010006010200030102000101020000010200010102000301020002010200060104005d01010
+00501060004010300020101000601010001010100070101000101010001010100
+0301010000010100000101000001010007010100040101000301010006010100010101000201020
+00401060007010500040101000601010003010100030101000001010000010100
+000101000f010100020101000201010000010000090101000401010003010100010101000201010
+00301010003010100a10101120601011101120601011113010100000100000001
+0000000100000001020006010200030102000101020000010200010102000301020002010200050
+10000010103005c01010005010100070101000101010002010100060101000101
+0100070101000101010001010100030101000001010000010100000101000701010004010100030
+10100060101000101010004010200020101000c01000002010100040101000601
+010003010100030101000001010000010100000101000f010100020101000201010000010000090
+10100040101000301010001010100020101000301010003010100a10101120601
+0111011206010111130102000001000000010000000100000001010006010200030102000101020
+0000102000001030003010200020103000101010000010200000102005c010100
+0301000000010100060101000201010002010100060101000101010007010100010101000101010
+00301010001010100000102000801010004010100030101000601010001010100
+0101000003010100010101000c01000003010100020100000001010005010100030101000301010
+00001010000010100000101000f01010002010100030101000a01010004010100
+0301010001010100020101000301010003010100030100009c01011206010111011206010111130
+10b000501040003010500010106000201060001010600000106005c0101000201
+0100010101000201000001010100010102000201010006010100010101000701010001010100020
+10100010101000201010001010100080101000101000002010100010101000701
+0100000102000101010002010100020101000201000006010100030101000101010001010100040
+101000401010001010100010101000001010000010100030100000a0102000001
+0100040101000a01010001010000020101000101010002010100010101000401010004010100010
+1010004010000960101120601011101120601011113010b000501040004010300
+02010500030106000201040001010000000103005c0107000201030003010200010101000001040
+00301020000010300050102000001030002010300030100000301000009010200
+0401030009010200000101000001000000010300040103000701020001010200000102000101020
+00101050003010300020101000001010000010100020102000801010000010200
+050100000c010200040103000301040003010500030103000401020095010112060101110112060
+1011136010200ff0133010100140100001c0101001a0100009601011206010111
+01120601011136010200ff013301010011010000000100001d010100b2010112060101110112060
+1011135010400ff0131010100120102001c010300b10101120601011101120601
+0111ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff0
+1ff015701011206010111011206010111ff01ff01570101120601011101120601
+0111ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff0
+1ff015701011206010111011206010111ff01ff01570101120601011101120601
+0111ff01ff01570101120601011101120601011124010600ff01ff012b010112060101110112060
+1011113010b0004010700870105003701000004010200290102000d0100000401
+0200150102000f0100001c0103000601000004010200bc0101120601011101120601011113010b0
+00501020000010200880101000101010036010000050101002a0101000d010000
+05010100160101000e0102001d0101000501020004010100bc01011206010111011206010111130
+10100000100000001000000010000000102000501020000010200880101000101
+010035010100050101002a0101000c01010005010100160101000f0100001e01010006010000050
+10100bc0101120601011101120601011113010200000100000001000000010000
+0001010005010200000102000001020001010100030103000201020001010200010103000001000
+0030103005d0101000101010035010100050101002a0101000c01010005010100
+150103002e0101000d010100bc01011206010111011206010111130101000001000000010000000
+10000000102000501050001010700010105000101020001010200000106000201
+05005c0101000101010001010100000103000301030002010100030101000101030000010000030
+10300070106000201040002010100000103000301030002010200000102000201
+0300000101000101040007010600020104000401030009010000000101000201020001010200010
+10300050103000201000000010100000101000901010004010300040104000201
+0100000103000201040002010100000103000101030000010200930101120601011101120601011
+11301020000010000000100000001000000010100050105000201060000010200
+010102000001010003010100000102000001020001010200010102005b010400030102000101010
+00101010001010100010101000301010000010100020101000201010001010100
+0801010005010200000101000201020001010100010101000101010002010100010101000101010
+00101010000010000010102000001010008010100050102000001010002010100
+0101010008010000000101000301010001010100040101000401010001010100010101000001010
+00001010008010100060101000401020000010100020102000101010000010100
+0201010002010200010101000101010002010000940101120601011101120601011113010100000
+10000000100000001000000010200050102000001020001010300000101000001
+020001010200000101000001010000010100000103000101000001010200010102005b010100010
+10100020101000201010000010100030101000001010000010100000101000001
+0100030100000101010002010100080101000501010001010100020101000201010000010100030
+10100010101000101010001010100010101000301010001010100080101000501
+0100010101000101010002010100080100000101010003010100000100000501010003010100030
+10100000101000001010000010100080101000601010004010100020101000101
+0100020101000001010002010100020101000201010001010100020100009401011206010111011
+20601011113010200000100000001000000010000000101000501020000010200
+01010200040102000101020000010100000101000001010001010400020107005b0101000201010
+00101010005010100030101000001010000010100000101000101020004010600
+0801010005010100010101000201010005010100030101000101010001010100010101000101010
+00301010001010100080101000501010001010100010106000701050004010100
+0601010003010100030101000001010000010100000101000801010006010100040101000201010
+00101010008010300020101000701010000010000950101120601011101120601
+0111130101000001000000010000000100000001020005010200000102000101020004010200010
+10200000107000001000001010300010102006001010002010100010101000501
+01000301010000010100000101000001010003010200020101000d0101000501010001010100020
+10100050101000301010001010100010101000201030004010100010101000801
+01000501010001010100010101000c0100000201010004010100060101000301010003010100000
+10100000101000001010008010100060101000401010002010100010101000601
+0100010101000201010007010100000100009501011206010111011206010111130102000001000
+00001000000010000000101000501020000010200010102000401020001010200
+00010700000102000001020001010300010101005b0101000201010001010100050101000301010
+001010100000102000101000003010100010101000d0101000501010001010100
+0201010005010100030101000101010001010100010100000801010001010100080101000501010
+001010100010101000c0100000301010002010000000101000501010003010100
+0301010000010100000101000001010008010100060101000401010002010100010101000501010
+0020101000201010008010100960101120601011101120601011113010b000401
+07000001040004010500020102000001010001010600020106005b0101000101020001010100060
+10100010101000201010001010100010101000201010002010100020100000801
+0100010100000201010001010100020101000601010001010100020101000001020001010500030
+10100010101000801010001010000020101000101010002010100020100000601
+0100030101000101010001010100040101000401010001010100010101000001010000010100080
+10100060101000401020000010100020101000501010001010200020101000801
+0100060100008e0101120601011101120601011113010b000401060001010400050103000301010
+0010101000101000000010300040104005b010600010104000501030003010000
+030100000101000000010300040103000a010200020102000001030000010400050103000401020
+00001010001010500010102000001030008010200020102000001030002010300
+0701020001010200000102000101020001010500030103000201010000010100000101000601050
+00201050001010100000102000201040004010200010101000001040006010000
+060102008d01011206010111011206010111ff011c010000040100009a010000070100008e01011
+206010111011206010111ff011c01010002010100970100000001000098010112
+06010111011206010111ff011d010400980102009801011206010111011206010111ff01ff01570
+1011206010111011206010111ff01ff015701011206010111011206010111ff01
+ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
+1011206010111011206010111ff01ff015701011206010111011206010111ff01
+ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
+10112060101110112060101112401070025010400ff01ff010112060101110112
+0601011113010b0004010700250104005d010300000100004601030026010300320103000901000
+004010200140103000601000004010200b2010112060101110112060101111301
+0b000501020000010200270102005c0101000101020048010100250101000101010030010100010
+101000801000005010100160101000501020004010100b2010112060101110112
+0601011113010100000100000001000000010000000102000501020001010100270102005c01000
+00301010048010100250101000101010030010100010101000701010005010100
+160101000601000005010100b201011206010111011206010111130102000001000000010000000
+10000000101000501020004010300000102000101040002010000000101000001
+0100010101000001030004010200040103000301030000010000490101000301000048010100250
+10100340101000b01010005010100160101000d010100b2010112060101110112
+0601011113010100000100000001000000010000000102000501040002010200010102000001060
+00101070000010700030102000301050001010600490102000701030004010300
+0901030002010200010102000101040002010000000101000001010001010100000102000501010
+00501030003010300000100000801030004010100090102000001020002010300
+000100000301030009010300040101000901060002010400040103000a010100040103000401040
+00201010000010300020104000201010000010300010103000001020089010112
+0601011101120601011113010200000100000001000000010000000101000501040003010200000
+10100010101000101020001010700000103000001020003010200020102000101
+020000010200000102004a010300040101000101010002010100010101000701010001010100020
+10100010101000101010002010100010101000001010000010100010102000001
+0100040101000401010001010100010101000201010007010100010101000201040008010100010
+10100010101000201010002010100010101000701010001010100020104000901
+0100050102000001010002010100010101000901010006010100040102000001010002010200010
+101000001010002010100020102000101010001010100020100008a0101120601
+0111011206010111130101000001000000010000000100000001020005010200060103000501030
+00101010000010100000101000001020001010200030102000201020001010200
+00010300010100004b0103000201010002010100010101000201010006010100020101000301010
+00001000002010100020101000101010000010100000101000101010002010100
+03010100030101000201010001010100030100000601010003010100020101000a0101000101010
+0010101000301000001010100020101000601010003010100020101000b010100
+0501010001010100010101000201010009010100060101000401010002010100010101000201010
+00001010002010100020101000201010001010100020100008a01011206010111
+0112060101111301020000010000000100000001000000010100050102000601030003010500010
+10100000101000001010000010200010102000301020002010700010104004e01
+0200010106000101060006010600040101000601030001010100000101000001010001010100020
+101000301010003010600020102000901010003010100020101000a0101000101
+010002010200040106000601010003010100020101000b010100050101000101010001010600090
+10100060101000401010002010100010101000801030002010100070101000001
+00008b0101120601011101120601011113010100000100000001000000010000000102000501020
+00101010002010300020102000001020001010100000101000001010000010200
+0101020003010200020102000501000001010300490100000301010001010100060101000b01010
+00901010004010100010101000101010000010100000101000101010002010100
+0301010003010100090102000701010003010100020101000a01010001010100040102000201010
+00b01010003010100020101000b0101000501010001010100010101000e010100
+0601010004010100020101000101010006010100010101000201010007010100000100008b01011
+20601011101120601011113010200000100000001000000010000000101000501
+0200000102000101010000010200010102000001020001010100000101000001010000010200000
+10300030102000201030001010100000102000001020049010100030100000101
+0100060101000b01010008010000000101000201010002010100010101000001010000010100010
+10100020101000301010003010100060100000301010006010100030101000201
+01000a010100010101000101000003010100010101000b01010003010100020101000b010100050
+1010001010100010101000e010100060101000401010002010100010101000501
+01000201010002010100080101008c0101120601011101120601011113010b00040107000001020
+00101020000010700000101000001010000010100000106000201060001010600
+0001060049010200010101000201010002010000020101000201000007010100020100000201010
+00101010001010100010102000101010000010100000101000101010001010100
+04010100040101000201000001010100020101000701010001010100030101000a0101000001020
+0010101000201010002010100020100000701010001010100030101000b010100
+0101000002010100010101000201010002010000090101000601010004010200000101000201010
+00501010001010200020101000801010006010000840101120601011101120601
+011113010b000401070000010200000103000101020000010200000101000001010000010100000
+10500030106000201040001010000000103004a01000000010300040103000401
+0300090103000201020001010200010102000101010000010100000101000001010001010400030
+1050003010300020100000001030009010300030103000a010200000101000001
+0000000103000401030009010300030103000b01020002010200000103000201030008010500020
+10500010101000001020002010400040102000101010000010400060100000601
+0200830101120601011101120601011148010200ad010100cc01000007010000840101120601011
+101120601011148010200ad010100c9010000000100008e010112060101110112
+0601011147010400ab010300c80102008e01011206010111011206010111ff01ff0157010112060
+10111011206010111ff01ff015701011206010111011206010111ff01ff015701
+011206010111011206010111ff01ff015701011206010111011206010111ff01ff0157010112060
+10111011206010111ff01ff015701011206010111011206010111ff01ff015701
+011206010111011206010111ff01ff015701011206010111011206010111ff01ff0157010112060
+10111011206010111230107000c010400ff01ff01190101120601011101120601
+011113010b00030108000a01060076010300000100003d010300060100001f0102003a010000100
+1000007010000340102000f0100008e0101120601011101120601011113010b00
+04010200010102000a0102000001020075010100010102003f010100050102001f0101003a01000
+01001000006010200340101000e0102008d010112060101110112060101111301
+01000001000000010000000100000001020004010200010102000a01020079010000030101003f0
+101000601000020010100390101000f01010007010000350101000f0100008e01
+0112060101110112060101111301020000010000000100000001000000010100040102000001020
+00301030002010500040103000201020001010100030103000101030000010200
+03010200000101000201030041010100030100003f01010028010100390101000f0101003d01030
+09e01011206010111011206010111130101000001000000010000000100000001
+0200040105000301050001010500030105000101070001010500000108000101060001010500400
+10200070103000301040002010100000102000901030002010100000102000e01
+0100040103000301010000010200040103000901040003010300040103000201020000010200010
+10000000101000001010003010300020101000001020002010600020104000201
+0600020103000501030002010100000102000901030002010100000102000901000000010100020
+10200010102000101030005010300020100000001010000010100790101120601
+0111011206010111130102000001000000010000000100000001010004010500020102000101020
+00101020004010200010102000101060000010200010102000001030000010200
+0001030000010200000102000101020040010300040101000101010001010100020101000201010
+001010100070101000101010002010100010101000d0101000601010004010100
+0101010002010100010101000701010000010200020101000101010002010100010101000201010
+00101010001010100000101000001010001010100010101000201010001010100
+0301010004010100020101000301010007010100040101000101010002010100010101000701010
+00101010002010100010101000801000000010100030101000101010004010100
+0401010001010100010101000001010000010100780101120601011101120601011113010100000
+10000000100000001000000010200040102000001020001010200010102000101
+0200040102000101020001010300000101000001020001010200000102000101020000010200020
+10100000102000101020041010300020101000201010001010100020101000201
+0100010101000601010003010100010101000101010001010700030101000601010004010100010
+10100010101000201010006010100020101000101010003010100000101000201
+0100020101000101010001010100000101000001010000010100020101000201010001010100030
+10100040101000201010003010100070101000301010003010100010101000101
+0100060101000301010001010100010101000801000001010100030101000001000005010100030
+10100030101000001010000010100000101007801011206010111011206010111
+1301020000010000000100000001000000010100040102000001020001010700010102000401070
+00101020004010700000102000101020000010200050107004301020001010100
+0901030002010100010101000601010003010100010101000101010001010700030101000601010
+00401010001010100010106000601010002010100010101000301010000010100
+0701010001010100010101000001010000010100000106000201010001010100030101000701030
+00301010007010100030101000301010001010100010101000601010003010100
+0101010001010100070105000401010006010100030101000301010000010100000101000001010
+07801011206010111011206010111130101000001000000010000000100000001
+0200040102000001020001010200060102000401020006010200040102000501020001010200000
+10200050102004401000003010100010101000701010001010100020101000101
+0100060101000301010001010100010101000d010100060101000401010001010100010101000b0
+10100020101000101010003010100000101000701010001010100010101000001
+0100000101000001010007010100010101000301010005010100010101000301010007010100030
+10100030101000101010001010100060101000301010001010100010101000701
+0000020101000401010006010100030101000301010000010100000101000001010078010112060
+10111011206010111130102000001000000010000000100000001010004010200
+0101020000010300010101000101020004010300010101000101020004010300010101000001020
+001010200000103000101010000010300010101003f0101000301000001010100
+0301000001010100020101000201010001010100060101000301010001010100010101000d01010
+0060101000401010001010100010101000b010100020101000101010003010100
+0001010003010000020101000101010001010100000101000001010000010100070101000101010
+00301010004010100020101000301010007010100030101000301010001010100
+0101010006010100030101000101010001010100070100000301010002010000000101000501010
+00301010003010100000101000001010000010100780101120601011101120601
+011113010b0003010300010102000101060000010400040106000001040004010a0000010300010
+10600010106003f01020001010100020101000101010001010100010102000201
+010001010100070101000101010002010100010101000d010100060101000401010001010100020
+10100020100000701010000010200020101000101010002010100010101000201
+0100000102000101010000010100000101000101010002010000020101000101010003010100010
+10000010101000101020003010100010100000401010004010100010101000201
+0100010101000701010001010100020101000101010006010100030101000101010001010100040
+10100040101000101010001010100000101000001010003010000730101120601
+011101120601011113010b000301030001010200020104000101040005010400010104000501040
+00001030000010300020104000301040040010000000103000401030003010200
+0101010000010200000103000701030002010200000103000a01050002010500010102000001030
+00201030009010200000101000201030004010300040102000001010000010100
+0001010000010100020103000201020000010300030102000301020001010100030102000301050
+00301030002010200000103000701030002010200000103000501020001010200
+0001020001010200010105000301030002010100000101000001010002010200720101120601011
+1011206010111ff01e20100007301011206010111011206010111ff01ff015701
+011206010111011206010111ff01ff015701011206010111011206010111ff01ff0157010112060
+10111011206010111ff01ff015701011206010111011206010111ff01ff015701
+011206010111011206010111ff01ff015701011206010111011206010111ff01ff0157010112060
+10111011206010111ff01ff015701011206010111011206010111ff01ff015701
+011206010111011206010111ff01ff015701011206010111011206010111ff01ff0157010112060
+1011101120601011125010300000101000c0100000701000007010100ff01ff01
+090101120601011101120601011113010b00040107000b010100060101000601030068010200000
+1000000010200470102000f01000039010000390100000d01020006010300a801
+01120601011101120601011113010b0004010200010102000b01010006010100070101006801010
+00001020001010100480101000e01020038010000380102000d01010008010100
+a801011206010111011206010111130101000001000000010000000100000001020004010200020
+101000a01020005010200710101000201010001010100480101000f0100003801
+0100390100000e01010008010100a80101120601011101120601011113010200000100000001000
+00001000000010100040103000101010002010300020106000101060002010400
+0101030000010200020104000001000001010300000100004a01010003010000010101004701030
+0480101004901010008010100a801011206010111011206010111130101000001
+0000000100000001000000010200050103000401050001010600010106000201040001010800000
+10700000106004a01010003010000010104000301040002010100000102000301
+0300000101000201030008010400020101000001020009010000000101000201020001010200010
+10300050103000201000000010100000101000701030000010000010103000001
+0200010103000001000001010600030103000201000000010100000101000601020001010200010
+10400020101000001030002010300040104000301040005010100050103009e01
+0112060101110112060101111301020000010000000100000001000000010100060103000201020
+00101020001010200050102000701020002010300000102000001020000010300
+00010200000102004a0101000601020000010100010101000201010002010100010101000101010
+00101010000010000010101000101010006010100020101000201010001010100
+0801000000010100030101000101010004010100040101000101010001010100000101000001010
+00501010002010100020101000201000001010100020101000301010005010100
+0101010001010100000101000001010006010100020100000101010002010100020102000101010
+00301010003010100020101000201020000010100040101000401010001010100
+9d01011206010111011206010111130101000001000000010000000100000001020007010300010
+10200010102000101020005010200070102000201020001010200000102000001
+020001010300010100004a010100060101000101010001010100020101000201010001010100010
+10100010101000201010002010100060101000201010002010100010101000801
+0000010101000301010000010000050101000301010003010100000101000001010000010100050
+10100030100000201010002010000010101000301000003010100040101000201
+0100010101000001010000010100060101000201000001010100020101000201010002010100030
+10100030101000201010002010100020101000301010003010100020101009d01
+0112060101110112060101111301020000010000000100000001000000010100040101000101030
+00001070001010200050102000701020002010200010102000001020000010200
+020104004b010100060101000101010004010300020101000101010001010100010101000201060
+00901030002010100010101000701050004010100060101000301010003010100
+0001010000010100000101000601020006010100000100000301020006010100040106000101010
+00001010000010100070101000001000005010300020101000801010006010300
+020101000201010003010100030106009d010112060101110112060101111301010000010000000
+10000000100000001020004010100020102000001020006010200050102000701
+020002010200010102000101040002010000010103004a010100030100000101010001010100020
+1010001010100020101000101010002010300030101000c010100010101000201
+0100010101000701000002010100040101000601010003010100030101000001010000010100000
+10100080102000401010000010000050102000401010004010100060101000001
+0100000101000701010000010000030101000101010002010100080101000401010001010100020
+10100020101000301010003010100a20101120601011101120601011113010200
+0001000000010000000100000001010004010200010102000001030001010100010102000001010
+00201020000010100040102000201020001010200000103000401020000010200
+4a01010003010000010101000101010001010100020101000201010001010100010100000701010
+00b01010002010100020101000101010007010000030101000201000000010100
+0501010003010100030101000001010000010100000101000501000003010100040101000301000
+00301010003010100040101000601010000010100000101000701030002010100
+020101000201010008010100030101000201010002010100020101000301010003010100a201011
+20601011101120601011113010b00040107000101060001010500020105000201
+0a000001030000010600010106004b0101000101010001010100010101000101010001010200020
+10100010101000101050003010100020100000601010001010200020101000101
+0100060101000301010001010100010101000401010004010100010101000101010000010100000
+10100050101000201010004010100030101000201010003010100010100000201
+0100020100000101010000010100000101000801010003010100010102000201010008010100030
+10100010102000201020000010100040101000401010002010000040100009701
+01120601011101120601011113010b00040101000001030003010400030103000401030003010a0
+0000103000101060000010000000103004d010300010102000001030001010200
+0101010000010200000103000101050003010300080102000101010000010200000103000501020
+00101020000010200010102000101050003010300020101000001010000010100
+0501000000010300050100000401000000010300050102000401030002010100000101000001010
+00801010004010200010101000001040004010500020102000101010000010100
+0001020003010500030103000401020096010112060101110112060101115a01020001010200750
+1000004010000640100007801000097010112060101110112060101115a010700
+75010100020101006101000000010000ff0112010112060101110112060101115b0105007701040
+062010200ff011201011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff015701011206010111011206010111ff01ff015701011206010111
+011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
+10111ff01ff01570101120601011100120911ff01ff0157010112081109120011
+ff01ff01570109120011011206010111ff01ff015701011206010111011206010111ff01ff01570
+1011206010111011206010111ff01ff015701011206010111011206010111ff01
+ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
+1011206010111011206010111ff01ff015701011206010111011206010111ff01
+ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
+1011206010111011206010111ff01ff015701011206010111011206010111ff01
+ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
+1011206010111011206010111ff01ff015701011206010111011206010111ff01
+ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
+1011206010111011206010111ff01ff015701011206010111011206010111ff01
+ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
+1011206010111011206010111ff12ff12591206010111011206010011ff12ff12
+5a120601011101121e0100110012ff01ff012701001100121e01011101121e0100110012ff01ff0
+12701001100121e01011101121e0100110012ff01ff012701001100121e010111
+01121e0100110012ff01ff012701001100121e01011101121e0100110012ff01ff0127010011001
+21e01011101121e0100110012ff01ff012701001100121e01011101121e010011
+0012ff01ff012701001100121e01011101121f110012ff11ff112811001220110012ff11ff116c1
+1
+pop pop setmatrix
+
+/#copies 1 def
+grestore
+%%Trailer