aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tv/doc/src/tv_create_table.ps
diff options
context:
space:
mode:
authorErlang/OTP <[email protected]>2009-11-20 14:54:40 +0000
committerErlang/OTP <[email protected]>2009-11-20 14:54:40 +0000
commit84adefa331c4159d432d22840663c38f155cd4c1 (patch)
treebff9a9c66adda4df2106dfd0e5c053ab182a12bd /lib/tv/doc/src/tv_create_table.ps
downloadotp-84adefa331c4159d432d22840663c38f155cd4c1.tar.gz
otp-84adefa331c4159d432d22840663c38f155cd4c1.tar.bz2
otp-84adefa331c4159d432d22840663c38f155cd4c1.zip
The R13B03 release.OTP_R13B03
Diffstat (limited to 'lib/tv/doc/src/tv_create_table.ps')
-rw-r--r--lib/tv/doc/src/tv_create_table.ps1120
1 files changed, 1120 insertions, 0 deletions
diff --git a/lib/tv/doc/src/tv_create_table.ps b/lib/tv/doc/src/tv_create_table.ps
new file mode 100644
index 0000000000..0a3b24bcf5
--- /dev/null
+++ b/lib/tv/doc/src/tv_create_table.ps
@@ -0,0 +1,1120 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (./tv_create_table.tmp.eps)
+%%CreationDate: (Tue Jun 12 16:14:11 2001)
+%%BoundingBox: 0 114 250 471
+%%DocumentData: Clean7Bit
+%%LanguageLevel: 1
+%%Pages: 0
+%%EndComments
+
+%%BeginDefaults
+%%PageOrientation: Portrait
+%%EndDefaults
+
+%%BeginProlog
+%
+% Display a color image. The image is displayed in color on
+% Postscript viewers or printers that support color, otherwise
+% it is displayed as grayscale.
+%
+/buffer 512 string def
+/byte 1 string def
+/color_packet 3 string def
+/pixels 768 string def
+
+/DirectClassPacket
+{
+ %
+ % Get a DirectClass packet.
+ %
+ % Parameters:
+ % red.
+ % green.
+ % blue.
+ % length: number of pixels minus one of this color (optional).
+ %
+ currentfile color_packet readhexstring pop pop
+ compression 0 gt
+ {
+ /number_pixels 3 def
+ }
+ {
+ currentfile byte readhexstring pop 0 get
+ /number_pixels exch 1 add 3 mul def
+ } ifelse
+ 0 3 number_pixels 1 sub
+ {
+ pixels exch color_packet putinterval
+ } for
+ pixels 0 number_pixels getinterval
+} bind def
+
+/DirectClassImage
+{
+ %
+ % Display a DirectClass image.
+ %
+ systemdict /colorimage known
+ {
+ columns rows 8
+ [
+ columns 0 0
+ rows neg 0 rows
+ ]
+ { DirectClassPacket } false 3 colorimage
+ }
+ {
+ %
+ % No colorimage operator; convert to grayscale.
+ %
+ columns rows 8
+ [
+ columns 0 0
+ rows neg 0 rows
+ ]
+ { GrayDirectClassPacket } image
+ } ifelse
+} bind def
+
+/GrayDirectClassPacket
+{
+ %
+ % Get a DirectClass packet; convert to grayscale.
+ %
+ % Parameters:
+ % red
+ % green
+ % blue
+ % length: number of pixels minus one of this color (optional).
+ %
+ currentfile color_packet readhexstring pop pop
+ color_packet 0 get 0.299 mul
+ color_packet 1 get 0.587 mul add
+ color_packet 2 get 0.114 mul add
+ cvi
+ /gray_packet exch def
+ compression 0 gt
+ {
+ /number_pixels 1 def
+ }
+ {
+ currentfile byte readhexstring pop 0 get
+ /number_pixels exch 1 add def
+ } ifelse
+ 0 1 number_pixels 1 sub
+ {
+ pixels exch gray_packet put
+ } for
+ pixels 0 number_pixels getinterval
+} bind def
+
+/GrayPseudoClassPacket
+{
+ %
+ % Get a PseudoClass packet; convert to grayscale.
+ %
+ % Parameters:
+ % index: index into the colormap.
+ % length: number of pixels minus one of this color (optional).
+ %
+ currentfile byte readhexstring pop 0 get
+ /offset exch 3 mul def
+ /color_packet colormap offset 3 getinterval def
+ color_packet 0 get 0.299 mul
+ color_packet 1 get 0.587 mul add
+ color_packet 2 get 0.114 mul add
+ cvi
+ /gray_packet exch def
+ compression 0 gt
+ {
+ /number_pixels 1 def
+ }
+ {
+ currentfile byte readhexstring pop 0 get
+ /number_pixels exch 1 add def
+ } ifelse
+ 0 1 number_pixels 1 sub
+ {
+ pixels exch gray_packet put
+ } for
+ pixels 0 number_pixels getinterval
+} bind def
+
+/PseudoClassPacket
+{
+ %
+ % Get a PseudoClass packet.
+ %
+ % Parameters:
+ % index: index into the colormap.
+ % length: number of pixels minus one of this color (optional).
+ %
+ currentfile byte readhexstring pop 0 get
+ /offset exch 3 mul def
+ /color_packet colormap offset 3 getinterval def
+ compression 0 gt
+ {
+ /number_pixels 3 def
+ }
+ {
+ currentfile byte readhexstring pop 0 get
+ /number_pixels exch 1 add 3 mul def
+ } ifelse
+ 0 3 number_pixels 1 sub
+ {
+ pixels exch color_packet putinterval
+ } for
+ pixels 0 number_pixels getinterval
+} bind def
+
+/PseudoClassImage
+{
+ %
+ % Display a PseudoClass image.
+ %
+ % Parameters:
+ % class: 0-PseudoClass or 1-Grayscale.
+ %
+ currentfile buffer readline pop
+ token pop /class exch def pop
+ class 0 gt
+ {
+ currentfile buffer readline pop
+ token pop /depth exch def pop
+ /grays columns 8 add depth sub depth mul 8 idiv string def
+ columns rows depth
+ [
+ columns 0 0
+ rows neg 0 rows
+ ]
+ { currentfile grays readhexstring pop } image
+ }
+ {
+ %
+ % Parameters:
+ % colors: number of colors in the colormap.
+ % colormap: red, green, blue color packets.
+ %
+ currentfile buffer readline pop
+ token pop /colors exch def pop
+ /colors colors 3 mul def
+ /colormap colors string def
+ currentfile colormap readhexstring pop pop
+ systemdict /colorimage known
+ {
+ columns rows 8
+ [
+ columns 0 0
+ rows neg 0 rows
+ ]
+ { PseudoClassPacket } false 3 colorimage
+ }
+ {
+ %
+ % No colorimage operator; convert to grayscale.
+ %
+ columns rows 8
+ [
+ columns 0 0
+ rows neg 0 rows
+ ]
+ { GrayPseudoClassPacket } image
+ } ifelse
+ } ifelse
+} bind def
+
+/DisplayImage
+{
+ %
+ % Display a DirectClass or PseudoClass image.
+ %
+ % Parameters:
+ % x & y translation.
+ % x & y scale.
+ % label pointsize.
+ % image label.
+ % image columns & rows.
+ % class: 0-DirectClass or 1-PseudoClass.
+ % compression: 0-RunlengthEncodedCompression or 1-NoCompression.
+ % hex color packets.
+ %
+ gsave
+ currentfile buffer readline pop
+ token pop /x exch def
+ token pop /y exch def pop
+ x y translate
+ currentfile buffer readline pop
+ token pop /x exch def
+ token pop /y exch def pop
+ currentfile buffer readline pop
+ token pop /pointsize exch def pop
+ /Helvetica findfont pointsize scalefont setfont
+ x y scale
+ currentfile buffer readline pop
+ token pop /columns exch def
+ token pop /rows exch def pop
+ currentfile buffer readline pop
+ token pop /class exch def pop
+ currentfile buffer readline pop
+ token pop /compression exch def pop
+ class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
+ grestore
+} bind def
+%%EndProlog
+%%Page: 1 1
+%%PageBoundingBox: 0 114 250 471
+userdict begin
+%%BeginData:
+DisplayImage
+0 114
+250.000000 357.000000
+12
+410 585
+1
+0
+0
+8
+ffffff
+000000
+d8d8d8
+c2c2c2
+6b6b6b
+d9d9d9
+aa2455
+999999
+000a01ff0183000b0208040001ff018300000208040000000208040002ff028300000208
+0400000002080400020000ff0080040002000000020804000000020204060200000004ff
+0480020000000405020204000000020204000209000d02ff027700000202040000000202
+040002080000020d0400025e010302110103028d01010206010102640000020204000000
+0202040002080000020d0400025e01010202010702000101020301010201010102100103
+02180100020f010202020100021901050200010702010103020601070209010102060101
+026400000202040000000202040002080000020d0400025e010102050101020301010203
+010102010101020f01010201010102160101020f01020202010002190101020701010203
+01010201010102080101020c010102060101026400000202040000000202040002080000
+0202040602030400025e010102050101020301010203010102010101020e010102050101
+020001010201010302030103020101040201010302070100020001010201010002020103
+0202010102050101020501010207010102030101020c0101020401030203010102000101
+0203010102020103025d0000020204000000040302080000020204000304000002030400
+025e010102050101020401010202010002020101020e0101020501010200010102000101
+020101010201010102010101020101010202010102010101020601000200010102010100
+0201010102010101020101010201010102010101020501010207010102030102020b0101
+02030101020101010202010202000101020201010201010102010101025c000004030101
+020b0000020304000302000002040400025e010102050101020401010201010102020101
+020e01010205010202020101020101010205010102010101020201010201010102060100
+020001020200010002010101020101010202010102000101020001010206010402040101
+0204010302090101020701010202010102010101020201010201010102010101025f0103
+020b0000020304000302000002040400025e010102050101020501010200010002030101
+020e01010205010102030105020201040201010102020105020601000201010102000100
+020101050202010102000101020001010206010102070101020601020208010102040104
+02020101020101010202010102010105025f0103020b0000020404000300000002050400
+025e0101020501010205010302030101020e010102050101020301010205010102010101
+0201010102020101020a0100020201020201010102060107020601010207010102070101
+0208010102030101020101010202010102010101020201010201010102630103020b0000
+020404000300000002050400025e0101020501010206010102040101020f010102020100
+020001010203010102020100020101010201010102010101020201010202010002060100
+020201020201010102020100020301010201010102070101020701010203010102010101
+0208010102030101020101010202010102010101020201010201010102020100025f0103
+020b00000205000002060400025e01010205010102060101020401010210010302010101
+020401030203010202000101020101020201010302070100020301010202010302040101
+020101010207010502030101020401030209010102040102020001010201010402030101
+0202010302600103020b0000020d0400025e01030211010302ff02000103020b0000020d
+040002ff02790103020b0000020d040002ff02790103020c040d02ff027a010302ff0295
+010302ff02950103020200ff008e0400020201030202000004ff048e0202010302ff0295
+010302020500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000020201030202000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050002020103020205000000
+05ff058c0100020201030202000005ff058c010005000202010302020500000005ff058c
+0100020201030202000005ff058c010005000202010302020500000005ff058c01000202
+01030202000005ff058c010005000202010302020500000005ff058c0100020201030202
+000005ff058c010005000202010302020500000005ff058c0100020201030202000005ff
+058c010005000202010302020500000005ff058c0100020201030202000005ff058c0100
+05000202010302020500000005ff058c0100020201030202000005ff058c010005000202
+010302020500000005ff058c0100020201030202000005ff058c01000500020201030202
+0500000005ff058c0100020201030202000005ff058c0100050002020103020205000000
+05ff058c0100020201030202000005ff058c010005000202010302020500000005ff058c
+0100020201030202000005ff058c0100050002020103020205000000056f07ff070e050d
+01000202010302020000057007ff070d0000050c0100050002020103020205000000056f
+070100ff000c050d010002020103020200000570070100ff000c050c0100050002020103
+020205000000056f070100ff000c050d010002020103020200000570070100ff000c050c
+0100050002020103020205000000056f070100ff000c050d010002020103020200000570
+070100040100002001000030010000b2050c0100050002020103020205000000050a0100
+05020100050c0100055107010004010000130100000a0100000001000018010200130100
+00b2050d01000202010302020000050b010105010100050c01000551070100030100001f
+010000020100001901000012010000b3050c0100050002020103020205000000050a0101
+050101000502010205030101050001000502010205040101054407010002010000040101
+000001000003010200030102000201000000010100020100000001020001010100000100
+000301020002010000000101000501000003010200020100000201000002010000b4050d
+01000202010302020000050b010005000100050001000501010005020100050101000501
+010105010100050201000503010105440701000801000000010000000100000101000002
+010000040100000201010001010000010100000001000000010000010100000001000000
+010000010100000201000001010100010100000401000002010000020100000101000002
+010000b8050c0100050002020103020205000000050a0100050001000500010005010100
+0502010005010100050201000501010005020100054a0701000801000000010000000100
+000501000004010000020100000201000001010000000100000001000001010000000100
+000001000005010000010100000801000002010000020100000201000001010000b8050d
+01000202010302020000050b010005010101050101000502010005010100050201000501
+0104054a0701000801000000010000000100000201030004010000020100000201000001
+010000000102000101000000010000000100000201030001010000080100000201040002
+01000001010000b8050c0100050002020103020205000000050a01000501010105010100
+05020100050101000502010005010100054e070100080100000001000000010000010100
+000201000004010000020100000201000001010000050100000001000000010000010100
+00020100000101000008010000020100000701000000010000b8050d0100020201030202
+0000050b0100050201000501010005020100050101000501010105010100050201000503
+010105440701000801000000010000000100000101000002010000040100000201000002
+010000020100000101000001010000000100000001000001010000020100000101000008
+010000020100000201000003010100b9050c0100050002020103020205000000050a0100
+050201000502010205030101050001000502010205040101054407010008010000000100
+000001000002010300040100000201000002010000030101000201000000010000000100
+000201030001010000080100000301020005010000b9050d010002020103020200000570
+07010051010000b9050c0100050002020103020205000000056f0701004e010000000100
+00ba050d0100020201030202000005700701004f010000bb050c01000500020201030202
+05000000056f070100ff000c050d010002020103020200000570070100ff000c050c0100
+050002020103020205000000056f070100ff000c050d0100020201030202000005700701
+00ff000c050c0100050002020103020205000000056f070100ff000c050d010002020103
+020200000570070000ff000d050c010005000202010302020500000005ff058c01000202
+01030202000005ff058c010005000202010302020500000005ff058c0100020201030202
+000005ff058c010005000202010302020500000005ff058c0100020201030202000005ff
+058c010005000202010302020500000005ff058c0100020201030202000005ff058c0100
+05000202010302020500000005ff058c0100020201030202000005ff058c010005000202
+010302020500000005ff058c0100020201030202000005ff058c01000500020201030202
+0500000005ff058c0100020201030202000005ff058c0100050002020103020205000000
+05ff058c0100020201030202000005ff058c010005000202010302020500000005ff058c
+0100020201030202000005ff058c010005000202010302020500000005ff058c01000202
+01030202000005ff058c010005000202010302020500000005ff058c0100020201030202
+000005ff058c010005000202010302020500000005ff058c0100020201030202000005ff
+058c010005000202010302020500000005ff058c0100020201030202000005ff058c0100
+05000202010302020500000005ff058c0100020201030202000005ff058c010005000202
+010302020500000005ff058c0100020201030202000005ff058c01000500020201030202
+0500000005ff058c0100020201030202000005ff058c0100050002020103020205000000
+056d01ff0112050b01000202010302020000056e01ff0112050a01000500020201030202
+05000000056d010107ff070e0101050b01000202010302020000056e010107ff070d0000
+0101050a0100050002020103020205000000056d0101070100ff000c0101050b01000202
+010302020000056e0101070100ff000c0101050a0100050002020103020205000000056d
+0101070100ff000c0101050b01000202010302020000056e010107010000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+00d20101050a0100050002020103020205000000056d010107010337010100d20101050b
+01000202010302020000056e0101070100000336010100d20101050a0100050002020103
+020205000000050a0104050801000506010205490101070103180100030a010003060102
+0307010100d20101050b01000202010302020000050d0100050a01000508010005490101
+0701000003170100030a0100030801000307010100d20101050a01000500020201030202
+05000000050c010005040102050201000500010105050100050301020509010005000101
+050301020502010105000100050301020504010105180101070103010101030001000302
+0100030201000308010403020102030201000300010103050100030301020300010100d2
+0101050b01000202010302020000050d0100050301000502010005010101050101000504
+010005020100050201000508010105010100050101000502010005010100050001000500
+010005010100050201000503010105180101070100000300010003000100030001000301
+010003020100030a01000303010003020100030101010301010003040100030201000302
+010200d20101050a0100050002020103020205000000050c010005070100050101000502
+010005040100050201000502010005080100050201000505010005010100050001000500
+01000501010005020100051e010107010301010003000100030001000302010003010100
+030a010003070100030101000302010003040100030201000302010200d20101050b0100
+0202010302020000050d0100050401030501010005020100050401000502010405080100
+050201000502010305010100050001000500010005010104051e01010701000003000100
+03000100030001000302010003010100030a010003040103030101000302010003040100
+0302010600d20101050a0100050002020103020205000000050c01000503010005020100
+05010100050201000504010005020100050c010005020100050101000502010005010100
+050001000500010005010100052201010701030101000300010003000100030301000300
+0100030a01000303010003020100030101000302010003040100030201000303010100d2
+0101050b01000202010302020000050d0100050301000502010005010101050101000504
+010005020100050201000508010005020100050101000502010005010100050001000500
+010005010100050201000503010105180101070100000300010003000100030001000303
+0101030b01000303010003020100030101010301010003040100030201000302010200d2
+0101050a0100050002020103020205000000050c01000504010305010100050001010505
+010005030102050901000502010005020103050101000500010005000100050201020504
+010105180101070103010100030001000300010003040100030c01010302010303010100
+0300010103050100030301020300010100d20101050b01000202010302020000056e0101
+07010000030a0100030101050322010100d20101050a0100050002020103020205000000
+056d010107010308010003000100032b010100d20101050b01000202010302020000056e
+01010701000003080100032c010100d20101050a0100050002020103020205000000056d
+010107010300010003000100030001000300010003000100030001000300010003000100
+030001000300010003000100030001000300010003000100030001000300010003000100
+030001000300010003000100030001000300010003000100030001000300010003000100
+03000100030001000300010000d20101050b01000202010302020000056e0101070100ff
+000c0101050a0100050002020103020205000000056d0101070100ff000c0101050b0100
+0202010302020000056e0101070100ff000c0101050a0100050002020103020205000000
+056d0101070100ff000c0101050b01000202010302020000056e0101070000ff000d0101
+050a0100050002020103020205000000056d01ff0112050b01000202010302020000056e
+01ff0112050a010005000202010302020500000005ff058c0100020201030202000005ff
+058c010005000202010302020500000005ff058c0100020201030202000005ff058c0100
+05000202010302020500000005ff058c0100020201030202000005ff058c010005000202
+010302020500000005ff058c0100020201030202000005ff058c01000500020201030202
+0500000005ff058c0100020201030202000005ff058c0100050002020103020205000000
+05ff058c0100020201030202000005ff058c010005000202010302020500000005ff058c
+0100020201030202000005ff058c010005000202010302020500000005ff058c01000202
+01030202000005ff058c010005000202010302020500000005ff058c0100020201030202
+000005ff058c010005000202010302020500000005ff058c0100020201030202000005ff
+058c01000500020201030202050000000570000005000000050000000500000005000000
+0508010005020100051a0100050a0100050a01000506010205c601000202010302020000
+0570000005000000050000000500000005000000050001000507010105010100051a0100
+050a0100050a01000508010005c501000500020201030202050000000570000005060100
+050801010501010005020102050201010500010005030102050301010500010005080104
+050201020502010005000101050501000503010205bf0100020201030202000005700000
+050801000507010005000100050001000501010005020100050101000500010005000100
+05010100050201000501010005010101050a010005030100050201000501010105010100
+05040100050201000502010005bd01000500020201030202050000000570000005060100
+050801000500010005000100050501000501010005000100050001000501010005020100
+0501010005020100050a0100050701000501010005020100050401000502010005020100
+05be01000202010302020000057000000508010005070100050101010502010305010100
+0500010005000100050101040501010005020100050a0100050401030501010005020100
+050401000502010405bd0100050002020103020205000000057000000506010005080100
+050101010501010005020100050101000500010005000100050101000505010005020100
+050a010005030100050201000501010005020100050401000502010005c2010002020103
+020200000570000005080100050701000502010005010100050201000501010005000100
+0500010005010100050201000501010005010101050a0100050301000502010005010101
+0501010005040100050201000502010005bd010005000202010302020500000005700000
+050601000508010005020100050201030501010005000100050001000502010205030101
+05000100050b0101050201030501010005000101050501000503010205bf010002020103
+0202000005700000050001000500010005000100050001000500010005ff051001000500
+02020103020205000000057001000500010005000100050001000500010005ff05120100
+020201030202000005ff058c010005000202010302020500000005ff058c010002020103
+0202000005ff058c010005000202010302020500000005ff058c01000202010302020000
+05ff058c010005000202010302020500000005ff058c0100020201030202000005ff058c
+010005000202010302020500000005ff058c0100020201030202000005ff058c01000500
+0202010302020500000005ff058c0100020201030202000005ff058c0100050002020103
+02020500000005ff058c0100020201030202000005ff058c010005000202010302020500
+000005ff058c0100020201030202000005ff058c010005000202010302020500000005ff
+058c0100020201030202000005ff058c010005000202010302020500000005ff058c0100
+020201030202000005ff058c010005000202010302020500000005ff058c010002020103
+0202000005ff058c010005000202010302020500000005ff058c01000202010302020000
+05ff058c010005000202010302020500000005ff058c0100020201030202000005ff058c
+010005000202010302020500000005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100020201030202000005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050002020103
+020205000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000202010302020000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+000005000000050000000500000005000000050000000500000005000000050000000500
+0000050000000500000005000000050000000500000005000202010302020500000005ff
+058c0100020201030202000005ff058c010005000202010302020500000005ff058c0100
+020201030202000005ff058c010005000202010302020500000005ff058c010002020103
+0202000005ff058c010005000202010302020500000005ff058c01000202010302020000
+05ff058c010005000202010302020500000005ff058c0100020201030202000005ff058c
+010005000202010302020500000005ff058c0100020201030202000005ff058c01000500
+0202010302020500000005ff058c0100020201030202000005ff058c0100050002020103
+02020500000005ff058c0100020201030202000005ff058c010005000202010302020500
+000005ff058c0100020201030202000005ff058c010005000202010302020500000005ff
+058c0100020201030202000005ff058c0100050002020103020205000000050a010405ff
+057c01000202010302020000050d010005ff057d0100050002020103020205000000050c
+010005030100050201000501010005000101050301020504010105ff0561010002020103
+02020000050d010005030100050201000501010105010100050101000502010005030101
+05ff05600100050002020103020205000000050c01000504010005010100050101000502
+0100050101000502010005ff056701000202010302020000050d01000504010005010100
+05010100050201000501010405ff05660100050002020103020205000000050c01000505
+01000500010005010100050201000501010005ff056b01000202010302020000050d0100
+05050101050201010501010005010100050201000503010105ff05600100050002020103
+020205000000050c0100050601000502010005000101050301020504010105ff05610100
+0202010302020000051501000502010005ff057101000500020201030202050000000511
+0100050001000503010005ff057201000202010302020000051301000504010005ff0571
+010005000202010302020500000005ff058c0100020201030202000005ff058c01000500
+0202010302020500000005ff058c0100020201030202000005ff058c0100050002020103
+02020500000005ff058c0100020201030202000005ff058c010005000202010302020500
+000005ff058c0100020201030202000005ff058c010005000202010302020500000005ff
+058c0100020201030202000005ff058c010005000202010302020500000005ff058c0100
+020201030202000005ff058c010005000202010302020500000005ff058c010002020103
+0202000005ff058c010005000202010302020500000005ff058c01000202010302020000
+05ff058c010005000202010302020500000005ff058c0100020201030202000005440100
+0567000005670000057401000500020201030202050000000542010005000100051d0100
+0546000005000000050d0100055600000500000005110100051001020505010005120100
+05110100051f01000202010302020000054201000500010005000100051c010005450000
+0500000005000000050c0100055500000500000005000000051001000512010005190100
+05110100051e01000500020201030202050000000540010005000100060105000100050c
+01020503010205020104054200000500000005020000050b010005000101050301020503
+010105000100054200000500000005020000050c01010500010005010100050201000501
+010005000101050501000503010205030102050301020502010405020102050901000500
+0101050301020503010105000100050d0100020201030202000005400100050001000603
+05000100050a010005020100050101000502010005030100054300000500000005040000
+050a01010501010005010100050201000501010005010101054100000500000005040000
+050a01000501010105010100050201000501010105010100050401000505010005020100
+050201000501010005020100050301000503010005020100050801010501010005010100
+050201000501010005010101050c0100050002020103020205000000053e010005000100
+060505000100050901000505010005020100050301000542000005000000050600000509
+010005020100050501000501010005020100054000000500000005060000050901000502
+010005010100050201000501010005020100050401000505010005020100050901000503
+010005030100050201000508010005020100050501000501010005020100050d01000202
+010302020000053e00000500000006070500000005090102050201040503010005410100
+05000100050801000508010005020100050201030501010005020100053f010005000100
+050801000508010005020100050101000502010005010100050201000504010005050100
+050201000506010305030100050301040508010005020100050201030501010005020100
+050c0100050002020103020205000000053e000005000000060505000000050d01000501
+010005070100054201000500010005060100050901000502010005010100050201000501
+010005020100054001000500010005060100050901000502010005010100050201000501
+01000502010005040100050501000502010005050100050201000503010005030100050c
+01000502010005010100050201000501010005020100050d010002020103020200000540
+000005000000060305000000050a01000502010005010100050201000503010005430100
+0500010005040100050a0101050101000501010005020100050101000501010105410100
+0500010005040100050a0100050101010501010005010101050101010501010005040100
+050501000502010005020100050101000502010005030100050301000502010005080101
+0501010005010100050201000501010005010101050c0100050002020103020205000000
+0540000005000000060105000000050c0102050301020505010105420100050001000502
+0100050b010005000101050301030502010105000100054201000500010005020100050c
+010105000100050201010500010005010100050001010505010005050100050301020503
+010305040101050201020509010005000101050301030502010105000100050d01000202
+010302020000054200000500000005000000056301000500010005000100051e01000543
+01000500010005000100051a0100052e010505130100050c010005000202010302020500
+000005420000050000000565010005000100051b0100050201000544010005000100051b
+01000544010005020100050d010002020103020200000544000005670100051d01020546
+0100051c010005450102050d010005000202010302020500000005ff058c010002020103
+0202000005ff058c010005000202010302020500000005ff058c01000202010302020000
+05ff058c010005000202010302020500000005ff058c0100020201030202000005ff058c
+010005000202010302020500000005ff058c0100020201030202000005ff058c01000500
+0202010302020500000005ff058c0100020201030202000005ff058c0100050002020103
+02020500000005ff058c0100020201030202000005ff058c010005000202010302020500
+000005ff058c0100020201030202000005ff058c010005000202010302020500000005ff
+058c0100020201030202000005ff058c010005000202010302020500000005ff058c0100
+020201030202000005ff058c010005000202010302020500000005ff058c010002020103
+0202000005ff058c010005000202010302020500000005ff058c01000202010302020000
+05ff058c010005000202010302020500000005ff058c0100020201030202000005ff058c
+010005000202010302020500000005ff058c0100020201030202000005ff058c01000500
+0202010302020500000005ff058c0100020201030202000005ff058c0100050002020103
+02020500000005ff058c0100020201030202000005ff058c010005000202010302020500
+000005ff058c0100020201030202000005ff058c010005000202010302020500000005ff
+058c0100020201030202000005ff058c010005000202010302020500000005ff058c0100
+020201030202000005ff058c010005000202010302020500000005ff058c010002020103
+0202000005ff058c010005000202010302020500000005ff058c01000202010302020000
+05ff058c010005000202010302020500000005ff058c0100020201030202000005ff058c
+010005000202010302020500000005ff058c0100020201030202000005ff058c01000500
+0202010302020500000005ff058c0100020201030202000005ff058c0100050002020103
+02020500000005ff058c0100020201030202000005ff058c010005000202010302020500
+0000050a010305120100051301000506010005ff054c01000202010302020000050b0100
+05020100051101000513010005ff05530100050002020103020205000000050a01000502
+010005010100050001010503010205020104050201020503010205020104050201020503
+010205020100050001010504010105ff053701000202010302020000050b010005020100
+050101010501010005010100050201000503010005030100050201000501010005020100
+0503010005060100050201000502010005010101050101000503010105ff053601000500
+02020103020205000000050a010305020100050501000502010005030100050301000502
+01000501010005070100050601000502010005020100050101000502010005ff053d0100
+0202010302020000050b0100050501000505010005020100050301000503010405010100
+05070100050601000502010005020100050101000502010005ff053c0100050002020103
+020205000000050a01000505010005050100050201000503010005030100050501000507
+0100050601000502010005020100050101000502010005ff053d01000202010302020000
+050b01000505010005050100050201000503010005030100050201000501010005020100
+0503010005060100050201000502010005010100050201000503010105ff053601000500
+02020103020205000000050a010005050100050601020505010105020102050301020505
+0101050401000503010205020100050201000503010105ff053701000202010302020000
+05ff058c010005000202010302020500000005ff058c0100020201030202000005ff058c
+010005000202010302020500000005ff058c0100020201030202000005ff058c01000500
+0202010302020500000005ff058c0100020201030202000005ff058c0100050002020103
+02020500000005ff058c0100020201030202000005ff058c010005000202010302020500
+000005ff058c0100020201030202000005ff058c010005000202010302020500000005ff
+058c0100020201030202000005ff058c010005000202010302020500000005ff058c0100
+020201030202000005ff058c010005000202010302020500000005ff058c010002020103
+0202000005ff058c010005000202010302020500000005ff058c01000202010302020000
+05ff058c010005000202010302020500000005ff058c0100020201030202000005440100
+0567000005670000057401000500020201030202050000000542010005000100051b0100
+050601020505010005370000050000000524010005130100050e0100051a000005000000
+051e010005120100054001000202010302020000054201000500010005000100051a0100
+05080100053d000005000000050000000523010005130100050e01000519000005000000
+0500000005310100053f0100050002020103020205000000054001000500010006010500
+0100050b0100050001010502010005020100050101000500010105050100050301020503
+0102052e00000500000005020000050b0100050001010502010005000101050301020502
+010405020102050301020502010405020102050301010500010005180000050000000502
+0000050b0100050001010502010005000101050301020502010005020100050201020502
+0104050201020538010002020103020200000540010005000100060305000100050a0101
+050101000501010005020100050101010501010005040100050501000502010005020100
+052c00000500000005040000050a01010501010005010101050101000501010005020100
+050301000503010005020100050101000502010005030100050301000502010005010100
+05010101051700000500000005040000050a010105010100050101010501010005040100
+050201000502010005010100050201000503010005030100050201000536010005000202
+0103020205000000053e0100050001000605050001000509010005020100050101000502
+01000501010005020100050401000505010005020100052f000005000000050600000509
+010005020100050101000505010005020100050301000503010005020100050101000507
+010005030100050201000501010005020100051600000500000005060000050901000502
+010005010100050801000502010005020100050501000503010005030100050201000537
+01000202010302020000053e000005000000060705000000050801000502010005010100
+050201000501010005020100050401000505010005020100052e01000500010005080100
+050801000502010005010100050501000502010005030100050301040501010005070100
+050301040501010005020100051501000500010005080100050801000502010005010100
+050801000503010005000100050301030503010005030104053601000500020201030202
+05000000053e000005000000060505000000050901000502010005010100050201000501
+010005020100050401000505010005020100052f01000500010005060100050901000502
+010005010100050501000502010005030100050301000505010005070100050301000505
+010005020100051601000500010005060100050901000502010005010100050801000503
+01000500010005020100050201000503010005030100053b010002020103020200000540
+000005000000060305000000050a01010501010005010100050101010501010105010100
+05040100050501000502010005020100052c01000500010005040100050a010105010100
+050101000505010005020100050301000503010005020100050101000502010005030100
+05030100050201000501010005010101051701000500010005040100050a010105010100
+050101000508010005040100050301000502010005030100050301000502010005360100
+0500020201030202050000000540000005000000060105000000050b0100050001010503
+0101050001000501010005000101050501000505010005030102052e0100050001000502
+0100050b0100050001010502010005060102050501010502010205030102050501010502
+01020503010105000100051801000500010005020100050b010005000101050201000508
+010005040100050401030504010105020102053801000202010302020000054200000500
+000005000000050c0100055501000500010005000100050c010005550100050001000500
+0100050c0100056401000500020201030202050000000542000005000000050d01000556
+010005000100050d01000556010005000100050d01000565010002020103020200000544
+0000050e010005570100050e010005570100050e01000564010005000202010302020500
+000005ff058c0100020201030202000005ff058c010005000202010302020500000005ff
+058c0100020201030202000005ff058c010005000202010302020500000005ff058c0100
+020201030202000005ff058c010005000202010302020500000005ff058c010002020103
+0202000005ff058c010005000202010302020500000005ff058c01000202010302020000
+05ff058c010005000202010302020500000005ff058c0100020201030202000005ff058c
+010005000202010302020500000005ff058c0100020201030202000005ff058c01000500
+0202010302020500000005ff058c0100020201030202000005ff058c0100050002020103
+02020500000005ff058c0100020201030202000005ff058c010005000202010302020500
+000005ff058c0100020201030202000005ff058c010005000202010302020500000005ff
+058c0100020201030202000005ff058c010005000202010302020500000005ff058c0100
+020201030202000005ff058c010005000202010302020500000005ff058c010002020103
+0202000005ff058c010005000202010302020500000005ff058c01000202010302020000
+05ff058c010005000202010302020500000005ff058c0100020201030202000005ff058c
+010005000202010302020500000005ff058c0100020201030202000005ff058c01000500
+0202010302020500000005ff058c0100020201030202000005ff058c0100050002020103
+02020500000005ff058c0100020201030202000005ff058c010005000202010302020500
+000005ff058c0100020201030202000005ff058c010005000202010302020500000005ff
+058c0100020201030202000005ff058c010005000202010302020500000005ff058c0100
+020201030202000005ff058c010005000202010302020500000005ff058c010002020103
+0202000005ff058c010005000202010302020500000005ff058c01000202010302020000
+05ff058c010005000202010302020500000005ff058c0100020201030202000005ff058c
+010005000202010302020500000005ff058c0100020201030202000005ff058c01000500
+02020103020205000000056f072d05ee010002020103020200000570072c000005ed0100
+050002020103020205000000056f0701002b05ee0100020201030202000005700701002b
+05ed0100050002020103020205000000056f0701002b05ee010002020103020200000570
+0701002b05ed0100050002020103020205000000056f0701002b05ee0100020201030202
+000005700701002b05ed0100050002020103020205000000050a010005020100052e0100
+05040100050601000521070100030100002605ee01000202010302020000050b01000501
+0100053501000529070100020101002605ed0100050002020103020205000000050a0100
+050001000504010205020100050201000508010005000101050301020503010205030102
+050201040502010205030102050201000500010105040101050c07010001010000000100
+002605ee01000202010302020000050b0101050401000502010005010100050201000508
+010105010100050101000502010005010100050201000504010005040100050601000502
+010005020100050101010501010005030101050c070100030100002605ed010005000202
+0103020205000000050a0100050001000503010005020100050201000501010005080100
+050201000501010005020100050101000508010005040100050601000502010005020100
+05010100050201000512070100030100002605ee01000202010302020000050b01000501
+010005020104050201000501010005080100050201000501010005020100050201020505
+010005040100050601000502010005020100050101000502010005120701000301000026
+05ed0100050002020103020205000000050a010005010100050201000507010005000100
+050801000502010005010100050201000505010005040100050401000506010005020100
+0502010005010100050201000512070100030100002605ee01000202010302020000050b
+010005020100050101000502010005030101050901010501010005010100050201000501
+010005020100050401000504010005060100050201000502010005010100050201000503
+0101050c070100030100002605ed0100050002020103020205000000050a010005020100
+050201020505010005090100050001010503010205030102050501000505010105040100
+05030102050201000502010005030101050c070100010104002405ee0100020201030202
+0000051c01000509010005470701002b05ed010005000202010302020500000005180100
+05000100050a010005470701002b05ee01000202010302020000051a0100050b01000547
+0701002b05ed0100050002020103020205000000056f0701002b05ee0100020201030202
+000005700701002b05ed0100050002020103020205000000056f0701002b05ee01000202
+01030202000005700701002b05ed0100050002020103020205000000056f0701002b05ee
+0100020201030202000005700700002c05ed010005000202010302020500000005ff058c
+0100020201030202000005ff058c010005000202010302020500000005ff058c01000202
+01030202000005ff058c010005000202010302020500000005ff058c0100020201030202
+000005ff058c010005000202010302020500000005ff058c0100020201030202000005ff
+058c010005000202010302020500000005ff058c0100020201030202000005ff058c0100
+05000202010302020500000005ff058c0100020201030202000005ff058c010005000202
+010302020500000005ff058c0100020201030202000005ff058c01000500020201030202
+0500000005ff058c0100020201030202000005ff058c0100050002020103020205000000
+05ff058c0100020201030202000005ff058c010005000202010302020500000005ff058c
+0100020201030202000005ff058c010005000202010302020500000005ff058c01000202
+01030202000005ff058c010005000202010302020500000005ff058c0100020201030202
+000005ff058c010005000202010302020500000005ff058c0100020201030202000005ff
+058c010005000202010302020500000005ff058c0100020201030202000005ff058c0100
+050002020103020205000000050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000202010302020000050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500020201030202
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000002020103020200000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000202010302020500000005ff058c
+0100020201030202000005ff058c010005000202010302020500000005ff058c01000202
+01030202000005ff058c010005000202010302020500000005ff058c0100020201030202
+000005ff058c010005000202010302020500000005ff058c0100020201030202000005ff
+058c010005000202010302020500000005ff058c0100020201030202000005ff058c0100
+05000202010302020500000005ff058c0100020201030202000005ff058c010005000202
+010302020500000005ff058c0100020201030202000005ff058c01000500020201030202
+0500000005ff058c0100020201030202000005ff058c0100050002020103020205000000
+05ff058c0100020201030202000005ff058c010005000202010302020500000005ff058c
+0100020201030202000005ff058c01000500020201030202050000000557010005000100
+05000100050001000500010005090102051e010005fe0100020201030202000005570100
+05000100050001000500010005000100050000000507010005020100051d010005fd0100
+050002020103020205000000055701000606000005080100050201000501010005000101
+050301020502010005000101050901000500010105020100050001010503010205020100
+050201000502010205030102050201000500010105d10100020201030202000005570100
+050006060500000005070100050201000501010105010100050101000502010005010101
+050101000508010105010100050101010501010005010100050201000501010005020100
+05010100050201000501010005020100050101010501010005cf01000500020201030202
+050000000557010006060000050801000502010005010100050201000501010005020100
+050101000502010005080100050201000501010005050100050201000501010005000100
+050001000501010005050100050201000501010005d40100020201030202000005570100
+050006060500000005070100050201000501010005020100050101040501010005020100
+050801000502010005010100050501000502010005010100050001000500010005020102
+050201040501010005d30100050002020103020205000000055701000606000005080100
+050201000501010005020100050101000505010005020100050801000502010005010100
+050501000502010005010100050001000500010005050100050101000505010005d40100
+020201030202000005570100050006060500000005070100050201000501010105010100
+050101000502010005010100050201000508010105010100050101000505010005020100
+050101000500010005000100050101000502010005010100050201000501010005d30100
+050002020103020205000000055701000606000005090102050201000500010105030102
+050201000502010005080100050001010502010005060102050301000500010005030102
+050301020502010005d40100020201030202000005570100050000000500000005000000
+0500000005000000050e010005ff05190100050002020103020205000000055700000500
+0000050000000500000005000000050f010005ff051a0100020201030202000005710100
+05ff0519010005000202010302020500000005ff058c0100020201030202000005ff058c
+010005000202010302020500000005ff058c0100020201030202000005ff058c01000500
+0202010302020500000005ff058c0100020201030202000005ff058c0100050002020103
+02020500000005ff058c0100020201030202000005ff058c010005000202010302020500
+000005ff058c0100020201030202000005ff058c010005000202010302020500000005ff
+058c0100020201030202000005ff058c010005000202010302020500000005ff058c0100
+020201030202000005ff058c010005000202010302020500000005ff058c010002020103
+0202000005ff058c010005000202010302020500000005ff058c01000202010302020000
+05ff058c010005000202010302020500000005ff058c0100020201030202000005ff058c
+010005000202010302020500000005ff058c0100020201030202000005ff058c01000500
+0202010302020500000005ff058c0100020201030202000005ff058c0100050002020103
+02020500000005ff058c0100020201030202000005ff058c010005000202010302020500
+000005ff058c0100020201030202000005ff058c010005000202010302020500000005ff
+058c0100020201030202000005ff058c010005000202010302020500000005ff058c0100
+020201030202000005ff058c010005000202010302020500000005ff058c010002020103
+020200000556000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000052800000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005460100050002020103020205000000055400000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005280000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000500000005000000
+050000000500000005000000050000000500000005000000050000000548010002020103
+020200000556000005600100052800000560010005460100050002020103020205000000
+055400000560010005280000056001000548010002020103020200000556000005600100
+052800000560010005460100050002020103020205000000055400000560010005280000
+056001000548010002020103020200000556000005600100052800000560010005460100
+050002020103020205000000055400000560010005280000056001000548010002020103
+020200000556000005600100052800000560010005460100050002020103020205000000
+05540000052a01020502010005020100052a010005280000051c0102051f0102051d0100
+0548010002020103020200000556000005280100050201000501010005010100052c0100
+05280000051a01000502010005200100051e010005460100050002020103020205000000
+0554000005290100050201000501010005000100052c010005280000051b010005020100
+050201020502010005000101050301020503010205050100051d01000548010002020103
+0202000005560000052801000502010005010101052e010005280000051a010005050100
+0502010005010101050101000501010005020100050101000502010005040100051e0100
+054601000500020201030202050000000554000005290100050201000501010005000100
+052c010005280000051b0100050901000501010005020100050101000505010005020100
+05040100051d010005480100020201030202000005560000052801000502010005010100
+05010100052c010005280000051a01000506010305010100050201000501010005050104
+05040100051e010005460100050002020103020205000000055400000529010005020100
+0501010005010100052b010005280000051b010005020100050101000502010005010100
+05020100050101000505010005080100051d010005480100020201030202000005560000
+05280100050201000501010005020100052b010005280000051a01000502010005010100
+0502010005010100050201000501010005020100050101000502010005040100051e0100
+0546010005000202010302020500000005540000052a01020502010005020100052a0100
+05280000051c0102050301030501010005020100050201020503010205050100051d0100
+054801000202010302020000055600000560010005280000056001000546010005000202
+010302020500000005540000056001000528000005600100054801000202010302020000
+055600000560010005280000056001000546010005000202010302020500000005540000
+056001000528000005600100054801000202010302020000055600000560010005280000
+056001000546010005000202010302020500000005540000056001000528000005600100
+054801000202010302020000055600000560010005280000056001000546010005000202
+010302020500000005540000056001000528000005600100054801000202010302020000
+055600000560010005280000056001000546010005000202010302020500000005540000
+056001000528000005600100054801000202010302020000055600000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005280000050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000546010005000202
+010302020500000005540000050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000528000005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+05000100050001000500010005480100020201030202000005ff058c0100050002020103
+02020500000005ff058c0100020201030202000005ff058c010005000202010302020500
+000005ff058c0100020201030202000005ff058c010005000202010302020500000005ff
+058c0100020201030202000005ff058c010005000202010302020500000005ff058c0100
+020201030202000005ff058c010005000202010302020500000005ff058c010002020103
+0202000005ff058c010005000202010302020500000005ff058c01000202010302020000
+05ff058c010005000202010302020500000005ff058c0100020201030202000005ff058c
+010005000202010302020500000005ff058c0100020201030202000005ff058c01000500
+0202010302020500000005ff058c0100020201030202000005ff058c0100050002020103
+02020500000005ff058c0100020201030202000005ff058c010005000202010302020500
+000005ff058c010002020101000505ff058c010005000005020204000500000005ff058c
+0100000002020400000002020400000005ff058c01000500000002020400000002020400
+0500000005ff058c01000000020204000000020204000000050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500010005000100
+050001000500010005000100050001000500010005000100050001000500000002020400
+000002020400050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+010005000100050001000500010005000100050001000500010005000100050001000500
+0100050001000500010005000100000002020400000002020400000502ff028300060202
+040000000208040002ff028300000208040000000208040002ff02830000020804000000
+0208040001ff01830000020804000000040901ff018300000409
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 114 250 471
+%%EOF