diff --git a/RELEASE-NOTES b/RELEASE-NOTES index f6a3063..02d0a1f 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -35,6 +35,9 @@ - `s:temp` now truncates strings longer than `TempStringMax` - `s:filter` now truncates strings longer than `TempStringMax` - added new `d:stack` field for storing a stack comment + - added new `d:astack` field for storing an address stack comment + - added new `d:fstack` field for storing a float stack comment + - added new `d:descr` field for storing a description - `sigil:(` extended to store stack comments (with a form of `(:comment)` - add `d:describe` diff --git a/image/retro.muri b/image/retro.muri index 199e3ae..9d95914 100644 --- a/image/retro.muri +++ b/image/retro.muri @@ -146,7 +146,7 @@ Here's the initial memory map: r 9999 : Heap -d 1536 +d 2048 : Version d 202409 @@ -155,7 +155,7 @@ d 202409 r interpret r err:notfound r TIB -d 1535 +d 2048 : HashFunction d 0 : RehashFunction @@ -698,7 +698,10 @@ below. | class | link to the class handler function | d:class | | source | source identifier | d:source | | hash | hash of the word name | d:hash | -| source | pointer to stack comment | d:stack | +| stack | pointer to stack comment | d:stack | +| astack | pointer to addr. stack comment | d:astack | +| fstack | pointer to float stack comment | d:fstack | +| descr | pointer to description | d:descr | | name | zero terminated string | d:name | The initial dictionary is constructed at the end of this file. @@ -711,6 +714,9 @@ It'll take a form like this: r source-file d 0 d 0 + d 0 + d 0 + d 0 s dup : 0001 @@ -720,6 +726,9 @@ It'll take a form like this: r source-file d 0 d 0 + d 0 + d 0 + d 0 s drop : 0002 @@ -728,6 +737,9 @@ It'll take a form like this: r class:primitive d 0 d 0 + d 0 + d 0 + d 0 s swap Each entry starts with a pointer to the prior entry (with a @@ -770,9 +782,21 @@ d 4 i liadre.. d 5 -: d:name +: d:astack i liadre.. d 6 + +: d:fstack +i liadre.. +d 7 + +: d:descr +i liadre.. +d 8 + +: d:name +i liadre.. +d 9 ~~~ A traditional Forth has `create` to make a new dictionary entry @@ -787,31 +811,56 @@ are made using the `:` sigil, or `d:create` (once defined in the standard library). At some point I may simplify this by moving `d:create` into Rx and using it in place of `d:add-header`. +~~~ +: empty-stack +s - +~~~ + ~~~ : d:add-header i liju.... r _add-header : _add-header + i lifepuli r Heap r Dictionary i felica.. r comma + i lica.... r comma + i lica.... r comma + i lilica.. d 0 r comma + i lilica.. d 0 r comma + i lilica.. d 0 r comma + +i lilica.. +r empty-stack +r comma + +i lilica.. +r empty-stack +r comma + +i lilica.. +d 0 +r comma + i lica.... r comma:string + i polist.. r Dictionary i lifezr.. @@ -1562,6 +1611,9 @@ r class:primitive r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s dup : 0001 r 0000 @@ -1570,6 +1622,9 @@ r class:primitive r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s drop : 0002 r 0001 @@ -1578,6 +1633,9 @@ r class:primitive r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s swap : 0003 r 0002 @@ -1586,6 +1644,9 @@ r class:primitive r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s call : 0004 r 0003 @@ -1594,6 +1655,9 @@ r class:primitive r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s eq? : 0005 r 0004 @@ -1602,6 +1666,9 @@ r class:primitive r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s -eq? : 0006 r 0005 @@ -1610,6 +1677,9 @@ r class:primitive r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s lt? : 0007 r 0006 @@ -1618,6 +1688,9 @@ r class:primitive r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s gt? : 0008 r 0007 @@ -1626,6 +1699,9 @@ r class:primitive r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s fetch : 0009 r 0008 @@ -1634,6 +1710,9 @@ r class:primitive r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s store : 0010 r 0009 @@ -1642,6 +1721,9 @@ r class:primitive r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s + : 0011 r 0010 @@ -1650,6 +1732,9 @@ r class:primitive r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s - : 0012 r 0011 @@ -1658,6 +1743,9 @@ r class:primitive r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s * : 0013 r 0012 @@ -1666,6 +1754,9 @@ r class:primitive r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s /mod : 0014 r 0013 @@ -1674,6 +1765,9 @@ r class:primitive r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s and : 0015 r 0014 @@ -1682,6 +1776,9 @@ r class:primitive r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s or : 0016 r 0015 @@ -1690,6 +1787,9 @@ r class:primitive r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s xor : 0017 r 0016 @@ -1698,6 +1798,9 @@ r class:primitive r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s shift : 0018 r 0017 @@ -1706,6 +1809,9 @@ r class:macro r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s push : 0019 r 0018 @@ -1714,6 +1820,9 @@ r class:macro r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s pop : 0020 r 0019 @@ -1722,6 +1831,9 @@ r class:macro r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s 0; : 0021 r 0020 @@ -1730,6 +1842,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s fetch-next : 0022 r 0021 @@ -1738,6 +1853,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s store-next : 0023 r 0022 @@ -1746,6 +1864,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s s:to-number : 0024 r 0023 @@ -1754,6 +1875,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s s:eq? : 0025 r 0024 @@ -1762,6 +1886,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s s:length : 0026 r 0025 @@ -1770,6 +1897,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s choose : 0027 r 0026 @@ -1778,6 +1908,9 @@ r class:primitive r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s if : 0028 r 0027 @@ -1786,6 +1919,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s -if : 0029 r 0028 @@ -1794,6 +1930,9 @@ r class:macro r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s sigil:( : 0030 r 0029 @@ -1802,6 +1941,9 @@ r class:data r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s Compiler : 0031 r 0030 @@ -1810,6 +1952,9 @@ r class:data r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s Heap : 0032 r 0031 @@ -1818,6 +1963,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s , : 0033 r 0032 @@ -1826,6 +1974,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s s, : 0034 r 0033 @@ -1834,6 +1985,9 @@ r class:macro r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s ; : 0035 r 0034 @@ -1842,6 +1996,9 @@ r class:macro r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s [ : 0036 r 0035 @@ -1850,6 +2007,9 @@ r class:macro r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s ] : 0037 r 0036 @@ -1858,6 +2018,9 @@ r class:data r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s Dictionary : 0038 r 0037 @@ -1866,6 +2029,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s d:link : 0039 r 0038 @@ -1874,6 +2040,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s d:xt : 0040 r 0039 @@ -1882,6 +2051,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s d:class : 0041 r 0040 @@ -1890,6 +2062,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s d:name : 0042 r 0041 @@ -1898,6 +2073,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s class:word : 0043 r 0042 @@ -1906,6 +2084,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s class:macro : 0044 r 0043 @@ -1914,6 +2095,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s class:data : 0045 r 0044 @@ -1922,6 +2106,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s d:add-header : 0046 r 0045 @@ -1930,6 +2117,9 @@ r class:macro r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s sigil:# : 0047 r 0046 @@ -1938,6 +2128,9 @@ r class:macro r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s sigil:: : 0048 r 0047 @@ -1946,6 +2139,9 @@ r class:macro r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s sigil:& : 0049 r 0048 @@ -1954,6 +2150,9 @@ r class:macro r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s sigil:$ : 0050 r 0049 @@ -1962,6 +2161,9 @@ r class:macro r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s repeat : 0051 r 0050 @@ -1970,6 +2172,9 @@ r class:macro r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s again : 0052 r 0051 @@ -1978,6 +2183,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s interpret : 0053 r 0052 @@ -1986,6 +2194,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s d:lookup : 0054 r 0053 @@ -1994,6 +2205,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s class:primitive : 0055 r 0054 @@ -2002,6 +2216,9 @@ r class:data r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s Version : 0056 r 0055 @@ -2010,6 +2227,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s i : 0057 r 0056 @@ -2018,6 +2238,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s d : 0058 r 0057 @@ -2026,6 +2249,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s r : 0059 r 0058 @@ -2034,6 +2260,9 @@ r class:data r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s Base : 0060 r 0059 @@ -2042,6 +2271,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s pack : 0061 r 0060 @@ -2050,6 +2282,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s unpack : 0062 r 0061 @@ -2058,6 +2293,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s d:source : 0063 r 0062 @@ -2066,6 +2304,9 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s d:hash : 0064 r 0063 @@ -2074,14 +2315,55 @@ r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s d:stack -: 9999 + +: 0065 r 0064 +r d:astack +r class:word +r source-file +d 0 +d 0 +r empty-stack +r empty-stack +d 0 +s d:astack +: 0066 +r 0065 +r d:fstack +r class:word +r source-file +d 0 +d 0 +r empty-stack +r empty-stack +d 0 +s d:fstack +: 0067 +r 0066 +r d:descr +r class:word +r source-file +d 0 +d 0 +r empty-stack +r empty-stack +d 0 +s d:descr + +: 9999 +r 0067 r err:notfound r class:word r source-file d 0 d 0 +r empty-stack +r empty-stack +d 0 s err:notfound ~~~ @@ -2155,7 +2437,7 @@ s err:notfound ## Legalities -RETRO Core is Copyright (c) 2016-2022, Charles Childers +RETRO Core is Copyright (c) 2016-2024, Charles Childers Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided diff --git a/interface/stack-comments.retro b/interface/stack-comments.retro index 962cc88..30395d0 100644 --- a/interface/stack-comments.retro +++ b/interface/stack-comments.retro @@ -6,7 +6,7 @@ comment format this introduces to add them inline. ~~~ {{ :save (s-) - n:inc s:chop here swap s:keep |drop #2 + d:last.name n:dec store ; + n:inc s:chop here swap s:keep |drop #2 + d:last.name #4 - store ; :stack-comment? (s-sf) dup #0 s:fetch $: eq? ; ---reveal--- :sigil:( stack-comment? &save &drop choose ; immediate @@ -14,11 +14,14 @@ comment format this introduces to add them inline. :d:describe (:s-) d:lookup nl - dup 'Name:____ s:put d:name s:put nl - dup 'Address:_ s:put d:xt fetch n:put nl - dup 'Class:___ s:put d:class fetch dup n:put d:lookup-xt dup n:-zero? [ sp d:name s:put ] &drop choose nl - dup 'Source:__ s:put d:source fetch dup n:-zero? &s:put &drop choose nl - dup 'Stack:___ s:put d:stack fetch dup n:-zero? &s:put &drop choose nl + dup 'Name:_____ s:put d:name s:put nl + dup 'Address:__ s:put d:xt fetch n:put nl + dup 'Class:____ s:put d:class fetch dup n:put d:lookup-xt dup n:-zero? [ sp d:name s:put ] &drop choose nl + dup 'Source:___ s:put d:source fetch dup n:-zero? &s:put &drop choose nl + dup 'Stack:____ s:put d:stack fetch dup n:-zero? &s:put &drop choose nl + dup 'A._Stack:_ s:put d:astack fetch dup n:-zero? &s:put &drop choose nl + dup 'Float:____ s:put d:fstack fetch dup n:-zero? &s:put &drop choose nl + dup 'Descr:____ s:put d:descr fetch dup n:-zero? &s:put &drop choose nl drop ; :d:set-stack-comment (:ss-) @@ -28,13 +31,13 @@ comment format this introduces to add them inline. Add the stack comments for existing words: ~~~ -'ss- 'd:set-source d:set-stack-comment -'n-s 'n:to-string/reversed d:set-stack-comment -'s-s 's:truncate d:set-stack-comment +'ss- 'd:set-source d:set-stack-comment +'n-s 'n:to-string/reversed d:set-stack-comment +'s-s 's:truncate d:set-stack-comment 's-sf 's:oversize? d:set-stack-comment -'- 'err:notfound d:set-stack-comment -'a-a 'd:stack d:set-stack-comment -'n- 'io:core d:set-stack-comment +'- 'err:notfound d:set-stack-comment +'a-a 'd:stack d:set-stack-comment +'n- 'io:core d:set-stack-comment 'D:_-c__A:_-__F:_- '$ d:set-stack-comment 'D:_-s__A:_-__F:_- '' d:set-stack-comment diff --git a/ngaImage b/ngaImage index 850e645..c9c7d3c 100644 Binary files a/ngaImage and b/ngaImage differ diff --git a/tools/retro-extend.c b/tools/retro-extend.c index cfa0dca..8d8954f 100644 --- a/tools/retro-extend.c +++ b/tools/retro-extend.c @@ -36,7 +36,10 @@ #define D_OFFSET_SOURCE 3 #define D_OFFSET_HASH 4 #define D_OFFSET_STACK 5 -#define D_OFFSET_NAME 6 +#define D_OFFSET_RSTACK 6 +#define D_OFFSET_FSTACK 7 +#define D_OFFSET_DESCR 8 +#define D_OFFSET_NAME 9 /* These settings can be overridden at compile time. */ diff --git a/tools/retro-muri.c b/tools/retro-muri.c index a588d7d..2e106fc 100644 --- a/tools/retro-muri.c +++ b/tools/retro-muri.c @@ -24,7 +24,7 @@ #endif #define KiB * 1024 -#define MAX_NAMES 1024 +#define MAX_NAMES 4096 #define STRING_LEN 64 #ifndef IMAGE_SIZE diff --git a/vm/nga-c/image.c b/vm/nga-c/image.c index ef154c0..7a621b4 100644 --- a/vm/nga-c/image.c +++ b/vm/nga-c/image.c @@ -10,8 +10,8 @@ #define CELL_MAX LLONG_MAX - 1 #endif #endif -CELL ngaImageCells = 31962; -CELL ngaImage[] = { 1793,12065,31911,31961,202409,422,394,1333,1535,0,12113,0,10,1,10,2,10,3,10, +CELL ngaImageCells = 34721; +CELL ngaImage[] = { 1793,13735,34667,34720,202409,439,411,1601,2048,0,13789,0,10,1,10,2,10,3,10, 4,10,5,10,6,10,7,10,8,10,11,10,12,10,13,10,14,10,15,10, 16,10,17,10,18,10,19,10,20,10,21,10,22,10,23,10,24,10,25,68223234, 1,2575,85000450,1,656912,163,180,268505089,65,64,285281281,0,65,2063,10,101384453,0,9,10,68485378, @@ -20,677 +20,774 @@ CELL ngaImage[] = { 1793,12065,31911,31961,202409,422,394,1333,1535,0,12113,0,10 1,251790353,101777669,1,17565186,109,524545,113,66,167838467,-1,134287105,3,61,659457,3,459023,130,2049,58, 25,2049,130,1793,137,2049,137,117506307,0,130,0,524545,28,135,168820993,0,149,1642241,149,134283523, 13,135,1793,130,524545,2049,130,1793,130,16846593,149,163,180,1793,66,16846593,149,135,180,1793, - 66,7,10,659713,1,659713,2,659713,3,659713,4,659713,5,659713,6,1793,31023,17108737,3,2, - 524559,130,2049,130,2049,130,524545,0,130,524545,0,130,524545,0,130,2049,144,1048838,2,1642241, - 10,7,30474,8246457295145463473,167841793,221,11,17826049,0,221,2,15,25,524546,29199,134287105,222,29,2305,223, - 459023,231,2049,5044,134287361,222,226,659201,221,10,659969,7,2049,58,25,17694978,58,249,9,84152833, - 48,319750404,248,117507601,251,184618754,45,25,16974851,-1,168886532,1,134284289,1,264,134284289,0,251,660227,32, - 0,0,115,105,103,105,108,58,105,0,285278479,281,6,2576,524546,104,1641217,1,167838467,278, - 2049,293,2049,289,524545,281,241,17826050,280,0,2572,2563,2049,271,1793,156,459023,156,1793,319, - 17760513,168,3,194,8,251727617,3,2,2049,182,16,168820993,-1,149,2049,182,2575,2049,241,17563906, - 0,333,9,1793,156,285282049,3,2,134287105,149,330,524545,1793,130,16846593,3,0,130,8,659201, - 3,524545,28,135,17043201,3,13,2049,135,2049,130,268505092,149,1642241,149,656131,659201,3,524545,13, - 135,2049,130,459009,25,135,459009,57,135,459009,21,135,459009,23,135,1793,11426,10,524546,182, - 134284303,184,1807,1333,1642241,280,285282049,402,1,459012,397,117509889,221,397,134287105,402,241,16845825,0,410, - 394,1793,66,1793,424,17826050,402,299,8,117506305,403,413,66,2116,11340,11700,11400,13685,13104,12432, - 12402,9603,9801,11514,11413,11110,12528,11948,10302,13340,9700,13455,12753,10500,10670,12654,13320,11960,13908,10088, - 10605,11865,11025,0,2049,241,987393,1,1793,130,524546,500,2049,498,2049,498,17891588,2,500,8, - 17045505,-24,-16,17043736,-8,1118488,1793,130,17043202,1,169021201,2049,58,25,33883396,101450758,6404,459011,490,34668804, - 2,2049,487,524545,432,490,302056196,432,659969,1,114,101,116,114,111,46,109,117,114,105, - 0,0,15,174,509,193489870,17064,100,117,112,0,520,17,174,509,6385162522,17010,100,114,111, - 112,0,530,19,174,509,6385706560,20030,115,119,97,112,0,541,27,174,509,6385107969,16142,99, - 97,108,108,0,552,29,174,509,193490778,17107,101,113,63,0,563,31,174,509,6383171847,13437, - 45,101,113,63,0,573,33,174,509,193498500,17784,108,116,63,0,584,35,174,509,193493055, - 17412,103,116,63,0,594,37,174,509,210712273007,17127,102,101,116,99,104,0,604,39,174, - 509,210728224082,19991,115,116,111,114,101,0,616,41,174,509,177616,13362,43,0,628,43,174, - 509,177618,13400,45,0,636,45,174,509,177615,13342,42,0,644,47,174,509,6383252404,13515,47, - 109,111,100,0,652,49,174,509,193486360,15351,97,110,100,0,663,51,174,509,5863686,18339, - 111,114,0,673,53,174,509,193511454,20580,120,111,114,0,682,55,174,509,210727785923,19706,115, - 104,105,102,116,0,692,388,180,509,6385597157,18439,112,117,115,104,0,704,391,180,509, - 193502740,18403,112,111,112,0,715,385,180,509,5861552,13536,48,59,0,725,58,168,509,8246307614109670331, - 17146,102,101,116,99,104,45,110,101,120,116,0,734,61,168,509,8246931865698567806,20010,115,116, - 111,114,101,45,110,101,120,116,0,751,271,168,509,-4555094569267928757,19533,115,58,116,111,45, - 110,117,109,98,101,114,0,768,118,168,509,210726128775,19000,115,58,101,113,63,0,786, - 104,168,509,7572865151309012,19237,115,58,108,101,110,103,116,104,0,798,66,168,509,6953390994662,16303, - 99,104,111,111,115,101,0,813,76,174,509,5863476,17600,105,102,0,826,74,168,509, - 193429569,13457,45,105,102,0,835,310,180,509,229482595734751,0,115,105,103,105,108,58,40,0, - 845,149,156,509,7570887965854272,14253,67,111,109,112,105,108,101,114,0,859,3,156,509,6384141667, - 14360,72,101,97,112,0,874,130,168,509,177617,13382,44,0,885,144,168,509,5863748,18577, - 115,44,0,893,150,180,509,177632,13561,59,0,902,344,180,509,177664,14594,91,0,910, - 360,180,509,177666,14611,93,0,918,2,156,509,8244734546833303387,14271,68,105,99,116,105,111,110, - 97,114,121,0,926,181,168,509,6953375463185,16789,100,58,108,105,110,107,0,943,182,168, - 509,6385101839,16901,100,58,120,116,0,956,184,168,509,229461379705849,16643,100,58,99,108,97,115, - 115,0,967,192,168,509,6953375526308,16846,100,58,110,97,109,101,0,981,168,168,509,8246177435876103505, - 16384,99,108,97,115,115,58,119,111,114,100,0,994,180,168,509,-4577305721744236665,16348,99,108, - 97,115,115,58,109,97,99,114,111,0,1011,156,168,509,8246177435875405519,16323,99,108,97,115, - 115,58,100,97,116,97,0,1029,194,168,509,-3503194823018915134,16623,100,58,97,100,100,45,104, - 101,97,100,101,114,0,1046,311,180,509,229482595734746,19745,115,105,103,105,108,58,35,0, - 1065,317,180,509,229482595734769,19839,115,105,103,105,108,58,58,0,1079,336,180,509,229482595734749,19783, - 115,105,103,105,108,58,38,0,1093,315,180,509,229482595734747,19764,115,105,103,105,108,58, - 36,0,1107,375,180,509,6953974492262,18517,114,101,112,101,97,116,0,1121,377,180,509,210706394789, - 15316,97,103,97,105,110,0,1134,422,168,509,249892712402858498,17674,105,110,116,101,114,112,114, - 101,116,0,1146,241,168,509,7572225886563901,16808,100,58,108,111,111,107,117,112,0,1162,174, - 168,509,399738814153734542,16366,99,108,97,115,115,58,112,114,105,109,105,116,105,118,101,0, - 1177,4,156,509,229445000025131,14576,86,101,114,115,105,111,110,0,1199,469,168,509,177678,17582, - 105,0,1213,130,168,509,177673,16588,100,0,1221,463,168,509,177687,18458,114,0,1229,248, - 156,509,6383922272,14235,66,97,115,101,0,1237,92,168,509,6385574852,18381,112,97,99,107,0, - 1248,78,168,509,6954102567431,20212,117,110,112,97,99,107,0,1259,186,168,509,7572226160734292,16882,100, - 58,115,111,117,114,99,101,0,1272,188,168,509,6953375310887,16698,100,58,104,97,115,104, - 0,1287,190,168,509,229461398967545,13268,100,58,115,116,97,99,107,0,1300,394,168,509,-3366153855364863819, - 13266,101,114,114,58,110,111,116,102,111,117,110,100,0,105,109,97,103,101,58, - 115,97,118,101,0,103,101,0,98,108,101,0,46,114,101,116,114,111,0,0, - 111,0,95,102,111,117,110,100,0,101,116,114,111,0,46,49,47,83,79,67, - 75,69,84,83,46,109,100,0,0,0,0,0,0,0,0,0,0,0,0,0, + 66,7,10,659713,1,659713,2,659713,3,659713,4,659713,5,659713,6,659713,7,659713,8,659713, + 9,45,0,1793,33707,17108737,3,2,524559,130,2049,130,2049,130,524545,0,130,524545,0,130, + 524545,0,130,524545,200,130,524545,200,130,524545,0,130,2049,144,1048838,2,1642241,10,7,33116, + 8246457295145463473,167841793,238,11,17826049,0,238,2,15,25,524546,31772,134287105,239,29,2305,240,459023,248,2049, + 5994,134287361,239,243,659201,238,10,659969,7,2049,58,25,17694978,58,266,9,84152833,48,319750404,265, + 117507601,268,184618754,45,25,16974851,-1,168886532,1,134284289,1,281,134284289,0,268,660227,32,0,0,115, + 105,103,105,108,58,105,0,285278479,298,6,2576,524546,104,1641217,1,167838467,295,2049,310,2049, + 306,524545,298,258,17826050,297,0,2572,2563,2049,288,1793,156,459023,156,1793,336,17760513,168,3, + 202,8,251727617,3,2,2049,182,16,168820993,-1,149,2049,182,2575,2049,258,17563906,0,350,9, + 1793,156,285282049,3,2,134287105,149,347,524545,1793,130,16846593,3,0,130,8,659201,3,524545,28, + 135,17043201,3,13,2049,135,2049,130,268505092,149,1642241,149,656131,659201,3,524545,13,135,2049,130, + 459009,25,135,459009,57,135,459009,21,135,459009,23,135,1793,13036,10,524546,182,134284303,184,1807, + 1601,1642241,297,285282049,419,1,459012,414,117509889,238,414,134287105,419,258,16845825,0,427,411,1793,66, + 1793,441,17826050,419,316,8,117506305,420,430,66,2116,11340,11700,11400,13685,13104,12432,12402,9603,9801, + 11514,11413,11110,12528,11948,10302,13340,9700,13455,12753,10500,10670,12654,13320,11960,13908,10088,10605,11865,11025, + 0,2049,258,987393,1,1793,130,524546,517,2049,515,2049,515,17891588,2,517,8,17045505,-24,-16, + 17043736,-8,1118488,1793,130,17043202,1,169021201,2049,58,25,33883396,101450758,6404,459011,507,34668804,2,2049,504, + 524545,449,507,302056196,449,659969,1,114,101,116,114,111,46,109,117,114,105,0,0,15, + 174,526,193489870,18950,200,200,0,100,117,112,0,537,17,174,526,6385162522,18896,200,200,0, + 100,114,111,112,0,550,19,174,526,6385706560,21916,200,200,0,115,119,97,112,0,564, + 27,174,526,6385107969,18028,200,200,0,99,97,108,108,0,578,29,174,526,193490778,18993,200, + 200,0,101,113,63,0,592,31,174,526,6383171847,15323,200,200,0,45,101,113,63,0, + 605,33,174,526,193498500,19670,200,200,0,108,116,63,0,619,35,174,526,193493055,19298,200, + 200,0,103,116,63,0,632,37,174,526,210712273007,19013,200,200,0,102,101,116,99,104, + 0,645,39,174,526,210728224082,21877,200,200,0,115,116,111,114,101,0,660,41,174,526, + 177616,15248,200,200,0,43,0,675,43,174,526,177618,15286,200,200,0,45,0,686,45, + 174,526,177615,15228,200,200,0,42,0,697,47,174,526,6383252404,15401,200,200,0,47,109, + 111,100,0,708,49,174,526,193486360,17237,200,200,0,97,110,100,0,722,51,174,526, + 5863686,20225,200,200,0,111,114,0,735,53,174,526,193511454,22466,200,200,0,120,111,114, + 0,747,55,174,526,210727785923,21592,200,200,0,115,104,105,102,116,0,760,405,180,526, + 6385597157,20325,200,200,0,112,117,115,104,0,775,408,180,526,193502740,20289,200,200,0,112, + 111,112,0,789,402,180,526,5861552,15422,200,200,0,48,59,0,802,58,168,526,8246307614109670331, + 19032,200,200,0,102,101,116,99,104,45,110,101,120,116,0,814,61,168,526,8246931865698567806, + 21896,200,200,0,115,116,111,114,101,45,110,101,120,116,0,834,288,168,526,-4555094569267928757, + 21419,200,200,0,115,58,116,111,45,110,117,109,98,101,114,0,854,118,168,526, + 210726128775,20886,200,200,0,115,58,101,113,63,0,875,104,168,526,7572865151309012,21123,200,200,0, + 115,58,108,101,110,103,116,104,0,890,66,168,526,6953390994662,18189,200,200,0,99,104, + 111,111,115,101,0,908,76,174,526,5863476,19486,200,200,0,105,102,0,924,74,168, + 526,193429569,15343,200,200,0,45,105,102,0,936,327,180,526,229482595734751,0,200,200,0,115, + 105,103,105,108,58,40,0,949,149,156,526,7570887965854272,16139,200,200,0,67,111,109,112, + 105,108,101,114,0,966,3,156,526,6384141667,16246,200,200,0,72,101,97,112,0,984, + 130,168,526,177617,15268,200,200,0,44,0,998,144,168,526,5863748,20463,200,200,0,115, + 44,0,1009,150,180,526,177632,15447,200,200,0,59,0,1021,361,180,526,177664,16480,200, + 200,0,91,0,1032,377,180,526,177666,16497,200,200,0,93,0,1043,2,156,526,8244734546833303387, + 16157,200,200,0,68,105,99,116,105,111,110,97,114,121,0,1054,181,168,526,6953375463185, + 18675,200,200,0,100,58,108,105,110,107,0,1074,182,168,526,6385101839,18787,200,200,0, + 100,58,120,116,0,1090,184,168,526,229461379705849,18529,200,200,0,100,58,99,108,97,115, + 115,0,1104,198,168,526,6953375526308,18732,200,200,0,100,58,110,97,109,101,0,1121,168, + 168,526,8246177435876103505,18270,200,200,0,99,108,97,115,115,58,119,111,114,100,0,1137,180, + 168,526,-4577305721744236665,18234,200,200,0,99,108,97,115,115,58,109,97,99,114,111,0,1157, + 156,168,526,8246177435875405519,18209,200,200,0,99,108,97,115,115,58,100,97,116,97,0,1178, + 202,168,526,-3503194823018915134,18509,200,200,0,100,58,97,100,100,45,104,101,97,100,101,114, + 0,1198,328,180,526,229482595734746,21631,200,200,0,115,105,103,105,108,58,35,0,1220,334, + 180,526,229482595734769,21725,200,200,0,115,105,103,105,108,58,58,0,1237,353,180,526,229482595734749, + 21669,200,200,0,115,105,103,105,108,58,38,0,1254,332,180,526,229482595734747,21650,200,200, + 0,115,105,103,105,108,58,36,0,1271,392,180,526,6953974492262,20403,200,200,0,114,101, + 112,101,97,116,0,1288,394,180,526,210706394789,17202,200,200,0,97,103,97,105,110,0, + 1304,439,168,526,249892712402858498,19560,200,200,0,105,110,116,101,114,112,114,101,116,0,1319, + 258,168,526,7572225886563901,18694,200,200,0,100,58,108,111,111,107,117,112,0,1338,174,168, + 526,399738814153734542,18252,200,200,0,99,108,97,115,115,58,112,114,105,109,105,116,105,118, + 101,0,1356,4,156,526,229445000025131,16462,200,200,0,86,101,114,115,105,111,110,0,1381, + 486,168,526,177678,19468,200,200,0,105,0,1398,130,168,526,177673,18474,200,200,0,100, + 0,1409,480,168,526,177687,20344,200,200,0,114,0,1420,265,156,526,6383922272,16121,200,200, + 0,66,97,115,101,0,1431,92,168,526,6385574852,20267,200,200,0,112,97,99,107,0, + 1445,78,168,526,6954102567431,22098,200,200,0,117,110,112,97,99,107,0,1459,186,168,526, + 7572226160734292,18768,200,200,0,100,58,115,111,117,114,99,101,0,1475,188,168,526,6953375310887,18584, + 200,200,0,100,58,104,97,115,104,0,1493,190,168,526,229461398967545,15154,200,200,0,100, + 58,115,116,97,99,107,0,1509,192,168,526,7572225460986458,0,200,200,0,100,58,97,115, + 116,97,99,107,0,1526,194,168,526,7572225656663423,0,200,200,0,100,58,102,115,116,97, + 99,107,0,1544,196,168,526,229461380659284,0,200,200,0,100,58,100,101,115,99,114,0, + 1562,411,168,526,-3366153855364863819,15152,200,200,0,101,114,114,58,110,111,116,102,111,117,110, + 100,0,105,109,97,103,101,58,115,97,118,101,0,103,101,0,98,108,101,0, + 46,114,101,116,114,111,0,0,111,0,95,102,111,117,110,100,0,101,116,114, + 111,0,46,49,47,83,79,67,75,69,84,83,46,109,100,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,1546,168, - 20738,193454822,14306,69,79,77,0,1,-3,15,10,1536,1562,168,20738,210709897370,16954,100,101,112, - 116,104,0,1,-1,15,10,1550,1579,168,20738,6953375454647,16717,100,58,108,97,115,116,0, - 1,2,15,10,1566,1599,168,20738,249883453713703409,16771,100,58,108,97,115,116,46,120,116,0, - 2049,1579,2049,182,15,10,1583,1624,168,20738,-3502687787217310053,16735,100,58,108,97,115,116,46,99, - 108,97,115,115,0,2049,1579,2049,184,15,10,1605,1648,168,20738,-4578080011420638202,16753,100,58,108, - 97,115,116,46,110,97,109,101,0,2049,1579,2049,192,10,1630,1667,168,20738,229481143079314,18476, - 114,101,99,108,97,115,115,0,2049,1579,2049,184,16,10,1653,1689,168,20738,249892660727267252,17638, - 105,109,109,101,100,105,97,116,101,0,1,180,2049,1667,10,1673,1705,168,20738,6385144159, - 16920,100,97,116,97,0,1,156,2049,1667,10,1694,1726,168,20738,249902713833354782,18422,112,114,105, - 109,105,116,105,118,101,0,1,174,2049,1667,10,1710,1742,180,20738,6385302998,17565,104,111, - 111,107,0,1,1793,2049,130,1,3,15,1,1,17,2049,130,10,1731,1770,168,20738, - 7572920930896175,19687,115,101,116,45,104,111,111,107,0,1,1,17,16,10,1755,1788,168,20738, - 6954102295577,20194,117,110,104,111,111,107,0,1,1,17,2,1,1,17,4,16,10,1775, - 1806,180,20738,177613,13308,40,0,10,1798,1815,180,20738,177614,13325,41,0,10,1807,1834,168, - 20738,-4577149749211730287,16456,99,111,109,112,105,108,101,58,108,105,116,0,1,1,2049,130,2049, - 130,10,1816,1860,168,20738,-3471989134310745468,16438,99,111,109,112,105,108,101,58,106,117,109,112, - 0,1,1793,2049,130,2049,130,10,1841,1886,168,20738,-3471989134311018844,16420,99,111,109,112,105,108, - 101,58,99,97,108,108,0,1,2049,2049,130,2049,130,10,1867,1911,168,20738,-4577149749211723885,16474, - 99,111,109,112,105,108,101,58,114,101,116,0,1,10,2049,130,10,1893,1933,168, - 20738,8246182162316307558,16491,99,111,109,112,105,108,105,110,103,63,0,1,149,15,10,1916,1951, - 180,20738,229482595734807,19912,115,105,103,105,108,58,96,0,2049,271,2049,130,10,1937,1970,180, - 20738,229482595734803,19876,115,105,103,105,108,58,92,0,2049,469,10,1956,1987,180,20738,229482595734805,19894, - 115,105,103,105,108,58,94,0,2049,463,10,1973,2001,168,20738,6385292201,17530,104,101,114, - 101,0,1,3,15,10,1990,2019,180,20738,229482595734775,19857,115,105,103,105,108,58,64,0, - 2049,241,2049,182,15,2049,1933,1793,2035,1,3841,2049,130,2049,130,10,1,2028,1793,2041, - 15,10,1,2039,2049,66,10,2005,2060,180,20738,229482595734744,19726,115,105,103,105,108,58,33, - 0,2049,241,2049,182,15,2049,1933,1793,2076,1,4097,2049,130,2049,130,10,1,2069,1793, - 2082,16,10,1,2080,2049,66,10,2046,2102,168,20738,7572225537532823,16662,100,58,99,114,101,97, - 116,101,0,1793,2104,1,156,1,0,2049,194,2049,2001,2049,1579,2049,182,16,10,2087, - 2130,168,20738,210731100041,20442,118,97,114,45,110,0,2049,2102,2049,130,10,2118,2145,168,20738, - 193508814,20424,118,97,114,0,134284289,0,2130,10,2135,2161,168,20738,210709068620,16529,99,111,110,115, - 116,0,2049,2102,2049,1579,2049,182,16,10,2149,2180,174,20738,6385740380,20172,116,117,99,107, - 0,100926722,10,2169,2193,174,20738,6385561857,18359,111,118,101,114,0,67502597,10,2182,2205,174,20738, - 193500364,18266,110,105,112,0,772,10,2195,2223,174,20738,249885844724841747,17028,100,114,111,112,45,112, - 97,105,114,0,771,10,2207,2236,174,20738,6383817805,13578,63,100,117,112,0,6402,10,2225, - 2253,168,20738,7572302161469511,17084,100,117,112,45,112,97,105,114,0,67502597,67502597,10,2238,2266,168, - 20738,193489474,16972,100,105,112,0,525572,6,10,2256,2279,168,20738,193505809,19948,115,105,112,0, - 67502597,1,27,2049,2266,10,2269,2294,168,20738,5863248,15485,98,105,0,1,2279,2049,2266,8, - 10,2285,2310,168,20738,193487226,15506,98,105,42,0,1,2266,2049,2266,8,10,2300,2326,168, - 20738,193487248,15528,98,105,64,0,2,2049,2310,10,2316,2340,168,20738,193507188,20104,116,114,105, - 0,1793,2349,1,2279,2049,2266,2049,2279,10,1,2342,2049,2266,8,10,2330,2366,168,20738, - 6385737246,20126,116,114,105,42,0,1793,2383,1793,2376,4,1,2266,2049,2266,10,1,2370,2049, - 2266,2049,2266,10,1,2368,2049,2266,8,10,2355,2400,168,20738,6385737268,20150,116,114,105,64, - 0,2,2,2049,2366,10,2389,2417,168,20738,210732529790,20558,119,104,105,108,101,0,1793,2426, - 525570,1639430,3,1,2419,7,10,1,2419,8,3,10,2405,2443,168,20738,210730385457,20234,117,110, - 116,105,108,0,1793,2454,525570,385942534,-1,25,3,1,2445,7,10,1,2445,8,3,10, - 2431,2473,168,20738,229466054377278,17376,102,111,114,101,118,101,114,0,1793,2477,8,10,1,2475, - 2049,2279,1,2473,7,10,2459,2497,168,20738,210729012103,20085,116,105,109,101,115,0,1793,2509, - 4,25,33886721,1,2053,1542,1,2500,7,10,1,2499,8,3,10,2485,2528,180,20738,229482595734835, - 19930,115,105,103,105,108,58,124,0,2049,241,1793,2536,2049,182,15,10,1,2532,1793, - 2544,2049,184,15,10,1,2540,2049,2294,2049,1933,1793,2559,1,156,2049,2266,2049,1886,10, - 1,2552,1,27,2049,66,10,2514,2577,168,20738,6384551781,14522,84,82,85,69,0,1,-1, - 10,2566,2592,168,20738,210672985680,14324,70,65,76,83,69,0,1,0,10,2580,2606,168,20738, - 6385108193,16217,99,97,115,101,0,1793,2611,67502597,11,10,1,2608,2049,2266,4,1793,2623,772, - 8,2049,2577,10,1,2618,1793,2631,3,2049,2592,10,1,2627,2049,66,25,6,3,3, - 10,2595,2653,168,20738,6953962162094,18743,115,58,99,97,115,101,0,1793,2659,67502597,2049,118,10, - 1,2655,2049,2266,4,1793,2671,772,8,2049,2577,10,1,2666,1793,2679,3,2049,2592,10, - 1,2675,2049,66,25,6,3,3,10,2640,2698,168,20738,193500566,18303,110,111,116,0,1, - -1,23,10,2688,2714,168,20738,210719911674,17804,108,116,101,113,63,0,2049,2253,101516555,22,10, - 2702,2731,168,20738,210713982069,17432,103,116,101,113,63,0,4,2049,2714,10,2719,2747,168,20738, - 210720171475,17863,110,58,77,65,88,0,1,-5,15,10,2735,2763,168,20738,210720171729,17881,110,58, - 77,73,78,0,1,-4,15,10,2751,2781,168,20738,229474321428492,18247,110,58,122,101,114,111, - 63,0,1,0,11,10,2767,2800,168,20738,7572649618157049,17844,110,58,45,122,101,114,111,63, - 0,1,0,12,10,2785,2822,168,20738,-4562761254435316065,18076,110,58,110,101,103,97,116,105,118, - 101,63,0,1,0,13,10,2804,2844,168,20738,-4562757999622951041,18114,110,58,112,111,115,105,116, - 105,118,101,63,0,1,-1,14,10,2826,2875,168,20738,-1420858746182909718,18209,110,58,115,116,114, - 105,99,116,108,121,45,112,111,115,105,116,105,118,101,63,0,1,0,14,10, - 2848,2893,168,20738,229474297120890,17958,110,58,101,118,101,110,63,0,1,2,20,3,2049,2781, - 10,2879,2913,168,20738,6953766919107,18095,110,58,111,100,100,63,0,2049,2893,2049,2698,10,2900, - 2928,168,20738,193494767,17619,105,102,59,0,67502597,1,76,2049,2266,25,6,771,10,2918,2948, - 168,20738,6383175836,13476,45,105,102,59,0,67502597,1,74,2049,2266,2049,2698,25,6,771,10, - 2937,2969,174,20738,193504922,18554,114,111,116,0,67503109,10,2959,2979,174,20738,177620,13495,47,0, - 197652,10,2971,2991,174,20738,193499461,17824,109,111,100,0,788,10,2981,3005,168,20738,210720211139,18133, - 110,58,112,111,119,0,1,1,4,1793,3013,67502597,19,10,1,3010,2049,2497,772,10, - 2993,3034,168,20738,7572652137106817,18057,110,58,110,101,103,97,116,101,0,1,-1,19,10,3019, - 3053,168,20738,7572652347517886,18190,110,58,115,113,117,97,114,101,0,4866,10,3038,3068,168,20738, - 6953767077527,18171,110,58,115,113,114,116,0,1,1,1793,3086,2049,2253,197652,67502597,18,1,2, - 197652,25,17,1,3072,7,10,1,3072,8,772,10,3055,3103,168,20738,210720207665,18037,110,58, - 109,105,110,0,2049,2253,13,1793,3110,3,10,1,3108,1793,3116,772,10,1,3114,2049, - 66,10,3091,3133,168,20738,210720207411,18017,110,58,109,97,120,0,2049,2253,14,1793,3140,3, - 10,1,3138,1793,3146,772,10,1,3144,2049,66,10,3121,3163,168,20738,210720194371,17899,110,58, - 97,98,115,0,2,2049,2822,1,3034,9,10,3151,3184,168,20738,229474304963756,17996,110,58,108, - 105,109,105,116,0,4,5,2049,3103,6,2049,3133,10,3170,3204,168,20738,210720203463,17977,110, - 58,105,110,99,0,659713,1,10,3192,3219,168,20738,210720197721,17939,110,58,100,101,99,0, - 659969,1,10,3207,3239,168,20738,8246617666422322998,17918,110,58,98,101,116,119,101,101,110,63,0, - 67503109,1793,3247,67503109,67503109,2049,3184,10,1,3242,2049,2279,11,10,3222,3269,168,20738,249861296566813883,14486, - 83,99,111,112,101,76,105,115,116,0,31538,31669,10,3253,3281,168,20738,5864091,20617,123, - 123,0,2049,1579,2,1,3269,2049,61,16,10,3272,3309,168,20738,-6305314778776785742,13420,45,45,45, - 114,101,118,101,97,108,45,45,45,0,2049,1579,1,3269,2049,3204,16,10,3290,3326, - 168,20738,5864159,20652,125,125,0,1,3269,2049,58,4,15,11,1793,3340,3841,3269,4097,2, - 10,1,3335,1793,3366,3841,3269,1793,3361,1,2,983567,1,3269,2049,3204,1641487,3,1,3350, - 7,10,1,3348,8,16,10,1,3344,2049,66,10,3317,3382,168,0,0,0,66,121, - 116,101,0,10,3371,3399,168,0,0,0,98,121,116,101,45,109,97,115,107,0, - 1,255,4,1,8,19,2,1793,3413,2049,3034,24,21,10,1,3408,2049,2266,24,10, - 3383,3433,168,0,0,0,114,101,112,108,97,99,101,0,1,0,1793,3462,1793,3457, - 1793,3452,1793,3447,3,3841,3382,10,1,3443,2049,2266,10,1,3441,2049,2266,10,1,3439, - 2049,2266,10,1,3437,2049,2606,1,1,1793,3488,1793,3483,1793,3478,3,3841,3382,10,1, - 3474,2049,2266,10,1,3472,2049,2266,10,1,3470,2049,2606,1,2,1793,3507,1793,3502,3, - 3841,3382,10,1,3498,2049,2266,10,1,3496,2049,2606,1,3,1793,3519,3,3841,3382,10, - 1,3515,2049,2606,3,10,3317,3549,168,20738,-6972911891006832072,15449,98,58,116,111,45,98,121,116, - 101,45,97,100,100,114,101,115,115,0,4865,4,10,3525,3566,168,20738,229458800096267,15371,98, - 58,102,101,116,99,104,0,267265,4,134288385,4,2969,266001,2049,3399,10,3552,3589,168,20738, - 229458816047342,15410,98,58,115,116,111,114,101,0,1048836,3382,267265,4,1793,3598,134287106,78,10,1, - 3595,2049,2266,2049,3433,2049,92,4,16,10,3575,3623,168,20738,229466548904081,17452,104,58,102,101, - 116,99,104,0,1,3566,1793,3635,2049,3204,2049,3566,1,-8,24,10,1,3627,2049,2294, - 22,10,3609,3655,168,20738,229466564855156,17491,104,58,115,116,111,114,101,0,2049,2253,102039813,255, - 2049,3589,2049,3204,18350341,8,255,117507605,3589,10,3641,3683,168,20738,229485920923616,20480,119,58,102,101, - 116,99,104,0,1,4,197652,15,10,3669,3702,168,20738,229485936874691,20519,119,58,115,116,111, - 114,101,0,1,4,197652,16,10,3688,3726,168,20738,-2542660583859062324,20499,119,58,102,101,116,99, - 104,45,110,101,120,116,0,2,1,4,17,4,2049,3683,10,3707,3753,168,20738,-3300792181564964579, - 17471,104,58,102,101,116,99,104,45,110,101,120,116,0,2,1,2,17,4,2049, - 3623,10,3734,3780,168,20738,-3604044820647325481,15390,98,58,102,101,116,99,104,45,110,101,120,116, - 0,2,1,1,17,4,2049,3566,10,3761,3807,168,20738,-2542036332270164849,20538,119,58,115,116,111, - 114,101,45,110,101,120,116,0,2,1,4,17,1,3702,2049,2266,10,3788,3835,168, - 20738,-3300167929976067104,17510,104,58,115,116,111,114,101,45,110,101,120,116,0,2,1,2,17, - 1,3655,2049,2266,10,3816,3863,168,20738,-3603420569058428006,15429,98,58,115,116,111,114,101,45,110, - 101,120,116,0,2,1,1,17,1,3589,2049,2266,10,3844,3887,168,20738,7572992899446007,20311,118, - 58,105,110,99,45,98,121,0,286196994,659462,10,3872,3905,168,20738,7572992693095753,20274,118,58,100, - 101,99,45,98,121,0,68093186,168822290,10,3890,3920,168,20738,210729690831,20293,118,58,105,110,99, - 0,1,1,4,2049,3887,10,3908,3938,168,20738,210729685089,20256,118,58,100,101,99,0,1, - 1,4,2049,3905,10,3926,3958,168,20738,229484636707508,20330,118,58,108,105,109,105,116,0,251790597, - 1542,2049,3184,4100,10,3944,3975,168,20738,6385748402,20368,118,58,111,110,0,2049,2577,4100,10, - 3964,3991,168,20738,210729697104,20350,118,58,111,102,102,0,2049,2592,4100,10,3979,4007,168,20738, - 210706586657,15333,97,108,108,111,116,0,1,3,2049,3887,10,3995,4029,168,20738,8246989571153063777,20386,118, - 58,112,114,101,115,101,114,118,101,0,84869636,1,27,2049,2266,1049606,10,4012,4051,168, - 20738,7572993371535704,20405,118,58,117,112,100,97,116,101,0,4,1793,4058,15,4,8,10,1, - 4054,2049,2279,16,10,4036,4075,168,20738,6385123360,16548,99,111,112,121,0,1793,4084,285278725,1, - 33951492,268767489,1,6,10,1,4077,2049,2497,771,10,4064,4102,156,0,0,0,115,116,97, - 114,116,0,0,10,4090,4114,156,0,0,0,101,110,100,0,0,10,4104,4132,168, - 0,0,0,116,101,114,109,105,110,97,116,101,0,1,0,3841,4114,16,10,4064, - 4157,168,20738,-3513680875729732409,15691,98,117,102,102,101,114,58,115,116,97,114,116,0,3841,4102, - 10,4138,4177,168,20738,8246143877888709904,15601,98,117,102,102,101,114,58,101,110,100,0,3841,4114, - 10,4160,4197,168,20738,8246143877888705218,15566,98,117,102,102,101,114,58,97,100,100,0,3841,4114, - 16,1,4114,2049,3920,2049,4132,10,4180,4224,168,20738,8246143877888711801,15619,98,117,102,102,101,114, - 58,103,101,116,0,1,4114,2049,3938,3841,4114,15,2049,4132,10,4207,4253,168,20738,-3513680875746570456, - 15584,98,117,102,102,101,114,58,101,109,112,116,121,0,3841,4102,4097,4114,2049,4132, - 10,4234,4278,168,20738,-4578413135315348908,15673,98,117,102,102,101,114,58,115,105,122,101,0,3841, - 4114,3841,4102,18,10,4260,4301,168,20738,8246143877888724869,15655,98,117,102,102,101,114,58,115,101, - 116,0,4097,4102,2049,4253,10,4284,4328,168,20738,-3186446687793719003,15637,98,117,102,102,101,114,58, - 112,114,101,115,101,114,118,101,0,3841,4102,3841,4114,1793,4341,1,27,2049,2266,4097, - 4102,10,1,4334,2049,2266,4097,4114,10,4306,4366,156,20738,-4600587576916820603,14558,84,101,109,112,83, - 116,114,105,110,103,115,0,32,4348,4387,156,20738,7474516786580364824,14540,84,101,109,112,83,116, - 114,105,110,103,77,97,120,0,512,4367,4402,168,20738,229440420829967,14468,83,84,82,73,78, - 71,83,0,2049,1546,3841,4366,3841,4387,19,18,10,4388,4429,168,0,-4555101230505660792,13261,115,58, - 111,118,101,114,115,105,122,101,63,0,2049,104,3841,4387,2049,3219,14,10,4411,4454, - 168,0,8246850507793776056,13257,115,58,116,114,117,110,99,97,116,101,0,2,2049,4429,1793,4467, - 1,0,67502597,3841,4387,17,16,10,1,4459,9,10,4437,4485,156,0,0,0,67,117, - 114,114,101,110,116,0,19,10,4471,4503,168,0,0,0,115,58,112,111,105,110, - 116,101,114,0,3841,4485,3841,4387,19,2049,4402,17,10,4487,4525,168,0,0,0,115, - 58,110,101,120,116,0,1,4485,2049,3920,3841,4485,3841,4366,11,1793,4541,1,0,4097, - 4485,10,1,4536,9,10,4437,4558,168,20738,6953962777192,19495,115,58,116,101,109,112,0,2049, - 4454,2,2049,104,2049,3204,2049,4503,4,2049,4075,2049,4503,2049,4525,10,4545,4589,168,20738, - 229480754149537,18962,115,58,101,109,112,116,121,0,2049,4503,2049,4525,1,0,67502597,16,10,4575, - 4611,168,20738,6953962747657,19395,115,58,115,107,105,112,0,6,1793,4619,68223234,1,786703,0,10, - 1,4614,2049,2417,2049,3219,5,10,4598,4640,168,20738,6953962453495,19198,115,58,107,101,101,112, - 0,2049,1933,1793,4649,1,4611,2049,1886,10,1,4644,9,2049,2001,1,144,2049,2266,2049, - 156,10,4627,4675,180,0,229482595734750,0,115,105,103,105,108,58,39,0,2049,1933,1,4640, - 1,4558,2049,66,10,4661,4698,168,20738,229480755051740,19040,115,58,102,101,116,99,104,0,17, - 15,10,4684,4715,168,20738,229480771002815,19454,115,58,115,116,111,114,101,0,17,16,10,4701, - 4731,168,20738,6953962169596,18772,115,58,99,104,111,112,0,2049,4558,2,2049,104,67502597,17,2049, - 3219,1,0,4,16,10,4718,4761,168,20738,249904557751418990,19356,115,58,114,101,118,101,114,115, - 101,0,1793,4803,2,2049,4558,2049,4301,1,104,1793,4779,2,2049,104,17,2049,3219,10, - 1,4772,2049,2294,4,1793,4793,2,15,2049,4197,2049,3219,10,1,4786,2049,2497,3,2049, - 4157,2049,4558,10,1,4763,2049,4328,10,4745,4824,168,20738,249904555657463488,19276,115,58,112,114,101, - 112,101,110,100,0,2049,4558,1793,4867,2049,2253,1,104,2049,2326,17,3841,4387,14,1, - 2223,1793,4862,2,2049,104,17,1793,4854,2,2049,104,2049,3204,10,1,4848,2049,2266,4, - 2049,4075,10,1,4842,2049,66,10,1,4828,2049,2279,10,4808,4887,168,20738,7572864733934314,18703,115, - 58,97,112,112,101,110,100,0,4,2049,4824,10,4872,4908,168,20738,8246849907066750743,19080,115,58, - 102,111,114,45,101,97,99,104,0,1793,4923,67502597,6415,3,67502597,67502597,251987205,2054,101777670,1, - 1,4910,7,10,1,4910,8,771,10,4891,4947,168,20738,-2744677796467205929,19158,115,58,105,110,100, - 101,120,47,99,104,97,114,0,4,1793,4970,2049,58,25,4,1793,4959,67502597,12,10, - 1,4956,2049,2266,4,25,3,1,4950,7,10,1,4950,1793,4979,18,2049,3219,772,10, - 1,4974,1793,4988,2049,104,67502597,11,10,1,4983,2049,2340,1793,4998,3,1,-1,10,1, - 4994,9,10,4928,5025,168,20738,-2157201767973730595,18810,115,58,99,111,110,116,97,105,110,115,47, - 99,104,97,114,63,0,2049,4947,1,-1,12,10,5002,5044,168,20738,6953962341782,19139,115,58, - 104,97,115,104,0,1,5381,4,1793,5052,286458116,33,10,1,5049,2049,4908,10,5031,5067, - 156,0,0,0,83,116,114,0,0,5057,5082,168,0,0,0,101,120,116,114,97, - 99,116,0,2049,2253,3841,5067,4,2049,4075,3841,5067,67502597,17,1,0,4,16,10,5068, - 5110,168,0,0,0,99,104,101,99,107,0,1,5082,2049,2266,1793,5121,1,3204,2049, - 2266,10,1,5116,2049,2266,3841,5067,2049,5044,67502597,11,10,5098,5147,168,0,0,0,108, - 111,99,97,116,105,111,110,0,67503109,67503109,1793,5180,1793,5175,4,1793,5161,67502597,2049,2781, - 21,10,1,5156,2049,2266,4,1793,5171,772,2,10,1,5168,9,10,1,5153,2049,2266, - 10,1,5151,2049,2266,10,5132,5197,168,0,0,0,115,101,116,117,112,0,2049,4589, - 4097,5067,1,0,67503109,67503109,1,104,1,5044,2049,2294,1793,5217,67502597,2049,104,10,1,5213, - 2049,2266,4,10,5031,5244,168,20738,-581580411198892688,19178,115,58,105,110,100,101,120,47,115,116, - 114,105,110,103,0,67502597,1793,5263,2049,5197,1793,5256,2049,5110,2049,5147,10,1,5251,2049, - 2497,771,3,10,1,5247,2049,2266,18,1,2,18,1,-1,2049,3133,10,5223,5286,156, - 0,0,0,83,114,99,0,0,5276,5297,156,0,0,0,84,97,114,0,0,5287, - 5308,156,0,0,0,80,97,100,0,0,5298,5317,156,0,0,0,73,0,0,5309, - 5326,156,0,0,0,70,0,0,5318,5336,156,0,0,0,65,116,0,0,5327,5353, - 168,0,0,0,116,101,114,109,105,110,97,116,101,0,1,0,3841,5308,3841,5297, - 2049,104,17,16,10,5337,5378,168,0,0,0,101,120,116,114,97,99,116,0,3841, - 5286,3841,5317,17,3841,5308,3841,5297,2049,104,2049,4075,10,5364,5406,168,0,0,0,99, - 111,109,112,97,114,101,0,3841,5308,3841,5297,2049,118,3841,5326,22,4097,5326,3841,5326, - 1793,5426,3841,5317,4097,5336,10,1,5421,2049,74,10,5392,5442,168,0,0,0,110,101, - 120,116,0,1,5317,2049,3920,10,5223,5472,168,20738,-6456227941126558634,18830,115,58,99,111,110,116, - 97,105,110,115,47,115,116,114,105,110,103,63,0,4097,5297,4097,5286,2049,4589,4097, - 5308,1,0,4097,5317,1,0,4097,5326,3841,5286,2049,104,1793,5503,2049,5378,2049,5353,2049, - 5406,2049,5442,10,1,5494,2049,2497,3841,5326,10,5447,5525,168,20738,7572864921182136,19060,115,58,102, - 105,108,116,101,114,0,67502597,2049,4429,1793,5535,1,4454,2049,2266,10,1,5530,9,1793, - 5566,2049,4589,2049,4301,4,1793,5558,2049,2253,4,8,1,4197,1,17,2049,66,10,1, - 5547,2049,4908,3,2049,4157,10,1,5540,2049,4328,10,5510,5583,168,20738,210726137008,19256,115,58, - 109,97,112,0,1793,5605,2049,4589,2049,4301,4,1793,5597,67502597,8,2049,4197,10,1,5592, - 2049,4908,3,2049,4157,10,1,5585,2049,4328,10,5571,5625,168,20738,7572865443813333,19474,115,58,115, - 117,98,115,116,114,0,1793,5631,17,2049,4589,10,1,5627,2049,2266,1793,5643,67502597,1, - 4075,2049,2266,10,1,5637,2049,2279,67502597,1793,5656,17,1,0,4,16,10,1,5650,2049, - 2266,10,5610,5675,168,20738,229480769412560,19375,115,58,114,105,103,104,116,0,67502597,2049,104,67502597, - 18,4,2049,5625,10,5661,5697,168,20738,6953962489469,19217,115,58,108,101,102,116,0,1,0, - 4,2049,5625,10,5684,5724,168,20738,-949014848675520942,18723,115,58,98,101,103,105,110,115,45,119, - 105,116,104,63,0,2,2049,104,1,19,2049,2266,2049,5697,2049,118,10,5703,5755,168, - 20738,-2744863427173801468,18980,115,58,101,110,100,115,45,119,105,116,104,63,0,2,2049,104,1, - 19,2049,2266,2049,5675,2049,118,10,5736,5780,168,20738,6953962177261,18850,115,58,99,111,112,121, - 0,67502597,2049,104,2049,3204,2049,4075,10,5767,5803,168,20738,7572863551252214,18649,115,58,68,73,71, - 73,84,83,0,2049,4611,48,49,50,51,52,53,54,55,56,57,65,66,67,68, - 69,70,0,1,5805,10,5788,5849,168,20738,-3174032931242973971,18613,115,58,65,83,67,73,73,45, - 76,79,87,69,82,67,65,83,69,0,2049,4611,97,98,99,100,101,102,103,104, - 105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,0,1, - 5851,10,5825,5905,168,20738,-3174020239987242608,18631,115,58,65,83,67,73,73,45,85,80,80,69, - 82,67,65,83,69,0,2049,4611,65,66,67,68,69,70,71,72,73,74,75,76, - 77,78,79,80,81,82,83,84,85,86,87,88,89,90,0,1,5907,10,5881,5959, - 168,20738,4909441458232360267,18595,115,58,65,83,67,73,73,45,76,69,84,84,69,82,83,0, - 2049,4611,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114, - 115,116,117,118,119,120,121,122,65,66,67,68,69,70,71,72,73,74,75,76, - 77,78,79,80,81,82,83,84,85,86,87,88,89,90,0,1,5961,10,5937,6037, - 168,20738,1619870888324870636,18667,115,58,80,85,78,67,84,85,65,84,73,79,78,0,2049,4611, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,1579,2061,168,22627,193454822,16192,200,200,0,69,79, + 77,0,1,-3,15,10,2048,2080,168,22627,210709897370,18840,200,200,0,100,101,112,116,104, + 0,1,-1,15,10,2065,2100,168,22627,6953375454647,18603,200,200,0,100,58,108,97,115,116, + 0,1,2,15,10,2084,2123,168,22627,249883453713703409,18657,200,200,0,100,58,108,97,115,116, + 46,120,116,0,2049,2100,2049,182,15,10,2104,2151,168,22627,-3502687787217310053,18621,200,200,0,100, + 58,108,97,115,116,46,99,108,97,115,115,0,2049,2100,2049,184,15,10,2129,2178, + 168,22627,-4578080011420638202,18639,200,200,0,100,58,108,97,115,116,46,110,97,109,101,0,2049, + 2100,2049,198,10,2157,2200,168,22627,229481143079314,20362,200,200,0,114,101,99,108,97,115,115, + 0,2049,2100,2049,184,16,10,2183,2225,168,22627,249892660727267252,19524,200,200,0,105,109,109,101, + 100,105,97,116,101,0,1,180,2049,2200,10,2206,2244,168,22627,6385144159,18806,200,200,0, + 100,97,116,97,0,1,156,2049,2200,10,2230,2268,168,22627,249902713833354782,20308,200,200,0,112, + 114,105,109,105,116,105,118,101,0,1,174,2049,2200,10,2249,2287,180,22627,6385302998,19451, + 200,200,0,104,111,111,107,0,1,1793,2049,130,1,3,15,1,1,17,2049,130, + 10,2273,2318,168,22627,7572920930896175,21573,200,200,0,115,101,116,45,104,111,111,107,0,1, + 1,17,16,10,2300,2339,168,22627,6954102295577,22080,200,200,0,117,110,104,111,111,107,0, + 1,1,17,2,1,1,17,4,16,10,2323,2360,180,22627,177613,15194,200,200,0,40, + 0,10,2349,2372,180,22627,177614,15211,200,200,0,41,0,10,2361,2394,168,22627,-4577149749211730287,18342, + 200,200,0,99,111,109,112,105,108,101,58,108,105,116,0,1,1,2049,130,2049, + 130,10,2373,2423,168,22627,-3471989134310745468,18324,200,200,0,99,111,109,112,105,108,101,58,106, + 117,109,112,0,1,1793,2049,130,2049,130,10,2401,2452,168,22627,-3471989134311018844,18306,200,200,0, + 99,111,109,112,105,108,101,58,99,97,108,108,0,1,2049,2049,130,2049,130,10, + 2430,2480,168,22627,-4577149749211723885,18360,200,200,0,99,111,109,112,105,108,101,58,114,101,116, + 0,1,10,2049,130,10,2459,2505,168,22627,8246182162316307558,18377,200,200,0,99,111,109,112,105, + 108,105,110,103,63,0,1,149,15,10,2485,2526,180,22627,229482595734807,21798,200,200,0,115, + 105,103,105,108,58,96,0,2049,288,2049,130,10,2509,2548,180,22627,229482595734803,21762,200,200, + 0,115,105,103,105,108,58,92,0,2049,486,10,2531,2568,180,22627,229482595734805,21780,200,200, + 0,115,105,103,105,108,58,94,0,2049,480,10,2551,2585,168,22627,6385292201,19416,200,200, + 0,104,101,114,101,0,1,3,15,10,2571,2606,180,22627,229482595734775,21743,200,200,0,115, + 105,103,105,108,58,64,0,2049,258,2049,182,15,2049,2505,1793,2622,1,3841,2049,130, + 2049,130,10,1,2615,1793,2628,15,10,1,2626,2049,66,10,2589,2650,180,22627,229482595734744,21612, + 200,200,0,115,105,103,105,108,58,33,0,2049,258,2049,182,15,2049,2505,1793,2666, + 1,4097,2049,130,2049,130,10,1,2659,1793,2672,16,10,1,2670,2049,66,10,2633,2695, + 168,22627,7572225537532823,18548,200,200,0,100,58,99,114,101,97,116,101,0,1793,2697,1,156, + 1,0,2049,202,2049,2585,2049,2100,2049,182,16,10,2677,2726,168,22627,210731100041,22328,200,200, + 0,118,97,114,45,110,0,2049,2695,2049,130,10,2711,2744,168,22627,193508814,22310,200,200, + 0,118,97,114,0,134284289,0,2726,10,2731,2763,168,22627,210709068620,18415,200,200,0,99,111, + 110,115,116,0,2049,2695,2049,2100,2049,182,16,10,2748,2785,174,22627,6385740380,22058,200,200, + 0,116,117,99,107,0,100926722,10,2771,2801,174,22627,6385561857,20245,200,200,0,111,118,101, + 114,0,67502597,10,2787,2816,174,22627,193500364,20152,200,200,0,110,105,112,0,772,10,2803, + 2837,174,22627,249885844724841747,18914,200,200,0,100,114,111,112,45,112,97,105,114,0,771,10, + 2818,2853,174,22627,6383817805,15464,200,200,0,63,100,117,112,0,6402,10,2839,2873,168,22627, + 7572302161469511,18970,200,200,0,100,117,112,45,112,97,105,114,0,67502597,67502597,10,2855,2889,168, + 22627,193489474,18858,200,200,0,100,105,112,0,525572,6,10,2876,2905,168,22627,193505809,21834,200, + 200,0,115,105,112,0,67502597,1,27,2049,2889,10,2892,2923,168,22627,5863248,17371,200,200, + 0,98,105,0,1,2905,2049,2889,8,10,2911,2942,168,22627,193487226,17392,200,200,0,98, + 105,42,0,1,2889,2049,2889,8,10,2929,2961,168,22627,193487248,17414,200,200,0,98,105, + 64,0,2,2049,2942,10,2948,2978,168,22627,193507188,21990,200,200,0,116,114,105,0,1793, + 2987,1,2905,2049,2889,2049,2905,10,1,2980,2049,2889,8,10,2965,3007,168,22627,6385737246,22012, + 200,200,0,116,114,105,42,0,1793,3024,1793,3017,4,1,2889,2049,2889,10,1,3011, + 2049,2889,2049,2889,10,1,3009,2049,2889,8,10,2993,3044,168,22627,6385737268,22036,200,200,0, + 116,114,105,64,0,2,2,2049,3007,10,3030,3064,168,22627,210732529790,22444,200,200,0,119, + 104,105,108,101,0,1793,3073,525570,1639430,3,1,3066,7,10,1,3066,8,3,10,3049, + 3093,168,22627,210730385457,22120,200,200,0,117,110,116,105,108,0,1793,3104,525570,385942534,-1,25, + 3,1,3095,7,10,1,3095,8,3,10,3078,3126,168,22627,229466054377278,19262,200,200,0,102, + 111,114,101,118,101,114,0,1793,3130,8,10,1,3128,2049,2905,1,3126,7,10,3109, + 3153,168,22627,210729012103,21971,200,200,0,116,105,109,101,115,0,1793,3165,4,25,33886721,1, + 2053,1542,1,3156,7,10,1,3155,8,3,10,3138,3187,180,22627,229482595734835,21816,200,200,0, + 115,105,103,105,108,58,124,0,2049,258,1793,3195,2049,182,15,10,1,3191,1793,3203, + 2049,184,15,10,1,3199,2049,2923,2049,2505,1793,3218,1,156,2049,2889,2049,2452,10,1, + 3211,1,27,2049,66,10,3170,3239,168,22627,6384551781,16408,200,200,0,84,82,85,69,0, + 1,-1,10,3225,3257,168,22627,210672985680,16210,200,200,0,70,65,76,83,69,0,1,0, + 10,3242,3274,168,22627,6385108193,18103,200,200,0,99,97,115,101,0,1793,3279,67502597,11,10, + 1,3276,2049,2889,4,1793,3291,772,8,2049,3239,10,1,3286,1793,3299,3,2049,3257,10, + 1,3295,2049,66,25,6,3,3,10,3260,3324,168,22627,6953962162094,20629,200,200,0,115,58, + 99,97,115,101,0,1793,3330,67502597,2049,118,10,1,3326,2049,2889,4,1793,3342,772,8, + 2049,3239,10,1,3337,1793,3350,3,2049,3257,10,1,3346,2049,66,25,6,3,3,10, + 3308,3372,168,22627,193500566,20189,200,200,0,110,111,116,0,1,-1,23,10,3359,3391,168, + 22627,210719911674,19690,200,200,0,108,116,101,113,63,0,2049,2873,101516555,22,10,3376,3411,168, + 22627,210713982069,19318,200,200,0,103,116,101,113,63,0,4,2049,3391,10,3396,3430,168,22627, + 210720171475,19749,200,200,0,110,58,77,65,88,0,1,-5,15,10,3415,3449,168,22627,210720171729, + 19767,200,200,0,110,58,77,73,78,0,1,-4,15,10,3434,3470,168,22627,229474321428492,20133, + 200,200,0,110,58,122,101,114,111,63,0,1,0,11,10,3453,3492,168,22627,7572649618157049, + 19730,200,200,0,110,58,45,122,101,114,111,63,0,1,0,12,10,3474,3517,168, + 22627,-4562761254435316065,19962,200,200,0,110,58,110,101,103,97,116,105,118,101,63,0,1,0, + 13,10,3496,3542,168,22627,-4562757999622951041,20000,200,200,0,110,58,112,111,115,105,116,105,118, + 101,63,0,1,-1,14,10,3521,3576,168,22627,-1420858746182909718,20095,200,200,0,110,58,115,116, + 114,105,99,116,108,121,45,112,111,115,105,116,105,118,101,63,0,1,0,14, + 10,3546,3597,168,22627,229474297120890,19844,200,200,0,110,58,101,118,101,110,63,0,1,2, + 20,3,2049,3470,10,3580,3620,168,22627,6953766919107,19981,200,200,0,110,58,111,100,100,63, + 0,2049,3597,2049,3372,10,3604,3638,168,22627,193494767,19505,200,200,0,105,102,59,0,67502597, + 1,76,2049,2889,25,6,771,10,3625,3661,168,22627,6383175836,15362,200,200,0,45,105,102, + 59,0,67502597,1,74,2049,2889,2049,3372,25,6,771,10,3647,3685,174,22627,193504922,20440,200, + 200,0,114,111,116,0,67503109,10,3672,3698,174,22627,177620,15381,200,200,0,47,0,197652, + 10,3687,3713,174,22627,193499461,19710,200,200,0,109,111,100,0,788,10,3700,3730,168,22627, + 210720211139,20019,200,200,0,110,58,112,111,119,0,1,1,4,1793,3738,67502597,19,10,1, + 3735,2049,3153,772,10,3715,3762,168,22627,7572652137106817,19943,200,200,0,110,58,110,101,103,97, + 116,101,0,1,-1,19,10,3744,3784,168,22627,7572652347517886,20076,200,200,0,110,58,115,113, + 117,97,114,101,0,4866,10,3766,3802,168,22627,6953767077527,20057,200,200,0,110,58,115,113, + 114,116,0,1,1,1793,3820,2049,2873,197652,67502597,18,1,2,197652,25,17,1,3806,7, + 10,1,3806,8,772,10,3786,3840,168,22627,210720207665,19923,200,200,0,110,58,109,105,110, + 0,2049,2873,13,1793,3847,3,10,1,3845,1793,3853,772,10,1,3851,2049,66,10,3825, + 3873,168,22627,210720207411,19903,200,200,0,110,58,109,97,120,0,2049,2873,14,1793,3880,3, + 10,1,3878,1793,3886,772,10,1,3884,2049,66,10,3858,3906,168,22627,210720194371,19785,200,200, + 0,110,58,97,98,115,0,2,2049,3517,1,3762,9,10,3891,3930,168,22627,229474304963756,19882, + 200,200,0,110,58,108,105,109,105,116,0,4,5,2049,3840,6,2049,3873,10,3913, + 3953,168,22627,210720203463,19863,200,200,0,110,58,105,110,99,0,659713,1,10,3938,3971,168, + 22627,210720197721,19825,200,200,0,110,58,100,101,99,0,659969,1,10,3956,3994,168,22627,8246617666422322998, + 19804,200,200,0,110,58,98,101,116,119,101,101,110,63,0,67503109,1793,4002,67503109,67503109, + 2049,3930,10,1,3997,2049,2905,11,10,3974,4027,168,22627,249861296566813883,16372,200,200,0,83,99, + 111,112,101,76,105,115,116,0,34252,34401,10,4008,4042,168,22627,5864091,22503,200,200,0, + 123,123,0,2049,2100,2,1,4027,2049,61,16,10,4030,4073,168,22627,-6305314778776785742,15306,200,200, + 0,45,45,45,114,101,118,101,97,108,45,45,45,0,2049,2100,1,4027,2049,3953, + 16,10,4051,4093,168,22627,5864159,22538,200,200,0,125,125,0,1,4027,2049,58,4,15, + 11,1793,4107,3841,4027,4097,2,10,1,4102,1793,4133,3841,4027,1793,4128,1,2,983567,1, + 4027,2049,3953,1641487,3,1,4117,7,10,1,4115,8,16,10,1,4111,2049,66,10,4081, + 4152,168,0,0,0,200,200,0,66,121,116,101,0,10,4138,4172,168,0,0,0, + 200,200,0,98,121,116,101,45,109,97,115,107,0,1,255,4,1,8,19,2, + 1793,4186,2049,3762,24,21,10,1,4181,2049,2889,24,10,4153,4209,168,0,0,0,200, + 200,0,114,101,112,108,97,99,101,0,1,0,1793,4238,1793,4233,1793,4228,1793,4223, + 3,3841,4152,10,1,4219,2049,2889,10,1,4217,2049,2889,10,1,4215,2049,2889,10,1, + 4213,2049,3274,1,1,1793,4264,1793,4259,1793,4254,3,3841,4152,10,1,4250,2049,2889,10, + 1,4248,2049,2889,10,1,4246,2049,3274,1,2,1793,4283,1793,4278,3,3841,4152,10,1, + 4274,2049,2889,10,1,4272,2049,3274,1,3,1793,4295,3,3841,4152,10,1,4291,2049,3274, + 3,10,4081,4328,168,22627,-6972911891006832072,17335,200,200,0,98,58,116,111,45,98,121,116,101, + 45,97,100,100,114,101,115,115,0,4865,4,10,4301,4348,168,22627,229458800096267,17257,200,200, + 0,98,58,102,101,116,99,104,0,267265,4,134288385,4,3685,266001,2049,4172,10,4331,4374, + 168,22627,229458816047342,17296,200,200,0,98,58,115,116,111,114,101,0,1048836,4152,267265,4,1793, + 4383,134287106,78,10,1,4380,2049,2889,2049,4209,2049,92,4,16,10,4357,4411,168,22627,229466548904081, + 19338,200,200,0,104,58,102,101,116,99,104,0,1,4348,1793,4423,2049,3953,2049,4348, + 1,-8,24,10,1,4415,2049,2923,22,10,4394,4446,168,22627,229466564855156,19377,200,200,0,104, + 58,115,116,111,114,101,0,2049,2873,102039813,255,2049,4374,2049,3953,18350341,8,255,117507605,4374, + 10,4429,4477,168,22627,229485920923616,22366,200,200,0,119,58,102,101,116,99,104,0,1,4, + 197652,15,10,4460,4499,168,22627,229485936874691,22405,200,200,0,119,58,115,116,111,114,101,0, + 1,4,197652,16,10,4482,4526,168,22627,-2542660583859062324,22385,200,200,0,119,58,102,101,116,99, + 104,45,110,101,120,116,0,2,1,4,17,4,2049,4477,10,4504,4556,168,22627,-3300792181564964579, + 19357,200,200,0,104,58,102,101,116,99,104,45,110,101,120,116,0,2,1,2, + 17,4,2049,4411,10,4534,4586,168,22627,-3604044820647325481,17276,200,200,0,98,58,102,101,116,99, + 104,45,110,101,120,116,0,2,1,1,17,4,2049,4348,10,4564,4616,168,22627,-2542036332270164849, + 22424,200,200,0,119,58,115,116,111,114,101,45,110,101,120,116,0,2,1,4, + 17,1,4499,2049,2889,10,4594,4647,168,22627,-3300167929976067104,19396,200,200,0,104,58,115,116,111, + 114,101,45,110,101,120,116,0,2,1,2,17,1,4446,2049,2889,10,4625,4678,168, + 22627,-3603420569058428006,17315,200,200,0,98,58,115,116,111,114,101,45,110,101,120,116,0,2, + 1,1,17,1,4374,2049,2889,10,4656,4705,168,22627,7572992899446007,22197,200,200,0,118,58,105, + 110,99,45,98,121,0,286196994,659462,10,4687,4726,168,22627,7572992693095753,22160,200,200,0,118,58, + 100,101,99,45,98,121,0,68093186,168822290,10,4708,4744,168,22627,210729690831,22179,200,200,0,118, + 58,105,110,99,0,1,1,4,2049,4705,10,4729,4765,168,22627,210729685089,22142,200,200,0, + 118,58,100,101,99,0,1,1,4,2049,4726,10,4750,4788,168,22627,229484636707508,22216,200,200, + 0,118,58,108,105,109,105,116,0,251790597,1542,2049,3930,4100,10,4771,4808,168,22627,6385748402, + 22254,200,200,0,118,58,111,110,0,2049,3239,4100,10,4794,4827,168,22627,210729697104,22236,200, + 200,0,118,58,111,102,102,0,2049,3257,4100,10,4812,4846,168,22627,210706586657,17219,200,200, + 0,97,108,108,111,116,0,1,3,2049,4705,10,4831,4871,168,22627,8246989571153063777,22272,200,200, + 0,118,58,112,114,101,115,101,114,118,101,0,84869636,1,27,2049,2889,1049606,10,4851, + 4896,168,22627,7572993371535704,22291,200,200,0,118,58,117,112,100,97,116,101,0,4,1793,4903, + 15,4,8,10,1,4899,2049,2905,16,10,4878,4923,168,22627,6385123360,18434,200,200,0,99, + 111,112,121,0,1793,4932,285278725,1,33951492,268767489,1,6,10,1,4925,2049,3153,771,10,4909, + 4953,156,0,0,0,200,200,0,115,116,97,114,116,0,0,10,4938,4968,156,0, + 0,0,200,200,0,101,110,100,0,0,10,4955,4989,168,0,0,0,200,200,0, + 116,101,114,109,105,110,97,116,101,0,1,0,3841,4968,16,10,4909,5017,168,22627, + -3513680875729732409,17577,200,200,0,98,117,102,102,101,114,58,115,116,97,114,116,0,3841,4953, + 10,4995,5040,168,22627,8246143877888709904,17487,200,200,0,98,117,102,102,101,114,58,101,110,100, + 0,3841,4968,10,5020,5063,168,22627,8246143877888705218,17452,200,200,0,98,117,102,102,101,114,58, + 97,100,100,0,3841,4968,16,1,4968,2049,4744,2049,4989,10,5043,5093,168,22627,8246143877888711801,17505, + 200,200,0,98,117,102,102,101,114,58,103,101,116,0,1,4968,2049,4765,3841,4968, + 15,2049,4989,10,5073,5125,168,22627,-3513680875746570456,17470,200,200,0,98,117,102,102,101,114,58, + 101,109,112,116,121,0,3841,4953,4097,4968,2049,4989,10,5103,5153,168,22627,-4578413135315348908,17559,200, + 200,0,98,117,102,102,101,114,58,115,105,122,101,0,3841,4968,3841,4953,18,10, + 5132,5179,168,22627,8246143877888724869,17541,200,200,0,98,117,102,102,101,114,58,115,101,116,0, + 4097,4953,2049,5125,10,5159,5209,168,22627,-3186446687793719003,17523,200,200,0,98,117,102,102,101,114, + 58,112,114,101,115,101,114,118,101,0,3841,4953,3841,4968,1793,5222,1,27,2049,2889, + 4097,4953,10,1,5215,2049,2889,4097,4968,10,5184,5250,156,22627,-4600587576916820603,16444,200,200,0,84, + 101,109,112,83,116,114,105,110,103,115,0,32,5229,5274,156,22627,7474516786580364824,16426,200,200, + 0,84,101,109,112,83,116,114,105,110,103,77,97,120,0,512,5251,5292,168,22627, + 229440420829967,16354,200,200,0,83,84,82,73,78,71,83,0,2049,2061,3841,5250,3841,5274,19, + 18,10,5275,5322,168,0,-4555101230505660792,15147,200,200,0,115,58,111,118,101,114,115,105,122, + 101,63,0,2049,104,3841,5274,2049,3971,14,10,5301,5350,168,0,8246850507793776056,15143,200,200,0, + 115,58,116,114,117,110,99,97,116,101,0,2,2049,5322,1793,5363,1,0,67502597,3841, + 5274,17,16,10,1,5355,9,10,5330,5384,156,0,0,0,200,200,0,67,117,114, + 114,101,110,116,0,22,10,5367,5405,168,0,0,0,200,200,0,115,58,112,111, + 105,110,116,101,114,0,3841,5384,3841,5274,19,2049,5292,17,10,5386,5430,168,0,0, + 0,200,200,0,115,58,110,101,120,116,0,1,5384,2049,4744,3841,5384,3841,5250,11, + 1793,5446,1,0,4097,5384,10,1,5441,9,10,5330,5466,168,22627,6953962777192,21381,200,200,0, + 115,58,116,101,109,112,0,2049,5350,2,2049,104,2049,3953,2049,5405,4,2049,4923,2049, + 5405,2049,5430,10,5450,5500,168,22627,229480754149537,20848,200,200,0,115,58,101,109,112,116,121, + 0,2049,5405,2049,5430,1,0,67502597,16,10,5483,5525,168,22627,6953962747657,21281,200,200,0,115, + 58,115,107,105,112,0,6,1793,5533,68223234,1,786703,0,10,1,5528,2049,3064,2049,3971, + 5,10,5509,5557,168,22627,6953962453495,21084,200,200,0,115,58,107,101,101,112,0,2049,2505, + 1793,5566,1,5525,2049,2452,10,1,5561,9,2049,2585,1,144,2049,2889,2049,156,10,5541, + 5595,180,0,229482595734750,0,200,200,0,115,105,103,105,108,58,39,0,2049,2505,1,5557, + 1,5466,2049,66,10,5578,5621,168,22627,229480755051740,20926,200,200,0,115,58,102,101,116,99, + 104,0,17,15,10,5604,5641,168,22627,229480771002815,21340,200,200,0,115,58,115,116,111,114, + 101,0,17,16,10,5624,5660,168,22627,6953962169596,20658,200,200,0,115,58,99,104,111,112, + 0,2049,5466,2,2049,104,67502597,17,2049,3971,1,0,4,16,10,5644,5693,168,22627,249904557751418990, + 21242,200,200,0,115,58,114,101,118,101,114,115,101,0,1793,5735,2,2049,5466,2049, + 5179,1,104,1793,5711,2,2049,104,17,2049,3971,10,1,5704,2049,2923,4,1793,5725,2, + 15,2049,5063,2049,3971,10,1,5718,2049,3153,3,2049,5017,2049,5466,10,1,5695,2049,5209, + 10,5674,5759,168,22627,249904555657463488,21162,200,200,0,115,58,112,114,101,112,101,110,100,0, + 2049,5466,1793,5802,2049,2873,1,104,2049,2961,17,3841,5274,14,1,2837,1793,5797,2,2049, + 104,17,1793,5789,2,2049,104,2049,3953,10,1,5783,2049,2889,4,2049,4923,10,1,5777, + 2049,66,10,1,5763,2049,2905,10,5740,5825,168,22627,7572864733934314,20589,200,200,0,115,58,97, + 112,112,101,110,100,0,4,2049,5759,10,5807,5849,168,22627,8246849907066750743,20966,200,200,0,115, + 58,102,111,114,45,101,97,99,104,0,1793,5864,67502597,6415,3,67502597,67502597,251987205,2054,101777670, + 1,1,5851,7,10,1,5851,8,771,10,5829,5891,168,22627,-2744677796467205929,21044,200,200,0,115, + 58,105,110,100,101,120,47,99,104,97,114,0,4,1793,5914,2049,58,25,4,1793, + 5903,67502597,12,10,1,5900,2049,2889,4,25,3,1,5894,7,10,1,5894,1793,5923,18, + 2049,3971,772,10,1,5918,1793,5932,2049,104,67502597,11,10,1,5927,2049,2978,1793,5942,3, + 1,-1,10,1,5938,9,10,5869,5972,168,22627,-2157201767973730595,20696,200,200,0,115,58,99,111, + 110,116,97,105,110,115,47,99,104,97,114,63,0,2049,5891,1,-1,12,10,5946, + 5994,168,22627,6953962341782,21025,200,200,0,115,58,104,97,115,104,0,1,5381,4,1793,6002, + 286458116,33,10,1,5999,2049,5849,10,5978,6020,156,0,0,0,200,200,0,83,116,114, + 0,0,6007,6038,168,0,0,0,200,200,0,101,120,116,114,97,99,116,0,2049, + 2873,3841,6020,4,2049,4923,3841,6020,67502597,17,1,0,4,16,10,6021,6069,168,0,0, + 0,200,200,0,99,104,101,99,107,0,1,6038,2049,2889,1793,6080,1,3953,2049,2889, + 10,1,6075,2049,2889,3841,6020,2049,5994,67502597,11,10,6054,6109,168,0,0,0,200,200, + 0,108,111,99,97,116,105,111,110,0,67503109,67503109,1793,6142,1793,6137,4,1793,6123,67502597, + 2049,3470,21,10,1,6118,2049,2889,4,1793,6133,772,2,10,1,6130,9,10,1,6115, + 2049,2889,10,1,6113,2049,2889,10,6091,6162,168,0,0,0,200,200,0,115,101,116, + 117,112,0,2049,5500,4097,6020,1,0,67503109,67503109,1,104,1,5994,2049,2923,1793,6182,67502597, + 2049,104,10,1,6178,2049,2889,4,10,5978,6212,168,22627,-581580411198892688,21064,200,200,0,115,58, + 105,110,100,101,120,47,115,116,114,105,110,103,0,67502597,1793,6231,2049,6162,1793,6224, + 2049,6069,2049,6109,10,1,6219,2049,3153,771,3,10,1,6215,2049,2889,18,1,2,18, + 1,-1,2049,3873,10,6188,6257,156,0,0,0,200,200,0,83,114,99,0,0,6244, + 6271,156,0,0,0,200,200,0,84,97,114,0,0,6258,6285,156,0,0,0,200, + 200,0,80,97,100,0,0,6272,6297,156,0,0,0,200,200,0,73,0,0,6286, + 6309,156,0,0,0,200,200,0,70,0,0,6298,6322,156,0,0,0,200,200,0, + 65,116,0,0,6310,6342,168,0,0,0,200,200,0,116,101,114,109,105,110,97, + 116,101,0,1,0,3841,6285,3841,6271,2049,104,17,16,10,6323,6370,168,0,0,0, + 200,200,0,101,120,116,114,97,99,116,0,3841,6257,3841,6297,17,3841,6285,3841,6271, + 2049,104,2049,4923,10,6353,6401,168,0,0,0,200,200,0,99,111,109,112,97,114, + 101,0,3841,6285,3841,6271,2049,118,3841,6309,22,4097,6309,3841,6309,1793,6421,3841,6297,4097, + 6322,10,1,6416,2049,74,10,6384,6440,168,0,0,0,200,200,0,110,101,120,116, + 0,1,6297,2049,4744,10,6188,6473,168,22627,-6456227941126558634,20716,200,200,0,115,58,99,111,110, + 116,97,105,110,115,47,115,116,114,105,110,103,63,0,4097,6271,4097,6257,2049,5500, + 4097,6285,1,0,4097,6297,1,0,4097,6309,3841,6257,2049,104,1793,6504,2049,6370,2049,6342, + 2049,6401,2049,6440,10,1,6495,2049,3153,3841,6309,10,6445,6529,168,22627,7572864921182136,20946,200,200, + 0,115,58,102,105,108,116,101,114,0,67502597,2049,5322,1793,6539,1,5350,2049,2889,10, + 1,6534,9,1793,6570,2049,5500,2049,5179,4,1793,6562,2049,2873,4,8,1,5063,1,17, + 2049,66,10,1,6551,2049,5849,3,2049,5017,10,1,6544,2049,5209,10,6511,6590,168,22627, + 210726137008,21142,200,200,0,115,58,109,97,112,0,1793,6612,2049,5500,2049,5179,4,1793,6604, + 67502597,8,2049,5063,10,1,6599,2049,5849,3,2049,5017,10,1,6592,2049,5209,10,6575,6635, + 168,22627,7572865443813333,21360,200,200,0,115,58,115,117,98,115,116,114,0,1793,6641,17,2049, + 5500,10,1,6637,2049,2889,1793,6653,67502597,1,4923,2049,2889,10,1,6647,2049,2905,67502597,1793, + 6666,17,1,0,4,16,10,1,6660,2049,2889,10,6617,6688,168,22627,229480769412560,21261,200,200, + 0,115,58,114,105,103,104,116,0,67502597,2049,104,67502597,18,4,2049,6635,10,6671,6713, + 168,22627,6953962489469,21103,200,200,0,115,58,108,101,102,116,0,1,0,4,2049,6635,10, + 6697,6743,168,22627,-949014848675520942,20609,200,200,0,115,58,98,101,103,105,110,115,45,119,105, + 116,104,63,0,2,2049,104,1,19,2049,2889,2049,6713,2049,118,10,6719,6777,168,22627, + -2744863427173801468,20866,200,200,0,115,58,101,110,100,115,45,119,105,116,104,63,0,2,2049, + 104,1,19,2049,2889,2049,6688,2049,118,10,6755,6805,168,22627,6953962177261,20736,200,200,0,115, + 58,99,111,112,121,0,67502597,2049,104,2049,3953,2049,4923,10,6789,6831,168,22627,7572863551252214,20535, + 200,200,0,115,58,68,73,71,73,84,83,0,2049,5525,48,49,50,51,52,53, + 54,55,56,57,65,66,67,68,69,70,0,1,6833,10,6813,6880,168,22627,-3174032931242973971,20499, + 200,200,0,115,58,65,83,67,73,73,45,76,79,87,69,82,67,65,83,69, + 0,2049,5525,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113, + 114,115,116,117,118,119,120,121,122,0,1,6882,10,6853,6939,168,22627,-3174020239987242608,20517,200, + 200,0,115,58,65,83,67,73,73,45,85,80,80,69,82,67,65,83,69,0, + 2049,5525,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82, + 83,84,85,86,87,88,89,90,0,1,6941,10,6912,6996,168,22627,4909441458232360267,20481,200,200, + 0,115,58,65,83,67,73,73,45,76,69,84,84,69,82,83,0,2049,5525,97, + 98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117, + 118,119,120,121,122,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79, + 80,81,82,83,84,85,86,87,88,89,90,0,1,6998,10,6971,7077,168,22627,1619870888324870636, + 20553,200,200,0,115,58,80,85,78,67,84,85,65,84,73,79,78,0,2049,5525, 95,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,58,59,60,61, - 62,63,64,91,92,93,94,96,123,124,125,126,0,1,6039,1,95,67502597,16,10, - 6017,6098,156,20738,-2745567821320788289,18685,115,58,87,72,73,84,69,83,80,65,67,69,0,32, - 9,10,13,0,6079,6111,180,20738,177612,13290,39,0,1,4589,2049,168,10,6103,6124,180, - 20738,177609,13272,36,0,1,0,2049,156,10,6116,0,156,20738,249835240931843863,14019,65,83,67,73, - 73,58,78,85,76,0,6129,27,156,20738,249835240931833987,13857,65,83,67,73,73,58,69,83, - 67,0,6145,8,156,20738,7570764876722141,13641,65,83,67,73,73,58,66,83,0,6161,9,156, - 20738,7570764876722340,13965,65,83,67,73,73,58,72,84,0,6176,10,156,20738,7570764876722458,13983,65,83, - 67,73,73,58,76,70,0,6191,11,156,20738,7570764876722802,14199,65,83,67,73,73,58,86, - 84,0,6206,12,156,20738,7570764876722260,13911,65,83,67,73,73,58,70,70,0,6221,13,156, - 20738,7570764876722173,13677,65,83,67,73,73,58,67,82,0,6236,32,156,20738,-4630583730859567212,14109,65,83, - 67,73,73,58,83,80,65,67,69,0,6251,127,156,20738,249835240931832445,13767,65,83,67,73, - 73,58,68,69,76,0,6269,1,156,20738,249835240931849106,14091,65,83,67,73,73,58,83,79, - 72,0,6285,2,156,20738,249835240931849287,14127,65,83,67,73,73,58,83,84,88,0,6301,3, - 156,20738,249835240931834041,13893,65,83,67,73,73,58,69,84,88,0,6317,4,156,20738,249835240931833872,13839, - 65,83,67,73,73,58,69,79,84,0,6333,5,156,20738,249835240931833836,13821,65,83,67,73, - 73,58,69,78,81,0,6349,6,156,20738,249835240931829111,13605,65,83,67,73,73,58,65,67, - 75,0,6365,7,156,20738,249835240931830267,13623,65,83,67,73,73,58,66,69,76,0,6381,14, - 156,20738,7570764876722698,14073,65,83,67,73,73,58,83,79,0,6397,15,156,20738,7570764876722692,14055,65, - 83,67,73,73,58,83,73,0,6412,16,156,20738,249835240931832669,13785,65,83,67,73,73,58, - 68,76,69,0,6427,17,156,20738,249835240931832352,13695,65,83,67,73,73,58,68,67,49,0, - 6443,18,156,20738,249835240931832353,13713,65,83,67,73,73,58,68,67,50,0,6459,19,156,20738, - 249835240931832354,13731,65,83,67,73,73,58,68,67,51,0,6475,20,156,20738,249835240931832355,13749,65,83, - 67,73,73,58,68,67,52,0,6491,21,156,20738,249835240931843202,14001,65,83,67,73,73,58, - 78,65,75,0,6507,22,156,20738,249835240931849442,14163,65,83,67,73,73,58,83,89,78,0, - 6523,23,156,20738,249835240931834019,13875,65,83,67,73,73,58,69,84,66,0,6539,24,156,20738, - 249835240931831226,13659,65,83,67,73,73,58,67,65,78,0,6555,25,156,20738,7570764876722234,13803,65,83, - 67,73,73,58,69,77,0,6571,26,156,20738,249835240931849298,14145,65,83,67,73,73,58,83, - 85,66,0,6586,28,156,20738,7570764876722273,13929,65,83,67,73,73,58,70,83,0,6602,29, - 156,20738,7570764876722306,13947,65,83,67,73,73,58,71,83,0,6617,30,156,20738,7570764876722669,14037,65, - 83,67,73,73,58,82,83,0,6632,31,156,20738,7570764876722768,14181,65,83,67,73,73,58, - 85,83,0,6647,6681,168,20738,-3553210050247798618,15934,99,58,108,111,119,101,114,99,97,115,101, - 63,0,1,97,1,122,2049,3239,10,6662,6707,168,20738,-3552791238808663639,16066,99,58,117,112,112, - 101,114,99,97,115,101,63,0,1,65,1,90,2049,3239,10,6688,6730,168,20738,249882047462872305, - 15915,99,58,108,101,116,116,101,114,63,0,1,6681,1,6707,2049,2294,22,10,6714, - 6753,168,20738,7572182947632498,15878,99,58,100,105,103,105,116,63,0,1,48,1,57,2049,3239, - 10,6738,6777,168,20738,8246107997572794159,16085,99,58,118,105,115,105,98,108,101,63,0,1,32, - 1,126,2049,3239,10,6760,6799,168,20738,7572183659755470,16104,99,58,118,111,119,101,108,63,0, - 2049,4611,97,101,105,111,117,65,69,73,79,85,0,1,6801,4,2049,5025,10,6784, - 6837,168,20738,-3553628119197217420,15859,99,58,99,111,110,115,111,110,97,110,116,63,0,2,2049, - 6730,1793,6847,2049,6799,2049,2698,10,1,6842,1793,6855,3,2049,2592,10,1,6851,2049,66, - 10,6818,6880,168,20738,-6558963794062736370,16123,99,58,119,104,105,116,101,115,112,97,99,101,63, - 0,1,6098,4,2049,5025,10,6860,6906,168,20738,-6672106426782194349,15764,99,58,45,108,111,119,101, - 114,99,97,115,101,63,0,2049,6681,2049,2698,10,6886,6931,168,20738,-6671687615343059370,15783,99,58, - 45,117,112,112,101,114,99,97,115,101,63,0,2049,6707,2049,2698,10,6911,6952,168, - 20738,249881966047746975,15745,99,58,45,100,105,103,105,116,63,0,2049,6753,2049,2698,10,6936,6978, - 168,20738,1197920222559514203,15840,99,58,45,119,104,105,116,101,115,112,97,99,101,63,0,2049, - 6880,2049,2698,10,6957,7001,168,20738,-4579699312045814628,15802,99,58,45,118,105,115,105,98,108,101, - 63,0,2049,6777,2049,2698,10,6983,7022,168,20738,249881966759869947,15821,99,58,45,118,111,119,101, - 108,63,0,2049,6799,2049,2698,10,7006,7047,168,20738,-6672524495731613151,15726,99,58,45,99,111,110, - 115,111,110,97,110,116,63,0,2049,6837,2049,2698,10,7027,7069,168,20738,8246107917359977086,16028,99, - 58,116,111,45,117,112,112,101,114,0,2,2049,6681,25,3,1,32,18,10,7052, - 7095,168,20738,8246107917349275483,15971,99,58,116,111,45,108,111,119,101,114,0,2,2049,6707,25, - 3,1,32,17,10,7078,7122,168,20738,-4579599832837481303,16009,99,58,116,111,45,115,116,114,105, - 110,103,0,2049,4611,46,0,1,7124,2049,4558,1,39,2049,2279,10,7104,7155,168,20738, - -6563237009071717459,16047,99,58,116,111,103,103,108,101,45,99,97,115,101,0,2,2049,6681,1, - 7069,1,7095,2049,66,10,7135,7183,168,20738,-4579599833032159941,15990,99,58,116,111,45,110,117,109, - 98,101,114,0,2,2049,6753,1793,7192,1,48,18,10,1,7188,1793,7200,3,1,0, - 10,1,7196,2049,66,10,7165,7222,168,20738,8246850501110408334,19552,115,58,116,111,45,117,112,112, - 101,114,0,1,7069,2049,5583,10,7205,7244,168,20738,8246850501099706731,19514,115,58,116,111,45,108, - 111,119,101,114,0,1,7095,2049,5583,10,7227,7267,168,20738,-4555094364049076026,19630,115,58,116,114, - 105,109,45,108,101,102,116,0,2049,4558,1793,7281,2049,58,1,6880,1,2800,2049,2294, - 21,10,1,7271,2049,2417,2049,3219,10,7249,7307,168,20738,-2744161423935835847,19649,115,58,116,114,105, - 109,45,114,105,103,104,116,0,2049,4558,2049,4761,2049,7267,2049,4761,10,7288,7329,168, - 20738,6953962791214,19611,115,58,116,114,105,109,0,2049,7307,2049,7267,10,7316,7359,156,20738,-429402327855008236, - 14450,82,101,119,114,105,116,101,85,110,100,101,114,115,99,111,114,101,115,0, - -1,7334,7370,168,0,0,0,115,117,98,0,1,95,1793,7377,1,32,10,1,7374, - 2049,2606,10,7360,7396,168,0,0,0,114,101,119,114,105,116,101,0,3841,7359,1793, - 7405,1,7370,2049,5583,10,1,7400,9,10,7382,7422,168,0,0,0,104,97,110,100, - 108,101,0,1,4675,8,10,7334,7440,180,20738,229482595734750,19802,115,105,103,105,108,58,39, - 0,2049,7396,2049,7422,10,7426,7464,168,20738,-2744210522849075797,19412,115,58,115,112,108,105,116,47, - 99,104,97,114,0,2049,2253,2049,4947,772,2049,2253,2049,5697,1,41,2049,2266,10,7445, - 7499,168,20738,-72719441055178940,19433,115,58,115,112,108,105,116,47,115,116,114,105,110,103,0, - 2049,2253,2049,5244,2049,3204,772,2049,2253,2049,5697,1,41,2049,2266,10,7478,7531,168,20738, - 249904557744535982,19314,115,58,114,101,112,108,97,99,101,0,67502597,2049,104,2049,2001,16,1793,7547, - 2049,7499,4,2049,2001,15,17,10,1,7539,2049,2266,2049,4824,2049,4887,10,7515,7571,156, - 0,0,0,83,112,108,105,116,45,79,110,0,0,7556,7585,168,0,0,0,109, - 97,116,99,104,63,0,3841,7571,11,10,7572,7605,168,0,0,0,116,101,114,109, - 105,110,97,116,101,0,1,0,67502597,2049,3219,16,10,7589,7623,168,0,0,0,115, - 116,101,112,0,1,3204,2049,2266,2049,7585,1793,7637,2,2049,130,2049,7605,10,1,7631, - 9,10,7515,7658,168,20738,8246850503517749147,19571,115,58,116,111,107,101,110,105,122,101,0,4097, - 7571,2049,4640,2049,2001,1,0,2049,130,1793,7680,2,2049,130,2,1,7623,2049,4908,3, - 10,1,7670,2049,2266,2049,2001,67502597,18,2049,3219,67502597,16,10,7641,7706,156,0,0,0, - 78,101,101,100,108,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7693,7844,156,0,0, - 0,76,101,110,0,0,7834,7858,156,0,0,0,84,111,107,101,110,115,0,0, + 62,63,64,91,92,93,94,96,123,124,125,126,0,1,7079,1,95,67502597,16,10, + 7054,7141,156,22627,-2745567821320788289,20571,200,200,0,115,58,87,72,73,84,69,83,80,65,67, + 69,0,32,9,10,13,0,7119,7157,180,22627,177612,15176,200,200,0,39,0,1,5500, + 2049,168,10,7146,7173,180,22627,177609,15158,200,200,0,36,0,1,0,2049,156,10,7162, + 0,156,22627,249835240931843863,15905,200,200,0,65,83,67,73,73,58,78,85,76,0,7178,27, + 156,22627,249835240931833987,15743,200,200,0,65,83,67,73,73,58,69,83,67,0,7197,8,156, + 22627,7570764876722141,15527,200,200,0,65,83,67,73,73,58,66,83,0,7216,9,156,22627,7570764876722340, + 15851,200,200,0,65,83,67,73,73,58,72,84,0,7234,10,156,22627,7570764876722458,15869,200, + 200,0,65,83,67,73,73,58,76,70,0,7252,11,156,22627,7570764876722802,16085,200,200,0, + 65,83,67,73,73,58,86,84,0,7270,12,156,22627,7570764876722260,15797,200,200,0,65,83, + 67,73,73,58,70,70,0,7288,13,156,22627,7570764876722173,15563,200,200,0,65,83,67,73, + 73,58,67,82,0,7306,32,156,22627,-4630583730859567212,15995,200,200,0,65,83,67,73,73,58, + 83,80,65,67,69,0,7324,127,156,22627,249835240931832445,15653,200,200,0,65,83,67,73,73, + 58,68,69,76,0,7345,1,156,22627,249835240931849106,15977,200,200,0,65,83,67,73,73,58, + 83,79,72,0,7364,2,156,22627,249835240931849287,16013,200,200,0,65,83,67,73,73,58,83, + 84,88,0,7383,3,156,22627,249835240931834041,15779,200,200,0,65,83,67,73,73,58,69,84, + 88,0,7402,4,156,22627,249835240931833872,15725,200,200,0,65,83,67,73,73,58,69,79,84, + 0,7421,5,156,22627,249835240931833836,15707,200,200,0,65,83,67,73,73,58,69,78,81,0, + 7440,6,156,22627,249835240931829111,15491,200,200,0,65,83,67,73,73,58,65,67,75,0,7459, + 7,156,22627,249835240931830267,15509,200,200,0,65,83,67,73,73,58,66,69,76,0,7478,14, + 156,22627,7570764876722698,15959,200,200,0,65,83,67,73,73,58,83,79,0,7497,15,156,22627, + 7570764876722692,15941,200,200,0,65,83,67,73,73,58,83,73,0,7515,16,156,22627,249835240931832669,15671, + 200,200,0,65,83,67,73,73,58,68,76,69,0,7533,17,156,22627,249835240931832352,15581,200, + 200,0,65,83,67,73,73,58,68,67,49,0,7552,18,156,22627,249835240931832353,15599,200,200, + 0,65,83,67,73,73,58,68,67,50,0,7571,19,156,22627,249835240931832354,15617,200,200,0, + 65,83,67,73,73,58,68,67,51,0,7590,20,156,22627,249835240931832355,15635,200,200,0,65, + 83,67,73,73,58,68,67,52,0,7609,21,156,22627,249835240931843202,15887,200,200,0,65,83, + 67,73,73,58,78,65,75,0,7628,22,156,22627,249835240931849442,16049,200,200,0,65,83,67, + 73,73,58,83,89,78,0,7647,23,156,22627,249835240931834019,15761,200,200,0,65,83,67,73, + 73,58,69,84,66,0,7666,24,156,22627,249835240931831226,15545,200,200,0,65,83,67,73,73, + 58,67,65,78,0,7685,25,156,22627,7570764876722234,15689,200,200,0,65,83,67,73,73,58, + 69,77,0,7704,26,156,22627,249835240931849298,16031,200,200,0,65,83,67,73,73,58,83,85, + 66,0,7722,28,156,22627,7570764876722273,15815,200,200,0,65,83,67,73,73,58,70,83,0, + 7741,29,156,22627,7570764876722306,15833,200,200,0,65,83,67,73,73,58,71,83,0,7759,30, + 156,22627,7570764876722669,15923,200,200,0,65,83,67,73,73,58,82,83,0,7777,31,156,22627, + 7570764876722768,16067,200,200,0,65,83,67,73,73,58,85,83,0,7795,7835,168,22627,-3553210050247798618,17820, + 200,200,0,99,58,108,111,119,101,114,99,97,115,101,63,0,1,97,1,122, + 2049,3994,10,7813,7864,168,22627,-3552791238808663639,17952,200,200,0,99,58,117,112,112,101,114,99, + 97,115,101,63,0,1,65,1,90,2049,3994,10,7842,7890,168,22627,249882047462872305,17801,200,200, + 0,99,58,108,101,116,116,101,114,63,0,1,7835,1,7864,2049,2923,22,10,7871, + 7916,168,22627,7572182947632498,17764,200,200,0,99,58,100,105,103,105,116,63,0,1,48,1, + 57,2049,3994,10,7898,7943,168,22627,8246107997572794159,17971,200,200,0,99,58,118,105,115,105,98, + 108,101,63,0,1,32,1,126,2049,3994,10,7923,7968,168,22627,7572183659755470,17990,200,200,0, + 99,58,118,111,119,101,108,63,0,2049,5525,97,101,105,111,117,65,69,73,79, + 85,0,1,7970,4,2049,5972,10,7950,8009,168,22627,-3553628119197217420,17745,200,200,0,99,58,99, + 111,110,115,111,110,97,110,116,63,0,2,2049,7890,1793,8019,2049,7968,2049,3372,10, + 1,8014,1793,8027,3,2049,3257,10,1,8023,2049,66,10,7987,8055,168,22627,-6558963794062736370,18009,200, + 200,0,99,58,119,104,105,116,101,115,112,97,99,101,63,0,1,7141,4,2049, + 5972,10,8032,8084,168,22627,-6672106426782194349,17650,200,200,0,99,58,45,108,111,119,101,114,99, + 97,115,101,63,0,2049,7835,2049,3372,10,8061,8112,168,22627,-6671687615343059370,17669,200,200,0,99, + 58,45,117,112,112,101,114,99,97,115,101,63,0,2049,7864,2049,3372,10,8089,8136, + 168,22627,249881966047746975,17631,200,200,0,99,58,45,100,105,103,105,116,63,0,2049,7916,2049, + 3372,10,8117,8165,168,22627,1197920222559514203,17726,200,200,0,99,58,45,119,104,105,116,101,115, + 112,97,99,101,63,0,2049,8055,2049,3372,10,8141,8191,168,22627,-4579699312045814628,17688,200,200,0, + 99,58,45,118,105,115,105,98,108,101,63,0,2049,7943,2049,3372,10,8170,8215,168, + 22627,249881966759869947,17707,200,200,0,99,58,45,118,111,119,101,108,63,0,2049,7968,2049,3372, + 10,8196,8243,168,22627,-6672524495731613151,17612,200,200,0,99,58,45,99,111,110,115,111,110,97, + 110,116,63,0,2049,8009,2049,3372,10,8220,8268,168,22627,8246107917359977086,17914,200,200,0,99,58, + 116,111,45,117,112,112,101,114,0,2,2049,7835,25,3,1,32,18,10,8248,8297, + 168,22627,8246107917349275483,17857,200,200,0,99,58,116,111,45,108,111,119,101,114,0,2,2049, + 7864,25,3,1,32,17,10,8277,8327,168,22627,-4579599832837481303,17895,200,200,0,99,58,116,111, + 45,115,116,114,105,110,103,0,2049,5525,46,0,1,8329,2049,5466,1,39,2049,2905, + 10,8306,8363,168,22627,-6563237009071717459,17933,200,200,0,99,58,116,111,103,103,108,101,45,99, + 97,115,101,0,2,2049,7835,1,8268,1,8297,2049,66,10,8340,8394,168,22627,-4579599833032159941,17876, + 200,200,0,99,58,116,111,45,110,117,109,98,101,114,0,2,2049,7916,1793,8403, + 1,48,18,10,1,8399,1793,8411,3,1,0,10,1,8407,2049,66,10,8373,8436,168, + 22627,8246850501110408334,21438,200,200,0,115,58,116,111,45,117,112,112,101,114,0,1,8268,2049, + 6590,10,8416,8461,168,22627,8246850501099706731,21400,200,200,0,115,58,116,111,45,108,111,119,101, + 114,0,1,8297,2049,6590,10,8441,8487,168,22627,-4555094364049076026,21516,200,200,0,115,58,116,114, + 105,109,45,108,101,102,116,0,2049,5466,1793,8501,2049,58,1,8055,1,3492,2049,2923, + 21,10,1,8491,2049,3064,2049,3971,10,8466,8530,168,22627,-2744161423935835847,21535,200,200,0,115,58, + 116,114,105,109,45,114,105,103,104,116,0,2049,5466,2049,5693,2049,8487,2049,5693,10, + 8508,8555,168,22627,6953962791214,21497,200,200,0,115,58,116,114,105,109,0,2049,8530,2049,8487, + 10,8539,8588,156,22627,-429402327855008236,16336,200,200,0,82,101,119,114,105,116,101,85,110,100, + 101,114,115,99,111,114,101,115,0,-1,8560,8602,168,0,0,0,200,200,0,115, + 117,98,0,1,95,1793,8609,1,32,10,1,8606,2049,3274,10,8589,8631,168,0,0, + 0,200,200,0,114,101,119,114,105,116,101,0,3841,8588,1793,8640,1,8602,2049,6590, + 10,1,8635,9,10,8614,8660,168,0,0,0,200,200,0,104,97,110,100,108,101, + 0,1,5595,8,10,8560,8681,180,22627,229482595734750,21688,200,200,0,115,105,103,105,108,58, + 39,0,2049,8631,2049,8660,10,8664,8708,168,22627,-2744210522849075797,21298,200,200,0,115,58,115,112, + 108,105,116,47,99,104,97,114,0,2049,2873,2049,5891,772,2049,2873,2049,6713,1,41, + 2049,2889,10,8686,8746,168,22627,-72719441055178940,21319,200,200,0,115,58,115,112,108,105,116,47, + 115,116,114,105,110,103,0,2049,2873,2049,6212,2049,3953,772,2049,2873,2049,6713,1,41, + 2049,2889,10,8722,8781,168,22627,249904557744535982,21200,200,200,0,115,58,114,101,112,108,97,99, + 101,0,67502597,2049,104,2049,2585,16,1793,8797,2049,8746,4,2049,2585,15,17,10,1,8789, + 2049,2889,2049,5759,2049,5825,10,8762,8824,156,0,0,0,200,200,0,83,112,108,105, + 116,45,79,110,0,0,8806,8841,168,0,0,0,200,200,0,109,97,116,99,104, + 63,0,3841,8824,11,10,8825,8864,168,0,0,0,200,200,0,116,101,114,109,105, + 110,97,116,101,0,1,0,67502597,2049,3971,16,10,8845,8885,168,0,0,0,200,200, + 0,115,116,101,112,0,1,3953,2049,2889,2049,8841,1793,8899,2,2049,130,2049,8864,10, + 1,8893,9,10,8762,8923,168,22627,8246850503517749147,21457,200,200,0,115,58,116,111,107,101,110, + 105,122,101,0,4097,8824,2049,5557,2049,2585,1,0,2049,130,1793,8945,2,2049,130,2, + 1,8885,2049,5849,3,10,1,8935,2049,2889,2049,2585,67502597,18,2049,3971,67502597,16,10,8903, + 8974,156,0,0,0,200,200,0,78,101,101,100,108,101,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,7845,7995,156,0,0,0,84,80,0,0,7986,8007,168, - 0,0,0,115,97,118,101,0,2049,4640,3841,7995,1,7858,17,2049,3204,16,1,7995, - 2049,3920,10,7996,8033,168,0,0,0,110,101,120,116,0,1793,8039,3841,7844,17,10, - 1,8035,2049,2279,10,8022,8056,168,0,0,0,100,111,110,101,63,0,2049,104,2049, - 2781,10,7641,8088,168,20738,9213749861880762729,19591,115,58,116,111,107,101,110,105,122,101,45,111, - 110,45,115,116,114,105,110,103,0,1,0,4097,7995,1793,8102,2,1,7706,2049,5780, - 2049,4887,10,1,8094,1793,8111,2049,104,4097,7844,10,1,8106,2049,2294,1793,8128,1,7706, - 2049,7499,2049,8007,2049,8033,2049,8056,10,1,8117,2049,2443,1,7858,3841,7995,2049,3219,4097, - 7858,772,10,8061,8155,156,0,0,0,83,116,114,105,110,103,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,8142,8238,168,0,0,0,99,104,101,99,107,45,115,105,103,110,0,2049, - 2822,1793,8247,1,45,2049,4197,10,1,8242,9,10,8221,8266,168,0,0,0,110,45, - 62,100,105,103,105,116,0,2049,5803,17,15,10,8251,8285,168,0,0,0,99,111, - 110,118,101,114,116,0,1793,8299,3841,248,20,4,2049,8266,2049,4197,2,2049,2781,10, - 1,8287,2049,2443,3,10,8061,8332,168,0,-3499893649969689757,13253,110,58,116,111,45,115,116,114, - 105,110,103,47,114,101,118,101,114,115,101,100,0,1793,8346,1,8155,2049,4301,2, - 2049,3163,2049,8285,2049,8238,10,1,8334,2049,4328,1,8155,10,8305,8371,168,20738,-4562752463999572364,18228, - 110,58,116,111,45,115,116,114,105,110,103,0,2049,8332,2049,4761,10,8353,8387,168, - 0,0,0,99,104,97,114,0,1,32,1793,8396,1,95,2049,4197,10,1,8391,2049, - 2606,1,114,1793,8409,1,13,2049,4197,10,1,8404,2049,2606,1,110,1793,8422,1,10, - 2049,4197,10,1,8417,2049,2606,1,116,1793,8435,1,9,2049,4197,10,1,8430,2049,2606, - 1,48,1793,8448,1,0,2049,4197,10,1,8443,2049,2606,1,94,1793,8461,1,27,2049, - 4197,10,1,8456,2049,2606,2049,4197,10,8376,8479,168,0,0,0,116,121,112,101,0, - 1,99,1793,8487,4,2049,4197,10,1,8483,2049,2606,1,115,1793,8501,4,1,4197,2049, - 4908,10,1,8495,2049,2606,1,110,1793,8517,4,2049,8371,1,4197,2049,4908,10,1,8509, - 2049,2606,3,10,8468,8536,168,0,0,0,104,97,110,100,108,101,0,1,92,1793, - 8545,2049,58,2049,8387,10,1,8540,2049,2606,1,37,1793,8558,2049,58,2049,8479,10,1, - 8553,2049,2606,2049,4197,10,8353,8580,168,20738,7572864928505531,19099,115,58,102,111,114,109,97,116, - 0,1793,8609,2049,4589,1793,8604,2049,4301,1793,8599,2049,58,25,2049,8536,1,8590,7,10, - 1,8590,8,3,10,1,8586,2049,2279,10,1,8582,2049,4328,10,8565,8628,168,20738,229480751847353, - 18791,115,58,99,111,110,115,116,0,1,4640,2049,2266,2049,2161,10,8614,8648,156,0, - 0,0,86,97,108,117,101,115,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8635,8687,168, - 0,0,0,102,114,111,109,0,2049,104,2,1793,8705,1793,8698,1,8648,4113,10,1, - 8694,2049,2279,2049,3219,10,1,8692,2049,2497,3,10,8676,8720,168,0,0,0,116,111, - 0,2,2049,104,1793,8736,2049,58,1,97,18,2049,3204,1,8648,266001,10,1,8725,2049, - 2497,3,10,8614,8756,168,20738,229481157528792,18494,114,101,111,114,100,101,114,0,1,8687,2049, - 2266,2049,8720,10,8742,8775,168,20738,210709288570,16568,99,117,114,114,121,0,2049,2001,1793,8785, - 4,2049,1834,2049,1860,10,1,8779,2049,2266,10,8763,8801,168,20738,6385158928,16992,100,111,101, - 115,0,2049,1599,4,2049,8775,2049,1579,2049,182,16,1,168,2049,1667,10,8790,8833,168, - 20738,8246153734800721448,16680,100,58,102,111,114,45,101,97,99,104,0,1,2,1793,8846,6415,2049, - 2253,134481157,1542,1,8837,7,10,1,8837,8,3,10,8816,8869,168,20738,-4578079420196310922,16827,100,58, - 108,111,111,107,117,112,45,120,116,0,1,0,4,1793,8894,2049,2253,2049,182,2831, - 1793,8887,4,1,2205,2049,2266,10,1,8881,1,17,2049,66,10,1,8874,2049,8833,3, - 10,8851,8909,168,20738,5863407,17394,103,99,0,1,3,4,2049,4029,10,8900,8930,168,20738, - 7572098019335426,15079,97,58,108,101,110,103,116,104,0,15,10,8915,8947,168,20738,7572098062851599,15137,97, - 58,109,105,100,100,108,101,0,2049,2001,1793,8970,2,2049,130,1793,8960,2049,3204,17, - 10,1,8956,2049,2266,2049,2001,4,2049,4075,10,1,8951,2049,2266,10,8932,8988,168,20738, - 6953258052395,15059,97,58,108,101,102,116,0,1,0,4,2049,8947,10,8975,9008,168,20738,229457522989118, - 15218,97,58,114,105,103,104,116,0,67502597,2049,8930,67502597,18,4,2049,8947,10,8994,9041, - 168,20738,9069136730318539537,14766,97,58,99,111,117,110,116,101,100,45,114,101,115,117,108,116, - 115,0,8,2049,2001,1793,9054,2,2049,130,1,130,2049,2497,10,1,9046,2049,2266,10, - 9017,9079,168,20738,8526436589641133048,14922,97,58,102,114,111,109,45,115,116,114,105,110,103,0, - 2049,2001,1793,9093,2,2049,104,2049,130,1,130,2049,4908,10,1,9083,2049,2266,10,9059, - 9115,168,20738,8246014500347515589,14903,97,58,102,111,114,45,101,97,99,104,0,4,2049,58,1, - 19,2049,2266,1793,9131,5,2049,58,84018692,525572,1542,10,1,9124,2049,2497,771,10,9098,9149, - 168,20738,210704781289,14785,97,58,100,117,112,0,2049,2001,1793,9162,2,15,2049,130,1,130, - 2049,9115,10,1,9153,2049,2266,10,9137,9180,168,20738,6953257740187,14747,97,58,99,111,112,121, - 0,1,3,1793,9196,4097,3,2,2049,8930,2049,130,1,130,2049,9115,10,1,9184,2049, - 4029,10,9167,9219,168,20738,-4582662990808010201,15297,97,58,116,111,45,115,116,114,105,110,103,0, - 1,3,1793,9232,2049,9149,1,0,2049,130,2049,3204,10,1,9223,2049,4029,2049,4558,10, - 9201,9254,168,20738,7572097601960728,14648,97,58,97,112,112,101,110,100,0,2049,2253,1,37,2049, - 2326,17,2049,2001,1793,9279,2049,130,1793,9274,1,130,2049,9115,10,1,9269,2049,2326,10, - 1,9265,2049,2266,10,9239,9300,168,20738,249879240302335150,15158,97,58,112,114,101,112,101,110,100, - 0,4,2049,9254,10,9284,9317,168,20738,6953257732522,14688,97,58,99,104,111,112,0,2049,9149, - 1,-1,2049,4007,2,2049,3938,10,9304,9342,168,20738,7572097789208550,14864,97,58,102,105,108,116, - 101,114,0,1793,9357,67502597,1,27,2049,2266,4,1,130,1,17,2049,66,10,1,9344, - 2049,8775,2049,2001,1793,9372,67502597,15,2049,130,2049,9115,10,1,9365,2049,2266,2049,2001,67502597, - 18,2049,3219,67502597,16,10,9327,9403,168,20738,-4582686815792817282,14727,97,58,99,111,110,116,97,105, - 110,115,63,0,1,0,4,1793,9415,4,5,67502597,11,6,22,10,1,9408,2049,9115, - 772,10,9385,9446,168,20738,-3160266450763725308,14707,97,58,99,111,110,116,97,105,110,115,47,115, - 116,114,105,110,103,63,0,1,0,4,1793,9459,4,5,67502597,2049,118,6,22,10, - 1,9451,2049,9115,772,10,9421,9477,168,20738,210704790430,15117,97,58,109,97,112,0,4,1793, - 9507,2049,58,1793,9501,1793,9490,15,67502597,8,10,1,9486,2049,2279,1,39,2049,2279,2049, - 3204,10,1,9484,2049,2497,771,10,1,9480,2049,2279,10,9465,9528,168,20738,249879242396290652,15199,97, - 58,114,101,118,101,114,115,101,0,2049,2001,1793,9562,2049,58,1793,9540,17,2049,3219, - 10,1,9536,2049,2279,2,2049,130,1793,9556,2,15,2049,130,2049,3219,10,1,9549,2049, - 2497,3,10,1,9532,2049,2266,10,9512,9578,168,20738,6384993884,15277,97,58,116,104,0,17, - 2049,3204,10,9567,9596,168,20738,229457508628298,14844,97,58,102,101,116,99,104,0,2049,9578,15, - 10,9582,9614,168,20738,229457524579373,15238,97,58,115,116,111,114,101,0,2049,9578,16,10,9600, - 9632,168,20738,229457508770408,14884,97,58,102,105,114,115,116,0,1,0,2049,9596,10,9618,9650, - 168,20738,6953258048468,15040,97,58,108,97,115,116,0,2,2049,8930,2049,3219,2049,9596,10,9637, - 9673,168,20738,7572098253803096,15178,97,58,114,101,100,117,99,101,0,1,19,2049,2266,2049,9115, - 10,9658,9691,168,20738,6384048135,14342,70,82,69,69,0,2049,4402,1,1025,18,1,513,1, - 12,19,18,2049,2001,18,10,9680,9722,156,0,0,0,78,101,120,116,65,114,114, - 97,121,0,10,9706,9736,168,0,0,0,97,114,114,97,121,115,0,2049,9691,2049, - 2001,17,10,9680,9755,168,20738,6953258340118,15258,97,58,116,101,109,112,0,3841,9722,2,1, - 12,11,1793,9770,3,1,0,2,4097,9722,10,1,9763,9,1,513,19,2049,9736,17, - 67502597,2049,8930,2049,3204,2049,4075,3841,9722,1,513,19,2049,9736,17,1,9722,2049,3920,10, - 9742,9811,156,0,0,0,67,111,117,110,116,0,3,9799,9826,168,0,0,0,112, - 114,101,112,97,114,101,0,1,0,1,9811,16,10,9812,9846,168,0,0,0,114, - 101,115,101,114,118,101,0,4,1,0,2049,130,10,9832,9864,168,0,0,0,112, - 97,116,99,104,0,2049,2001,67502597,18,2049,3219,67502597,16,10,9852,9887,168,0,0,0, - 99,108,101,97,110,117,112,0,2,2049,9755,4,1,3,16,10,9873,9908,168,0, - 0,0,114,101,99,111,114,100,0,3841,9811,2049,130,10,9895,9929,168,0,0,0, - 105,116,101,114,97,116,101,47,110,0,1793,9941,67502597,11,1,9908,9,1,9811,2049, - 3920,10,1,9931,2049,9115,10,9913,9962,168,0,0,0,105,116,101,114,97,116,101, - 47,115,0,1793,9975,67502597,2049,118,1,9908,9,1,9811,2049,3920,10,1,9964,2049,9115, - 10,9742,9996,168,20738,249879231104077855,15000,97,58,105,110,100,105,99,101,115,0,2049,9826,2049, - 2001,1793,10008,2049,9846,2049,9929,3,10,1,10002,2049,2266,2049,9864,2049,9887,10,9980,10040, - 168,20738,6001861788990794213,15020,97,58,105,110,100,105,99,101,115,47,115,116,114,105,110,103, - 0,2049,9826,2049,2001,1793,10052,2049,9846,2049,9962,3,10,1,10046,2049,2266,2049,9864,2049, - 9887,10,10017,10075,168,20738,229457512492152,14960,97,58,105,110,100,101,120,0,1793,10084,2049,9996, - 1,0,2049,9596,10,1,10077,2049,8909,10,10061,10110,168,20738,4816227687043827742,14980,97,58,105,110, - 100,101,120,47,115,116,114,105,110,103,0,1793,10119,2049,10040,1,0,2049,9596,10, - 1,10112,2049,8909,10,10089,10137,168,20738,6953258084126,15098,97,58,109,97,107,101,0,2049,9041, - 2,2,1,3,1793,10148,2049,9528,10,1,10145,2049,4029,4,2049,9180,10,10124,10164,180, - 20738,177696,20600,123,0,1,344,2049,180,1,1562,2049,168,1,344,2049,180,10,10156,10185, - 180,20738,177698,20634,125,0,1,360,2049,180,1,2266,2049,168,1,1562,2049,168,1,19, - 2049,174,1,43,2049,174,1,3219,2049,168,1,360,2049,180,1,10137,2049,168,10,10177, - 10231,168,20738,6953257904708,14941,97,58,104,97,115,104,0,1,5381,4,1793,10242,4,1,33, - 19,17,10,1,10236,2049,9115,10,10218,10259,168,20738,210704782197,14824,97,58,101,113,63,0, - 2049,10231,4,2049,10231,11,10,10247,10279,168,20738,6953255788674,14628,97,58,45,101,113,63,0, - 2049,10231,4,2049,10231,12,10,10266,10307,168,20738,4448793249567199488,14668,97,58,98,101,103,105,110, - 115,45,119,105,116,104,63,0,1,3,1793,10323,2,2049,8930,1,19,2049,2266,2049, - 8988,2049,10259,10,1,10311,2049,4029,10,10286,10347,168,20738,-3654621344420884174,14804,97,58,101,110,100, - 115,45,119,105,116,104,63,0,1,3,1793,10363,2,2049,8930,1,19,2049,2266,2049, - 9008,2049,10259,10,1,10351,2049,4029,10,10328,10385,156,0,0,0,83,117,98,115,116, - 105,116,117,116,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,8958,9115,156,0,0,0,200,200,0,76,101,110,0,0,9102,9132,156, + 0,0,0,200,200,0,84,111,107,101,110,115,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,10368,10527,168,0,0,0, - 101,120,116,114,97,99,116,0,1,10385,2049,5780,10,10513,10546,168,0,0,0,99, - 111,109,98,105,110,101,0,1,10385,2049,4887,2049,4887,10,10532,10568,168,0,0,0, - 102,105,110,100,45,101,110,100,0,2,2049,104,1,10385,2049,104,18,67502597,17,10, - 10553,10591,168,0,0,0,99,108,101,97,110,0,2049,10568,1,0,4,16,10,10328, - 10618,168,20738,1672736740201773236,19335,115,58,114,101,112,108,97,99,101,45,97,108,108,0,1, - 3,1793,10641,2049,10527,2049,8088,2049,4589,4,1793,10634,2049,10546,10,1,10631,2049,9115,2049, - 10591,10,1,10622,2049,4029,10,10598,10665,168,0,0,0,99,117,114,114,101,110,116, - 45,108,105,110,101,0,2049,4402,1,1025,18,10,10646,10690,168,0,0,0,99,111, - 117,110,116,45,116,111,107,101,110,115,0,1793,10696,1,32,11,10,1,10692,2049, - 5525,2049,104,10,10671,10724,168,0,0,0,112,114,111,99,101,115,115,45,116,111, - 107,101,110,115,0,1793,10752,1,32,2049,7464,4,1793,10745,2,2049,104,2049,2800,1, - 422,1,17,2049,66,10,1,10733,2049,2266,2049,3204,10,1,10726,2049,2497,2049,422,10, - 10598,10776,168,20738,8246849872898570441,19020,115,58,101,118,97,108,117,97,116,101,0,2049,10665,2049, - 5780,2049,10665,2,2049,10690,2049,10724,10,10759,10797,156,0,0,0,76,80,0,0,10788, - 10810,156,0,0,0,73,110,100,101,120,0,0,15,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,10798,10853,168,0,0,0,110,101,120,116,0,3841,10797,1,10810,17,2049, - 3920,10,10842,10872,168,0,0,0,112,114,101,112,0,1,10797,2049,3920,1,0,3841, - 10797,1,10810,17,16,10,10861,10896,168,0,0,0,100,111,110,101,0,1,10797,2049, - 3938,10,10759,10909,168,20738,177646,14378,73,0,3841,10797,1,10810,17,15,10,10901,10924,168, - 20738,177647,14414,74,0,3841,10797,1,10810,17,2049,3219,15,10,10916,10941,168,20738,177648,14432, - 75,0,3841,10797,1,10810,17,1,2,18,15,10,10933,10971,168,20738,6047344052022463093,17655,105,110, - 100,101,120,101,100,45,116,105,109,101,115,0,2049,10872,4,1793,10987,25,33886721,1, - 2053,1542,2049,10853,1,10976,7,10,1,10976,8,3,2049,10896,10,10951,11008,168,20738,229463062432404, - 16937,100,101,99,105,109,97,108,0,1,10,4097,248,10,10994,11026,168,20738,6953352993994,15549, - 98,105,110,97,114,121,0,1,2,4097,248,10,11013,11043,168,20738,210722874360,18322,111,99, - 116,97,108,0,1,8,4097,248,10,11031,11058,168,20738,193493706,17548,104,101,120,0,1, - 16,4097,248,10,11048,11075,168,20738,210731100046,20461,118,97,114,45,115,0,1,4640,2049,2266, - 2049,2130,10,11063,11101,168,20738,-2634409250251928459,20068,116,97,105,108,45,114,101,99,117,114,115, - 101,0,1,1793,2049,2001,1,3,18,16,10,11082,11121,168,20738,6385224492,17166,102,105,108, - 108,0,1793,11129,2049,2253,16,2049,3204,10,1,11123,2049,2497,771,10,11110,11154,168,20738, - -3171118726347914531,17692,105,111,58,101,110,117,109,101,114,97,116,101,0,27,10,11135,11171,168, - 20738,7572505472392333,17728,105,111,58,113,117,101,114,121,0,28,10,11156,11189,168,20738,249892680268169699,17710, - 105,111,58,105,110,118,111,107,101,0,29,10,11173,11209,168,20738,-4568031882453442320,17748,105,111, - 58,115,99,97,110,45,102,111,114,0,1,-1,4,2049,11154,1793,11240,2049,10909,2049, - 11171,772,67502597,11,1793,11236,1793,11231,3,2049,10909,10,1,11227,2049,2266,10,1,11225,9, - 10,1,11216,2049,10971,3,10,11191,11258,168,20738,210707166203,15953,99,58,112,117,116,0,1793, - 11260,1,0,2049,11189,10,11246,11274,168,20738,5863647,18286,110,108,0,1,10,2049,11258,10, - 11265,11288,168,20738,5863816,19974,115,112,0,1,32,2049,11258,10,11279,11303,168,20738,193506620,20051, - 116,97,98,0,1,9,2049,11258,10,11293,11320,168,20738,210726140939,19296,115,58,112,117,116, - 0,1,11258,2049,4908,10,11308,11337,168,20738,210720211334,18153,110,58,112,117,116,0,2049,8332, - 2,2049,104,1,41,2049,2279,2049,3204,1793,11357,2,15,2049,11258,2049,3219,10,1,11350, - 2049,2497,3,10,11325,11375,168,20738,210726503048,18534,114,101,115,101,116,0,2049,1562,25,771, - 1,11375,7,10,11363,11400,168,20738,8246237009912977886,17047,100,117,109,112,45,115,116,97,99,107, - 0,2049,1562,25,134284547,11400,134283782,11337,2049,11288,10,11383,11420,168,20738,193470948,14504,84,73,66, - 0,1,7,15,10,1793,11463,2049,4611,69,82,82,79,82,58,32,87,111,114,100, - 32,78,111,116,32,70,111,117,110,100,58,32,0,1,11428,2049,11320,2049,11420,2049, - 11320,2049,11274,10,1,11426,11410,11477,168,20738,210707155874,15897,99,58,103,101,116,0,1793,11479, - 1,1,2049,11209,2049,11189,10,11465,11496,168,20738,193487813,15709,98,121,101,0,26,10,11486, - 11513,156,20738,7571133383038306,14396,73,103,110,111,114,105,110,103,0,0,11498,11524,156,0,0, - 0,69,79,84,0,0,11514,11539,168,0,0,0,118,101,114,115,105,111,110,0, - 3841,4,1,100,20,10,11525,11557,168,0,0,0,100,111,110,101,63,0,2,4097, - 11524,1793,11566,1,13,11,10,1,11562,1793,11574,1,10,11,10,1,11570,1793,11582,1, - 32,11,10,1,11578,2049,2340,22,22,10,11545,11600,168,0,0,0,101,111,108,63, - 0,3841,11524,1793,11608,1,13,11,10,1,11604,1793,11616,1,10,11,10,1,11612,2049, - 2294,22,10,11589,11635,168,0,0,0,118,97,108,105,100,63,0,2,2049,104,2049, - 2875,10,11622,11657,168,0,0,0,99,104,101,99,107,45,101,111,102,0,2,1793, - 11664,1,-1,11,10,1,11660,1793,11672,1,4,11,10,1,11668,2049,2294,22,1,11496, - 9,10,11641,11690,168,0,0,0,98,115,0,2049,4278,1,2,2049,2731,1793,11702,2049, - 4224,3,10,1,11698,9,2049,4224,3,10,11681,11724,168,0,0,0,99,104,101,99, - 107,45,98,115,0,2,1793,11731,1,8,11,10,1,11727,1793,11739,1,127,11,10, - 1,11735,2049,2294,22,1,11690,9,10,11709,11760,168,0,0,0,99,104,101,99,107, - 0,2049,11657,2049,11724,10,11748,11781,168,0,0,0,99,104,97,114,97,99,116,101, - 114,0,2049,11477,2,2049,4197,10,11765,11800,168,0,0,0,98,117,102,102,101,114, - 0,1793,11810,2049,11420,2049,4301,8,2049,4157,10,1,11802,2049,4328,10,11787,11832,168,0, - 0,0,114,101,97,100,45,116,111,107,101,110,0,1793,11848,1793,11843,2049,11781,2049, - 11760,2049,11557,10,1,11836,2049,2443,10,1,11834,2049,11800,2049,4731,10,11815,11867,168,0, - 0,0,105,110,112,117,116,0,2049,11832,2049,11635,10,11855,11886,168,0,0,0,112, - 114,111,99,101,115,115,0,3841,11513,1793,11904,771,2049,11600,1793,11900,1,11513,2049,3991, - 10,1,11895,9,10,1,11890,2049,2928,1,422,1,17,2049,66,10,11498,11932,168,20738, - 8246849936849447419,19121,115,58,103,101,116,45,119,111,114,100,0,1793,11960,1,7,15,2049,4301, - 1793,11951,2049,11477,2,2049,4197,2049,11724,2049,11557,10,1,11941,2049,2443,2049,4157,2049,4731, - 10,1,11934,2049,4328,10,11915,11978,168,20738,6953343520347,15468,98,97,110,110,101,114,0,2049, - 11539,2049,4611,82,69,84,82,79,32,49,50,32,40,37,110,46,37,110,41,92, - 110,0,1,11982,2049,8580,2049,11320,2049,9691,2049,1546,2049,9691,18,2049,1546,2049,4611,37, - 110,32,77,97,120,44,32,37,110,32,85,115,101,100,44,32,37,110,32,70, - 114,101,101,92,110,0,1,12018,2049,8580,2049,11320,10,11965,12065,168,20738,6953744547860,17767,108, - 105,115,116,101,110,0,2049,11978,2049,11867,2049,11886,1,12067,7,10,12052,12097,156,20738, - -213800119713087686,16606,100,58,72,97,115,104,45,70,117,110,99,116,105,111,110,0,5044,12075, - 12113,168,20738,7572226109254526,16865,100,58,114,101,104,97,115,104,0,1793,12131,1793,12123,2049,192, - 3841,12097,8,10,1,12117,2049,2279,2049,188,16,10,1,12115,2049,8833,10,12098,2,156, - 20724,210668957237,14217,66,85,73,76,68,0,12136,12160,168,12654,210709067314,16402,99,111,109,109,97, - 0,2049,130,10,12148,12174,168,12654,6385123288,16509,99,111,110,115,0,2049,2001,1793,12184,4, - 2049,12160,2049,12160,10,1,12178,2049,2266,10,12163,12199,168,12654,193488123,16160,99,97,114,0, - 10,12189,12210,168,12654,193488222,16246,99,100,114,0,2049,3204,10,12200,12224,168,12654,6385108123,16198, - 99,97,114,64,0,2049,12199,15,10,12213,12239,168,12654,6385108092,16179,99,97,114,33,0, - 2049,12199,16,10,12228,12254,168,12654,6385111390,16284,99,100,114,64,0,2049,12210,15,10,12243, - 12269,168,12654,6385111359,16265,99,100,114,33,0,2049,12210,16,10,12258,12283,168,12654,193454780,14289, - 69,78,68,0,10,12273,12301,168,12654,8246317064958091121,17205,102,108,108,58,99,114,101,97,116, - 101,0,1,12283,2049,12174,10,12284,12314,156,0,177687,0,114,0,29451,12284,12332,168,12654, - 8246317065617826724,17337,102,108,108,58,116,111,45,101,110,100,0,2,4097,12314,1793,12357,2049,12254, - 2,1,12283,12,2,1793,12350,67502597,4097,12314,10,1,12346,1,2205,2049,66,10,1,12337, - 2049,2417,3841,12314,10,12315,12387,168,12654,4204933718218055169,17186,102,108,108,58,97,112,112,101,110, - 100,47,118,97,108,117,101,0,1,12283,2049,12174,4,2049,12332,2049,12269,10,12364,12416, - 168,12654,-3325079438733587419,17356,102,108,108,58,116,111,45,105,110,100,101,120,0,1,12254,2049, - 2497,10,12397,12435,168,12654,229465928290674,17224,102,108,108,58,100,101,108,0,2049,2253,2049,3219, - 2049,12416,1793,12448,2049,3204,2049,12416,10,1,12443,2049,2266,2049,12269,10,12421,12468,156,0, - 6952054634723,0,65,99,116,105,111,110,0,12832,12421,12488,168,12654,-3325080032762929022,17261,102,108,108,58, - 102,111,114,45,101,97,99,104,0,4097,12468,1793,12511,1793,12500,2049,12224,3841,12468,8, - 10,1,12494,2049,2279,2049,12254,2,1,12283,12,10,1,12492,2049,2417,3,10,12469,12534, - 168,12654,8246317065295222655,17300,102,108,108,58,108,101,110,103,116,104,0,1,0,4,1793,12543, - 3,2049,3204,10,1,12539,2049,12488,2049,3219,10,12517,12565,168,12654,7572375633606610,17243,102,108,108, - 58,100,114,111,112,0,2,2049,12534,2049,3219,2049,12416,1,12283,4,2049,12269,10,12550, - 12586,156,0,177678,0,105,0,0,12550,12604,168,12654,8246317065188343290,17280,102,108,108,58,105,110, - 106,101,99,116,0,2049,12301,4097,12586,2049,2253,2049,3219,2049,12416,1,12416,2049,2266,3841, - 12586,4,2049,12269,3841,12586,2049,12269,10,12587,12642,168,12654,229465928304278,17319,102,108,108,58,112, - 117,116,0,1793,12649,2049,11337,2049,11288,10,1,12644,2049,12488,10,105,110,116,101,114, - 102,97,99,101,47,108,108,46,114,101,116,114,111,0,105,110,105,116,0,12673, - 12923,12628,12699,156,12901,-2744922491217532500,18888,115,58,100,101,100,117,112,46,100,97,116,97,0, - 12678,12680,12709,156,0,5863786,0,116,49,0,522752,12700,12719,156,0,5863787,0,116,50,0, - 30448,12680,12743,168,12901,-1192507208876296873,18944,115,58,100,101,100,117,112,46,114,101,103,105,115, - 116,101,114,0,2049,4640,3841,12699,4,1,12387,2049,2279,10,12720,12776,168,12901,-1192507805573830048,18906, - 115,58,100,101,100,117,112,46,100,101,102,105,110,101,100,63,0,4097,12709,1, - 0,4097,12719,3841,12699,1793,12796,3841,12709,2049,118,3841,12719,22,4097,12719,10,1,12786,2049, - 12488,3841,12719,10,12753,12822,168,12901,-2744922491217452109,18925,115,58,100,101,100,117,112,46,102,105, - 110,100,0,4097,12709,1,0,4097,12719,3841,12699,1793,12849,2,3841,12709,2049,118,1793,12842, - 4097,12719,10,1,12839,1,17,2049,66,10,1,12832,2049,12488,3841,12719,10,12803,12870,168, - 12901,229480752663076,18869,115,58,100,101,100,117,112,0,2049,4558,2,2049,12776,1,12822,1,12743, - 2049,66,10,12856,12898,168,12901,249904561963058472,19668,115,58,117,110,105,113,117,101,63,0,2049, - 12776,10,105,110,116,101,114,102,97,99,101,47,100,101,100,117,112,46,114,101, - 116,114,111,0,12901,20722,12882,12936,168,0,6385683284,0,115,97,118,101,0,2049,3204,2049, - 4731,2049,2001,4,2049,4640,1,17,2049,174,1,2,17,2049,1648,2049,3219,16,10,12925, - 12979,168,0,3501352175510017786,0,115,116,97,99,107,45,99,111,109,109,101,110,116,63,0, - 2,1,0,2049,4698,1,58,11,10,12882,13002,180,0,229482595734751,19821,115,105,103,105,108, - 58,40,0,2049,12979,1,12936,1,17,2049,66,10,12988,13028,168,0,8246153636752806788,13030,100,58, - 100,101,115,99,114,105,98,101,0,2049,4611,115,45,0,1,13030,3,2049,241,2049, - 11274,2,2049,4611,78,97,109,101,58,32,32,32,32,0,1,13043,2049,11320,2049,192, - 2049,11320,2049,11274,2,2049,4611,65,100,100,114,101,115,115,58,32,0,1,13066,2049, - 11320,2049,182,15,2049,11337,2049,11274,2,2049,4611,67,108,97,115,115,58,32,32,32, - 0,1,13090,2049,11320,2049,184,15,2,2049,11337,2049,8869,2,2049,2800,1793,13124,2049,11288, - 2049,192,2049,11320,10,1,13117,1,17,2049,66,2049,11274,2,2049,4611,83,111,117,114, - 99,101,58,32,32,0,1,13135,2049,11320,2049,186,15,2,2049,2800,1,11320,1,17, - 2049,66,2049,11274,2,2049,4611,83,116,97,99,107,58,32,32,32,0,1,13166,2049, - 11320,2049,190,15,2,2049,2800,1,11320,1,17,2049,66,2049,11274,3,10,13011,13222,168, - 0,3142032362620974322,13224,100,58,115,101,116,45,115,116,97,99,107,45,99,111,109,109,101, - 110,116,0,2049,4611,115,115,45,0,1,13224,3,2049,241,2,2049,2800,1793,13246,2049, - 190,1,4640,2049,2266,16,10,1,13238,1,2223,2049,66,10,110,45,115,0,115,45, - 115,0,115,45,115,102,0,45,0,97,45,97,0,68,58,32,45,99,32,32, - 65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,115,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,45,32,32,65,58,32,45,32, - 32,70,58,32,45,0,68,58,32,45,32,32,65,58,32,45,32,32,70,58, - 32,45,0,68,58,32,110,110,45,110,32,32,65,58,32,45,32,32,70,58, - 32,45,0,68,58,32,110,110,45,110,32,32,65,58,32,45,32,32,70,58, - 32,45,0,68,58,32,110,45,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,110,110,45,110,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,110,110,45,102,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,102,113,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, - 102,113,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110, - 109,45,118,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110, - 109,45,114,118,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, - 110,45,110,32,124,124,32,110,45,32,32,65,58,32,45,32,32,70,58,32, - 45,0,68,58,32,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68, - 58,32,110,45,110,110,32,124,124,32,110,45,110,32,32,65,58,32,45,32, + 0,9116,9272,156,0,0,0,200,200,0,84,80,0,0,9260,9287,168,0,0,0, + 200,200,0,115,97,118,101,0,2049,5557,3841,9272,1,9132,17,2049,3953,16,1,9272, + 2049,4744,10,9273,9316,168,0,0,0,200,200,0,110,101,120,116,0,1793,9322,3841, + 9115,17,10,1,9318,2049,2905,10,9302,9342,168,0,0,0,200,200,0,100,111,110, + 101,63,0,2049,104,2049,3470,10,8903,9377,168,22627,9213749861880762729,21477,200,200,0,115,58,116, + 111,107,101,110,105,122,101,45,111,110,45,115,116,114,105,110,103,0,1,0, + 4097,9272,1793,9391,2,1,8974,2049,6805,2049,5825,10,1,9383,1793,9400,2049,104,4097,9115, + 10,1,9395,2049,2923,1793,9417,1,8974,2049,8746,2049,9287,2049,9316,2049,9342,10,1,9406, + 2049,3093,1,9132,3841,9272,2049,3971,4097,9132,772,10,9347,9447,156,0,0,0,200,200, + 0,83,116,114,105,110,103,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,9431,9533,168,0,0,0, + 200,200,0,99,104,101,99,107,45,115,105,103,110,0,2049,3517,1793,9542,1,45, + 2049,5063,10,1,9537,9,10,9513,9564,168,0,0,0,200,200,0,110,45,62,100, + 105,103,105,116,0,2049,6831,17,15,10,9546,9586,168,0,0,0,200,200,0,99, + 111,110,118,101,114,116,0,1793,9600,3841,265,20,4,2049,9564,2049,5063,2,2049,3470, + 10,1,9588,2049,3093,3,10,9347,9636,168,0,-3499893649969689757,15139,200,200,0,110,58,116,111, + 45,115,116,114,105,110,103,47,114,101,118,101,114,115,101,100,0,1793,9650,1, + 9447,2049,5179,2,2049,3906,2049,9586,2049,9533,10,1,9638,2049,5209,1,9447,10,9606,9678, + 168,22627,-4562752463999572364,20114,200,200,0,110,58,116,111,45,115,116,114,105,110,103,0,2049, + 9636,2049,5693,10,9657,9697,168,0,0,0,200,200,0,99,104,97,114,0,1,32, + 1793,9706,1,95,2049,5063,10,1,9701,2049,3274,1,114,1793,9719,1,13,2049,5063,10, + 1,9714,2049,3274,1,110,1793,9732,1,10,2049,5063,10,1,9727,2049,3274,1,116,1793, + 9745,1,9,2049,5063,10,1,9740,2049,3274,1,48,1793,9758,1,0,2049,5063,10,1, + 9753,2049,3274,1,94,1793,9771,1,27,2049,5063,10,1,9766,2049,3274,2049,5063,10,9683, + 9792,168,0,0,0,200,200,0,116,121,112,101,0,1,99,1793,9800,4,2049,5063, + 10,1,9796,2049,3274,1,115,1793,9814,4,1,5063,2049,5849,10,1,9808,2049,3274,1, + 110,1793,9830,4,2049,9678,1,5063,2049,5849,10,1,9822,2049,3274,3,10,9778,9852,168, + 0,0,0,200,200,0,104,97,110,100,108,101,0,1,92,1793,9861,2049,58,2049, + 9697,10,1,9856,2049,3274,1,37,1793,9874,2049,58,2049,9792,10,1,9869,2049,3274,2049, + 5063,10,9657,9899,168,22627,7572864928505531,20985,200,200,0,115,58,102,111,114,109,97,116,0, + 1793,9928,2049,5500,1793,9923,2049,5179,1793,9918,2049,58,25,2049,9852,1,9909,7,10,1, + 9909,8,3,10,1,9905,2049,2905,10,1,9901,2049,5209,10,9881,9950,168,22627,229480751847353,20677, + 200,200,0,115,58,99,111,110,115,116,0,1,5557,2049,2889,2049,2763,10,9933,9973, + 156,0,0,0,200,200,0,86,97,108,117,101,115,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,9957,10015,168,0,0,0,200,200,0,102,114,111,109,0,2049,104,2,1793, + 10033,1793,10026,1,9973,4113,10,1,10022,2049,2905,2049,3971,10,1,10020,2049,3153,3,10, + 10001,10051,168,0,0,0,200,200,0,116,111,0,2,2049,104,1793,10067,2049,58,1, + 97,18,2049,3953,1,9973,266001,10,1,10056,2049,3153,3,10,9933,10090,168,22627,229481157528792,20380, + 200,200,0,114,101,111,114,100,101,114,0,1,10015,2049,2889,2049,10051,10,10073,10112, + 168,22627,210709288570,18454,200,200,0,99,117,114,114,121,0,2049,2585,1793,10122,4,2049,2394, + 2049,2423,10,1,10116,2049,2889,10,10097,10141,168,22627,6385158928,18878,200,200,0,100,111,101, + 115,0,2049,2123,4,2049,10112,2049,2100,2049,182,16,1,168,2049,2200,10,10127,10176,168, + 22627,8246153734800721448,18566,200,200,0,100,58,102,111,114,45,101,97,99,104,0,1,2,1793, + 10189,6415,2049,2873,134481157,1542,1,10180,7,10,1,10180,8,3,10,10156,10215,168,22627,-4578079420196310922, + 18713,200,200,0,100,58,108,111,111,107,117,112,45,120,116,0,1,0,4,1793, + 10240,2049,2873,2049,182,2831,1793,10233,4,1,2816,2049,2889,10,1,10227,1,17,2049,66, + 10,1,10220,2049,10176,3,10,10194,10258,168,22627,5863407,19280,200,200,0,103,99,0,1, + 3,4,2049,4871,10,10246,10282,168,22627,7572098019335426,16965,200,200,0,97,58,108,101,110,103, + 116,104,0,15,10,10264,10302,168,22627,7572098062851599,17023,200,200,0,97,58,109,105,100,100, + 108,101,0,2049,2585,1793,10325,2,2049,130,1793,10315,2049,3953,17,10,1,10311,2049,2889, + 2049,2585,4,2049,4923,10,1,10306,2049,2889,10,10284,10346,168,22627,6953258052395,16945,200,200,0, + 97,58,108,101,102,116,0,1,0,4,2049,10302,10,10330,10369,168,22627,229457522989118,17104,200, + 200,0,97,58,114,105,103,104,116,0,67502597,2049,10282,67502597,18,4,2049,10302,10,10352, + 10405,168,22627,9069136730318539537,16652,200,200,0,97,58,99,111,117,110,116,101,100,45,114,101, + 115,117,108,116,115,0,8,2049,2585,1793,10418,2,2049,130,1,130,2049,3153,10,1, + 10410,2049,2889,10,10378,10446,168,22627,8526436589641133048,16808,200,200,0,97,58,102,114,111,109,45, + 115,116,114,105,110,103,0,2049,2585,1793,10460,2,2049,104,2049,130,1,130,2049,5849, + 10,1,10450,2049,2889,10,10423,10485,168,22627,8246014500347515589,16789,200,200,0,97,58,102,111,114, + 45,101,97,99,104,0,4,2049,58,1,19,2049,2889,1793,10501,5,2049,58,84018692,525572, + 1542,10,1,10494,2049,3153,771,10,10465,10522,168,22627,210704781289,16671,200,200,0,97,58,100, + 117,112,0,2049,2585,1793,10535,2,15,2049,130,1,130,2049,10485,10,1,10526,2049,2889, + 10,10507,10556,168,22627,6953257740187,16633,200,200,0,97,58,99,111,112,121,0,1,3,1793, + 10572,4097,3,2,2049,10282,2049,130,1,130,2049,10485,10,1,10560,2049,4871,10,10540,10598, + 168,22627,-4582662990808010201,17183,200,200,0,97,58,116,111,45,115,116,114,105,110,103,0,1, + 3,1793,10611,2049,10522,1,0,2049,130,2049,3953,10,1,10602,2049,4871,2049,5466,10,10577, + 10636,168,22627,7572097601960728,16534,200,200,0,97,58,97,112,112,101,110,100,0,2049,2873,1, + 37,2049,2961,17,2049,2585,1793,10661,2049,130,1793,10656,1,130,2049,10485,10,1,10651,2049, + 2961,10,1,10647,2049,2889,10,10618,10685,168,22627,249879240302335150,17044,200,200,0,97,58,112,114, + 101,112,101,110,100,0,4,2049,10636,10,10666,10705,168,22627,6953257732522,16574,200,200,0,97, + 58,99,104,111,112,0,2049,10522,1,-1,2049,4846,2,2049,4765,10,10689,10733,168,22627, + 7572097789208550,16750,200,200,0,97,58,102,105,108,116,101,114,0,1793,10748,67502597,1,27,2049, + 2889,4,1,130,1,17,2049,66,10,1,10735,2049,10112,2049,2585,1793,10763,67502597,15,2049, + 130,2049,10485,10,1,10756,2049,2889,2049,2585,67502597,18,2049,3971,67502597,16,10,10715,10797,168, + 22627,-4582686815792817282,16613,200,200,0,97,58,99,111,110,116,97,105,110,115,63,0,1,0, + 4,1793,10809,4,5,67502597,11,6,22,10,1,10802,2049,10485,772,10,10776,10843,168,22627, + -3160266450763725308,16593,200,200,0,97,58,99,111,110,116,97,105,110,115,47,115,116,114,105, + 110,103,63,0,1,0,4,1793,10856,4,5,67502597,2049,118,6,22,10,1,10848,2049, + 10485,772,10,10815,10877,168,22627,210704790430,17003,200,200,0,97,58,109,97,112,0,4,1793, + 10907,2049,58,1793,10901,1793,10890,15,67502597,8,10,1,10886,2049,2905,1,39,2049,2905,2049, + 3953,10,1,10884,2049,3153,771,10,1,10880,2049,2905,10,10862,10931,168,22627,249879242396290652,17085,200, + 200,0,97,58,114,101,118,101,114,115,101,0,2049,2585,1793,10965,2049,58,1793,10943, + 17,2049,3971,10,1,10939,2049,2905,2,2049,130,1793,10959,2,15,2049,130,2049,3971,10, + 1,10952,2049,3153,3,10,1,10935,2049,2889,10,10912,10984,168,22627,6384993884,17163,200,200,0, + 97,58,116,104,0,17,2049,3953,10,10970,11005,168,22627,229457508628298,16730,200,200,0,97,58, + 102,101,116,99,104,0,2049,10984,15,10,10988,11026,168,22627,229457524579373,17124,200,200,0,97, + 58,115,116,111,114,101,0,2049,10984,16,10,11009,11047,168,22627,229457508770408,16770,200,200,0, + 97,58,102,105,114,115,116,0,1,0,2049,11005,10,11030,11068,168,22627,6953258048468,16926,200, + 200,0,97,58,108,97,115,116,0,2,2049,10282,2049,3971,2049,11005,10,11052,11094,168, + 22627,7572098253803096,17064,200,200,0,97,58,114,101,100,117,99,101,0,1,19,2049,2889,2049, + 10485,10,11076,11115,168,22627,6384048135,16228,200,200,0,70,82,69,69,0,2049,5292,1,1025, + 18,1,513,1,12,19,18,2049,2585,18,10,11101,11149,156,0,0,0,200,200,0, + 78,101,120,116,65,114,114,97,121,0,10,11130,11166,168,0,0,0,200,200,0, + 97,114,114,97,121,115,0,2049,11115,2049,2585,17,10,11101,11188,168,22627,6953258340118,17144,200, + 200,0,97,58,116,101,109,112,0,3841,11149,2,1,12,11,1793,11203,3,1,0, + 2,4097,11149,10,1,11196,9,1,513,19,2049,11166,17,67502597,2049,10282,2049,3953,2049,4923, + 3841,11149,1,513,19,2049,11166,17,1,11149,2049,4744,10,11172,11247,156,0,0,0,200, + 200,0,67,111,117,110,116,0,3,11232,11265,168,0,0,0,200,200,0,112,114, + 101,112,97,114,101,0,1,0,1,11247,16,10,11248,11288,168,0,0,0,200,200, + 0,114,101,115,101,114,118,101,0,4,1,0,2049,130,10,11271,11309,168,0,0, + 0,200,200,0,112,97,116,99,104,0,2049,2585,67502597,18,2049,3971,67502597,16,10,11294, + 11335,168,0,0,0,200,200,0,99,108,101,97,110,117,112,0,2,2049,11188,4, + 1,3,16,10,11318,11359,168,0,0,0,200,200,0,114,101,99,111,114,100,0, + 3841,11247,2049,130,10,11343,11383,168,0,0,0,200,200,0,105,116,101,114,97,116, + 101,47,110,0,1793,11395,67502597,11,1,11359,9,1,11247,2049,4744,10,1,11385,2049,10485, + 10,11364,11419,168,0,0,0,200,200,0,105,116,101,114,97,116,101,47,115,0, + 1793,11432,67502597,2049,118,1,11359,9,1,11247,2049,4744,10,1,11421,2049,10485,10,11172,11456, + 168,22627,249879231104077855,16886,200,200,0,97,58,105,110,100,105,99,101,115,0,2049,11265,2049, + 2585,1793,11468,2049,11288,2049,11383,3,10,1,11462,2049,2889,2049,11309,2049,11335,10,11437,11503, + 168,22627,6001861788990794213,16906,200,200,0,97,58,105,110,100,105,99,101,115,47,115,116,114, + 105,110,103,0,2049,11265,2049,2585,1793,11515,2049,11288,2049,11419,3,10,1,11509,2049,2889, + 2049,11309,2049,11335,10,11477,11541,168,22627,229457512492152,16846,200,200,0,97,58,105,110,100,101, + 120,0,1793,11550,2049,11456,1,0,2049,11005,10,1,11543,2049,10258,10,11524,11579,168,22627, + 4816227687043827742,16866,200,200,0,97,58,105,110,100,101,120,47,115,116,114,105,110,103,0, + 1793,11588,2049,11503,1,0,2049,11005,10,1,11581,2049,10258,10,11555,11609,168,22627,6953258084126,16984, + 200,200,0,97,58,109,97,107,101,0,2049,10405,2,2,1,3,1793,11620,2049,10931, + 10,1,11617,2049,4871,4,2049,10556,10,11593,11639,180,22627,177696,22486,200,200,0,123,0, + 1,361,2049,180,1,2080,2049,168,1,361,2049,180,10,11628,11663,180,22627,177698,22520,200, + 200,0,125,0,1,377,2049,180,1,2889,2049,168,1,2080,2049,168,1,19,2049,174, + 1,43,2049,174,1,3971,2049,168,1,377,2049,180,1,11609,2049,168,10,11652,11712,168, + 22627,6953257904708,16827,200,200,0,97,58,104,97,115,104,0,1,5381,4,1793,11723,4,1, + 33,19,17,10,1,11717,2049,10485,10,11696,11743,168,22627,210704782197,16710,200,200,0,97,58, + 101,113,63,0,2049,11712,4,2049,11712,11,10,11728,11766,168,22627,6953255788674,16514,200,200,0, + 97,58,45,101,113,63,0,2049,11712,4,2049,11712,12,10,11750,11797,168,22627,4448793249567199488,16554, + 200,200,0,97,58,98,101,103,105,110,115,45,119,105,116,104,63,0,1,3, + 1793,11813,2,2049,10282,1,19,2049,2889,2049,10346,2049,11743,10,1,11801,2049,4871,10,11773, + 11840,168,22627,-3654621344420884174,16690,200,200,0,97,58,101,110,100,115,45,119,105,116,104,63, + 0,1,3,1793,11856,2,2049,10282,1,19,2049,2889,2049,10369,2049,11743,10,1,11844,2049, + 4871,10,11818,11881,156,0,0,0,200,200,0,83,117,98,115,116,105,116,117,116, + 101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,11861,12026,168,0,0,0,200,200,0,101, + 120,116,114,97,99,116,0,1,11881,2049,6805,10,12009,12048,168,0,0,0,200,200, + 0,99,111,109,98,105,110,101,0,1,11881,2049,5825,2049,5825,10,12031,12073,168,0, + 0,0,200,200,0,102,105,110,100,45,101,110,100,0,2,2049,104,1,11881,2049, + 104,18,67502597,17,10,12055,12099,168,0,0,0,200,200,0,99,108,101,97,110,0, + 2049,12073,1,0,4,16,10,11818,12129,168,22627,1672736740201773236,21221,200,200,0,115,58,114,101, + 112,108,97,99,101,45,97,108,108,0,1,3,1793,12152,2049,12026,2049,9377,2049,5500, + 4,1793,12145,2049,12048,10,1,12142,2049,10485,2049,12099,10,1,12133,2049,4871,10,12106,12179, + 168,0,0,0,200,200,0,99,117,114,114,101,110,116,45,108,105,110,101,0, + 2049,5292,1,1025,18,10,12157,12207,168,0,0,0,200,200,0,99,111,117,110,116, + 45,116,111,107,101,110,115,0,1793,12213,1,32,11,10,1,12209,2049,6529,2049,104, + 10,12185,12244,168,0,0,0,200,200,0,112,114,111,99,101,115,115,45,116,111, + 107,101,110,115,0,1793,12272,1,32,2049,8708,4,1793,12265,2,2049,104,2049,3492,1, + 439,1,17,2049,66,10,1,12253,2049,2889,2049,3953,10,1,12246,2049,3153,2049,439,10, + 12106,12299,168,22627,8246849872898570441,20906,200,200,0,115,58,101,118,97,108,117,97,116,101,0, + 2049,12179,2049,6805,2049,12179,2,2049,12207,2049,12244,10,12279,12323,156,0,0,0,200,200, + 0,76,80,0,0,12311,12339,156,0,0,0,200,200,0,73,110,100,101,120,0, + 0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,12324,12385,168,0,0,0,200,200, + 0,110,101,120,116,0,3841,12323,1,12339,17,2049,4744,10,12371,12407,168,0,0,0, + 200,200,0,112,114,101,112,0,1,12323,2049,4744,1,0,3841,12323,1,12339,17,16, + 10,12393,12434,168,0,0,0,200,200,0,100,111,110,101,0,1,12323,2049,4765,10, + 12279,12450,168,22627,177646,16264,200,200,0,73,0,3841,12323,1,12339,17,15,10,12439,12468, + 168,22627,177647,16300,200,200,0,74,0,3841,12323,1,12339,17,2049,3971,15,10,12457,12488, + 168,22627,177648,16318,200,200,0,75,0,3841,12323,1,12339,17,1,2,18,15,10,12477, + 12521,168,22627,6047344052022463093,19541,200,200,0,105,110,100,101,120,101,100,45,116,105,109,101, + 115,0,2049,12407,4,1793,12537,25,33886721,1,2053,1542,2049,12385,1,12526,7,10,1,12526, + 8,3,2049,12434,10,12498,12561,168,22627,229463062432404,18823,200,200,0,100,101,99,105,109,97, + 108,0,1,10,4097,265,10,12544,12582,168,22627,6953352993994,17435,200,200,0,98,105,110,97, + 114,121,0,1,2,4097,265,10,12566,12602,168,22627,210722874360,20208,200,200,0,111,99,116, + 97,108,0,1,8,4097,265,10,12587,12620,168,22627,193493706,19434,200,200,0,104,101,120, + 0,1,16,4097,265,10,12607,12640,168,22627,210731100046,22347,200,200,0,118,97,114,45,115, + 0,1,5557,2049,2889,2049,2726,10,12625,12669,168,22627,-2634409250251928459,21954,200,200,0,116,97,105, + 108,45,114,101,99,117,114,115,101,0,1,1793,2049,2585,1,3,18,16,10,12647, + 12692,168,22627,6385224492,19052,200,200,0,102,105,108,108,0,1793,12700,2049,2873,16,2049,3953, + 10,1,12694,2049,3153,771,10,12678,12728,168,22627,-3171118726347914531,19578,200,200,0,105,111,58,101, + 110,117,109,101,114,97,116,101,0,27,10,12706,12748,168,22627,7572505472392333,19614,200,200,0, + 105,111,58,113,117,101,114,121,0,28,10,12730,12769,168,22627,249892680268169699,19596,200,200,0, + 105,111,58,105,110,118,111,107,101,0,29,10,12750,12792,168,22627,-4568031882453442320,19634,200,200, + 0,105,111,58,115,99,97,110,45,102,111,114,0,1,-1,4,2049,12728,1793,12823, + 2049,12450,2049,12748,772,67502597,11,1793,12819,1793,12814,3,2049,12450,10,1,12810,2049,2889,10, + 1,12808,9,10,1,12799,2049,12521,3,10,12771,12844,168,22627,210707166203,17839,200,200,0,99, + 58,112,117,116,0,1793,12846,1,0,2049,12769,10,12829,12863,168,22627,5863647,20172,200,200, + 0,110,108,0,1,10,2049,12844,10,12851,12880,168,22627,5863816,21860,200,200,0,115,112, + 0,1,32,2049,12844,10,12868,12898,168,22627,193506620,21937,200,200,0,116,97,98,0,1, + 9,2049,12844,10,12885,12918,168,22627,210726140939,21182,200,200,0,115,58,112,117,116,0,1, + 12844,2049,5849,10,12903,12938,168,22627,210720211334,20039,200,200,0,110,58,112,117,116,0,2049, + 9636,2,2049,104,1,41,2049,2905,2049,3953,1793,12958,2,15,2049,12844,2049,3971,10,1, + 12951,2049,3153,3,10,12923,12979,168,22627,210726503048,20420,200,200,0,114,101,115,101,116,0, + 2049,2080,25,771,1,12979,7,10,12964,13007,168,22627,8246237009912977886,18933,200,200,0,100,117,109, + 112,45,115,116,97,99,107,0,2049,2080,25,134284547,13007,134283782,12938,2049,12880,10,12987,13030, + 168,22627,193470948,16390,200,200,0,84,73,66,0,1,7,15,10,1793,13073,2049,5525,69, + 82,82,79,82,58,32,87,111,114,100,32,78,111,116,32,70,111,117,110,100, + 58,32,0,1,13038,2049,12918,2049,13030,2049,12918,2049,12863,10,1,13036,13017,13090,168,22627, + 210707155874,17783,200,200,0,99,58,103,101,116,0,1793,13092,1,1,2049,12792,2049,12769,10, + 13075,13112,168,22627,193487813,17595,200,200,0,98,121,101,0,26,10,13099,13132,156,22627,7571133383038306, + 16282,200,200,0,73,103,110,111,114,105,110,103,0,0,13114,13146,156,0,0,0, + 200,200,0,69,79,84,0,0,13133,13164,168,0,0,0,200,200,0,118,101,114, + 115,105,111,110,0,3841,4,1,100,20,10,13147,13185,168,0,0,0,200,200,0, + 100,111,110,101,63,0,2,4097,13146,1793,13194,1,13,11,10,1,13190,1793,13202,1, + 10,11,10,1,13198,1793,13210,1,32,11,10,1,13206,2049,2978,22,22,10,13170,13231, + 168,0,0,0,200,200,0,101,111,108,63,0,3841,13146,1793,13239,1,13,11,10, + 1,13235,1793,13247,1,10,11,10,1,13243,2049,2923,22,10,13217,13269,168,0,0,0, + 200,200,0,118,97,108,105,100,63,0,2,2049,104,2049,3576,10,13253,13294,168,0, + 0,0,200,200,0,99,104,101,99,107,45,101,111,102,0,2,1793,13301,1,-1, + 11,10,1,13297,1793,13309,1,4,11,10,1,13305,2049,2923,22,1,13112,9,10,13275, + 13330,168,0,0,0,200,200,0,98,115,0,2049,5153,1,2,2049,3411,1793,13342,2049, + 5093,3,10,1,13338,9,2049,5093,3,10,13318,13367,168,0,0,0,200,200,0,99, + 104,101,99,107,45,98,115,0,2,1793,13374,1,8,11,10,1,13370,1793,13382,1, + 127,11,10,1,13378,2049,2923,22,1,13330,9,10,13349,13406,168,0,0,0,200,200, + 0,99,104,101,99,107,0,2049,13294,2049,13367,10,13391,13430,168,0,0,0,200,200, + 0,99,104,97,114,97,99,116,101,114,0,2049,13090,2,2049,5063,10,13411,13452,168, + 0,0,0,200,200,0,98,117,102,102,101,114,0,1793,13462,2049,13030,2049,5179,8, + 2049,5017,10,1,13454,2049,5209,10,13436,13487,168,0,0,0,200,200,0,114,101,97, + 100,45,116,111,107,101,110,0,1793,13503,1793,13498,2049,13430,2049,13406,2049,13185,10,1, + 13491,2049,3093,10,1,13489,2049,13452,2049,5660,10,13467,13525,168,0,0,0,200,200,0, + 105,110,112,117,116,0,2049,13487,2049,13269,10,13510,13547,168,0,0,0,200,200,0, + 112,114,111,99,101,115,115,0,3841,13132,1793,13565,771,2049,13231,1793,13561,1,13132,2049, + 4827,10,1,13556,9,10,1,13551,2049,3638,1,439,1,17,2049,66,10,13114,13596,168, + 22627,8246849936849447419,21007,200,200,0,115,58,103,101,116,45,119,111,114,100,0,1793,13624,1, + 7,15,2049,5179,1793,13615,2049,13090,2,2049,5063,2049,13367,2049,13185,10,1,13605,2049,3093, + 2049,5017,2049,5660,10,1,13598,2049,5209,10,13576,13645,168,22627,6953343520347,17354,200,200,0,98, + 97,110,110,101,114,0,2049,13164,2049,5525,82,69,84,82,79,32,49,50,32,40, + 37,110,46,37,110,41,92,110,0,1,13649,2049,9899,2049,12918,2049,11115,2049,2061,2049, + 11115,18,2049,2061,2049,5525,37,110,32,77,97,120,44,32,37,110,32,85,115,101, + 100,44,32,37,110,32,70,114,101,101,92,110,0,1,13685,2049,9899,2049,12918,10, + 13629,13735,168,22627,6953744547860,19653,200,200,0,108,105,115,116,101,110,0,2049,13645,2049,13525, + 2049,13547,1,13737,7,10,13719,13770,156,22627,-213800119713087686,18492,200,200,0,100,58,72,97,115, + 104,45,70,117,110,99,116,105,111,110,0,5994,13745,13789,168,22627,7572226109254526,18751,200,200, + 0,100,58,114,101,104,97,115,104,0,1793,13807,1793,13799,2049,198,3841,13770,8,10, + 1,13793,2049,2905,2049,188,16,10,1,13791,2049,10176,10,13771,2,156,22613,210668957237,16103,200, + 200,0,66,85,73,76,68,0,13812,13842,168,14399,210709067314,18288,200,200,0,99,111,109, + 109,97,0,2049,130,10,13827,13859,168,14399,6385123288,18395,200,200,0,99,111,110,115,0, + 2049,2585,1793,13869,4,2049,13842,2049,13842,10,1,13863,2049,2889,10,13845,13887,168,14399,193488123, + 18046,200,200,0,99,97,114,0,10,13874,13901,168,14399,193488222,18132,200,200,0,99,100, + 114,0,2049,3953,10,13888,13918,168,14399,6385108123,18084,200,200,0,99,97,114,64,0,2049, + 13887,15,10,13904,13936,168,14399,6385108092,18065,200,200,0,99,97,114,33,0,2049,13887,16, + 10,13922,13954,168,14399,6385111390,18170,200,200,0,99,100,114,64,0,2049,13901,15,10,13940, + 13972,168,14399,6385111359,18151,200,200,0,99,100,114,33,0,2049,13901,16,10,13958,13989,168, + 14399,193454780,16175,200,200,0,69,78,68,0,10,13976,14010,168,14399,8246317064958091121,19091,200,200,0, + 102,108,108,58,99,114,101,97,116,101,0,1,13989,2049,13859,10,13990,14026,156,0, + 177687,0,200,200,0,114,0,32039,13990,14047,168,14399,8246317065617826724,19223,200,200,0,102,108,108, + 58,116,111,45,101,110,100,0,2,4097,14026,1793,14072,2049,13954,2,1,13989,12,2, + 1793,14065,67502597,4097,14026,10,1,14061,1,2816,2049,66,10,1,14052,2049,3064,3841,14026,10, + 14027,14105,168,14399,4204933718218055169,19072,200,200,0,102,108,108,58,97,112,112,101,110,100,47, + 118,97,108,117,101,0,1,13989,2049,13859,4,2049,14047,2049,13972,10,14079,14137,168,14399, + -3325079438733587419,19242,200,200,0,102,108,108,58,116,111,45,105,110,100,101,120,0,1,13954, + 2049,3153,10,14115,14159,168,14399,229465928290674,19110,200,200,0,102,108,108,58,100,101,108,0, + 2049,2873,2049,3971,2049,14137,1793,14172,2049,3953,2049,14137,10,1,14167,2049,2889,2049,13972,10, + 14142,14195,156,0,6952054634723,0,200,200,0,65,99,116,105,111,110,0,14595,14142,14218,168, + 14399,-3325080032762929022,19147,200,200,0,102,108,108,58,102,111,114,45,101,97,99,104,0,4097, + 14195,1793,14241,1793,14230,2049,13918,3841,14195,8,10,1,14224,2049,2905,2049,13954,2,1,13989, + 12,10,1,14222,2049,3064,3,10,14196,14267,168,14399,8246317065295222655,19186,200,200,0,102,108,108, + 58,108,101,110,103,116,104,0,1,0,4,1793,14276,3,2049,3953,10,1,14272,2049, + 14218,2049,3971,10,14247,14301,168,14399,7572375633606610,19129,200,200,0,102,108,108,58,100,114,111, + 112,0,2,2049,14267,2049,3971,2049,14137,1,13989,4,2049,13972,10,14283,14325,156,0,177678, + 0,200,200,0,105,0,0,14283,14346,168,14399,8246317065188343290,19166,200,200,0,102,108,108,58, + 105,110,106,101,99,116,0,2049,14010,4097,14325,2049,2873,2049,3971,2049,14137,1,14137,2049, + 2889,3841,14325,4,2049,13972,3841,14325,2049,13972,10,14326,14387,168,14399,229465928304278,19205,200,200,0, + 102,108,108,58,112,117,116,0,1793,14394,2049,12938,2049,12880,10,1,14389,2049,14218,10, + 105,110,116,101,114,102,97,99,101,47,108,108,46,114,101,116,114,111,0,105, + 110,105,116,0,14418,14692,14370,14447,156,14670,-2744922491217532500,20774,200,200,0,115,58,100,101,100, + 117,112,46,100,97,116,97,0,14423,14425,14460,156,0,5863786,0,200,200,0,116,49, + 0,507904,14448,14473,156,0,5863787,0,200,200,0,116,50,0,33090,14425,14500,168,14670,-1192507208876296873, + 20830,200,200,0,115,58,100,101,100,117,112,46,114,101,103,105,115,116,101,114, + 0,2049,5557,3841,14447,4,1,14105,2049,2905,10,14474,14536,168,14670,-1192507805573830048,20792,200,200,0, + 115,58,100,101,100,117,112,46,100,101,102,105,110,101,100,63,0,4097,14460,1, + 0,4097,14473,3841,14447,1793,14556,3841,14460,2049,118,3841,14473,22,4097,14473,10,1,14546,2049, + 14218,3841,14473,10,14510,14585,168,14670,-2744922491217452109,20811,200,200,0,115,58,100,101,100,117,112, + 46,102,105,110,100,0,4097,14460,1,0,4097,14473,3841,14447,1793,14612,2,3841,14460,2049, + 118,1793,14605,4097,14473,10,1,14602,1,17,2049,66,10,1,14595,2049,14218,3841,14473,10, + 14563,14636,168,14670,229480752663076,20755,200,200,0,115,58,100,101,100,117,112,0,2049,5466,2, + 2049,14536,1,14585,1,14500,2049,66,10,14619,14667,168,14670,249904561963058472,21554,200,200,0,115,58, + 117,110,105,113,117,101,63,0,2049,14536,10,105,110,116,101,114,102,97,99,101, + 47,100,101,100,117,112,46,114,101,116,114,111,0,14670,22611,14648,14708,168,0,6385683284, + 0,200,200,0,115,97,118,101,0,2049,3953,2049,5660,2049,2585,4,2049,5557,1,17, + 2049,174,1,2,17,2049,2178,1,4,18,16,10,14694,14755,168,0,3501352175510017786,0,200,200, + 0,115,116,97,99,107,45,99,111,109,109,101,110,116,63,0,2,1,0,2049, + 5621,1,58,11,10,14648,14781,180,0,229482595734751,21707,200,200,0,115,105,103,105,108,58, + 40,0,2049,14755,1,14708,1,17,2049,66,10,14764,14810,168,0,8246153636752806788,14812,200,200,0, + 100,58,100,101,115,99,114,105,98,101,0,2049,5525,115,45,0,1,14812,3,2049, + 258,2049,12863,2,2049,5525,78,97,109,101,58,32,32,32,32,32,0,1,14825,2049, + 12918,2049,198,2049,12918,2049,12863,2,2049,5525,65,100,100,114,101,115,115,58,32,32, + 0,1,14849,2049,12918,2049,182,15,2049,12938,2049,12863,2,2049,5525,67,108,97,115,115, + 58,32,32,32,32,0,1,14874,2049,12918,2049,184,15,2,2049,12938,2049,10215,2,2049, + 3492,1793,14909,2049,12880,2049,198,2049,12918,10,1,14902,1,17,2049,66,2049,12863,2,2049, + 5525,83,111,117,114,99,101,58,32,32,32,0,1,14920,2049,12918,2049,186,15,2, + 2049,3492,1,12918,1,17,2049,66,2049,12863,2,2049,5525,83,116,97,99,107,58,32, + 32,32,32,0,1,14952,2049,12918,2049,190,15,2,2049,3492,1,12918,1,17,2049,66, + 2049,12863,2,2049,5525,65,46,32,83,116,97,99,107,58,32,0,1,14984,2049,12918, + 2049,192,15,2,2049,3492,1,12918,1,17,2049,66,2049,12863,2,2049,5525,70,108,111, + 97,116,58,32,32,32,32,0,1,15016,2049,12918,2049,194,15,2,2049,3492,1,12918, + 1,17,2049,66,2049,12863,2,2049,5525,68,101,115,99,114,58,32,32,32,32,0, + 1,15048,2049,12918,2049,196,15,2,2049,3492,1,12918,1,17,2049,66,2049,12863,3,10, + 14790,15108,168,0,3142032362620974322,15110,200,200,0,100,58,115,101,116,45,115,116,97,99,107, + 45,99,111,109,109,101,110,116,0,2049,5525,115,115,45,0,1,15110,3,2049,258, + 2,2049,3492,1793,15132,2049,190,1,5557,2049,2889,16,10,1,15124,1,2837,2049,66,10, + 110,45,115,0,115,45,115,0,115,45,115,102,0,45,0,97,45,97,0,68, + 58,32,45,99,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, + 45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,32, + 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,32,32,65,58, + 32,45,32,32,70,58,32,45,0,68,58,32,110,110,45,110,32,32,65,58, + 32,45,32,32,70,58,32,45,0,68,58,32,110,110,45,110,32,32,65,58, + 32,45,32,32,70,58,32,45,0,68,58,32,110,45,32,32,65,58,32,45, + 32,32,70,58,32,45,0,68,58,32,110,110,45,110,32,32,65,58,32,45, + 32,32,70,58,32,45,0,68,58,32,45,32,32,65,58,32,45,32,32,70, + 58,32,45,0,68,58,32,110,110,45,102,32,32,65,58,32,45,32,32,70, + 58,32,45,0,68,58,32,102,113,45,32,32,65,58,32,45,32,32,70,58, + 32,45,0,68,58,32,102,113,45,32,32,65,58,32,45,32,32,70,58,32, + 45,0,68,58,32,110,109,45,118,32,32,65,58,32,45,32,32,70,58,32, + 45,0,68,58,32,110,109,45,114,118,32,32,65,58,32,45,32,32,70,58, + 32,45,0,68,58,32,110,45,110,32,124,124,32,110,45,32,32,65,58,32, + 45,32,32,70,58,32,45,0,68,58,32,45,32,32,65,58,32,45,32,32, + 70,58,32,45,0,68,58,32,110,45,110,110,32,124,124,32,110,45,110,32, + 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,110,32,32,65, + 58,32,45,32,32,70,58,32,45,0,68,58,32,45,110,32,32,65,58,32, + 45,32,32,70,58,32,45,0,68,58,32,45,110,32,32,65,58,32,45,32, 32,70,58,32,45,0,68,58,32,45,110,32,32,65,58,32,45,32,32,70, 58,32,45,0,68,58,32,45,110,32,32,65,58,32,45,32,32,70,58,32, 45,0,68,58,32,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0, @@ -720,893 +817,934 @@ CELL ngaImage[] = { 1793,12065,31911,31961,202409,422,394,1333,1535,0,12113,0,10 45,32,32,70,58,32,45,0,68,58,32,45,110,32,32,65,58,32,45,32, 32,70,58,32,45,0,68,58,32,45,110,32,32,65,58,32,45,32,32,70, 58,32,45,0,68,58,32,45,110,32,32,65,58,32,45,32,32,70,58,32, - 45,0,68,58,32,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0, - 68,58,32,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45, - 97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,97,32, - 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,97,32,32,65, - 58,32,45,32,32,70,58,32,45,0,68,58,32,45,32,32,65,58,32,45, + 45,0,68,58,32,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0, + 68,58,32,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, + 32,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,97,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,110,32,32,65,58, + 32,45,32,32,70,58,32,45,0,68,58,32,45,110,32,32,65,58,32,45, 32,32,70,58,32,45,0,68,58,32,45,97,32,32,65,58,32,45,32,32, 70,58,32,45,0,68,58,32,45,110,32,32,65,58,32,45,32,32,70,58, - 32,45,0,68,58,32,45,110,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68, + 32,45,0,68,58,32,45,97,32,32,65,58,32,45,32,32,70,58,32,45, + 0,68,58,32,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68, 58,32,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, - 45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,110, - 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,110,32,32, + 45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,97, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,97,32,32, 65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,97,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,45,97,32,32,65,58,32,45, + 32,45,32,32,70,58,32,45,0,68,58,32,45,110,32,32,65,58,32,45, 32,32,70,58,32,45,0,68,58,32,45,97,32,32,65,58,32,45,32,32, 70,58,32,45,0,68,58,32,45,97,32,32,65,58,32,45,32,32,70,58, - 32,45,0,68,58,32,45,110,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68, - 58,32,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, - 45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,32, - 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,97,97,45,102,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,97,97,45,97,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,97,97,45,102,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,97,45,97,32,32,65,58,32, - 45,32,32,70,58,32,45,0,68,58,32,115,97,45,102,32,32,65,58,32, - 45,32,32,70,58,32,45,0,68,58,32,110,97,45,102,32,32,65,58,32, - 45,32,32,70,58,32,45,0,68,58,32,97,97,45,32,32,65,58,32,45, - 32,32,70,58,32,45,0,68,58,32,113,45,97,32,32,65,58,32,45,32, + 32,45,0,68,58,32,45,97,32,32,65,58,32,45,32,32,70,58,32,45, + 0,68,58,32,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, + 32,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,97, + 45,102,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,97, + 45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,97, + 45,102,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45, + 97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,97,45, + 102,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,97,45, + 102,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,97,45, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,113,45,97,32, + 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45,98,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,97,45,102,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,97,45,102,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,110,45,110,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,113,45,98,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45,110,32,32,65, + 58,32,45,32,32,70,58,32,45,0,68,58,32,97,113,45,32,32,65,58, + 32,45,32,32,70,58,32,45,0,68,58,32,115,45,97,32,32,65,58,32, + 45,32,32,70,58,32,45,0,68,58,32,97,45,110,32,32,65,58,32,45, + 32,32,70,58,32,45,0,68,58,32,97,110,45,110,32,32,65,58,32,45, + 32,32,70,58,32,45,0,68,58,32,97,115,45,110,32,32,65,58,32,45, + 32,32,70,58,32,45,0,68,58,32,97,118,45,97,32,32,65,58,32,45, + 32,32,70,58,32,45,0,68,58,32,97,115,45,97,32,32,65,58,32,45, + 32,32,70,58,32,45,0,68,58,32,97,45,110,32,32,65,58,32,45,32, + 32,70,58,32,45,0,68,58,32,97,110,45,97,32,32,65,58,32,45,32, + 32,70,58,32,45,0,68,58,32,97,45,110,32,32,65,58,32,45,32,32, + 70,58,32,45,0,68,58,32,113,45,97,32,32,65,58,32,45,32,32,70, + 58,32,45,0,68,58,32,97,113,45,98,32,32,65,58,32,45,32,32,70, + 58,32,45,0,68,58,32,97,102,108,45,97,32,32,65,58,32,45,32,32, + 70,58,32,45,0,68,58,32,97,97,45,97,32,32,65,58,32,45,32,32, + 70,58,32,45,0,68,58,32,112,110,113,45,110,32,32,65,58,32,45,32, 32,70,58,32,45,0,68,58,32,97,45,98,32,32,65,58,32,45,32,32, - 70,58,32,45,0,68,58,32,97,97,45,102,32,32,65,58,32,45,32,32, - 70,58,32,45,0,68,58,32,97,97,45,102,32,32,65,58,32,45,32,32, - 70,58,32,45,0,68,58,32,97,110,45,110,32,32,65,58,32,45,32,32, - 70,58,32,45,0,68,58,32,97,113,45,98,32,32,65,58,32,45,32,32, - 70,58,32,45,0,68,58,32,97,45,110,32,32,65,58,32,45,32,32,70, - 58,32,45,0,68,58,32,97,113,45,32,32,65,58,32,45,32,32,70,58, - 32,45,0,68,58,32,115,45,97,32,32,65,58,32,45,32,32,70,58,32, - 45,0,68,58,32,97,45,110,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,97,110,45,110,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,97,115,45,110,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,97,118,45,97,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,97,115,45,97,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,97,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0, - 68,58,32,97,110,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0, - 68,58,32,97,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68, - 58,32,113,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,97,113,45,98,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,97,102,108,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68, - 58,32,97,97,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68, - 58,32,112,110,113,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0, - 68,58,32,97,45,98,32,32,65,58,32,45,32,32,70,58,32,45,0,68, - 58,32,97,110,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68, - 58,32,118,97,110,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68, - 58,32,97,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,97,110,45,98,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,97,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, - 45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,45,32, - 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,109,45,111,32, - 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45,110,32,32, - 65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45,97,110,32,32, - 65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,97,45,32,32,65, - 58,32,45,32,32,70,58,32,45,0,68,58,32,110,97,45,97,32,32,65, - 58,32,45,32,32,70,58,32,45,0,68,58,32,97,45,97,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,45,32,32,65,58,32,45,32, - 32,70,58,32,45,0,68,58,32,120,113,113,45,63,32,32,65,58,32,45, - 32,32,70,58,32,45,0,68,58,32,120,121,113,113,45,63,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,120,121,113,45,63,32,32,65, - 58,32,45,32,32,70,58,32,45,0,68,58,32,45,32,32,65,58,32,45, - 32,32,70,58,32,45,0,68,58,32,110,45,32,32,65,58,32,45,32,32, - 70,58,32,45,0,68,58,32,45,32,32,65,58,32,45,32,32,70,58,32, - 45,0,68,58,32,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0, + 70,58,32,45,0,68,58,32,97,110,45,97,32,32,65,58,32,45,32,32, + 70,58,32,45,0,68,58,32,118,97,110,45,32,32,65,58,32,45,32,32, + 70,58,32,45,0,68,58,32,97,45,97,32,32,65,58,32,45,32,32,70, + 58,32,45,0,68,58,32,97,110,45,98,32,32,65,58,32,45,32,32,70, + 58,32,45,0,68,58,32,97,45,115,32,32,65,58,32,45,32,32,70,58, + 32,45,0,68,58,32,45,32,32,65,58,32,45,32,32,70,58,32,45,0, + 68,58,32,110,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, + 32,110,109,45,111,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, + 32,97,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, + 97,45,97,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, + 110,97,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110, + 97,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97, + 45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,32, + 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,120,113,113,45,63, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,120,121,113,113, + 45,63,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,120,121, + 113,45,63,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,45,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,32,32,65,58,32, + 45,32,32,70,58,32,45,0,68,58,32,45,97,32,32,65,58,32,45,32, + 32,70,58,32,45,0,68,58,32,45,110,32,32,65,58,32,45,32,32,70, + 58,32,45,0,68,58,32,113,45,32,32,65,58,32,45,32,32,70,58,32, + 45,0,68,58,32,97,45,32,32,65,58,32,45,32,32,70,58,32,45,0, 68,58,32,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,113,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97, - 45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,110,32, - 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,97,32,32,65, - 58,32,45,32,32,70,58,32,45,0,68,58,32,45,32,32,65,58,32,45, + 32,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,99,45,102,32, + 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,99,45,102,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,99,45,102,32,32,65, + 58,32,45,32,32,70,58,32,45,0,68,58,32,99,45,102,32,32,65,58, + 32,45,32,32,70,58,32,45,0,68,58,32,99,45,102,32,32,65,58,32, + 45,32,32,70,58,32,45,0,68,58,32,99,45,102,32,32,65,58,32,45, 32,32,70,58,32,45,0,68,58,32,99,45,102,32,32,65,58,32,45,32, 32,70,58,32,45,0,68,58,32,99,45,102,32,32,65,58,32,45,32,32, 70,58,32,45,0,68,58,32,99,45,102,32,32,65,58,32,45,32,32,70, - 58,32,45,0,68,58,32,99,45,102,32,32,65,58,32,45,32,32,70,58, - 32,45,0,68,58,32,99,45,102,32,32,65,58,32,45,32,32,70,58,32, + 58,32,45,0,68,58,32,45,99,32,32,65,58,32,45,32,32,70,58,32, 45,0,68,58,32,99,45,102,32,32,65,58,32,45,32,32,70,58,32,45, 0,68,58,32,99,45,102,32,32,65,58,32,45,32,32,70,58,32,45,0, - 68,58,32,99,45,102,32,32,65,58,32,45,32,32,70,58,32,45,0,68, - 58,32,99,45,102,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,45,99,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,99, - 45,102,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,99,45, - 102,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,99,45,32, - 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,99,45,99,32,32, - 65,58,32,45,32,32,70,58,32,45,0,68,58,32,99,45,110,32,32,65, - 58,32,45,32,32,70,58,32,45,0,68,58,32,99,45,115,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,99,45,99,32,32,65,58,32, - 45,32,32,70,58,32,45,0,68,58,32,99,45,99,32,32,65,58,32,45, - 32,32,70,58,32,45,0,68,58,32,99,45,102,32,32,65,58,32,45,32, - 32,70,58,32,45,0,68,58,32,99,45,102,32,32,65,58,32,45,32,32, - 70,58,32,45,0,68,58,32,99,45,102,32,32,65,58,32,45,32,32,70, - 58,32,45,0,68,58,32,99,45,102,32,32,65,58,32,45,32,32,70,58, - 32,45,0,68,58,32,97,45,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,97,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0, - 68,58,32,110,97,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68, - 58,32,97,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,110,109,113,45,32,124,124,32,110,109,113,45,110,32,32,65,58,32,45, + 68,58,32,99,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, + 32,99,45,99,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, + 99,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,99, + 45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,99,45, + 99,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,99,45,99, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,99,45,102,32, + 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,99,45,102,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,99,45,102,32,32,65, + 58,32,45,32,32,70,58,32,45,0,68,58,32,99,45,102,32,32,65,58, + 32,45,32,32,70,58,32,45,0,68,58,32,97,45,32,32,65,58,32,45, 32,32,70,58,32,45,0,68,58,32,97,45,97,32,32,65,58,32,45,32, 32,70,58,32,45,0,68,58,32,110,97,45,32,32,65,58,32,45,32,32, 70,58,32,45,0,68,58,32,97,45,110,32,32,65,58,32,45,32,32,70, - 58,32,45,0,68,58,32,102,113,113,45,32,32,65,58,32,45,32,32,70, - 58,32,45,0,68,58,32,110,45,32,124,124,32,110,45,110,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,97,45,32,32,65,58,32,45, + 58,32,45,0,68,58,32,110,109,113,45,32,124,124,32,110,109,113,45,110, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45,97,32, + 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,97,45,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45,110,32,32,65, + 58,32,45,32,32,70,58,32,45,0,68,58,32,102,113,113,45,32,32,65, + 58,32,45,32,32,70,58,32,45,0,68,58,32,110,45,32,124,124,32,110, + 45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45,32,32,65,58, + 32,45,32,32,70,58,32,45,0,68,58,32,110,45,32,32,65,58,32,45, 32,32,70,58,32,45,0,68,58,32,97,45,32,32,65,58,32,45,32,32, 70,58,32,45,0,68,58,32,97,45,32,32,65,58,32,45,32,32,70,58, 32,45,0,68,58,32,110,45,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,97,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68, - 58,32,97,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, - 110,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,32, - 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,102,32,32,65, - 58,32,45,32,32,70,58,32,45,0,68,58,32,120,121,45,97,32,32,65, - 58,32,45,32,32,70,58,32,45,0,68,58,32,110,115,45,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,115,100,108,45,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,110,113,45,113,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,110,45,32,32,65,58,32,45, - 32,32,70,58,32,45,0,68,58,32,45,32,32,65,58,32,45,32,32,70, - 58,32,45,0,68,58,32,115,97,97,45,32,32,65,58,32,45,32,32,70, - 58,32,45,0,68,58,32,100,45,97,32,32,65,58,32,45,32,32,70,58, - 32,45,0,68,58,32,115,45,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,113,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68, - 58,32,100,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,45,100,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45, - 97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,115,32, - 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,97,32,32,65, - 58,32,45,32,32,70,58,32,45,0,68,58,32,100,45,97,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,115,45,100,32,32,65,58,32, - 45,32,32,70,58,32,45,0,68,58,32,97,45,100,32,32,65,58,32,45, - 32,32,70,58,32,45,0,68,58,32,100,45,115,32,32,65,58,32,45,32, - 32,70,58,32,45,0,68,58,32,45,32,32,65,58,32,45,32,32,70,58, - 32,45,0,68,58,32,100,45,97,32,32,65,58,32,45,32,32,70,58,32, - 45,0,68,58,32,100,45,97,32,32,65,58,32,45,32,32,70,58,32,45, 0,68,58,32,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,110, - 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,113,45,110, - 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,113,45,32,32, - 65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,45,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,110,110,45,32,32,65,58,32, - 45,32,32,70,58,32,45,0,68,58,32,45,32,32,65,58,32,45,32,32, - 70,58,32,45,0,68,58,32,110,45,110,110,32,32,65,58,32,45,32,32, - 70,58,32,45,0,68,58,32,110,109,45,110,109,110,109,32,32,65,58,32, - 45,32,32,70,58,32,45,0,68,58,32,110,110,45,102,32,32,65,58,32, - 45,32,32,70,58,32,45,0,68,58,32,97,45,110,32,32,65,58,32,45, - 32,32,70,58,32,45,0,68,58,32,97,45,97,110,32,32,65,58,32,45, - 32,32,70,58,32,45,0,68,58,32,118,112,110,45,32,32,65,58,32,45, - 32,32,70,58,32,45,0,68,58,32,112,118,45,32,32,65,58,32,45,32, - 32,70,58,32,45,0,68,58,32,118,45,112,32,32,65,58,32,45,32,32, - 70,58,32,45,0,68,58,32,112,110,45,32,32,65,58,32,45,32,32,70, - 58,32,45,0,68,58,32,112,45,32,32,65,58,32,45,32,32,70,58,32, - 45,0,68,58,32,112,113,45,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,112,110,118,45,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,112,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0, - 68,58,32,112,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,112,45,112,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, - 112,110,45,112,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, - 113,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45, - 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,110,45,102, - 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,110,45,102, - 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45,110,32, - 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45,97,110,32, - 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,97,45,32,32, - 65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,97,45,97,32,32, - 65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,97,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,45,32,32,65,58,32,45,32, - 32,70,58,32,45,0,68,58,32,45,32,32,65,58,32,45,32,32,70,58, - 32,45,0,68,58,32,115,45,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,102,113,45,32,32,65,58,32,45,32,32,70,58,32,45,0, - 68,58,32,102,113,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68, - 58,32,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110, - 113,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,45, - 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,110,32,32, - 65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,45,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,110,45,109,78,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,110,45,109,32,32,65,58,32, - 45,32,32,70,58,32,45,0,68,58,32,45,32,32,65,58,32,45,32,32, - 70,58,32,45,0,68,58,32,110,110,45,102,32,32,65,58,32,45,32,32, - 70,58,32,45,0,68,58,32,110,110,45,102,32,32,65,58,32,45,32,32, - 70,58,32,45,0,68,58,32,110,109,45,111,32,32,65,58,32,45,32,32, - 70,58,32,45,0,68,58,32,110,45,102,32,32,65,58,32,45,32,32,70, - 58,32,45,0,68,58,32,45,110,32,32,65,58,32,45,32,32,70,58,32, - 45,0,68,58,32,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0, - 68,58,32,110,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68, - 58,32,110,108,117,45,102,32,32,65,58,32,45,32,32,70,58,32,45,0, - 68,58,32,110,45,109,32,32,65,58,32,45,32,32,70,58,32,45,0,68, - 58,32,110,45,102,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,110,45,109,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, - 110,108,117,45,109,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,109,110,45,111,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,109,110,45,111,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,110,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, - 110,45,102,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110, - 45,102,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,45, - 102,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,98,112,45, - 110,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,45,32, - 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,45,109,32,32, - 65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,45,109,32,32,65, - 58,32,45,32,32,70,58,32,45,0,68,58,32,110,45,102,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,110,45,115,32,32,65,58,32, - 45,32,32,70,58,32,45,0,68,58,32,110,45,102,32,32,65,58,32,45, - 32,32,70,58,32,45,0,68,58,32,110,109,45,109,32,32,65,58,32,45, + 32,45,102,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,120, + 121,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110, + 115,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,100, + 108,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,113, + 45,113,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,45, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,32,32,65, + 58,32,45,32,32,70,58,32,45,0,68,58,32,115,97,97,45,32,32,65, + 58,32,45,32,32,70,58,32,45,0,68,58,32,100,45,97,32,32,65,58, + 32,45,32,32,70,58,32,45,0,68,58,32,115,45,32,32,65,58,32,45, + 32,32,70,58,32,45,0,68,58,32,113,45,32,32,65,58,32,45,32,32, + 70,58,32,45,0,68,58,32,100,45,97,32,32,65,58,32,45,32,32,70, + 58,32,45,0,68,58,32,45,100,32,32,65,58,32,45,32,32,70,58,32, + 45,0,68,58,32,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0, + 68,58,32,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, + 32,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,100, + 45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,45, + 100,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45,100, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,100,45,115,32, + 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,32,32,65,58, + 32,45,32,32,70,58,32,45,0,68,58,32,100,45,97,32,32,65,58,32, + 45,32,32,70,58,32,45,0,68,58,32,100,45,97,32,32,65,58,32,45, 32,32,70,58,32,45,0,68,58,32,45,32,32,65,58,32,45,32,32,70, + 58,32,45,0,68,58,32,45,32,32,65,58,32,45,32,32,70,58,32,45, + 0,68,58,32,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68, + 58,32,110,113,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68, + 58,32,113,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, + 110,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,110, + 45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,45,110,110,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,109,45,110,109,110, + 109,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,110,45, + 102,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45,110, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45,97,110, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,118,112,110,45, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,112,118,45,32, + 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,118,45,112,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,112,110,45,32,32,65, + 58,32,45,32,32,70,58,32,45,0,68,58,32,112,45,32,32,65,58,32, + 45,32,32,70,58,32,45,0,68,58,32,112,113,45,32,32,65,58,32,45, + 32,32,70,58,32,45,0,68,58,32,112,110,118,45,32,32,65,58,32,45, + 32,32,70,58,32,45,0,68,58,32,112,45,110,32,32,65,58,32,45,32, + 32,70,58,32,45,0,68,58,32,112,45,32,32,65,58,32,45,32,32,70, + 58,32,45,0,68,58,32,112,45,112,32,32,65,58,32,45,32,32,70,58, + 32,45,0,68,58,32,112,110,45,112,32,32,65,58,32,45,32,32,70,58, + 32,45,0,68,58,32,113,45,32,32,65,58,32,45,32,32,70,58,32,45, + 0,68,58,32,97,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68, + 58,32,110,110,45,102,32,32,65,58,32,45,32,32,70,58,32,45,0,68, + 58,32,110,110,45,102,32,32,65,58,32,45,32,32,70,58,32,45,0,68, + 58,32,97,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, + 32,97,45,97,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, + 32,110,97,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, + 110,97,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, + 45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,32, + 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,32,32,65,58, + 32,45,32,32,70,58,32,45,0,68,58,32,115,45,32,32,65,58,32,45, + 32,32,70,58,32,45,0,68,58,32,102,113,45,32,32,65,58,32,45,32, + 32,70,58,32,45,0,68,58,32,102,113,45,32,32,65,58,32,45,32,32, + 70,58,32,45,0,68,58,32,45,32,32,65,58,32,45,32,32,70,58,32, + 45,0,68,58,32,110,113,45,32,32,65,58,32,45,32,32,70,58,32,45, + 0,68,58,32,115,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68, + 58,32,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, + 110,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,45, + 109,78,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,45, + 109,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,110,45,102,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,110,45,102,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,109,45,111,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,45,102,32,32,65, + 58,32,45,32,32,70,58,32,45,0,68,58,32,45,110,32,32,65,58,32, + 45,32,32,70,58,32,45,0,68,58,32,45,110,32,32,65,58,32,45,32, + 32,70,58,32,45,0,68,58,32,110,45,110,32,32,65,58,32,45,32,32, + 70,58,32,45,0,68,58,32,110,108,117,45,102,32,32,65,58,32,45,32, + 32,70,58,32,45,0,68,58,32,110,45,109,32,32,65,58,32,45,32,32, + 70,58,32,45,0,68,58,32,110,45,102,32,32,65,58,32,45,32,32,70, 58,32,45,0,68,58,32,110,45,109,32,32,65,58,32,45,32,32,70,58, - 32,45,0,68,58,32,45,32,32,65,58,32,45,32,32,70,58,32,45,0, - 68,58,32,109,110,45,111,32,32,65,58,32,45,32,32,70,58,32,45,0, - 68,58,32,110,109,45,110,109,110,32,32,65,58,32,45,32,32,70,58,32, - 45,0,68,58,32,110,110,110,110,45,110,32,32,65,58,32,45,32,32,70, - 58,32,45,0,68,58,32,45,110,32,32,65,58,32,110,45,32,32,70,58, - 32,45,0,68,58,32,45,32,32,65,58,32,45,32,32,70,58,32,45,0, - 68,58,32,110,45,32,32,65,58,32,45,110,32,32,70,58,32,45,0,68, - 58,32,115,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, - 97,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,46,46, - 46,115,115,45,63,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,46,46, - 46,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,98, - 99,45,98,99,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,115,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45, + 32,45,0,68,58,32,110,108,117,45,109,32,32,65,58,32,45,32,32,70, + 58,32,45,0,68,58,32,109,110,45,111,32,32,65,58,32,45,32,32,70, + 58,32,45,0,68,58,32,109,110,45,111,32,32,65,58,32,45,32,32,70, + 58,32,45,0,68,58,32,110,45,110,32,32,65,58,32,45,32,32,70,58, + 32,45,0,68,58,32,110,45,102,32,32,65,58,32,45,32,32,70,58,32, + 45,0,68,58,32,110,45,102,32,32,65,58,32,45,32,32,70,58,32,45, + 0,68,58,32,110,45,102,32,32,65,58,32,45,32,32,70,58,32,45,0, + 68,58,32,98,112,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0, + 68,58,32,110,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, + 32,110,45,109,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, + 110,45,109,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110, + 45,102,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,45, + 115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,45,102, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,109,45,109, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,32,32,65, + 58,32,45,32,32,70,58,32,45,0,68,58,32,110,45,109,32,32,65,58, + 32,45,32,32,70,58,32,45,0,68,58,32,45,32,32,65,58,32,45,32, + 32,70,58,32,45,0,68,58,32,109,110,45,111,32,32,65,58,32,45,32, + 32,70,58,32,45,0,68,58,32,110,109,45,110,109,110,32,32,65,58,32, + 45,32,32,70,58,32,45,0,68,58,32,110,110,110,110,45,110,32,32,65, + 58,32,45,32,32,70,58,32,45,0,68,58,32,45,110,32,32,65,58,32, + 110,45,32,32,70,58,32,45,0,68,58,32,45,32,32,65,58,32,45,32, + 32,70,58,32,45,0,68,58,32,110,45,32,32,65,58,32,45,110,32,32, + 70,58,32,45,0,68,58,32,115,45,32,32,65,58,32,45,32,32,70,58, + 32,45,0,68,58,32,97,45,32,32,65,58,32,45,32,32,70,58,32,45, + 0,68,58,32,46,46,46,115,115,45,63,32,32,65,58,32,45,32,32,70, + 58,32,45,0,68,58,32,45,32,32,65,58,32,45,32,32,70,58,32,45, + 0,68,58,32,46,46,46,45,32,32,65,58,32,45,32,32,70,58,32,45, + 0,68,58,32,97,98,99,45,98,99,97,32,32,65,58,32,45,32,32,70, + 58,32,45,0,68,58,32,115,45,32,32,65,58,32,45,32,32,70,58,32, + 45,0,68,58,32,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0, + 68,58,32,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, + 32,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45, 115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,115,32, 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,115,32,32,65, - 58,32,45,32,32,70,58,32,45,0,68,58,32,45,115,32,32,65,58,32, - 45,32,32,70,58,32,45,0,68,58,32,45,115,32,32,65,58,32,45,32, - 32,70,58,32,45,0,68,58,32,45,115,32,32,65,58,32,45,32,32,70, - 58,32,45,0,68,58,32,115,115,45,115,32,32,65,58,32,45,32,32,70, - 58,32,45,0,68,58,32,115,115,45,102,32,32,65,58,32,45,32,32,70, - 58,32,45,0,68,58,32,115,83,113,45,32,124,124,32,115,83,113,45,115, - 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,45,115,32, - 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,115,45,32,32, - 65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,99,45,102,32,32, - 65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,115,45,102,32,32, - 65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,97,45,32,32,65, - 58,32,45,32,32,70,58,32,45,0,68,58,32,115,45,115,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,45,97,32,32,65,58,32,45, - 32,32,70,58,32,45,0,68,58,32,115,45,102,32,32,65,58,32,45,32, - 32,70,58,32,45,0,68,58,32,115,45,115,32,32,65,58,32,45,32,32, - 70,58,32,45,0,68,58,32,115,45,32,32,65,58,32,45,32,32,70,58, - 32,45,0,68,58,32,45,115,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,115,115,45,102,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,115,115,45,102,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,115,45,63,32,32,65,58,32,45,32,32,70,58,32,45,63, - 0,68,58,32,115,110,45,110,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,115,113,45,115,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,115,113,45,32,32,65,58,32,45,32,32,70,58,32,45,0, - 68,58,32,46,46,46,115,45,115,32,32,65,58,32,45,32,32,70,58,32, - 45,0,68,58,32,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0, - 68,58,32,115,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68, - 58,32,115,99,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68, - 58,32,115,115,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68, + 58,32,45,32,32,70,58,32,45,0,68,58,32,115,115,45,115,32,32,65, + 58,32,45,32,32,70,58,32,45,0,68,58,32,115,115,45,102,32,32,65, + 58,32,45,32,32,70,58,32,45,0,68,58,32,115,83,113,45,32,124,124, + 32,115,83,113,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68, 58,32,115,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,115,110,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,115,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, - 115,113,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, - 115,115,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, - 115,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,115, - 115,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115, - 115,115,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, - 115,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115, - 110,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45, - 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,99,45,115, - 115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,115,45, - 115,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,99,115, - 110,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,102, - 108,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115, - 45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,45, - 115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,45,110, - 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,45,115,32, - 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,99,45,97,32, - 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,115,45,97,32, + 32,115,115,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, + 115,99,45,102,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, + 115,115,45,102,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, + 115,97,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115, + 45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,97, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,45,102,32, 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,45,115,32,32, - 65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,45,115,32,32,65, - 58,32,45,32,32,70,58,32,45,0,68,58,32,115,45,115,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,115,45,102,32,32,65,58,32, - 45,32,32,70,58,32,45,0,68,58,32,97,97,45,32,32,65,58,32,45, - 32,32,70,58,32,45,0,68,58,32,109,110,45,111,32,32,65,58,32,45, - 32,32,70,58,32,45,0,68,58,32,110,115,45,32,32,65,58,32,45,32, - 32,70,58,32,45,0,68,58,32,115,45,110,32,32,65,58,32,45,32,32, - 70,58,32,45,0,68,58,32,115,45,99,32,32,65,58,32,45,32,32,70, - 58,32,45,0,68,58,32,115,45,97,32,32,65,58,32,45,32,32,70,58, - 32,45,0,68,58,32,115,45,115,32,32,65,58,32,45,32,32,70,58,32, - 45,0,68,58,32,115,45,32,32,65,58,32,45,32,32,70,58,32,45,0, - 68,58,32,115,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,115,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, - 115,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,45, - 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,45,32,32, 65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,45,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,110,113,40,63,110,45,63,41, - 45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,32, - 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,97,45,32,32, - 65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,97,45,97,32,32, - 65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,109,45,109,110,32, - 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,45,32,32,65,58,32,45,32, - 32,70,58,32,45,0,68,58,32,110,113,45,32,32,65,58,32,45,32,32, - 70,58,32,45,0,68,58,32,120,113,113,113,45,63,32,32,65,58,32,45, - 32,32,70,58,32,45,0,68,58,32,120,121,122,113,113,113,45,63,32,32, - 65,58,32,45,32,32,70,58,32,45,0,68,58,32,120,121,122,113,45,63, - 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,109,45,109, - 110,109,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45, - 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,45,110,110, - 110,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,113,40, - 45,102,41,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, - 97,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,97, - 45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45,32, - 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,97,45,32,32, - 65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,108,117,45,32,32, - 65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45,32,32,65,58, - 32,45,32,32,70,58,32,45,0,68,58,32,97,45,32,32,65,58,32,45, - 32,32,70,58,32,45,0,68,58,32,97,113,45,32,32,65,58,32,45,32, - 32,70,58,32,45,0,68,58,32,97,113,45,32,32,65,58,32,45,32,32, - 70,58,32,45,0,68,58,32,115,45,32,32,65,58,32,45,32,32,70,58, - 32,45,0,68,58,32,110,115,45,32,32,65,58,32,45,32,32,70,58,32, - 45,0,68,58,32,115,115,45,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,97,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0, - 68,58,32,97,45,97,110,32,32,65,58,32,45,32,32,70,58,32,45,0, - 68,58,32,110,97,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68, - 58,32,110,97,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68, - 58,32,113,40,45,102,41,45,32,32,65,58,32,45,32,32,70,58,32,45, - 0,68,58,32,109,110,45,111,32,32,65,58,32,45,32,32,70,58,32,45, + 32,45,32,32,70,58,32,45,0,68,58,32,45,115,32,32,65,58,32,45, + 32,32,70,58,32,45,0,68,58,32,115,115,45,102,32,32,65,58,32,45, + 32,32,70,58,32,45,0,68,58,32,115,115,45,102,32,32,65,58,32,45, + 32,32,70,58,32,45,0,68,58,32,115,45,63,32,32,65,58,32,45,32, + 32,70,58,32,45,63,0,68,58,32,115,110,45,110,32,32,65,58,32,45, + 32,32,70,58,32,45,0,68,58,32,115,113,45,115,32,32,65,58,32,45, + 32,32,70,58,32,45,0,68,58,32,115,113,45,32,32,65,58,32,45,32, + 32,70,58,32,45,0,68,58,32,46,46,46,115,45,115,32,32,65,58,32, + 45,32,32,70,58,32,45,0,68,58,32,45,115,32,32,65,58,32,45,32, + 32,70,58,32,45,0,68,58,32,115,45,110,32,32,65,58,32,45,32,32, + 70,58,32,45,0,68,58,32,115,99,45,110,32,32,65,58,32,45,32,32, + 70,58,32,45,0,68,58,32,115,115,45,110,32,32,65,58,32,45,32,32, + 70,58,32,45,0,68,58,32,115,45,115,32,32,65,58,32,45,32,32,70, + 58,32,45,0,68,58,32,115,110,45,115,32,32,65,58,32,45,32,32,70, + 58,32,45,0,68,58,32,115,45,110,32,32,65,58,32,45,32,32,70,58, + 32,45,0,68,58,32,115,113,45,115,32,32,65,58,32,45,32,32,70,58, + 32,45,0,68,58,32,115,115,45,115,32,32,65,58,32,45,32,32,70,58, + 32,45,0,68,58,32,115,45,32,32,65,58,32,45,32,32,70,58,32,45, + 0,68,58,32,115,115,115,45,115,32,32,65,58,32,45,32,32,70,58,32, + 45,0,68,58,32,115,115,115,45,115,32,32,65,58,32,45,32,32,70,58, + 32,45,0,68,58,32,115,45,115,32,32,65,58,32,45,32,32,70,58,32, + 45,0,68,58,32,115,110,45,115,32,32,65,58,32,45,32,32,70,58,32, + 45,0,68,58,32,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68, + 58,32,115,99,45,115,115,32,32,65,58,32,45,32,32,70,58,32,45,0, + 68,58,32,115,115,45,115,115,32,32,65,58,32,45,32,32,70,58,32,45, + 0,68,58,32,99,115,110,45,32,32,65,58,32,45,32,32,70,58,32,45, + 0,68,58,32,115,102,108,45,115,32,32,65,58,32,45,32,32,70,58,32, + 45,0,68,58,32,115,45,115,32,32,65,58,32,45,32,32,70,58,32,45, + 0,68,58,32,115,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0, + 68,58,32,115,45,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68, + 58,32,115,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, + 32,115,99,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, + 32,115,115,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, + 32,115,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, + 115,45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115, + 45,115,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,45, + 102,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,97,45, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,109,110,45,111, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,115,45,32, + 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,45,110,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,45,99,32,32,65, + 58,32,45,32,32,70,58,32,45,0,68,58,32,115,45,97,32,32,65,58, + 32,45,32,32,70,58,32,45,0,68,58,32,115,45,115,32,32,65,58,32, + 45,32,32,70,58,32,45,0,68,58,32,115,45,32,32,65,58,32,45,32, + 32,70,58,32,45,0,68,58,32,115,45,32,32,65,58,32,45,32,32,70, + 58,32,45,0,68,58,32,115,45,110,32,32,65,58,32,45,32,32,70,58, + 32,45,0,68,58,32,115,45,32,32,65,58,32,45,32,32,70,58,32,45, + 0,68,58,32,115,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68, + 58,32,115,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, + 115,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,113, + 40,63,110,45,63,41,45,110,32,32,65,58,32,45,32,32,70,58,32,45, 0,68,58,32,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, - 32,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,97, - 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,32,32,65, - 58,32,45,32,32,70,58,32,45,0,13196,20688,168,20698,-3502357327552891667,0,100,58,115,101, - 116,45,115,111,117,114,99,101,0,1,12870,2049,2266,2049,241,2049,186,16,10,105, - 110,116,101,114,102,97,99,101,47,115,111,117,114,99,101,115,46,114,101,116, - 114,111,0,20698,20736,98,117,105,108,100,46,114,101,116,114,111,0,20724,20750,114, - 101,116,114,111,46,102,111,114,116,104,0,20738,21271,20669,0,156,21247,-2419379730924625824,20774,68, - 69,86,73,67,69,58,79,85,84,80,85,84,0,45,110,0,20752,1,156,21247, - 3179875372589939872,20799,68,69,86,73,67,69,58,75,69,89,66,79,65,82,68,0,45,110, - 0,20775,2,156,21247,-2419379731287713704,20822,68,69,86,73,67,69,58,70,76,79,65,84,83, - 0,45,110,0,20800,4,156,21247,-5104244739232646654,20844,68,69,86,73,67,69,58,70,73,76, - 69,83,0,45,110,0,20823,3,156,21247,-2419379731444253395,20867,68,69,86,73,67,69,58,66, - 76,79,67,75,83,0,45,110,0,20845,5,156,21247,-5104244739236093413,20889,68,69,86,73,67, - 69,58,67,76,79,67,75,0,45,110,0,20868,6,156,21247,-5744567309556069531,20915,68,69,86, - 73,67,69,58,82,69,83,69,82,86,69,68,54,0,45,110,0,20890,7,156, - 21247,-2419379730775816680,20938,68,69,86,73,67,69,58,83,79,67,75,69,84,0,45,110,0, - 20916,8,156,21247,-4626612040269427085,20959,68,69,86,73,67,69,58,85,78,73,88,0,45,110, - 0,20939,9,156,21247,-5744565989521702654,20985,68,69,86,73,67,69,58,83,67,82,73,80,84, - 73,78,71,0,45,110,0,20960,10,156,21247,8244683305011325430,21005,68,69,86,73,67,69,58, - 82,78,71,0,45,110,0,20986,11,156,21247,-5103280478254778479,21032,68,69,86,73,67,69,58, - 82,69,83,69,82,86,69,68,49,49,0,45,110,0,21006,12,156,21247,-5103280478254778478,21059, - 68,69,86,73,67,69,58,82,69,83,69,82,86,69,68,49,50,0,45,110, - 0,21033,13,156,21247,-5103280478254778477,21086,68,69,86,73,67,69,58,82,69,83,69,82,86, - 69,68,49,51,0,45,110,0,21060,14,156,21247,-5104244739228882582,21108,68,69,86,73,67,69, - 58,73,79,67,84,76,0,45,110,0,21087,15,156,21247,-2419379731026907097,21131,68,69,86,73, - 67,69,58,77,65,76,76,79,67,0,45,110,0,21109,1000,156,21247,-5104244739228957070,21153,68, - 69,86,73,67,69,58,73,77,65,71,69,0,45,110,0,21132,1234,156,21247,-5104244739233502279, - 21175,68,69,86,73,67,69,58,69,82,82,79,82,0,45,110,0,21154,8000,156, - 21247,-5744573668168662717,21201,68,69,86,73,67,69,58,77,85,76,84,73,67,79,82,69,0, - 45,110,0,21176,8100,156,21247,8244683305011312100,21221,68,69,86,73,67,69,58,70,70,73,0, - 45,110,0,21202,8101,156,21247,3179875810170796684,21246,68,69,86,73,67,69,58,85,78,83,73, - 71,78,69,68,0,45,110,0,105,110,116,101,114,102,97,99,101,47,100,101, - 118,105,99,101,115,46,114,101,116,114,111,0,21247,24452,21222,21295,168,24422,-6845980351726443322,21297, - 102,108,111,97,116,58,111,112,101,114,97,116,105,111,110,0,2049,4611,110,45, - 0,1,21297,3,1,2,2049,11209,2,2049,2822,1793,21361,3,2049,4611,69,114,114,111, - 114,58,32,102,108,111,97,116,105,110,103,32,112,111,105,110,116,32,100,101, - 118,105,99,101,32,110,111,116,32,102,111,117,110,100,0,1,21315,2049,11320,2049, - 11274,10,1,21312,2049,2928,2049,11189,10,21273,21385,168,24422,8246618443670464787,21387,110,58,116,111,45, - 102,108,111,97,116,0,2049,4611,110,45,95,102,58,45,110,0,1,21387,3,1, - 0,2049,21295,10,21368,21420,168,24422,8246850501092474552,21422,115,58,116,111,45,102,108,111,97,116, - 0,2049,4611,115,45,95,102,58,45,110,0,1,21422,3,1,1,2049,21295,10,21403, - 21456,168,24422,-4575005096076366594,21458,102,58,116,111,45,110,117,109,98,101,114,0,2049,4611,102, - 58,97,45,95,95,45,110,0,1,21458,3,1,2,2049,21295,10,21438,21493,168,24422, - -4575005095881687956,21495,102,58,116,111,45,115,116,114,105,110,103,0,2049,4611,102,58,110,45, - 95,95,45,115,0,1,21495,3,2049,4589,2,1,3,2049,21295,10,21475,21525,168,24422, - 193490032,21527,102,58,43,0,2049,4611,102,58,97,98,45,99,0,1,21527,3,1,4, - 2049,21295,10,21515,21552,168,24422,193490034,21554,102,58,45,0,2049,4611,102,58,97,98,45, - 99,0,1,21554,3,1,5,2049,21295,10,21542,21579,168,24422,193490031,21581,102,58,42,0, - 2049,4611,102,58,97,98,45,99,0,1,21581,3,1,6,2049,21295,10,21569,21606,168, - 24422,193490036,21608,102,58,47,0,2049,4611,102,58,97,98,45,99,0,1,21608,3,1, - 7,2049,21295,10,21596,21637,168,24422,229463966214663,21639,102,58,102,108,111,111,114,0,2049,4611, - 102,58,97,98,45,99,0,1,21639,3,1,8,2049,21295,10,21623,21670,168,24422,249886255052186944, - 21672,102,58,99,101,105,108,105,110,103,0,2049,4611,102,58,102,45,102,0,1, - 21672,3,1,9,2049,21295,10,21654,21699,168,24422,6953453994383,21701,102,58,115,113,114,116,0, - 2049,4611,102,58,102,45,102,0,1,21701,3,1,10,2049,21295,10,21686,21727,168,24422, - 210710711802,21729,102,58,101,113,63,0,2049,4611,102,58,97,98,45,99,0,1,21729,3, - 1,11,2049,21295,10,21715,21757,168,24422,6953451465639,21759,102,58,45,101,113,63,0,2049,4611, - 102,58,97,98,45,99,0,1,21759,3,1,12,2049,21295,10,21744,21786,168,24422,210710719524, - 21788,102,58,108,116,63,0,2049,4611,102,58,97,98,45,99,0,1,21788,3,1, - 13,2049,21295,10,21774,21815,168,24422,210710714079,21817,102,58,103,116,63,0,2049,4611,102,58, - 97,98,45,99,0,1,21817,3,1,14,2049,21295,10,21803,21846,168,24422,229463963592506,21848,102, - 58,100,101,112,116,104,0,2049,4611,45,110,0,1,21848,3,1,15,2049,21295,10, - 21832,21871,168,24422,210710710894,21873,102,58,100,117,112,0,2049,4611,102,58,97,45,97,97, - 0,1,21873,3,1,16,2049,21295,10,21859,21901,168,24422,6953453456314,21903,102,58,100,114,111, - 112,0,2049,4611,102,58,97,45,0,1,21903,3,1,17,2049,21295,10,21888,21929,168, - 24422,6953454000352,21931,102,58,115,119,97,112,0,2049,4611,102,58,97,98,45,98,97,0, - 1,21931,3,1,18,2049,21295,10,21916,21959,168,24422,210710719399,21961,102,58,108,111,103,0, - 2049,4611,102,58,97,98,45,99,0,1,21961,3,1,19,2049,21295,10,21947,21990,168, - 24422,229463978190066,21992,102,58,112,111,119,101,114,0,2049,4611,102,58,97,98,45,99,0, - 1,21992,3,1,20,2049,21295,10,21976,22019,168,24422,210710726831,22021,102,58,115,105,110,0, - 2049,4611,102,58,102,45,102,0,1,22021,3,1,21,2049,21295,10,22007,22047,168,24422, - 210710727656,22049,102,58,116,97,110,0,2049,4611,102,58,102,45,102,0,1,22049,3,1, - 22,2049,21295,10,22035,22075,168,24422,210710709610,22077,102,58,99,111,115,0,2049,4611,102,58, - 102,45,102,0,1,22077,3,1,23,2049,21295,10,22063,22104,168,24422,6953453349392,22106,102,58, - 97,115,105,110,0,2049,4611,102,58,102,45,102,0,1,22106,3,1,24,2049,21295, - 10,22091,22133,168,24422,6953453332171,22135,102,58,97,99,111,115,0,2049,4611,102,58,102,45, - 102,0,1,22135,3,1,25,2049,21295,10,22120,22162,168,24422,6953453350217,22164,102,58,97,116, - 97,110,0,2049,4611,102,58,102,45,102,0,1,22164,3,1,26,2049,21295,10,22149, - 22191,168,24422,6953453890949,22193,102,58,112,117,115,104,0,2049,4611,102,58,102,45,0,1, - 22193,3,1,27,2049,21295,10,22178,22218,168,24422,210710723764,22220,102,58,112,111,112,0,2049, - 4611,102,58,45,102,0,1,22220,3,1,28,2049,21295,10,22206,22248,168,24422,7572310679561435,22250, - 102,58,97,100,101,112,116,104,0,2049,4611,45,110,0,1,22250,3,1,29,2049, - 21295,10,22233,22274,168,24422,6953453855649,22276,102,58,111,118,101,114,0,2049,4611,102,58,97, - 98,45,97,98,97,0,1,22276,3,2049,22191,2049,21871,2049,22218,2049,21929,10,22261,22310, - 168,24422,6953454034172,22312,102,58,116,117,99,107,0,2049,4611,102,58,97,98,45,98,97, - 98,0,1,22312,3,2049,21871,2049,22191,2049,21929,2049,22218,10,22297,22345,168,24422,210710721388,22347, - 102,58,110,105,112,0,2049,4611,102,58,97,98,45,98,0,1,22347,3,2049,21929, - 2049,21901,10,22333,22380,168,24422,-4575027385529052237,22382,102,58,100,114,111,112,45,112,97,105,114, - 0,2049,4611,102,58,97,98,45,0,1,22382,3,2049,21901,2049,21901,10,22362,22413,168, - 24422,8246246480203571943,22415,102,58,100,117,112,45,112,97,105,114,0,2049,4611,102,58,97,98, - 45,97,98,97,98,0,1,22415,3,2049,22274,2049,22274,10,22396,22445,168,24422,210710725946,22447, - 102,58,114,111,116,0,2049,4611,102,58,97,98,99,45,98,99,97,0,1,22447, - 3,2049,22191,2049,21929,2049,22218,2049,21929,10,22433,22483,180,24422,229482595734757,22485,115,105,103,105, - 108,58,46,0,2049,4611,115,45,95,95,102,58,45,97,0,1,22485,3,2049,1933, - 1,4640,1,4558,2049,66,1,21420,2049,168,10,22469,22525,168,24422,7572311399974070,22527,102,58,115, - 113,117,97,114,101,0,2049,4611,102,58,110,45,109,0,1,22527,3,2049,21871,2049, - 21579,10,22510,22559,168,24422,-4575010631505066633,22561,102,58,112,111,115,105,116,105,118,101,63,0, - 2049,4611,45,102,95,95,102,58,97,45,0,1,22561,3,1,0,2049,21385,2049,21815, - 10,22541,22598,168,24422,-4575013886317431657,22600,102,58,110,101,103,97,116,105,118,101,63,0,2049, - 4611,45,102,95,95,102,58,97,45,0,1,22600,3,1,0,2049,21385,2049,21786,10, - 22580,22634,168,24422,7572311189563001,22636,102,58,110,101,103,97,116,101,0,2049,4611,102,58,97, - 45,98,0,1,22636,3,1,-1,2049,21385,2049,21579,10,22619,22664,168,24422,210710707003,22666,102, - 58,97,98,115,0,2049,4611,102,58,97,45,98,0,1,22666,3,2049,21871,2049,22598, - 1,22634,9,10,22652,22695,168,24422,210710723966,22697,102,58,112,117,116,0,2049,4611,102,58, - 97,45,0,1,22697,3,2049,21493,2049,11320,10,22683,22721,168,24422,6385172350,22723,102,58,80, - 73,0,2049,4611,102,58,45,70,0,1,22723,3,2049,4611,51,46,49,52,49,53, - 57,50,54,53,52,0,1,22733,2049,21420,10,22710,22760,168,24422,193490058,22762,102,58,69, - 0,2049,4611,102,58,45,70,0,1,22762,3,2049,4611,50,46,55,49,56,50,56, - 49,56,50,56,0,1,22772,2049,21420,10,22750,22801,168,24422,210710685186,22803,102,58,78,65, - 78,0,2049,4611,102,58,45,110,0,1,22803,3,2049,4611,48,0,1,22813,2049,21420, - 2049,4611,48,0,1,22821,2049,21420,2049,21606,10,22789,22842,168,24422,210710680162,22844,102,58,73, - 78,70,0,2049,4611,102,58,45,110,0,1,22844,3,2049,4611,49,46,48,0,1, - 22854,2049,21420,2049,4611,48,0,1,22864,2049,21420,2049,21606,10,22830,22886,168,24422,6953451433999,22888, - 102,58,45,73,78,70,0,2049,4611,102,58,45,110,0,1,22888,3,2049,4611,45, - 49,46,48,0,1,22898,2049,21420,2049,4611,48,0,1,22909,2049,21420,2049,21606,10,22873, - 22931,168,24422,6953453797089,22933,102,58,110,97,110,63,0,2049,4611,102,58,110,45,44,45, - 102,0,1,22933,3,2049,21871,2049,21757,10,22918,22962,168,24422,6953453631297,22964,102,58,105,110, - 102,63,0,2049,4611,102,58,110,45,44,45,102,0,1,22964,3,2049,22842,2049,21727, - 10,22949,22994,168,24422,229463898507918,22996,102,58,45,105,110,102,63,0,2049,4611,102,58,110, - 45,44,45,102,0,1,22996,3,2049,22886,2049,21727,10,22980,23026,168,24422,229463980560013,23028,102, - 58,114,111,117,110,100,0,2049,4611,45,124,102,58,97,45,98,0,1,23028,3, - 2049,21871,2049,22598,1793,23060,2049,4611,48,46,53,0,1,23047,2049,21420,2049,21552,2049,21670, - 10,1,23045,1793,23079,2049,4611,48,46,53,0,1,23066,2049,21420,2049,21525,2049,21637,10, - 1,23064,2049,66,10,23012,23096,168,24422,210710720297,23098,102,58,109,105,110,0,2049,4611,102, - 58,110,110,45,110,0,1,23098,3,2049,22413,2049,21786,1,21901,1,22345,2049,66,10, - 23084,23131,168,24422,210710720043,23133,102,58,109,97,120,0,2049,4611,102,58,110,110,45,110, - 0,1,23133,3,2049,22413,2049,21815,1,21901,1,22345,2049,66,10,23119,23168,168,24422,229463973220004, - 23170,102,58,108,105,109,105,116,0,2049,4611,102,58,110,108,117,45,110,0,1, - 23170,3,2049,21929,2049,22191,2049,23096,2049,22218,2049,23131,10,23154,23209,168,24422,8246246374547107374,23211,102, - 58,98,101,116,119,101,101,110,63,0,2049,4611,102,58,110,108,117,45,110,0, - 1,23211,3,2049,22445,2049,21871,2049,22191,2049,22445,2049,22445,2049,23168,2049,22218,2049,21727,10, - 23192,23251,168,24422,210710716095,23253,102,58,105,110,99,0,2049,4611,102,58,110,45,110,0, - 1,23253,3,2049,4611,49,0,1,23264,2049,21420,2049,21525,10,23239,23285,168,24422,210710710353,23287, - 102,58,100,101,99,0,2049,4611,102,58,110,45,110,0,1,23287,3,2049,4611,49, - 0,1,23298,2049,21420,2049,21552,10,23273,23320,168,24422,6953453401985,23322,102,58,99,97,115,101, - 0,2049,4611,102,58,102,102,45,44,113,45,0,1,23322,3,2049,22274,2049,21727,1793, - 23346,2049,21901,8,1,-1,10,1,23340,1793,23354,3,1,0,10,1,23350,2049,66,25, - 6,771,10,23307,23375,168,24422,6953453985302,23377,102,58,115,105,103,110,0,2049,4611,45,110, - 124,102,58,97,45,0,1,23377,3,2049,21871,2049,4611,48,0,1,23392,2049,21420,2049, - 21727,1793,23407,1,0,2049,21901,10,1,23402,2049,2928,2049,4611,48,0,1,23413,2049,21420, - 2049,21815,1793,23426,1,1,10,1,23423,1793,23433,1,-1,10,1,23430,2049,66,10,23362, - 9223372036854775805,156,24422,210709498186,23452,101,58,77,65,88,0,45,110,0,23438,-9223372036854775805,156,24422,210709498440,23467, - 101,58,77,73,78,0,45,110,0,23453,-9223372036854775807,156,24422,210709499265,23482,101,58,78,65,78, - 0,45,110,0,23468,9223372036854775806,156,24422,210709494241,23497,101,58,73,78,70,0,45,110,0,23483, - -9223372036854775806,156,24422,6953412298606,23513,101,58,45,73,78,70,0,45,110,0,23498,23525,168,24422,6385137393, - 23527,101,58,110,63,0,2049,4611,117,45,102,0,1,23527,3,1,-9223372036854775805,2049,3204,1, - 9223372036854775805,2049,3219,2049,3239,10,23514,23558,168,24422,6953414626089,23560,101,58,109,97,120,63,0,2049, - 4611,117,45,102,0,1,23560,3,1,9223372036854775805,11,10,23545,23584,168,24422,6953414634471,23586,101,58, - 109,105,110,63,0,2049,4611,117,45,102,0,1,23586,3,1,-9223372036854775805,11,10,23571,23611, - 168,24422,229462698216771,23613,101,58,122,101,114,111,63,0,2049,4611,117,45,102,0,1,23613, - 3,2049,2781,10,23597,23636,168,24422,6953414661696,23638,101,58,110,97,110,63,0,2049,4611,117, - 45,102,0,1,23638,3,1,-9223372036854775807,11,10,23623,23662,168,24422,6953414495904,23664,101,58,105,110, - 102,63,0,2049,4611,117,45,102,0,1,23664,3,1,9223372036854775806,11,10,23649,23689,168,24422, - 229462607039949,23691,101,58,45,105,110,102,63,0,2049,4611,117,45,102,0,1,23691,3,1, - -9223372036854775806,11,10,23675,23715,168,24422,6953414278252,23717,101,58,99,108,105,112,0,2049,4611,117,45, - 117,0,1,23717,3,1,-9223372036854775805,1,9223372036854775805,2049,3184,10,23702,23742,168,24422,6385171963,23744,102,58, - 69,49,0,2049,4611,45,124,102,58,45,110,41,95,101,45,117,110,105,116,95, - 105,110,95,102,108,111,97,0,1,23744,3,1793,23772,2049,4611,49,46,101,53,0, - 1,23774,2049,21420,10,23731,23804,168,24422,-1561378222854156682,23806,102,58,115,105,103,110,101,100,45, - 115,113,114,116,0,2049,4611,124,102,58,110,45,110,0,1,23806,3,2049,21871,2049, - 23375,2049,22664,2049,21699,2049,21385,2049,21579,10,23784,23851,168,24422,-3240429906897787043,23853,102,58,115,105, - 103,110,101,100,45,115,113,117,97,114,101,0,2049,4611,124,102,58,110,45,110, - 0,1,23853,3,2049,21871,2049,23375,2049,21871,2049,21579,2049,21385,2049,21579,10,23829,23891,168, - 0,7572308662409552,0,102,58,45,115,104,105,102,116,0,2049,23742,2049,21579,10,23876,23911,168, - 0,7572308584138766,0,102,58,43,115,104,105,102,116,0,2049,23742,2049,21606,10,23896,23932,168, - 0,249886182735593054,0,102,58,43,101,110,99,111,100,101,0,2049,23804,2049,23891,10,23916,23953, - 168,0,249886185318528992,0,102,58,45,101,110,99,111,100,101,0,2049,21871,2049,23375,2049,23911, - 2049,21871,2049,21579,2049,21385,2049,21579,10,23829,23981,168,24422,6953454025850,23983,102,58,116,111,45, - 101,0,2049,4611,45,101,124,102,58,110,45,0,1,23983,3,2049,21871,2049,22931,1793, - 24005,2049,21901,1,-9223372036854775807,10,1,24000,2049,2928,2049,21871,2049,22962,1793,24020,2049,21901,1,9223372036854775806, - 10,1,24015,2049,2928,2049,21871,2049,22994,1793,24035,2049,21901,1,-9223372036854775806,10,1,24030,2049,2928, - 2049,23932,2049,23026,2049,21456,2049,23715,1,-9223372036854775805,1,21901,2049,2606,1,9223372036854775805,1,21901,2049,2606, - 10,23968,24073,168,24422,6953414890458,24075,101,58,116,111,45,102,0,2049,4611,101,45,124,102, - 58,45,110,0,1,24075,3,1,-9223372036854775807,1,22801,2049,2606,1,9223372036854775806,1,22842,2049,2606,1, - -9223372036854775806,1,22886,2049,2606,2049,21385,2049,23953,10,24060,24123,168,24422,229463981919218,24125,102,58,115,116, - 111,114,101,0,2049,4611,97,45,124,102,58,110,45,0,1,24125,3,1,23981,2049, - 2266,16,10,24109,24156,168,24422,229463965968143,24158,102,58,102,101,116,99,104,0,2049,4611,97, - 45,124,102,58,45,110,0,1,24158,3,15,2049,24073,10,24142,24192,168,24422,-3401946998789110658,24194, - 102,58,100,117,109,112,45,115,116,97,99,107,0,2049,4611,45,0,1,24194,3, - 2049,21846,2,1,22191,2049,2497,1793,24217,2049,22218,2049,21871,2049,22695,2049,11288,10,1,24208, - 2049,2497,10,24173,24242,168,24422,-1583786518488284545,24244,102,58,100,117,109,112,45,97,115,116,97, - 99,107,0,2049,4611,45,0,1,24244,3,2049,22248,2,1,22218,2049,2497,1793,24267,2049, - 21871,2049,22695,2049,11288,2049,22191,10,1,24258,2049,2497,10,24222,24284,168,24422,210709538045,24286,101, - 58,112,117,116,0,2049,4611,101,45,0,1,24286,3,1,9223372036854775805,1793,24309,2049,4611,101, - 58,77,65,88,0,1,24298,2049,11320,10,1,24296,2049,2606,1,-9223372036854775805,1793,24330,2049,4611, - 101,58,77,73,78,0,1,24319,2049,11320,10,1,24317,2049,2606,1,0,1793,24349,2049, - 4611,101,58,48,0,1,24340,2049,11320,10,1,24338,2049,2606,1,-9223372036854775807,1793,24370,2049,4611, - 101,58,78,65,78,0,1,24359,2049,11320,10,1,24357,2049,2606,1,9223372036854775806,1793,24391,2049, - 4611,101,58,73,78,70,0,1,24380,2049,11320,10,1,24378,2049,2606,1,-9223372036854775806,1793,24413, - 2049,4611,101,58,45,73,78,70,0,1,24401,2049,11320,10,1,24399,2049,2606,2049,24073, - 2049,22695,10,105,110,116,101,114,102,97,99,101,47,102,108,111,97,116,105,110, - 103,112,111,105,110,116,46,114,101,116,114,111,0,24422,25543,24272,24475,168,25516,8056574075740390096, - 24477,102,105,108,101,58,111,112,101,114,97,116,105,111,110,0,2049,4611,45,110, - 0,1,24477,3,1,4,2049,11209,2,2049,2822,1793,24532,3,2049,4611,69,114,114,111, - 114,58,32,102,105,108,101,115,32,100,101,118,105,99,101,32,110,111,116,32, - 102,111,117,110,100,0,1,24495,2049,11320,2049,11274,10,1,24492,2049,2928,2049,11189,10, - 24454,0,156,25516,6953509466161,24554,102,105,108,101,58,82,0,45,110,0,24539,1,156,25516, - 6953509466166,24570,102,105,108,101,58,87,0,45,110,0,24555,2,156,25516,6953509466144,24586,102,105, - 108,101,58,65,0,45,110,0,24571,3,156,25516,229465812383356,24603,102,105,108,101,58,82, - 43,0,45,110,0,24587,24620,168,25516,249888269686595441,24622,102,105,108,101,58,111,112,101,110, - 0,2049,4611,115,109,45,104,0,1,24622,3,1,0,2049,24475,10,24604,24652,168,25516, - 8246312899643285909,24654,102,105,108,101,58,99,108,111,115,101,0,2049,4611,104,45,0,1,24654, - 3,1,1,2049,24475,10,24635,24681,168,25516,249888269686691131,24683,102,105,108,101,58,114,101,97, - 100,0,2049,4611,104,45,99,0,1,24683,3,1,2,2049,24475,10,24665,24712,168,25516, - 8246312899667213450,24714,102,105,108,101,58,119,114,105,116,101,0,2049,4611,99,104,45,0,1, - 24714,3,1,3,2049,24475,10,24695,24742,168,25516,249888269686763376,24744,102,105,108,101,58,116,101, - 108,108,0,2049,4611,104,45,110,0,1,24744,3,1,4,2049,24475,10,24726,24772,168, - 25516,249888269686727207,24774,102,105,108,101,58,115,101,101,107,0,2049,4611,110,104,45,0,1, - 24774,3,1,5,2049,24475,10,24756,24802,168,25516,249888269686732250,24804,102,105,108,101,58,115,105, - 122,101,0,2049,4611,104,45,110,0,1,24804,3,1,6,2049,24475,10,24786,24834,168, - 25516,-4572835417384127758,24836,102,105,108,101,58,100,101,108,101,116,101,0,2049,4611,115,45,0, - 1,24836,3,1,7,2049,24475,10,24816,24864,168,25516,8246312899646850209,24866,102,105,108,101,58,102, - 108,117,115,104,0,2049,4611,102,45,0,1,24866,3,1,8,2049,24475,10,24847,24899, - 168,25516,7612651040925696305,24901,102,105,108,101,58,114,101,97,100,47,98,121,116,101,115,0, - 2049,4611,112,110,102,45,0,1,24901,3,1,9,2049,24475,10,24877,24937,168,25516,-7028659436281878592, - 24939,102,105,108,101,58,119,114,105,116,101,47,98,121,116,101,115,0,2049,4611, - 112,110,102,45,0,1,24939,3,1,10,2049,24475,10,24914,24970,168,25516,-4572835416836630931,24972,102, - 105,108,101,58,114,101,97,100,47,99,0,2049,4611,104,45,99,0,1,24972,3, - 1,11,2049,24475,10,24952,25003,168,25516,-3329616158956188292,25005,102,105,108,101,58,119,114,105,116, - 101,47,99,0,2049,4611,99,104,45,99,0,1,25005,3,1,12,2049,24475,10,24984, - 25037,168,25516,-3329616181967816770,25039,102,105,108,101,58,101,120,105,115,116,115,63,0,2049,4611, - 115,45,102,0,1,25039,3,1,0,2049,24620,2,2049,2800,1793,25060,2049,24652,2049,2577, - 10,1,25055,1793,25068,3,2049,2592,10,1,25064,2049,66,10,25018,25101,168,25516,-4283841618960457812,25103, - 102,105,108,101,58,111,112,101,110,45,102,111,114,45,114,101,97,100,105,110, - 103,0,2049,4611,115,45,110,110,0,1,25103,3,1,0,2049,24620,2,2049,24802,4, - 10,25073,25147,168,25516,2106155595587003402,25149,102,105,108,101,58,111,112,101,110,45,102,111,114, - 45,97,112,112,101,110,100,0,2049,4611,115,45,110,110,0,1,25149,3,1,2, - 2049,24620,2,2049,24802,4,10,25120,25194,168,25516,-4283841611984295498,25196,102,105,108,101,58,111,112, - 101,110,45,102,111,114,45,119,114,105,116,105,110,103,0,2049,4611,115,45,110, - 0,1,25196,3,1,1,2049,24620,10,25166,25218,156,0,193455704,0,70,73,68,0,0, - 25208,25230,156,0,6384542144,0,83,105,122,101,0,0,25219,25244,156,0,6952054634723,0,65,99, - 116,105,111,110,0,0,25231,25257,168,0,210644670123,0,45,101,111,102,63,0,3841,25218, - 2049,24742,3841,25230,13,10,25245,25280,168,0,7572809360530097,0,112,114,101,115,101,114,118,101, - 0,1,25218,1793,25291,1,25230,1,27,2049,4029,10,1,25284,2049,4029,10,25166,25317,168, - 25516,8056577820387649264,25319,102,105,108,101,58,114,101,97,100,45,108,105,110,101,0,2049,4611, - 102,45,115,0,1,25319,3,2049,2001,4,1,13,2049,24475,2049,2001,10,25296,25361,168, - 25516,-8859848394595038695,25363,102,105,108,101,58,102,111,114,45,101,97,99,104,45,108,105,110, - 101,0,2049,4611,115,113,45,0,1,25363,3,1793,25401,4097,25244,2049,25101,4097,25218,4097, - 25230,1793,25392,3841,25218,2049,25317,3841,25244,8,2049,25257,10,1,25382,2049,2417,3841,25218,2049, - 24652,10,1,25372,2049,25280,10,25336,25416,156,0,193455704,0,70,73,68,0,0,25336,25434, - 168,25516,8246312899662267157,25436,102,105,108,101,58,115,108,117,114,112,0,2049,4611,97,115,45, - 0,1,25436,3,1793,25470,4,2049,4301,2049,25101,4097,25416,1793,25461,3841,25416,2049,24681,2049, - 4197,10,1,25454,2049,2497,3841,25416,2049,24652,10,1,25445,2049,4328,10,25417,25491,168,25516, - 249888269686739198,25493,102,105,108,101,58,115,112,101,119,0,2049,4611,115,115,45,0,1,25493, - 3,2049,25194,4,1793,25509,67502597,2049,24712,10,1,25505,2049,4908,2049,24652,10,105,110,116, - 101,114,102,97,99,101,47,102,105,108,101,115,121,115,116,101,109,46,114,101, - 116,114,111,0,25516,26504,25475,25567,168,26483,4299348465103751587,25569,105,111,58,117,110,105,120,45, - 115,121,115,99,97,108,108,0,2049,4611,110,45,0,1,25569,3,1,8,2049,11209, - 2,2049,2822,1793,25623,3,2049,4611,69,114,114,111,114,58,32,85,78,73,88,32, - 100,101,118,105,99,101,32,110,111,116,32,102,111,117,110,100,0,1,25587,2049, - 11320,2049,11274,10,1,25584,2049,2928,2049,11189,10,25545,25648,168,26483,-4549633084047572696,25650,117,110,105, - 120,58,115,121,115,116,101,109,0,2049,4611,115,45,0,1,25650,3,1,0,2049, - 25567,10,25630,25677,168,26483,249909575776928405,25679,117,110,105,120,58,102,111,114,107,0,2049,4611, - 45,110,0,1,25679,3,1,1,2049,25567,10,25661,25707,168,26483,8247016000637760504,25709,117,110,105, - 120,58,101,120,101,99,48,0,2049,4611,115,45,0,1,25709,3,1,2,2049,25567, - 10,25690,25737,168,26483,8247016000637760505,25739,117,110,105,120,58,101,120,101,99,49,0,2049,4611, - 115,115,45,0,1,25739,3,1,3,2049,25567,10,25720,25768,168,26483,8247016000637760506,25770,117,110, - 105,120,58,101,120,101,99,50,0,2049,4611,115,115,115,45,0,1,25770,3,1, - 4,2049,25567,10,25751,25800,168,26483,8247016000637760507,25802,117,110,105,120,58,101,120,101,99,51, - 0,2049,4611,115,115,115,115,45,0,1,25802,3,1,5,2049,25567,10,25783,25832,168, - 26483,249909575776901981,25834,117,110,105,120,58,101,120,105,116,0,2049,4611,110,45,0,1,25834, - 3,1,6,2049,25567,10,25816,25863,168,26483,-4549633084540884128,25865,117,110,105,120,58,103,101,116, - 112,105,100,0,2049,4611,45,110,0,1,25865,3,1,7,2049,25567,10,25845,25892,168, - 26483,249909575777523800,25894,117,110,105,120,58,119,97,105,116,0,2049,4611,45,110,0,1,25894, - 3,1,8,2049,25567,10,25876,25921,168,26483,249909575777101359,25923,117,110,105,120,58,107,105,108, - 108,0,2049,4611,110,110,45,0,1,25923,3,1,9,2049,25567,10,25905,25952,168,26483, - 8247016000650494309,25954,117,110,105,120,58,112,111,112,101,110,0,2049,4611,115,110,45,110,0, - 1,25954,3,1,10,2049,25567,10,25935,25985,168,26483,-4549633084191325687,25987,117,110,105,120,58,112, - 99,108,111,115,101,0,2049,4611,110,45,0,1,25987,3,1,11,2049,25567,10,25967, - 26015,168,26483,8247016000634812845,26017,117,110,105,120,58,99,104,100,105,114,0,2049,4611,115,45, - 0,1,26017,3,1,13,2049,25567,10,25998,26046,168,26483,-4549633084540895924,26048,117,110,105,120,58, - 103,101,116,101,110,118,0,2049,4611,115,97,45,0,1,26048,3,1,14,2049,25567, - 10,26028,26078,168,26483,-4549633084169702651,26080,117,110,105,120,58,112,117,116,101,110,118,0,2049, - 4611,115,45,0,1,26080,3,1,15,2049,25567,10,26060,26108,168,26483,8247016000653932284,26110,117,110, - 105,120,58,115,108,101,101,112,0,2049,4611,110,45,0,1,26110,3,1,16,2049, - 25567,10,26091,26140,168,26483,-2563939202030369066,26142,117,110,105,120,58,101,120,101,99,117,116,101, - 0,2049,4611,115,45,0,1,26142,3,1,17,2049,25567,10,26121,26169,168,26483,249909575777281169,26171, - 117,110,105,120,58,112,105,112,101,0,2049,4611,115,45,115,0,1,26171,3,1, - 0,2049,25952,1,25317,1,25985,2049,2294,10,26153,26208,168,26483,-2563939200175176882,26210,117,110,105,120, - 58,103,101,116,45,99,119,100,0,2049,4611,45,115,41,0,1,26210,3,2049,4611, - 112,119,100,0,1,26219,2049,26169,2049,7329,2049,4611,47,0,1,26231,2049,4887,10,26189, - 26268,168,26483,-2316844556017942917,26270,117,110,105,120,58,99,111,117,110,116,45,102,105,108,101, - 115,45,105,110,45,99,119,100,0,2049,4611,45,110,0,1,26270,3,2049,4611,108, - 115,32,45,49,32,124,32,119,99,32,45,108,0,1,26278,2049,26169,2049,7329,2049, - 271,10,26238,26326,168,26483,-4594486429310984907,26328,117,110,105,120,58,102,111,114,45,101,97,99, - 104,45,102,105,108,101,0,2049,4611,113,45,0,1,26328,3,2049,4611,108,115,32, - 45,49,32,45,112,0,1,26336,1,0,2049,25952,2049,26268,1793,26369,1793,26364,2049,25317, - 2049,4558,67502597,8,10,1,26357,2049,2279,10,1,26355,2049,2497,2049,25985,3,10,26301,26389, - 168,0,210728208851,0,115,116,97,114,116,0,4,2049,4301,1,0,2049,25952,10,26377,26408, - 168,0,6385651009,0,114,101,97,100,0,2,2049,24681,2,2049,4197,2049,2781,10,26397,26430, - 168,0,6953509544294,0,102,105,110,105,115,104,0,2049,25985,2049,4278,10,26301,26457,168,26483, - 1204178398703148788,26459,117,110,105,120,58,115,108,117,114,112,45,112,105,112,101,0,2049,4611, - 97,115,45,110,0,1,26459,3,1793,26478,2049,26389,1,26408,2049,2443,2049,26430,10,1, - 26469,2049,4328,10,105,110,116,101,114,102,97,99,101,47,117,110,105,120,46,114, - 101,116,114,111,0,26483,26603,26435,26521,168,26583,7572652289159374,26523,110,58,114,97,110,100,111, - 109,0,2049,4611,45,110,0,1,26523,3,1,10,2049,11209,2,2049,2822,1793,26576,3, - 2049,4611,69,114,114,111,114,58,32,82,78,71,32,100,101,118,105,99,101,32, - 110,111,116,32,102,111,117,110,100,0,1,26541,2049,11320,2049,11274,10,1,26538,2049, - 2928,2049,11189,10,105,110,116,101,114,102,97,99,101,47,114,110,103,46,114,101, - 116,114,111,0,26583,27140,26506,26627,168,27118,4482520117059041020,26629,99,108,111,99,107,58,111,112, - 101,114,97,116,105,111,110,0,2049,4611,110,45,0,1,26629,3,1,5,2049,11209, - 2,2049,2822,1793,26684,3,2049,4611,69,114,114,111,114,58,32,99,108,111,99,107, - 32,100,101,118,105,99,101,32,110,111,116,32,102,111,117,110,100,0,1,26647, - 2049,11320,2049,11274,10,1,26644,2049,2928,2049,11189,10,26605,26713,168,27118,4482526860617352831,26715,99,108, - 111,99,107,58,116,105,109,101,115,116,97,109,112,0,2049,4611,45,110,0,1, - 26715,3,1,0,2049,26627,10,26691,26742,168,27118,249884182168395049,26744,99,108,111,99,107,58,100, - 97,121,0,2049,4611,45,110,0,1,26744,3,1,1,2049,26627,10,26726,26773,168,27118, - -4577286724249897519,26775,99,108,111,99,107,58,109,111,110,116,104,0,2049,4611,45,110,0,1, - 26775,3,1,2,2049,26627,10,26755,26803,168,27118,8246178011557794972,26805,99,108,111,99,107,58,121, - 101,97,114,0,2049,4611,45,110,0,1,26805,3,1,3,2049,26627,10,26786,26833,168, - 27118,8246178011557195593,26835,99,108,111,99,107,58,104,111,117,114,0,2049,4611,45,110,0,1, - 26835,3,1,4,2049,26627,10,26816,26865,168,27118,-3476509310577319139,26867,99,108,111,99,107,58,109, - 105,110,117,116,101,0,2049,4611,45,110,0,1,26867,3,1,5,2049,26627,10,26846, - 26897,168,27118,-3476509310347652505,26899,99,108,111,99,107,58,115,101,99,111,110,100,0,2049,4611, - 45,110,0,1,26899,3,1,6,2049,26627,10,26878,26930,168,27118,-4044342796047171665,26932,99,108,111, - 99,107,58,117,116,99,58,100,97,121,0,2049,4611,45,110,0,1,26932,3,1, - 7,2049,26627,10,26910,26965,168,27118,4482528721224061399,26967,99,108,111,99,107,58,117,116,99,58, - 109,111,110,116,104,0,2049,4611,45,110,0,1,26967,3,1,8,2049,26627,10,26943, - 26999,168,27118,-4336103753589045278,27001,99,108,111,99,107,58,117,116,99,58,121,101,97,114,0, - 2049,4611,45,110,0,1,27001,3,1,9,2049,26627,10,26978,27033,168,27118,-4336103753589644657,27035,99, - 108,111,99,107,58,117,116,99,58,104,111,117,114,0,2049,4611,45,110,0,1, - 27035,3,1,10,2049,26627,10,27012,27069,168,27118,349495210710499299,27071,99,108,111,99,107,58,117, - 116,99,58,109,105,110,117,116,101,0,2049,4611,45,110,0,1,27071,3,1,11, - 2049,26627,10,27046,27105,168,27118,349495210940165933,27107,99,108,111,99,107,58,117,116,99,58,115, - 101,99,111,110,100,0,2049,4611,45,110,0,1,27107,3,1,12,2049,26627,10,105, - 110,116,101,114,102,97,99,101,47,99,108,111,99,107,46,114,101,116,114,111, - 0,27118,27631,27082,27165,168,0,1976442044545254821,0,115,99,114,105,112,116,58,111,112,101,114, - 97,116,105,111,110,0,1,9,2049,11209,2,2049,2822,1793,27218,3,2049,4611,69,114, - 114,111,114,58,32,115,99,114,105,112,116,105,110,103,32,100,101,118,105,99, - 101,32,110,111,116,32,102,111,117,110,100,0,1,27177,2049,11320,2049,11274,10,1, - 27174,2049,2928,2049,11189,10,27082,27248,168,27605,1976422442775525130,27250,115,99,114,105,112,116,58,97, - 114,103,117,109,101,110,116,115,0,2049,4611,45,110,0,1,27250,3,1,0,2049, - 27165,10,27225,27287,168,27605,7012485947518414468,27289,115,99,114,105,112,116,58,103,101,116,45,97, - 114,103,117,109,101,110,116,0,2049,4611,110,45,115,0,1,27289,3,2049,4589,4, - 1,1,2049,27165,10,27261,27318,168,27605,229469872107401,27320,105,110,99,108,117,100,101,0,2049, - 4611,115,45,0,1,27320,3,1,2,2049,27165,10,27304,27349,168,27605,-4553194680242110987,27351,115,99, - 114,105,112,116,58,110,97,109,101,0,2049,4611,45,115,0,1,27351,3,2049,4589, - 1,3,2049,27165,10,27331,27390,168,27605,6834827170184619652,27392,115,99,114,105,112,116,58,99,117, - 114,114,101,110,116,45,102,105,108,101,0,2049,4611,45,115,0,1,27392,3,2049, - 4589,1,4,2049,27165,10,27364,27431,180,27605,6834827170184835340,27433,115,99,114,105,112,116,58,99, - 117,114,114,101,110,116,45,108,105,110,101,0,2049,4611,45,110,0,1,27433,3, - 1,5,2049,27165,2049,156,10,27405,27473,168,27605,-4964876483161304491,27475,115,99,114,105,112,116,58, - 105,103,110,111,114,101,45,116,111,45,101,111,108,0,2049,4611,45,0,1,27475, - 3,1,6,2049,27165,10,27446,27512,168,27605,-112287744780050755,27514,115,99,114,105,112,116,58,97, - 98,111,114,116,45,105,110,99,108,117,100,101,0,2049,4611,45,0,1,27514,3, - 1,7,2049,27165,10,27485,27536,168,27605,210706230653,27538,97,98,111,114,116,0,2049,4611,45, - 0,1,27538,3,1,149,2049,3991,1,8,2049,27165,10,27524,27583,168,27605,-7741142524340576066,27585,115, - 99,114,105,112,116,58,99,117,114,114,101,110,116,45,108,105,110,101,45,116, - 101,120,116,0,2049,4611,45,115,0,1,27585,3,2049,4589,1793,27600,1,9,2049,27165, - 10,1,27595,2049,2279,10,105,110,116,101,114,102,97,99,101,47,115,99,114,105, - 112,116,105,110,103,46,114,101,116,114,111,0,27605,28204,27552,27656,168,28206,1183117598919957017,27658, - 115,111,99,107,101,116,58,111,112,101,114,97,116,105,111,110,0,2049,4611,110, - 45,0,1,27658,3,1,7,2049,11209,2,2049,2822,1793,27821,3,2049,4611,69,114,114, - 111,114,58,32,115,111,99,107,101,116,32,100,101,118,105,99,101,32,110,111, - 116,32,102,111,117,110,100,0,1,27676,2049,11320,2049,11274,2049,4611,83,101,101,32, - 104,116,116,112,115,58,47,47,114,101,116,114,111,102,111,114,116,104,46,111, - 114,103,47,115,117,112,112,111,114,116,47,50,48,50,50,46,49,47,83,79, - 67,75,69,84,83,46,109,100,0,1,27715,2049,11320,2049,11274,2049,4611,102,111,114, - 32,105,110,115,116,114,117,99,116,105,111,110,115,32,111,110,32,101,110,97, - 98,108,105,110,103,32,115,111,99,107,101,116,115,46,0,1,27776,2049,11320,2049, - 11274,10,1,27673,2049,2928,2049,11189,10,27633,27855,168,28180,-7671511728383126910,27857,115,111,99,107,101, - 116,58,103,101,116,104,111,115,116,98,121,110,97,109,101,0,2049,4611,97,115, - 45,0,1,27857,3,1,0,2049,27656,10,27828,27889,168,28180,4328757989659661596,27891,115,111,99,107, - 101,116,58,99,114,101,97,116,101,0,2049,4611,45,110,0,1,27891,3,1,1, - 2049,27656,10,27869,27920,168,28180,-4552658767528245371,27922,115,111,99,107,101,116,58,98,105,110,100, - 0,2049,4611,115,110,45,110,0,1,27922,3,1,2,2049,27656,10,27902,27955,168,28180, - 4328757990001730167,27957,115,111,99,107,101,116,58,108,105,115,116,101,110,0,2049,4611,110,110, - 45,110,110,0,1,27957,3,1,3,2049,27656,10,27935,27991,168,28180,4328757989563534360,27993,115,111, - 99,107,101,116,58,97,99,99,101,112,116,0,2049,4611,110,45,110,110,0,1, - 27993,3,1,4,2049,27656,10,27971,28027,168,28180,-4724938931013862254,28029,115,111,99,107,101,116,58, - 99,111,110,110,101,99,116,0,2049,4611,110,45,110,110,0,1,28029,3,1,5, - 2049,27656,10,28006,28060,168,28180,-4552658767527638798,28062,115,111,99,107,101,116,58,115,101,110,100, - 0,2049,4611,115,110,45,110,110,0,1,28062,3,1,6,2049,27656,10,28042,28094,168, - 28180,-4552658767527675080,28096,115,111,99,107,101,116,58,114,101,99,118,0,2049,4611,97,110,110, - 45,110,110,0,1,28096,3,1,7,2049,27656,10,28076,28130,168,28180,-2663786738754388898,28132,115,111, - 99,107,101,116,58,99,108,111,115,101,0,2049,4611,110,45,0,1,28132,3,1, - 8,2049,27656,10,28111,28166,168,28180,1183100690560715498,28168,115,111,99,107,101,116,58,99,111,110, - 102,105,103,117,114,101,0,2049,4611,115,115,45,0,1,28168,3,1,9,2049,27656, - 10,105,110,116,101,114,102,97,99,101,47,115,111,99,107,101,116,115,46,114, - 101,116,114,111,0,28180,28223,115,111,99,107,101,116,58,111,112,101,114,97,116, - 105,111,110,0,28206,28507,28143,28239,168,28481,229469862290528,28241,105,111,58,99,111,114,101,0, - 2049,4611,110,45,0,1,28241,3,1,8000,2049,11209,2049,11189,10,28225,28270,168,28481,249884313919988732, - 28272,99,111,114,101,58,105,110,105,116,0,2049,4611,110,45,0,1,28272,3,1, - 0,2049,28239,10,28254,28300,168,28481,8246182359371694326,28302,99,111,114,101,58,115,116,97,114,116, - 0,2049,4611,97,110,45,0,1,28302,3,1,1,2049,28239,10,28283,28331,168,28481,8246182359367475558, - 28333,99,111,114,101,58,112,97,117,115,101,0,2049,4611,110,45,0,1,28333,3, - 1,2,2049,28239,10,28314,28369,168,28481,8337299194488917014,28371,99,111,114,101,58,112,97,117,115, - 101,45,99,117,114,114,101,110,116,0,2049,4611,45,0,1,28371,3,1,3,2049, - 28239,10,28344,28399,168,28481,-4577143246433635687,28401,99,111,114,101,58,114,101,115,117,109,101,0, - 2049,4611,110,45,0,1,28401,3,1,4,2049,28239,10,28381,28432,168,28481,-3888095465377135055,28434,99, - 111,114,101,58,114,101,97,100,47,114,101,103,0,2049,4611,110,45,118,0,1, - 28434,3,1,5,2049,28239,10,28412,28467,168,28481,820065755623810592,28469,99,111,114,101,58,119,114, - 105,116,101,47,114,101,103,0,2049,4611,118,110,45,0,1,28469,3,1,6,2049, - 28239,10,105,110,116,101,114,102,97,99,101,47,109,117,108,116,105,99,111,114, - 101,46,114,101,116,114,111,0,28481,28704,28446,28529,168,28684,644988671245709381,28531,102,102,105,58, - 111,112,101,114,97,116,105,111,110,0,2049,4611,110,45,63,0,1,28531,3,1, - 8100,2049,11209,2,2049,2822,1793,28585,3,2049,4611,69,114,114,111,114,58,32,70,70, - 73,32,100,101,118,105,99,101,32,110,111,116,32,102,111,117,110,100,0,1, - 28550,2049,11320,2049,11274,10,1,28547,2049,2928,2049,11189,10,28509,28607,168,28684,7572367767785414,28609,102, - 102,105,58,111,112,101,110,0,2049,4611,115,45,110,0,1,28609,3,1,0,2049, - 28529,10,28592,28639,168,28684,-4572980637897979592,28641,102,102,105,58,109,97,112,45,115,121,109,0, - 2049,4611,115,110,45,110,0,1,28641,3,1,1,2049,28529,10,28621,28671,168,28684,8246308498881747296, - 28673,102,102,105,58,105,110,118,111,107,101,0,2049,4611,110,45,0,1,28673,3, - 1,2,2049,28529,10,105,110,116,101,114,102,97,99,101,47,102,102,105,46,114, - 101,116,114,111,0,28684,29161,28654,28723,168,29136,8247016409221251463,28725,117,110,115,105,103,110,101, - 100,58,43,0,2049,4611,110,110,45,110,0,1,28725,3,1,0,1,8101,2049,11209, - 2049,11189,17,10,28706,28760,168,29136,8247016409221251465,28762,117,110,115,105,103,110,101,100,58,45, - 0,2049,4611,110,110,45,110,0,1,28762,3,1,0,1,8101,2049,11209,2049,11189,18, - 10,28743,28797,168,29136,8247016409221251462,28799,117,110,115,105,103,110,101,100,58,42,0,2049,4611, - 110,110,45,110,0,1,28799,3,1,0,1,8101,2049,11209,2049,11189,19,10,28780,28837, - 168,29136,7638409966457829387,28839,117,110,115,105,103,110,101,100,58,47,109,111,100,0,2049,4611, - 110,110,45,110,110,0,1,28839,3,1,0,1,8101,2049,11209,2049,11189,20,10,28817, - 28877,168,29136,-2563494254608726831,28879,117,110,115,105,103,110,101,100,58,101,113,63,0,2049,4611, - 110,110,45,102,0,1,28879,3,1,0,1,8101,2049,11209,2049,11189,11,10,28858,28917, - 168,29136,7638409966457748830,28919,117,110,115,105,103,110,101,100,58,45,101,113,63,0,2049,4611, - 110,110,45,102,0,1,28919,3,1,0,1,8101,2049,11209,2049,11189,12,10,28897,28956, - 168,29136,-2563494254608719109,28958,117,110,115,105,103,110,101,100,58,108,116,63,0,2049,4611,110, - 110,45,102,0,1,28958,3,1,0,1,8101,2049,11209,2049,11189,13,10,28937,28995,168, - 29136,-2563494254608724554,28997,117,110,115,105,103,110,101,100,58,103,116,63,0,2049,4611,110,110, - 45,102,0,1,28997,3,1,0,1,8101,2049,11209,2049,11189,14,10,28976,29036,168,29136, - -6186888138744896262,29038,117,110,115,105,103,110,101,100,58,115,104,105,102,116,0,2049,4611,110, - 110,45,110,0,1,29038,3,1,0,1,8101,2049,11209,2049,11189,24,10,29015,29077,168, - 29136,-6186888138833512267,29079,117,110,115,105,103,110,101,100,58,42,47,109,111,100,0,2049,4611, - 110,110,110,45,110,110,0,1,29079,3,1,1,1,0,1,8101,2049,11209,2,2049, - 11189,2049,11189,10,29056,29115,168,29136,210639169918,29117,42,47,109,111,100,0,2049,4611,110,110, - 110,45,110,110,0,1,29117,3,1,1,1,8101,2049,11209,2049,11189,10,105,110,116, - 101,114,102,97,99,101,47,117,110,115,105,103,110,101,100,46,114,101,116,114, - 111,0,29136,29303,29103,29182,168,29280,-3502245454587251943,29184,100,58,117,115,101,45,104,97,115,104, - 101,115,0,2049,4611,45,0,1,29184,3,1,29,1,241,1,5,18,16,1793,29203, - 2049,188,15,10,1,29199,1,241,1,8,18,16,1,2049,1,241,16,1,5044,1, - 241,2049,3204,16,10,29163,29244,168,29280,-4893635544173424761,29246,100,58,117,115,101,45,115,116,114, - 105,110,103,115,0,2049,4611,45,0,1,29246,3,1,118,1,241,1,5,18,16, - 1,192,1,241,1,8,18,16,1,0,1,241,16,1,0,1,241,2049,3204,16, - 10,105,110,116,101,114,102,97,99,101,47,102,117,116,117,114,101,46,114,101, - 116,114,111,0,29280,29451,29224,29324,168,0,-3527051417241377258,0,98,108,111,99,107,58,105,110, - 118,111,107,101,0,1,3,2049,11209,2049,11189,10,29224,29348,168,29428,8246131600073141446,29350,98,108, - 111,99,107,58,114,101,97,100,0,2049,4611,110,97,45,0,1,29350,3,1,0, - 2049,29324,10,29331,29380,168,29428,-4578818303223200395,29382,98,108,111,99,107,58,119,114,105,116,101, - 0,2049,4611,110,97,45,0,1,29382,3,1,1,2049,29324,10,29362,29415,168,29428,-4036225629868593021, - 29417,98,108,111,99,107,58,115,101,116,45,102,105,108,101,0,2049,4611,115,45, - 0,1,29417,3,1,2,2049,29324,10,105,110,116,101,114,102,97,99,101,47,98, - 108,111,99,107,115,46,114,101,116,114,111,0,29428,30472,29394,29475,168,29732,4283726481136624767,29477, - 101,114,114,58,115,101,116,45,104,97,110,100,108,101,114,0,2049,4611,110,110, - 45,0,1,29477,3,1,1234,2049,11209,2,2049,2822,1793,29542,3,2049,4611,69,114,114, - 111,114,58,32,101,114,114,111,114,32,104,97,110,100,108,105,110,103,32,100, - 101,118,105,99,101,32,110,111,116,32,102,111,117,110,100,0,1,29496,2049,11320, - 2049,11274,10,1,29493,2049,2928,1,0,4,2049,11189,10,29453,29566,168,29732,229464878751060,29568,101, - 114,114,58,100,115,117,0,2049,4611,45,0,1,29568,3,2049,11375,2049,11274,2049,4611, - 69,82,82,79,82,58,32,68,83,85,58,32,68,65,84,65,32,83,84,65, - 67,75,32,85,78,68,69,82,70,76,79,87,0,1,29579,2049,11320,2049,11274,2049, - 11496,10,29552,29635,168,29732,229464878751054,29637,101,114,114,58,100,115,111,0,2049,4611,45,0, - 1,29637,3,2049,11375,2049,11274,2049,4611,69,82,82,79,82,58,32,68,83,79,58, - 32,68,65,84,65,32,83,84,65,67,75,32,79,86,69,82,70,76,79,87, - 0,1,29648,2049,11320,2049,11274,2049,11496,10,29621,29712,168,29732,-6210978877792005319,29714,101,114,114,58, - 115,101,116,45,100,101,102,97,117,108,116,115,0,2049,4611,45,0,1,29714,3, - 1,29566,1,1,2049,29475,1,29635,1,2,2049,29475,10,105,110,116,101,114,102,97, - 99,101,47,101,114,114,111,114,46,114,101,116,114,111,0,29689,29776,168,0,-1159954141530329845, - 29778,105,111,99,116,108,58,111,112,101,114,97,116,105,111,110,0,2049,4611,110, - 45,0,1,29778,3,1,14,2049,11209,2,2049,2822,1793,29833,3,2049,4611,69,114,114, - 111,114,58,32,105,111,99,116,108,32,100,101,118,105,99,101,32,110,111,116, - 32,102,111,117,110,100,0,1,29796,2049,11320,2049,11274,10,1,29793,2049,2928,2049,11189, - 10,29754,29862,168,0,-1159947561758408230,29864,105,111,99,116,108,58,116,101,114,109,45,115,105, - 122,101,0,2049,4611,45,110,110,0,1,29864,3,1,0,2049,29776,10,29840,29899,168, - 0,-1384827797416383269,29901,105,111,99,116,108,58,115,101,116,45,99,98,114,101,97,107,0, - 2049,4611,45,0,1,29901,3,1,1,2049,29776,10,29876,29934,168,0,-1384827797064164732,29936,105,111, - 99,116,108,58,115,101,116,45,108,98,114,101,97,107,0,2049,4611,45,0,1, - 29936,3,1,2,2049,29776,10,29911,29969,168,0,-1384833267584846441,29971,105,111,99,116,108,58,115, - 97,118,101,45,115,116,97,116,101,0,2049,4611,45,0,1,29971,3,1,3,2049, - 29776,10,29946,30007,168,0,1092846777098631660,30009,105,111,99,116,108,58,114,101,115,116,111,114, - 101,45,115,116,97,116,101,0,2049,4611,45,0,1,30009,3,1,4,2049,29776,10, - 1793,30040,1,194,1,2,17,8,2049,1579,2049,192,3841,12097,8,2049,1579,2049,188,16, - 10,1,30021,29981,30053,168,30448,6384117006,30055,72,79,77,69,0,2049,4611,45,115,0,1, - 30055,3,2049,2001,1,4096,17,10,37,115,47,46,99,111,110,102,105,103,47,114, - 101,116,114,111,102,111,114,116,104,47,108,105,98,114,97,114,121,47,37,115, - 46,114,101,116,114,111,0,30042,30067,156,30448,6061648467740287960,30130,108,105,98,114,97,114,121, - 58,46,67,79,78,70,73,71,0,45,115,0,46,47,108,105,98,114,97,114, - 121,47,37,115,46,114,101,116,114,111,0,30106,30131,156,30448,-4563659402581934926,30170,108,105,98, - 114,97,114,121,58,67,87,68,0,45,115,0,30150,30189,168,30448,-4563659402581898990,30191,108,105, - 98,114,97,114,121,58,99,119,100,0,2049,4611,115,45,115,0,1,30191,3,1, - 30131,2049,8580,10,30171,30225,168,30448,6061648469031755928,30227,108,105,98,114,97,114,121,58,46,99, - 111,110,102,105,103,0,2049,4611,45,115,0,1,30227,3,2049,4611,72,79,77,69, - 0,1,30235,2049,30053,2049,26046,2049,30053,1,30067,2049,8580,10,30203,30276,168,30448,-2879782938503308011,30278, - 108,105,98,114,97,114,121,58,102,105,108,101,110,97,109,101,0,2049,4611,115, - 45,115,0,1,30278,3,2,2049,30189,2,2049,25037,1,2205,2049,2928,3,2049,30225,2, - 2049,25037,1793,30304,10,1,30303,2049,2928,3,2049,4589,10,30253,30336,168,30448,-2799120562421764174,30338,108, - 105,98,114,97,114,121,58,99,111,110,116,97,105,110,115,63,0,2049,4611,115, - 45,102,0,1,30338,3,1,30189,1,30225,2049,2294,1,25037,2049,2326,22,10,30312,30376, - 168,30448,-3026807695525939020,30378,108,105,98,114,97,114,121,58,108,111,97,100,0,2049,4611,115, - 45,0,1,30378,3,2,2049,30336,1793,30394,2049,30276,2049,27318,10,1,30389,1793,30443,2049, - 4611,69,82,82,79,82,58,32,76,105,98,114,97,114,121,32,96,37,115,96, - 32,119,97,115,32,110,111,116,32,102,111,117,110,100,0,1,30400,2049,8580,2049, - 11320,2049,11274,10,1,30398,2049,66,10,105,110,116,101,114,102,97,99,101,47,108, - 105,98,114,97,114,121,46,114,101,116,114,111,0,30448,12283,30357,30491,168,30783,8246457295145463473, - 30493,105,109,97,103,101,58,115,97,118,101,0,2049,4611,115,45,0,1,30493,3, - 1,1000,2049,11209,2049,11189,10,30474,30518,168,0,210711039690,0,101,100,105,116,63,0,2, - 1793,30525,1,8,11,10,1,30521,1793,30533,1,127,11,10,1,30529,2049,2294,22,10, - 30506,30552,168,0,6953475974244,0,101,110,100,101,100,63,0,2049,4278,3841,4387,2049,2731,10, - 30539,30569,168,0,193486030,0,97,100,100,0,2049,30552,1,17,1,4197,2049,66,10,30559, - 30591,168,0,6953539406400,0,103,97,116,104,101,114,0,2049,30518,1,17,1,30569,2049,66, - 10,30578,30612,168,0,210709415765,0,99,121,99,108,101,0,2049,11477,2049,2253,4,8,2049, - 2698,25,3,2049,30591,1,30612,7,10,30474,30646,168,30783,-4557881830897049127,30648,112,97,114,115,101, - 45,117,110,116,105,108,0,2049,4611,113,45,115,0,1,30648,3,1793,30667,2049,4589, - 2049,4301,2049,30612,771,2049,4157,10,1,30657,2049,4328,10,30628,30684,168,30783,210726130610,30686,115, - 58,103,101,116,0,2049,4611,45,115,0,1,30686,3,1793,30714,1793,30700,1,13,11, - 10,1,30696,1793,30708,1,10,11,10,1,30704,2049,2294,22,10,1,30694,2049,30646,10, - 30672,30731,168,30783,210708950412,30733,99,108,101,97,114,0,2049,4611,45,0,1,30733,3,2049, - 4611,92,94,91,50,74,92,94,91,48,59,48,72,0,1,30740,2049,8580,2049,11320, - 10,30719,30769,180,30783,5861507,30771,47,47,0,2049,4611,45,0,1,30771,3,2049,27473,1, - 11513,2049,3975,10,105,110,116,101,114,102,97,99,101,47,114,101,116,114,111,45, - 117,110,105,120,46,114,101,116,114,111,0,30760,30824,156,0,229441520490121,0,83,111,117, - 114,99,101,115,0,3,31076,31297,31574,0,0,0,0,0,0,0,0,0,0,0, + 32,110,97,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, + 110,97,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, + 110,109,45,109,110,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, + 32,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,45,32, + 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,110,113,45,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,120,113,113,113,45,63, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,120,121,122,113, + 113,113,45,63,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, + 120,121,122,113,45,63,32,32,65,58,32,45,32,32,70,58,32,45,0,68, + 58,32,110,109,45,109,110,109,32,32,65,58,32,45,32,32,70,58,32,45, + 0,68,58,32,97,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68, + 58,32,110,45,110,110,110,110,32,32,65,58,32,45,32,32,70,58,32,45, + 0,68,58,32,113,40,45,102,41,45,32,32,65,58,32,45,32,32,70,58, + 32,45,0,68,58,32,97,45,32,32,65,58,32,45,32,32,70,58,32,45, + 0,68,58,32,110,97,45,32,32,65,58,32,45,32,32,70,58,32,45,0, + 68,58,32,97,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58, + 32,110,97,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, + 97,108,117,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32, + 97,45,32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,45, + 32,32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,113,45,32, + 32,65,58,32,45,32,32,70,58,32,45,0,68,58,32,97,113,45,32,32, + 65,58,32,45,32,32,70,58,32,45,0,68,58,32,115,45,32,32,65,58, + 32,45,32,32,70,58,32,45,0,68,58,32,110,115,45,32,32,65,58,32, + 45,32,32,70,58,32,45,0,68,58,32,115,115,45,32,32,65,58,32,45, + 32,32,70,58,32,45,0,68,58,32,97,45,110,32,32,65,58,32,45,32, + 32,70,58,32,45,0,68,58,32,97,45,97,110,32,32,65,58,32,45,32, + 32,70,58,32,45,0,68,58,32,110,97,45,32,32,65,58,32,45,32,32, + 70,58,32,45,0,68,58,32,110,97,45,97,32,32,65,58,32,45,32,32, + 70,58,32,45,0,68,58,32,113,40,45,102,41,45,32,32,65,58,32,45, + 32,32,70,58,32,45,0,68,58,32,109,110,45,111,32,32,65,58,32,45, + 32,32,70,58,32,45,0,68,58,32,45,32,32,65,58,32,45,32,32,70, + 58,32,45,0,68,58,32,45,32,32,65,58,32,45,32,32,70,58,32,45, + 0,68,58,32,45,97,32,32,65,58,32,45,32,32,70,58,32,45,0,68, + 58,32,45,32,32,65,58,32,45,32,32,70,58,32,45,0,15079,22577,168,22587, + -3502357327552891667,0,200,200,0,100,58,115,101,116,45,115,111,117,114,99,101,0,1,14636, + 2049,2889,2049,258,2049,186,16,10,105,110,116,101,114,102,97,99,101,47,115,111, + 117,114,99,101,115,46,114,101,116,114,111,0,22587,22625,98,117,105,108,100,46, + 114,101,116,114,111,0,22613,22639,114,101,116,114,111,46,102,111,114,116,104,0, + 22627,23223,22555,0,156,23199,-2419379730924625824,22666,200,200,0,68,69,86,73,67,69,58,79,85, + 84,80,85,84,0,45,110,0,22641,1,156,23199,3179875372589939872,22694,200,200,0,68,69,86, + 73,67,69,58,75,69,89,66,79,65,82,68,0,45,110,0,22667,2,156,23199, + -2419379731287713704,22720,200,200,0,68,69,86,73,67,69,58,70,76,79,65,84,83,0,45, + 110,0,22695,4,156,23199,-5104244739232646654,22745,200,200,0,68,69,86,73,67,69,58,70,73, + 76,69,83,0,45,110,0,22721,3,156,23199,-2419379731444253395,22771,200,200,0,68,69,86,73, + 67,69,58,66,76,79,67,75,83,0,45,110,0,22746,5,156,23199,-5104244739236093413,22796,200, + 200,0,68,69,86,73,67,69,58,67,76,79,67,75,0,45,110,0,22772,6, + 156,23199,-5744567309556069531,22825,200,200,0,68,69,86,73,67,69,58,82,69,83,69,82,86, + 69,68,54,0,45,110,0,22797,7,156,23199,-2419379730775816680,22851,200,200,0,68,69,86,73, + 67,69,58,83,79,67,75,69,84,0,45,110,0,22826,8,156,23199,-4626612040269427085,22875,200, + 200,0,68,69,86,73,67,69,58,85,78,73,88,0,45,110,0,22852,9,156, + 23199,-5744565989521702654,22904,200,200,0,68,69,86,73,67,69,58,83,67,82,73,80,84,73, + 78,71,0,45,110,0,22876,10,156,23199,8244683305011325430,22927,200,200,0,68,69,86,73,67, + 69,58,82,78,71,0,45,110,0,22905,11,156,23199,-5103280478254778479,22957,200,200,0,68,69, + 86,73,67,69,58,82,69,83,69,82,86,69,68,49,49,0,45,110,0,22928, + 12,156,23199,-5103280478254778478,22987,200,200,0,68,69,86,73,67,69,58,82,69,83,69,82, + 86,69,68,49,50,0,45,110,0,22958,13,156,23199,-5103280478254778477,23017,200,200,0,68,69, + 86,73,67,69,58,82,69,83,69,82,86,69,68,49,51,0,45,110,0,22988, + 14,156,23199,-5104244739228882582,23042,200,200,0,68,69,86,73,67,69,58,73,79,67,84,76, + 0,45,110,0,23018,15,156,23199,-2419379731026907097,23068,200,200,0,68,69,86,73,67,69,58, + 77,65,76,76,79,67,0,45,110,0,23043,1000,156,23199,-5104244739228957070,23093,200,200,0,68, + 69,86,73,67,69,58,73,77,65,71,69,0,45,110,0,23069,1234,156,23199,-5104244739233502279, + 23118,200,200,0,68,69,86,73,67,69,58,69,82,82,79,82,0,45,110,0, + 23094,8000,156,23199,-5744573668168662717,23147,200,200,0,68,69,86,73,67,69,58,77,85,76,84, + 73,67,79,82,69,0,45,110,0,23119,8100,156,23199,8244683305011312100,23170,200,200,0,68,69, + 86,73,67,69,58,70,70,73,0,45,110,0,23148,8101,156,23199,3179875810170796684,23198,200,200, + 0,68,69,86,73,67,69,58,85,78,83,73,71,78,69,68,0,45,110,0, + 105,110,116,101,114,102,97,99,101,47,100,101,118,105,99,101,115,46,114,101, + 116,114,111,0,23199,26668,23171,23250,168,26638,-6845980351726443322,23252,200,200,0,102,108,111,97,116, + 58,111,112,101,114,97,116,105,111,110,0,2049,5525,110,45,0,1,23252,3,1, + 2,2049,12792,2,2049,3517,1793,23316,3,2049,5525,69,114,114,111,114,58,32,102,108, + 111,97,116,105,110,103,32,112,111,105,110,116,32,100,101,118,105,99,101,32, + 110,111,116,32,102,111,117,110,100,0,1,23270,2049,12918,2049,12863,10,1,23267,2049, + 3638,2049,12769,10,23225,23343,168,26638,8246618443670464787,23345,200,200,0,110,58,116,111,45,102,108, + 111,97,116,0,2049,5525,110,45,95,102,58,45,110,0,1,23345,3,1,0,2049, + 23250,10,23323,23381,168,26638,8246850501092474552,23383,200,200,0,115,58,116,111,45,102,108,111,97, + 116,0,2049,5525,115,45,95,102,58,45,110,0,1,23383,3,1,1,2049,23250,10, + 23361,23420,168,26638,-4575005096076366594,23422,200,200,0,102,58,116,111,45,110,117,109,98,101,114, + 0,2049,5525,102,58,97,45,95,95,45,110,0,1,23422,3,1,2,2049,23250,10, + 23399,23460,168,26638,-4575005095881687956,23462,200,200,0,102,58,116,111,45,115,116,114,105,110,103, + 0,2049,5525,102,58,110,45,95,95,45,115,0,1,23462,3,2049,5500,2,1,3, + 2049,23250,10,23439,23495,168,26638,193490032,23497,200,200,0,102,58,43,0,2049,5525,102,58, + 97,98,45,99,0,1,23497,3,1,4,2049,23250,10,23482,23525,168,26638,193490034,23527,200, + 200,0,102,58,45,0,2049,5525,102,58,97,98,45,99,0,1,23527,3,1,5, + 2049,23250,10,23512,23555,168,26638,193490031,23557,200,200,0,102,58,42,0,2049,5525,102,58, + 97,98,45,99,0,1,23557,3,1,6,2049,23250,10,23542,23585,168,26638,193490036,23587,200, + 200,0,102,58,47,0,2049,5525,102,58,97,98,45,99,0,1,23587,3,1,7, + 2049,23250,10,23572,23619,168,26638,229463966214663,23621,200,200,0,102,58,102,108,111,111,114,0, + 2049,5525,102,58,97,98,45,99,0,1,23621,3,1,8,2049,23250,10,23602,23655,168, + 26638,249886255052186944,23657,200,200,0,102,58,99,101,105,108,105,110,103,0,2049,5525,102,58, + 102,45,102,0,1,23657,3,1,9,2049,23250,10,23636,23687,168,26638,6953453994383,23689,200,200, + 0,102,58,115,113,114,116,0,2049,5525,102,58,102,45,102,0,1,23689,3,1, + 10,2049,23250,10,23671,23718,168,26638,210710711802,23720,200,200,0,102,58,101,113,63,0,2049, + 5525,102,58,97,98,45,99,0,1,23720,3,1,11,2049,23250,10,23703,23751,168,26638, + 6953451465639,23753,200,200,0,102,58,45,101,113,63,0,2049,5525,102,58,97,98,45,99, + 0,1,23753,3,1,12,2049,23250,10,23735,23783,168,26638,210710719524,23785,200,200,0,102,58, + 108,116,63,0,2049,5525,102,58,97,98,45,99,0,1,23785,3,1,13,2049,23250, + 10,23768,23815,168,26638,210710714079,23817,200,200,0,102,58,103,116,63,0,2049,5525,102,58, + 97,98,45,99,0,1,23817,3,1,14,2049,23250,10,23800,23849,168,26638,229463963592506,23851,200, + 200,0,102,58,100,101,112,116,104,0,2049,5525,45,110,0,1,23851,3,1,15, + 2049,23250,10,23832,23877,168,26638,210710710894,23879,200,200,0,102,58,100,117,112,0,2049,5525, + 102,58,97,45,97,97,0,1,23879,3,1,16,2049,23250,10,23862,23910,168,26638,6953453456314, + 23912,200,200,0,102,58,100,114,111,112,0,2049,5525,102,58,97,45,0,1,23912, + 3,1,17,2049,23250,10,23894,23941,168,26638,6953454000352,23943,200,200,0,102,58,115,119,97, + 112,0,2049,5525,102,58,97,98,45,98,97,0,1,23943,3,1,18,2049,23250,10, + 23925,23974,168,26638,210710719399,23976,200,200,0,102,58,108,111,103,0,2049,5525,102,58,97, + 98,45,99,0,1,23976,3,1,19,2049,23250,10,23959,24008,168,26638,229463978190066,24010,200,200, + 0,102,58,112,111,119,101,114,0,2049,5525,102,58,97,98,45,99,0,1,24010, + 3,1,20,2049,23250,10,23991,24040,168,26638,210710726831,24042,200,200,0,102,58,115,105,110, + 0,2049,5525,102,58,102,45,102,0,1,24042,3,1,21,2049,23250,10,24025,24071,168, + 26638,210710727656,24073,200,200,0,102,58,116,97,110,0,2049,5525,102,58,102,45,102,0, + 1,24073,3,1,22,2049,23250,10,24056,24102,168,26638,210710709610,24104,200,200,0,102,58,99, + 111,115,0,2049,5525,102,58,102,45,102,0,1,24104,3,1,23,2049,23250,10,24087, + 24134,168,26638,6953453349392,24136,200,200,0,102,58,97,115,105,110,0,2049,5525,102,58,102, + 45,102,0,1,24136,3,1,24,2049,23250,10,24118,24166,168,26638,6953453332171,24168,200,200,0, + 102,58,97,99,111,115,0,2049,5525,102,58,102,45,102,0,1,24168,3,1,25, + 2049,23250,10,24150,24198,168,26638,6953453350217,24200,200,200,0,102,58,97,116,97,110,0,2049, + 5525,102,58,102,45,102,0,1,24200,3,1,26,2049,23250,10,24182,24230,168,26638,6953453890949, + 24232,200,200,0,102,58,112,117,115,104,0,2049,5525,102,58,102,45,0,1,24232, + 3,1,27,2049,23250,10,24214,24260,168,26638,210710723764,24262,200,200,0,102,58,112,111,112, + 0,2049,5525,102,58,45,102,0,1,24262,3,1,28,2049,23250,10,24245,24293,168,26638, + 7572310679561435,24295,200,200,0,102,58,97,100,101,112,116,104,0,2049,5525,45,110,0,1, + 24295,3,1,29,2049,23250,10,24275,24322,168,26638,6953453855649,24324,200,200,0,102,58,111,118, + 101,114,0,2049,5525,102,58,97,98,45,97,98,97,0,1,24324,3,2049,24230,2049, + 23877,2049,24260,2049,23941,10,24306,24361,168,26638,6953454034172,24363,200,200,0,102,58,116,117,99, + 107,0,2049,5525,102,58,97,98,45,98,97,98,0,1,24363,3,2049,23877,2049,24230, + 2049,23941,2049,24260,10,24345,24399,168,26638,210710721388,24401,200,200,0,102,58,110,105,112,0, + 2049,5525,102,58,97,98,45,98,0,1,24401,3,2049,23941,2049,23910,10,24384,24437,168, + 26638,-4575027385529052237,24439,200,200,0,102,58,100,114,111,112,45,112,97,105,114,0,2049,5525, + 102,58,97,98,45,0,1,24439,3,2049,23910,2049,23910,10,24416,24473,168,26638,8246246480203571943,24475, + 200,200,0,102,58,100,117,112,45,112,97,105,114,0,2049,5525,102,58,97,98, + 45,97,98,97,98,0,1,24475,3,2049,24322,2049,24322,10,24453,24508,168,26638,210710725946,24510, + 200,200,0,102,58,114,111,116,0,2049,5525,102,58,97,98,99,45,98,99,97, + 0,1,24510,3,2049,24230,2049,23941,2049,24260,2049,23941,10,24493,24549,180,26638,229482595734757,24551,200, + 200,0,115,105,103,105,108,58,46,0,2049,5525,115,45,95,95,102,58,45,97, + 0,1,24551,3,2049,2505,1,5557,1,5466,2049,66,1,23381,2049,168,10,24532,24594,168, + 26638,7572311399974070,24596,200,200,0,102,58,115,113,117,97,114,101,0,2049,5525,102,58,110, + 45,109,0,1,24596,3,2049,23877,2049,23555,10,24576,24631,168,26638,-4575010631505066633,24633,200,200,0, + 102,58,112,111,115,105,116,105,118,101,63,0,2049,5525,45,102,95,95,102,58, + 97,45,0,1,24633,3,1,0,2049,23343,2049,23815,10,24610,24673,168,26638,-4575013886317431657,24675,200, + 200,0,102,58,110,101,103,97,116,105,118,101,63,0,2049,5525,45,102,95,95, + 102,58,97,45,0,1,24675,3,1,0,2049,23343,2049,23783,10,24652,24712,168,26638,7572311189563001, + 24714,200,200,0,102,58,110,101,103,97,116,101,0,2049,5525,102,58,97,45,98, + 0,1,24714,3,1,-1,2049,23343,2049,23555,10,24694,24745,168,26638,210710707003,24747,200,200,0, + 102,58,97,98,115,0,2049,5525,102,58,97,45,98,0,1,24747,3,2049,23877,2049, + 24673,1,24712,9,10,24730,24779,168,26638,210710723966,24781,200,200,0,102,58,112,117,116,0, + 2049,5525,102,58,97,45,0,1,24781,3,2049,23460,2049,12918,10,24764,24808,168,26638,6385172350, + 24810,200,200,0,102,58,80,73,0,2049,5525,102,58,45,70,0,1,24810,3,2049, + 5525,51,46,49,52,49,53,57,50,54,53,52,0,1,24820,2049,23381,10,24794,24850, + 168,26638,193490058,24852,200,200,0,102,58,69,0,2049,5525,102,58,45,70,0,1,24852, + 3,2049,5525,50,46,55,49,56,50,56,49,56,50,56,0,1,24862,2049,23381,10, + 24837,24894,168,26638,210710685186,24896,200,200,0,102,58,78,65,78,0,2049,5525,102,58,45, + 110,0,1,24896,3,2049,5525,48,0,1,24906,2049,23381,2049,5525,48,0,1,24914,2049, + 23381,2049,23585,10,24879,24938,168,26638,210710680162,24940,200,200,0,102,58,73,78,70,0,2049, + 5525,102,58,45,110,0,1,24940,3,2049,5525,49,46,48,0,1,24950,2049,23381,2049, + 5525,48,0,1,24960,2049,23381,2049,23585,10,24923,24985,168,26638,6953451433999,24987,200,200,0,102, + 58,45,73,78,70,0,2049,5525,102,58,45,110,0,1,24987,3,2049,5525,45,49, + 46,48,0,1,24997,2049,23381,2049,5525,48,0,1,25008,2049,23381,2049,23585,10,24969,25033, + 168,26638,6953453797089,25035,200,200,0,102,58,110,97,110,63,0,2049,5525,102,58,110,45, + 44,45,102,0,1,25035,3,2049,23877,2049,23751,10,25017,25067,168,26638,6953453631297,25069,200,200, + 0,102,58,105,110,102,63,0,2049,5525,102,58,110,45,44,45,102,0,1,25069, + 3,2049,24938,2049,23718,10,25051,25102,168,26638,229463898507918,25104,200,200,0,102,58,45,105,110, + 102,63,0,2049,5525,102,58,110,45,44,45,102,0,1,25104,3,2049,24985,2049,23718, + 10,25085,25137,168,26638,229463980560013,25139,200,200,0,102,58,114,111,117,110,100,0,2049,5525, + 45,124,102,58,97,45,98,0,1,25139,3,2049,23877,2049,24673,1793,25171,2049,5525,48, + 46,53,0,1,25158,2049,23381,2049,23525,2049,23655,10,1,25156,1793,25190,2049,5525,48,46, + 53,0,1,25177,2049,23381,2049,23495,2049,23619,10,1,25175,2049,66,10,25120,25210,168,26638, + 210710720297,25212,200,200,0,102,58,109,105,110,0,2049,5525,102,58,110,110,45,110,0, + 1,25212,3,2049,24473,2049,23783,1,23910,1,24399,2049,66,10,25195,25248,168,26638,210710720043,25250, + 200,200,0,102,58,109,97,120,0,2049,5525,102,58,110,110,45,110,0,1,25250, + 3,2049,24473,2049,23815,1,23910,1,24399,2049,66,10,25233,25288,168,26638,229463973220004,25290,200,200, + 0,102,58,108,105,109,105,116,0,2049,5525,102,58,110,108,117,45,110,0,1, + 25290,3,2049,23941,2049,24230,2049,25210,2049,24260,2049,25248,10,25271,25332,168,26638,8246246374547107374,25334,200, + 200,0,102,58,98,101,116,119,101,101,110,63,0,2049,5525,102,58,110,108,117, + 45,110,0,1,25334,3,2049,24508,2049,23877,2049,24230,2049,24508,2049,24508,2049,25288,2049,24260, + 2049,23718,10,25312,25377,168,26638,210710716095,25379,200,200,0,102,58,105,110,99,0,2049,5525, + 102,58,110,45,110,0,1,25379,3,2049,5525,49,0,1,25390,2049,23381,2049,23495,10, + 25362,25414,168,26638,210710710353,25416,200,200,0,102,58,100,101,99,0,2049,5525,102,58,110, + 45,110,0,1,25416,3,2049,5525,49,0,1,25427,2049,23381,2049,23525,10,25399,25452,168, + 26638,6953453401985,25454,200,200,0,102,58,99,97,115,101,0,2049,5525,102,58,102,102,45, + 44,113,45,0,1,25454,3,2049,24322,2049,23718,1793,25478,2049,23910,8,1,-1,10,1, + 25472,1793,25486,3,1,0,10,1,25482,2049,66,25,6,771,10,25436,25510,168,26638,6953453985302, + 25512,200,200,0,102,58,115,105,103,110,0,2049,5525,45,110,124,102,58,97,45, + 0,1,25512,3,2049,23877,2049,5525,48,0,1,25527,2049,23381,2049,23718,1793,25542,1,0, + 2049,23910,10,1,25537,2049,3638,2049,5525,48,0,1,25548,2049,23381,2049,23815,1793,25561,1, + 1,10,1,25558,1793,25568,1,-1,10,1,25565,2049,66,10,25494,9223372036854775805,156,26638,210709498186,25590, + 200,200,0,101,58,77,65,88,0,45,110,0,25573,-9223372036854775805,156,26638,210709498440,25608,200,200, + 0,101,58,77,73,78,0,45,110,0,25591,-9223372036854775807,156,26638,210709499265,25626,200,200,0,101, + 58,78,65,78,0,45,110,0,25609,9223372036854775806,156,26638,210709494241,25644,200,200,0,101,58,73, + 78,70,0,45,110,0,25627,-9223372036854775806,156,26638,6953412298606,25663,200,200,0,101,58,45,73,78, + 70,0,45,110,0,25645,25678,168,26638,6385137393,25680,200,200,0,101,58,110,63,0,2049, + 5525,117,45,102,0,1,25680,3,1,-9223372036854775805,2049,3953,1,9223372036854775805,2049,3971,2049,3994,10,25664, + 25714,168,26638,6953414626089,25716,200,200,0,101,58,109,97,120,63,0,2049,5525,117,45,102, + 0,1,25716,3,1,9223372036854775805,11,10,25698,25743,168,26638,6953414634471,25745,200,200,0,101,58,109, + 105,110,63,0,2049,5525,117,45,102,0,1,25745,3,1,-9223372036854775805,11,10,25727,25773,168, + 26638,229462698216771,25775,200,200,0,101,58,122,101,114,111,63,0,2049,5525,117,45,102,0, + 1,25775,3,2049,3470,10,25756,25801,168,26638,6953414661696,25803,200,200,0,101,58,110,97,110, + 63,0,2049,5525,117,45,102,0,1,25803,3,1,-9223372036854775807,11,10,25785,25830,168,26638,6953414495904, + 25832,200,200,0,101,58,105,110,102,63,0,2049,5525,117,45,102,0,1,25832,3, + 1,9223372036854775806,11,10,25814,25860,168,26638,229462607039949,25862,200,200,0,101,58,45,105,110,102,63, + 0,2049,5525,117,45,102,0,1,25862,3,1,-9223372036854775806,11,10,25843,25889,168,26638,6953414278252,25891, + 200,200,0,101,58,99,108,105,112,0,2049,5525,117,45,117,0,1,25891,3,1, + -9223372036854775805,1,9223372036854775805,2049,3930,10,25873,25919,168,26638,6385171963,25921,200,200,0,102,58,69,49,0, + 2049,5525,45,124,102,58,45,110,41,95,101,45,117,110,105,116,95,105,110,95, + 102,108,111,97,0,1,25921,3,1793,25949,2049,5525,49,46,101,53,0,1,25951,2049, + 23381,10,25905,25984,168,26638,-1561378222854156682,25986,200,200,0,102,58,115,105,103,110,101,100,45, + 115,113,114,116,0,2049,5525,124,102,58,110,45,110,0,1,25986,3,2049,23877,2049, + 25510,2049,24745,2049,23687,2049,23343,2049,23555,10,25961,26034,168,26638,-3240429906897787043,26036,200,200,0,102, + 58,115,105,103,110,101,100,45,115,113,117,97,114,101,0,2049,5525,124,102,58, + 110,45,110,0,1,26036,3,2049,23877,2049,25510,2049,23877,2049,23555,2049,23343,2049,23555,10, + 26009,26077,168,0,7572308662409552,0,200,200,0,102,58,45,115,104,105,102,116,0,2049,25919, + 2049,23555,10,26059,26100,168,0,7572308584138766,0,200,200,0,102,58,43,115,104,105,102,116, + 0,2049,25919,2049,23585,10,26082,26124,168,0,249886182735593054,0,200,200,0,102,58,43,101,110, + 99,111,100,101,0,2049,25984,2049,26077,10,26105,26148,168,0,249886185318528992,0,200,200,0,102, + 58,45,101,110,99,111,100,101,0,2049,23877,2049,25510,2049,26100,2049,23877,2049,23555,2049, + 23343,2049,23555,10,26009,26179,168,26638,6953454025850,26181,200,200,0,102,58,116,111,45,101,0, + 2049,5525,45,101,124,102,58,110,45,0,1,26181,3,2049,23877,2049,25033,1793,26203,2049, + 23910,1,-9223372036854775807,10,1,26198,2049,3638,2049,23877,2049,25067,1793,26218,2049,23910,1,9223372036854775806,10,1, + 26213,2049,3638,2049,23877,2049,25102,1793,26233,2049,23910,1,-9223372036854775806,10,1,26228,2049,3638,2049,26124, + 2049,25137,2049,23420,2049,25889,1,-9223372036854775805,1,23910,2049,3274,1,9223372036854775805,1,23910,2049,3274,10,26163, + 26274,168,26638,6953414890458,26276,200,200,0,101,58,116,111,45,102,0,2049,5525,101,45,124, + 102,58,45,110,0,1,26276,3,1,-9223372036854775807,1,24894,2049,3274,1,9223372036854775806,1,24938,2049,3274, + 1,-9223372036854775806,1,24985,2049,3274,2049,23343,2049,26148,10,26258,26327,168,26638,229463981919218,26329,200,200,0, + 102,58,115,116,111,114,101,0,2049,5525,97,45,124,102,58,110,45,0,1,26329, + 3,1,26179,2049,2889,16,10,26310,26363,168,26638,229463965968143,26365,200,200,0,102,58,102,101, + 116,99,104,0,2049,5525,97,45,124,102,58,45,110,0,1,26365,3,15,2049,26274, + 10,26346,26402,168,26638,-3401946998789110658,26404,200,200,0,102,58,100,117,109,112,45,115,116,97, + 99,107,0,2049,5525,45,0,1,26404,3,2049,23849,2,1,24230,2049,3153,1793,26427,2049, + 24260,2049,23877,2049,24779,2049,12880,10,1,26418,2049,3153,10,26380,26455,168,26638,-1583786518488284545,26457,200, + 200,0,102,58,100,117,109,112,45,97,115,116,97,99,107,0,2049,5525,45,0, + 1,26457,3,2049,24293,2,1,24260,2049,3153,1793,26480,2049,23877,2049,24779,2049,12880,2049,24230, + 10,1,26471,2049,3153,10,26432,26500,168,26638,210709538045,26502,200,200,0,101,58,112,117,116, + 0,2049,5525,101,45,0,1,26502,3,1,9223372036854775805,1793,26525,2049,5525,101,58,77,65,88, + 0,1,26514,2049,12918,10,1,26512,2049,3274,1,-9223372036854775805,1793,26546,2049,5525,101,58,77,73, + 78,0,1,26535,2049,12918,10,1,26533,2049,3274,1,0,1793,26565,2049,5525,101,58,48, + 0,1,26556,2049,12918,10,1,26554,2049,3274,1,-9223372036854775807,1793,26586,2049,5525,101,58,78,65, + 78,0,1,26575,2049,12918,10,1,26573,2049,3274,1,9223372036854775806,1793,26607,2049,5525,101,58,73, + 78,70,0,1,26596,2049,12918,10,1,26594,2049,3274,1,-9223372036854775806,1793,26629,2049,5525,101,58, + 45,73,78,70,0,1,26617,2049,12918,10,1,26615,2049,3274,2049,26274,2049,24779,10,105, + 110,116,101,114,102,97,99,101,47,102,108,111,97,116,105,110,103,112,111,105, + 110,116,46,114,101,116,114,111,0,26638,27855,26485,26694,168,27828,8056574075740390096,26696,200,200,0, + 102,105,108,101,58,111,112,101,114,97,116,105,111,110,0,2049,5525,45,110,0, + 1,26696,3,1,4,2049,12792,2,2049,3517,1793,26751,3,2049,5525,69,114,114,111,114, + 58,32,102,105,108,101,115,32,100,101,118,105,99,101,32,110,111,116,32,102, + 111,117,110,100,0,1,26714,2049,12918,2049,12863,10,1,26711,2049,3638,2049,12769,10,26670, + 0,156,27828,6953509466161,26776,200,200,0,102,105,108,101,58,82,0,45,110,0,26758,1, + 156,27828,6953509466166,26795,200,200,0,102,105,108,101,58,87,0,45,110,0,26777,2,156, + 27828,6953509466144,26814,200,200,0,102,105,108,101,58,65,0,45,110,0,26796,3,156,27828, + 229465812383356,26834,200,200,0,102,105,108,101,58,82,43,0,45,110,0,26815,26854,168,27828, + 249888269686595441,26856,200,200,0,102,105,108,101,58,111,112,101,110,0,2049,5525,115,109,45, + 104,0,1,26856,3,1,0,2049,26694,10,26835,26889,168,27828,8246312899643285909,26891,200,200,0,102, + 105,108,101,58,99,108,111,115,101,0,2049,5525,104,45,0,1,26891,3,1,1, + 2049,26694,10,26869,26921,168,27828,249888269686691131,26923,200,200,0,102,105,108,101,58,114,101,97, + 100,0,2049,5525,104,45,99,0,1,26923,3,1,2,2049,26694,10,26902,26955,168,27828, + 8246312899667213450,26957,200,200,0,102,105,108,101,58,119,114,105,116,101,0,2049,5525,99,104, + 45,0,1,26957,3,1,3,2049,26694,10,26935,26988,168,27828,249888269686763376,26990,200,200,0,102, + 105,108,101,58,116,101,108,108,0,2049,5525,104,45,110,0,1,26990,3,1,4, + 2049,26694,10,26969,27021,168,27828,249888269686727207,27023,200,200,0,102,105,108,101,58,115,101,101, + 107,0,2049,5525,110,104,45,0,1,27023,3,1,5,2049,26694,10,27002,27054,168,27828, + 249888269686732250,27056,200,200,0,102,105,108,101,58,115,105,122,101,0,2049,5525,104,45,110, + 0,1,27056,3,1,6,2049,26694,10,27035,27089,168,27828,-4572835417384127758,27091,200,200,0,102,105, + 108,101,58,100,101,108,101,116,101,0,2049,5525,115,45,0,1,27091,3,1,7, + 2049,26694,10,27068,27122,168,27828,8246312899646850209,27124,200,200,0,102,105,108,101,58,102,108,117, + 115,104,0,2049,5525,102,45,0,1,27124,3,1,8,2049,26694,10,27102,27160,168,27828, + 7612651040925696305,27162,200,200,0,102,105,108,101,58,114,101,97,100,47,98,121,116,101,115, + 0,2049,5525,112,110,102,45,0,1,27162,3,1,9,2049,26694,10,27135,27201,168,27828, + -7028659436281878592,27203,200,200,0,102,105,108,101,58,119,114,105,116,101,47,98,121,116,101, + 115,0,2049,5525,112,110,102,45,0,1,27203,3,1,10,2049,26694,10,27175,27237,168, + 27828,-4572835416836630931,27239,200,200,0,102,105,108,101,58,114,101,97,100,47,99,0,2049,5525, + 104,45,99,0,1,27239,3,1,11,2049,26694,10,27216,27273,168,27828,-3329616158956188292,27275,200,200, + 0,102,105,108,101,58,119,114,105,116,101,47,99,0,2049,5525,99,104,45,99, + 0,1,27275,3,1,12,2049,26694,10,27251,27310,168,27828,-3329616181967816770,27312,200,200,0,102,105, + 108,101,58,101,120,105,115,116,115,63,0,2049,5525,115,45,102,0,1,27312,3, + 1,0,2049,26854,2,2049,3492,1793,27333,2049,26889,2049,3239,10,1,27328,1793,27341,3,2049, + 3257,10,1,27337,2049,66,10,27288,27377,168,27828,-4283841618960457812,27379,200,200,0,102,105,108,101, + 58,111,112,101,110,45,102,111,114,45,114,101,97,100,105,110,103,0,2049,5525, + 115,45,110,110,0,1,27379,3,1,0,2049,26854,2,2049,27054,4,10,27346,27426,168, + 27828,2106155595587003402,27428,200,200,0,102,105,108,101,58,111,112,101,110,45,102,111,114,45, + 97,112,112,101,110,100,0,2049,5525,115,45,110,110,0,1,27428,3,1,2,2049, + 26854,2,2049,27054,4,10,27396,27476,168,27828,-4283841611984295498,27478,200,200,0,102,105,108,101,58, + 111,112,101,110,45,102,111,114,45,119,114,105,116,105,110,103,0,2049,5525,115, + 45,110,0,1,27478,3,1,1,2049,26854,10,27445,27503,156,0,193455704,0,200,200,0, + 70,73,68,0,0,27490,27518,156,0,6384542144,0,200,200,0,83,105,122,101,0,0, + 27504,27535,156,0,6952054634723,0,200,200,0,65,99,116,105,111,110,0,0,27519,27551,168, + 0,210644670123,0,200,200,0,45,101,111,102,63,0,3841,27503,2049,26988,3841,27518,13,10, + 27536,27577,168,0,7572809360530097,0,200,200,0,112,114,101,115,101,114,118,101,0,1,27503, + 1793,27588,1,27518,1,27,2049,4871,10,1,27581,2049,4871,10,27445,27617,168,27828,8056577820387649264,27619, + 200,200,0,102,105,108,101,58,114,101,97,100,45,108,105,110,101,0,2049,5525, + 102,45,115,0,1,27619,3,2049,2585,4,1,13,2049,26694,2049,2585,10,27593,27664,168, + 27828,-8859848394595038695,27666,200,200,0,102,105,108,101,58,102,111,114,45,101,97,99,104,45, + 108,105,110,101,0,2049,5525,115,113,45,0,1,27666,3,1793,27704,4097,27535,2049,27377, + 4097,27503,4097,27518,1793,27695,3841,27503,2049,27617,3841,27535,8,2049,27551,10,1,27685,2049,3064, + 3841,27503,2049,26889,10,1,27675,2049,27577,10,27636,27722,156,0,193455704,0,200,200,0,70, + 73,68,0,0,27636,27743,168,27828,8246312899662267157,27745,200,200,0,102,105,108,101,58,115,108, + 117,114,112,0,2049,5525,97,115,45,0,1,27745,3,1793,27779,4,2049,5179,2049,27377, + 4097,27722,1793,27770,3841,27722,2049,26921,2049,5063,10,1,27763,2049,3153,3841,27722,2049,26889,10, + 1,27754,2049,5209,10,27723,27803,168,27828,249888269686739198,27805,200,200,0,102,105,108,101,58,115, + 112,101,119,0,2049,5525,115,115,45,0,1,27805,3,2049,27476,4,1793,27821,67502597,2049, + 26955,10,1,27817,2049,5849,2049,26889,10,105,110,116,101,114,102,97,99,101,47,102, + 105,108,101,115,121,115,116,101,109,46,114,101,116,114,111,0,27828,28894,27784,27882, + 168,28873,4299348465103751587,27884,200,200,0,105,111,58,117,110,105,120,45,115,121,115,99,97, + 108,108,0,2049,5525,110,45,0,1,27884,3,1,8,2049,12792,2,2049,3517,1793,27938, + 3,2049,5525,69,114,114,111,114,58,32,85,78,73,88,32,100,101,118,105,99, + 101,32,110,111,116,32,102,111,117,110,100,0,1,27902,2049,12918,2049,12863,10,1, + 27899,2049,3638,2049,12769,10,27857,27966,168,28873,-4549633084047572696,27968,200,200,0,117,110,105,120,58, + 115,121,115,116,101,109,0,2049,5525,115,45,0,1,27968,3,1,0,2049,27882,10, + 27945,27998,168,28873,249909575776928405,28000,200,200,0,117,110,105,120,58,102,111,114,107,0,2049, + 5525,45,110,0,1,28000,3,1,1,2049,27882,10,27979,28031,168,28873,8247016000637760504,28033,200,200, + 0,117,110,105,120,58,101,120,101,99,48,0,2049,5525,115,45,0,1,28033,3, + 1,2,2049,27882,10,28011,28064,168,28873,8247016000637760505,28066,200,200,0,117,110,105,120,58,101, + 120,101,99,49,0,2049,5525,115,115,45,0,1,28066,3,1,3,2049,27882,10,28044, + 28098,168,28873,8247016000637760506,28100,200,200,0,117,110,105,120,58,101,120,101,99,50,0,2049, + 5525,115,115,115,45,0,1,28100,3,1,4,2049,27882,10,28078,28133,168,28873,8247016000637760507,28135, + 200,200,0,117,110,105,120,58,101,120,101,99,51,0,2049,5525,115,115,115,115, + 45,0,1,28135,3,1,5,2049,27882,10,28113,28168,168,28873,249909575776901981,28170,200,200,0,117, + 110,105,120,58,101,120,105,116,0,2049,5525,110,45,0,1,28170,3,1,6,2049, + 27882,10,28149,28202,168,28873,-4549633084540884128,28204,200,200,0,117,110,105,120,58,103,101,116,112, + 105,100,0,2049,5525,45,110,0,1,28204,3,1,7,2049,27882,10,28181,28234,168,28873, + 249909575777523800,28236,200,200,0,117,110,105,120,58,119,97,105,116,0,2049,5525,45,110,0, + 1,28236,3,1,8,2049,27882,10,28215,28266,168,28873,249909575777101359,28268,200,200,0,117,110,105, + 120,58,107,105,108,108,0,2049,5525,110,110,45,0,1,28268,3,1,9,2049,27882, + 10,28247,28300,168,28873,8247016000650494309,28302,200,200,0,117,110,105,120,58,112,111,112,101,110, + 0,2049,5525,115,110,45,110,0,1,28302,3,1,10,2049,27882,10,28280,28336,168,28873, + -4549633084191325687,28338,200,200,0,117,110,105,120,58,112,99,108,111,115,101,0,2049,5525,110, + 45,0,1,28338,3,1,11,2049,27882,10,28315,28369,168,28873,8247016000634812845,28371,200,200,0,117, + 110,105,120,58,99,104,100,105,114,0,2049,5525,115,45,0,1,28371,3,1,13, + 2049,27882,10,28349,28403,168,28873,-4549633084540895924,28405,200,200,0,117,110,105,120,58,103,101,116, + 101,110,118,0,2049,5525,115,97,45,0,1,28405,3,1,14,2049,27882,10,28382,28438, + 168,28873,-4549633084169702651,28440,200,200,0,117,110,105,120,58,112,117,116,101,110,118,0,2049, + 5525,115,45,0,1,28440,3,1,15,2049,27882,10,28417,28471,168,28873,8247016000653932284,28473,200,200, + 0,117,110,105,120,58,115,108,101,101,112,0,2049,5525,110,45,0,1,28473,3, + 1,16,2049,27882,10,28451,28506,168,28873,-2563939202030369066,28508,200,200,0,117,110,105,120,58,101, + 120,101,99,117,116,101,0,2049,5525,115,45,0,1,28508,3,1,17,2049,27882,10, + 28484,28538,168,28873,249909575777281169,28540,200,200,0,117,110,105,120,58,112,105,112,101,0,2049, + 5525,115,45,115,0,1,28540,3,1,0,2049,28300,1,27617,1,28336,2049,2923,10,28519, + 28580,168,28873,-2563939200175176882,28582,200,200,0,117,110,105,120,58,103,101,116,45,99,119,100, + 0,2049,5525,45,115,41,0,1,28582,3,2049,5525,112,119,100,0,1,28591,2049,28538, + 2049,8555,2049,5525,47,0,1,28603,2049,5825,10,28558,28643,168,28873,-2316844556017942917,28645,200,200,0, + 117,110,105,120,58,99,111,117,110,116,45,102,105,108,101,115,45,105,110,45, + 99,119,100,0,2049,5525,45,110,0,1,28645,3,2049,5525,108,115,32,45,49,32, + 124,32,119,99,32,45,108,0,1,28653,2049,28538,2049,8555,2049,288,10,28610,28704,168, + 28873,-4594486429310984907,28706,200,200,0,117,110,105,120,58,102,111,114,45,101,97,99,104,45, + 102,105,108,101,0,2049,5525,113,45,0,1,28706,3,2049,5525,108,115,32,45,49, + 32,45,112,0,1,28714,1,0,2049,28300,2049,28643,1793,28747,1793,28742,2049,27617,2049,5466, + 67502597,8,10,1,28735,2049,2905,10,1,28733,2049,3153,2049,28336,3,10,28676,28770,168,0, + 210728208851,0,200,200,0,115,116,97,114,116,0,4,2049,5179,1,0,2049,28300,10,28755, + 28792,168,0,6385651009,0,200,200,0,114,101,97,100,0,2,2049,26921,2,2049,5063,2049, + 3470,10,28778,28817,168,0,6953509544294,0,200,200,0,102,105,110,105,115,104,0,2049,28336, + 2049,5153,10,28676,28847,168,28873,1204178398703148788,28849,200,200,0,117,110,105,120,58,115,108,117, + 114,112,45,112,105,112,101,0,2049,5525,97,115,45,110,0,1,28849,3,1793,28868, + 2049,28770,1,28792,2049,3093,2049,28817,10,1,28859,2049,5209,10,105,110,116,101,114,102, + 97,99,101,47,117,110,105,120,46,114,101,116,114,111,0,28873,28996,28822,28914,168, + 28976,7572652289159374,28916,200,200,0,110,58,114,97,110,100,111,109,0,2049,5525,45,110,0, + 1,28916,3,1,10,2049,12792,2,2049,3517,1793,28969,3,2049,5525,69,114,114,111,114, + 58,32,82,78,71,32,100,101,118,105,99,101,32,110,111,116,32,102,111,117, + 110,100,0,1,28934,2049,12918,2049,12863,10,1,28931,2049,3638,2049,12769,10,105,110,116, + 101,114,102,97,99,101,47,114,110,103,46,114,101,116,114,111,0,28976,29575,28896, + 29023,168,29553,4482520117059041020,29025,200,200,0,99,108,111,99,107,58,111,112,101,114,97,116, + 105,111,110,0,2049,5525,110,45,0,1,29025,3,1,5,2049,12792,2,2049,3517,1793, + 29080,3,2049,5525,69,114,114,111,114,58,32,99,108,111,99,107,32,100,101,118, + 105,99,101,32,110,111,116,32,102,111,117,110,100,0,1,29043,2049,12918,2049,12863, + 10,1,29040,2049,3638,2049,12769,10,28998,29112,168,29553,4482526860617352831,29114,200,200,0,99,108,111, + 99,107,58,116,105,109,101,115,116,97,109,112,0,2049,5525,45,110,0,1,29114, + 3,1,0,2049,29023,10,29087,29144,168,29553,249884182168395049,29146,200,200,0,99,108,111,99,107, + 58,100,97,121,0,2049,5525,45,110,0,1,29146,3,1,1,2049,29023,10,29125,29178, + 168,29553,-4577286724249897519,29180,200,200,0,99,108,111,99,107,58,109,111,110,116,104,0,2049, + 5525,45,110,0,1,29180,3,1,2,2049,29023,10,29157,29211,168,29553,8246178011557794972,29213,200,200, + 0,99,108,111,99,107,58,121,101,97,114,0,2049,5525,45,110,0,1,29213,3, + 1,3,2049,29023,10,29191,29244,168,29553,8246178011557195593,29246,200,200,0,99,108,111,99,107,58, + 104,111,117,114,0,2049,5525,45,110,0,1,29246,3,1,4,2049,29023,10,29224,29279, + 168,29553,-3476509310577319139,29281,200,200,0,99,108,111,99,107,58,109,105,110,117,116,101,0, + 2049,5525,45,110,0,1,29281,3,1,5,2049,29023,10,29257,29314,168,29553,-3476509310347652505,29316,200, + 200,0,99,108,111,99,107,58,115,101,99,111,110,100,0,2049,5525,45,110,0, + 1,29316,3,1,6,2049,29023,10,29292,29350,168,29553,-4044342796047171665,29352,200,200,0,99,108,111, + 99,107,58,117,116,99,58,100,97,121,0,2049,5525,45,110,0,1,29352,3,1, + 7,2049,29023,10,29327,29388,168,29553,4482528721224061399,29390,200,200,0,99,108,111,99,107,58,117, + 116,99,58,109,111,110,116,104,0,2049,5525,45,110,0,1,29390,3,1,8,2049, + 29023,10,29363,29425,168,29553,-4336103753589045278,29427,200,200,0,99,108,111,99,107,58,117,116,99, + 58,121,101,97,114,0,2049,5525,45,110,0,1,29427,3,1,9,2049,29023,10,29401, + 29462,168,29553,-4336103753589644657,29464,200,200,0,99,108,111,99,107,58,117,116,99,58,104,111, + 117,114,0,2049,5525,45,110,0,1,29464,3,1,10,2049,29023,10,29438,29501,168,29553, + 349495210710499299,29503,200,200,0,99,108,111,99,107,58,117,116,99,58,109,105,110,117,116, + 101,0,2049,5525,45,110,0,1,29503,3,1,11,2049,29023,10,29475,29540,168,29553,349495210940165933, + 29542,200,200,0,99,108,111,99,107,58,117,116,99,58,115,101,99,111,110,100, + 0,2049,5525,45,110,0,1,29542,3,1,12,2049,29023,10,105,110,116,101,114,102, + 97,99,101,47,99,108,111,99,107,46,114,101,116,114,111,0,29553,30099,29514,29603, + 168,0,1976442044545254821,0,200,200,0,115,99,114,105,112,116,58,111,112,101,114,97,116, + 105,111,110,0,1,9,2049,12792,2,2049,3517,1793,29656,3,2049,5525,69,114,114,111, + 114,58,32,115,99,114,105,112,116,105,110,103,32,100,101,118,105,99,101,32, + 110,111,116,32,102,111,117,110,100,0,1,29615,2049,12918,2049,12863,10,1,29612,2049, + 3638,2049,12769,10,29514,29689,168,30073,1976422442775525130,29691,200,200,0,115,99,114,105,112,116,58, + 97,114,103,117,109,101,110,116,115,0,2049,5525,45,110,0,1,29691,3,1,0, + 2049,29603,10,29663,29731,168,30073,7012485947518414468,29733,200,200,0,115,99,114,105,112,116,58,103, + 101,116,45,97,114,103,117,109,101,110,116,0,2049,5525,110,45,115,0,1,29733, + 3,2049,5500,4,1,1,2049,29603,10,29702,29765,168,30073,229469872107401,29767,200,200,0,105,110, + 99,108,117,100,101,0,2049,5525,115,45,0,1,29767,3,1,2,2049,29603,10,29748, + 29799,168,30073,-4553194680242110987,29801,200,200,0,115,99,114,105,112,116,58,110,97,109,101,0, + 2049,5525,45,115,0,1,29801,3,2049,5500,1,3,2049,29603,10,29778,29843,168,30073,6834827170184619652, + 29845,200,200,0,115,99,114,105,112,116,58,99,117,114,114,101,110,116,45,102, + 105,108,101,0,2049,5525,45,115,0,1,29845,3,2049,5500,1,4,2049,29603,10,29814, + 29887,180,30073,6834827170184835340,29889,200,200,0,115,99,114,105,112,116,58,99,117,114,114,101, + 110,116,45,108,105,110,101,0,2049,5525,45,110,0,1,29889,3,1,5,2049,29603, + 2049,156,10,29858,29932,168,30073,-4964876483161304491,29934,200,200,0,115,99,114,105,112,116,58,105, + 103,110,111,114,101,45,116,111,45,101,111,108,0,2049,5525,45,0,1,29934,3, + 1,6,2049,29603,10,29902,29974,168,30073,-112287744780050755,29976,200,200,0,115,99,114,105,112,116, + 58,97,98,111,114,116,45,105,110,99,108,117,100,101,0,2049,5525,45,0,1, + 29976,3,1,7,2049,29603,10,29944,30001,168,30073,210706230653,30003,200,200,0,97,98,111,114, + 116,0,2049,5525,45,0,1,30003,3,1,149,2049,4827,1,8,2049,29603,10,29986,30051, + 168,30073,-7741142524340576066,30053,200,200,0,115,99,114,105,112,116,58,99,117,114,114,101,110, + 116,45,108,105,110,101,45,116,101,120,116,0,2049,5525,45,115,0,1,30053,3, + 2049,5500,1793,30068,1,9,2049,29603,10,1,30063,2049,2905,10,105,110,116,101,114,102, + 97,99,101,47,115,99,114,105,112,116,105,110,103,46,114,101,116,114,111,0, + 30073,30705,30017,30127,168,30707,1183117598919957017,30129,200,200,0,115,111,99,107,101,116,58,111,112, + 101,114,97,116,105,111,110,0,2049,5525,110,45,0,1,30129,3,1,7,2049,12792, + 2,2049,3517,1793,30292,3,2049,5525,69,114,114,111,114,58,32,115,111,99,107,101, + 116,32,100,101,118,105,99,101,32,110,111,116,32,102,111,117,110,100,0,1, + 30147,2049,12918,2049,12863,2049,5525,83,101,101,32,104,116,116,112,115,58,47,47,114, + 101,116,114,111,102,111,114,116,104,46,111,114,103,47,115,117,112,112,111,114, + 116,47,50,48,50,50,46,49,47,83,79,67,75,69,84,83,46,109,100,0, + 1,30186,2049,12918,2049,12863,2049,5525,102,111,114,32,105,110,115,116,114,117,99,116, + 105,111,110,115,32,111,110,32,101,110,97,98,108,105,110,103,32,115,111,99, + 107,101,116,115,46,0,1,30247,2049,12918,2049,12863,10,1,30144,2049,3638,2049,12769,10, + 30101,30329,168,30681,-7671511728383126910,30331,200,200,0,115,111,99,107,101,116,58,103,101,116,104, + 111,115,116,98,121,110,97,109,101,0,2049,5525,97,115,45,0,1,30331,3,1, + 0,2049,30127,10,30299,30366,168,30681,4328757989659661596,30368,200,200,0,115,111,99,107,101,116,58, + 99,114,101,97,116,101,0,2049,5525,45,110,0,1,30368,3,1,1,2049,30127,10, + 30343,30400,168,30681,-4552658767528245371,30402,200,200,0,115,111,99,107,101,116,58,98,105,110,100, + 0,2049,5525,115,110,45,110,0,1,30402,3,1,2,2049,30127,10,30379,30438,168,30681, + 4328757990001730167,30440,200,200,0,115,111,99,107,101,116,58,108,105,115,116,101,110,0,2049, + 5525,110,110,45,110,110,0,1,30440,3,1,3,2049,30127,10,30415,30477,168,30681,4328757989563534360, + 30479,200,200,0,115,111,99,107,101,116,58,97,99,99,101,112,116,0,2049,5525, + 110,45,110,110,0,1,30479,3,1,4,2049,30127,10,30454,30516,168,30681,-4724938931013862254,30518,200, + 200,0,115,111,99,107,101,116,58,99,111,110,110,101,99,116,0,2049,5525,110, + 45,110,110,0,1,30518,3,1,5,2049,30127,10,30492,30552,168,30681,-4552658767527638798,30554,200,200, + 0,115,111,99,107,101,116,58,115,101,110,100,0,2049,5525,115,110,45,110,110, + 0,1,30554,3,1,6,2049,30127,10,30531,30589,168,30681,-4552658767527675080,30591,200,200,0,115,111, + 99,107,101,116,58,114,101,99,118,0,2049,5525,97,110,110,45,110,110,0,1, + 30591,3,1,7,2049,30127,10,30568,30628,168,30681,-2663786738754388898,30630,200,200,0,115,111,99,107, + 101,116,58,99,108,111,115,101,0,2049,5525,110,45,0,1,30630,3,1,8,2049, + 30127,10,30606,30667,168,30681,1183100690560715498,30669,200,200,0,115,111,99,107,101,116,58,99,111, + 110,102,105,103,117,114,101,0,2049,5525,115,115,45,0,1,30669,3,1,9,2049, + 30127,10,105,110,116,101,114,102,97,99,101,47,115,111,99,107,101,116,115,46, + 114,101,116,114,111,0,30681,30724,115,111,99,107,101,116,58,111,112,101,114,97, + 116,105,111,110,0,30707,31032,30641,30743,168,31006,229469862290528,30745,200,200,0,105,111,58,99, + 111,114,101,0,2049,5525,110,45,0,1,30745,3,1,8000,2049,12792,2049,12769,10,30726, + 30777,168,31006,249884313919988732,30779,200,200,0,99,111,114,101,58,105,110,105,116,0,2049,5525, + 110,45,0,1,30779,3,1,0,2049,30743,10,30758,30810,168,31006,8246182359371694326,30812,200,200,0, + 99,111,114,101,58,115,116,97,114,116,0,2049,5525,97,110,45,0,1,30812,3, + 1,1,2049,30743,10,30790,30844,168,31006,8246182359367475558,30846,200,200,0,99,111,114,101,58,112, + 97,117,115,101,0,2049,5525,110,45,0,1,30846,3,1,2,2049,30743,10,30824,30885, + 168,31006,8337299194488917014,30887,200,200,0,99,111,114,101,58,112,97,117,115,101,45,99,117, + 114,114,101,110,116,0,2049,5525,45,0,1,30887,3,1,3,2049,30743,10,30857,30918, + 168,31006,-4577143246433635687,30920,200,200,0,99,111,114,101,58,114,101,115,117,109,101,0,2049, + 5525,110,45,0,1,30920,3,1,4,2049,30743,10,30897,30954,168,31006,-3888095465377135055,30956,200,200, + 0,99,111,114,101,58,114,101,97,100,47,114,101,103,0,2049,5525,110,45,118, + 0,1,30956,3,1,5,2049,30743,10,30931,30992,168,31006,820065755623810592,30994,200,200,0,99,111, + 114,101,58,119,114,105,116,101,47,114,101,103,0,2049,5525,118,110,45,0,1, + 30994,3,1,6,2049,30743,10,105,110,116,101,114,102,97,99,101,47,109,117,108, + 116,105,99,111,114,101,46,114,101,116,114,111,0,31006,31241,30968,31057,168,31221,644988671245709381, + 31059,200,200,0,102,102,105,58,111,112,101,114,97,116,105,111,110,0,2049,5525, + 110,45,63,0,1,31059,3,1,8100,2049,12792,2,2049,3517,1793,31113,3,2049,5525,69, + 114,114,111,114,58,32,70,70,73,32,100,101,118,105,99,101,32,110,111,116, + 32,102,111,117,110,100,0,1,31078,2049,12918,2049,12863,10,1,31075,2049,3638,2049,12769, + 10,31034,31138,168,31221,7572367767785414,31140,200,200,0,102,102,105,58,111,112,101,110,0,2049, + 5525,115,45,110,0,1,31140,3,1,0,2049,31057,10,31120,31173,168,31221,-4572980637897979592,31175,200, + 200,0,102,102,105,58,109,97,112,45,115,121,109,0,2049,5525,115,110,45,110, + 0,1,31175,3,1,1,2049,31057,10,31152,31208,168,31221,8246308498881747296,31210,200,200,0,102,102, + 105,58,105,110,118,111,107,101,0,2049,5525,110,45,0,1,31210,3,1,2,2049, + 31057,10,105,110,116,101,114,102,97,99,101,47,102,102,105,46,114,101,116,114, + 111,0,31221,31731,31188,31263,168,31706,8247016409221251463,31265,200,200,0,117,110,115,105,103,110,101, + 100,58,43,0,2049,5525,110,110,45,110,0,1,31265,3,1,0,1,8101,2049,12792, + 2049,12769,17,10,31243,31303,168,31706,8247016409221251465,31305,200,200,0,117,110,115,105,103,110,101, + 100,58,45,0,2049,5525,110,110,45,110,0,1,31305,3,1,0,1,8101,2049,12792, + 2049,12769,18,10,31283,31343,168,31706,8247016409221251462,31345,200,200,0,117,110,115,105,103,110,101, + 100,58,42,0,2049,5525,110,110,45,110,0,1,31345,3,1,0,1,8101,2049,12792, + 2049,12769,19,10,31323,31386,168,31706,7638409966457829387,31388,200,200,0,117,110,115,105,103,110,101, + 100,58,47,109,111,100,0,2049,5525,110,110,45,110,110,0,1,31388,3,1,0, + 1,8101,2049,12792,2049,12769,20,10,31363,31429,168,31706,-2563494254608726831,31431,200,200,0,117,110,115, + 105,103,110,101,100,58,101,113,63,0,2049,5525,110,110,45,102,0,1,31431,3, + 1,0,1,8101,2049,12792,2049,12769,11,10,31407,31472,168,31706,7638409966457748830,31474,200,200,0,117, + 110,115,105,103,110,101,100,58,45,101,113,63,0,2049,5525,110,110,45,102,0, + 1,31474,3,1,0,1,8101,2049,12792,2049,12769,12,10,31449,31514,168,31706,-2563494254608719109,31516,200, + 200,0,117,110,115,105,103,110,101,100,58,108,116,63,0,2049,5525,110,110,45, + 102,0,1,31516,3,1,0,1,8101,2049,12792,2049,12769,13,10,31492,31556,168,31706,-2563494254608724554, + 31558,200,200,0,117,110,115,105,103,110,101,100,58,103,116,63,0,2049,5525,110, + 110,45,102,0,1,31558,3,1,0,1,8101,2049,12792,2049,12769,14,10,31534,31600,168, + 31706,-6186888138744896262,31602,200,200,0,117,110,115,105,103,110,101,100,58,115,104,105,102,116, + 0,2049,5525,110,110,45,110,0,1,31602,3,1,0,1,8101,2049,12792,2049,12769,24, + 10,31576,31644,168,31706,-6186888138833512267,31646,200,200,0,117,110,115,105,103,110,101,100,58,42, + 47,109,111,100,0,2049,5525,110,110,110,45,110,110,0,1,31646,3,1,1,1, + 0,1,8101,2049,12792,2,2049,12769,2049,12769,10,31620,31685,168,31706,210639169918,31687,200,200,0, + 42,47,109,111,100,0,2049,5525,110,110,110,45,110,110,0,1,31687,3,1,1, + 1,8101,2049,12792,2049,12769,10,105,110,116,101,114,102,97,99,101,47,117,110,115, + 105,103,110,101,100,46,114,101,116,114,111,0,31706,31879,31670,31755,168,31856,-3502245454587251943,31757, + 200,200,0,100,58,117,115,101,45,104,97,115,104,101,115,0,2049,5525,45,0, + 1,31757,3,1,29,1,258,1,5,18,16,1793,31776,2049,188,15,10,1,31772,1, + 258,1,8,18,16,1,2049,1,258,16,1,5994,1,258,2049,3953,16,10,31733,31820, + 168,31856,-4893635544173424761,31822,200,200,0,100,58,117,115,101,45,115,116,114,105,110,103,115, + 0,2049,5525,45,0,1,31822,3,1,118,1,258,1,5,18,16,1,198,1,258, + 1,8,18,16,1,0,1,258,16,1,0,1,258,2049,3953,16,10,105,110,116, + 101,114,102,97,99,101,47,102,117,116,117,114,101,46,114,101,116,114,111,0, + 31856,32039,31797,31903,168,0,-3527051417241377258,0,200,200,0,98,108,111,99,107,58,105,110,118, + 111,107,101,0,1,3,2049,12792,2049,12769,10,31797,31930,168,32016,8246131600073141446,31932,200,200,0, + 98,108,111,99,107,58,114,101,97,100,0,2049,5525,110,97,45,0,1,31932,3, + 1,0,2049,31903,10,31910,31965,168,32016,-4578818303223200395,31967,200,200,0,98,108,111,99,107,58, + 119,114,105,116,101,0,2049,5525,110,97,45,0,1,31967,3,1,1,2049,31903,10, + 31944,32003,168,32016,-4036225629868593021,32005,200,200,0,98,108,111,99,107,58,115,101,116,45,102, + 105,108,101,0,2049,5525,115,45,0,1,32005,3,1,2,2049,31903,10,105,110,116, + 101,114,102,97,99,101,47,98,108,111,99,107,115,46,114,101,116,114,111,0, + 32016,33114,31979,32066,168,32332,4283726481136624767,32068,200,200,0,101,114,114,58,115,101,116,45,104, + 97,110,100,108,101,114,0,2049,5525,110,110,45,0,1,32068,3,1,1234,2049,12792, + 2,2049,3517,1793,32133,3,2049,5525,69,114,114,111,114,58,32,101,114,114,111,114, + 32,104,97,110,100,108,105,110,103,32,100,101,118,105,99,101,32,110,111,116, + 32,102,111,117,110,100,0,1,32087,2049,12918,2049,12863,10,1,32084,2049,3638,1,0, + 4,2049,12769,10,32041,32160,168,32332,229464878751060,32162,200,200,0,101,114,114,58,100,115,117, + 0,2049,5525,45,0,1,32162,3,2049,12979,2049,12863,2049,5525,69,82,82,79,82,58, + 32,68,83,85,58,32,68,65,84,65,32,83,84,65,67,75,32,85,78,68, + 69,82,70,76,79,87,0,1,32173,2049,12918,2049,12863,2049,13112,10,32143,32232,168,32332, + 229464878751054,32234,200,200,0,101,114,114,58,100,115,111,0,2049,5525,45,0,1,32234,3, + 2049,12979,2049,12863,2049,5525,69,82,82,79,82,58,32,68,83,79,58,32,68,65, + 84,65,32,83,84,65,67,75,32,79,86,69,82,70,76,79,87,0,1,32245, + 2049,12918,2049,12863,2049,13112,10,32215,32312,168,32332,-6210978877792005319,32314,200,200,0,101,114,114,58, + 115,101,116,45,100,101,102,97,117,108,116,115,0,2049,5525,45,0,1,32314,3, + 1,32160,1,1,2049,32066,1,32232,1,2,2049,32066,10,105,110,116,101,114,102,97, + 99,101,47,101,114,114,111,114,46,114,101,116,114,111,0,32286,32379,168,0,-1159954141530329845, + 32381,200,200,0,105,111,99,116,108,58,111,112,101,114,97,116,105,111,110,0, + 2049,5525,110,45,0,1,32381,3,1,14,2049,12792,2,2049,3517,1793,32436,3,2049,5525, + 69,114,114,111,114,58,32,105,111,99,116,108,32,100,101,118,105,99,101,32, + 110,111,116,32,102,111,117,110,100,0,1,32399,2049,12918,2049,12863,10,1,32396,2049, + 3638,2049,12769,10,32354,32468,168,0,-1159947561758408230,32470,200,200,0,105,111,99,116,108,58,116, + 101,114,109,45,115,105,122,101,0,2049,5525,45,110,110,0,1,32470,3,1,0, + 2049,32379,10,32443,32508,168,0,-1384827797416383269,32510,200,200,0,105,111,99,116,108,58,115,101, + 116,45,99,98,114,101,97,107,0,2049,5525,45,0,1,32510,3,1,1,2049,32379, + 10,32482,32546,168,0,-1384827797064164732,32548,200,200,0,105,111,99,116,108,58,115,101,116,45, + 108,98,114,101,97,107,0,2049,5525,45,0,1,32548,3,1,2,2049,32379,10,32520, + 32584,168,0,-1384833267584846441,32586,200,200,0,105,111,99,116,108,58,115,97,118,101,45,115, + 116,97,116,101,0,2049,5525,45,0,1,32586,3,1,3,2049,32379,10,32558,32625,168, + 0,1092846777098631660,32627,200,200,0,105,111,99,116,108,58,114,101,115,116,111,114,101,45, + 115,116,97,116,101,0,2049,5525,45,0,1,32627,3,1,4,2049,32379,10,1793,32658, + 1,202,1,2,17,8,2049,2100,2049,198,3841,13770,8,2049,2100,2049,188,16,10,1, + 32639,32596,32674,168,33090,6384117006,32676,200,200,0,72,79,77,69,0,2049,5525,45,115,0, + 1,32676,3,2049,2585,1,4096,17,10,37,115,47,46,99,111,110,102,105,103,47, + 114,101,116,114,111,102,111,114,116,104,47,108,105,98,114,97,114,121,47,37, + 115,46,114,101,116,114,111,0,32660,32688,156,33090,6061648467740287960,32754,200,200,0,108,105,98, + 114,97,114,121,58,46,67,79,78,70,73,71,0,45,115,0,46,47,108,105, + 98,114,97,114,121,47,37,115,46,114,101,116,114,111,0,32727,32755,156,33090,-4563659402581934926, + 32797,200,200,0,108,105,98,114,97,114,121,58,67,87,68,0,45,115,0,32774, + 32819,168,33090,-4563659402581898990,32821,200,200,0,108,105,98,114,97,114,121,58,99,119,100,0, + 2049,5525,115,45,115,0,1,32821,3,1,32755,2049,9899,10,32798,32858,168,33090,6061648469031755928,32860, + 200,200,0,108,105,98,114,97,114,121,58,46,99,111,110,102,105,103,0,2049, + 5525,45,115,0,1,32860,3,2049,5525,72,79,77,69,0,1,32868,2049,32674,2049,28403, + 2049,32674,1,32688,2049,9899,10,32833,32912,168,33090,-2879782938503308011,32914,200,200,0,108,105,98,114, + 97,114,121,58,102,105,108,101,110,97,109,101,0,2049,5525,115,45,115,0,1, + 32914,3,2,2049,32819,2,2049,27310,1,2816,2049,3638,3,2049,32858,2,2049,27310,1793,32940, + 10,1,32939,2049,3638,3,2049,5500,10,32886,32975,168,33090,-2799120562421764174,32977,200,200,0,108,105, + 98,114,97,114,121,58,99,111,110,116,97,105,110,115,63,0,2049,5525,115,45, + 102,0,1,32977,3,1,32819,1,32858,2049,2923,1,27310,2049,2961,22,10,32948,33018,168, + 33090,-3026807695525939020,33020,200,200,0,108,105,98,114,97,114,121,58,108,111,97,100,0,2049, + 5525,115,45,0,1,33020,3,2,2049,32975,1793,33036,2049,32912,2049,29765,10,1,33031,1793, + 33085,2049,5525,69,82,82,79,82,58,32,76,105,98,114,97,114,121,32,96,37, + 115,96,32,119,97,115,32,110,111,116,32,102,111,117,110,100,0,1,33042,2049, + 9899,2049,12918,2049,12863,10,1,33040,2049,66,10,105,110,116,101,114,102,97,99,101, + 47,108,105,98,114,97,114,121,46,114,101,116,114,111,0,33090,13989,32996,33136,168, + 33455,8246457295145463473,33138,200,200,0,105,109,97,103,101,58,115,97,118,101,0,2049,5525,115, + 45,0,1,33138,3,1,1000,2049,12792,2049,12769,10,33116,33166,168,0,210711039690,0,200,200, + 0,101,100,105,116,63,0,2,1793,33173,1,8,11,10,1,33169,1793,33181,1,127, + 11,10,1,33177,2049,2923,22,10,33151,33203,168,0,6953475974244,0,200,200,0,101,110,100, + 101,100,63,0,2049,5153,3841,5274,2049,3411,10,33187,33223,168,0,193486030,0,200,200,0, + 97,100,100,0,2049,33203,1,17,1,5063,2049,66,10,33210,33248,168,0,6953539406400,0,200, + 200,0,103,97,116,104,101,114,0,2049,33166,1,17,1,33223,2049,66,10,33232,33272, + 168,0,210709415765,0,200,200,0,99,121,99,108,101,0,2049,13090,2049,2873,4,8,2049, + 3372,25,3,2049,33248,1,33272,7,10,33116,33309,168,33455,-4557881830897049127,33311,200,200,0,112,97, + 114,115,101,45,117,110,116,105,108,0,2049,5525,113,45,115,0,1,33311,3,1793, + 33330,2049,5500,2049,5179,2049,33272,771,2049,5017,10,1,33320,2049,5209,10,33288,33350,168,33455, + 210726130610,33352,200,200,0,115,58,103,101,116,0,2049,5525,45,115,0,1,33352,3,1793, + 33380,1793,33366,1,13,11,10,1,33362,1793,33374,1,10,11,10,1,33370,2049,2923,22, + 10,1,33360,2049,33309,10,33335,33400,168,33455,210708950412,33402,200,200,0,99,108,101,97,114, + 0,2049,5525,45,0,1,33402,3,2049,5525,92,94,91,50,74,92,94,91,48,59, + 48,72,0,1,33409,2049,9899,2049,12918,10,33385,33441,180,33455,5861507,33443,200,200,0,47, + 47,0,2049,5525,45,0,1,33443,3,2049,29932,1,13132,2049,4808,10,105,110,116,101, + 114,102,97,99,101,47,114,101,116,114,111,45,117,110,105,120,46,114,101,116, + 114,111,0,33429,33499,156,0,229441520490121,0,200,200,0,83,111,117,114,99,101,115,0, + 3,33760,33993,34291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, - 0,0,0,0,0,0,0,0,0,0,0,0,0,30810,30965,168,0,6953711201841,0,107, - 110,111,119,110,63,0,2,1,30824,2049,9446,10,30952,30983,168,0,210716136861,0,105,110, - 100,101,120,0,1,30824,4,2049,10110,1,30824,4,2049,9596,10,30971,31007,168,0,6953974036516, - 0,114,101,99,111,114,100,0,2049,4640,2,1,30824,2049,3920,3841,30824,1,30824,17, - 16,10,1793,31074,2049,27390,2049,30965,1793,31032,2049,30983,10,1,31029,1793,31039,2049,31007,10, - 1,31036,2049,66,1793,31052,1,194,1,2,17,8,10,1,31045,2049,2266,2049,1579,2049, - 186,16,2049,1579,2049,192,3841,12097,8,2049,1579,2049,188,16,10,1,31023,100,105,99, - 116,45,119,111,114,100,115,45,108,105,115,116,105,110,103,46,102,111,114,116, - 104,0,30760,31115,168,31076,229461403550098,31117,100,58,119,111,114,100,115,0,2049,4611,45,0, - 1,31117,3,1793,31131,2049,192,2049,11320,2049,11288,10,1,31124,2049,8833,10,31101,31155,168, - 31076,-3502157631813457253,31157,100,58,119,111,114,100,115,45,119,105,116,104,0,2049,4611,115,45, - 0,1,31157,3,2049,2001,2049,5780,1793,31194,2049,192,2,2049,2001,2049,5472,1793,31183,2049, - 11320,2049,11288,10,1,31178,1793,31189,3,10,1,31187,2049,66,10,1,31169,2049,8833,10, - 31136,31221,168,31076,2818131571306626127,0,100,105,115,112,108,97,121,45,105,102,45,108,101,102, - 116,0,2,2049,2001,2049,5724,1793,31233,2049,11320,2049,11288,10,1,31228,1793,31239,3,10, - 1,31237,2049,66,10,31136,31273,168,31076,2947807019553410009,31275,100,58,119,111,114,100,115,45,98, - 101,103,105,110,110,105,110,103,45,119,105,116,104,0,2049,4611,115,45,0,1, - 31275,3,2049,2001,2049,5780,1793,31292,2049,192,2049,31221,10,1,31287,2049,8833,10,101,120, - 116,101,110,115,105,111,110,115,47,100,111,117,98,108,101,46,114,101,116,114, - 111,0,31244,31338,168,31297,8246228896775126019,31340,100,111,117,98,108,101,58,118,97,114,0,2049, - 4611,110,110,115,45,0,1,31340,3,2049,2102,4,2049,130,2049,130,10,31321,31375,168, - 31297,-3421095308458227740,31377,100,111,117,98,108,101,58,102,101,116,99,104,0,2049,4611,97,45, - 110,110,0,1,31377,3,2049,58,4,15,10,31356,31409,168,31297,-3421095308442276665,31411,100,111,117, - 98,108,101,58,115,116,111,114,101,0,2049,4611,110,110,97,45,0,1,31411,3, - 1,19,2049,2266,2049,61,16,10,31390,31446,168,31297,-3421095308461432127,31448,100,111,117,98,108,101, - 58,99,111,110,115,116,0,2049,4611,110,110,115,45,0,1,31448,3,2049,31338,1, - 31375,2049,8801,10,31427,31481,168,31297,-4575607512064199915,31483,100,111,117,98,108,101,58,115,119,97, - 112,0,2049,4611,110,110,109,109,45,109,109,110,110,0,1,31483,3,67503109,5,67503109, - 6,10,31463,31518,168,31297,8246228896775106679,31520,100,111,117,98,108,101,58,100,105,112,0,2049, - 4611,109,110,113,45,109,110,0,1,31520,3,67503109,67503109,5,5,8,6,6,10,31501, - 31555,168,31297,8246228896775123014,31557,100,111,117,98,108,101,58,115,105,112,0,2049,4611,109,110, - 113,45,109,110,0,1,31557,3,1,2253,2049,2266,2049,31518,10,101,120,116,101,110, - 115,105,111,110,115,47,109,97,108,108,111,99,46,114,101,116,114,111,0,31538, - 31615,168,31574,8246632143337714634,0,109,101,109,58,105,110,118,111,107,101,0,1,15,2049,11209, - 2049,11189,10,31598,0,156,31574,210667451248,0,65,76,76,79,67,0,31622,1,156,31574,6384048135, - 0,70,82,69,69,0,31634,2,156,31574,210689088690,0,83,84,79,82,69,0,31645,3, - 156,31574,210673137615,0,70,69,84,67,72,0,31657,4,156,31574,6952683137271,0,82,69,83,73, - 90,69,0,31538,31698,168,31574,249897943727936361,31700,109,101,109,58,97,108,108,111,99,0,2049, - 4611,110,45,45,97,0,1,31700,3,1,0,2049,31615,10,31682,31729,168,31574,249897943749573803,31731, - 109,101,109,58,115,116,111,114,101,0,2049,4611,97,110,45,45,0,1,31731,3, - 1,2,2049,31615,10,31713,31760,168,31574,249897943733622728,31762,109,101,109,58,102,101,116,99,104, - 0,2049,4611,97,45,45,110,0,1,31762,3,1,3,2049,31615,10,31744,31790,168,31574, - 7572664961638592,31792,109,101,109,58,102,114,101,101,0,2049,4611,97,45,45,0,1,31792,3, - 1,1,2049,31615,10,31775,31821,168,31574,8246632143679146032,31823,109,101,109,58,114,101,115,105,122, - 101,0,2049,4611,97,110,45,45,0,1,31823,3,1,4,2049,31615,10,31804,31852,168, - 31574,249897943730056489,31854,109,101,109,58,99,101,108,108,43,0,2049,4611,110,110,45,110,0, - 1,31854,3,1,8,19,17,10,31836,31890,168,31574,1050530996183190288,31892,109,101,109,58,102,101, - 116,99,104,45,100,111,117,98,108,101,0,2049,4611,110,45,110,110,0,1,31892, - 3,2,1,1,2049,31852,15,5,2049,31760,6,10,31867,31934,168,31574,1730340976492540563,31936,109,101, - 109,58,115,116,111,114,101,45,100,111,117,98,108,101,0,2049,4611,97,110,110, - 45,110,110,0,1,31936,3,5,5,2049,2253,1,1,2049,31852,6,2049,31729,6,2049, - 31729,10,0 }; + 0,0,0,0,0,0,0,0,33482,33643,168,0,6953711201841,0,200,200,0,107,110,111, + 119,110,63,0,2,1,33499,2049,10843,10,33627,33664,168,0,210716136861,0,200,200,0,105, + 110,100,101,120,0,1,33499,4,2049,11579,1,33499,4,2049,11005,10,33649,33691,168,0, + 6953974036516,0,200,200,0,114,101,99,111,114,100,0,2049,5557,2,1,33499,2049,4744,3841, + 33499,1,33499,17,16,10,1793,33758,2049,29843,2049,33643,1793,33716,2049,33664,10,1,33713,1793, + 33723,2049,33691,10,1,33720,2049,66,1793,33736,1,202,1,2,17,8,10,1,33729,2049, + 2889,2049,2100,2049,186,16,2049,2100,2049,198,3841,13770,8,2049,2100,2049,188,16,10,1, + 33707,100,105,99,116,45,119,111,114,100,115,45,108,105,115,116,105,110,103,46, + 102,111,114,116,104,0,33429,33802,168,33760,229461403550098,33804,200,200,0,100,58,119,111,114, + 100,115,0,2049,5525,45,0,1,33804,3,1793,33818,2049,198,2049,12918,2049,12880,10,1, + 33811,2049,10176,10,33785,33845,168,33760,-3502157631813457253,33847,200,200,0,100,58,119,111,114,100,115, + 45,119,105,116,104,0,2049,5525,115,45,0,1,33847,3,2049,2585,2049,6805,1793,33884, + 2049,198,2,2049,2585,2049,6473,1793,33873,2049,12918,2049,12880,10,1,33868,1793,33879,3,10, + 1,33877,2049,66,10,1,33859,2049,10176,10,33823,33914,168,33760,2818131571306626127,0,200,200,0,100, + 105,115,112,108,97,121,45,105,102,45,108,101,102,116,0,2,2049,2585,2049,6743, + 1793,33926,2049,12918,2049,12880,10,1,33921,1793,33932,3,10,1,33930,2049,66,10,33823,33969, + 168,33760,2947807019553410009,33971,200,200,0,100,58,119,111,114,100,115,45,98,101,103,105,110, + 110,105,110,103,45,119,105,116,104,0,2049,5525,115,45,0,1,33971,3,2049,2585, + 2049,6805,1793,33988,2049,198,2049,33914,10,1,33983,2049,10176,10,101,120,116,101,110,115, + 105,111,110,115,47,100,111,117,98,108,101,46,114,101,116,114,111,0,33937,34037, + 168,33993,8246228896775126019,34039,200,200,0,100,111,117,98,108,101,58,118,97,114,0,2049,5525, + 110,110,115,45,0,1,34039,3,2049,2695,4,2049,130,2049,130,10,34017,34077,168,33993, + -3421095308458227740,34079,200,200,0,100,111,117,98,108,101,58,102,101,116,99,104,0,2049,5525, + 97,45,110,110,0,1,34079,3,2049,58,4,15,10,34055,34114,168,33993,-3421095308442276665,34116,200, + 200,0,100,111,117,98,108,101,58,115,116,111,114,101,0,2049,5525,110,110,97, + 45,0,1,34116,3,1,19,2049,2889,2049,61,16,10,34092,34154,168,33993,-3421095308461432127,34156,200, + 200,0,100,111,117,98,108,101,58,99,111,110,115,116,0,2049,5525,110,110,115, + 45,0,1,34156,3,2049,34037,1,34077,2049,10141,10,34132,34192,168,33993,-4575607512064199915,34194,200,200, + 0,100,111,117,98,108,101,58,115,119,97,112,0,2049,5525,110,110,109,109,45, + 109,109,110,110,0,1,34194,3,67503109,5,67503109,6,10,34171,34232,168,33993,8246228896775106679,34234,200, + 200,0,100,111,117,98,108,101,58,100,105,112,0,2049,5525,109,110,113,45,109, + 110,0,1,34234,3,67503109,67503109,5,5,8,6,6,10,34212,34272,168,33993,8246228896775123014,34274,200, + 200,0,100,111,117,98,108,101,58,115,105,112,0,2049,5525,109,110,113,45,109, + 110,0,1,34274,3,1,2873,2049,2889,2049,34232,10,101,120,116,101,110,115,105,111, + 110,115,47,109,97,108,108,111,99,46,114,101,116,114,111,0,34252,34335,168,34291, + 8246632143337714634,0,200,200,0,109,101,109,58,105,110,118,111,107,101,0,1,15,2049,12792, + 2049,12769,10,34315,0,156,34291,210667451248,0,200,200,0,65,76,76,79,67,0,34342,1, + 156,34291,6384048135,0,200,200,0,70,82,69,69,0,34357,2,156,34291,210689088690,0,200,200, + 0,83,84,79,82,69,0,34371,3,156,34291,210673137615,0,200,200,0,70,69,84,67, + 72,0,34386,4,156,34291,6952683137271,0,200,200,0,82,69,83,73,90,69,0,34252,34436, + 168,34291,249897943727936361,34438,200,200,0,109,101,109,58,97,108,108,111,99,0,2049,5525,110, + 45,45,97,0,1,34438,3,1,0,2049,34335,10,34417,34470,168,34291,249897943749573803,34472,200,200, + 0,109,101,109,58,115,116,111,114,101,0,2049,5525,97,110,45,45,0,1,34472, + 3,1,2,2049,34335,10,34451,34504,168,34291,249897943733622728,34506,200,200,0,109,101,109,58,102, + 101,116,99,104,0,2049,5525,97,45,45,110,0,1,34506,3,1,3,2049,34335,10, + 34485,34537,168,34291,7572664961638592,34539,200,200,0,109,101,109,58,102,114,101,101,0,2049,5525, + 97,45,45,0,1,34539,3,1,1,2049,34335,10,34519,34571,168,34291,8246632143679146032,34573,200,200, + 0,109,101,109,58,114,101,115,105,122,101,0,2049,5525,97,110,45,45,0,1, + 34573,3,1,4,2049,34335,10,34551,34605,168,34291,249897943730056489,34607,200,200,0,109,101,109,58, + 99,101,108,108,43,0,2049,5525,110,110,45,110,0,1,34607,3,1,8,19,17, + 10,34586,34646,168,34291,1050530996183190288,34648,200,200,0,109,101,109,58,102,101,116,99,104,45, + 100,111,117,98,108,101,0,2049,5525,110,45,110,110,0,1,34648,3,2,1,1, + 2049,34605,15,5,2049,34504,6,10,34620,34693,168,34291,1730340976492540563,34695,200,200,0,109,101,109, + 58,115,116,111,114,101,45,100,111,117,98,108,101,0,2049,5525,97,110,110,45, + 110,110,0,1,34695,3,5,5,2049,2873,1,1,2049,34605,6,2049,34470,6,2049,34470, + 10,0 }; diff --git a/vm/nga-c/retro-compiler.c b/vm/nga-c/retro-compiler.c index 2dc937c..4018917 100644 --- a/vm/nga-c/retro-compiler.c +++ b/vm/nga-c/retro-compiler.c @@ -50,7 +50,7 @@ #define D_OFFSET_XT 1 /* you change the dictionary fields. */ #define D_OFFSET_CLASS 2 #define D_OFFSET_STACK 5 -#define D_OFFSET_NAME 6 +#define D_OFFSET_NAME 9 #define NUM_DEVICES 1 /* Set the number of I/O devices */ diff --git a/vm/nga-pascal/bridge.pas b/vm/nga-pascal/bridge.pas index 19a1c09..42bcbcc 100644 --- a/vm/nga-pascal/bridge.pas +++ b/vm/nga-pascal/bridge.pas @@ -17,7 +17,7 @@ const D_OFFSET_LINK = 0; D_OFFSET_XT = 1; D_OFFSET_CLASS = 2; - D_OFFSET_NAME = 6; + D_OFFSET_NAME = 9; TIB = 1471; var