From 598373154cd3cff460ed5de7de998dd3a93e2237 Mon Sep 17 00:00:00 2001 From: "Martin A. Brown" Date: Sun, 24 Jan 2016 15:26:21 -0800 Subject: [PATCH] create actual .eps files and move image files into ./images/ --- .../images/hardware-setup.eps | 6678 +++++++++++++++++ .../{ => images}/hardware-setup.png | Bin .../images/old-hardware-setup.eps | 5575 ++++++++++++++ .../{ => images}/old-hardware-setup.png | Bin 4 files changed, 12253 insertions(+) create mode 100644 LDP/howto/docbook/BRIDGE-STP-HOWTO/images/hardware-setup.eps rename LDP/howto/docbook/BRIDGE-STP-HOWTO/{ => images}/hardware-setup.png (100%) create mode 100644 LDP/howto/docbook/BRIDGE-STP-HOWTO/images/old-hardware-setup.eps rename LDP/howto/docbook/BRIDGE-STP-HOWTO/{ => images}/old-hardware-setup.png (100%) diff --git a/LDP/howto/docbook/BRIDGE-STP-HOWTO/images/hardware-setup.eps b/LDP/howto/docbook/BRIDGE-STP-HOWTO/images/hardware-setup.eps new file mode 100644 index 00000000..8f4d4c5e --- /dev/null +++ b/LDP/howto/docbook/BRIDGE-STP-HOWTO/images/hardware-setup.eps @@ -0,0 +1,6678 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: (ImageMagick) +%%Title: (hardware-setup.eps) +%%CreationDate: (2016-01-24T15:22:30-08:00) +%%BoundingBox: -0 -0 673 361 +%%HiResBoundingBox: 0 0 673 361 +%%DocumentData: Clean7Bit +%%LanguageLevel: 1 +%%Pages: 1 +%%EndComments + +%%BeginDefaults +%%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. +% +/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 eq + { + /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 eq + { + /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 eq + { + /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 eq + { + /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-none or 1-RunlengthEncoded. + % hex color packets. + % + gsave + /buffer 512 string def + /byte 1 string def + /color_packet 3 string def + /pixels 768 string def + + 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 + /Times-Roman 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 673 361 +userdict begin +DisplayImage +0 0 +673 361 +12 +673 361 +1 +0 +0 +3 +000000 +FFC0CB +FFFFFF +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0000000202020202020202020202020202020202020202020202020202020202020202020200 +0000000200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020000000202020202020202020200000000 +0202000000000202000000000202020202020000000000000000020000000002020200000002 +0202020202000000000200020202020202020202020200000202020202020202020202020200 +0000020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202000000000002020202020202 +0202020202020202020202020202020202020202020202020200000202020000020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202000002020202020202020202020000020202020000020202020000 +0202020202020200000200000200000202000000020202020002020202020200000202020000 +0202020202020202020202000002020200020202020202020202020000020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202000202020000020202020202020202020202020202020202 +0202020202020202020202020202000002020202000202020202020202020202020202020202 +0202020202020202020202020202020202020200000202020202020202020202020202020202 +0000020202020202020202020200000202020200000202020200000202020202020200020200 +0002020002020200000002020002020202020202000002020202000202020202020202020202 +0202020200000202020202020202020200000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020200000202020000000202020000000002020000000200000202000002020202 +0202020000000202020200000002000000020000000200000202020200000002020000020000 +0002000000000200000000020200000000020202020000000202020000020000000202020202 +0202000002020202000002020202000002020202020202020202000002020202020202000000 +0002020202020202020000000202020200000002000000020000000000020000000002020200 +0000020202000002000002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202000000020202 +0002020000020000020200000202000000020000000200000202020202020200000000020202 +0000020200000202000000020000020200020200000202000002000000000202000202000002 +0200000202000002020002020000020200000202000202020202020202000002020202000002 +0202020000020202020202020202020000020202020202020200000202020202020202020200 +0000000202020000020200020200020200000202000002020200020200000202000000020000 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020200000002000002020000020000020200 +0002020000020200000202000002020202020202020200000002020000020200000202000002 +0200000200000202000002020000020202000000020202020000020202020202000002000002 +0200000202000002000202020202020202020000020202020000020202020000020202020202 +0202020200000202020202020202000000020202020202020202020200000002020000000200 +0002000202000002020000020200000202000002020000020200000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020000020000020202020200000202000002020000020200000202 +0000020202020202020202020000000200000202000002020000020200000200000000000002 +0200000202020200000002020200000202020000000000020000020202020202000000000202 +0202020202020200000202020200000202020200000202020202020202020200000202020202 +0202000200000002020202020202020202020000000202000002000000020202000002020000 +0202000002020202020200000202000002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202000002 +0202000200000202020202000002020000020200000202000002020000020202020202000202 +0202000002000002020000020200000202000002000002020202020200000202020202000000 +0202000002000000020200000200000202020202020000020000020202020202020200000202 +0202000002020202000002020202020202020202000002020202020200020202000000020202 +0202020002020202000002020000000200000202020000020200000200000002020202020200 +0002020000020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020000000200000200000002020002 +0000020200000202000002020000020200000202020202020000020202000002000002020000 +0202000002020000020000000202000202000002020200020200000202000000020000020200 +0002000000020200020200000202000002020202020202000002020202000002020202000002 +0202020202020202020000020202020200020202020200000002020202020000020202000002 +0200000002000002020200000202000000020000000202000202000002020000020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202000000000202020000000002020200000000020200000000 +0200000002000000020202020200000000000002020200000002000002000000000002020200 +0000000202000000000202000000000202020200000202000000020000020000000002020000 +0002020000000202020202000000000202000000000202000000000202020202020202000000 +0002020200000002020200000000000202020200000000000002020202000202000202020000 +0000020200000202000000000202000000020200000002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020000020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020000000002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020000 +0000000000000000000000000000000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200000000000000000000000000000000000202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020200000000000000000000000000 +0000000002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000000000000000000000000000000000002020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202000000000000000000000000000000000002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000000000000 +0000000000000000000000020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020000000000000000000000000000000000020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020000000000000000000000000000000000 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020000000000000000 +0000000000000000000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200000000000000000000000000000000000202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020200000000000000000000000000000000000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0000000000000000000000000000000002020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202000000000000000000000000000000000002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000000000000000000000000 +0000000000020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202000000 +0000000000000000000000000000020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020000000000000000000000000000000000020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020000000000000000000000000000 +0000000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200000000000000000000000000000000000202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020200000000000000000000000000000000000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200000000000000 +0000000000000000000002020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202000000000000000000000000000000000002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000000000000000000000000000000000002 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202000000000000000000 +0000000000000000020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020000000000000000000000000000000000020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020000020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020000000000000000000000000000000000020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020000 +0000000000000000000000000000000202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020200000000000000000000000000000000000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200000000000000000000000000 +0000000002020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020200000000 +0000000000000000000000000002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000000000000000000000000000000000002020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202000000000000000000000000000000 +0000020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020000000000000000000000000000000000020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020000020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020000000000000000000000000000000000020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020000000000000000 +0000000000000000000202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020000020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020000 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020000020202020202020000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000020202020202020000020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020200000202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202000002020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202000002 +0202020202020002020202020202020202020202020202020202020202020000000202020202 +0202020000000002020202020202000000000202020202020202020202020202020202020202 +0202020202020200000000020202020202020000000202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202000202020202020202020202020202020202020200000000000000000202020200000000 +0000000202020202020202020202020202020202020202020200000000020202020202020000 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020000020202020202020002020202 +0202020000000000000000020202020202020000000002020202020200000000000002020202 +0200000000000002020202020202020202020202020202020202020202020202000000000000 +0202020202020000000002020200000002020202000000020000000000000002020202020202 +0202020202020202020002020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202000202020202020200 +0000000000000002020202000000000000000002020202000000000000000202020202020202 +0202020202020202020202020000000000000202020202020000000002020200000002020202 +0000000200000000000000020202020202020202020202020202020202020202020202020202 +0202020202000202020202020200000202020202020200020202020202020000000000000000 +0002020202020000000000020202020200000002020202020202020000000202020202020202 +0202020202020202020202020202020202020202000000020202020202020202000000000002 +0202000000020202020000000200000000000000000202020202020202020202020202020002 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020002020202020202000000000000000000020202 +0000020202020000020202020000020202020202020202020202020202020202020202020202 +0000000202020202020202020000000000020202000000020202020000000200000000000000 +0002020202020202020202020202020202020202020202020202020202020202000202020202 +0202000002020202020202000202020202020202000002020202000000020202020000020000 +0202020202000002020202020202020200000202020202020202020202020202020202020202 +0202020202020202020000020202020202020202020000020000020202020000000202000000 +0202020200000202020000020202020202020202020202020200020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020200020202020202020200000202020200000002020202020202000002020202 +0200000202020202020202020202020202020202020202020202020000020202020202020202 +0200000200000202020200000002020000000202020200000202020000020202020202020202 +0202020202020202020202020202020202020202020002020202020202000002020202020202 +0002020202020202020000020202020200000202020000020200000202020200000200000002 +0202020200000200000002020202020202020202020202020202020202020202020202000002 +0000000202020202020000020200000202020200000002020000000202020200000202020000 +0202020202020202020202020202000202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020200020202 +0202020202000002020202020000020202020202020000020202020200000000000002020202 +0202020202020202020202020202020000020000000202020202020000020200000202020200 +0000020200000002020202000002020200000202020202020202020202020202020202020202 +0202020202020202020200020202020202020000020202020202020002020202020202020000 +0202020200000002020200000202000002020202000000000000000202020200000000000000 +0202020202020202020202020202020202020202020202020000000000000002020202020000 +0202000002020202000000000000000002020202000000000000020202020202020202020202 +0202020002020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202000202020202020202000002020202 +0000000202020202020200000202020202000000000000000202020202020202020202020202 +0202020200000000000000020202020200000202000002020202000000000000000002020202 +0000000000000202020202020202020202020202020202020202020202020202020202020200 +0202020202020200000202020202020200020202020202020200000000000000000202020000 +0202020000020202020000000202000000020202000000020200000002020202020202020202 +0202020202020202020202020200000002020000000202020000020202000002020202000002 +0000020000020202020000000000000002020202020202020202020202020002020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020002020202020202020000000000000000020202020202020000 +0202020202020000020200000002020202020202020202020202020202020200000002020000 +0002020200000202020000020202020000020000020000020202020000000000000002020202 +0202020202020202020202020202020202020202020202020202000202020202020200000202 +0202020202000202020202020202000000000000000202020200000000000000000202020000 +0202020200000202020000020202020000020202020202020202020202020202020202020202 +0202000002020202000002020200000000000000000202020000020000020000020202020000 +0202020200000202020202020202020202020200020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0200020202020202020200000000000000020202020202020200000202020202020202020202 +0000020202020202020202020202020202020202000002020202000002020200000000000000 +0002020200000200000200000202020200000202020200000202020202020202020202020202 +0202020202020202020202020202020002020202020202000002020202020202000202020202 +0202020000020202020202020202000000000000000002020200000202020200000202020000 +0202020200000202020202020202020202020202020202020202020202000002020202000002 +0202000000000000000002020200000200000200000202020200000202020200000202020202 +0202020202020202000202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020200020202020202020200 +0002020202020202020202020202000002020202020202020202020000020202020202020202 +0202020202020202020000020202020000020202000000000000000002020200000200000200 +0002020202000002020202000002020202020202020202020202020202020202020202020202 +0202020200020202020202020000020202020202020002020202020202020000020202020202 +0202020202020202000002020202000000020200000002020200000002020000000202020202 +0202020202020202020202020202020202020000000202000000020202020202020200000202 +0202000002020202000002020202000002020202000002020202020202020202020202000202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202000202020202020202000002020202020202020202 +0202000002020202020200000202020000000202020202020202020202020202020202020000 +0002020000000202020202020202000002020202000002020202000002020202000002020202 +0000020202020202020202020202020202020202020202020202020202020200020202020202 +0200000202020202020200020202020202020000000000000202020202020202020000000000 +0202020200000000000002020202020000000000000202020202020202020202020202020202 +0202020202020202000000000000020202020202020000000000020200000000020200000000 +0200000000000000000002020202020202020202020202020002020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020002020202020202000000000000020202020202020202000002020202020200 +0000000000000202020202020202020202020202020202020202000000000000020202020202 +0200000000000202000000000202000000000200000000000000000002020202020202020202 +0202020202020202020202020202020202020202000202020202020200000202020202020200 +0202020202020200000000000002020202020202020200000000000202020202000000000202 +0202020202000000000202020202020202020202020202020202020202020202020202020000 +0000020202020202020200000000000202000000000202000000000200000000000000000202 +0202020202020202020202020200020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020002020202 +0202020000000000000202020202020202020000020202020202020000000000020202020202 +0202020202020202020202020202020200000000020202020202020200000000000202000000 +0002020000000002000000000000000002020202020202020202020202020202020202020202 +0202020202020202020002020202020202000002020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020000020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020000020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020200000202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202000002020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0000020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020000020202020202020002 +0202020202020200000000000202020202020202000202020202020202020202020202000202 +0202020202020202020202020202000000000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202000202020202 +0202000000000000000202020202020202020202020000020202020202020202020202020200 +0002020202020202020202020202020202020200020202020202020202020202020200020202 +0202020202020202020202020202020002020202000000000202020000000002020202020202 +0202020202020202000202020202020200000202020202020200020202020202020202000202 +0000020202020202020002020202020202020202020202020002020002020202020202020202 +0202000002020000020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020002020202020202020200020202000002 +0202020202020202020002000202020202020202020202020202020002020002020202020202 +0202020202020202000202020202020202020202020202000202000202020202020202020202 +0202000000020202000002020000020000020200000202020202020202020202020202000202 +0202020202000002020202020202000202020202020202020002020200020202020202020202 +0202020202020202020202020202020200020202020202020202020202000202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020002 +0202020202020000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000202020202 +0202000202020202020200020202020202020202000202020200020202020202020202020002 +0202020202020202020202020202020200020200020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020200020202000202 +0202000200020202020002020202020202020202020202020002020202020202000002020202 +0202020002020202020202020200020202000200020000000000020202000000020200020000 +0000000200000000000000020000000202020002020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020200020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202000202020202020200 +0202020202020202020002020202020002020200000002020000000002020000000202000002 +0200000202000200000000000002000002020002000000000002020200000002020002000000 +0000020000000000000002000000020202020202000202020002020202000200020202020002 +0202020202020202020202020200020202020202020000020202020202020002020202020202 +0202000202000002020000020002000202000002000002020000020002000202000202020002 +0202000202020200020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202000202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020002020202020202000202020202020202020002 +0202020200020200020202000202000202020000020200020200020202000202000202000202 +0200000200000202000002000200020200000200000202000002000200020200020202000202 +0200020202020202020002020200020202020002000202020200020202020202020202020202 +0202000202020202020200000202020202020200020202020202020202000000000202020002 +0202020002020002020200020200020202020002020002020200020202000202020200020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020002020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020200020202020202020002020202020202020200020202020200020200000000 +0002020002020202020200000202000202020002020002020002020200020202000202000202 +0202000202000202020002020002020202000202000202020002020200020202020202020002 +0202000202020200020002020202000202020202020202020202020202000202020202020200 +0002020202020202000202020202020202020002020202020200020202020002020002020200 +0202000202020200020200020202020002000202020202000202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020002020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020200020202 +0202020200020202020202020202000202020202000202000202020202020002020202000002 +0002020002020200020200020200020202000202020002020002020202000202000202020002 +0200020202020002020002020202000200020202020202020200020202000202020200020002 +0202020002020202020202020202020202020002020202020202000002020202020202000202 +0202020202020200020202020202000202020200020200020202000202000202020200020200 +0202020200020002020202020002020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020200020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202000202020202020200020202020202 +0202020002020202000202020002020202020200020202000202020002020002020200020200 +0202000202020002020200020200020202020002020002020200020200020202020002020002 +0202020002000202020202020202000202020002020202000200020202020002020202020202 +0202020202020200020202020202020000020202020202020002020202020202020200020202 +0202020002020202000202000002000002020002020202000202000202020202000202020202 +0200000202000002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202000202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020002020202020202000202020202020202020002020200000202 +0200000202020002000202020000020200020200000200000202000202000202020000020000 +0202000202020200020200000200000202000202020200020200020202020200020202020202 +0202020002020200000202000002000002020000020202020202020202020202020200020202 +0202020200000202020202020200020202020202020200000002020202000000020200000002 +0200000002020000000202000000020200000202000002020202020202000000000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202000202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0200020202020202020002020202020202000000000000000202020202000000000200000000 +0202000000020002020000020000000000020200000200020000020200000002020000000202 +0000000202000000020200000002020000020200000202020202020200000000000202000000 +0002020200000000020202020202020202020202020202000202020202020200000202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020002020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020200020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202000002020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020200020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202000202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020002000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020000020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202000202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020002020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000000020202020202020202 +0202020202020202020202020202020202020202020200000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020000 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202000202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020002020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020200000202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020002020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020200020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202000002020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020200020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202000202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020000020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020200020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0002020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020000020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202000202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020002020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020200000202020202020200000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000020202020202020002020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020200020202020202020000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0002020202020202000002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020000020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020000020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200000202020202020200000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000002020202020202 +0002020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020200020202020202020000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000202020202020200000202 +0202020202000101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010100020202020202020002020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020200020202020202 +0200010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010002020202020202000002020202020202000101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101000202020202020200020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202000202020202020200010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010100020202020202020000020202020202020001010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101000202 +0202020202000202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020002020202020202000101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010100020202020202 +0200000202020202020200010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010002020202020202000202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020002 +0202020202020001010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101000202020202020200000202020202020200 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010100020202020202020002020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020200020202020202020001010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010002020202020202000002020202020202000101010101010101000000 +0001010101010101010101000000000101010000000001010101000000000101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101000202020202020200020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020200000000020200000000020000000000000002020202020200000000020202 +0000000202020000000002000202020202020000000002020000000002000000000202000000 +0200000000000000020202020000020202020000000000020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202000202020202020200010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010000000001010101010101 +0101010100000000010100000000010101000000000101000001010101010101010101010002 +0202020202020000020202020202020001010101010101000001010000010101010101010100 +0001010000010000010100000101010000000101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101000202020202020200 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202000002 +0202020000020202000002020000000202020202020000020202020200020202000002020200 +0002020202020202000002020202000002020200000202020200020202000002020200000200 +0000000202020200000000000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020002020202020202000101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010000010100000101010101010101010100000001010000 +0101000001000001010000010100010101010101010101010100020202020202020000020202 +0202020200010101010101010001010101000101010101010101000101010100010001010101 +0001010001010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101000000000000 +0000000000000000000000010101010101010002020202020202000202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020000020202020000020202000002 +0202000002020202020200000202020200000202000002020202020002020202020202000002 +0202020000020202000002020202000202020000020202000002020200000202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020002020202020202 +0001010101010101000000000000000000000000000000000001010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010100010101010001010101010101010100010101010100010101010001000101010100 +0101000101010101010101010101000202020202020200000202020202020200010101010101 +0101010101000101010100000000010001010101000100010101010001010000000101010101 +0000000001010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010000000000000000000000000000000000 +0101010101010100020202020202020002020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020200000202020200000202020000020202000002020202020202 +0000020202000202020000020202020200020202020202020000020202020000020202000002 +0202020002020200000202020000020202000002020202000000000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020200020202020202020001010101010101000000 +0000000000000000000000000000010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101000101 +0101000000000101000000010101000101010100010001010101000101000100000101010101 +0101010002020202020202000002020202020202000101010101010101010000010101010000 +0101000100000101000001000101010100010100010000010101000001010001010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010100000000000000000000000000000000000101010101010100020202 +0202020200020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202000000000000000002020200000202020000020202020202020000020200000202020000 +0202020202020202020202020200000000000000000202020000020202020002020200000000 +0000020202020000020202020000000000020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202000202020202020200010101010101010000000000000000000000000000 +0000000101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010100000101010100000101000101000100 +0001010001010101000100000101000001010000010000010101010101010002020202020202 +0000020202020202020001010101010101010101010001010100010101010101000000000101 +0001010101000101010101000001010001010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010100 +0000000000000000000000000000000001010101010101000202020202020200020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202000002020202000002 +0202000000000000020202020202020200000202000202020200000202020000000002020202 +0202000002020202000002020200000202020200020202000002020200000202020000020202 +0202020200000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202000202 +0202020202000101010101010100000000000000000000000000000000000101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010100010101000101010101010101010000010001010101000101 +0000000001010100010101000101010101010100020202020202020000020202020202020001 +0101010101010101010101000101000101010101010101010001010001010101000101010101 +0100010100010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101000000000000000000000000 +0000000000010101010101010002020202020202000202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020000020202020000020202000002020202020202 +0202020202020000020002020202000002020202000002020202020202000002020202000002 +0202000002020202000202020000020202000002020200000202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020002020202020202000101010101 +0101000000000000000000000000000000000001010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010001010001010101010101010101000100010101010001010101010001010100010101 +0001010101010101000202020202020200000202020202020200010101010101010101010101 +0001010001010101010101010001010100010101010001010101010100010100010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010000000000000000000000000000000000010101010101 +0100020202020202020002020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020200000202020200000202020000020202020202020202020202020000000002 +0202020000020202020000020202020202020000020202020000020202000002020202000202 +0200000202020000020202000002020200000202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020200020202020202020001010101010101000000000000000000 +0000000000000000010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010001010001010101 +0101010101010001000101010100010101010001010101000101010001010101010101000202 +0202020202000002020202020202000101010101010100000101000001010000010101000100 +0001010101000001010000010100010100010101000001010100010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010100000000000000000000000000000000000101010101010100020202020202020002 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020200000202 +0202000002020200000202020202020202020202020202000002020202020200000202020000 +0202020202020200000202020200000202020000000202000002020200000202020000020202 +0000020202000002020000020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202000202020202020200010101010101010000000000000000000000000000000000010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101000001010000010100000101010001000101000101000001 +0100000101000001010101010001010000010101010101010002020202020202000002020202 +0202020001010101010101010000000001010101000000000100000101010101010000000001 +0101000000010101010100000000010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010100000000000000 +0000000000000000000001010101010101000202020202020200020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020200000000020200000000020000000002 +0202020202020202020202020000020202020202020000000000020202020202020000000002 +0200000000020202000000000002020200000000000000020200000000000002020000000002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202000202020202020200 +0101010101010100000000000000000000000000000000000101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010100000000010101010000000001010000000101010100000000010100000101010101 +0100000000010101010101010100020202020202020000020202020202020001010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101000000000000000000000000000000000000 +0000000000000000000000000000000000000000000002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200000000000000000000000000000000000000000000000000000000 +0000000000000000000000000001010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101000202020202020200000202020202020200010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010000000000000000000000000000000000010101010101010002020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020001010101010101000000000000000000000000000000 +0000010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101000202020202020200 +0002020202020202000101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010000 +0000000000000000000000000000000101010101010100020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020200010101010101010000000000000000000000000000000000010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010002020202020202000002020202020202000101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010100000000000000000000000000 +0000000001010101010101000202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020200010101010101 +0100000000000000000000000000000000000101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010100020202020202020000020202020202020001010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101000000000000000000000000000000000001010101010101 +0002020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202000101010101010100000000000000000000 +0000000000000001010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010100020202 +0202020200000202020202020200010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010000000000000000000000000000000000010101010101010002020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020001010101010101000000000000000000000000000000000001010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101000202020202020200000202020202 +0202000101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010000000000000000 +0000000000000000000101010101010100020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020001 +0101010101010000000000000000000000000000000000010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010002020202020202000002020202020202000101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010100000000000000000000000000000000000101 +0101010101000202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020200010101010101010000000000 +0000000000000000000000000101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0100020202020202020000020202020202020001010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101000000000000000000000000000000000001010101010101000202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020000000000000000000000000000000000020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020000000000000000000000000000 +0000000202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202000101010101010100000000000000000000000000000000 +0001010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010100020202020202020000 +0202020202020200010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010002020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020000000000 +0000000000000000000000000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200000000000000000000000000000000000202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020001010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101000202020202020200000202020202020200010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010100020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020200000000000000000000000000000000 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000000000000000000000000000000000002020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020001010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010002020202020202000002020202020202000101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010100 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202000000000000000000000000000000000002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000000000000000000 +0000000000000000020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020200010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010002020202 +0202020000020202020202020001010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101000202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0000000000000000000000000000000000020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020000000000000000000000000000000000020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202000101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010100020202020202020000020202020202 +0200010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010002020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020000000000000000000000 +0000000000000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200000000000000000000000000000000000202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202000101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101000202020202020200000202020202020200010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010100020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020200000000000000000000000000000000000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200000000 +0000000000000000000000000002020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020001010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0002020202020202000002020202020202000101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010100020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202000000000000000000000000000000000002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000000000000000000000000000000 +0000020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020200010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010002020202020202000002 +0202020202020000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202000000000000 +0000000000000000000000020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020000000000000000000000000000000000020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000020202020202020000020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020000000000000000000000000000000000 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200000000000000000000000000000000000202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020200000000000000000000000000000000000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200000000000000000000 +0000000000000002020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020200 +0000000000000000000000000000000002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000000000000000000000000000000000002020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202000000000000000000000000 +0000000000020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020000000000000000000000000000000000020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020000020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020000000000000000000000000000000000020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020000000000 +0000000000000000000000000202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020200000000000000000000000000000000000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200000000000000000000000000000000 +0002020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020200000000000000 +0000000000000000000002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000000000000000000000000000000000002020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202000000000000000000000000000000000002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0000000000000000000000000000000000020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020000020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020000020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020000020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000002020202020202000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020200000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000002020202020202 +0000020202020202020001010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101000202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202000101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010100020202020202020000020202020202020001 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010002020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202000101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101000202020202020200000202020202020200010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0100020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020001010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101000202 +0202020202000002020202020202000101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010100020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020200010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010002020202020202000002020202 +0202020001010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101000202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020200 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010100020202020202020000020202020202020001010101010101 +0100000001010000000101000000000001010101010100000001010101010000000001010100 +0000010101010000000001010000000000000101010101010000000000010101010100000000 +0100010100000001010101010101010101010101010101010101010101010101010101010101 +0101010101010002020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202000101010101010101010101 +0101010101010101010101010101010101010101010101010101010101000000010100000001 +0100000000000101010101010000000101010101000000000101010000000101010100000000 +0101000000000000010101010101000000000001010101010000000001000101000000010101 +0101000202020202020200000202020202020200010101010101010101000101010100010101 +0100010100000101010100000100000101010100000001010100000100000101010000000101 +0101000101010000010101010101000101000001010100000101010000010101000101010101 +0101010101010101010101010101010101010101010101010101010101010101010002020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020001010101010101010101010101010101010101010101 +0101010101010101010101010101010101010100010101010001010101000101000001010101 +0000010000010101010000000101010000010000010101000000010101010001010100000101 +0101010100010100000101010000010101000001010100010101010101000202020202020200 +0002020202020202000101010101010101010001010101000101010100010101000101010100 +0101010001010100010101010101000101010001010001010101010101000101010100010101 +0101010001010100010100000101010101000101010001010101010101010101010101010000 +0000000000000000000000000000000101010101010100020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020200010101010101010000000000000000000000000000000000010101010101010101 +0101010101010101000101010100010101010001010100010101010001010100010101000101 +0101010100010101000101000101010101010100010101010001010101010100010101000101 +0000010101010100010101000101010101010002020202020202000002020202020202000101 +0101010101010100010101010001010101000101010001010101010101010001010100000001 +0101010000010100010100000001010101010001010100000101010101010001010100010100 +0101010101010001010100010101010101010101010101010100000000000000000000000000 +0000000001010101010101000202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020200010101010101 +0100000000000000000000000000000000000101010101010101010101010101010101000101 +0101000101010100010101000101010101010101000101010000000101010100000101000101 +0000000101010101000101010000010101010101000101010001010001010101010100010101 +0001010101010100020202020202020000020202020202020001010101010101010100000000 +0000010101010001010000010101010101010000010101000100000101010100000001010100 +0100000101010100000000000101010101010100010100000101000101010101010101010100 +0101010101010101010101010101000000000000000000000000000000000001010101010101 +0002020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202000101010101010100000000000000000000 +0000000000000001010101010101010101010101010101010000000000000101010100010100 +0001010101010101000001010100010000010101010000000101010001000001010101000000 +0000010101010101010001010000010100010101010101010101010001010101010100020202 +0202020200000202020202020200010101010101010101000101010100010101010000000001 +0101010101010100010101010101010000010100010100000101010101000001010100010101 +0000010101010101000000000101010001010101010101010101000101010101010101010101 +0101010000000000000000000000000000000000010101010101010002020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020001010101010101000000000000000000000000000000000001010101 +0101010101010101010101010100010101010001010101000000000101010101010101000101 +0101010101000001010001010000010101010100000101010001010100000101010101010000 +0000010101000101010101010101010100010101010101000202020202020200000202020202 +0202000101010101010101010001010101000101010100010101010101010101010001010101 +0101010101000101000101010001010101010100010101000101010100010101010101000101 +0101010100010101010101010101010001010101010101010101010101010000000000000000 +0000000000000000000101010101010100020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020001 +0101010101010000000000000000000000000000000000010101010101010101010101010101 +0101000101010100010101010001010101010101010101000101010101010101010001010001 +0101000101010101010001010100010101010001010101010100010101010101000101010101 +0101010101000101010101010002020202020202000002020202020202000101010101010101 +0100010101010001010101000101010101010101010001010101010101010101000101000101 +0100010101010101000101010001010101000101010101010001010101010100000101010101 +0001010100010101010101010101010101010100000000000000000000000000000000000101 +0101010101000202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020200010101010101010000000000 +0000000000000000000000000101010101010101010101010101010101000101010100010101 +0100010101010101010101000101010101010101010100010100010101000101010101010001 +0101000101010100010101010101000101010101010000010101010100010101000101010101 +0100020202020202020000020202020202020001010101010101010100010101010001010101 +0001010101010101010000010101000101000101000101010000010000010100010100010101 +0100010101000001010101010100010101010101010000010101000101010100010101010101 +0101010101010101000000000000000000000000000000000001010101010101000202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202000101010101010100000000000000000000000000000000 +0001010101010101010101010101010101010001010101000101010100010101010101010100 +0001010100010100010100010101000001000001010001010001010101000101010000010101 +0101010001010101010101000001010100010101010001010101010100020202020202020000 +0202020202020200010101010101010100000001010000000101000000010101010101010000 +0000000001010000000101010101000000010101000000010101010000000000000101010101 +0100000001010101010101000000000101010100000001010101010101010101010101000000 +0000000000000000000000000000010101010101010002020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020001010101010101000000000000000000000000000000000001010101010101010101 +0101010101010000000101000000010100000001010101010101000000000000010100000001 +0101010100000001010100000001010101000000000000010101010101000000010101010101 +0100000000010101010000000101010101000202020202020200000202020202020200010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010002020202020202000002020202020202000101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010100000000000000000000000000000000000101010101010100 +0202020202020200020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202000202020202020200010101010101010000000000000000000000 +0000000000000101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010002020202 +0202020000020202020202020001010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101000000000000000000000000000000000001010101010101000202020202020200020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0002020202020202000101010101010100000000000000000000000000000000000101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010100020202020202020000020202020202 +0200010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101000000000000000000 +0000000000000000010101010101010002020202020202000202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020002020202020202000101 +0101010101000000000000000000000000000000000001010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101000202020202020200000202020202020200010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010000000000000000000000000000000000010101 +0101010100020202020202020002020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020200020202020202020001010101010101000000000000 +0000000000000000000000010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0002020202020202000002020202020202000101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010100000000000000000000000000000000000101010101010100020202020202 +0200020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202000202020202020200010101010101010000000000000000000000000000000000 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010002020202020202000002 +0202020202020001010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010100000000 +0000000000000000000000000001010101010101000202020202020200020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202000202020202 +0202000101010101010100000000000000000000000000000000000101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010100020202020202020000020202020202020001010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101000000000000000000000000000000 +0000010101010101010002020202020202000202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020002020202020202000101010101010100 +0000000000000000000000000000000001010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101000202020202020200000202020202020200010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010000000000000000000000000000000000010101010101010002 +0202020202020002020202020202000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000020202020202020200020202020202020001010101010101000000000000000000000000 +0000000000010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101000202020202 +0202000002020202020202000101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010100020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020200010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010002020202020202000002020202020202 +0001010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101000202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020200010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010100020202020202020000020202020202020001010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010002020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202000101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010100 +0202020202020200000202020202020200010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010002020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020001010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101000202020202020200000202 +0202020202000101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010100020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0200010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010002020202020202000002020202020202000101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101000202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020200010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010100020202020202020000020202020202020001010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101000202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202000101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010100020202020202 +0200000202020202020200000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000002020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000202020202020200000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020000020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020000020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0000020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020000020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020000020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020000020202020202020000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0002020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000020202 +0202020200000202020202020200010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010002020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020001010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101000202020202020200000202020202 +0202000101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010100020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020001 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010002020202020202000002020202020202000101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101000202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020200010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0100020202020202020000020202020202020001010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101000202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202000101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010100020202020202020000 +0202020202020200010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010002020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020001010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101000202020202020200000202020202020200010101 +0101010101000000010100000001010000000000010101010101000000010101010100000000 +0101010000000101010100000000010100000000000001010101010100000000000101010101 +0000000001000101000000010101010101010101010101010101010101010101010101010101 +0101010101010101010100020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020000000002020000000002000000000000000202020202 +0200000000020202000000020202000000000200020202020202000000000202000000000200 +0000000202000000020000000000000002020202000002020202000000000002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020001010101010101 +0101010101010101010101010101010101010101010101010101010101010101010000000101 +0000000101000000000001010101010100000001010101010000000001010100000001010101 +0000000001010000000000000101010101010000000000010101010100000000010001010000 +0001010101010002020202020202000002020202020202000101010101010101010001010101 +0001010101000101000001010101000001000001010101000000010101000001000001010100 +0000010101010001010100000101010101010001010000010101000001010100000101010001 +0101010101010101010101010101010101010101010101010101010101010101010101010100 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202000002020202000002020200000202000000020202020202000002020202020002 +0202000002020200000202020202020200000202020200000202020000020202020002020200 +0002020200000200000000020202020000000000020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020200010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101000101010100010101010001010000 +0101010100000100000101010100000001010100000100000101010000000101010100010101 +0000010101010101000101000001010100000101010000010101000101010101010002020202 +0202020000020202020202020001010101010101010100010101010001010101000101010001 +0101010001010100010101000101010101010001010100010100010101010101010001010101 +0001010101010100010101000101000001010101010001010100010101010101010101010101 +0101000000000000000000000000000000000001010101010101000202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202000002020202 +0000020202000002020200000202020202020000020202020000020200000202020202000202 +0202020202000002020202000002020200000202020200020202000002020200000202020000 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202000101010101010100000000000000000000000000000000000101010101 +0101010101010101010101010001010101000101010100010101000101010100010101000101 +0100010101010101000101010001010001010101010101000101010100010101010101000101 +0100010100000101010101000101010001010101010100020202020202020000020202020202 +0200010101010101010101000101010100010101010001010100010101010101010100010101 +0000000101010100000101000101000000010101010100010101000001010101010100010101 +0001010001010101010100010101000101010101010101010101010101000000000000000000 +0000000000000000010101010101010002020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020000020202020000020202000002020200 +0002020202020202000002020200020202000002020202020002020202020202000002020202 +0000020202000002020202000202020000020202000002020200000202020200000000020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202000101 +0101010101000000000000000000000000000000000001010101010101010101010101010101 +0100010101010001010101000101010001010101010101010001010100000001010101000001 +0100010100000001010101010001010100000101010101010001010100010100010101010101 +0001010100010101010101000202020202020200000202020202020200010101010101010101 +0000000000000101010100010100000101010101010100000101010001000001010101000000 +0101010001000001010101000000000001010101010101000101000001010001010101010101 +0101010001010101010101010101010101010000000000000000000000000000000000010101 +0101010100020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020200000000000000000202020000020202000002020202020202000002 +0200000202020000020202020202020202020202020000000000000000020202000002020202 +0002020200000000000002020202000002020202000000000002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020001010101010101000000000000 +0000000000000000000000010101010101010101010101010101010100000000000001010101 +0001010000010101010101010000010101000100000101010100000001010100010000010101 +0100000000000101010101010100010100000101000101010101010101010100010101010101 +0002020202020202000002020202020202000101010101010101010001010101000101010100 +0000000101010101010101000101010101010100000101000101000001010101010000010101 +0001010100000101010101010000000001010100010101010101010101010001010101010101 +0101010101010100000000000000000000000000000000000101010101010100020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020200 +0002020202000002020200000000000002020202020202020000020200020202020000020202 +0000000002020202020200000202020200000202020000020202020002020200000202020000 +0202020000020202020202020000020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020200010101010101010000000000000000000000000000000000 +0101010101010101010101010101010101000101010100010101010000000001010101010101 +0100010101010101010000010100010100000101010101000001010100010101000001010101 +0101000000000101010001010101010101010101000101010101010002020202020202000002 +0202020202020001010101010101010100010101010001010101000101010101010101010100 +0101010101010101010001010001010100010101010101000101010001010101000101010101 +0100010101010101000101010101010101010100010101010101010101010101010100000000 +0000000000000000000000000001010101010101000202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202000002020202000002020200 +0002020202020202020202020202000002000202020200000202020200000202020202020200 +0002020202000002020200000202020200020202000002020200000202020000020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202000101010101010100000000000000000000000000000000000101010101010101010101 +0101010101010001010101000101010100010101010101010101010001010101010101010100 +0101000101010001010101010100010101000101010100010101010101000101010101010001 +0101010101010101010001010101010100020202020202020000020202020202020001010101 +0101010101000101010100010101010001010101010101010100010101010101010101010001 +0100010101000101010101010001010100010101010001010101010100010101010101000001 +0101010100010101000101010101010101010101010101000000000000000000000000000000 +0000010101010101010002020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020000020202020000020202000002020202020202020202 +0202020000000002020202000002020202000002020202020202000002020202000002020200 +0002020202000202020000020202000002020200000202020000020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202000101010101010100 +0000000000000000000000000000000001010101010101010101010101010101010001010101 +0001010101000101010101010101010001010101010101010101000101000101010001010101 +0101000101010001010101000101010101010001010101010100000101010101000101010001 +0101010101000202020202020200000202020202020200010101010101010101000101010100 +0101010100010101010101010100000101010001010001010001010100000100000101000101 +0001010101000101010000010101010101000101010101010100000101010001010101000101 +0101010101010101010101010000000000000000000000000000000000010101010101010002 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020200000202020200000202020000020202020202020202020202020200000202020202 +0200000202020000020202020202020000020202020000020202000000020200000202020000 +0202020000020202000002020200000202000002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020001010101010101000000000000000000000000 +0000000000010101010101010101010101010101010100010101010001010101000101010101 +0101010000010101000101000101000101010000010000010100010100010101010001010100 +0001010101010100010101010101010000010101000101010100010101010101000202020202 +0202000002020202020202000101010101010101000000010100000001010000000101010101 +0101000000000000010100000001010101010000000101010000000101010100000000000001 +0101010101000000010101010101010000000001010101000000010101010101010101010101 +0100000000000000000000000000000000000101010101010100020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020000000002020000 +0000020000000002020202020202020202020202000002020202020202000000000002020202 +0202020000000002020000000002020200000000000202020000000000000002020000000000 +0002020000000002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020200010101010101010000000000000000000000000000000000010101010101 +0101010101010101010100000001010000000101000000010101010101010000000000000101 +0000000101010101000000010101000000010101010000000000000101010101010000000101 +0101010101000000000101010100000001010101010002020202020202000002020202020202 +0001010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010100000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010100020202020202020000020202020202020001010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101000000000000000000000000000000000001010101 +0101010002020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202000101010101010100000000000000 +0000000000000000000001010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010100 +0202020202020200000202020202020200010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010000000000000000000000000000000000010101010101010002020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020001010101010101000000000000000000000000000000000001 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101000202020202020200000202 +0202020202000101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010000000000 +0000000000000000000000000101010101010100020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0200010101010101010000000000000000000000000000000000010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010002020202020202000002020202020202000101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010100000000000000000000000000000000 +0001010101010101000202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020200010101010101010000 +0000000000000000000000000000000101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010100020202020202020000020202020202020001010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101000000000000000000000000000000000001010101010101000202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202000101010101010100000000000000000000000000 +0000000001010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010100020202020202 +0200000202020202020200010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0000000000000000000000000000000000010101010101010002020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020001010101010101000000000000000000000000000000000001010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101000202020202020200000202020202020200 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010000000000000000000000 +0000000000000101010101010100020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020001010101 +0101010000000000000000000000000000000000010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010002020202020202000002020202020202000101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010100000000000000000000000000000000000101010101 +0101000202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020002 +0202020202020202020202020202000000000000000000000000000000000002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000000000000 +0000000000000000000000020202020202020202020202020202000202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020200010101010101010000000000000000 +0000000000000000000101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010002 +0202020202020000020202020202020001010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101000202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020200020202020202020202020202 +0202020000000000000000000000000000000000020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020000000000000000000000000000000000 +0202020202020202020202020202020002020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202000101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010100020202020202020000020202 +0202020200010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010002020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202000202020202020202020202020202020000000000000000 +0000000000000000000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200000000000000000000000000000000000202020202020202020202 +0202020200020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0001010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101000202020202020200000202020202020200010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010100020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020002020202020202020202020202020200000000000000000000000000000000000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0000000000000000000000000000000002020202020202020202020202020200020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020001010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010002020202020202000002020202020202000101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010100020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020002020202020202 +0202020202020202000000000000000000000000000000000002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000000000000000000000000 +0000000000020202020202020202020202020202000202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020200010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010002020202020202 +0000020202020202020001010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101000202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020200020202020202020202020202020202000000 +0000000000000000000000000000020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020000000000000000000000000000000000020202020202 +0202020202020202020002020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202000101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010100020202020202020000020202020202020001 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010002020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202000202020202020202020202020202020000000000000000000000000000 +0000000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200000000000000000000000000000000000202020202020202020202020202020002 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202000101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101000202020202020200000202020202020200010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0100020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202000202 +0202020202020202020202020200000000000000000000000000000000000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200000000000000 +0000000000000000000002020202020202020202020202020200020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020001010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101000202 +0202020202000002020202020202000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020002020202020202020202020202 +0202000000000000000000000000000000000002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000000000000000000000000000000000002 +0202020202020202020202020202000202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020200000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000002020202020202000002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020200020202020202020202020202020202000000000000000000 +0000000000000000020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020000000000000000000000000000000000020202020202020202020202 +0202020002020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020000020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202000202020202020202020202020202020000000000000000000000000000000000020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020000 +0000000000000000000000000000000202020202020202020202020202020002020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202000202020202020202 +0202020202020200000000000000000000000000000000000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200000000000000000000000000 +0000000002020202020202020202020202020200020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020002020202020202020202020202020200000000 +0000000000000000000000000002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000000000000000000000000000000000002020202020202 +0202020202020202000202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020200020202020202020202020202020202000000000000000000000000000000 +0000020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020000000000000000000000000000000000020202020202020202020202020202000202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020000020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020200020202 +0202020202020202020202020000000000000000000000000000000000020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020000000000000000 +0000000000000000000202020202020202020202020202020002020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202000202020202020202020202020202 +0200000000000000000000000000000000000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200000000000000000000000000000000000202 +0202020202020202020202020200020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020002020202020202020202020202020200000000000000000000 +0000000000000002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000000000000000000000000000000000002020202020202020202020202 +0202000202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0200020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202000202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020000020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020200020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020002020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020000 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202000202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020200020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020002020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020200020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020002020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202000202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020000020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020200020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020002020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020000020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202000202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0200020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200000202020202020200000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0002020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020200020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0002020202020202000002020202020202000101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010100020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020002020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202000202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020200010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010002020202020202000002 +0202020202020001010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101000202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020200020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020002020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202000101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010100020202020202020000020202020202020001010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010002020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202000202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020002020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202000101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101000202020202020200000202020202020200010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010002 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202000202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020200020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020001010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101000202020202 +0202000002020202020202000101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010100020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020002020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202000202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020200010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010002020202020202000002020202020202 +0001010101010101010000000101000000010100000000000101010101010000000101010101 +0000000001010100000001010101000000000101000000000000010101010101000000000001 +0101010100000000010001010000000101010101010101010101010101010101010101010101 +0101010101010101010101010101000202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020200020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0002020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020200010101 +0101010101010101010101010101010101010101010101010101010101010101010101010100 +0000010100000001010000000000010101010101000000010101010100000000010101000000 +0101010100000000010100000000000001010101010100000000000101010101000000000100 +0101000000010101010100020202020202020000020202020202020001010101010101010100 +0101010100010101010001010000010101010000010000010101010000000101010000010000 +0101010000000101010100010101000001010101010100010100000101010000010101000001 +0101000101010101010101010101010101010101010101010101010101010101010101010101 +0101010002020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020200 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020002020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202000101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010001010101000101010100 +0101000001010101000001000001010101000000010101000001000001010100000001010101 +0001010100000101010101010001010000010101000001010100000101010001010101010100 +0202020202020200000202020202020200010101010101010101000101010100010101010001 +0101000101010100010101000101010001010101010100010101000101000101010101010100 +0101010100010101010101000101010001010000010101010100010101000101010101010101 +0101010101010000000000000000000000000000000000010101010101010002020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202000202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020200020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020001010101010101000000000000000000000000000000000001 +0101010101010101010101010101010100010101010001010101000101010001010101000101 +0100010101000101010101010001010100010100010101010101010001010101000101010101 +0100010101000101000001010101010001010100010101010101000202020202020200000202 +0202020202000101010101010101010001010101000101010100010101000101010101010101 +0001010100000001010101000001010001010000000101010101000101010000010101010101 +0001010100010100010101010101000101010001010101010101010101010101010000000000 +0000000000000000000000000101010101010100020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020002020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202000202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0200010101010101010000000000000000000000000000000000010101010101010101010101 +0101010101000101010100010101010001010100010101010101010100010101000000010101 +0100000101000101000000010101010100010101000001010101010100010101000101000101 +0101010100010101000101010101010002020202020202000002020202020202000101010101 +0101010100000000000001010101000101000001010101010101000001010100010000010101 +0100000001010100010000010101010000000000010101010101010001010000010100010101 +0101010101010100010101010101010101010101010100000000000000000000000000000000 +0001010101010101000202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020200020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202000202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020200010101010101010000 +0000000000000000000000000000000101010101010101010101010101010101000000000000 +0101010100010100000101010101010100000101010001000001010101000000010101000100 +0001010101000000000001010101010101000101000001010001010101010101010101000101 +0101010100020202020202020000020202020202020001010101010101010100010101010001 +0101010000000001010101010101010001010101010101000001010001010000010101010100 +0001010100010101000001010101010100000000010101000101010101010101010100010101 +0101010101010101010101000000000000000000000000000000000001010101010101000202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020200020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020002020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202000101010101010100000000000000000000000000 +0000000001010101010101010101010101010101010001010101000101010100000000010101 +0101010101000101010101010100000101000101000001010101010000010101000101010000 +0101010101010000000001010100010101010101010101010001010101010100020202020202 +0200000202020202020200010101010101010101000101010100010101010001010101010101 +0101010001010101010101010100010100010101000101010101010001010100010101010001 +0101010101000101010101010001010101010101010101000101010101010101010101010101 +0000000000000000000000000000000000010101010101010002020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202000202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020200020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020001010101010101000000000000000000000000000000000001010101010101 +0101010101010101010100010101010001010101000101010101010101010100010101010101 +0101010001010001010100010101010101000101010001010101000101010101010001010101 +0101000101010101010101010100010101010101000202020202020200000202020202020200 +0101010101010101010001010101000101010100010101010101010101000101010101010101 +0101000101000101010001010101010100010101000101010100010101010101000101010101 +0100000101010101000101010001010101010101010101010101010000000000000000000000 +0000000000000101010101010100020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020002020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020200 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020001010101 +0101010000000000000000000000000000000000010101010101010101010101010101010100 +0101010100010101010001010101010101010100010101010101010101010001010001010100 +0101010101010001010100010101010001010101010100010101010101000001010101010001 +0101000101010101010002020202020202000002020202020202000101010101010101010001 +0101010001010101000101010101010101000001010100010100010100010101000001000001 +0100010100010101010001010100000101010101010001010101010101000001010100010101 +0100010101010101010101010101010100000000000000000000000000000000000101010101 +0101000202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020002 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202000202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020200010101010101010000000000000000 +0000000000000000000101010101010101010101010101010101000101010100010101010001 +0101010101010100000101010001010001010001010100000100000101000101000101010100 +0101010000010101010101000101010101010100000101010001010101000101010101010002 +0202020202020000020202020202020001010101010101010000000101000000010100000001 +0101010101010000000000000101000000010101010100000001010100000001010101000000 +0000000101010101010000000101010101010100000000010101010000000101010101010101 +0101010101000000000000000000000000000000000001010101010101000202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020200020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020002020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202000101010101010100000000000000000000000000000000000101 +0101010101010101010101010101000000010100000001010000000101010101010100000000 +0000010100000001010101010000000101010000000101010100000000000001010101010100 +0000010101010101010000000001010101000000010101010100020202020202020000020202 +0202020200010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200000000000000000000000000000000 +0000000000000000000000000000000000000000000000000001010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101000202020202020200000202020202020200010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010000000000000000000000000000000000 +0101010101010100020202020202020002020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020200020202020202020001010101010101000000 +0000000000000000000000000000010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010002020202020202000002020202020202000101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010100000000000000000000000000000000000101010101010100020202 +0202020200020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202000202020202020200010101010101010000000000000000000000000000 +0000000101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010002020202020202 +0000020202020202020001010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010100 +0000000000000000000000000000000001010101010101000202020202020200020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202000202 +0202020202000101010101010100000000000000000000000000000000000101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010100020202020202020000020202020202020001 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101000000000000000000000000 +0000000000010101010101010002020202020202000202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020002020202020202000101010101 +0101000000000000000000000000000000000001010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101000202020202020200000202020202020200010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010000000000000000000000000000000000010101010101 +0100020202020202020002020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020200020202020202020001010101010101000000000000000000 +0000000000000000010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101000202 +0202020202000002020202020202000101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010100000000000000000000000000000000000101010101010100020202020202020002 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202000202020202020200010101010101010000000000000000000000000000000000010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010002020202020202000002020202 +0202020001010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010100000000000000 +0000000000000000000001010101010101000202020202020200020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202000202020202020200 +0101010101010100000000000000000000000000000000000101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010100020202020202020000020202020202020001010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101000000000000000000000000000000000001 +0101010101010002020202020202000202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000000000000 +0000000000000000000000000000000000000000000000000000020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020000000000000000000000000000000000000000000000000000000000000000 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020002020202020202000101010101010100000000 +0000000000000000000000000001010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101000202020202020200000202020202020200010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010002020202 +0202020002020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020200020202020202020001010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101000202020202020200 +0002020202020202000101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010100020202020202020002020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020200020202 +0202020200010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010002020202020202000002020202020202000101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101000202020202020200020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202000202020202020200010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010100020202020202020000020202020202020001010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0002020202020202000202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020002020202020202000101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010100020202 +0202020200000202020202020200010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010002020202020202000202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0200020202020202020001010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101000202020202020200000202020202 +0202000101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010100020202020202020002020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020200020202020202020001 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010002020202020202000002020202020202000101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101000202020202020200020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202000202020202020200010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0100020202020202020000020202020202020000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000202020202 +0202000202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020002020202020202000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000020202020202020000 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020000020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020000020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020000020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020000020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202000000000202000000000200000000 +0000000202020202020000000002020200000002020200000000020002020202020200000000 +0202000000000200000000020200000002000000000000000202020200000202020200000000 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020200000202020200000202020000020200000002020202020200 +0002020202020002020200000202020000020202020202020000020202020000020202000002 +0202020002020200000202020000020000000002020202000000000002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202000002020202000002020200000202020000020202020202000002020202000002020000 +0202020202000202020202020200000202020200000202020000020202020002020200000202 +0200000202020000020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202000002020202000002 +0202000002020200000202020202020200000202020002020200000202020202000202020202 +0202000002020202000002020200000202020200020202000002020200000202020000020202 +0200000000020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020000000000000000020202000002020200000202 +0202020202000002020000020202000002020202020202020202020202000000000000000002 +0202000002020202000202020000000000000202020200000202020200000000000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020200000202020200000202020000000000000202020202020202000002020002 +0202020000020202000000000202020202020000020202020000020202000002020202000202 +0200000202020000020202000002020202020202000002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020200000202 +0202000002020200000202020202020202020202020200000200020202020000020202020000 +0202020202020200000202020200000202020000020202020002020200000202020000020202 +0000020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202000002020202000002020200000202 +0202020202020202020202000000000202020200000202020200000202020202020200000202 +0202000002020200000202020200020202000002020200000202020000020202000002020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020000020202020000020202000002020202020202020202020202 +0200000202020202020000020202000002020202020202000002020202000002020200000002 +0200000202020000020202000002020200000202020000020200000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0000000002020000000002000000000202020202020202020202020200000202020202020200 +0000000002020202020202000000000202000000000202020000000000020202000000000000 +0002020000000000000202000000000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020200000000000000000000000000000000 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000000000000000000000000000000000002020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202000000000000000000000000000000000002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000000000000000000 +0000000000000000020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0000000000000000000000000000000000020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020000000000000000000000000000000000020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020000000000000000000000 +0000000000000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200000000000000000000000000000000000202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020200000000000000000000000000000000000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200000000 +0000000000000000000000000002020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202000000000000000000000000000000000002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000000000000000000000000000000 +0000020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202000000000000 +0000000000000000000000020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020000000000000000000000000000000000020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020000000000000000000000000000000000 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200000000000000000000000000000000000202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020200000000000000000000000000000000000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200000000000000000000 +0000000000000002020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020200 +0000000000000000000000000000000002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000000000000000000000000000000000002020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202000000000000000000000000 +0000000000020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020000000000000000000000000000000000020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020000000000000000000000000000000000020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020000000000 +0000000000000000000000000202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020200000000000000000000000000000000000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200000000000000000000000000000000 +0002020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020200000000000000 +0000000000000000000002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000000000000000000000000000000000002020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202000000000000000000000000000000000002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0000000000000000000000000000000000020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020000000000000000000000000000000000020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020000000000000000000000 +0000000000000202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020000 +0000000000000000000000000000000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200000000000000000000000000000000000202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +02020202020202020202020202020202020202 + +end +%%PageTrailer +%%Trailer +%%EOF diff --git a/LDP/howto/docbook/BRIDGE-STP-HOWTO/hardware-setup.png b/LDP/howto/docbook/BRIDGE-STP-HOWTO/images/hardware-setup.png similarity index 100% rename from LDP/howto/docbook/BRIDGE-STP-HOWTO/hardware-setup.png rename to LDP/howto/docbook/BRIDGE-STP-HOWTO/images/hardware-setup.png diff --git a/LDP/howto/docbook/BRIDGE-STP-HOWTO/images/old-hardware-setup.eps b/LDP/howto/docbook/BRIDGE-STP-HOWTO/images/old-hardware-setup.eps new file mode 100644 index 00000000..8fe3f376 --- /dev/null +++ b/LDP/howto/docbook/BRIDGE-STP-HOWTO/images/old-hardware-setup.eps @@ -0,0 +1,5575 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: (ImageMagick) +%%Title: (old-hardware-setup.eps) +%%CreationDate: (2016-01-24T15:22:38-08:00) +%%BoundingBox: -0 -0 473 425 +%%HiResBoundingBox: 0 0 473 425 +%%DocumentData: Clean7Bit +%%LanguageLevel: 1 +%%Pages: 1 +%%EndComments + +%%BeginDefaults +%%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. +% +/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 eq + { + /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 eq + { + /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 eq + { + /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 eq + { + /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-none or 1-RunlengthEncoded. + % hex color packets. + % + gsave + /buffer 512 string def + /byte 1 string def + /color_packet 3 string def + /pixels 768 string def + + 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 + /Times-Roman 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 473 425 +userdict begin +DisplayImage +0 0 +473 425 +12 +473 425 +1 +0 +0 +3 +000000 +FFC0CB +FFFFFF +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020200000002020202020202020202020202020202020202 +0202020202020202020202020202020000000002000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0000020202020202020202020000000002020000000002020000000002020202020200000000 +0000000002000000000202020000000202020202020000000002000202020202020202020202 +0000020202020202020202020202020000000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202000000000002 +0202020202020202020202020202020202020202020202020202020202020200000202020000 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202000002020202020202020202020000020202020000 +0202020200000202020202020200000200000200000202000000020202020002020202020200 +0002020200000202020202020202020202000002020200020202020202020202020000020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020200020202000002020202020202020202020202020202020202020202 +0202020202020202020200000202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020000020202020202020202020202020202020200000202 +0202020202020202020000020202020000020202020000020202020202020002020000020200 +0202020000000202000202020202020200000202020200020202020202020202020202020202 +0000020202020202020202020000020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020200000202020000 +0002020200000000020200000002000002020000020202020202020000000202020200000002 +0000000200000002000002020202000000020200000200000002000000000200000000020200 +0000000202020200000002020200000200000002020202020202000002020202000002020202 +0000020202020202020202020000020202020202020000000002020202020202020000000202 +0202000000020000000200000000000200000000020202000000020202000002000002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202000000020202000202000002000002020000020200000002000000020000 +0202020202020200000000020202000002020000020200000002000002020002020000020200 +0002000000000202000202000002020000020200000202000202000002020000020200020202 +0202020202000002020202000002020202000002020202020202020202000002020202020202 +0200000202020202020202020200000000020202000002020002020002020000020200000202 +0200020200000202000000020000020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202000000020000020200000200 +0002020000020200000202000002020000020202020202020202000000020200000202000002 +0200000202000002000002020000020200000202020000000202020200000202020202020000 +0200000202000002020000020002020202020202020200000202020200000202020200000202 +0202020202020202000002020202020202020000000202020202020202020202000000020200 +0000020000020002020000020200000202000002020000020200000202000002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020000020000020202020200000202000002020000020200000202000002020202 +0202020202020000000200000202000002020000020200000200000000000002020000020202 +0200000002020200000202020000000000020000020202020202000000000202020202020202 +0200000202020200000202020200000202020202020202020200000202020202020200020000 +0002020202020202020202020000000202000002000000020202000002020000020200000202 +0202020200000202000002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020200020202020202 +0202020202020202020202020202020202000000020202020202020202020202000000020202 +0202020202020202020202020202020200000002020202020202020202020202020202020202 +0202020000000202020202020202020202020000000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020200000202020002000002020202020000020200 +0002020000020200000202000002020202020200020202020000020000020200000202000002 +0200000200000202020202020000020202020200000002020000020000000202000002000002 +0202020202000002000002020202020202020000020202020000020202020000020202020202 +0202020200000202020202020002020200000002020202020200020202020000020200000002 +0000020202000002020000020000000202020202020000020200000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020200020202020202020202020202020202020202020202020200000002 +0202020202020202020202000000020202020202020202020202020202020202020000000202 +0202020202020202020202020202020202020202000000020202020202020202020202000000 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020000 +0002000002000000020200020000020200000202000002020000020200000202020202020000 +0202020000020000020200000202000002020000020000000202000202000002020200020200 +0002020000000200000202000002000000020200020200000202000002020202020202000002 +0202020000020202020000020202020202020202020000020202020200020202020200000002 +0202020200000202020000020200000002000002020200000202000000020000000202000202 +0000020200000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020002020202020202020202 +0202020202020202020202020200000002020202020202020202020200000002020202020202 +0202020202020202020202020000000202020202020202020202020202020202020202020200 +0000020202020202020202020202000000020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020200000000020202000000000202020000000002020000 +0000020000000200000002020202020000000000000202020000000200000200000000000202 +0200000000020200000000020200000000020202020000020200000002000002000000000202 +0000000202000000020202020200000000020200000000020200000000020202020202020200 +0000000202020000000202020000000000020202020000000000000202020200020200020202 +0000000002020000020200000000020200000002020000000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020002020202020202020202020202020202020202020202020000000202020202 +0202020202020200000002020202020202020202020202020202020202000000020202020202 +0202020202020202020202020202020202020202020202020202020202020200000002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202000202020202020202020202020202 +0202020202020202020000000202020202020202020202020000000202020202020202020202 +0202020202020202000000020202020202020202020202020202020202020202020202020202 +0202020202020202020200000002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020000020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202000202020202020202020202020000000002020202020202000000020202020202000000 +0000020000000202020202020202020202020202020202020200000002000000000002020202 +0202000000020200000202020000000202020202020000000000020000000202020202020000 +0000000200000002020202020202000000000202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000000000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020200020202020202020202020000000000000000 +0202020202000000020202020200000000000000000000020202020202020202020202020202 +0202020200000000000000000000020202020200000002000000020202000000020202020200 +0000000000000000000202020202000000000000000000000202020202000000000000000002 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020002 +0202020202020202000000000202000000000202020200000002020202000000000202000000 +0000020202020202020202020202020202020202020000000000020200000000020202020000 +0000000000020202000000020202020000000002020000000000020202020000000002020000 +0000000202020200000000020200000000020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020002020202020202020200000002020202000000020202 +0200000002020202000000020202020000000002020202020202020202020202020202020202 +0000000002020202000000020202020000000002020202020200000002020202000000020202 +0200000000020202020000000202020200000000020202020000000202020200000002020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202000202020202 +0202020000000202020202020000000202020000000202020000000202020202020000000202 +0202020202020202020202020202020202000000020202020202000000020202000000020202 +0202020200000002020200000002020202020200000002020200000002020202020200000002 +0202000000020202020202000000020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202000202020202020202000000020202020202000000020202000000 +0202020000000202020202020000000202020202020202020202020202020202020200000002 +0202020202000000020202000000020202020202020000000202020000000202020202020000 +0002020200000002020202020200000002020200000002020202020200000002020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020200020202020202020200 +0000020202020202000000020202000000020202000000020202020202000000020202000000 +0000000000000000000202020200000002020202020200000002020200000002020202020202 +0000000202020000000202020202020000000202020000000202020202020000000202020000 +0000000000000000000002020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020000000000000000000000000000 +0000000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020200020202020202020200000002020202020200000002020200000002020200 +0000020202020202000000020202000000000000000000000000020202020000000202020202 +0200000002020200000002020202020202000000020202000000020202020202000000020202 +0000000202020202020000000202020000000000000000000000000202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020000000000000000000000000000000000020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020002020202020202020000000202 +0202020200000002020200000002020200000002020202020200000002020202020202020202 +0202020202020202020000000202020202020000000202020000000202020202020200000002 +0202000000020202020202000000020202000000020202020202000000020202000000020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202000000000000000000000000000000000002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020002020202020202020000000202020202020000000202020000000202020000000202 +0202020200000002020202020202020202020202020202020202000000020202020202000000 +0202020000000202020202020200000002020200000002020202020200000002020200000002 +0202020202000000020202000000020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020200 +0000000000000000000000000000000002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202000202020202020202020000000202020200 +0000020202020000000202020200000002020202000000000202020202020202020202020202 +0202020202000000000202020200000002020202000000020202020202020000000202020200 +0000020202020000000002020202000000020202020000000002020202000000020202020200 +0000020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020200000000000000000000000000000000000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020200 +0202020202020202020000000002020000000002020202000000020202020000000002020000 +0000000202020202020202020202020202020202020200000000000202000000000202020200 +0000020202020202020000000202020200000000020200000000000202020200000000020200 +0000000002020202000000000202020000000002020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020000000000 +0000000000000000000000000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020200020202020202020202020000000000000000020202 +0202000000020202020200000000000000000000020202020202020202020202020202020202 +0200000000000000000000020202020200000002020202020202000000020202020200000000 +0000000000000202020202000000000000000000000202020202000000000000000000020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020000000000000000000000000000000000020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020002020202 +0202020202020202000000000202020202020200000002020202020200000000000200000002 +0202020202020202020202020202020202020000000200000000000202020202020000000202 +0202020202000000020202020202000000000002000000020202020202000000000002000000 +0202020202020200000000000202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202000000000000000000 +0000000000000000020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000000020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202000000000000000000000000000000000002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200000002020202020200000002020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020200000000000000000000000000 +0000000002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200000000020202020000000202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020200000000000000000000000000000000000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200000000000000000000020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020000000000000000000000000000000000 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0000000000000202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0000000000000000000000000000000000020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202000000000000000000000000000000000002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020200000000 +0000000000000000000000000002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020200000000000000000000000000000000000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020000000000000000 +0000000000000000000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020002020202020202000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202000202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202000202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020200020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020200020202020202020002020202020202020202020202020202020202 +0000000000000000020202020000000000000002020202020202020202020202020202020202 +0202020202020202020202020202020202000000000202020202020200000000020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020002020202020202000202 +0202020202000000000000000002020202000000000000000002020202000000000000000202 +0202020202020202020202020202020202020202020202020202020202020202020000000000 +0002020202020000000000000202020000000202020200000002000000000000000202020202 +0202020202020202020202000202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020002020202020202000202020202020200000000000000000002020200000202 +0202000002020202000002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020000020200000202020200000202020000000202000000020202 +0200000002000000000000000002020202020202020202020202020200020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202000202020202020200020202020202 +0202000002020202000000020202020202020000020202020200000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020000020202 +0200000202020200000202020000000202000000020202020000020202000002020202020202 +0202020202020200020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202000202020202020200020202020202020200000202020202000002020202020202000002 +0202020200000000000002020202020202020202020202020202020202020202020202020202 +0202020202020202020202000000020202020202020202020000020202000000020200000002 +0202020000020202000002020202020202020202020202020002020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020200020202020202020002020202020202020000 +0202020200000002020202020202000002020202020000000000000002020202020202020202 +0202020202020202020202020202020202020202020202020202000000000202020202020202 +0202000000020202000000000000000002020202000000000000020202020202020202020202 +0202020002020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020002 +0202020202020002020202020202020000000000000000020202020202020000020202020202 +0000020200000002020202020202020202020202020202020202020202020202020202020202 +0202020202000000000002020202020202020000000202020200000200000200000202020200 +0000000000000202020202020202020202020202000202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020002020202020202000202020202020202000000000000 +0002020202020202020000020202020202020202020200000202020202020202020202020202 +0202020202020202020202020202020202020202020202020200000002020202020200000002 +0202020200000200000200000202020200000202020200000202020202020202020202020200 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202000202020202 +0202000202020202020202000002020202020202020202020202000002020202020202020202 +0200000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000002020202020000000202020202020000020000020000020202020000020202 +0200000202020202020202020202020200020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202000202020202020200020202020202020200000202020202020202 +0202020200000202020202020000020202000000020202020202020202020202020202020202 +0202020202020202020202020202020200000202020000000202020200000002020202020202 +0000020202020000020202020000020202020000020202020202020202020202020002020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020200020202020202020002 +0202020202020000000000000202020202020202020000020202020202000000000000000202 +0202020202020202020202020202020202020202020202020202020202020202020000000000 +0000020202020000000000000000020200000000020200000000020000000000000000000202 +0202020202020202020202020002020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020200020202020202020002020202020202000000000000020202020202020202 +0000020202020202020000000000020202020202020202020202020202020202020202020202 +0202020202020202020202020200000000000202020202000000000000000002020000000002 +0200000000020000000000000000020202020202020202020202020202000202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020002020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000202020202 +0202020002020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202000202020202020202000000000002020202 +0202020200020202020202020202020202020200020202020202020202020202020202020000 +0000020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020200 +0202020202020202020002020000020202020202020002020202020202020202020202020002 +0200020202020202020202020202000002020000020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020200020202020202020202000202020002020202020202 +0202020202020202020202020202020202020002020202020202020202020200020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020002020202 +0202020202000202020002000200000000000202020000000202000200000000000200000000 +0000000200000002020200020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020002020202020202020200020200000202000002000200020200 +0002000002020000020002000202000202020002020200020202020002020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202000202020202020202 +0200000000020202000202020200020200020202000202000202020200020200020202000202 +0200020202020002020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202000202020202020202020002020202020200020202020002020002020200 +0202000202020200020200020202020002000202020202000202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020200020202020202020202000202 +0202020200020202020002020002020200020200020202020002020002020202000200020202 +0202000202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020200020202020202020202000202020202020002020202000202000002000002020002 +0202020002020002020202020002020202020200000202000002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020002020202020202020000000202020200 +0000020200000002020000000202000000020200000002020000020200000202020202020200 +0000000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020200020202020202020202020202020202 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0200020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020002020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202000202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202000202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020200020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020200020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020002020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020200000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000002 +0202020202020002020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000202020202020200020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202000101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010100 +0202020202020200020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202000101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010100020202020202020002020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020200010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010002020202 +0202020002020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020001 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010002020202020202000202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020001010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101000202020202020200 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202000101010101 +0101010000000001010101010101010101000000000101010000000001010101000000000100 +0001010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101000202020202020200020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202000101010101010100000101000001010101010101010000010100 +0001000001010000010101000000010101000101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010100020202020202020002020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020200010101010101010001 +0101010001010101010101010001010101000100010101010001010001010101010100010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010000000000000000000000000000000000010101 +0101010100020202020202020002020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020200010101010101010101010100010101010000000001000101010100010001 +0101010001010000000101010100010000010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101000000 +0000000000000000000000000000010101010101010002020202020202000202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020001010101010101010100000101 +0101000001010001000001010000010001010101000101000100000101010000010000010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101000000000000000000000000000000000001010101010101 +0002020202020202000202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020001010101010101010101010001010100010101010101000000000101000101010100 +0101010101000001010001010100010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010100000000000000 +0000000000000000000001010101010101000202020202020200020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202000101010101010101010101010001010001 +0101010101010101000101000101010100010101010101000101000101010001010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010100000000000000000000000000000000000101010101010100020202 +0202020200020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020200 +0101010101010101010101010001010001010101010101010001010100010101010001010101 +0101000101000101010001010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010000000000000000000000 +0000000000000101010101010100020202020202020002020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020200010101010101010000010100000101000001010100 +0100000101010100000101000001010001010001010100010100000101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010000000000000000000000000000000000010101010101010002020202020202 +0002020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020001010101 +0101010100000000010101010000000001000001010101010100000000010101000000010101 +0100000000010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101000000000000000000000000000000 +0000010101010101010002020202020202000202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020001010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000000000202020200000000020202020000000002020202 +0000000002020202000000000202020200000000020202020000000002020202000000000202 +0202000000000202020200000000020202020000000002020202000000000202020200000000 +0202020200000000020202020000000002020202000000000202020200000000020202020000 +0000020202020000000002020202000000000202020200000000020202020000000002020202 +0000000002020202000000000202020200000000020202020000000002020202000000000202 +0202000000000202020200000000020202020000000002020202000000000202020200000000 +0202020200000000020202020000000002020202000002020202020202000101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010100000000000000000000000000000000000101 +0101010101000202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0002020202020202000101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010000 +0000000000000000000000000000000101010101010100020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200000202020202020200010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010000000000000000000000000000000000010101010101 +0100020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020000020202 +0202020200010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101000000000000 +0000000000000000000000010101010101010002020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020001010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101000000000000000000000000000000000001010101010101000202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0001010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010100000000000000000000 +0000000000000001010101010101000202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202000101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010100000000000000000000000000000000000101010101010100020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020200010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010000000000000000000000000000 +0000000101010101010100020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200000202020202020200010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010002020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020000020202020202020001010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010002020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0000020202020202020001010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101000202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000002020202020202000101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101000202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202000101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010100020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020200010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010002 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202000000000202 +0000000202020202020202000000020202000002020202020202020200000002020202020202 +0202020202020202000000020202020202000000000202000000000202020202020202000000 +0202020202020202020202020202020202000000020202020202020202020202020202020202 +0202020202020202000002020202020202020202020202020202020202020202020202020202 +0202020000000202020202020000020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0200010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010002020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020000020202020002020202020202020202000002020200000202 +0202020202020202000002020202020202020202020202020202000002020202020202000002 +0202020000020202020202020202020000020202020202020202020202020202020000020002 +0202020202020202020202020202020202020202020202020200000202020202020202020202 +0202020202020202020202020202020202020202020000020202020202000002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000002020202000202 +0202020202020202000002020202020202020202020202020200000202020202020202020202 +0202020202000002020202020202000002020202000002020202020202020202000002020202 +0202020202020202020202020000020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0000020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000002020202000200000002000002020200000202000000020000000200 +0002020200000200000002020200000002020200000000000202020202020200000202020200 +0002000000020000000202000000000002020200000000020202020200000000020200000000 +0202000002000000000000020000020200000202000000020000000200000202020000000000 +0002020202020000000002020202020202000000000002020000000202000000000000020202 +0202000000000202000000020000020202020000000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200000202020200020200000002 +0000020200000202020000020200000002000002020000020200020202000202000002000002 +0200000202020202020200000000000000000202000002020000020200000202000002000002 +0200020202020202000002020000020200000202000002000002000000020000000200000202 +0000020200000002000002000002020000020202020200000202000002020202020200000202 +0000020200000200000202000002020202020000020200000202000000020000020200020200 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200000202020200020200000202000002020000020202000002020000020200000202 +0000020002020200000202000002000002020000020202020202020000020202020000020200 +0002020000020200000202000002000000020202020202020200000202000002020000020200 +0002020202000002020000020200000202000002020000020200000200000202000002020202 +0202020202000002020202020200000202000002020000020000020200000202020202000002 +0200000202000002020000020000020200000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020000020202020002020000020200000202 +0000020202000002020000020200000202000000000202020000000000000200000202000002 +0202020202020000020202020000020200000202000002020000020200000202000000020202 +0202020200000202000002020000020200000202020200000202000002020000020200000202 +0000020200000200000202000002020202020200000000000202020202020000020200000202 +0000020000020200000202020202000002020000020200000202000002000000000000020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0000020202020002020000020200000202000002020200000202000002020000020200000200 +0002020000020202020200000202000002020202020202000002020202000002020000020200 +0002020000020200000202020000000202020202020000020200000202000002020000020202 +0200000202000002020000020200000202000002020000020200000000020202020202000002 +0200000202020202020000020200000202000002020000000002020202020200000202000002 +0200000202000002000002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202000000020200000202000002020000020200000202 +0200000202000002020000020200000202000002000000020200020000020200000202020202 +0202000002020202000002020000020200000202000002020000020002020000020202020202 +0000020200000202000002020000020202020000020200000202000002020000020200000202 +0000020200020202020202020202000002020000020202020202000002020000020200000202 +0002020202020202020200000202000002020000020200000200000002020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202000000 +0000020202000000000002020000000002000000000000000202000000000000020200000002 +0000000002020200000002000002020202020000000002020000000002020000000200000200 +0200000002020000000002020202020200000000020200000000020200000000020200000000 +0200000002000000000000000000000202000000020000000000020202020202000000020000 +0202020202000200000002020000000002000000000002020202020200000000020200000002 +0200000002000000000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0000000000000202020202020202020202020202020202020202020202020202020000000000 +0000020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020200020202020202020202020202020202 +0202020202020202020202020002020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020000020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000000000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200000000 +0002020202020202020202020202020202020202020202020202020202020000000000020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020000020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0002020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000002020202 +0202020001010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101000202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000002020202020202000101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010100020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200000202020202020200 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010100020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200000202020202020200010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010002020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020001010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010002020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020001010101010101010000000101000000010100000000000101 +0101010100000001010101010000000001010100000001010101000000000101000000000000 +0101010101010000000000010101010100000000010001010000000101010101010101010101 +0101010101010101010101010101010101010101010101010101000202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202000101010101010101 +0100010101010001010101000101000001010101000001000001010101000000010101000001 +0000010101000000010101010001010100000101010101010001010000010101000001010100 +0001010100010101010101010101010101010101010101010101010101010101010101010101 +0101010101000202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202000101010101010101010001010101000101010100010101000101010100 +0101010001010100010101010101000101010001010001010101010101000101010100010101 +0101010001010100010100000101010101000101010001010101010101010101010101010000 +0000000000000000000000000000000101010101010100020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200000202020202020200010101010101010101000101 +0101000101010100010101000101010101010101000101010000000101010100000101000101 +0000000101010101000101010000010101010101000101010001010001010101010100010101 +0001010101010101010101010101010000000000000000000000000000000000010101010101 +0100020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020000020202 +0202020200010101010101010101000000000000010101010001010000010101010101010000 +0101010001000001010101000000010101000100000101010100000000000101010101010100 +0101000001010001010101010101010101000101010101010101010101010101000000000000 +0000000000000000000000010101010101010002020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020000020202020202020001010101010101010100010101010001 +0101010000000001010101010101010001010101010101000001010001010000010101010100 +0001010100010101000001010101010100000000010101000101010101010101010100010101 +0101010101010101010101000000000000000000000000000000000001010101010101000202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000002020202020202 +0001010101010101010100010101010001010101000101010101010101010100010101010101 +0101010001010001010100010101010101000101010001010101000101010101010001010101 +0101000101010101010101010100010101010101010101010101010100000000000000000000 +0000000000000001010101010101000202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202000101010101010101010001010101000101010100 +0101010101010101010001010101010101010101000101000101010001010101010100010101 +0001010101000101010101010001010101010100000101010101000101010001010101010101 +0101010101010100000000000000000000000000000000000101010101010100020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020200010101 +0101010101010001010101000101010100010101010101010100000101010001010001010001 +0101000001000001010001010001010101000101010000010101010101000101010101010100 +0001010100010101010001010101010101010101010101010000000000000000000000000000 +0000000101010101010100020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020200010101010101010100000001010000000101000000010101 +0101010100000000000001010000000101010101000000010101000000010101010000000000 +0001010101010100000001010101010101000000000101010100000001010101010101010101 +0101010000000000000000000000000000000000010101010101010002020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020001010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000002020202020202 +0000020202020202020001010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010100 +0000000000000000000000000000000001010101010101000202020202020200020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202000002020202020202000101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010100000000000000000000000000000000000101010101 +0101000202020202020200020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020200000202 +0202020202000101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010000000000 +0000000000000000000000000101010101010100020202020202020002020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020200000202020202020200010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010000000000000000000000000000000000010101010101010002 +0202020202020002020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020200020202020202 +0200010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101000000000000000000 +0000000000000000010101010101010002020202020202000202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020200020202020202020001010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101000000000000000000000000000000000001010101010101000202020202 +0202000202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020200020202020202020200 +0000000202000000000200000000000000020202020202000000000202020000000202020000 +0000020002020202020200000000020200000000020000000002020000000200000000000000 +0202020200000202020200000000000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020002020202020202000101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010100000000000000000000000000 +0000000001010101010101000202020202020200020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020200020202020202020202000002020202000002020200000202000000020202 +0202020000020202020200020202000002020200000202020202020200000202020200000202 +0200000202020200020202000002020200000200000000020202020000000000020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020002020202020202000101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010100000000000000000000000000000000000101010101010100020202020202020002 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020200000202 +0202000002020200000202020000020202020202000002020202000002020000020202020200 +0202020202020200000202020200000202020000020202020002020200000202020000020202 +0000020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020200000202020202020200010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010100020202020202020002020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020200000202020200000202020000020202000002020202020202 +0000020202000202020000020202020200020202020202020000020202020000020202000002 +0202020002020200000202020000020202000002020202000000000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0200000202020202020200010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010002020202020202000202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020000000000000000 +0202020000020202000002020202020202000002020000020202000002020202020202020202 +0202020000000000000000020202000002020202000202020000000000000202020200000202 +0202000000000002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020000020202020202020001010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010002020202020202000202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020000020202020000020202000000000000020202020202020200000202 +0002020202000002020200000000020202020202000002020202000002020200000202020200 +0202020000020202000002020200000202020202020200000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202000002 +0202020202020001010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101000202020202020200020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020200020202020202020202000002020202000002020200 +0002020202020202020202020202000002000202020200000202020200000202020202020200 +0002020202000002020200000202020200020202000002020200000202020000020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020002020202020202000101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010100 +0202020202020200020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020002020202 +0202020202000002020202000002020200000202020202020202020202020200000000020202 +0200000202020200000202020202020200000202020200000202020000020202020002020200 +0002020200000202020000020202000002020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202000202020202 +0202000101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010100020202020202020002020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020002020202020202020200000202020200000202020000020202 +0202020202020202020202000002020202020200000202020000020202020202020000020202 +0200000202020000000202000002020200000202020000020202000002020200000202000002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202000202020202020200010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010002020202 +0202020002020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202000202020202020202 +0000000002020000000002000000000202020202020202020202020200000202020202020200 +0000000002020202020202000000000202000000000202020000000000020202000000000000 +0002020000000000000202000000000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020200020202020202020000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000002020202020202000202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020000020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202000002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202000002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020200000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000000000000000000000000 +0000000000020202020202020202020202020202000202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000000000000000000000000000000000002020202020202020202020202020200 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200000000000000000000000000000000 +0002020202020202020202020202020200020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200000000000000000000000000000000000202020202020202020202020202020002020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020000000000000000000000000000000000020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000000 +0000000000000000000000000000020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000000000000000000000000000000000002020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200000000000000 +0000000000000000000002020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200000000000000000000000000000000000202020202020202020202 +0202020200020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020000000000000000000000 +0000000000000202020202020202020202020202020002020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020000000000000000000000000000000000020202020202020202020202020202 +0002020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000000000000000000000000000000 +0000020202020202020202020202020202000202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000000000000000000000000000000000002020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200000000000000000000000000000000000202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020000 +0000000000000000000000000000000202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020000000000000000000000000000000000020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000000000000 +0000000000000000000000020202020202020202020202020202000202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202000202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020200020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0200020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020200020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020002020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020002020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202000202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202000202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202000202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020200020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020200020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020200020202020202020200020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0002020202020202020200020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020200020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202000202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020200020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202000202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000200020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200000000000000000000000000000000000000000000000000000000000000000202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020002 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202000202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020002020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202000202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020002020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202000202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020002020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202000202020202020202000000 +0002020000000002000000000000000202020202020000000002020200000002020200000000 +0200020202020202000000000202000000000200000000020200000002000000000000000202 +0202000002020202000000000002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202000202020202020202020000020202020000020202000002020000000202020202 +0200000202020202000202020000020202000002020202020202000002020202000002020200 +0002020202000202020000020202000002000000000202020200000000000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202000002020202 +0000020202000002020200000202020202020000020202020000020200000202020202000202 +0202020202000002020202000002020200000202020200020202000002020200000202020000 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202000002020202000002020200000202020000020202020202020000 +0202020002020200000202020202000202020202020200000202020200000202020000020202 +0200020202000002020200000202020000020202020000000002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020200000000000000000202 +0200000202020000020202020202020000020200000202020000020202020202020202020202 +0200000000000000000202020000020202020002020200000000000002020202000002020202 +0000000000020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020200000202020200000202020000000000000202020202020202000002020002 +0202020000020202000000000202020202020000020202020000020202000002020202000202 +0200000202020000020202000002020202020202000002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202000202020202020202020000020202020000020202000002 +0202020202020202020202020000020002020202000002020202000002020202020202000002 +0202020000020202000002020202000202020000020202000002020200000202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020200020202020202 +0202020000020202020000020202000002020202020202020202020202000000000202020200 +0002020202000002020202020202000002020202000002020200000202020200020202000002 +0202000002020200000202020000020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020200020202020202020202000002020202000002020200000202020202 +0202020202020202020000020202020202000002020200000202020202020200000202020200 +0002020200000002020000020202000002020200000202020000020202000002020000020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020002020202020202020000 +0000020200000000020000000002020202020202020202020202000002020202020202000000 +0000020202020202020000000002020000000002020200000000000202020000000000000002 +0200000000000002020000000002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020000000000000000000000000000000000020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020000000000000000 +0000000000000000000202020202020202020202020202020000000000000000000000000000 +0000000202020202020202020202020202020002020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202000000000000000000000000000000 +0000020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020000000000000000000000000000000000020202020202020202020202 +0202020000000000000000000000000000000000020202020202020202020202020202000202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202000000000000000000000000000000000002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000000000000000000000000 +0000000000020202020202020202020202020202000000000000000000000000000000000002 +0202020202020202020202020202000202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020200000000000000000000000000000000000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000000000000000000000000000000000002020202020202020202020202020200 +0000000000000000000000000000000002020202020202020202020202020200020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202000202020202020202020202020202020000 +0000000000000000000000000000000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200000000000000000000000000000000 +0002020202020202020202020202020200000000000000000000000000000000000202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020200 +0202020202020202020202020202020000000000000000000000000000000000020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200000000000000000000000000000000000202020202020202020202020202020000000000 +0000000000000000000000000202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020200020202020202020202020202020202000000000000 +0000000000000000000000020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020000000000000000000000000000000000020202 +0202020202020202020202020000000000000000000000000000000000020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020002020202 +0202020202020202020202000000000000000000000000000000000002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000000 +0000000000000000000000000000020202020202020202020202020202000000000000000000 +0000000000000000020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020200000000000000000000 +0000000000000002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000000000000000000000000000000000002020202020202 +0202020202020202000000000000000000000000000000000002020202020202020202020202 +0202000202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020200000000000000000000000000000000000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200000000000000 +0000000000000000000002020202020202020202020202020200000000000000000000000000 +0000000002020202020202020202020202020200020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020000000000000000000000000000 +0000000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200000000000000000000000000000000000202020202020202020202 +0202020200000000000000000000000000000000000202020202020202020202020202020002 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020000000000000000000000000000000000020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020000000000000000000000 +0000000000000202020202020202020202020202020000000000000000000000000000000000 +0202020202020202020202020202020002020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020200020202020202020202020202020202000000000000000000000000000000000002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020000000000000000000000000000000000020202020202020202020202020202 +0000000000000000000000000000000000020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020002020202020202020202020202020200 +0000000000000000000000000000000002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000000000000000000000000000000 +0000020202020202020202020202020202000000000000000000000000000000000002020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0002020202020202020202020202020200000000000000000000000000000000000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000000000000000000000000000000000002020202020202020202020202020200000000 +0000000000000000000000000002020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202000202020202020202020202020202020000000000 +0000000000000000000000000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200000000000000000000000000000000000202 +0202020202020202020202020200000000000000000000000000000000000202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020000000000000000000000000000000000020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020000 +0000000000000000000000000000000202020202020202020202020202020000000000000000 +0000000000000000000202020202020202020202020202020002020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020002020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202000202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020200 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202000202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202000202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020200020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0200020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202000202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020200020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020200020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020002020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020200020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020002020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020002020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202000202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020002020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020002020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202000202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202000202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202000202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202000202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020200020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020200020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020002020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202000202020202020002 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202000202020202000202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020200020202020002020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020200020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020002020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0002000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200000002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020000000202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020002000202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020002020002020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202000202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202000202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020200020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0200020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020002020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202000202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020200020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0200020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020002020202020202020000000002 +0200000000020000000000000002020202020200000000020202000000020202000000000200 +0202020202020000000002020000000002000000000202000000020000000000000002020202 +0000020202020000000000020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020002020202020202020200000202020200000202020000020200000002020202020200 +0002020202020002020200000202020000020202020202020000020202020000020202000002 +0202020002020200000202020000020000000002020202000000000002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020000020202020000 +0202020000020202000002020202020200000202020200000202000002020202020002020202 +0202020000020202020000020202000002020202000202020000020202000002020200000202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020200020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020000020202020000020202000002020200000202020202020200000202 +0200020202000002020202020002020202020202000002020202000002020200000202020200 +0202020000020202000002020200000202020200000000020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020002020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202000000000000000002020200 +0002020200000202020202020200000202000002020200000202020202020202020202020200 +0000000000000002020200000202020200020202000000000000020202020000020202020000 +0000000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020002020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202000002020202000002020200000000000002020202020202020000020200020202 +0200000202020000000002020202020200000202020200000202020000020202020002020200 +0002020200000202020000020202020202020000020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202000202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020002020202020202020200000202020200000202020000020202 +0202020202020202020200000200020202020000020202020000020202020202020000020202 +0200000202020000020202020002020200000202020000020202000002020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202000202020202020202 +0200000202020200000202020000020202020202020202020202020000000002020202000002 +0202020000020202020202020000020202020000020202000002020202000202020000020202 +0000020202000002020200000202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202000202020202020202020000020202020000020202000002020202020202 +0202020202020200000202020202020000020202000002020202020202000002020202000002 +0202000000020200000202020000020202000002020200000202020000020200000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020200020202020202020200000000 +0202000000000200000000020202020202020202020202020000020202020202020000000000 +0202020202020200000000020200000000020202000000000002020200000000000000020200 +0000000000020200000000020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202000202020202020202020202020202020202020202020202000202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020200020202020202020202020202 +0202020202020202020202000202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020200020202020202020202020202020202020202020202020200020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020002020202020202020202020202020202 +0202020202020200020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200000000000000000000000000000000 +0002020202020202020202020202020200020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200000000000000000000000000000000000202020202020202020202020202020002020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020000000000000000000000000000000000020202 +0202020202020202020202020002020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000000 +0000000000000000000000000000020202020202020202020202020202000202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020002020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000000000000000000000000000000000002020202020202 +0202020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202000202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200000000000000 +0000000000000000000002020202020202020202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200000000000000000000000000000000000202020202020202020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020000000000000000000000 +0000000000000202020202020202020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020000000000000000000000000000000000020202020202020202020202020202 +0002020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000000000000000000000000000000 +0000020202020202020202020202020202000202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000000000000000000000000000000000002020202020202020202020202020200020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200000000000000000000000000000000000202 +0202020202020202020202020200020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020000 +0000000000000000000000000000000202020202020202020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020000000000000000000000000000000000020202020202 +0202020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000000000000 +0000000000000000000000020202020202020202020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000000000000000000000000000000000002020202020202020202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200000000000000000000 +0000000000000002020202020202020202020202020200020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020002020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020002020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202000202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020200020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020002020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020200020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202000202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020002020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202000202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020200020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020200020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020002020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0002020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020200020202020202020002 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202000202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020200020202020202020002020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020200020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020002020202020202000202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020200020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020002020202020202000202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200020202020202020002020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0200020202020202020002020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020002020202020202000202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202000202 +0202020202000202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020200000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000000000000000000000000000000000000000000000000000000 +0000000000000000000000000002020202020202000202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020200 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020200020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020002020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020002020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202000202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020200020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202020202020202020202020202020202020202020202020202020202020202020202020202 +0202000000000202020200000000020202020000000002020202000000000202020200000000 +0202020200000000020202020000000002020202000000000202020200000000020202020000 +0000020202020000000002020202000000000202020200000000020202020000000002020202 +0000000002020202000000000202020200000000020202020000000002020202000000000202 +0202000000000202020200000000020202020000000002020202000000000202020200000000 +0202020200000000020202020000000002020202000000000202020200000000020202020000 +0000020202020000000002020202000000000202020200000000020202020000000002020202 +0000000002 + +end +%%PageTrailer +%%Trailer +%%EOF diff --git a/LDP/howto/docbook/BRIDGE-STP-HOWTO/old-hardware-setup.png b/LDP/howto/docbook/BRIDGE-STP-HOWTO/images/old-hardware-setup.png similarity index 100% rename from LDP/howto/docbook/BRIDGE-STP-HOWTO/old-hardware-setup.png rename to LDP/howto/docbook/BRIDGE-STP-HOWTO/images/old-hardware-setup.png