Bladeren bron

+ Added for .ps and .pdf versions of docs

michael 25 jaren geleden
bovenliggende
commit
4b9a613c2d
6 gewijzigde bestanden met toevoegingen van 9032 en 0 verwijderingen
  1. 1443 0
      docs/pics/idedlg.eps
  2. BIN
      docs/pics/idedlg.png
  3. 6789 0
      docs/pics/idestart.eps
  4. BIN
      docs/pics/idestart.png
  5. 800 0
      docs/pics/idewin.eps
  6. BIN
      docs/pics/idewin.png

+ 1443 - 0
docs/pics/idedlg.eps

@@ -0,0 +1,1443 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (idedlg.eps)
+%%CreationDate: (Sun Nov 12 11:13:40 2000)
+%%BoundingBox: 0 0 793 379
+%%DocumentData: Clean7Bit
+%%LanguageLevel: 1
+%%Pages: 0
+%%EndComments
+
+%%BeginDefaults
+%%PageOrientation: Portrait
+%%EndDefaults
+
+%%BeginProlog
+%
+% Display a color image.  The image is displayed in color on
+% Postscript viewers or printers that support color, otherwise
+% it is displayed as grayscale.
+%
+/buffer 512 string def
+/byte 1 string def
+/color_packet 3 string def
+/pixels 768 string def
+
+/DirectClassPacket
+{
+  %
+  % Get a DirectClass packet.
+  %
+  % Parameters:
+  %   red.
+  %   green.
+  %   blue.
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile color_packet readhexstring pop pop
+  compression 0 gt
+  {
+    /number_pixels 3 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add 3 mul def
+  } ifelse
+  0 3 number_pixels 1 sub
+  {
+    pixels exch color_packet putinterval
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/DirectClassImage
+{
+  %
+  % Display a DirectClass image.
+  %
+  systemdict /colorimage known
+  {
+    columns rows 8
+    [
+      columns 0 0
+      rows neg 0 rows
+    ]
+    { DirectClassPacket } false 3 colorimage
+  }
+  {
+    %
+    % No colorimage operator;  convert to grayscale.
+    %
+    columns rows 8
+    [
+      columns 0 0
+      rows neg 0 rows
+    ]
+    { GrayDirectClassPacket } image
+  } ifelse
+} bind def
+
+/GrayDirectClassPacket
+{
+  %
+  % Get a DirectClass packet;  convert to grayscale.
+  %
+  % Parameters:
+  %   red
+  %   green
+  %   blue
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile color_packet readhexstring pop pop
+  color_packet 0 get 0.299 mul
+  color_packet 1 get 0.587 mul add
+  color_packet 2 get 0.114 mul add
+  cvi
+  /gray_packet exch def
+  compression 0 gt
+  {
+    /number_pixels 1 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add def
+  } ifelse
+  0 1 number_pixels 1 sub
+  {
+    pixels exch gray_packet put
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/GrayPseudoClassPacket
+{
+  %
+  % Get a PseudoClass packet;  convert to grayscale.
+  %
+  % Parameters:
+  %   index: index into the colormap.
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile byte readhexstring pop 0 get
+  /offset exch 3 mul def
+  /color_packet colormap offset 3 getinterval def
+  color_packet 0 get 0.299 mul
+  color_packet 1 get 0.587 mul add
+  color_packet 2 get 0.114 mul add
+  cvi
+  /gray_packet exch def
+  compression 0 gt
+  {
+    /number_pixels 1 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add def
+  } ifelse
+  0 1 number_pixels 1 sub
+  {
+    pixels exch gray_packet put
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/PseudoClassPacket
+{
+  %
+  % Get a PseudoClass packet.
+  %
+  % Parameters:
+  %   index: index into the colormap.
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile byte readhexstring pop 0 get
+  /offset exch 3 mul def
+  /color_packet colormap offset 3 getinterval def
+  compression 0 gt
+  {
+    /number_pixels 3 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add 3 mul def
+  } ifelse
+  0 3 number_pixels 1 sub
+  {
+    pixels exch color_packet putinterval
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/PseudoClassImage
+{
+  %
+  % Display a PseudoClass image.
+  %
+  % Parameters:
+  %   class: 0-PseudoClass or 1-Grayscale.
+  %
+  currentfile buffer readline pop
+  token pop /class exch def pop
+  class 0 gt
+  {
+    currentfile buffer readline pop
+    token pop /depth exch def pop
+    /grays columns 8 add depth sub depth mul 8 idiv string def
+    columns rows depth
+    [
+      columns 0 0
+      rows neg 0 rows
+    ]
+    { currentfile grays readhexstring pop } image
+  }
+  {
+    %
+    % Parameters:
+    %   colors: number of colors in the colormap.
+    %   colormap: red, green, blue color packets.
+    %
+    currentfile buffer readline pop
+    token pop /colors exch def pop
+    /colors colors 3 mul def
+    /colormap colors string def
+    currentfile colormap readhexstring pop pop
+    systemdict /colorimage known
+    {
+      columns rows 8
+      [
+        columns 0 0
+        rows neg 0 rows
+      ]
+      { PseudoClassPacket } false 3 colorimage
+    }
+    {
+      %
+      % No colorimage operator;  convert to grayscale.
+      %
+      columns rows 8
+      [
+        columns 0 0
+        rows neg 0 rows
+      ]
+      { GrayPseudoClassPacket } image
+    } ifelse
+  } ifelse
+} bind def
+
+/DisplayImage
+{
+  %
+  % Display a DirectClass or PseudoClass image.
+  %
+  % Parameters:
+  %   x & y translation.
+  %   x & y scale.
+  %   label pointsize.
+  %   image label.
+  %   image columns & rows.
+  %   class: 0-DirectClass or 1-PseudoClass.
+  %   compression: 0-RunlengthEncodedCompression or 1-NoCompression.
+  %   hex color packets.
+  %
+  gsave
+  currentfile buffer readline pop
+  token pop /x exch def
+  token pop /y exch def pop
+  x y translate
+  currentfile buffer readline pop
+  token pop /x exch def
+  token pop /y exch def pop
+  currentfile buffer readline pop
+  token pop /pointsize exch def pop
+  /Helvetica findfont pointsize scalefont setfont
+  x y scale
+  currentfile buffer readline pop
+  token pop /columns exch def
+  token pop /rows exch def pop
+  currentfile buffer readline pop
+  token pop /class exch def pop
+  currentfile buffer readline pop
+  token pop /compression exch def pop
+  class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
+  grestore
+} bind def
+%%EndProlog
+%%Page:  1 1
+%%PageBoundingBox: 0 0 794 380
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+794 380
+12.000000
+794 380
+1
+0
+0
+32
+a1a1a1
+009999
+000000
+000099
+ffffff
+006666
+009900
+505050
+ffff66
+787878
+939393
+666666
+868686
+ccff66
+e4e4e4
+006600
+cccccc
+66ff66
+66cc66
+d6d6d6
+cccc66
+99cc66
+ccff33
+99cc99
+ccffcc
+66cc33
+99cc33
+000000
+000000
+000000
+000000
+000000
+00ff00ff00ff001900ff00ff00ff0019001c0404000e040400ff0026040100040405003f
+0401001a040100ff0050001c0404000e040400ff0026040100040405003f0401001a0401
+00ff0050001c04010014040100f810000e0004020e00130000310401002610000e000402
+0e011300001904010011040100ff0050001c04010014040100f710000406003104010025
+13000407001904010011040100ff0050001c0401000511080005040100f704010e001000
+000110000e0000030e0004020e000002040100000e000400100000000e00040013000001
+04010000130004010e0010000003040400080401000613000e0004010e00100000030401
+000013000402000d04011300000210011300000004000e00000613000400000104040004
+0407000413000e0004010e001300000204010000130004010e001000000413000e000401
+0e0010000003130004020e00130000ff0035001c0401000511080005040100f613000400
+0e0000080e0004040e00000104010e0004010e010402000104010e000404100000020404
+0008040100050e0004051000000204010e000403000d0401100000060e00040000011300
+04000e0000010e01000104040004040700030e000405000204010e0004030e0000030e00
+0405100000010e00040500ff003500050412000304010005110800050401000304e6000b
+0e00040010000007130004000e001000000010000e0004001300000004010e0010000401
+0e001000040100010402130000010e0004000e0000050401000804010004130004000e00
+100000010e0004000e0000020402130000010400000d0e00040113001000000413000400
+00010e0004000e0000010e00130000040401000604010006130004011300000110001300
+0002040210000000130004010002130004000e00100000010e0004000e00000104011000
+000110001300000d04ff0425000100050412000304010005110800050401000304e6000b
+040100080401100000021000040100000401100000000401100000000401000104011000
+000210000401000504010008040100040e00040010000003040100020401100000120e00
+04020e001300000213000400100000000400130004000001040010000004040100060401
+00060e00040013000007040110000002040100020e000400100000030401000104010e00
+1000001004ff042500010005040100140401000511080005040100f60401000804010004
+040100000401000104010001040100010401000404010005040100080401000404080002
+04010014100013000e000402100000001000040013001000040000000400100104001000
+0004040100060401000604010008040100030401000204080001100004031300100000ff
+003104010001000504010000040f000304010005110800050401000304e6000b04011000
+000704010004040100000401000104010001040100010401000404010005040100080401
+0004040800020401001710000e0004000e000001040013010e0000000e00130104000005
+04010006040100060401000804010003040100020408000310000e0004021300000c04ff
+0422000004010001000504010000040f000304010005110800050401000304e6000b0e00
+04000e000007040110000002100004010000040100010401000104010001040100031000
+04000e000005040100080401000404011000000804010019040100010e02130000001300
+0e0013000e0000050401000604010006040113000007040100030401000204011000000c
+13000401000c04ff04220000040100010005040100000401001104010005110800050401
+00f6100004010e0010000001100013000001130004000e001000000010000e0004001300
+000004010001040100010401000104010e00100000001000040113000005040100080401
+0004130004000e0010000002100100020401001204001300100000011000130004010001
+0e00040110000000100004000e0013000005040100060401130000011000000213000401
+130000011000130000020401000304010002130004000e0010000002100100010e001000
+00021000040100ff002d0401000004010001000504010000040100110401000511080005
+040100f71000040600020e0004040e00000104010001040100010401000104060e000006
+04010008040100050e000406000204010012040710000001130004010002040110000005
+040100060e00040400030e000405000204010003040100030e00040600010406130000ff
+002d0401000004010001000504010000040100110401000511080005040100f810000e00
+04020e00130000030e0004020e000002040100010401000104010001040110000e000401
+0e000007040100080401000613000e0004020e001000000204010012100013000e000402
+0e0010000002100004000e0000020401100000050401000610000e0004020e0000041300
+0e0004010e0013000002040100030401000413000e0004020e001000000110000e000402
+0e00130000ff002e04010000040100010005040100000401001104010014040100ff0017
+040100ff00c20401000004010001000504010000040100110404000e040400ff00170401
+00ff00c20401000004010001000504010000040100110404000e040400ff0017040100ff
+00c20401000004010001000504010000040100ff00ff00ff000704010000040100010005
+04010000040100ff00ff00ff00070401000004010001000504010000040100ff00ff00ff
+00070401000004010001000504010000040100ff00ff00ff000704010000040100010005
+04010000040100ff00ff00ff00070401000004010001000504010000040100ff00ff00ff
+00070401000004010001000504010000040100ff00ff00ff000704010000040100010005
+04010000040100ff00ff00ff000704010000040100010005040100000401001202640003
+02c1000302690003026900ed0401000004010001000504010000040100120264000302c1
+000302690003026900ed04010000040100010005040100000401001202010060020100c3
+0201006b0201006b020100ed040100000401000100050401000004010012020100600201
+00c30201006b0201006b020100ed04010000040100010005040100000401001202010060
+020100c30201006b0201006b020100ed0401000004010001000504010000040100120201
+0060020100c30201006b0201006b020100ed040100000401000100050401000004010012
+02010060020100c30201006b0201006b020100ed04010000040100010005040100000401
+001202010060020100c30201006b0201006b020100ed0401000004010001000504010000
+0401001202010060020100c30201006b0201006b020100ed040100000401000100050401
+00000401001202010060020100c30201006b0201006b020100ed04010000040100010005
+040100000401001202010060020100c30201006b0201006b020100ed0401000004010001
+00050401000004010012020100600201002c070100680701002902010030070100380201
+006b020100ed040100000401000100050401000004010012020100600201002c07010068
+0701002902010030070100380201006b020100ed04010000040100010005040100000401
+0012020100100a000900070209010c0000190701002b020100110a000900070209000c00
+00130701005b070100360201000e0d0008000d00000508010016070100380201000f0805
+14000054020100ed0401000004010001000504010000040100120201000f0c0007070019
+0701002b020100100a00070600130701005b070100360201000e14000801000414000800
+14000016070100380201000f08060d000053020100ed0401000004010001000504010000
+040100120201000f07010c0000020a010c0000010d0008001400000408000d0000000701
+00000c00070109000a000002070700030c000900070209000a0000020900070009000002
+0a0007000900001002010010070109000a0000010a000900000309000702090000050900
+070109000a00070100030c000900070109000a00000f0d0008010d001400080100030c00
+0900070109000a000002070100000c00070109000a0000040c000900070109000a000003
+070100000c00070200030c000900070209000a0000020707000307040006090007020900
+0003070100000c00070109000a0000110201000f0801140000030d000800140000020c00
+0900070109000a000003070100000c0007020002070100000c00070109000a0000040900
+0702090000040c00070209000c0000050c000900070109000a0000110201000f08010002
+140008010003070100000c000702000409000702090000020700090000060c0007000001
+0c00070209000c0000050c000900070109000a000003070100000c0007020011020100ed
+0401000004010001000504010000040100120201000f07010a0000071400080100031400
+080014000000070109000703090000020707000307050900000307010c00000107010011
+0201000f0c000700090000080900070409000003090007060002090007050a00000d0d00
+08060002090007050a00000107010900070309000003090007050a000002070109000703
+000307050900000207070003070400050900070409000002070109000703090000110201
+000f14000801000308010002090007050a00000207010900070300020701090007040a00
+00020900070409000002090007050004090007050a0000100201000f0801000308010003
+070109000703000309000704090000010900070000010c00070009000001090100000900
+07050004090007050a0000020701090007030011020100ed040100000401000100050401
+0000040100120201000f090007010c000a0000060801140000020801000107020a000000
+0c00070100040701000b0c00070100030a0007010a000c0007000a0000110201000f0900
+07000a0000070c00070009000a0000000a00090007000c0000010c0007010a0000000a00
+0900070100010c00070009000a000001090007000900000c140008011400000014000d00
+080100010c00070009000a000001090007000900000107020a0000000c00070100020c00
+070009000a000001090007000900000207020c000001070000070c00070100040701000a
+070100040c00070009000a0000000a00090007000c00000107020a0000000c0007010011
+0201000f140008011400000114000800140000010c00070009000a000001090007000900
+000207020c0000010700000207020c00000109000700090000010c00070009000a000000
+0a00090007000c00000107010a0000010a000c0000030c00070009000a00000109000700
+090000100201000f0801000114000d0008001400000307020c000001070000020c000700
+09000a0000000a00090007000c0000000c0007000001090007000900000109000c000000
+07010a0000010a000c0000030c00070009000a000001090007000900000207020c000001
+07000011020100ed04010000040100010005040100000401001202010010090007020900
+0c000004140008000d000001140008001400000107010a000002070100040701000c0701
+0004090007020c0000120201000f0701000807010a0000020a0007010001090007000a00
+000307010001090007000a0000030701000c0d0008001400000308010001090007000a00
+00030701000107010a00000207010002090007000a0000030701000207010a00000c0701
+00040701000a0701000407010a0000020a000701000107010a0000020701001102010010
+0d0008000d0000011400080014000001090007000a0000030701000207010a0000060701
+0a0000020a000701000107010a0000020a0007010001070109000a000006090007000a00
+0003070100100201000f08051400000407010a00000607010a0000020a00070100000c00
+07000a00000007000c000700000107000a000000070109000a000006090007000a000003
+0701000207010a000015020100ed04010000040100010005040100000401001202010011
+0a000c00090007020a000003080114000000080100020701000307010004070100070a00
+0900070400050701090000130201000f0701000807010004070100010701000407010001
+0708000c080100040801000107080001070100030701000207080002070100080a000900
+070400040701000a07010004070100040701000107010003070100110201001014000801
+0001080100020708000207010007070100040701000107010004070100010a0007030c00
+0a000003070800100201000f08050d0000040701000707010004070100000a0007000c00
+0a000700000007000a0107000a0000000a0007030c000a00000307080002070100160201
+00ed040100000401000100050401000004010012020100140a0009000700090000031400
+08000d0014000800140000020701000307010004070100060a00070009000a0000010701
+0005070200130201000f07010a000007070100040701000107010004070100010708000c
+080100040801000107080001070100030701000207080002070100070a00070009000a00
+0001070100040701000a0701000407010004070100010701000307010011020100110801
+14010800140000020708000207010007070100040701000107010004070100030a000900
+07020c000002070800100201000f0801000114000d0008000d0000030701000707010004
+0701000107000c010900000009000c01070000030a00090007020c000002070800020701
+0016020100ed040100000401000100050401000004010012020100160701000408030003
+07010003070100040701000607010003070100040900070009000700090000120201000f
+090007000900000707010a0000020a000701000107010a0000030701000107010a000012
+08011400000214000801000107010a000007070100030701000207010a00000807010007
+07010003070100040701000a0701000407010a0000020a00070100010701000307010011
+02010011140008000d00140008001400000207010a00000807010007070100030a000700
+0900000107010a0000020a00070100060c000701000207010a0000160201000f08010003
+080100030701000707010a0000020a000701000109020c0000000c0009000c0009000006
+0c000701000207010a00000807010016020100ed04010000040100010005040100000401
+00120201000f07000c000a0000010a000c00070100041400080114000003070100030701
+000407010c0000010a00000207010c0000000a000c0007010a0000020a0007000a010701
+0a0000110201000f0a00070109000a0000010a000c0000010c00070009000a0000000a00
+090007000c00000109000700090000010a000900070100010c00070009000a0000020a01
+000c0d0008000d00140000001400080200010c00070009000a0000020a01000107010003
+070100020c00070009000a0000020a0100020701000707010c0000000a000c0007010a00
+000307010c0000010a000006070100040c00070009000a0000000a00090007000c000001
+070100030701001102010012080300030c00070009000a0000020a010002070100070701
+09000a0000000a0007010c0000010c00070009000a0000000a00090007000c0000010900
+0a0000020a00070100020c00070009000a0000020a0100100201000f0801000214000801
+0003070100070c00070009000a0000000a00090007000c000001090007010a0000000a00
+070009000c00000109000a0000020a00070100020c00070009000a0000020a0100020701
+0016020100ed0401000004010001000504010000040100120201000f07070a0000041400
+0801000407010003070100040900070400020900070800010700090000010c0007010011
+020100100a000706000209000704090000020a00070409000701000209000706000c1400
+08040d000801000209000706000107010003070100030900070600020701000709000708
+00020900070400060701000509000704090000020701000307010011020100120d000801
+1400000409000706000207010007070609000003090007040900000207060c0000030900
+070600100201000f0806140000030701000809000704090000020c000701000207010a00
+000107060c00000309000706000207010016020100ed0401000004010001000504010000
+040100120201000f0a000c000900070209000a000005140008000d000004070100030701
+00040a0009000702090000030900070109000a0107010900000009000700000309000700
+09000010020100110a000900070209000c00000309000702090000040a00090007010c00
+0000070100030c000900070209000a00000d14000d00080114000000080100030c000900
+070209000a00000107010003070100040c000900070209000a0000020701000809000701
+09000a010701090000020a00090007020900000607010006090007020900000307010003
+070100110201001214000801140000050c000900070209000a0000020701000707000900
+0a00090007010900000509000702090000030a000900070209000c0000050c0009000702
+09000a0000100201000f0805140000040701000909000702090000030a00070009000002
+07010a0000010a000900070209000c0000050c000900070209000a000002070100160201
+00ed0401000004010001000504010000040100120201001d0d0008001400003f02010047
+14010002140008000d0000730201006b0201006b020100ed040100000401000100050401
+0000040100120201001b08020d000040020100470806140000730201006b0201006b0201
+00ed0401000004010001000504010000040100120201001b08010d000041020100471400
+0d0008020d00140000740201006b0201006b020100ed0401000004010001000504010000
+0401001202010060020100c30201006b0201006b020100ed040100000401000100050401
+00000401001202010060020100ff00ff008f040100000401000100050401000004010012
+02010060020100ff00ff008f040100000401000100050401000004010012020100600201
+00ff00ff008f04010000040100010005040100000401001202010060020100ff00ff008f
+04010000040100010005040100000401001202010060020100ff00ff008f040100000401
+00010005040100000401001202010060020100ff00ff008f040100000401000100050401
+00000401001202010060020100ff00ff008f040100000401000100050401000004010012
+0201006002ff02ff027f00110401000004010001000504010000040100120201006002ff
+02ff027f0011040100000401000100050401000004010012020100ff00ff00de02010011
+040100000401000100050401000004010012020100ff00ff00de02010011040100000401
+000100050401000004010012020100ff00ff00de02010011040100000401000100050401
+000004010012020100ff00ff00de02010011040100000401000100050401000004010012
+020100ff00ff00de02010011040100000401000100050401000004010012020100ff00ff
+00de02010011040100000401000100050401000004010012020100ff00ff00de02010011
+040100000401000100050401000004010012020100ff00ff00de02010011040100000401
+000100050401000004010012020100ff00ff00de02010011040100000401000100050401
+000004010012020100810201001a020100ff0026020100080205002807000202070000d7
+02010011040100000401000100050401000004010012020100810201001a020100ff0026
+02010008020500270700020400d702010011040100000401000100050401000004010012
+0201001b09000700020207010b0000190201002809000700020207010b00001902010011
+020100f207000200090000300201000c0201002702010900000109000030020100a40201
+00110401000004010001000504010000040100120201001a0b0002070019020100270b00
+0207001902010011020100f20201070000300201000c0201002702010034020100a40201
+00110401000004010001000504010000040100120201001a02010b00000209010b000001
+070002000b000004020007000000020100000b000201070009000002020700030b000700
+02020700090000020700020007000002090002000700000c02010b00000209010b000000
+0200070000060b000200000102040004020700040b000700020107000b00000202010000
+0b0002010700090000040b00070002010700090000030b00020207000b0000d60b000200
+0700020000050b00020207000b0000040b00020207000b0000050b000700020107000900
+0001020100000700020009000000070002000b000001020100000b000201070009000006
+020100060b0007000201070009000003020100000b000202000c02080004070002020700
+0004020100000b0002020001020100000700020009000000070002000b0000020b000700
+0202070009000002020700a0020100110401000004010001000504010000040100120201
+001a0201090000070900020100030b000200090000000201070002030700000202070003
+02050700000302010b0000010201000d0201090000060700020000010b00020007000001
+070100010204000402070003070002050002020107000203070000030700020509000001
+0700020500d60701090002000b0000030700020500030700020500040700020509000000
+020107000201070102020001020107000204090000050201000507000205090000020201
+07000203000c020800030700020407000003020107000203000102010700020107010202
+0002020507000002020700a0020100110401000004010001000504010000040100120201
+001a070002010b000900000602010b000002020100010202090000000b00020100040201
+000b0b00020100030900020109000b0002000900000d070002010b00090000040b000200
+0001070002000700000107000b00000402010006020100060b0002010b00000109000b00
+00020202090000000b00020100020b000200070009000001070002000700000102010900
+000109000b0000d509000200090000000201000302010900000109000b00000302010900
+000109000b0000030b000200070009000001070002000700000002010700090002010700
+09000201000102020b0000010700020007000005020100040b0002000700090000010700
+02000700000202020b0000010200000f020100060b000200070009000000090007000200
+0b00000202020b00000102000001020107000900020107000900020100060b0002010004
+020100a4020100110401000004010001000504010000040100120201001b070002020700
+0b0000040b000200070000010b0002000b000001020109000002020100040201000c0201
+0004070002020b00000f0700020207000b0000020b0002000900000002000b0002000001
+0200090000040201000602010006070002000b0000070201090000020201000207000200
+090000030201000102010700090000d80b00020000010b00020009000002020107000900
+000602010700090000060700020009000003020100000201090000000201090000000201
+000102010900000209000201000502010004070002000900000302010002020109000013
+020100060201090000020900020100020201090000050201090000000201090000000201
+000702010004020100a4020100110401000004010001000504010000040100120201001c
+09000b000700020209000003020109000000020100020201000302010004020100070900
+07000204000502010700001109000b000700020209000000090002000b00090002000000
+020009010200090000040201000602010006020100080201000302010002020800010900
+02030b00090000d50200070000010900020007000002090002030b000900000309000203
+0b0009000003020800000201000102010001020100010201000402010005020100040208
+000202010014020100060201000402010002020100060201000102010001020100020900
+070002040004020100a4020100110401000004010001000504010000040100120201001f
+090007000200070000030b00020007000b0002000b000002020100030201000402010006
+0900020007000900000102010005020200140900070002000700000102000b0107000000
+07000b010200000502010006020100060201000802010003020100020208000309000700
+02020b0000d309000206090000030900070002020b0000040900070002020b0000020208
+000002010001020100010201000102010004020100050201000402080002020100140201
+000602010004020100020201000602010001020100010201000109000200070009000001
+02010004020100a402010011040100000401000100050401000004010012020100210201
+000402030003020100030201000402010006020100030201000407000200070002000700
+00150201000107020b0000000b0007000b0007000005020100060201000602010b000007
+020100030201000202010900000c0b00020100d3070002060b0000060b00020100070b00
+020100020201090000060201000102010001020100010201000309000200070000050201
+000402010900000802010014020100060201090000020900020100020201000602010001
+02010001020100010201000302010004020100a402010011040100000401000100050401
+0000040100120201001a02000b000900000109000b00020100040b0002010b0000030201
+00030201000402010b0000010900000202010b00000009000b0002010900000209000200
+090102010900000d02000b000900000109000b0002010001070002010900000009000200
+07000b0000050201000602010b000001090000020b0002010b00000109000b0000020201
+0003020100020b000200070009000002090100010700090000020900020100d302010003
+0900020100010700090000020900020100020700090000020900020100020b0002000700
+09000002090100000201000102010001020100010201070009000000090002010b000005
+020100040b0002000700090000020901000202010014020100060b000200070009000000
+0900070002000b0000020201000602010001020100010201000102010b00000009000b00
+02010900000302010b000001090000a00201001104010000040100010005040100000401
+00120201001a020709000004090002010004020100030201000407000204000207000208
+00010200070000010b000201000d0207090000010b000201000202010900000502010006
+070002040003070002050002020100030201000307000206000102060b0000d20b000200
+0b000004070002000b00000002060b00000202060b000003070002060000020100010201
+000102010001020607000006020100050700020600020201001402010007070002040700
+0003020100060201000102010001020100010700020800020700020400a0020100110401
+000004010001000504010000040100120201001a09000b00070002020700090000050900
+020007000004020100030201000409000700020207000003070002010700090102010700
+0000070002000003070002000700000c09000b0007000202070009000002090002000700
+000202010900000502010006090007000202070000040b000700020107000b0000020201
+0003020100040b000700020207000900000109000700020207000b0000d3070002000900
+00040b0002000700000009000700020207000b00000309000700020207000b0000050b00
+070002020700090000000201000102010001020100010200070009000700020107000007
+020100060b00070002020700090000020201001402010008070002020700000402010006
+0201000102010001020100020700020107000901020107000002090007000202070000a0
+020100110401000004010001000504010000040100120201002807000200090000ff00ff
+00b202010011040100000401000100050401000004010012020100260202070000ff00ff
+00b302010011040100000401000100050401000004010012020100260201070000ff00ff
+00b402010011040100000401000100050401000004010012020100ff00ff00de02010011
+0401000004010001000504010000040100120201000e010e0204010e020401250205010f
+0201010c0201016b0201017c0015011105010200010c0200050101210201017202010108
+0205017c000f020100110401000004010001000504010000040100120201000e010e0204
+010e020401250205010f0201010c0201010f05010202050101540201017c001501100500
+0202010c02020500012002010172020101080205017c000f020100110401000004010001
+000504010000040100120201000e010e020101140201010f08040d00150001120201010f
+0201011e020605000125020101aa0015010f050002010501010c05010201050001100204
+05010131020101480201010c0201017c000f020100110401000004010001000504010000
+040100120201000e010e020101140201010f08060d0001110201010f0201011e05010101
+050102010125020101aa0015010e0500020005000112050002000500010f020605000130
+020101480201010c0201017c000f02010011040100000401000100050401000004010012
+0201000e010e020101140201010f08010101120015000801150001030501020105010106
+02010104020101000500020105010102020101000500020105010103020401150201010f
+050102010501010205000200050001020500020005000101020701040501020105010102
+020101000500020105010103050002020501010402040106050002020500010302010100
+050002010501010305000202050101100500020205000103020101000500020105010138
+0015010d05000201011402010500010e0201010105010201050001020204010508010100
+150008020104050102010501010405010201050101020207010e05010202050101030500
+020205010104050002020501010505010201050101010201010005000200050001000500
+020005000101020101000500020105010106020101060501020105010103020101000500
+02020164000f020100110401000004010001000504010000040100120201000e010e0201
+01140201010f08010103150008000d000102050002050500010502010104020105000204
+050001010201050002030500010302040114050002000500010e05000205050001020201
+050001010201010202070103050002050500010102010500020305000102050002050104
+0204010505000204050001020201050002030500010205000205010f0500020405000102
+020105000203050001380015010d0500020005000114050002000500010e020101030500
+0200050001020204010508010d000803010305000205050001020500020501020207010e
+020505000102050002050103050002050104050002050500010002010500020105010202
+0101020105000204050001050201010505000205050001020201050002030164000f0201
+00110401000004010001000504010000040100120201000e010e020101140201010f0801
+010312000801010105000200050101010500020005000105020101040202050001010500
+02000500010102020500010005000201010602010114050002000500010d050002000501
+010105000200050001020500020105010200050001040201010605000200050101010500
+020005000101020205000100050002010102020105000101050101070201010405000200
+0501010005010200050001010202050001000500020101020201050001010501010e0500
+02000501010005010200050001010202050001000500020101380015010d050002000500
+0114050002000500010e0201010305000201010502010105080215000101080001020500
+020005010101050002000500010105000201050001010501010402010116050002010102
+020105000101050101030201050001010501010305000200050101010500020005000100
+020105010201050102010101020205000101050002000500010502010104050002000501
+0101050002000500010202020500010102000164000f0201001104010000040100010005
+04010000040100120201000e010e020101140201010f0801010408010101050002000500
+010302010105020101040201050001020500020101010201050001020201010602010113
+050002000500010e05000200050001030201010305000202050001050201010605000200
+05000103020101010201050001020201010202010501010a020101040201050001020500
+020101010201050001020201010202010501011102010500010205000201010102010500
+0102020101380015010d020101160201010e020101040201010502010105080112000106
+050002000500010302010101050002000500010902010117020101020201050101060201
+050101060500020005000103020101000201050001000201050001000201010102010500
+010205000201010502010104050002000500010302010102020105000168000f02010011
+0401000004010001000504010000040100120201000e010e020101140201010f08010104
+080101010208010502010104020101040201010102010103020101060201011205000200
+0500010f0208010402010500010602010106020801010201010302010102050002030501
+01070201010402010104020101010201010302010102050002030501010e020101040201
+010102010103020101380015010d020101160201010e0201010402010105020101050801
+0107020801010201010a0201011205010204010205000203050101030500020305010103
+020801000201010102010101020101010201010402010105020101040208010202010169
+000f020100110401000004010001000504010000040100120201000e010e020101140201
+010f08010103120008000d00010102080105020101040201010402010101020101030201
+010602010110050002000500011102080104020201060201010602080101020101030201
+010405010202050001060201010402010104020101010201010302010104050102020500
+010d020101040201010102010103020101380015010d020101160201010e020101030500
+0200050001050201010508010107020801010201010a0201011105000200050101010201
+010405010202050001040501020205000102020801000201010102010101020101010201
+010402010105020101040208010202010169000f02010011040100000401000100050401
+0000040100120201000e010e020101140201010f08010103150008000d00010102010500
+010b02010104020101030500020005000101020101030201010602010110050002000112
+020105000109050002000500020005000105020101060201050001070201010302010107
+05000201010602010104020105000102050002010101020101030201010705000201010d
+02010500010205000201010102010103020101380015010d050002000500011405000200
+0500010e0201010305000200050001050201010508010107020105000107020105000109
+020101110201010302010107050002010107050002010102020105000106020101010201
+0101020101010201010305000200050001050201010402010500010802010169000f0201
+00110401000004010001000504010000040100120201000e010e020101140201010f0801
+010112001500080112000101050002000501010205010105020101040201050101000500
+02010500010102010103020101060201010f050002000500011205000200050101020501
+010205000200050102010500010402010500010105000102050002000501010205010101
+020101030201010205010102050002010106020101040500020005010100050102000500
+010102010103020101020501010205000201010d05000200050101000501020005000101
+02010103020101380015010d0500020005000114050002000500010e0201010105010201
+050001050201010508010107050002000501010205010101050002010500010105010104
+0201050001010500010d0201050001000501020105000101050101020500020101020501
+010205000201010205000200050101020501010002010101020101010201010102010501
+010005000201050001050201010405000200050101020501010202010169000f02010011
+0401000004010001000504010000040100120201000e010e020101140201010f08061500
+01030500020601050201010402060500010202010103020101060201010f0207010e0500
+020601020200050001010500020101040500020401030500020601010201010302010102
+020605000106020101050500020405000102020101030201010202060500010e05000204
+0500010202010103020101380015010d05000201011402010500010e0206050001060201
+01050801010805000206010205000205010405000204010d050002080100020605000102
+020605000103050002060100020101010201010102010101020605000106020101050500
+0206010202010169000f020100110401000004010001000504010000040100120201000e
+010e020101140201010f08040d0012000105050102020501010502010104020105010201
+0500010302010103020101060201010f0207010f05010202050101010500020001030500
+020005000103050102020500010405010202050101010201010302010102050102020501
+010702010106050002020500010302010103020101020501020205010110050002020500
+010302010103020101380015010e0500020005000112050002000500010f020405010107
+020101050801010905010202050101030501020105010104050102020500010e05000201
+050202010500010005010202050101030501020205010105050102020501010002010101
+02010101020101010200050202010500010702010106050102020501010202010169000f
+020100110401000004010001000504010000040100120201000e010e0201011402010130
+020101ff01040015010f050002010501010c05010201050001ff0122000f020100110401
+000004010001000504010000040100120201000e010e0204010e02040130020101ff0104
+0015011005000202010c0202050001ff0123000f02010011040100000401000100050401
+0000040100120201000e010e0204010e02040130020101ff01040015011105010200010c
+0200050101ff0124000f020100110401000004010001000504010000040100120201000e
+01ff015f001501ff0149000f020100110401000004010001000504010000040100120201
+000e010e0204010e020401250205010802010104020101f90015011105010200010c0200
+0501016a020501510201010802050150000f020100110401000004010001000504010000
+040100120201000e010e0204010e020401250205010802010104020101f9001501100500
+0202010402010105020205000129050002010501013a020501510201010802050150000f
+020100110401000004010001000504010000040100120201000e010e0201011402010111
+12000d0008020d00150001100201010f020101570201019f0015010f0500020105010104
+0501010505010201050001130d0008001200010302090102050002030500010202090119
+02010115020101510201010c02010150000f020100110401000004010001000504010000
+040100120201000e010e02010114020101101200080601100201010f020101570201019f
+0015010e050002000500010405070105050002000500011208010d000103020901020201
+01000500020101020209011902010115020101510201010c02010150000f020100110401
+000004010001000504010000040100120201000e010e020101140201011008010d001200
+010112000d0001100201010502040104020101020500020105000103050102010501010f
+050002020500010302010100050002010501010405010201050101030201010005000202
+010305010202050101020207010405000202050001040201010005000202010305000202
+0501017b0015010d05000201010505000201010102010500010602010500011015000800
+0d0008000107020101060201050001000200050001060201011105000202050101030207
+0102050002000500010402000500010402010106050102010501010e0501020205010103
+050002020501010405000202050101050501020105010101020101000500020005000100
+050002000500010102010100050002010501010602010106050102010501010302010100
+050002020138000f020100110401000004010001000504010000040100120201000e010e
+020101140201010f150008000d0001160201010502040104020101010500020105000103
+050002050500010d05000204050001020201050002040500010205000205050001020201
+050002030103020505000102020701030500020405000103020105000203010205000205
+017b0015010d0500020005000107050001010500010805000200050001100d0112000800
+150001060201010605000200050102000500010602010110050002050103020701020500
+02010103050002000500010402010105050002050500010d020505000102050002050103
+050002050104050002050500010002010500020105010202010102010500020405000105
+0201010505000205050001020201050002030138000f0201001104010000040100010005
+04010000040100120201000e010e020101140201010f0d00080012000116020101080201
+01040201010005000201050001030500020005010101050002000500010c050002000501
+010005010200050001010202050001010500020005000101050002000501010105000200
+050001020202050001010200010705000201010402010106050002000501010005010200
+05000102020205000101020001020201050001010501017b0015010d0500020005000107
+05030108050002000500010f120008001200010008010106020101060500020105000108
+020101100201050001010501010502010107020105000102020101050201010405000200
+050101010500020005000111050002010102020105000101050101030201050001010501
+010305000200050101010500020005000100020105010201050102010101020205000101
+050002000500010502010104050002000501010105000200050001020202050001010200
+0138000f020100110401000004010001000504010000040100120201000e010e02010114
+0201010f0801010902060106020101080201010402010100050002000500010405000200
+050001030201010c02010500010205000201010102010500010205000201010105000200
+050001030201010202010500010c02010104020101060201050001020500020101020201
+0500010602010501017e0015010d020101070500020005010200050001080201010f1500
+080001011500080012000105020101050500020005000200050001020201010302010110
+020105010108020101070500020005000101050002000500010502010104050002000500
+010302010112020101020201050101060201050101060500020005000103020101000201
+050001000201050001000201010102010500010205000201010502010104050002000500
+01030201010202010500013c000f02010011040100000401000100050401000004010012
+0201000e010e020101140201010f08010109020601060201010802010104020105000200
+050001050208010c02010104020101010201010402010101020801020201010805010204
+010402010106020101040201010202010107050002030501017b0015010d020101070501
+0101050101080201010f08000d000101120008000d000105020101040500020005000100
+020105000101020005000103020101100500020305010105020101080201050001000201
+0106020101040208010d0501020401020500020305010103050002030501010302080100
+020101010201010102010101020101040201010502010104020801020201013d000f0201
+00110401000004010001000504010000040100120201000e010e020101140201010f0801
+12000116020101080201010402010500020101050208010c020101040201010102010104
+020101010208010202010107050002000501010102010104020101060201010402010102
+02010109050102020500017a0015010d020101160201010e120008061200010402010104
+020101010500020101000500020005000103020101120501020205000104020101080500
+02000501020005000106020101040208010c050002000501010102010104050102020500
+010405010202050001020208010002010101020101010201010102010104020101050201
+0104020801020201013d000f020100110401000004010001000504010000040100120201
+000e010e020101140201010f0d0008000d00011602010108020101040201010005000200
+050001040201050001120201050001020500020101010201010305000200050001010201
+05000108020101070201010302010104020101060201050001020500020101020201010c
+05000201017a0015010d0500020005000114050002000500010e0d000806150001040201
+010402010500010105000200050102000500010302010115050002010104020101090203
+010702010104020105000112020101030201010705000201010705000201010202010500
+010602010101020101010201010102010103050002000500010502010104020105000108
+0201013d000f020100110401000004010001000504010000040100120201000e010e0201
+01140201010f120008010d00120001011200150001100201010802010104020101010500
+02000500010305000200050101020501010c050002000501010005010200050001010201
+050101000500020105000101050002000501010205010102020101070201050001000501
+020105000103020105000101050001020500020005010100050102000500010202010107
+0501010205000201017a0015010d0500020005000114050002000500010e080101031200
+080101040201010405000201050001010500020105000104020101100501010205000201
+01040201050001010500010505000201050001070201010405000200050101020501010c
+020105000100050102010500010105010102050002010102050101020500020101020500
+020005010102050101000201010102010101020101010201050101000500020105000105
+020101040500020005010102050101020201013d000f0201001104010000040100010005
+04010000040100120201000e010e02010114020101101200080601100201010802010104
+02010102050002000500010305000206010d050002040500010202060500010305000206
+01020201010705000208010205000204010305000204050001030201010702060500017a
+0015010d05000201011402010500010d15000800150001040d0008001500010302010104
+050002040500020105000104020101100206050001040500020401050500020101080201
+010505000206010c05000208010002060500010202060500010305000206010002010101
+0201010102010101020605000106020101050500020601020201013d000f020100110401
+000004010001000504010000040100120201000e010e020101140201011112000d000802
+0d00150001100201010802010104020101020500020105000103050102020501010e0500
+020205000103020105010201050001050501020205010102020101080500020105020201
+050001020501020205000104050002020500010402010107050102020501017b0015010e
+0500020005000112050002000500010e0d00080012000104150008000d00010302010105
+050102020502020005000103020101100501020205010105050102020500010505000200
+0500010802010106050102020501010d0500020105020201050001000501020205010103
+050102020501010505010202050101000201010102010101020101010200050202010500
+01070201010605010202050101020201013d000f02010011040100000401000100050401
+0000040100120201000e010e0201011402010167020101cd0015010f050002010501010c
+050102010500016005000200050001be000f020100110401000004010001000504010000
+040100120201000e010e0204010e02040167020101cd0015011005000202010c02020500
+015f0202050001bf000f020100110401000004010001000504010000040100120201000e
+010e0204010e02040167020101cd0015011105010200010c0200050101600201050001c0
+000f020100110401000004010001000504010000040100120201000e01ff015f001501ff
+0149000f020100110401000004010001000504010000040100120201000e010e0204010e
+02040154050002020500013105000202050001060201019d0015011105010200010c0200
+0501013e02050130020501510201010802050145000f0201001104010000040100010005
+04010000040100120201000e010e0204010e020401530500020401300500020401060201
+019d0015011005000202010c02020500013d02050130020501510201010802050145000f
+020100110401000004010001000504010000040100120201000e010e0201011402010110
+050102020502010308010134020105000101050001040201012902010500010105000125
+0201017e0015010f050002010501010c05010201050001100207010f020101150201011c
+02010115020101510201010c02010145000f020100110401000004010001000504010000
+040100120201000e010e020101140201010f050002070103080101340201010802010129
+020101290201017e0015010e0500020005000112050002000500010f0207010f02010115
+0201011c02010115020101510201010c02010145000f0201001104010000040100010005
+04010000040100120201000e010e020101140201010f0201050001020502010108070104
+050002020500010302010100050002010501010e05010202050101010208010202070104
+05010201050101030201010005000202010c020801030204010502010100050002020103
+05000202050101030207010f050102010501010302010100050002020103020101000500
+020201040500020205000104020101000500020201380015010d05000201011402010500
+0111020101050201010005000201050101020207010415000d0008010d00120001060201
+011005000202050101030207010205000200050001040200050001040201010605010201
+0501010e0501020205010103050002020501010405000202050101050501020105010101
+020101000500020005000100050002000500010102010100050002010501010602010106
+05010201050101030201010005000202012d000f02010011040100000401000100050401
+0000040100120201000e010e020101140201010f02010500010708070103050002040500
+01020201050002040500010d020505000101020801020207010305000205050001020201
+05000203010c020801030204010502010500020301020500020501030207010e05000205
+050001020201050002030103020105000203010305000204050001030201050002030138
+0015010d0500020005000114050002000500011102010105020105000203050001020207
+01030d000805120001050201010f05000205010302070102050002010103050002000500
+010402010105050002050500010d02050500010205000205010305000205010405000205
+050001000201050002010501020201010201050002040500010502010105050002050500
+0102020105000203012d000f020100110401000004010001000504010000040100120201
+000e010e020101140201010f050002010501010708010106050002000501010005010200
+050001010202050001010500020005000111050002010104020101080201010605000200
+0501010105000200050001020202050001010200010f0201010a02010105020205000101
+020001020201050001010501010502010111050002000501010105000200050001020202
+050001010200010302020500010102000102050002000501010005010200050001020202
+05000101020001380015010d050002000500011405000200050001110201010502020500
+010005000201010402010106150008000d00120001010d0008000d0001050201010f0201
+050001010501010502010107020105000102020101050201010405000200050101010500
+020005000111050002010102020105000101050101030201050001010501010305000200
+050101010500020005000100020105010201050102010101020205000101050002000500
+010502010104050002000501010105000200050001020202050001010200012d000f0201
+00110401000004010001000504010000040100120201000e010e02010114020101100500
+020205010105080101060201050001020500020101010201050001020500020101120201
+010402010108020101060500020005000103020101020201050001130201010a02010105
+020105000106020105010108020101110500020005000103020101020201050001070201
+0500010602010500010205000201010202010500013c0015010d02010116020101110201
+010502010500010202010104020101060d00080012000103080101050201010f02010501
+010802010107050002000500010105000200050001050201010405000200050001030201
+011202010102020105010106020105010106050002000500010302010100020105000100
+020105000100020101010201050001020500020101050201010405000200050001030201
+0102020105000131000f020100110401000004010001000504010000040100120201000e
+010e02010114020101110502020205000103080101060201010402010101020101040201
+010d050102040104020101080201010602080102020101140201010a0201010502010107
+05000203050101050201011102080102020101080201010702010104020101020201013d
+0015010d020101160201011102010105020101030201010402010106080801050201010f
+05000203050101050201010802010500010002010106020101040208010d050102040102
+050002030501010305000203050101030208010002010101020101010201010102010104
+02010105020101040208010202010132000f020100110401000004010001000504010000
+040100120201000e010e0201011402010114050102000500010308010106020101040201
+0101020101040201010c0500020005010101020101040201010802010106020801020201
+01140201010a020101050201010905010202050001040201011102080102020101080201
+010702010104020101020201013d0015010d020101160201011102010105020101030201
+010402010106080801050201011105010202050001040201010805000200050102000500
+0106020101040208010c0500020005010101020101040501020205000104050102020500
+010202080100020101010201010102010101020101040201010502010104020801020201
+0132000f020100110401000004010001000504010000040100120201000e010e02010114
+02010116020101030801010602010500010205000201010102010103050002000500010c
+02010103020101040201010802010106020105000108020101140201010a020101050201
+010c05000201010402010111020105000108020101080201010702010500010205000201
+01020201013d0015010d0500020005000114050002000500011102010105020101030201
+01040201010608011200010b020101140500020101040201010902030107020101040201
+050001120201010302010107050002010107050002010102020105000106020101010201
+0101020101010201010305000200050001050201010402010500010802010132000f0201
+00110401000004010001000504010000040100120201000e010e020101140201010f0200
+050101010501020101030801150001011200010205000200050101000501020005000101
+020105010100050002010500010c02010500010005010201050001030201010802010500
+010105000102050002000501010205010102020101140201010a02010105020101070501
+01020500020101040201050001010500010d050002000501010205010102020101080201
+0107050002000501010005010200050001020201013d0015010d05000200050001140500
+02000500011102010105020101030201010402010500010105000102150008000d001200
+0102120101050201010f0501010205000201010402010500010105000105050002010500
+01070201010405000200050101020501010c020105000100050102010500010105010102
+050002010102050101020500020101020500020005010102050101000201010102010101
+020101010201050101000500020105000105020101040500020005010102050101020201
+0132000f020100110401000004010001000504010000040100120201000e010e02010114
+0201010f0207050001030d0008040103050002040500010202060500010d050002080102
+02010108050002040103050002060102020101140201010a020101050201010702060500
+010405000204010e050002060102020101080201010805000204050001030201013d0015
+010d05000201011402010500010e0207010202010103020101040500020401030d000806
+01050201010f0206050001040500020401050500020101080201010505000206010c0500
+020801000206050001020206050001030500020601000201010102010101020101010206
+050001060201010505000206010202010132000f02010011040100000401000100050401
+0000040100120201000e010e020101140201010f050202020501010412000d0008020d00
+010405000202050001030201050102010500010f05000201050202010500010202010108
+05010202050001040501020205010102020101140201010a020101050201010705010202
+05010105050102020500010f050102020501010202010108020101090500020205000104
+0201013d0015010e0500020005000112050002000500010f020701020201010302010104
+050102020500010415000d0008020d00120001050201010f050102020501010505010202
+05000105050002000500010802010106050102020501010d050002010502020105000100
+050102020501010305010202050101050501020205010100020101010201010102010101
+0200050202010500010702010106050102020501010202010132000f0201001104010000
+04010001000504010000040100120201000e010e0201011402010130020101ff01040015
+010f050002010501010c050102010500016b05000200050001b3000f0201001104010000
+04010001000504010000040100120201000e010e0204010e02040130020101ff01040015
+011005000202010c02020500016a0202050001b4000f0201001104010000040100010005
+04010000040100120201000e010e0204010e02040130020101ff01040015011105010200
+010c02000501016b0201050001b5000f0201001104010000040100010005040100000401
+00120201000e01ff015f001501ff0149000f020100110401000004010001000504010000
+040100120201000e010e0204010e0204011a02050104020501840201018400ff006f0201
+00110401000004010001000504010000040100120201000e010e0204010e0204011a0205
+0104020501840201018400ff006f02010011040100000401000100050401000004010012
+0201000e010e020101040500020005000104050002000500010402010112050002000500
+010802010108020101250201010b05000200050001040205050001040207010102010130
+0201010e0501020205010102050102010501010202090102050102010501014f00ff006f
+020100110401000004010001000504010000040100120201000e010e0201010502010500
+010205000200050001050201011202010500010802010108020101250201010b02010500
+010402060500010302070101020101300201010d05000206010105000205050001010209
+0101050002050500014e00ff006f02010011040100000401000100050401000004010012
+0201000e010e020101050500020105000101050002000106020101110500020005000200
+01080201010802010106050002020500010208000d00010615000800010b0201010a0500
+020005000200010402010102050002010103020101070201011405010202050101020201
+010005000201050101040500020105010201010d02010501010105010100050002010500
+01010500020105000104020101040500020105000101050002010500014d00ff006f0201
+00110401000004010001000504010000040100120201000e010e02010106050002010100
+050002000500010602010111050202000500010702010108020101050500020405000101
+0d0008000101150008000d0001010d01010b0201010a0502020005000103020101030201
+010302010107020101140205050001020201050002030500010305000206010c05000200
+050001060500020005000103050002000500010402010104050002000500010305000200
+0500014d00ff006f020100110401000004010001000504010000040100120201000e010e
+020101070500020005000200050001070201011005000200050001000201010702010108
+02010104050002000501010005010200050001001500080001010d0008000d0001010d00
+1500010b0201010905000200050001000201010302010101050102000500010302010107
+02010118050002010102020205000100050002010102050002010500010005010201010c
+05000200050001060201050001030500020101040201010402010500010305000201014d
+00ff006f020100110401000004010001000504010000040100120201000e010e02010107
+050002010500010802010110050002000101050002000500010602010108020101040201
+050001020500020101001500080012000100080015000800010108001200010b02010109
+050002000101050002000500010202050500010402060102020101190201010202010500
+01020201010205000200050001030201010c020101020203010002010105020101040201
+0104020101050201014d00ff006f02010011040100000401000100050401000004010012
+0201000e010e020101080202050001070201011002000500010105000200050001060201
+01080201010402010104020101001200080015001200080001000800120108001200010b
+020101090200050001010500020005000102020505000104020601020201011405010204
+01020201010302010102020101040201010c020101020203010002010105020101040201
+0104020101050201014d00ff006f02010011040100000401000100050401000004010012
+0201000e010e020101070500020005000200050001070201010f05000206050001050201
+0108020101040201010402010101080015010d0001000d0015010800010c020101080500
+020605000101020101010501020005000103020101070201011305000200050101010201
+01020201010302010102020101040201010c020105000103020101000201050001030500
+020101040201010402010500010305000201014d00ff006f020100110401000004010001
+000504010000040100120201000e010e0201010605000200050001000201050001060201
+010f050002060500010502010108020101040201050001020500020101010d0215000100
+15000d0015000d00010c0201010805000206050001010201010302010103020101070201
+0113020101030201010202010103020101020201050001030201010c0500020005000103
+020101000500020005000103050002000500010402010104050002000500010305000200
+0500014d00ff006f020100110401000004010001000504010000040100120201000e010e
+02010105050002000500010105000201050001050201010f020101030500020101050201
+010802010104050002000501010005010200050001010d00080112000100120008000d00
+1500010c0201010802010103050002010101020101020500020101030201010702010113
+02010500010005010201050001010201010302010102050002000500010105010201010c
+050002010501010102010100050002010500010105000201050001040201010405000201
+05000101050002010500014d00ff006f0201001104010000040100010005040100000401
+00120201000e010e02010105050101030500020101050201010e05000200050001040500
+0200050001040201010802010105050002040500010215000801010208011200010c0207
+010105000200050001040500020005000100020605000103020701010207010d05000208
+010002010103020101020500020405000201010d05000206010105000205050001050201
+0105050002050500014e00ff006f02010011040100000401000100050401000004010012
+0201000e010e02010104050002000500010405000200050001040201010e050002000500
+0104050002000500010402010108020101060500020205000103120008000d0001020801
+1200010c0207010105000200050001040500020005000100020505000104020701010207
+010e050002010502020105000100020101030201010305010201050001000201010e0501
+020205010102050102010501010602010106050102010501014f00ff006f020100110401
+000004010001000504010000040100120201000e010e02010114020101ff013700ff006f
+020100110401000004010001000504010000040100120201000e010e0204010e020401ff
+013700ff006f020100110401000004010001000504010000040100120201000e010e0204
+010e020401ff013700ff006f020100110401000004010001000504010000040100120201
+000e01ff015f00ff006f020100110401000004010001000504010000040100120201000e
+010e0204010e0204015c02050116020101100801010f020501080201018700ff006f0201
+00110401000004010001000504010000040100120201000e010e0204010e0204015c0205
+0116020101100801010f020501080201018700ff006f0201001104010000040100010005
+04010000040100120201000e010e0201011402010111050102020501012f020101150201
+0116020101260201019200ff006f02010011040100000401000100050401000004010012
+0201000e010e020101140201011005000206012f02010115020101160201012602010192
+00ff006f020100110401000004010001000504010000040100120201000e010e02010114
+020101100201050101010501010402010108020101110500020205010103020701020500
+0200050001040200050001040201010605010201050101040500020105010201010d0804
+010402010100050002010501010602010105020401040201010005000201050101040501
+02010501016f00ff006f020100110401000004010001000504010000040100120201000e
+010e020101140201010f050002000500010a020101080201011005000205010302070102
+050002010103050002000500010402010105050002050500010205000206010d08040104
+02010500020305000106020101050204010402010500020305000103050002050500016e
+00ff006f020100110401000004010001000504010000040100120201000e010e02010114
+0201010f050002000500010a020101080201011002010500010105010105020101070201
+050001020201010502010104050002000501010105000200050001010500020105000100
+050102010110080101040202050001000500020101060201010802010104020205000100
+0500020101020500020005010101050002000500016e00ff006f02010011040100000401
+0001000504010000040100120201000e010e020101140201010f0201010b020101080201
+011002010501010802010107050002000500010105000200050001050201010405000200
+050001030201010105000200050001030201011008010104020105000102020101060201
+0108020101040201050001020201010205000200050001030201016e00ff006f02010011
+0401000004010001000504010000040100120201000e010e020101140201010f02010107
+020901000209010c05000203050101050201010802010500010002010106020101040208
+010102010104020101100801010402010103020101060201010802010104020101030201
+01020208016e00ff006f020100110401000004010001000504010000040100120201000e
+010e020101140201010f020105000106020901000209010e050102020500010402010108
+050002000501020005000106020101040208010102010104020101100801010402010103
+02010106020101080201010402010103020101020208016e00ff006f0201001104010000
+04010001000504010000040100120201000e010e020101140201010f050002000500010a
+020101080201011505000201010402010109020301070201010402010500010702010500
+010302010110080101040201010302010106020101080201010402010103020101020201
+0500017400ff006f020100110401000004010001000504010000040100120201000e010e
+020101140201010f05000201050101010501010402010108020101100501010205000201
+010402010500010105000105050002010500010702010104050002000501010205010101
+050002000500010105010201011008010104020101030201010602010108020101040201
+01030201010205000200050101020501016e00ff006f0201001104010000040100010005
+04010000040100120201000e010e02010114020101100500020601040201010802010110
+020605000104050002040105050002010108020101050500020601010500020405000201
+01100801010402010103020101060201010802010104020101030201010305000206016e
+00ff006f020100110401000004010001000504010000040100120201000e010e02010114
+020101110501020205010104020101080201011005010202050101050501020205000105
+050002000500010802010106050102020501010205010201050001000201011008010104
+020101030201010602010108020101040201010302010104050102020501016e00ff006f
+020100110401000004010001000504010000040100120201000e010e0201011402010154
+05000200050001df00ff006f020100110401000004010001000504010000040100120201
+000e010e0204010e020401520202050001e000ff006f0201001104010000040100010005
+04010000040100120201000e010e0204010e020401520201050001e100ff006f02010011
+0401000004010001000504010000040100120201000e01ff015f00ff006f020100110401
+000004010001000504010000040100120201000e010e0204010e0204011a0205010f0201
+0113020501ea00ff006f020100110401000004010001000504010000040100120201000e
+010e0204010e0204011a0205010f02010113020501ea00ff006f02010011040100000401
+0001000504010000040100120201000e010e020101140201011105010202050101050201
+010f020101170201011105010202050101d100ff006f0201001104010000040100010005
+04010000040100120201000e010e02010114020101100500020601050201010f02010117
+020101100500020601d100ff006f02010011040100000401000100050401000004010012
+0201000e010e020101140201011002010501010105010105020101060500020205000103
+0201010005000201050101030501020205010106020101100201050101010501010b0801
+01000d000800120001000d00080015000102050102020501010405010201050101030201
+01000500020201040500020205000104050002020501018600ff006f0201001104010000
+04010001000504010000040100120201000e010e020101140201010f050002000500010b
+020101050500020405000102020105000204050001020205050001060201010f05000200
+0500011108010d0008010d01080201020205050001030500020501030201050002030103
+050002040500010205000205018600ff006f020100110401000004010001000504010000
+040100120201000e010e020101140201010f050002000500010b02010104050002000501
+0100050102000500010102020500010105000200050001060500020101060201010f0500
+02000500011108010d00120008010d001200080101060500020101020500020105000101
+050101030202050001010200010205000200050101000501020005000101020105000101
+0501018600ff006f020100110401000004010001000504010000040100120201000e010e
+020101140201010f02010102020301050201010402010500010205000201010102010500
+0102050002010107020101060201010f0201011208011200010008011200010008010107
+020101020500020005000108020105000106020105000102050002010101020105010189
+00ff006f020100110401000004010001000504010000040100120201000e010e02010114
+0201010f0201010202030105020101040201010402010101020101040201010205010204
+01060201010f020101120801010108010101080101020501020401020201010902010107
+0201010402010101050002030501018600ff006f02010011040100000401000100050401
+0000040100120201000e010e020101140201010f02010500010302010105020101040201
+01040201010102010104020101010500020005010101020101060201010f020105000111
+080101010801010108010101050002000501010102010102020101090201010702010104
+02010103050102020500018500ff006f0201001104010000040100010005040100000401
+00120201000e010e020101140201010f0500020005000103020101050201010402010500
+010205000201010102010103050002000500010102010103020101060201010f05000200
+050001110801010108010101080101010201010302010102020105000108020101070201
+0500010205000201010605000201018500ff006f02010011040100000401000100050401
+0000040100120201000e010e020101140201010f05000201050101010201010502010104
+050002000501010005010200050001010201050101000500020105000101020105000100
+05010201050001050201010f05000201050101010501010b080101010801010108010101
+020105000100050102010500010105000201050001010501010302010107050002000501
+010005010200050001010501010205000201018500ff006f020100110401000004010001
+000504010000040100120201000e010e0201011402010110050002060105020101050500
+0204050001020206050001020500020801040201011005000206010b0801010108010101
+0801010105000208010105000205010302010108050002040500010202060500018500ff
+006f020100110401000004010001000504010000040100120201000e010e020101140201
+011105010202050101050201010605000202050001030200050202010500010405000201
+050202010500010402010111050102020501010b08010101080101010801010205000201
+050202010500010205010201050101030201010905000202050001030501020205010186
+00ff006f020100110401000004010001000504010000040100120201000e010e02010114
+020101ff013700ff006f020100110401000004010001000504010000040100120201000e
+010e0204010e020401ff013700ff006f0201001104010000040100010005040100000401
+00120201000e010e0204010e020401ff013700ff006f0201001104010000040100010005
+04010000040100120201000e01ff015f00ff006f02010011040100000401000100050401
+0000040100120201000e010e0204010e0204012b0500020005000194020101040201010c
+02010104020501080201014500ff006f0201001104010000040100010005040100000401
+00120201000e010e0204010e0204012b05000200050001220807010f0500020205000154
+020101040201010c02010104020501080201014500ff006f020100110401000004010001
+000504010000040100120201000e010e020101140201010e020901010205050001090201
+010202050500010302050500010e0807010e050002040500014602010111020101170201
+01110201013c00ff006f020100110401000004010001000504010000040100120201000e
+010e020101140201010e0209010102060500010705000200050001020206050001020206
+0500011308001500010d0500020105000100050002010500014502010111020101170201
+01110201013c00ff006f020100110401000004010001000504010000040100120201000e
+010e02010114020101120201010502010102050002010107020105000102020101020500
+020101020201010205000201011215000800010e0500020005000102050002000500010e
+050102010501010405000202050001020201010005000200050001000500020005000101
+020101000500020105010103050102020501010202070103020401040201010005000201
+0501010302040108020101050204010402070102050002000500010402000500012b00ff
+006f020100110401000004010001000504010000040100120201000e010e020101140201
+011202010105020101030201010605000200050001030201010302010102020101030201
+0111120008001500010e0500020005000102050002000500010d05000205010305000204
+050001010201050002010501020201010201050002040500010202050500010202070103
+020401040201050002040500010202040108020101050204010402070102050002010103
+050002000500012b00ff006f020100110401000004010001000504010000040100120201
+000e010e0201011402010112020101050201010105010200050001060500020005000103
+0201010105010200050001020201010105010200050001110d000800010f020101040201
+010c05000201050001010501010205000200050101000501020005000100020105010201
+05010201010102020500010105000200050001060500020101040201010a020101040202
+050001010500020005000105020101080201010802010106020101070201050001020201
+012c00ff006f020100110401000004010001000504010000040100120201000e010e0201
+011402010112020101050206050001050500020101040205050001030206050001101200
+08001500010f020101040201010c05000200050001070201050001020500020101000201
+0500010002010500010002010101020105000102050002010107020101040201010a0201
+010402010500010205000201010502010108020101080201010602010107050002000500
+0101050002000500012c00ff006f02010011040100000401000100050401000004010012
+0201000e010e020101140201011202010105020405010106050002000500010402050500
+01030204050101110d0008000110020101040201010c0201010802010104020101000201
+0101020101010201010102010104020101020501020401040201010a0201010402010104
+02010105020101080201010802010106020101080201050001000201012d00ff006f0201
+00110401000004010001000504010000040100120201000e010e02010114020101120201
+01050201010b020105000104020101010501020005000102020101151500080015000110
+0500020005000102050002000500010c0201010802010104020101000201010102010101
+0201010102010104020101010500020005010101020101040201010a0201010402010104
+020101050201010802010108020101060201010805000200050102000500012d00ff006f
+020100110401000004010001000504010000040100120201000e010e0201011402010112
+020101050201010a05000200050001050201010302010102020101150801011105000200
+05000102050002000500010c020105000107020105000102050002010100020101010201
+01010201010102010103050002000500010102010103020101040201010a020101040201
+01030500020005000105020101080201010802010106020101090203012e00ff006f0201
+00110401000004010001000504010000040100120201000e010e02010114020101120201
+01050201010a05000200050001050201010205000201010202010114150008000d000109
+020201040500020105000100050002010500010c05000201050001010501010205000200
+050101000501020005000100020101010201010102010101020105010100050002010500
+010102010500010005010201050001030201050001010500010602010104020105010100
+050002010500010502010108020101080201010602010500010105000105050002010500
+012e00ff006f020100110401000004010001000504010000040100120201000e010e0201
+0114020101120201010502010109050002010106020605000102020101140d0008001200
+010902020105050002040500010e05000205010305000204050001010201010102010101
+020101010206050001020500020801020500020401060201010402060500010602010108
+020101080201010605000204010505000201012f00ff006f020100110401000004010001
+000504010000040100120201000e010e0201011402010112020101050201010905000200
+05000106020505000103020101140801010a020201060500020205000110050102010501
+010405000202050001020201010102010101020101010201050102010500010405000201
+050202010500010205010202050001060201010402000502020105000107020101080201
+0108020101060501020205000105050002000500012f00ff006f02010011040100000401
+0001000504010000040100120201000e010e020101140201012602010175020101630500
+02000500012f00ff006f020100110401000004010001000504010000040100120201000e
+010e0204010e0204012505000200050001750201016102020500013000ff006f02010011
+0401000004010001000504010000040100120201000e010e0204010e0204012505000200
+050001750201016102010500013100ff006f020100110401000004010001000504010000
+040100120201000e01ff015f00ff006f0201001104010000040100010005040100000401
+00120201000e010e0204010e020401250205010f0201010c02010155020101040201010c
+02010104020501080201016600ff006f0201001104010000040100010005040100000401
+00120201000e010e0204010e020401250205010f0201010c02010155020101040201010c
+02010104020501080201016600ff006f0201001104010000040100010005040100000401
+00120201000e010e020101140201010f0204050101120201010f02010157020101110201
+0117020101110201015d00ff006f02010011040100000401000100050401000004010012
+0201000e010e020101140201010f0206050001110201010f020101570201011102010117
+020101110201015d00ff006f020100110401000004010001000504010000040100120201
+000e010e020101140201010f020101010501020105000103050102010501010602010104
+08010100150008010d001200010202010100050002010501010302040111050102010501
+010405000202050001020201010005000200050001000500020005000101020101000500
+020105010103050102020501010202070103020401040201010005000201050101030204
+0108020101050204010402070102050002000500010402000500014c00ff006f02010011
+0401000004010001000504010000040100120201000e010e020101140201010f02010103
+050002000500010205000205050001050201010408010d00080412000101020105000203
+050001030204011005000205010305000204050001010201050002010501020201010201
+050002040500010202050500010202070103020401040201050002040500010202040108
+020101050204010402070102050002010103050002000500014c00ff006f020100110401
+000004010001000504010000040100120201000e010e020101140201010f020101030500
+0201010105000200050101010500020005000105020101040802150001010d0008000d00
+01010202050001000500020101060201010f050002010500010105010102050002000501
+010005010200050001000201050102010501020101010202050001010500020005000106
+0500020101040201010a0201010402020500010105000200050001050201010802010108
+02010106020101070201050001020201014d00ff006f0201001104010000040100010005
+04010000040100120201000e010e020101140201010f0201010402010101050002000500
+01030201010502010104080112000102120008010101020105000102020101060201010f
+050002000500010702010500010205000201010002010500010002010500010002010101
+020105000102050002010107020101040201010a02010104020105000102050002010105
+020101080201010802010106020101070500020005000101050002000500014d00ff006f
+020100110401000004010001000504010000040100120201000e010e020101140201010f
+02010104020101010208010502010104080101040801010102010103020101060201010f
+020101080201010402010100020101010201010102010101020101040201010205010204
+01040201010a020101040201010402010105020101080201010802010106020101080201
+050001000201014e00ff006f020100110401000004010001000504010000040100120201
+000e010e020101140201010f020101030500020005000101020801050201010408010104
+0801010102010103020101060201010f0201010802010104020101000201010102010101
+0201010102010104020101010500020005010101020101040201010a0201010402010104
+020101050201010802010108020101060201010805000200050102000500014e00ff006f
+020100110401000004010001000504010000040100120201000e010e020101140201010f
+02010103050002000500010102010500010b0201010408010103120008000d0001010201
+0103020101060201010f0201050001070201050001020500020101000201010102010101
+0201010102010103050002000500010102010103020101040201010a0201010402010103
+0500020005000105020101080201010802010106020101090203014f00ff006f02010011
+0401000004010001000504010000040100120201000e010e020101140201010f02010101
+05010201050001010500020005010102050101050201010408010d001200010012000801
+1500010102010103020101060201010f0500020105000101050101020500020005010100
+050102000500010002010101020101010201010102010501010005000201050001010201
+050001000501020105000103020105000101050001060201010402010501010005000201
+0500010502010108020101080201010602010500010105000105050002010500014f00ff
+006f020100110401000004010001000504010000040100120201000e010e020101140201
+010f0206050001030500020601050201010408060d000102020101030201010602010110
+050002050103050002040500010102010101020101010201010102060500010205000208
+010205000204010602010104020605000106020101080201010802010106050002040105
+05000201015000ff006f020100110401000004010001000504010000040100120201000e
+010e020101140201010f020405010105050102020501010502010104080112000d000801
+0d0001030201010302010106020101110501020105010104050002020500010202010101
+020101010201010102010501020105000104050002010502020105000102050102020500
+010602010104020005020201050001070201010802010108020101060501020205000105
+050002000500015000ff006f020100110401000004010001000504010000040100120201
+000e010e02010114020101300801014a02010163050002000500015000ff006f02010011
+0401000004010001000504010000040100120201000e010e0204010e020401300801014a
+0201016102020500015100ff006f02010011040100000401000100050401000004010012
+0201000e010e0204010e020401300801014a0201016102010500015200ff006f02010011
+0401000004010001000504010000040100120201000e01ff015f00ff006f020100110401
+000004010001000504010000040100120201000e010e0204010e0204011a080501040205
+0176020101250201010d0201015a00ff006f020100110401000004010001000504010000
+040100120201000e010e0204010e0204011a0805010402050176020101250201010d0201
+015a00ff006f020100110401000004010001000504010000040100120201000e010e0201
+011402010112050002000500010808010108020101260501020205020100020901040500
+020005000103020901010207010405010202050101380201012b0201013c00ff006f0201
+00110401000004010001000504010000040100120201000e010e02010114020101120201
+050001080801010802010125050002070100020901040201050001030209010102070103
+0500020601380201012b0201013c00ff006f020100110401000004010001000504010000
+040100120201000e010e0201011402010111050002000500020001080801010802010106
+050002020500010202000500010605000200010b02010500010205020104020101070500
+020005000200010702010108020101060201050101010501010d02040104020101000500
+02010501010f050002020500010302010100050002010501010302050105050102010501
+0104050102010501010202070103050002020501012e00ff006f02010011040100000401
+0001000504010000040100120201000e010e020101140201011105020200050001070801
+010802010105050002040500010105000200010105000200050001010501010b02010500
+010a02010107050202000500010602010108020101050500020005000113020401040201
+050002030500010e05000204050001020201050002040500010202050104050002050500
+01020500020501020207010205000205012e00ff006f0201001104010000040100010005
+04010000040100120201000e010e02010114020101100500020005000100020101070801
+010802010104050002000501010005010200050001000500020001010500020005000101
+0501010b0500020105010108020101060500020005000100020101060201010802010105
+05000200050001160201010402020500010005000201010d050002000501010005010200
+050001010202050001010500020005000106020101030500020005010101050002000500
+0101050002010500010105010104020101060201050001010501012e00ff006f02010011
+0401000004010001000504010000040100120201000e010e020101140201011005000200
+010105000200050001060801010802010104020105000102050002010100050002000500
+0100020005000200010102000500010c0500020205010106020101060500020001010500
+020005000105020101080201010502010117020101040201050001020201010d02010500
+010205000201010102010500010205000201010602010103050002000500010302010101
+05000200050001090201010602010501013100ff006f0201001104010000040100010005
+04010000040100120201000e010e02010114020101100200050001010500020005000106
+08010108020101040201010402010100050002000501020001000200050102000500010d
+050202020500010402010106020005000101050002000500010502010108020101050201
+011702010104020101030201010d02010104020101010201010402010106020101030208
+01010201010a02010106050002030501012e00ff006f0201001104010000040100010005
+04010000040100120201000e010e020101140201010f0500020605000105080101080201
+010402010104020101010200050201000502020001110501020005000104020101050500
+020605000104020101080201010502010500011602010104020101030201010d02010104
+02010101020101040201010602010103020801010201010a02010108050102020500012d
+00ff006f020100110401000004010001000504010000040100120201000e010e02010114
+0201010f0500020605000105080101080201010402010500010205000201010105030100
+050301130201010402010105050002060500010402010108020101050500020005000116
+02010104020101030201010d020105000102050002010101020101030500020005000106
+020101030201050001070201050001090201010b05000201012d00ff006f020100110401
+000004010001000504010000040100120201000e010e020101140201010f020101030500
+020101050801010802010104050002000501010005010200050001010500020105000100
+050002000501010c02000501010105010201010402010105020101030500020101040201
+01080201010505000201050101010501011002010104020101030201010d050002000501
+010005010200050001010201050101000500020105000106020101030500020005010102
+05010101050002010500010105010104020105000101050001020501010205000201012d
+00ff006f020100110401000004010001000504010000040100120201000e010e02010114
+0201010e0500020005000104050002000500010408010108020101050500020405000102
+05000201010202010500010c020705000104020101040500020005000104050002000500
+0103020101050207010305000206011002010104020101030201010e0500020405000102
+0206050001070201010405000206010205000205010405000204010202060500012d00ff
+006f020100110401000004010001000504010000040100120201000e010e020101140201
+010e05000200050001040500020005000104080101080201010605000202050001030500
+02000500010202010500010c050202020501010502010104050002000500010405000200
+050001030201010502070104050102020501011002010104020101030201010f05000202
+050001030200050202010500010802010105050102020501010305010201050101040501
+020205000102050102020501012e00ff006f020100110401000004010001000504010000
+040100120201000e010e02010114020101d505010101050002000500015a00ff006f0201
+00110401000004010001000504010000040100120201000e010e0204010e020401d50205
+0500015a00ff006f020100110401000004010001000504010000040100120201000e010e
+0204010e020401d5050102010501015b00ff006f02010011040100000401000100050401
+0000040100120201000e01ff015f00ff006f020100110401000004010001000504010000
+04010012020100ff00ff00de020100110401000004010001000504010000040100120201
+00ff00ff00de02010011040100000401000100050401000004010012020100ff00ff00de
+02010011040100000401000100050401000004010012020100ff00ff00de020100110401
+00000401000100050401000004010012020100ff00ff00de020100110401000004010001
+00050401000004010012020100ff00ff00de020100110401000004010001000504010000
+04010012020100ff00ff00de0201001104010000040100010005040100000401001202ff
+02ff02e2001104010000040100010005040100000401001202ff02ff02e2001104010000
+04010001000504010000040100ff00ff00ff000704010000040100010005040100000401
+00ff00ff00ff00070401000004010001000504010000040100ff00ff00ff000704010000
+04010001000504010000040100ff00ff00ff000704010000040100010005040100000401
+00ff00ff00ff00070401000004010001000504010000040100ff00ff00ff000704010000
+04010001000504010000040100ff00ff00ff000704010000040100010005040100000401
+00ff00ff00ff00070401000004010001000504010000040100ff00ff00ff000704010000
+0401000100050401000004010041020100050201001302010025020500160201000f0700
+020207000006020100ff00ff004204010000040100010005040100000401004102010005
+0201001302010025020500160201000e070002040006020100ff00ff0042040100000401
+00010005040100000401001b09000700020207000b00001e0201000e0201003602010016
+0201000e020109000001090000ff00ff004b04010000040100010005040100000401001a
+09000206001e0201000e02010036020100160201000e020100ff00ff004f040100000401
+00010005040100000401001a020107000900000109000700000307000202070000030201
+00000b000201070009000004070002010700090002010002020400040207000302040006
+070002020700000308010000140008010d00140000030b00070002020700090000060201
+00110700020107000900020100030b000700020107000900000102080003020400040201
+00000b0002010700090000040b00070002010700090000030b00020207000b0000ff00ff
+00200401000004010001000504010000040100190b000200070000080700020407000002
+020107000203070000030700020600020204000402070003020400050700020407000002
+08010d0008030d0000030205070000060201001007000206000207000205090000000208
+0003020400040201070002030700000307000205090000010700020500ff00ff00200401
+0000040100010005040100000401001907000200090000070b0002000700090000000900
+070002000b0000010202090000000b00020100020b000201090000000900070002010005
+020100060201000a020100040b0002000700090000000900070002000b00000108021400
+00001400080100070b00020100060201000f0b0002010900000009000700020100010b00
+020007000900000107000200070000030201000a020100040202090000000b0002010002
+0b000200070009000001070002000700000102010900000109000b0000ff00ff00200401
+000004010001000504010000040100190201000802010900000209000201000102010900
+000202010002070002000900000302010005020100060201000a02010004020109000002
+09000201000108011400000208010008020100060201000f070002000900000302010001
+0700020009000003020100030201000a0201000402010900000202010002070002000900
+00030201000102010700090000ff00ff0023040100000401000100050401000004010019
+02010008020100040201000102010003020100020201000402010005020100060201000a
+020100040201000402010001080100030801000309000700020400060201000f02010004
+02010001020800030201000a02010004020100030201000202080001090002030b000900
+00ff00ff0020040100000401000100050401000004010019020109000007020100040201
+000102010003020100020201000402010005020100060201000a02010004020100040201
+0001080100030801000209000200070009000001020100060201000f0201000402010001
+020800030201000a020100040201000302010002020800030900070002020b0000ff00ff
+001f04010000040100010005040100000401001907000200070000070201090000020900
+02010001020100030201000202010900000302010005020100060201000a020100040201
+09000002090002010001080100030801000202010003020100060201000f020109000003
+020100010201090000090201000a02010004020100030201000202010900000c0b000201
+00ff00ff001f040100000401000100050401000004010019090002010700090000010900
+0b0000010b0002000700090000000900070002000b000001020100030201000207000200
+0700000109000700020100050201000602010b00000109000006020100040b0002000700
+090000000900070002000b000001080100030801000202010b00000009000b0002010900
+00050201000f070002000700000109000700020100010b00020007000900000209010003
+0201000a0201000402010003020100020b00020007000900000209010001070009000002
+0900020100ff00ff001f04010000040100010005040100000401001a0900020600020700
+020407000002020100030201000209000204070002010005020100060700020400060201
+0005070002040700000208010003080100020700020800040201000f0900020407000201
+00020700020600030201000a02010004020100030201000307000206000102060b0000ff
+00ff001f04010000040100010005040100000401001b09000700020207000b0000030700
+02020700000302010003020100030900070002010b000000020100050201000609000700
+020207000006020100060700020207000003080100030801000307000201070009010201
+07000004020100100900070002010b000000020100030b00070002020700090000030201
+000a0201000402010003020100040b000700020207000900000109000700020207000b00
+00ff00ff00200401000004010001000504010000040100ff00ff00ff0007040100000401
+0001000504010000040100ff00ff00ff00070401000004010001000504010000040100ff
+00ff00ff00070401000004010001000504010000040100ff00ff00ff0007040100000401
+00010005040100000401000d03ff03ff03eb000d04010000040100010005040100000401
+000d03ff03ff03eb000d04010000040100010005040100000401000d03ff03ff03eb000d
+04010000040100010005040100000401000d03ff03ff03eb000d04010000040100010005
+040100000401000d03ff03ff03eb000d04010000040100010005040100000401000d03ff
+03ff03eb000d04010000040100010005040100000401000d03ff03ff03eb000d04010000
+040100010005040100000401000d03ff03ff03eb000d0401000004010001000504010000
+0401000d03ff03ff03eb000d04010000040100010005040100000401000d03ff03ff03eb
+000d04010000040100010005040100000401000d03ff03ff03eb000d0401000004010001
+0005040100000401000d03ff03ff03eb000d04010000040100010005040100000401000d
+03ff03ff03eb000d04010000040100010005040100000401000d03ff03ff03eb000d0401
+0000040100010005040100000401000d03ff03ff03eb000d040100000401000100050401
+00000401000d03ff03ff03eb000d04010000040100010005040100000401000d03ff03ff
+03eb000d04010000040100010005040100000401000d03ff03ff03eb000d040100000401
+0001000504010000040100ff00ff00ff00070401000004010001000504010000040100ff
+00ff00ff00070401000004010001000504010000040100ff00ff00ff0007040100000401
+0001000504010000040100ff00ff00ff00070401000004010001000504010000040100ff
+00ff00ff00070401000004010001000504010000040100ff00ff00ff0007040100000401
+0001000504010000040100ff00ff00ff00070401000004010001000504010000040100ff
+00ff00ff00070401000004010001000504010000040100ff00ff00ff0007040100000401
+0001000504010000040100ff00ff00ff00070401000004010001000504010000040100ff
+00ff00ff00070401000004010001000504010000040100ff00ff00ff0007040100000401
+0001000504010000040100ff00ff00ff00070401000004010001000504010000040100ff
+00ff00ff00070401000004010001000504010000040100ff00ff00ff0007040100000401
+0001000504010000040100ff00ff00ff00070401000004010001000504010000040100ff
+00ff00ff00070401000004010001000504010000040100ff00ff00ff0007040100000401
+0001000504010000040100b2065700fc06420205060e00a7040100000401000100050401
+0000040100b2065700fc06420205060e00a70401000004010001000504010000040100b2
+06221200180004011800120006030801060308011600062100fc060d0f0102020f010631
+0201060e00a70401000004010001000504010000040100b2062117000405170006020801
+0602160008001600062200fc060c0f00020606310201060e00a704010000040100010005
+04010000040100b2062012000401170006011700040112000601080106011a0008001600
+062300fc060c02010f0106010f0106020f0102020f010602020106000f0002010f010604
+0f0102010f0106040f0102010f0106060201060e00a70401000004010001000504010000
+040100b20620180004001700060317000400180006010801060019000801062400fc060b
+0f0002000f00060802050f00060202010f0002030f0006030f00020506030f0002050f00
+06050201060e00a70401000004010001000504010000040100b206200401120006031200
+040106010801060008011900062400fc060b0f0002000f00060c0f000201060202020f00
+06000f00020106020f0002010f0006010f0106020f0002000f0106010f0002000f000605
+0201060e00a70401000004010001000504010000040100b2062004010605040106010801
+160008001900062500fc060b0201060e0201060202010f000602020106020f0002000f00
+06070f0002000f000603020106050201060e00a704010000040100010005040100000401
+00b20620040106050401060108011a0008001600062500fc060b020106090f0102040602
+020106030201060202010608020806050201060e00a70401000004010001000504010000
+040100b20620040112000603120004010601080106001600080016000624020a00f1060b
+02010f0006070f0002000f01060102010602020106030201060202010608020806050201
+060e020a009c0401000004010001000504010000040100b2062018000400170006031700
+040018000601080106011600080016000623020a00f1060b0f0002000f00060702010603
+02010602020106030201060202010f00060702010f00060b0201060e020a009c04010000
+04010001000504010000040100b206201200040117000601170004011200060108010602
+1600080016000622020a00f1060b0f0002010f0106010f01060102010f0006000f010201
+0f00060102010603020106020f0002010f0006010f0106020f0002000f0106020f010605
+0201060e020a009c0401000004010001000504010000040100b206211700040517000602
+080106021900080116000621020a00f1060c0f00020606010f0002080600020106030201
+06030f00020506030f00020606050201060e020a009c0401000004010001000504010000
+040100b20622120018000401180012000603080106031900080116000620020a00f1060d
+0f0102020f0106020f0002010f0202010f00060002010603020106040f0102010f010604
+0f0102020f0106050201060e020a009c0401000004010001000504010000040100b20657
+020a00f10657020a009c0401000004010001000504010000040100b20657020a00f10657
+020a009c0401000004010001000504010000040100b20657020a00f10657020a009c0401
+000004010001000504010000040100b20657020a00f10657020a009c0401000004010001
+000504010000040100bd025700fc0257009c0401000004010001000504010000040100bd
+025700fc0257009c0401000004010001000504010000040100bd025700fc0257009c0401
+000004010001000504010000040100bd025700fc0257009c040100000401000100050401
+0000040100bd025700fc0257009c0401000004010001000504010000040100bd025700fc
+0257009c0401000004010001000504010000040100bd025700fc0257009c040100000401
+0001000504010000040100bd025700fc0257009c04010000040100010005040100000401
+00bd025700fc0257009c0401000004010001000504010000040100ff00ff00ff00070401
+000004010001000504010000040100ff00ff00ff00070401000004010001000504010000
+040100ff00ff00ff00070401000004010001000504010000040100ff00ff00ff00070401
+000004010001000504010000040100ff00ff00ff00070401000004010001000504010000
+040100ff00ff00ff00070401000004010001000504010000040100ff00ff00ff00070401
+000004010001000504010000040100ff00ff00ff00070401000004010001000504010000
+040100ff00ff00ff00070401000004010001000504010000040100ff00ff00ff00070401
+000004010001000504010000040100ff00ff00ff00070401000004010001000504010000
+040100ff00ff00ff00070401000004010001000504010000040100ff00ff00ff00070401
+000004010001000504010000040100ff00ff00ff00070401000004010001000504010000
+040100ff00ff00ff0007040100000401000100050401000004ff04ff04ff040b00000401
+000100050401000004ff04ff04ff040b0000040100010005040100ff00ff00ff000d0401
+0001000504ff04ff04ff04110001000504ff04ff04ff0411000100ff00ff00ff001900ff
+00ff00ff001900ff00ff00ff001900ff00ff00ff001900ff00ff00ff001900ff00ff00ff
+001900ff00ff00ff0019
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 793 379
+%%EOF

BIN
docs/pics/idedlg.png


+ 6789 - 0
docs/pics/idestart.eps

@@ -0,0 +1,6789 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (idestart.eps)
+%%CreationDate: (Sun Nov 12 11:13:02 2000)
+%%BoundingBox: 0 0 880 450
+%%DocumentData: Clean7Bit
+%%LanguageLevel: 1
+%%Pages: 0
+%%EndComments
+
+%%BeginDefaults
+%%PageOrientation: Portrait
+%%EndDefaults
+
+%%BeginProlog
+%
+% Display a color image.  The image is displayed in color on
+% Postscript viewers or printers that support color, otherwise
+% it is displayed as grayscale.
+%
+/buffer 512 string def
+/byte 1 string def
+/color_packet 3 string def
+/pixels 768 string def
+
+/DirectClassPacket
+{
+  %
+  % Get a DirectClass packet.
+  %
+  % Parameters:
+  %   red.
+  %   green.
+  %   blue.
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile color_packet readhexstring pop pop
+  compression 0 gt
+  {
+    /number_pixels 3 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add 3 mul def
+  } ifelse
+  0 3 number_pixels 1 sub
+  {
+    pixels exch color_packet putinterval
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/DirectClassImage
+{
+  %
+  % Display a DirectClass image.
+  %
+  systemdict /colorimage known
+  {
+    columns rows 8
+    [
+      columns 0 0
+      rows neg 0 rows
+    ]
+    { DirectClassPacket } false 3 colorimage
+  }
+  {
+    %
+    % No colorimage operator;  convert to grayscale.
+    %
+    columns rows 8
+    [
+      columns 0 0
+      rows neg 0 rows
+    ]
+    { GrayDirectClassPacket } image
+  } ifelse
+} bind def
+
+/GrayDirectClassPacket
+{
+  %
+  % Get a DirectClass packet;  convert to grayscale.
+  %
+  % Parameters:
+  %   red
+  %   green
+  %   blue
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile color_packet readhexstring pop pop
+  color_packet 0 get 0.299 mul
+  color_packet 1 get 0.587 mul add
+  color_packet 2 get 0.114 mul add
+  cvi
+  /gray_packet exch def
+  compression 0 gt
+  {
+    /number_pixels 1 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add def
+  } ifelse
+  0 1 number_pixels 1 sub
+  {
+    pixels exch gray_packet put
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/GrayPseudoClassPacket
+{
+  %
+  % Get a PseudoClass packet;  convert to grayscale.
+  %
+  % Parameters:
+  %   index: index into the colormap.
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile byte readhexstring pop 0 get
+  /offset exch 3 mul def
+  /color_packet colormap offset 3 getinterval def
+  color_packet 0 get 0.299 mul
+  color_packet 1 get 0.587 mul add
+  color_packet 2 get 0.114 mul add
+  cvi
+  /gray_packet exch def
+  compression 0 gt
+  {
+    /number_pixels 1 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add def
+  } ifelse
+  0 1 number_pixels 1 sub
+  {
+    pixels exch gray_packet put
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/PseudoClassPacket
+{
+  %
+  % Get a PseudoClass packet.
+  %
+  % Parameters:
+  %   index: index into the colormap.
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile byte readhexstring pop 0 get
+  /offset exch 3 mul def
+  /color_packet colormap offset 3 getinterval def
+  compression 0 gt
+  {
+    /number_pixels 3 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add 3 mul def
+  } ifelse
+  0 3 number_pixels 1 sub
+  {
+    pixels exch color_packet putinterval
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/PseudoClassImage
+{
+  %
+  % Display a PseudoClass image.
+  %
+  % Parameters:
+  %   class: 0-PseudoClass or 1-Grayscale.
+  %
+  currentfile buffer readline pop
+  token pop /class exch def pop
+  class 0 gt
+  {
+    currentfile buffer readline pop
+    token pop /depth exch def pop
+    /grays columns 8 add depth sub depth mul 8 idiv string def
+    columns rows depth
+    [
+      columns 0 0
+      rows neg 0 rows
+    ]
+    { currentfile grays readhexstring pop } image
+  }
+  {
+    %
+    % Parameters:
+    %   colors: number of colors in the colormap.
+    %   colormap: red, green, blue color packets.
+    %
+    currentfile buffer readline pop
+    token pop /colors exch def pop
+    /colors colors 3 mul def
+    /colormap colors string def
+    currentfile colormap readhexstring pop pop
+    systemdict /colorimage known
+    {
+      columns rows 8
+      [
+        columns 0 0
+        rows neg 0 rows
+      ]
+      { PseudoClassPacket } false 3 colorimage
+    }
+    {
+      %
+      % No colorimage operator;  convert to grayscale.
+      %
+      columns rows 8
+      [
+        columns 0 0
+        rows neg 0 rows
+      ]
+      { GrayPseudoClassPacket } image
+    } ifelse
+  } ifelse
+} bind def
+
+/DisplayImage
+{
+  %
+  % Display a DirectClass or PseudoClass image.
+  %
+  % Parameters:
+  %   x & y translation.
+  %   x & y scale.
+  %   label pointsize.
+  %   image label.
+  %   image columns & rows.
+  %   class: 0-DirectClass or 1-PseudoClass.
+  %   compression: 0-RunlengthEncodedCompression or 1-NoCompression.
+  %   hex color packets.
+  %
+  gsave
+  currentfile buffer readline pop
+  token pop /x exch def
+  token pop /y exch def pop
+  x y translate
+  currentfile buffer readline pop
+  token pop /x exch def
+  token pop /y exch def pop
+  currentfile buffer readline pop
+  token pop /pointsize exch def pop
+  /Helvetica findfont pointsize scalefont setfont
+  x y scale
+  currentfile buffer readline pop
+  token pop /columns exch def
+  token pop /rows exch def pop
+  currentfile buffer readline pop
+  token pop /class exch def pop
+  currentfile buffer readline pop
+  token pop /compression exch def pop
+  class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
+  grestore
+} bind def
+%%EndProlog
+%%Page:  1 1
+%%PageBoundingBox: 0 0 881 451
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+881 451
+12.000000
+881 451
+1
+0
+0
+16
+a1a1a1
+000099
+000000
+505050
+e4e4e4
+990000
+787878
+666666
+868686
+996666
+939393
+000000
+000000
+000000
+000000
+000000
+020100250201000402050037020100050201005c03010085020100040205003b02010055
+0205004a0201004a02010016020100430205007002010025020100040205003702010005
+0201005c03010085020100040205003b020100550205004a0201004a0201001602010043
+0205001d06000700020000050700030002020700000f0206000206000300020203000600
+000f07000300020207000005060003000201030007000000020100170507001002010026
+050700080201000e0201001d0a000600030206010800002d0301001e0505090000310800
+09000502090100310201002505040901000e020100330509001b02010026080009000501
+0900080000100201004705000900000609000500001d0201002d05010004050100100201
+001b07000203000502050300000e0206000202060600000e020503000003060002050000
+020100170507001002010026050700080201000e0201001c08000307002d0301001e0506
+0900002f0800050600310201002505060900000d020100330509001b0201002509000505
+0900000f02010047090100060901001d0201002d05010004050100100201001b07000600
+00000201000507000600000107000201000e02010007030006000001060003000201000e
+070006000001070002010003020103000600000006000700000002010017050100080204
+000802010006070003000201030006000019050100090300020103000600020100020204
+0004020700180301080000020a010800000308000600030106000a000003080006000302
+06000a000003030100000800030200040800060003010600080000020301000008000301
+06000a000018050100020900050100020201000302010002020100000700020103000600
+001905010900080000010800090000030300020203000002020100000300020006000000
+030002000700000102010000070002010300060000030204000802010006070003000201
+030006000018050100010800090005010900000307000300020103000600000202010000
+07000201030006000002020100030201000403000201030006000201001a050100070300
+020203000005030002020300000702010005070002020300070000180800050109000001
+090005010800000102010000070002010300060000020207000302040006030002020300
+000302010000070002010300060000030700020203000700001809000500000609010001
+020400040201000007000201030006000004030002010300060002010003030002020300
+000202000300000607000200001605010004050100030700030002010300060000060201
+000402010000070002010300060000110201000a02010005020200050201000d02010005
+0202000a0201000207000201000502010017050100080204000802010005030002050600
+001805010008030002060002020400040207001803010a000008060003050a0000020305
+060000030301060003030003060003050002030106000303060000180501000305010002
+020100030201000202010300020303000018090005000900000803000204030000010201
+030002010301020200010201030002040600000202040008020100050300020506000017
+050100030900050009000002030002050600000102010300020406000001020100030201
+000303000206001a05010006030002040300000303000204030000060201000403000205
+001809000500090000030900050009000001020103000204060000010207000302040005
+030002040300000202010300020303000002030002050018090005000001090005000900
+000109010001020400040201030002030300000303000206000203000204030000010300
+020000010700020003000001030100160501000405010002030002050600000502010004
+020103000204060000100201000806000300020006000005020200050201000c06000200
+0300000502020008060003000200060000020300020007000005020100170501000b0201
+000802010004070002000300060000010300020003000018050100070700020106000000
+0600030002010005020100060201001c0600030108000a0000050800030006000a000001
+06000300060000060800030100030302080000010300000208000301080000010a000800
+000203020a00000008000301001805010001080009000500090000020201000302010002
+020206000000070002010018090005000800000707000200030006000000060003000200
+070000000201030006000201030006000201000102020700000103000200030000050201
+000802010004070002000300060000010300020003000017050100030800050100010700
+020003000600000103000200030000010202070000010300020003000001020100030201
+00020700020106000000060003000201001a050100050700020003000600000006000300
+020007000001070002000300060000000600030002000700000502010004020106000001
+06000700001805010800000308000501000102020700000103000200030000030201000a
+020100040700020003000600000006000300020007000001020206000000070002010002
+020106000001060007000018080005000800000009000500090000010500080000040201
+000402020600000007000201000207000201060000000600030002010001070002000300
+060000000600030002000700000007000200000103000200030000010300070000160501
+000405010001070002000300060000010300020003000005020100040202070000010300
+020003000010020100060202030006000006020200050203070000090300020006000005
+020200060202030006000003020106000700020103000600000002010017050600060201
+000802010004030002000600000302010018050600020300020006000003020100050201
+00060201001d06000302060008000003060003000a000003030100070301000303010a00
+0006060003000800000703010a0000020301001805060800000202010003020100020201
+060000020201001805010008020106000002060002010000020106000000020106000000
+020100010201060000020600020100050201000802010004030002000600000302010017
+050100040501000103000200060000030201000102010600000206000201000102010003
+0201000203000200060000030201001a0501000502010600000206000201000102010600
+000206000201000502010004020103000600001b05010005050100010201060000020600
+020100030201000a02010004020106000002060002010001020106000002020100020201
+03000600001b080005000800000009000501000105000800000402010004020106000002
+020100020300020006000003020100010201060000020600020100000700020006000000
+020007000200000102000600001605080001030002000600000302010005020100040201
+060000020600020100100201000602030700000f02050600000603000200070000100203
+070000030201070002040600020100170506000602010008020100040208001805060002
+0201000402010005020100060201001e0a000800060003020a000001030800020a000600
+030400030301000703010008030100030301001805050800000302010003020100020201
+000302010018050100080201000402010000020100010201000102010001020100040201
+000502010008020100040208001705010004050100010208000102010004020100010201
+000302010002020100040201001a05010005020100040201000102010004020100050201
+000406000203070006000018050100050501000102010004020100030201000a02010004
+020100040201000102010003020100020600020307000600001905000900000005000900
+050008000000050000050201000402010003020100020201000402010001020100040201
+000006000200070006000200000002000601020006000016050800010208000502010004
+020100040201001002010008060003000200070000110600030002000300000503000200
+060000130600030002000700000202010300060000000600030002000300020100170501
+000b02010008020100040208001805010007020100040201000502010006020100210a00
+0600030006000001030800010a00030006000a0000010301000303010007030100080301
+000303010018050100010900050009000003020100030201000202010003020100180501
+080000070201000402010000020100010201000102010001020100040201000502010008
+020100040208001705010003080005000900000102080001020100040201000102010003
+02010002020100040201001a050100050201000402010001020100040201000502010006
+0600030002020700001705010800000308000501000102010004020100030201000a0201
+000402010004020100010201000302010004060003000202070000180500090000000500
+000005000900080009000005020100040201000302010002020100040201000102010004
+020100010200070103000000030007010200001705010004050100010208000502010004
+02010004020100100201000a020100130201000306000200030000170201000202010600
+00030201020100170501000b020100080201000402010600001e05010007020106000003
+0201000502010006020100230301000103010a0000070301000303010003030100070301
+080000070301000303010018050100010800050109000002020100020600020100020201
+000302010018090005000900000702010600000206000201000002010001020100010201
+0001020100030600020003000005020100080201000402010600001d0501000309000500
+090000010201060000070201000306000200030000010201000206000201000202010600
+000206000201001a05010005020106000002060002010001020106000002060002010005
+020100090700020100170900050009000003090005000900000102010003060002000300
+00030201000a020100040201060000020600020100010201000302010007070002010018
+090108000900000009010800090000050201000402010003020100020201060000030201
+000102010600000206000201000103020700000007000300070003000017050100040501
+000102010600000b020100040201000306000200030000100201000a0201001302010003
+0300020000180201000203000200060000030201020100170501000b0201000802010004
+070002000300060000020601001805010007030002000300000106000300020100050201
+000602010700000106000018030008000a0000010a000800030100010800030006000a00
+00020a0100010301080000000a00080003010a0000020301000708000301080000010a00
+080000020301000303010018050100020800050108000001020107000000060002020002
+020100030201001808000501090008000001080009000001070002000300060000000600
+030002000700000002010001020100010201000102010300060000000600020107000005
+020100080201000407000200030006000002060100170501000108000900050108000001
+070002000300060000020601000102010300060000000600020107000001020107000000
+0600020200020300020003000600000006000202001a0501000507000200030006000000
+060003000200070000010700020003000600000006000300020007000005020100040300
+060000020600020100170800050109000001090005010800000102010300060000000600
+020107000003020107000001060000060201000407000200030006000000060003000200
+070000010201000302010002030006000002060002010018090005000901000009000500
+090100050201000402010003020100020300020003000001060003000201000107000200
+030006000000060003000200070000010300020106000000060002000300070000170501
+000405010001070002000300060000020601000502010004020103000600000006000201
+070000100201000507000600000006000300020003000005020200050700060000000600
+0300020003000002030002000700000a0202000507000600000006000300020003000002
+0700020106000001030002000300020100170501000b0201000802010005030002060018
+05070001060002040300020100050201000603000204001803070a000002060003060001
+060003080001030100080600030500020301000303010018050100030900050108000000
+030002030300020100020201000302010019080005060002030002040300000102010001
+020100010201000102060300000602010008020100050300020600170506090000030300
+02060001020603000002030002030300020100020600020403000201001a050100060300
+020403000003030002040300000602010004020607000018090005050900000202060300
+000403000204000602010005030002040300000202010003020100020206070000180900
+050108000000080005010800000502010004020100030201000206000204030002010002
+030002040300000207000201000202010600001705010004050100020300020600050201
+000402060300000e02070002020506000005020200050205060000020207000502020005
+020506000003030002050600020100170501000b02010008020100060700030002020300
+060000180507000206000300020107000000020100050201000606000300020203000018
+0a0008000600030206000a00000408000600030206000a0000020600030106000a010301
+060000010301000908000600030106000800000203010003030100180501000409000500
+090000000600030002010700000002010002020100030201001a08000900050209010003
+030002020300000202010001020100010201000102010600030002010300000702010008
+020100060700030002020300060000170504090008000005070003000202030006000001
+020003000600030002010300000306000300020107000000020100030600030002010700
+00000201001a050100070300020203000005030002020300000702010004060003000202
+03000700001a080009000501090008000003020106000300020103000005060003000202
+030000060201000603000202030000030201000302010002060003000202030007000019
+080005010002050108000005020100040201000302010003060003000201070000000201
+000303000202030000030600020003000002020106000017050100040501000307000300
+02020300060000050201000402010600030002010300000f020700020300020203000600
+000602020005030002020300060000030207000502020005030002020300060000050700
+0202030006000000020100ff004a0201006c06010002070002000300006f020100ce0201
+0069020100ff004a0201006c02060600006f020100ce02010069020100ff004a0201006c
+070003000202030006000070020100ce02010069020100ff00ff00ff006e020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000002010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000002010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010000020100ff00ff00ff006e02010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100000201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020100ff00ff00ff006e020100ff00ff00ff006e02010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100000201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020100ff00ff00ff006e0201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010001010100010101000001010000020100ff00ff00ff006e
+020100ff00ff00ff006e0201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010001010100010101000001010000020100ff00ff00ff006e
+020100ff00ff00ff006e0201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010001010100010101000001010000020100ff00ff00ff006e
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000002010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000002010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010000020100ff00ff00ff006e02010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100000201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020100ff00ff00ff006e020100ff00ff00ff006e02010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100000201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020100ff00ff00ff006e020100ff00ff00ff006e02010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100000201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020100ff00ff00ff006e0201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010001010100010101000001010000020100ff
+00ff00ff006e020100ff00ff00ff006e0201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010001010100010101000001010000020100ff
+00ff00ff006e020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000002010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010001010100010101000001010000020100ff00ff00ff006e020100ff
+00ff00ff006e020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000002010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010001010100010101000001010000020100ff00ff00ff006e020100ff
+00ff00ff006e020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000002010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010001010100010101000001010000020100ff00ff00ff006e02010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100000201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e02010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100000201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020100ff00ff00ff006e0201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0000020100ff00ff00ff006e020100ff00ff00ff006e0201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0000020100ff00ff00ff006e020100ff00ff00ff006e0201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0000020100ff00ff00ff006e020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000002010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010001010100010101000001010000020100ff00ff00ff
+006e020100ff00ff00ff006e020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000002010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010001010100010101000001010000020100ff00ff00ff
+006e02010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100000201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff
+006e02010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100000201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff
+006e02010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100000201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020100ff00ff00ff006e0201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010000020100ff00ff00ff006e020100ff00ff00ff006e0201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010000020100ff00ff00ff006e020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000002010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+00ff00ff00ff006e020100ff00ff00ff006e020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000002010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+00ff00ff00ff006e020100ff00ff00ff006e020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000002010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+00ff00ff00ff006e02010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020100ff00ff00ff006e0201
+00ff00ff00ff006e02010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020100ff00ff00ff006e0201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e0201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e0201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010000020100ff00ff00ff006e020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000002010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010000020100ff00ff00ff006e020100ff00ff00ff006e020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000002010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010000020100ff00ff00ff006e02010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100000201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020100ff00ff
+00ff006e020100ff00ff00ff006e02010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100000201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020100ff00ff
+00ff006e020100ff00ff00ff006e02010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100000201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020100ff00ff
+00ff006e0201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010000020100ff00ff00ff006e020100ff00ff
+00ff006e0201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010000020100ff00ff00ff006e020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000002010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000002010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000002010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010000020100ff00ff00ff006e02010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100000201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020100ff00ff00ff006e020100ff00ff00ff006e02010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100000201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020100ff00ff00ff006e0201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010001010100010101000001010000020100ff00ff00ff006e
+020100ff00ff00ff006e0201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010001010100010101000001010000020100ff00ff00ff006e
+020100ff00ff00ff006e0201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010001010100010101000001010000020100ff00ff00ff006e
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000002010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000002010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010000020100ff00ff00ff006e02010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100000201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020100ff00ff00ff006e020100ff00ff00ff006e02010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100000201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020100ff00ff00ff006e020100ff00ff00ff006e02010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100000201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020100ff00ff00ff006e0201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010001010100010101000001010000020100ff
+00ff00ff006e020100ff00ff00ff006e0201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010001010100010101000001010000020100ff
+00ff00ff006e020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000002010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010001010100010101000001010000020100ff00ff00ff006e020100ff
+00ff00ff006e020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000002010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010001010100010101000001010000020100ff00ff00ff006e020100ff
+00ff00ff006e020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000002010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010001010100010101000001010000020100ff00ff00ff006e02010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100000201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e02010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100000201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020100ff00ff00ff006e0201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0000020100ff00ff00ff006e020100ff00ff00ff006e0201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0000020100ff00ff00ff006e020100ff00ff00ff006e0201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0000020100ff00ff00ff006e020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000002010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010001010100010101000001010000020100ff00ff00ff
+006e020100ff00ff00ff006e020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000002010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010001010100010101000001010000020100ff00ff00ff
+006e02010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100000201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff
+006e02010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100000201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff
+006e02010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100000201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020100ff00ff00ff006e0201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010000020100ff00ff00ff006e020100ff00ff00ff006e0201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010000020100ff00ff00ff006e020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000002010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+00ff00ff00ff006e020100ff00ff00ff006e020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000002010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+00ff00ff00ff006e020100ff00ff00ff006e020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000002010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+00ff00ff00ff006e02010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020100ff00ff00ff006e0201
+00ff00ff00ff006e02010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020100ff00ff00ff006e0201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e0201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e0201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010000020100ff00ff00ff006e020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000002010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010000020100ff00ff00ff006e020100ff00ff00ff006e020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000002010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010000020100ff00ff00ff006e02010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100000201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020100ff00ff
+00ff006e020100ff00ff00ff006e02010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100000201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020100ff00ff
+00ff006e020100ff00ff00ff006e02010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100000201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020100ff00ff
+00ff006e0201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010000020100ff00ff00ff006e020100ff00ff
+00ff006e0201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010000020100ff00ff00ff006e020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000002010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000002010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000002010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010000020100ff00ff00ff006e02010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100000201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020100ff00ff00ff006e020100ff00ff00ff006e02010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100000201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020100ff00ff00ff006e0201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010001010100010101000001010000020100ff00ff00ff006e
+020100ff00ff00ff006e0201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010001010100010101000001010000020100ff00ff00ff006e
+020100ff00ff00ff006e0201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010001010100010101000001010000020100ff00ff00ff006e
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000002010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000002010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010000020100ff00ff00ff006e02010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100000201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020100ff00ff00ff006e020100ff00ff00ff006e02010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100000201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020100ff00ff00ff006e020100ff00ff00ff006e02010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100000201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020100ff00ff00ff006e0201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010001010100010101000001010000020100ff
+00ff00ff006e020100ff00ff00ff006e0201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010001010100010101000001010000020100ff
+00ff00ff006e020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000002010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010001010100010101000001010000020100ff00ff00ff006e020100ff
+00ff00ff006e020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000002010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010001010100010101000001010000020100ff00ff00ff006e020100ff
+00ff00ff006e020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000002010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010001010100010101000001010000020100ff00ff00ff006e02010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100000201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e02010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100000201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020100ff00ff00ff006e0201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0000020100ff00ff00ff006e020100ff00ff00ff006e0201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0000020100ff00ff00ff006e020100ff00ff00ff006e0201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0000020100ff00ff00ff006e020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000002010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010001010100010101000001010000020100ff00ff00ff
+006e020100ff00ff00ff006e020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000002010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010001010100010101000001010000020100ff00ff00ff
+006e02010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100000201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff
+006e02010042020500930305006b030100040305005c0301003405050072020500ff0201
+0019080009000500002502050031090105020900005b030500260a00060003020800003e
+03010004030500310a000600030208000024030100340505002808000900050000060900
+05020900003a020500c20600070002000005060003000202070000050600030002010300
+07000002020700160201000c0507000209000503000f0201000402010010020100260507
+000205050900000e06000300020103000600003d060003000a0000080301000603010012
+030700010a0003050600000f0a000600030206000800003103010026030700010a000305
+0600000c030200030302000c0301002c0900050008000008050100060501001205070002
+090005030005090005040900000d0201002d020100c00700020300040600020503000003
+060002050002020700020201000302010300000a0201000c050700020900080000000501
+000f0201000402010010020100260507000209000800000109000501000d070002050700
+003c03010600000803010006030100120307000106000300060000010a0003010800000d
+0a0003060031030100260307000106000300060000010a0003010800000b03020a000001
+0a000302000c0301002c0501090000080501000605010012050700020900080000000501
+00040800050108000000080005010800000c0201002d020100c007000600000002010004
+030002000300000106000201070000020201030006000000060007000008020007000002
+02010002030002000300000b0201000c0501000b0501000f020100040201000307000300
+02010300060000060201000402010000070002010300060000190501000d0501000c0600
+020107000001070002010600000102010000070002010300060000040700030002010300
+06000002020100000700020103000600001a080003000600030000080301000403070005
+0301000603010007030100030a0003000600000d030106000a0000010a00060000030600
+03020600000203010000060003000a000000060003000800000103010000080003010600
+0a000003030400080301000608000600030106000a00001903010007030100030a000300
+0600000b030106010001080006000301000208000600030206000a000002030100020800
+03010600000308000600030106000a00001a090005000900050000080501000405070005
+050100060501000b050100040900050009000002090005000900000c0201000a03000202
+030000050700030002010300070000030700030002020300060000060201000e02010000
+030002000600000003000200070000030700030002010300060000020201000007000201
+030006000002020100030201008a0201000402010003060002000300000107000201000c
+07000200000302010001070002000300000c0201000c0501000b0501000f020100040201
+0002030002050600000502010004020103000204060000180501000b0800090005000800
+000c03000200070000030700020003000001020103000204060000020300020506000001
+0201030002030300001a06010a0003000800000703010004030700050301000603010007
+030100030a000301000c0800030006000008060003040600000103010600030106010302
+00010301060003040a0000020304000803010005060003050a0000180301000703010003
+0a000301000b03010800030000010600080003010002030506000002030100010a000301
+06000003060003050a000019090108000500090000070501000405070005050100060501
+000b050100040900050008000002080005000900000c0201000903000204030000030300
+020500030205030000060201000e02010300020103010202000203000205060000010201
+0300020303000002020100030201008a0201000402010003060002010001030002000700
+000b06000200070000030201000006000201000d0201000c0501000b0501000f02010004
+020100010700020003000600000103000200030000050201000402020700000103000200
+0300001805010009050209000800000d0201060000030600020100010202070000010300
+020003000001070002000300060000010300020003000001020206000000070002010019
+0a0003000a00000003010007030100060301000903010006030100070600030006000a00
+00000a0006000301000c060003000a0000070800030006000a0000000a00060003000800
+0000030106000a00030106000a0003010001030208000001060003000600000503010008
+030100040800030006000a0000010600030006000018030100070600030006000a000000
+0a0006000301000b03010a0003000a010300000003010006080003010002030100000a00
+0301060000030800030006000a0000010600030006000018080005000800000005010007
+0501000605010009050100060501000b05010004050100040501000c0201000807000200
+030006000000060003000200070000010700020107000001060007000007070002010006
+0201000e0201030006000201030006000201000107000200030006000001030002000300
+0001020206000000070002010002020100030201008a0201000403000200030006000000
+060003000201000102010600070002010300060000060300020000040201000002010600
+000d0201000c050600060501000f02080001030002000600000302010005020100040201
+060000020600020100180506000405030900000d02010005020100010201060000020600
+020100010300020006000003020100010201060000020201001908000300000108000300
+0a000006030100060301000903010006030600020a00030408000301000c030100080301
+0a0000020a000301000003010a00000003010a0000000301000103010a0000020a000301
+00050301000803010004060003000a00000303010018030600020a00030408000301000b
+030100000600080106000000030100070301000203010000060003000600000406000300
+0a0000030301001809000500000109000500080000060501000605010009050100060506
+000605010004050100040501000c02010008020106000002060002010001030002000700
+000d020100060201000e0201060000000201060000000201000103000200060000030201
+000102010600000202010002020100030201008a02010004060002040700020100010201
+070002040600000406000200070000040201030002000600000e0201000c050600060501
+000f0208000102080005020100040201000402010018050600060800090005000900000c
+020100050201000102010004020100010208000102010003020100190300060000010a00
+030006000006030100060301000503090002030600030a000600030108000a000301000c
+030100080301000403010000030100010301000103010001030100040301000503010008
+0301000403080018030600030a000600030108000a000301000b03010000080003000600
+08000000030100020a000600030400020301060003000600000503080018050009000001
+08000500090000060501000605010005050900020506000605010004050100040501000c
+0201000802010004020100010201000906000300020400060201000e0201000102010001
+02010001020800010201000302010002020100030201008a020100050600030002010700
+060002010001020103000600000006000300020003000004030002000005020107000200
+0300000e0201000c0501000b0501000f0201000402010001020800050201000402010004
+020100180501000d0501000c020106000003060002010001020100040201000102080001
+02010003020100180a0003060a0000050301000603010005030900020301000d08000300
+0600000c03010a0000070301000403010000030100010301000103010001030100040301
+00050301000803010004030800180301000d080003000600000b030100000a0003010a00
+0000030100010a00030006000a0000010301000203010800030100050308001708000506
+080000050501000605010005050900020501000b05010004090005000800000208000500
+0900000c0201000802010004020100010201000806000200030006000001020100060201
+000e020100010201000102010001020800010201000302010002020100030201008a0201
+000a07000200030000010201060000030201000307000200070000050201000003000200
+0300000d0201000c0501000b0501000f020100040201000102010600000b020100040201
+000306000200030000180501000d0501000c030002000700000307000200030000010201
+000306000200030000010201060000070201000302010018060003060800000503010006
+03010009030100060301000d03010800000c060003000600000703010a0000020a000301
+0000030100010301000103010001030100030a0003000600000503010008030100040301
+0a00001e0301000d03010800000b03010001060100010301000103010003030100020301
+0000080003000600000403010a00001d0900050609000005050100060501000905010006
+0501000b050100040900050009000002090005000900000c020100080201060000020600
+0201000102010700000702010003020100060201000e0201000102010001020100010201
+0600000702010003020100020201000206000201008a0201000a02010700000103000200
+06000003020100030201000602010001030002000300000c0201000c0501000b0501000f
+020100040201000107000200030006000002060100050201000402010300060000000600
+020107000018050100080900080000000800090005000900000c06000201070000010700
+020106000001020103000600000006000201070000010700020003000600000206010001
+0201000302010018030100030a0003010005030100060301080000010a00000503010006
+0301000808000a0000000a0006000301000d0a00030106000a0000010a00080000010800
+030006000a0000000a000600030008000000030100010301000103010001030106000a00
+00000a0003010800000503010008030100040800030006000a0000020a01001803010008
+08000a0000000a0006000301000c03010005030100010301080000000a00080003010a00
+00010301000106000300060000030800030006000a0000020a0100170501000308000501
+00050501000605010900000108000005050100060501000b050100040800050108000000
+080005010800000c02010008070002000300060000000600030002000700000107000201
+07000001060007000002020107000000060007000201060000050201000e020100010201
+000102010001070002000300060000020601000102010003020100020201070000000600
+0202008a0201000507000600000006000300020100020700020106000001030002000300
+0002070002000300000602010002030002000300000b0201000c050100080507000c0201
+000402010002030002060005020100040206030000190501000805050800000d07000205
+070000020206030000030300020600010201000302010017080003000800000406000300
+0800000403010006060003040005030100060301000803050a00000e0a00030600020600
+030406000001030100010301000103010001030606000006030100080301000506000306
+00180301000803050a00000c030100050301000106000308000003010002060003000600
+000306000306001609000500090000040900050009000004050100060900050400050501
+00060501000805070002090005040900000d020700030300020403000003030002050002
+0300020800040201000e0201000102010001020100020300020600010201000302010002
+030002030300020100870207000202050600000303000205060000020300020006000006
+02010002060002010300000a0201000c050100080507000c020100040201000307000300
+02020300060000050201000402010600030002010300001a050100080900050209000800
+000f06000300020103000600000302010600030002010300000507000300020203000600
+00010201000302010017060003000a0000040800030006000004030100060a0006000302
+06000005030100060301000808000600030106000a0000100a0006000302060008000003
+060003020600000203010001030100010301000103010a00060003010600000703010008
+0301000608000600030206000a0000180301000808000600030106000a00000d03010005
+030100020600030106000a01030106000000030100020a00030106000003080006000302
+06000a000016090005000800000409000500090000040501000608000900050209000005
+050100060501000805070003090005020900000e02070004030002020300000507000300
+020103000700000303000201030006010201030000040201000e02010001020100010201
+000307000300020203000600000102010003020100020600030002010700000002010087
+020700020700030002010300060000050700020203000600000302010007020100030600
+0201030000090201004d0201004a020100a2030100ff00ff002c0201004d0201004a0201
+00a2030100ff00ff002c0201004d0201004a020100a2030100ff00ff002c020100ff00ff
+00ff006e04ff04ff04ff0470
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 880 450
+%%EOF

BIN
docs/pics/idestart.png


+ 800 - 0
docs/pics/idewin.eps

@@ -0,0 +1,800 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (idewin.eps)
+%%CreationDate: (Sun Nov 12 11:15:00 2000)
+%%BoundingBox: 0 0 725 305
+%%DocumentData: Clean7Bit
+%%LanguageLevel: 1
+%%Pages: 0
+%%EndComments
+
+%%BeginDefaults
+%%PageOrientation: Portrait
+%%EndDefaults
+
+%%BeginProlog
+%
+% Display a color image.  The image is displayed in color on
+% Postscript viewers or printers that support color, otherwise
+% it is displayed as grayscale.
+%
+/buffer 512 string def
+/byte 1 string def
+/color_packet 3 string def
+/pixels 768 string def
+
+/DirectClassPacket
+{
+  %
+  % Get a DirectClass packet.
+  %
+  % Parameters:
+  %   red.
+  %   green.
+  %   blue.
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile color_packet readhexstring pop pop
+  compression 0 gt
+  {
+    /number_pixels 3 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add 3 mul def
+  } ifelse
+  0 3 number_pixels 1 sub
+  {
+    pixels exch color_packet putinterval
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/DirectClassImage
+{
+  %
+  % Display a DirectClass image.
+  %
+  systemdict /colorimage known
+  {
+    columns rows 8
+    [
+      columns 0 0
+      rows neg 0 rows
+    ]
+    { DirectClassPacket } false 3 colorimage
+  }
+  {
+    %
+    % No colorimage operator;  convert to grayscale.
+    %
+    columns rows 8
+    [
+      columns 0 0
+      rows neg 0 rows
+    ]
+    { GrayDirectClassPacket } image
+  } ifelse
+} bind def
+
+/GrayDirectClassPacket
+{
+  %
+  % Get a DirectClass packet;  convert to grayscale.
+  %
+  % Parameters:
+  %   red
+  %   green
+  %   blue
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile color_packet readhexstring pop pop
+  color_packet 0 get 0.299 mul
+  color_packet 1 get 0.587 mul add
+  color_packet 2 get 0.114 mul add
+  cvi
+  /gray_packet exch def
+  compression 0 gt
+  {
+    /number_pixels 1 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add def
+  } ifelse
+  0 1 number_pixels 1 sub
+  {
+    pixels exch gray_packet put
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/GrayPseudoClassPacket
+{
+  %
+  % Get a PseudoClass packet;  convert to grayscale.
+  %
+  % Parameters:
+  %   index: index into the colormap.
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile byte readhexstring pop 0 get
+  /offset exch 3 mul def
+  /color_packet colormap offset 3 getinterval def
+  color_packet 0 get 0.299 mul
+  color_packet 1 get 0.587 mul add
+  color_packet 2 get 0.114 mul add
+  cvi
+  /gray_packet exch def
+  compression 0 gt
+  {
+    /number_pixels 1 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add def
+  } ifelse
+  0 1 number_pixels 1 sub
+  {
+    pixels exch gray_packet put
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/PseudoClassPacket
+{
+  %
+  % Get a PseudoClass packet.
+  %
+  % Parameters:
+  %   index: index into the colormap.
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile byte readhexstring pop 0 get
+  /offset exch 3 mul def
+  /color_packet colormap offset 3 getinterval def
+  compression 0 gt
+  {
+    /number_pixels 3 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add 3 mul def
+  } ifelse
+  0 3 number_pixels 1 sub
+  {
+    pixels exch color_packet putinterval
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/PseudoClassImage
+{
+  %
+  % Display a PseudoClass image.
+  %
+  % Parameters:
+  %   class: 0-PseudoClass or 1-Grayscale.
+  %
+  currentfile buffer readline pop
+  token pop /class exch def pop
+  class 0 gt
+  {
+    currentfile buffer readline pop
+    token pop /depth exch def pop
+    /grays columns 8 add depth sub depth mul 8 idiv string def
+    columns rows depth
+    [
+      columns 0 0
+      rows neg 0 rows
+    ]
+    { currentfile grays readhexstring pop } image
+  }
+  {
+    %
+    % Parameters:
+    %   colors: number of colors in the colormap.
+    %   colormap: red, green, blue color packets.
+    %
+    currentfile buffer readline pop
+    token pop /colors exch def pop
+    /colors colors 3 mul def
+    /colormap colors string def
+    currentfile colormap readhexstring pop pop
+    systemdict /colorimage known
+    {
+      columns rows 8
+      [
+        columns 0 0
+        rows neg 0 rows
+      ]
+      { PseudoClassPacket } false 3 colorimage
+    }
+    {
+      %
+      % No colorimage operator;  convert to grayscale.
+      %
+      columns rows 8
+      [
+        columns 0 0
+        rows neg 0 rows
+      ]
+      { GrayPseudoClassPacket } image
+    } ifelse
+  } ifelse
+} bind def
+
+/DisplayImage
+{
+  %
+  % Display a DirectClass or PseudoClass image.
+  %
+  % Parameters:
+  %   x & y translation.
+  %   x & y scale.
+  %   label pointsize.
+  %   image label.
+  %   image columns & rows.
+  %   class: 0-DirectClass or 1-PseudoClass.
+  %   compression: 0-RunlengthEncodedCompression or 1-NoCompression.
+  %   hex color packets.
+  %
+  gsave
+  currentfile buffer readline pop
+  token pop /x exch def
+  token pop /y exch def pop
+  x y translate
+  currentfile buffer readline pop
+  token pop /x exch def
+  token pop /y exch def pop
+  currentfile buffer readline pop
+  token pop /pointsize exch def pop
+  /Helvetica findfont pointsize scalefont setfont
+  x y scale
+  currentfile buffer readline pop
+  token pop /columns exch def
+  token pop /rows exch def pop
+  currentfile buffer readline pop
+  token pop /class exch def pop
+  currentfile buffer readline pop
+  token pop /compression exch def pop
+  class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
+  grestore
+} bind def
+%%EndProlog
+%%Page:  1 1
+%%PageBoundingBox: 0 0 726 306
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+726 306
+12.000000
+726 306
+1
+0
+0
+16
+000099
+009999
+ffffff
+66ff66
+c9c9c9
+6666cc
+9999cc
+006699
+336666
+339966
+33cc66
+000000
+000000
+000000
+000000
+000000
+001a0204000e020400ff00ff006f0204000e02040018001a0204000e020400ff003a0600
+02020600000605000600020000ff000f0500060002000012020400060901000502040018
+001a02010014020100ff003906000204060000030600020300ff000d0600020300120201
+0008080003010800000702010018001a02010014020100ff003805000201050000000500
+020105000002060005000000020100ff000d060005000000020100120201000708000303
+0800000602010018001a0201000503080005020100f60201000006000201040005000004
+040002020400000302010000060002010400050000030600040002020400050000010201
+000004000200050000000400020006000003060004000201040005000002040002000600
+000206000200040000050201000f02010000060002010400050000030600040002020400
+05000003060002020400060000e302010012020100070a000800030108000a0000060201
+0018001a0201000503080005020100f60201040002030400000304000204040000020201
+040002030400000302050400000102010400020104010202000204000205050000010400
+02000500000205000200040000050201000f020104000204050000020205040000020400
+020500e30201001202010009030100080201001800030212000302010005030800050201
+000302e6000b020205000000060002010002060002000400050000000500040002000600
+000102020500000006000201000706000201000102010400050002010400050002010001
+06000200040005000001040002000400000102010004020100050201000f020206000001
+040002000400000606000201000202010500000105000600000d02d0000402010003020a
+000302010009030100080201000302120001000302120003020100050308000502010003
+02e6000b0201050000020201000202010500000205000201000102010500000202010008
+020100010201050000000201050000000201000104000200050000030201000102010004
+020100050201000f02010500000205000201000702010002020104000500001002d00004
+02010003020a000302010009030100080201000302120001000302010014020100050308
+0005020100f6020100030201000202010004020100010201000302010003050004000204
+00010201000102010001020100010208000102010004020100050201000f020100040201
+00020500040002040002050002030600050000e302010012020100090301000802010014
+02010001000302010000020f000302010005030800050201000302e6000b020100030201
+000202010004020100010201000302010002050002000400050000010201000102010001
+020100010201000102080001040002000500000205000200040000050201000f02010004
+0201000105000200040005000001020100040500040002020600000c02d0000402010003
+020a0003020100090301000802010003020f000002010001000302010000020f00030201
+0005030800050201000302e6000b02010003020100020201050000020500020100010201
+000302010002020100030201000102010001020100010201000102010500000704000200
+0600000206000200040000050201000f0201000305000200040000010201000302010007
+06000201000c02d0000402010003020a0003020100090301000802010003020f00000201
+0001000302010000020100110201000503080005020100f6020100030201000206000200
+040005000000050004000200060000010201000302010002020106000000050006000201
+050000000201000102010001020100010600020004000500000205010001050002010500
+000005000201050000050201000702020004020104000500000005000201060000010201
+06000000050006000201050000010400050000020500020100e202010012020100090301
+0008020100110201000002010001000302010000020100110201000503080005020100f6
+0201000302010003040002040400000202010003020100020400020a0001020100010201
+000204000206000206000204060000030207000402020004020604000002040002080000
+0206060000df0207000f0201000903010008020100110201000002010001000302010000
+020100110201000503080005020100f60201000302010004040002020400000302010003
+020100030400020104000501020104000201000102010001020100030600040002020400
+050000030600020206000004020700040202000402010500040002010400000404000201
+040005010201040000000500040002020400060000e00207000f02010009030100080201
+001102010000020100010003020100000201001102010014020100ff0059020100ff0013
+0201000903010008020100110201000002010001000302010000020100110204000e0204
+00ff0059020100ff00130204000603010005020400110201000002010001000302010000
+020100110204000e020400ff0059020100ff001302040006030100050204001102010000
+02010001000302010000020100ff00ff00c50201000002010001000302010000020100ff
+00ff00c20109000302010000020100ff00ff00c20109000302010000020100ff00ff00c2
+0109000302010000020100ff00ff00c20109000302010000020100ff00ff00c201050700
+0102000302010000020100ff00ff00c201040700000007000101000302010000020100ff
+00ff00c20104000107000101000302010000020100ff00ff00c201030700000207000100
+000302010000020100ff00ff00c20103000307000100000302010000020100ff00ff00c2
+0102070000040100000302010000020100ff00ff00c20101070000050700000302010000
+020100ff00ff00c2010107000006000302010000020100ff00ff00c20100070000070003
+02010000020100ff00ff00c2010007000007000302010000020100ff00ff00c201090003
+02010000020100ff00ff00c20109000302010000020100ff00ff00c20109000302010000
+020100ff00ff00c20109000302010000020100ff00ff00c2010100010100000101010000
+000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00c20101000101000001010100000003020100000201
+00ff00ff00cc000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c20101
+00010100000101010000000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
+010100010100000101010000000302010000020100ff00ff00c201010001010000010101
+0000000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00cc000302010000020100ff00ff00c2010100010100000101010000000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00c201010001010000010101000000030201
+0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff
+00cc000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00c2010100010100000101010000000302010000020100ff00ff00c2010100010100
+000101010000000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201010001
+0100000101010000000302010000020100ff00ff00c20101000101000001010100000003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00cc
+000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00c20101000101000001010100000003020100000201
+00ff00ff00c2010100010100000101010000000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00cc0003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
+010100010100000101010000000302010000020100ff00ff00c201010001010000010101
+0000000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c20101000101000001
+01010000000302010000020100ff00ff00c2010100010100000101010000000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00cc00030201
+0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff
+00c2010100010100000101010000000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00c2010100010100000101010000000302010000020100ff00ff00cc000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201010001
+0100000101010000000302010000020100ff00ff00c20101000101000001010100000003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00c2010100010100000101010000
+000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00cc0003020100000201
+00ff00ff00c2010100010100000101010000000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c20101
+00010100000101010000000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
+010100010100000101010000000302010000020100ff00ff00cc000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c20101000101000001
+01010000000302010000020100ff00ff00c2010100010100000101010000000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00c201010001010000010101000000030201
+0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00cc000302010000020100ff00ff
+00c2010100010100000101010000000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00c2010100010100000101010000000302010000020100ff00ff00c2010100010100
+000101010000000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201010001
+0100000101010000000302010000020100ff00ff00cc000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00c2010100010100000101010000
+000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00c20101000101000001010100000003020100000201
+00ff00ff00c2010100010100000101010000000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00cc000302010000020100ff00ff00c20101
+00010100000101010000000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
+0109000302010000020100ff00ff00c20109000302010000020100ff00ff00c201090003
+02010000020100ff00ff00c20109000302010000020100ff00ff00c20100000800030201
+0000020100ff00ff00c201000008000302010000020100ff00ff00c20100000800030201
+0000020100ff00ff00c201000008000302010000020100ff00ff00c20100000800030201
+0000020100ff00ff00c201000008000302010000020100ff00ff00c20100000800030201
+0000020100ff00ff00c201000008000302010000020100ff00ff00c20100000800030201
+0000020100ff00ff00c201000008000302010000020100ff00ff00c20109000302010000
+020100ff00ff00c20109000302010000020100ff00ff00c20109000302010000020100ff
+00ff00c20109000302010000020100ff00ff00c201010001010000010101000000030201
+0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff
+00cc000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00c2010100010100000101010000000302010000020100ff00ff00c2010100010100
+000101010000000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201010001
+0100000101010000000302010000020100ff00ff00c20101000101000001010100000003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00cc
+000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00c20101000101000001010100000003020100000201
+00ff00ff00c2010100010100000101010000000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00cc0003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
+010100010100000101010000000302010000020100ff00ff00c201010001010000010101
+0000000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c20101000101000001
+01010000000302010000020100ff00ff00c2010100010100000101010000000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00cc00030201
+0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff
+00c2010100010100000101010000000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00c2010100010100000101010000000302010000020100ff00ff00cc000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201010001
+0100000101010000000302010000020100ff00ff00c20101000101000001010100000003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00c2010100010100000101010000
+000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00cc0003020100000201
+00ff00ff00c2010100010100000101010000000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c20101
+00010100000101010000000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
+010100010100000101010000000302010000020100ff00ff00cc000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c20101000101000001
+01010000000302010000020100ff00ff00c2010100010100000101010000000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00c201010001010000010101000000030201
+0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00cc000302010000020100ff00ff
+00c2010100010100000101010000000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00c2010100010100000101010000000302010000020100ff00ff00c2010100010100
+000101010000000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201010001
+0100000101010000000302010000020100ff00ff00cc000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00c2010100010100000101010000
+000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00c20101000101000001010100000003020100000201
+00ff00ff00c2010100010100000101010000000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00cc000302010000020100ff00ff00c20101
+00010100000101010000000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
+010100010100000101010000000302010000020100ff00ff00c201010001010000010101
+0000000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c20101000101000001
+01010000000302010000020100ff00ff00cc000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00c201010001010000010101000000030201
+0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff
+00c2010100010100000101010000000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00cc000302010000020100ff00ff00c2010100010100
+000101010000000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201090003
+02010000020100ff00ff00c20109000302010000020100ff00ff00c20109000302010000
+020100ff00ff00c20109000302010000020100ff00ff00c2010007000007000302010000
+020100ff00ff00c2010007000007000302010000020100ff00ff00c20101070000060003
+02010000020100ff00ff00c20101070000050700000302010000020100ff00ff00c20102
+070000040100000302010000020100ff00ff00c201030003070001000003020100000201
+00ff00ff00c201030700000207000100000302010000020100ff00ff00c2010400010700
+0101000302010000020100ff00ff00c201040700000007000101000302010000020100ff
+00ff00c2010507000102000302010000020100ff00ff00c20109000302010000020100ff
+00ff00c20109000302010000020100ff00ff00c20109000302010000020100ff00ff00c2
+010900030201000002010091010c00010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010c00010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010a0004030100020003020100000201001c020100320206
+00040500040002010400060000100500060002000019010c000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+00010100000101010001010c000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+00010100000101010001010100010100000101010001010a000403010002000302010000
+0201001c040100320206000305000205000e060002030019010a00010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010c00010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010c00040301000200030201
+00000201001906010500040105000601002f02010008020104000500000005000600000e
+06000500000002010019010a000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+00010101000101000001010100010101000101000001010100010101000101000001010c
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+00010101000101000001010c000403010002000302010000020100190400020100010201
+0400002f0201000706000201000a02020008020100190108070101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101000008010200010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010007010107
+0004030100020003020100000201001b050000010500003102010007040002000600000a
+020200080201001901060700009c01000008010000ff0075010000020700010500040301
+0002000302010000021a000204030003022b000102030600000402010500060002010400
+05000005020200080201000e020a01030701000601010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010102000801000001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101020004070101020004030100020003
+02010000021a0001060002000501020006000002022b0001020505000002020106000204
+050000100201000e020a0101070100060101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010100000801020001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101000006070101000306000200030201
+001d05000400000104000500003305000400020004000002020104000500000005000400
+020004000010020100190100070000080101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010100000801020001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+0100000101010001010100010100000101010001010000080700030600020003021d000a
+022b000602010002020105000003020100100201000e020a010107000009010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101020008010000010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010200070700
+010000090003021d000a022b0006020100020400020005000003020100100201000e020a
+010307000007010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101020008010000010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+00010100000101020005070001020009005a060005000000050004000200040000020600
+020105000001040002000400000402020008020100190105070000030101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010100000801020001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101000003
+070001040009005a02050500000304000205050000040202000502070016010607010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010000080102000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+0101000101000001070101050009005a0400020204000500000506000202040005000005
+020200050207001601080701000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010102
+000801000001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+00010101000101010001010000010102070101070009009a010a0099010a00ff0075010a
+0009009a010c000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+01010001010100010100000101010001010100010100000101010001010c000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+01010001010a0009009a010a000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+00010101000101000001010100010101000101000001010100010101000101000001010c
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+00010101000101000001010c0009009a010a000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+01000001010c000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+01000001010100010101000101000001010c0009
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 725 305
+%%EOF

BIN
docs/pics/idewin.png