From 129e950c59bde7fa529baf510f93e619a033a767 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sat, 14 Aug 2010 16:33:20 -0400 Subject: [PATCH] Fixing naked chained existential checks -- the associativity recently got reversed. --- lib/grammar.js | 4 +++- lib/lexer.js | 2 +- lib/parser.js | 28 +++++++++++++++------------- src/grammar.coffee | 3 ++- src/lexer.coffee | 14 +++++++------- test/test_existence.coffee | 2 ++ 6 files changed, 30 insertions(+), 23 deletions(-) diff --git a/lib/grammar.js b/lib/grammar.js index 3953f459..e7fde415 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -555,6 +555,8 @@ return new OpNode('--', $1, null, true); }), o("Expression ++", function() { return new OpNode('++', $1, null, true); + }), o("Expression ? Expression", function() { + return new OpNode('?', $1, $3); }), o("Expression + Expression", function() { return new OpNode('+', $1, $3); }), o("Expression - Expression", function() { @@ -588,7 +590,7 @@ }) ] }; - operators = [["left", '?'], ["nonassoc", '++', '--'], ["right", 'UNARY'], ["left", 'MATH'], ["left", '+', '-'], ["left", 'SHIFT'], ["left", 'COMPARE'], ["left", 'INSTANCEOF'], ["left", '==', '!='], ["left", 'LOGIC'], ["right", 'COMPOUND_ASSIGN'], ["left", '.'], ["nonassoc", 'INDENT', 'OUTDENT'], ["right", 'WHEN', 'LEADING_WHEN', 'IN', 'OF', 'BY', 'THROW'], ["right", 'IF', 'UNLESS', 'ELSE', 'FOR', 'WHILE', 'UNTIL', 'LOOP', 'NEW', 'SUPER', 'CLASS', 'EXTENDS'], ["right", '=', ':', 'RETURN'], ["right", '->', '=>', 'UNLESS', 'POST_IF', 'POST_UNLESS']]; + operators = [["right", '?'], ["nonassoc", '++', '--'], ["right", 'UNARY'], ["left", 'MATH'], ["left", '+', '-'], ["left", 'SHIFT'], ["left", 'COMPARE'], ["left", 'INSTANCEOF'], ["left", '==', '!='], ["left", 'LOGIC'], ["right", 'COMPOUND_ASSIGN'], ["left", '.'], ["nonassoc", 'INDENT', 'OUTDENT'], ["right", 'WHEN', 'LEADING_WHEN', 'IN', 'OF', 'BY', 'THROW'], ["right", 'IF', 'UNLESS', 'ELSE', 'FOR', 'WHILE', 'UNTIL', 'LOOP', 'NEW', 'SUPER', 'CLASS', 'EXTENDS'], ["right", '=', ':', 'RETURN'], ["right", '->', '=>', 'UNLESS', 'POST_IF', 'POST_UNLESS']]; tokens = []; _a = grammar; for (name in _a) { diff --git a/lib/lexer.js b/lib/lexer.js index 65ee1594..499d0703 100644 --- a/lib/lexer.js +++ b/lib/lexer.js @@ -339,7 +339,7 @@ } if (value === ';') { tag = 'TERMINATOR'; - } else if ((value === '?' && spaced) || include(LOGIC, value)) { + } else if (include(LOGIC, value)) { tag = 'LOGIC'; } else if (include(MATH, value)) { tag = 'MATH'; diff --git a/lib/parser.js b/lib/parser.js index 2d5fafcf..04d76c9a 100755 --- a/lib/parser.js +++ b/lib/parser.js @@ -4,7 +4,7 @@ var parser = {trace: function trace() { }, yy: {}, symbols_: {"error":2,"Root":3,"TERMINATOR":4,"Body":5,"Block":6,"Line":7,"Expression":8,"Statement":9,"Return":10,"Throw":11,"BREAK":12,"CONTINUE":13,"Value":14,"Call":15,"Code":16,"Operation":17,"Assign":18,"If":19,"Try":20,"While":21,"For":22,"Switch":23,"Extends":24,"Class":25,"Splat":26,"Existence":27,"Comment":28,"INDENT":29,"OUTDENT":30,"Identifier":31,"IDENTIFIER":32,"AlphaNumeric":33,"NUMBER":34,"STRING":35,"Literal":36,"JS":37,"REGEX":38,"TRUE":39,"FALSE":40,"YES":41,"NO":42,"ON":43,"OFF":44,"Assignable":45,"=":46,"AssignObj":47,":":48,"RETURN":49,"HERECOMMENT":50,"?":51,"PARAM_START":52,"ParamList":53,"PARAM_END":54,"FuncGlyph":55,"->":56,"=>":57,"OptComma":58,",":59,"Param":60,"PARAM":61,"@":62,".":63,"SimpleAssignable":64,"Accessor":65,"Invocation":66,"ThisProperty":67,"Array":68,"Object":69,"Parenthetical":70,"Range":71,"This":72,"NULL":73,"PROPERTY_ACCESS":74,"PROTOTYPE_ACCESS":75,"::":76,"SOAK_ACCESS":77,"Index":78,"Slice":79,"INDEX_START":80,"INDEX_END":81,"INDEX_SOAK":82,"INDEX_PROTO":83,"{":84,"AssignList":85,"}":86,"CLASS":87,"EXTENDS":88,"ClassBody":89,"ClassAssign":90,"Super":91,"NEW":92,"Arguments":93,"CALL_START":94,"ArgList":95,"CALL_END":96,"SUPER":97,"THIS":98,"[":99,"]":100,"SimpleArgs":101,"TRY":102,"Catch":103,"FINALLY":104,"CATCH":105,"THROW":106,"(":107,")":108,"WhileSource":109,"WHILE":110,"WHEN":111,"UNTIL":112,"Loop":113,"LOOP":114,"ForBody":115,"FOR":116,"ForStart":117,"ForSource":118,"ForVariables":119,"ALL":120,"ForValue":121,"IN":122,"OF":123,"BY":124,"SWITCH":125,"Whens":126,"ELSE":127,"When":128,"LEADING_WHEN":129,"IfBlock":130,"IF":131,"UNLESS":132,"POST_IF":133,"POST_UNLESS":134,"UNARY":135,"-":136,"+":137,"--":138,"++":139,"==":140,"!=":141,"MATH":142,"SHIFT":143,"COMPARE":144,"LOGIC":145,"COMPOUND_ASSIGN":146,"INSTANCEOF":147,"$accept":0,"$end":1}, terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","29":"INDENT","30":"OUTDENT","32":"IDENTIFIER","34":"NUMBER","35":"STRING","37":"JS","38":"REGEX","39":"TRUE","40":"FALSE","41":"YES","42":"NO","43":"ON","44":"OFF","46":"=","48":":","49":"RETURN","50":"HERECOMMENT","51":"?","52":"PARAM_START","54":"PARAM_END","56":"->","57":"=>","59":",","61":"PARAM","62":"@","63":".","73":"NULL","74":"PROPERTY_ACCESS","75":"PROTOTYPE_ACCESS","76":"::","77":"SOAK_ACCESS","80":"INDEX_START","81":"INDEX_END","82":"INDEX_SOAK","83":"INDEX_PROTO","84":"{","86":"}","87":"CLASS","88":"EXTENDS","92":"NEW","94":"CALL_START","96":"CALL_END","97":"SUPER","98":"THIS","99":"[","100":"]","102":"TRY","104":"FINALLY","105":"CATCH","106":"THROW","107":"(","108":")","110":"WHILE","111":"WHEN","112":"UNTIL","114":"LOOP","116":"FOR","120":"ALL","122":"IN","123":"OF","124":"BY","125":"SWITCH","127":"ELSE","129":"LEADING_WHEN","131":"IF","132":"UNLESS","133":"POST_IF","134":"POST_UNLESS","135":"UNARY","136":"-","137":"+","138":"--","139":"++","140":"==","141":"!=","142":"MATH","143":"SHIFT","144":"COMPARE","145":"LOGIC","146":"COMPOUND_ASSIGN","147":"INSTANCEOF"}, -productions_: [0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[31,1],[33,1],[33,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[18,3],[18,5],[47,1],[47,1],[47,3],[47,3],[47,5],[47,5],[47,1],[10,2],[10,1],[28,1],[27,2],[16,5],[16,2],[55,1],[55,1],[58,0],[58,1],[53,0],[53,1],[53,3],[60,1],[60,2],[60,4],[60,5],[26,4],[64,1],[64,2],[64,2],[64,1],[45,1],[45,1],[45,1],[14,1],[14,1],[14,1],[14,1],[14,1],[14,1],[65,2],[65,2],[65,1],[65,2],[65,1],[65,1],[78,3],[78,2],[78,2],[69,4],[85,0],[85,1],[85,3],[85,4],[85,6],[25,2],[25,4],[25,5],[25,7],[25,4],[90,1],[90,3],[89,0],[89,1],[89,3],[89,3],[15,1],[15,1],[15,2],[15,2],[24,3],[66,2],[66,2],[93,4],[91,1],[91,2],[72,1],[72,1],[67,2],[71,6],[71,7],[79,6],[79,7],[68,4],[95,0],[95,1],[95,3],[95,4],[95,6],[101,1],[101,3],[20,3],[20,4],[20,5],[103,3],[11,2],[70,3],[109,2],[109,4],[109,2],[109,4],[21,2],[21,2],[21,2],[21,1],[113,2],[113,2],[22,2],[22,2],[22,2],[115,2],[115,2],[117,2],[117,3],[121,1],[121,1],[121,1],[119,1],[119,3],[118,2],[118,2],[118,4],[118,4],[118,4],[118,6],[118,6],[23,5],[23,7],[23,4],[23,6],[126,1],[126,2],[128,3],[128,4],[130,3],[130,3],[130,5],[130,3],[19,1],[19,3],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,5],[17,3],[17,3],[17,3],[17,4],[17,4]], +productions_: [0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[31,1],[33,1],[33,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[18,3],[18,5],[47,1],[47,1],[47,3],[47,3],[47,5],[47,5],[47,1],[10,2],[10,1],[28,1],[27,2],[16,5],[16,2],[55,1],[55,1],[58,0],[58,1],[53,0],[53,1],[53,3],[60,1],[60,2],[60,4],[60,5],[26,4],[64,1],[64,2],[64,2],[64,1],[45,1],[45,1],[45,1],[14,1],[14,1],[14,1],[14,1],[14,1],[14,1],[65,2],[65,2],[65,1],[65,2],[65,1],[65,1],[78,3],[78,2],[78,2],[69,4],[85,0],[85,1],[85,3],[85,4],[85,6],[25,2],[25,4],[25,5],[25,7],[25,4],[90,1],[90,3],[89,0],[89,1],[89,3],[89,3],[15,1],[15,1],[15,2],[15,2],[24,3],[66,2],[66,2],[93,4],[91,1],[91,2],[72,1],[72,1],[67,2],[71,6],[71,7],[79,6],[79,7],[68,4],[95,0],[95,1],[95,3],[95,4],[95,6],[101,1],[101,3],[20,3],[20,4],[20,5],[103,3],[11,2],[70,3],[109,2],[109,4],[109,2],[109,4],[21,2],[21,2],[21,2],[21,1],[113,2],[113,2],[22,2],[22,2],[22,2],[115,2],[115,2],[117,2],[117,3],[121,1],[121,1],[121,1],[119,1],[119,3],[118,2],[118,2],[118,4],[118,4],[118,4],[118,6],[118,6],[23,5],[23,7],[23,4],[23,6],[126,1],[126,2],[128,3],[128,4],[130,3],[130,3],[130,5],[130,3],[19,1],[19,3],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,5],[17,3],[17,3],[17,3],[17,4],[17,4]], performAction: function anonymous(yytext,yyleng,yylineno,yy) { var $$ = arguments[5],$0=arguments[5].length; @@ -457,15 +457,15 @@ case 192:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); break; case 193:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); break; -case 194:this.$ = new OpNode('+', $$[$0-3+1-1], $$[$0-3+3-1]); +case 194:this.$ = new OpNode('?', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 195:this.$ = new OpNode('-', $$[$0-3+1-1], $$[$0-3+3-1]); +case 195:this.$ = new OpNode('+', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 196:this.$ = new OpNode('==', $$[$0-3+1-1], $$[$0-3+3-1]); +case 196:this.$ = new OpNode('-', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 197:this.$ = new OpNode('!=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 197:this.$ = new OpNode('==', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 198:this.$ = new OpNode($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); +case 198:this.$ = new OpNode('!=', $$[$0-3+1-1], $$[$0-3+3-1]); break; case 199:this.$ = new OpNode($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; @@ -475,21 +475,23 @@ case 201:this.$ = new OpNode($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; case 202:this.$ = new OpNode($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 203:this.$ = new OpNode($$[$0-5+2-1], $$[$0-5+1-1], $$[$0-5+4-1]); +case 203:this.$ = new OpNode($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 204:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); +case 204:this.$ = new OpNode($$[$0-5+2-1], $$[$0-5+1-1], $$[$0-5+4-1]); break; -case 205:this.$ = new InNode($$[$0-3+1-1], $$[$0-3+3-1]); +case 205:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 206:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); +case 206:this.$ = new InNode($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 207:this.$ = new OpNode($$[$0-4+2-1], new InNode($$[$0-4+1-1], $$[$0-4+4-1])); +case 207:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 208:this.$ = new OpNode($$[$0-4+2-1], new ParentheticalNode(new OpNode('in', $$[$0-4+1-1], $$[$0-4+4-1]))); +case 208:this.$ = new OpNode($$[$0-4+2-1], new InNode($$[$0-4+1-1], $$[$0-4+4-1])); +break; +case 209:this.$ = new OpNode($$[$0-4+2-1], new ParentheticalNode(new OpNode('in', $$[$0-4+1-1], $$[$0-4+4-1]))); break; } }, -table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[3]},{"1":[2,2],"28":86,"50":[1,52]},{"1":[2,3],"4":[1,87]},{"4":[1,88]},{"1":[2,5],"4":[2,5],"30":[2,5]},{"5":89,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[1,90],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,8],"4":[2,8],"30":[2,8],"51":[1,110],"63":[1,109],"108":[2,8],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,9],"4":[2,9],"30":[2,9],"108":[2,9],"109":113,"110":[1,75],"112":[1,76],"115":114,"116":[1,78],"117":79,"133":[1,111],"134":[1,112]},{"1":[2,14],"4":[2,14],"29":[2,14],"30":[2,14],"51":[2,14],"59":[2,14],"63":[2,14],"65":117,"74":[1,119],"75":[1,120],"76":[1,121],"77":[1,122],"78":123,"79":124,"80":[1,125],"81":[2,14],"82":[1,126],"83":[1,127],"86":[2,14],"93":116,"94":[1,118],"96":[2,14],"100":[2,14],"108":[2,14],"110":[2,14],"111":[2,14],"112":[2,14],"116":[2,14],"122":[2,14],"123":[2,14],"124":[2,14],"133":[2,14],"134":[2,14],"135":[2,14],"136":[2,14],"137":[2,14],"138":[2,14],"139":[2,14],"140":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[1,115],"147":[2,14]},{"1":[2,15],"4":[2,15],"29":[2,15],"30":[2,15],"51":[2,15],"59":[2,15],"63":[2,15],"81":[2,15],"86":[2,15],"96":[2,15],"100":[2,15],"108":[2,15],"110":[2,15],"111":[2,15],"112":[2,15],"116":[2,15],"122":[2,15],"123":[2,15],"124":[2,15],"133":[2,15],"134":[2,15],"135":[2,15],"136":[2,15],"137":[2,15],"138":[2,15],"139":[2,15],"140":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"147":[2,15]},{"1":[2,16],"4":[2,16],"29":[2,16],"30":[2,16],"51":[2,16],"59":[2,16],"63":[2,16],"81":[2,16],"86":[2,16],"96":[2,16],"100":[2,16],"108":[2,16],"110":[2,16],"111":[2,16],"112":[2,16],"116":[2,16],"122":[2,16],"123":[2,16],"124":[2,16],"133":[2,16],"134":[2,16],"135":[2,16],"136":[2,16],"137":[2,16],"138":[2,16],"139":[2,16],"140":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"147":[2,16]},{"1":[2,17],"4":[2,17],"29":[2,17],"30":[2,17],"51":[2,17],"59":[2,17],"63":[2,17],"81":[2,17],"86":[2,17],"96":[2,17],"100":[2,17],"108":[2,17],"110":[2,17],"111":[2,17],"112":[2,17],"116":[2,17],"122":[2,17],"123":[2,17],"124":[2,17],"133":[2,17],"134":[2,17],"135":[2,17],"136":[2,17],"137":[2,17],"138":[2,17],"139":[2,17],"140":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"147":[2,17]},{"1":[2,18],"4":[2,18],"29":[2,18],"30":[2,18],"51":[2,18],"59":[2,18],"63":[2,18],"81":[2,18],"86":[2,18],"96":[2,18],"100":[2,18],"108":[2,18],"110":[2,18],"111":[2,18],"112":[2,18],"116":[2,18],"122":[2,18],"123":[2,18],"124":[2,18],"133":[2,18],"134":[2,18],"135":[2,18],"136":[2,18],"137":[2,18],"138":[2,18],"139":[2,18],"140":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"147":[2,18]},{"1":[2,19],"4":[2,19],"29":[2,19],"30":[2,19],"51":[2,19],"59":[2,19],"63":[2,19],"81":[2,19],"86":[2,19],"96":[2,19],"100":[2,19],"108":[2,19],"110":[2,19],"111":[2,19],"112":[2,19],"116":[2,19],"122":[2,19],"123":[2,19],"124":[2,19],"133":[2,19],"134":[2,19],"135":[2,19],"136":[2,19],"137":[2,19],"138":[2,19],"139":[2,19],"140":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"147":[2,19]},{"1":[2,20],"4":[2,20],"29":[2,20],"30":[2,20],"51":[2,20],"59":[2,20],"63":[2,20],"81":[2,20],"86":[2,20],"96":[2,20],"100":[2,20],"108":[2,20],"110":[2,20],"111":[2,20],"112":[2,20],"116":[2,20],"122":[2,20],"123":[2,20],"124":[2,20],"133":[2,20],"134":[2,20],"135":[2,20],"136":[2,20],"137":[2,20],"138":[2,20],"139":[2,20],"140":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"147":[2,20]},{"1":[2,21],"4":[2,21],"29":[2,21],"30":[2,21],"51":[2,21],"59":[2,21],"63":[2,21],"81":[2,21],"86":[2,21],"96":[2,21],"100":[2,21],"108":[2,21],"110":[2,21],"111":[2,21],"112":[2,21],"116":[2,21],"122":[2,21],"123":[2,21],"124":[2,21],"133":[2,21],"134":[2,21],"135":[2,21],"136":[2,21],"137":[2,21],"138":[2,21],"139":[2,21],"140":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"147":[2,21]},{"1":[2,22],"4":[2,22],"29":[2,22],"30":[2,22],"51":[2,22],"59":[2,22],"63":[2,22],"81":[2,22],"86":[2,22],"96":[2,22],"100":[2,22],"108":[2,22],"110":[2,22],"111":[2,22],"112":[2,22],"116":[2,22],"122":[2,22],"123":[2,22],"124":[2,22],"133":[2,22],"134":[2,22],"135":[2,22],"136":[2,22],"137":[2,22],"138":[2,22],"139":[2,22],"140":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"147":[2,22]},{"1":[2,23],"4":[2,23],"29":[2,23],"30":[2,23],"51":[2,23],"59":[2,23],"63":[2,23],"81":[2,23],"86":[2,23],"96":[2,23],"100":[2,23],"108":[2,23],"110":[2,23],"111":[2,23],"112":[2,23],"116":[2,23],"122":[2,23],"123":[2,23],"124":[2,23],"133":[2,23],"134":[2,23],"135":[2,23],"136":[2,23],"137":[2,23],"138":[2,23],"139":[2,23],"140":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"147":[2,23]},{"1":[2,24],"4":[2,24],"29":[2,24],"30":[2,24],"51":[2,24],"59":[2,24],"63":[2,24],"81":[2,24],"86":[2,24],"96":[2,24],"100":[2,24],"108":[2,24],"110":[2,24],"111":[2,24],"112":[2,24],"116":[2,24],"122":[2,24],"123":[2,24],"124":[2,24],"133":[2,24],"134":[2,24],"135":[2,24],"136":[2,24],"137":[2,24],"138":[2,24],"139":[2,24],"140":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"147":[2,24]},{"1":[2,25],"4":[2,25],"29":[2,25],"30":[2,25],"51":[2,25],"59":[2,25],"63":[2,25],"81":[2,25],"86":[2,25],"96":[2,25],"100":[2,25],"108":[2,25],"110":[2,25],"111":[2,25],"112":[2,25],"116":[2,25],"122":[2,25],"123":[2,25],"124":[2,25],"133":[2,25],"134":[2,25],"135":[2,25],"136":[2,25],"137":[2,25],"138":[2,25],"139":[2,25],"140":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"147":[2,25]},{"1":[2,26],"4":[2,26],"29":[2,26],"30":[2,26],"51":[2,26],"59":[2,26],"63":[2,26],"81":[2,26],"86":[2,26],"96":[2,26],"100":[2,26],"108":[2,26],"110":[2,26],"111":[2,26],"112":[2,26],"116":[2,26],"122":[2,26],"123":[2,26],"124":[2,26],"133":[2,26],"134":[2,26],"135":[2,26],"136":[2,26],"137":[2,26],"138":[2,26],"139":[2,26],"140":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"147":[2,26]},{"1":[2,27],"4":[2,27],"29":[2,27],"30":[2,27],"51":[2,27],"59":[2,27],"63":[2,27],"81":[2,27],"86":[2,27],"96":[2,27],"100":[2,27],"108":[2,27],"110":[2,27],"111":[2,27],"112":[2,27],"116":[2,27],"122":[2,27],"123":[2,27],"124":[2,27],"133":[2,27],"134":[2,27],"135":[2,27],"136":[2,27],"137":[2,27],"138":[2,27],"139":[2,27],"140":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"147":[2,27]},{"1":[2,28],"4":[2,28],"29":[2,28],"30":[2,28],"51":[2,28],"59":[2,28],"63":[2,28],"81":[2,28],"86":[2,28],"96":[2,28],"100":[2,28],"108":[2,28],"110":[2,28],"111":[2,28],"112":[2,28],"116":[2,28],"122":[2,28],"123":[2,28],"124":[2,28],"133":[2,28],"134":[2,28],"135":[2,28],"136":[2,28],"137":[2,28],"138":[2,28],"139":[2,28],"140":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"147":[2,28]},{"1":[2,10],"4":[2,10],"30":[2,10],"108":[2,10],"110":[2,10],"112":[2,10],"116":[2,10],"133":[2,10],"134":[2,10]},{"1":[2,11],"4":[2,11],"30":[2,11],"108":[2,11],"110":[2,11],"112":[2,11],"116":[2,11],"133":[2,11],"134":[2,11]},{"1":[2,12],"4":[2,12],"30":[2,12],"108":[2,12],"110":[2,12],"112":[2,12],"116":[2,12],"133":[2,12],"134":[2,12]},{"1":[2,13],"4":[2,13],"30":[2,13],"108":[2,13],"110":[2,13],"112":[2,13],"116":[2,13],"133":[2,13],"134":[2,13]},{"1":[2,78],"4":[2,78],"29":[2,78],"30":[2,78],"46":[1,128],"51":[2,78],"59":[2,78],"63":[2,78],"74":[2,78],"75":[2,78],"76":[2,78],"77":[2,78],"80":[2,78],"81":[2,78],"82":[2,78],"83":[2,78],"86":[2,78],"94":[2,78],"96":[2,78],"100":[2,78],"108":[2,78],"110":[2,78],"111":[2,78],"112":[2,78],"116":[2,78],"122":[2,78],"123":[2,78],"124":[2,78],"133":[2,78],"134":[2,78],"135":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78]},{"1":[2,79],"4":[2,79],"29":[2,79],"30":[2,79],"51":[2,79],"59":[2,79],"63":[2,79],"74":[2,79],"75":[2,79],"76":[2,79],"77":[2,79],"80":[2,79],"81":[2,79],"82":[2,79],"83":[2,79],"86":[2,79],"94":[2,79],"96":[2,79],"100":[2,79],"108":[2,79],"110":[2,79],"111":[2,79],"112":[2,79],"116":[2,79],"122":[2,79],"123":[2,79],"124":[2,79],"133":[2,79],"134":[2,79],"135":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79]},{"1":[2,80],"4":[2,80],"29":[2,80],"30":[2,80],"51":[2,80],"59":[2,80],"63":[2,80],"74":[2,80],"75":[2,80],"76":[2,80],"77":[2,80],"80":[2,80],"81":[2,80],"82":[2,80],"83":[2,80],"86":[2,80],"94":[2,80],"96":[2,80],"100":[2,80],"108":[2,80],"110":[2,80],"111":[2,80],"112":[2,80],"116":[2,80],"122":[2,80],"123":[2,80],"124":[2,80],"133":[2,80],"134":[2,80],"135":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80],"140":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80]},{"1":[2,81],"4":[2,81],"29":[2,81],"30":[2,81],"51":[2,81],"59":[2,81],"63":[2,81],"74":[2,81],"75":[2,81],"76":[2,81],"77":[2,81],"80":[2,81],"81":[2,81],"82":[2,81],"83":[2,81],"86":[2,81],"94":[2,81],"96":[2,81],"100":[2,81],"108":[2,81],"110":[2,81],"111":[2,81],"112":[2,81],"116":[2,81],"122":[2,81],"123":[2,81],"124":[2,81],"133":[2,81],"134":[2,81],"135":[2,81],"136":[2,81],"137":[2,81],"138":[2,81],"139":[2,81],"140":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81]},{"1":[2,82],"4":[2,82],"29":[2,82],"30":[2,82],"51":[2,82],"59":[2,82],"63":[2,82],"74":[2,82],"75":[2,82],"76":[2,82],"77":[2,82],"80":[2,82],"81":[2,82],"82":[2,82],"83":[2,82],"86":[2,82],"94":[2,82],"96":[2,82],"100":[2,82],"108":[2,82],"110":[2,82],"111":[2,82],"112":[2,82],"116":[2,82],"122":[2,82],"123":[2,82],"124":[2,82],"133":[2,82],"134":[2,82],"135":[2,82],"136":[2,82],"137":[2,82],"138":[2,82],"139":[2,82],"140":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82]},{"1":[2,83],"4":[2,83],"29":[2,83],"30":[2,83],"51":[2,83],"59":[2,83],"63":[2,83],"74":[2,83],"75":[2,83],"76":[2,83],"77":[2,83],"80":[2,83],"81":[2,83],"82":[2,83],"83":[2,83],"86":[2,83],"94":[2,83],"96":[2,83],"100":[2,83],"108":[2,83],"110":[2,83],"111":[2,83],"112":[2,83],"116":[2,83],"122":[2,83],"123":[2,83],"124":[2,83],"133":[2,83],"134":[2,83],"135":[2,83],"136":[2,83],"137":[2,83],"138":[2,83],"139":[2,83],"140":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83]},{"1":[2,110],"4":[2,110],"29":[2,110],"30":[2,110],"51":[2,110],"59":[2,110],"63":[2,110],"65":130,"74":[1,119],"75":[1,120],"76":[1,121],"77":[1,122],"78":123,"79":124,"80":[1,125],"81":[2,110],"82":[1,126],"83":[1,127],"86":[2,110],"93":129,"94":[1,118],"96":[2,110],"100":[2,110],"108":[2,110],"110":[2,110],"111":[2,110],"112":[2,110],"116":[2,110],"122":[2,110],"123":[2,110],"124":[2,110],"133":[2,110],"134":[2,110],"135":[2,110],"136":[2,110],"137":[2,110],"138":[2,110],"139":[2,110],"140":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"147":[2,110]},{"1":[2,111],"4":[2,111],"29":[2,111],"30":[2,111],"51":[2,111],"59":[2,111],"63":[2,111],"81":[2,111],"86":[2,111],"96":[2,111],"100":[2,111],"108":[2,111],"110":[2,111],"111":[2,111],"112":[2,111],"116":[2,111],"122":[2,111],"123":[2,111],"124":[2,111],"133":[2,111],"134":[2,111],"135":[2,111],"136":[2,111],"137":[2,111],"138":[2,111],"139":[2,111],"140":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"147":[2,111]},{"14":132,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":133,"62":[1,69],"64":134,"66":131,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"98":[1,68],"99":[1,67],"107":[1,66]},{"53":135,"54":[2,63],"59":[2,63],"60":136,"61":[1,137],"62":[1,138]},{"4":[1,140],"6":139,"29":[1,6]},{"8":141,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":143,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":144,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":145,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":146,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,182],"4":[2,182],"29":[2,182],"30":[2,182],"51":[2,182],"59":[2,182],"63":[2,182],"81":[2,182],"86":[2,182],"96":[2,182],"100":[2,182],"108":[2,182],"110":[2,182],"111":[2,182],"112":[2,182],"116":[2,182],"122":[2,182],"123":[2,182],"124":[2,182],"127":[1,147],"133":[2,182],"134":[2,182],"135":[2,182],"136":[2,182],"137":[2,182],"138":[2,182],"139":[2,182],"140":[2,182],"141":[2,182],"142":[2,182],"143":[2,182],"144":[2,182],"145":[2,182],"147":[2,182]},{"4":[1,140],"6":148,"29":[1,6]},{"4":[1,140],"6":149,"29":[1,6]},{"1":[2,148],"4":[2,148],"29":[2,148],"30":[2,148],"51":[2,148],"59":[2,148],"63":[2,148],"81":[2,148],"86":[2,148],"96":[2,148],"100":[2,148],"108":[2,148],"110":[2,148],"111":[2,148],"112":[2,148],"116":[2,148],"122":[2,148],"123":[2,148],"124":[2,148],"133":[2,148],"134":[2,148],"135":[2,148],"136":[2,148],"137":[2,148],"138":[2,148],"139":[2,148],"140":[2,148],"141":[2,148],"142":[2,148],"143":[2,148],"144":[2,148],"145":[2,148],"147":[2,148]},{"4":[1,140],"6":150,"29":[1,6]},{"8":151,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,152],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,75],"4":[2,75],"29":[2,75],"30":[2,75],"46":[2,75],"51":[2,75],"59":[2,75],"63":[2,75],"74":[2,75],"75":[2,75],"76":[2,75],"77":[2,75],"80":[2,75],"81":[2,75],"82":[2,75],"83":[2,75],"86":[2,75],"88":[1,153],"94":[2,75],"96":[2,75],"100":[2,75],"108":[2,75],"110":[2,75],"111":[2,75],"112":[2,75],"116":[2,75],"122":[2,75],"123":[2,75],"124":[2,75],"133":[2,75],"134":[2,75],"135":[2,75],"136":[2,75],"137":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75]},{"14":156,"29":[1,155],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":133,"62":[1,69],"64":154,"66":157,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"98":[1,68],"99":[1,67],"107":[1,66]},{"1":[2,55],"4":[2,55],"29":[2,55],"30":[2,55],"51":[2,55],"59":[2,55],"63":[2,55],"81":[2,55],"86":[2,55],"96":[2,55],"100":[2,55],"104":[2,55],"105":[2,55],"108":[2,55],"110":[2,55],"111":[2,55],"112":[2,55],"116":[2,55],"122":[2,55],"123":[2,55],"124":[2,55],"127":[2,55],"129":[2,55],"133":[2,55],"134":[2,55],"135":[2,55],"136":[2,55],"137":[2,55],"138":[2,55],"139":[2,55],"140":[2,55],"141":[2,55],"142":[2,55],"143":[2,55],"144":[2,55],"145":[2,55],"147":[2,55]},{"1":[2,54],"4":[2,54],"8":158,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,54],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"108":[2,54],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"133":[2,54],"134":[2,54],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":159,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,76],"4":[2,76],"29":[2,76],"30":[2,76],"46":[2,76],"51":[2,76],"59":[2,76],"63":[2,76],"74":[2,76],"75":[2,76],"76":[2,76],"77":[2,76],"80":[2,76],"81":[2,76],"82":[2,76],"83":[2,76],"86":[2,76],"94":[2,76],"96":[2,76],"100":[2,76],"108":[2,76],"110":[2,76],"111":[2,76],"112":[2,76],"116":[2,76],"122":[2,76],"123":[2,76],"124":[2,76],"133":[2,76],"134":[2,76],"135":[2,76],"136":[2,76],"137":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76]},{"1":[2,77],"4":[2,77],"29":[2,77],"30":[2,77],"46":[2,77],"51":[2,77],"59":[2,77],"63":[2,77],"74":[2,77],"75":[2,77],"76":[2,77],"77":[2,77],"80":[2,77],"81":[2,77],"82":[2,77],"83":[2,77],"86":[2,77],"94":[2,77],"96":[2,77],"100":[2,77],"108":[2,77],"110":[2,77],"111":[2,77],"112":[2,77],"116":[2,77],"122":[2,77],"123":[2,77],"124":[2,77],"133":[2,77],"134":[2,77],"135":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77]},{"1":[2,35],"4":[2,35],"29":[2,35],"30":[2,35],"51":[2,35],"59":[2,35],"63":[2,35],"74":[2,35],"75":[2,35],"76":[2,35],"77":[2,35],"80":[2,35],"81":[2,35],"82":[2,35],"83":[2,35],"86":[2,35],"94":[2,35],"96":[2,35],"100":[2,35],"108":[2,35],"110":[2,35],"111":[2,35],"112":[2,35],"116":[2,35],"122":[2,35],"123":[2,35],"124":[2,35],"133":[2,35],"134":[2,35],"135":[2,35],"136":[2,35],"137":[2,35],"138":[2,35],"139":[2,35],"140":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35]},{"1":[2,36],"4":[2,36],"29":[2,36],"30":[2,36],"51":[2,36],"59":[2,36],"63":[2,36],"74":[2,36],"75":[2,36],"76":[2,36],"77":[2,36],"80":[2,36],"81":[2,36],"82":[2,36],"83":[2,36],"86":[2,36],"94":[2,36],"96":[2,36],"100":[2,36],"108":[2,36],"110":[2,36],"111":[2,36],"112":[2,36],"116":[2,36],"122":[2,36],"123":[2,36],"124":[2,36],"133":[2,36],"134":[2,36],"135":[2,36],"136":[2,36],"137":[2,36],"138":[2,36],"139":[2,36],"140":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36]},{"1":[2,37],"4":[2,37],"29":[2,37],"30":[2,37],"51":[2,37],"59":[2,37],"63":[2,37],"74":[2,37],"75":[2,37],"76":[2,37],"77":[2,37],"80":[2,37],"81":[2,37],"82":[2,37],"83":[2,37],"86":[2,37],"94":[2,37],"96":[2,37],"100":[2,37],"108":[2,37],"110":[2,37],"111":[2,37],"112":[2,37],"116":[2,37],"122":[2,37],"123":[2,37],"124":[2,37],"133":[2,37],"134":[2,37],"135":[2,37],"136":[2,37],"137":[2,37],"138":[2,37],"139":[2,37],"140":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37]},{"1":[2,38],"4":[2,38],"29":[2,38],"30":[2,38],"51":[2,38],"59":[2,38],"63":[2,38],"74":[2,38],"75":[2,38],"76":[2,38],"77":[2,38],"80":[2,38],"81":[2,38],"82":[2,38],"83":[2,38],"86":[2,38],"94":[2,38],"96":[2,38],"100":[2,38],"108":[2,38],"110":[2,38],"111":[2,38],"112":[2,38],"116":[2,38],"122":[2,38],"123":[2,38],"124":[2,38],"133":[2,38],"134":[2,38],"135":[2,38],"136":[2,38],"137":[2,38],"138":[2,38],"139":[2,38],"140":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38]},{"1":[2,39],"4":[2,39],"29":[2,39],"30":[2,39],"51":[2,39],"59":[2,39],"63":[2,39],"74":[2,39],"75":[2,39],"76":[2,39],"77":[2,39],"80":[2,39],"81":[2,39],"82":[2,39],"83":[2,39],"86":[2,39],"94":[2,39],"96":[2,39],"100":[2,39],"108":[2,39],"110":[2,39],"111":[2,39],"112":[2,39],"116":[2,39],"122":[2,39],"123":[2,39],"124":[2,39],"133":[2,39],"134":[2,39],"135":[2,39],"136":[2,39],"137":[2,39],"138":[2,39],"139":[2,39],"140":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39]},{"1":[2,40],"4":[2,40],"29":[2,40],"30":[2,40],"51":[2,40],"59":[2,40],"63":[2,40],"74":[2,40],"75":[2,40],"76":[2,40],"77":[2,40],"80":[2,40],"81":[2,40],"82":[2,40],"83":[2,40],"86":[2,40],"94":[2,40],"96":[2,40],"100":[2,40],"108":[2,40],"110":[2,40],"111":[2,40],"112":[2,40],"116":[2,40],"122":[2,40],"123":[2,40],"124":[2,40],"133":[2,40],"134":[2,40],"135":[2,40],"136":[2,40],"137":[2,40],"138":[2,40],"139":[2,40],"140":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40]},{"1":[2,41],"4":[2,41],"29":[2,41],"30":[2,41],"51":[2,41],"59":[2,41],"63":[2,41],"74":[2,41],"75":[2,41],"76":[2,41],"77":[2,41],"80":[2,41],"81":[2,41],"82":[2,41],"83":[2,41],"86":[2,41],"94":[2,41],"96":[2,41],"100":[2,41],"108":[2,41],"110":[2,41],"111":[2,41],"112":[2,41],"116":[2,41],"122":[2,41],"123":[2,41],"124":[2,41],"133":[2,41],"134":[2,41],"135":[2,41],"136":[2,41],"137":[2,41],"138":[2,41],"139":[2,41],"140":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41]},{"1":[2,42],"4":[2,42],"29":[2,42],"30":[2,42],"51":[2,42],"59":[2,42],"63":[2,42],"74":[2,42],"75":[2,42],"76":[2,42],"77":[2,42],"80":[2,42],"81":[2,42],"82":[2,42],"83":[2,42],"86":[2,42],"94":[2,42],"96":[2,42],"100":[2,42],"108":[2,42],"110":[2,42],"111":[2,42],"112":[2,42],"116":[2,42],"122":[2,42],"123":[2,42],"124":[2,42],"133":[2,42],"134":[2,42],"135":[2,42],"136":[2,42],"137":[2,42],"138":[2,42],"139":[2,42],"140":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42]},{"1":[2,43],"4":[2,43],"29":[2,43],"30":[2,43],"51":[2,43],"59":[2,43],"63":[2,43],"74":[2,43],"75":[2,43],"76":[2,43],"77":[2,43],"80":[2,43],"81":[2,43],"82":[2,43],"83":[2,43],"86":[2,43],"94":[2,43],"96":[2,43],"100":[2,43],"108":[2,43],"110":[2,43],"111":[2,43],"112":[2,43],"116":[2,43],"122":[2,43],"123":[2,43],"124":[2,43],"133":[2,43],"134":[2,43],"135":[2,43],"136":[2,43],"137":[2,43],"138":[2,43],"139":[2,43],"140":[2,43],"141":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43]},{"7":160,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"4":[2,128],"8":161,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,128],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"59":[2,128],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"95":162,"97":[1,70],"98":[1,68],"99":[1,67],"100":[2,128],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,120],"4":[2,120],"29":[2,120],"30":[2,120],"51":[2,120],"59":[2,120],"63":[2,120],"74":[2,120],"75":[2,120],"76":[2,120],"77":[2,120],"80":[2,120],"81":[2,120],"82":[2,120],"83":[2,120],"86":[2,120],"94":[2,120],"96":[2,120],"100":[2,120],"108":[2,120],"110":[2,120],"111":[2,120],"112":[2,120],"116":[2,120],"122":[2,120],"123":[2,120],"124":[2,120],"133":[2,120],"134":[2,120],"135":[2,120],"136":[2,120],"137":[2,120],"138":[2,120],"139":[2,120],"140":[2,120],"141":[2,120],"142":[2,120],"143":[2,120],"144":[2,120],"145":[2,120],"146":[2,120],"147":[2,120]},{"1":[2,121],"4":[2,121],"29":[2,121],"30":[2,121],"31":163,"32":[1,85],"51":[2,121],"59":[2,121],"63":[2,121],"74":[2,121],"75":[2,121],"76":[2,121],"77":[2,121],"80":[2,121],"81":[2,121],"82":[2,121],"83":[2,121],"86":[2,121],"94":[2,121],"96":[2,121],"100":[2,121],"108":[2,121],"110":[2,121],"111":[2,121],"112":[2,121],"116":[2,121],"122":[2,121],"123":[2,121],"124":[2,121],"133":[2,121],"134":[2,121],"135":[2,121],"136":[2,121],"137":[2,121],"138":[2,121],"139":[2,121],"140":[2,121],"141":[2,121],"142":[2,121],"143":[2,121],"144":[2,121],"145":[2,121],"146":[2,121],"147":[2,121]},{"1":[2,118],"4":[2,118],"29":[2,118],"30":[2,118],"51":[2,118],"59":[2,118],"63":[2,118],"81":[2,118],"86":[2,118],"93":164,"94":[1,118],"96":[2,118],"100":[2,118],"108":[2,118],"110":[2,118],"111":[2,118],"112":[2,118],"116":[2,118],"122":[2,118],"123":[2,118],"124":[2,118],"133":[2,118],"134":[2,118],"135":[2,118],"136":[2,118],"137":[2,118],"138":[2,118],"139":[2,118],"140":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"147":[2,118]},{"4":[2,59],"29":[2,59]},{"4":[2,60],"29":[2,60]},{"8":165,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":166,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":167,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":168,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"4":[1,140],"6":169,"8":170,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"31":175,"32":[1,85],"68":176,"69":177,"71":171,"84":[1,82],"99":[1,67],"119":172,"120":[1,173],"121":174},{"118":178,"122":[1,179],"123":[1,180]},{"1":[2,71],"4":[2,71],"29":[2,71],"30":[2,71],"46":[2,71],"51":[2,71],"59":[2,71],"63":[2,71],"74":[2,71],"75":[2,71],"76":[2,71],"77":[2,71],"80":[2,71],"81":[2,71],"82":[2,71],"83":[2,71],"86":[2,71],"88":[2,71],"94":[2,71],"96":[2,71],"100":[2,71],"108":[2,71],"110":[2,71],"111":[2,71],"112":[2,71],"116":[2,71],"122":[2,71],"123":[2,71],"124":[2,71],"133":[2,71],"134":[2,71],"135":[2,71],"136":[2,71],"137":[2,71],"138":[2,71],"139":[2,71],"140":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71]},{"1":[2,74],"4":[2,74],"29":[2,74],"30":[2,74],"46":[2,74],"51":[2,74],"59":[2,74],"63":[2,74],"74":[2,74],"75":[2,74],"76":[2,74],"77":[2,74],"80":[2,74],"81":[2,74],"82":[2,74],"83":[2,74],"86":[2,74],"88":[2,74],"94":[2,74],"96":[2,74],"100":[2,74],"108":[2,74],"110":[2,74],"111":[2,74],"112":[2,74],"116":[2,74],"122":[2,74],"123":[2,74],"124":[2,74],"133":[2,74],"134":[2,74],"135":[2,74],"136":[2,74],"137":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74]},{"4":[2,94],"28":185,"29":[2,94],"31":183,"32":[1,85],"33":184,"34":[1,83],"35":[1,84],"47":182,"50":[1,52],"59":[2,94],"85":181,"86":[2,94]},{"1":[2,33],"4":[2,33],"29":[2,33],"30":[2,33],"48":[2,33],"51":[2,33],"59":[2,33],"63":[2,33],"74":[2,33],"75":[2,33],"76":[2,33],"77":[2,33],"80":[2,33],"81":[2,33],"82":[2,33],"83":[2,33],"86":[2,33],"94":[2,33],"96":[2,33],"100":[2,33],"108":[2,33],"110":[2,33],"111":[2,33],"112":[2,33],"116":[2,33],"122":[2,33],"123":[2,33],"124":[2,33],"133":[2,33],"134":[2,33],"135":[2,33],"136":[2,33],"137":[2,33],"138":[2,33],"139":[2,33],"140":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33]},{"1":[2,34],"4":[2,34],"29":[2,34],"30":[2,34],"48":[2,34],"51":[2,34],"59":[2,34],"63":[2,34],"74":[2,34],"75":[2,34],"76":[2,34],"77":[2,34],"80":[2,34],"81":[2,34],"82":[2,34],"83":[2,34],"86":[2,34],"94":[2,34],"96":[2,34],"100":[2,34],"108":[2,34],"110":[2,34],"111":[2,34],"112":[2,34],"116":[2,34],"122":[2,34],"123":[2,34],"124":[2,34],"133":[2,34],"134":[2,34],"135":[2,34],"136":[2,34],"137":[2,34],"138":[2,34],"139":[2,34],"140":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34]},{"1":[2,32],"4":[2,32],"29":[2,32],"30":[2,32],"46":[2,32],"48":[2,32],"51":[2,32],"59":[2,32],"63":[2,32],"74":[2,32],"75":[2,32],"76":[2,32],"77":[2,32],"80":[2,32],"81":[2,32],"82":[2,32],"83":[2,32],"86":[2,32],"88":[2,32],"94":[2,32],"96":[2,32],"100":[2,32],"108":[2,32],"110":[2,32],"111":[2,32],"112":[2,32],"116":[2,32],"122":[2,32],"123":[2,32],"124":[2,32],"133":[2,32],"134":[2,32],"135":[2,32],"136":[2,32],"137":[2,32],"138":[2,32],"139":[2,32],"140":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32]},{"1":[2,31],"4":[2,31],"29":[2,31],"30":[2,31],"51":[2,31],"59":[2,31],"63":[2,31],"81":[2,31],"86":[2,31],"96":[2,31],"100":[2,31],"104":[2,31],"105":[2,31],"108":[2,31],"110":[2,31],"111":[2,31],"112":[2,31],"116":[2,31],"122":[2,31],"123":[2,31],"124":[2,31],"127":[2,31],"129":[2,31],"133":[2,31],"134":[2,31],"135":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31],"140":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"147":[2,31]},{"1":[2,7],"4":[2,7],"7":186,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,7],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,4]},{"4":[1,87],"30":[1,187]},{"1":[2,30],"4":[2,30],"29":[2,30],"30":[2,30],"51":[2,30],"59":[2,30],"63":[2,30],"81":[2,30],"86":[2,30],"96":[2,30],"100":[2,30],"104":[2,30],"105":[2,30],"108":[2,30],"110":[2,30],"111":[2,30],"112":[2,30],"116":[2,30],"122":[2,30],"123":[2,30],"124":[2,30],"127":[2,30],"129":[2,30],"133":[2,30],"134":[2,30],"135":[2,30],"136":[2,30],"137":[2,30],"138":[2,30],"139":[2,30],"140":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"147":[2,30]},{"1":[2,192],"4":[2,192],"29":[2,192],"30":[2,192],"51":[2,192],"59":[2,192],"63":[2,192],"81":[2,192],"86":[2,192],"96":[2,192],"100":[2,192],"108":[2,192],"110":[2,192],"111":[2,192],"112":[2,192],"116":[2,192],"122":[2,192],"123":[2,192],"124":[2,192],"133":[2,192],"134":[2,192],"135":[2,192],"136":[2,192],"137":[2,192],"138":[2,192],"139":[2,192],"140":[2,192],"141":[2,192],"142":[2,192],"143":[2,192],"144":[2,192],"145":[2,192],"147":[2,192]},{"1":[2,193],"4":[2,193],"29":[2,193],"30":[2,193],"51":[2,193],"59":[2,193],"63":[2,193],"81":[2,193],"86":[2,193],"96":[2,193],"100":[2,193],"108":[2,193],"110":[2,193],"111":[2,193],"112":[2,193],"116":[2,193],"122":[2,193],"123":[2,193],"124":[2,193],"133":[2,193],"134":[2,193],"135":[2,193],"136":[2,193],"137":[2,193],"138":[2,193],"139":[2,193],"140":[2,193],"141":[2,193],"142":[2,193],"143":[2,193],"144":[2,193],"145":[2,193],"147":[2,193]},{"8":188,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":189,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":190,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":191,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":192,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":193,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":194,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":195,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":196,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":197,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":198,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"122":[1,199],"123":[1,200]},{"8":201,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":202,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,147],"4":[2,147],"29":[2,147],"30":[2,147],"51":[2,147],"59":[2,147],"63":[2,147],"81":[2,147],"86":[2,147],"96":[2,147],"100":[2,147],"108":[2,147],"110":[2,147],"111":[2,147],"112":[2,147],"116":[2,147],"122":[2,147],"123":[2,147],"124":[2,147],"133":[2,147],"134":[2,147],"135":[2,147],"136":[2,147],"137":[2,147],"138":[2,147],"139":[2,147],"140":[2,147],"141":[2,147],"142":[2,147],"143":[2,147],"144":[2,147],"145":[2,147],"147":[2,147]},{"1":[2,152],"4":[2,152],"29":[2,152],"30":[2,152],"51":[2,152],"59":[2,152],"63":[2,152],"81":[2,152],"86":[2,152],"96":[2,152],"100":[2,152],"108":[2,152],"110":[2,152],"111":[2,152],"112":[2,152],"116":[2,152],"122":[2,152],"123":[2,152],"124":[2,152],"133":[2,152],"134":[2,152],"135":[2,152],"136":[2,152],"137":[2,152],"138":[2,152],"139":[2,152],"140":[2,152],"141":[2,152],"142":[2,152],"143":[2,152],"144":[2,152],"145":[2,152],"147":[2,152]},{"63":[1,203]},{"1":[2,56],"4":[2,56],"29":[2,56],"30":[2,56],"51":[2,56],"59":[2,56],"63":[2,56],"81":[2,56],"86":[2,56],"96":[2,56],"100":[2,56],"108":[2,56],"110":[2,56],"111":[2,56],"112":[2,56],"116":[2,56],"122":[2,56],"123":[2,56],"124":[2,56],"133":[2,56],"134":[2,56],"135":[2,56],"136":[2,56],"137":[2,56],"138":[2,56],"139":[2,56],"140":[2,56],"141":[2,56],"142":[2,56],"143":[2,56],"144":[2,56],"145":[2,56],"147":[2,56]},{"8":204,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":205,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,146],"4":[2,146],"29":[2,146],"30":[2,146],"51":[2,146],"59":[2,146],"63":[2,146],"81":[2,146],"86":[2,146],"96":[2,146],"100":[2,146],"108":[2,146],"110":[2,146],"111":[2,146],"112":[2,146],"116":[2,146],"122":[2,146],"123":[2,146],"124":[2,146],"133":[2,146],"134":[2,146],"135":[2,146],"136":[2,146],"137":[2,146],"138":[2,146],"139":[2,146],"140":[2,146],"141":[2,146],"142":[2,146],"143":[2,146],"144":[2,146],"145":[2,146],"147":[2,146]},{"1":[2,151],"4":[2,151],"29":[2,151],"30":[2,151],"51":[2,151],"59":[2,151],"63":[2,151],"81":[2,151],"86":[2,151],"96":[2,151],"100":[2,151],"108":[2,151],"110":[2,151],"111":[2,151],"112":[2,151],"116":[2,151],"122":[2,151],"123":[2,151],"124":[2,151],"133":[2,151],"134":[2,151],"135":[2,151],"136":[2,151],"137":[2,151],"138":[2,151],"139":[2,151],"140":[2,151],"141":[2,151],"142":[2,151],"143":[2,151],"144":[2,151],"145":[2,151],"147":[2,151]},{"8":206,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,207],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,115],"4":[2,115],"29":[2,115],"30":[2,115],"51":[2,115],"59":[2,115],"63":[2,115],"74":[2,115],"75":[2,115],"76":[2,115],"77":[2,115],"80":[2,115],"81":[2,115],"82":[2,115],"83":[2,115],"86":[2,115],"94":[2,115],"96":[2,115],"100":[2,115],"108":[2,115],"110":[2,115],"111":[2,115],"112":[2,115],"116":[2,115],"122":[2,115],"123":[2,115],"124":[2,115],"133":[2,115],"134":[2,115],"135":[2,115],"136":[2,115],"137":[2,115],"138":[2,115],"139":[2,115],"140":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"147":[2,115]},{"1":[2,72],"4":[2,72],"29":[2,72],"30":[2,72],"46":[2,72],"51":[2,72],"59":[2,72],"63":[2,72],"74":[2,72],"75":[2,72],"76":[2,72],"77":[2,72],"80":[2,72],"81":[2,72],"82":[2,72],"83":[2,72],"86":[2,72],"88":[2,72],"94":[2,72],"96":[2,72],"100":[2,72],"108":[2,72],"110":[2,72],"111":[2,72],"112":[2,72],"116":[2,72],"122":[2,72],"123":[2,72],"124":[2,72],"133":[2,72],"134":[2,72],"135":[2,72],"136":[2,72],"137":[2,72],"138":[2,72],"139":[2,72],"140":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72]},{"4":[2,128],"8":209,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,128],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"59":[2,128],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"95":208,"96":[2,128],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"31":210,"32":[1,85]},{"31":211,"32":[1,85]},{"1":[2,86],"4":[2,86],"29":[2,86],"30":[2,86],"46":[2,86],"51":[2,86],"59":[2,86],"63":[2,86],"74":[2,86],"75":[2,86],"76":[2,86],"77":[2,86],"80":[2,86],"81":[2,86],"82":[2,86],"83":[2,86],"86":[2,86],"88":[2,86],"94":[2,86],"96":[2,86],"100":[2,86],"108":[2,86],"110":[2,86],"111":[2,86],"112":[2,86],"116":[2,86],"122":[2,86],"123":[2,86],"124":[2,86],"133":[2,86],"134":[2,86],"135":[2,86],"136":[2,86],"137":[2,86],"138":[2,86],"139":[2,86],"140":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86]},{"31":212,"32":[1,85]},{"1":[2,88],"4":[2,88],"29":[2,88],"30":[2,88],"46":[2,88],"51":[2,88],"59":[2,88],"63":[2,88],"74":[2,88],"75":[2,88],"76":[2,88],"77":[2,88],"80":[2,88],"81":[2,88],"82":[2,88],"83":[2,88],"86":[2,88],"88":[2,88],"94":[2,88],"96":[2,88],"100":[2,88],"108":[2,88],"110":[2,88],"111":[2,88],"112":[2,88],"116":[2,88],"122":[2,88],"123":[2,88],"124":[2,88],"133":[2,88],"134":[2,88],"135":[2,88],"136":[2,88],"137":[2,88],"138":[2,88],"139":[2,88],"140":[2,88],"141":[2,88],"142":[2,88],"143":[2,88],"144":[2,88],"145":[2,88],"146":[2,88],"147":[2,88]},{"1":[2,89],"4":[2,89],"29":[2,89],"30":[2,89],"46":[2,89],"51":[2,89],"59":[2,89],"63":[2,89],"74":[2,89],"75":[2,89],"76":[2,89],"77":[2,89],"80":[2,89],"81":[2,89],"82":[2,89],"83":[2,89],"86":[2,89],"88":[2,89],"94":[2,89],"96":[2,89],"100":[2,89],"108":[2,89],"110":[2,89],"111":[2,89],"112":[2,89],"116":[2,89],"122":[2,89],"123":[2,89],"124":[2,89],"133":[2,89],"134":[2,89],"135":[2,89],"136":[2,89],"137":[2,89],"138":[2,89],"139":[2,89],"140":[2,89],"141":[2,89],"142":[2,89],"143":[2,89],"144":[2,89],"145":[2,89],"146":[2,89],"147":[2,89]},{"8":213,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"78":214,"80":[1,215],"82":[1,126],"83":[1,127]},{"78":216,"80":[1,215],"82":[1,126],"83":[1,127]},{"8":217,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,218],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,116],"4":[2,116],"29":[2,116],"30":[2,116],"51":[2,116],"59":[2,116],"63":[2,116],"74":[2,116],"75":[2,116],"76":[2,116],"77":[2,116],"80":[2,116],"81":[2,116],"82":[2,116],"83":[2,116],"86":[2,116],"94":[2,116],"96":[2,116],"100":[2,116],"108":[2,116],"110":[2,116],"111":[2,116],"112":[2,116],"116":[2,116],"122":[2,116],"123":[2,116],"124":[2,116],"133":[2,116],"134":[2,116],"135":[2,116],"136":[2,116],"137":[2,116],"138":[2,116],"139":[2,116],"140":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"147":[2,116]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"46":[2,73],"51":[2,73],"59":[2,73],"63":[2,73],"74":[2,73],"75":[2,73],"76":[2,73],"77":[2,73],"80":[2,73],"81":[2,73],"82":[2,73],"83":[2,73],"86":[2,73],"88":[2,73],"94":[2,73],"96":[2,73],"100":[2,73],"108":[2,73],"110":[2,73],"111":[2,73],"112":[2,73],"116":[2,73],"122":[2,73],"123":[2,73],"124":[2,73],"133":[2,73],"134":[2,73],"135":[2,73],"136":[2,73],"137":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73]},{"1":[2,112],"4":[2,112],"29":[2,112],"30":[2,112],"51":[2,112],"59":[2,112],"63":[2,112],"65":130,"74":[1,119],"75":[1,120],"76":[1,121],"77":[1,122],"78":123,"79":124,"80":[1,125],"81":[2,112],"82":[1,126],"83":[1,127],"86":[2,112],"93":129,"94":[1,118],"96":[2,112],"100":[2,112],"108":[2,112],"110":[2,112],"111":[2,112],"112":[2,112],"116":[2,112],"122":[2,112],"123":[2,112],"124":[2,112],"133":[2,112],"134":[2,112],"135":[2,112],"136":[2,112],"137":[2,112],"138":[2,112],"139":[2,112],"140":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"147":[2,112]},{"1":[2,113],"4":[2,113],"29":[2,113],"30":[2,113],"51":[2,113],"59":[2,113],"63":[2,113],"65":117,"74":[1,119],"75":[1,120],"76":[1,121],"77":[1,122],"78":123,"79":124,"80":[1,125],"81":[2,113],"82":[1,126],"83":[1,127],"86":[2,113],"93":116,"94":[1,118],"96":[2,113],"100":[2,113],"108":[2,113],"110":[2,113],"111":[2,113],"112":[2,113],"116":[2,113],"122":[2,113],"123":[2,113],"124":[2,113],"133":[2,113],"134":[2,113],"135":[2,113],"136":[2,113],"137":[2,113],"138":[2,113],"139":[2,113],"140":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"147":[2,113]},{"1":[2,78],"4":[2,78],"29":[2,78],"30":[2,78],"51":[2,78],"59":[2,78],"63":[2,78],"74":[2,78],"75":[2,78],"76":[2,78],"77":[2,78],"80":[2,78],"81":[2,78],"82":[2,78],"83":[2,78],"86":[2,78],"94":[2,78],"96":[2,78],"100":[2,78],"108":[2,78],"110":[2,78],"111":[2,78],"112":[2,78],"116":[2,78],"122":[2,78],"123":[2,78],"124":[2,78],"133":[2,78],"134":[2,78],"135":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"147":[2,78]},{"1":[2,75],"4":[2,75],"29":[2,75],"30":[2,75],"51":[2,75],"59":[2,75],"63":[2,75],"74":[2,75],"75":[2,75],"76":[2,75],"77":[2,75],"80":[2,75],"81":[2,75],"82":[2,75],"83":[2,75],"86":[2,75],"94":[2,75],"96":[2,75],"100":[2,75],"108":[2,75],"110":[2,75],"111":[2,75],"112":[2,75],"116":[2,75],"122":[2,75],"123":[2,75],"124":[2,75],"133":[2,75],"134":[2,75],"135":[2,75],"136":[2,75],"137":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"147":[2,75]},{"54":[1,219],"59":[1,220]},{"54":[2,64],"59":[2,64]},{"54":[2,66],"59":[2,66],"63":[1,221]},{"61":[1,222]},{"1":[2,58],"4":[2,58],"29":[2,58],"30":[2,58],"51":[2,58],"59":[2,58],"63":[2,58],"81":[2,58],"86":[2,58],"96":[2,58],"100":[2,58],"108":[2,58],"110":[2,58],"111":[2,58],"112":[2,58],"116":[2,58],"122":[2,58],"123":[2,58],"124":[2,58],"133":[2,58],"134":[2,58],"135":[2,58],"136":[2,58],"137":[2,58],"138":[2,58],"139":[2,58],"140":[2,58],"141":[2,58],"142":[2,58],"143":[2,58],"144":[2,58],"145":[2,58],"147":[2,58]},{"28":86,"50":[1,52]},{"1":[2,187],"4":[2,187],"29":[2,187],"30":[2,187],"51":[1,110],"59":[2,187],"63":[2,187],"81":[2,187],"86":[2,187],"96":[2,187],"100":[2,187],"108":[2,187],"109":107,"110":[2,187],"111":[2,187],"112":[2,187],"115":108,"116":[2,187],"117":79,"122":[2,187],"123":[2,187],"124":[2,187],"133":[2,187],"134":[2,187],"135":[1,104],"136":[2,187],"137":[2,187],"138":[1,91],"139":[1,92],"140":[2,187],"141":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"147":[2,187]},{"109":113,"110":[1,75],"112":[1,76],"115":114,"116":[1,78],"117":79,"133":[1,111],"134":[1,112]},{"1":[2,188],"4":[2,188],"29":[2,188],"30":[2,188],"51":[1,110],"59":[2,188],"63":[2,188],"81":[2,188],"86":[2,188],"96":[2,188],"100":[2,188],"108":[2,188],"109":107,"110":[2,188],"111":[2,188],"112":[2,188],"115":108,"116":[2,188],"117":79,"122":[2,188],"123":[2,188],"124":[2,188],"133":[2,188],"134":[2,188],"135":[1,104],"136":[2,188],"137":[2,188],"138":[1,91],"139":[1,92],"140":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"147":[2,188]},{"1":[2,189],"4":[2,189],"29":[2,189],"30":[2,189],"51":[1,110],"59":[2,189],"63":[2,189],"81":[2,189],"86":[2,189],"96":[2,189],"100":[2,189],"108":[2,189],"109":107,"110":[2,189],"111":[2,189],"112":[2,189],"115":108,"116":[2,189],"117":79,"122":[2,189],"123":[2,189],"124":[2,189],"133":[2,189],"134":[2,189],"135":[1,104],"136":[2,189],"137":[2,189],"138":[1,91],"139":[1,92],"140":[2,189],"141":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"147":[2,189]},{"1":[2,190],"4":[2,190],"29":[2,190],"30":[2,190],"51":[1,110],"59":[2,190],"63":[2,190],"81":[2,190],"86":[2,190],"96":[2,190],"100":[2,190],"108":[2,190],"109":107,"110":[2,190],"111":[2,190],"112":[2,190],"115":108,"116":[2,190],"117":79,"122":[2,190],"123":[2,190],"124":[2,190],"133":[2,190],"134":[2,190],"135":[2,190],"136":[2,190],"137":[2,190],"140":[2,190],"141":[2,190],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"147":[2,190]},{"1":[2,191],"4":[2,191],"29":[2,191],"30":[2,191],"51":[1,110],"59":[2,191],"63":[2,191],"81":[2,191],"86":[2,191],"96":[2,191],"100":[2,191],"108":[2,191],"109":107,"110":[2,191],"111":[2,191],"112":[2,191],"115":108,"116":[2,191],"117":79,"122":[2,191],"123":[2,191],"124":[2,191],"133":[2,191],"134":[2,191],"135":[2,191],"136":[2,191],"137":[2,191],"140":[2,191],"141":[2,191],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"147":[2,191]},{"4":[1,140],"6":224,"29":[1,6],"131":[1,223]},{"103":225,"104":[1,226],"105":[1,227]},{"1":[2,145],"4":[2,145],"29":[2,145],"30":[2,145],"51":[2,145],"59":[2,145],"63":[2,145],"81":[2,145],"86":[2,145],"96":[2,145],"100":[2,145],"108":[2,145],"110":[2,145],"111":[2,145],"112":[2,145],"116":[2,145],"122":[2,145],"123":[2,145],"124":[2,145],"133":[2,145],"134":[2,145],"135":[2,145],"136":[2,145],"137":[2,145],"138":[2,145],"139":[2,145],"140":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"147":[2,145]},{"1":[2,153],"4":[2,153],"29":[2,153],"30":[2,153],"51":[2,153],"59":[2,153],"63":[2,153],"81":[2,153],"86":[2,153],"96":[2,153],"100":[2,153],"108":[2,153],"110":[2,153],"111":[2,153],"112":[2,153],"116":[2,153],"122":[2,153],"123":[2,153],"124":[2,153],"133":[2,153],"134":[2,153],"135":[2,153],"136":[2,153],"137":[2,153],"138":[2,153],"139":[2,153],"140":[2,153],"141":[2,153],"142":[2,153],"143":[2,153],"144":[2,153],"145":[2,153],"147":[2,153]},{"29":[1,228],"51":[1,110],"63":[1,109],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"126":229,"128":230,"129":[1,231]},{"14":232,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":133,"62":[1,69],"64":134,"66":157,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"98":[1,68],"99":[1,67],"107":[1,66]},{"1":[2,99],"4":[2,99],"29":[1,234],"30":[2,99],"51":[2,99],"59":[2,99],"63":[2,99],"74":[2,75],"75":[2,75],"76":[2,75],"77":[2,75],"80":[2,75],"81":[2,99],"82":[2,75],"83":[2,75],"86":[2,99],"88":[1,233],"94":[2,75],"96":[2,99],"100":[2,99],"108":[2,99],"110":[2,99],"111":[2,99],"112":[2,99],"116":[2,99],"122":[2,99],"123":[2,99],"124":[2,99],"133":[2,99],"134":[2,99],"135":[2,99],"136":[2,99],"137":[2,99],"138":[2,99],"139":[2,99],"140":[2,99],"141":[2,99],"142":[2,99],"143":[2,99],"144":[2,99],"145":[2,99],"147":[2,99]},{"4":[2,106],"28":185,"30":[2,106],"31":183,"32":[1,85],"33":184,"34":[1,83],"35":[1,84],"47":238,"50":[1,52],"62":[1,240],"67":239,"84":[1,237],"89":235,"90":236},{"65":117,"74":[1,119],"75":[1,120],"76":[1,121],"77":[1,122],"78":123,"79":124,"80":[1,125],"82":[1,126],"83":[1,127],"93":116,"94":[1,118]},{"65":130,"74":[1,119],"75":[1,120],"76":[1,121],"77":[1,122],"78":123,"79":124,"80":[1,125],"82":[1,126],"83":[1,127],"93":129,"94":[1,118]},{"1":[2,53],"4":[2,53],"30":[2,53],"51":[1,110],"63":[1,109],"108":[2,53],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[2,53],"134":[2,53],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,139],"4":[2,139],"30":[2,139],"51":[1,110],"63":[1,109],"108":[2,139],"109":107,"110":[2,139],"112":[2,139],"115":108,"116":[2,139],"117":79,"122":[1,102],"123":[1,103],"133":[2,139],"134":[2,139],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"108":[1,241]},{"4":[2,129],"29":[2,129],"51":[1,110],"59":[2,129],"63":[1,242],"100":[2,129],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"4":[2,61],"29":[2,61],"58":243,"59":[1,244],"100":[2,61]},{"1":[2,122],"4":[2,122],"29":[2,122],"30":[2,122],"46":[2,122],"48":[2,122],"51":[2,122],"59":[2,122],"63":[2,122],"74":[2,122],"75":[2,122],"76":[2,122],"77":[2,122],"80":[2,122],"81":[2,122],"82":[2,122],"83":[2,122],"86":[2,122],"88":[2,122],"94":[2,122],"96":[2,122],"100":[2,122],"108":[2,122],"110":[2,122],"111":[2,122],"112":[2,122],"116":[2,122],"122":[2,122],"123":[2,122],"124":[2,122],"133":[2,122],"134":[2,122],"135":[2,122],"136":[2,122],"137":[2,122],"138":[2,122],"139":[2,122],"140":[2,122],"141":[2,122],"142":[2,122],"143":[2,122],"144":[2,122],"145":[2,122],"146":[2,122],"147":[2,122]},{"1":[2,119],"4":[2,119],"29":[2,119],"30":[2,119],"51":[2,119],"59":[2,119],"63":[2,119],"81":[2,119],"86":[2,119],"96":[2,119],"100":[2,119],"108":[2,119],"110":[2,119],"111":[2,119],"112":[2,119],"116":[2,119],"122":[2,119],"123":[2,119],"124":[2,119],"133":[2,119],"134":[2,119],"135":[2,119],"136":[2,119],"137":[2,119],"138":[2,119],"139":[2,119],"140":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"147":[2,119]},{"4":[1,140],"6":245,"29":[1,6],"51":[1,110],"63":[1,109],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"4":[1,140],"6":246,"29":[1,6],"51":[1,110],"63":[1,109],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,141],"4":[2,141],"29":[2,141],"30":[2,141],"51":[1,110],"59":[2,141],"63":[1,109],"81":[2,141],"86":[2,141],"96":[2,141],"100":[2,141],"108":[2,141],"109":107,"110":[1,75],"111":[1,247],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"124":[2,141],"133":[2,141],"134":[2,141],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,143],"4":[2,143],"29":[2,143],"30":[2,143],"51":[1,110],"59":[2,143],"63":[1,109],"81":[2,143],"86":[2,143],"96":[2,143],"100":[2,143],"108":[2,143],"109":107,"110":[1,75],"111":[1,248],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"124":[2,143],"133":[2,143],"134":[2,143],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,149],"4":[2,149],"29":[2,149],"30":[2,149],"51":[2,149],"59":[2,149],"63":[2,149],"81":[2,149],"86":[2,149],"96":[2,149],"100":[2,149],"108":[2,149],"110":[2,149],"111":[2,149],"112":[2,149],"116":[2,149],"122":[2,149],"123":[2,149],"124":[2,149],"133":[2,149],"134":[2,149],"135":[2,149],"136":[2,149],"137":[2,149],"138":[2,149],"139":[2,149],"140":[2,149],"141":[2,149],"142":[2,149],"143":[2,149],"144":[2,149],"145":[2,149],"147":[2,149]},{"1":[2,150],"4":[2,150],"29":[2,150],"30":[2,150],"51":[1,110],"59":[2,150],"63":[1,109],"81":[2,150],"86":[2,150],"96":[2,150],"100":[2,150],"108":[2,150],"109":107,"110":[1,75],"111":[2,150],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"124":[2,150],"133":[2,150],"134":[2,150],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,154],"4":[2,154],"29":[2,154],"30":[2,154],"51":[2,154],"59":[2,154],"63":[2,154],"81":[2,154],"86":[2,154],"96":[2,154],"100":[2,154],"108":[2,154],"110":[2,154],"111":[2,154],"112":[2,154],"116":[2,154],"122":[2,154],"123":[2,154],"124":[2,154],"133":[2,154],"134":[2,154],"135":[2,154],"136":[2,154],"137":[2,154],"138":[2,154],"139":[2,154],"140":[2,154],"141":[2,154],"142":[2,154],"143":[2,154],"144":[2,154],"145":[2,154],"147":[2,154]},{"122":[2,156],"123":[2,156]},{"31":175,"32":[1,85],"68":176,"69":177,"84":[1,82],"99":[1,250],"119":249,"121":174},{"59":[1,251],"122":[2,161],"123":[2,161]},{"59":[2,158],"122":[2,158],"123":[2,158]},{"59":[2,159],"122":[2,159],"123":[2,159]},{"59":[2,160],"122":[2,160],"123":[2,160]},{"1":[2,155],"4":[2,155],"29":[2,155],"30":[2,155],"51":[2,155],"59":[2,155],"63":[2,155],"81":[2,155],"86":[2,155],"96":[2,155],"100":[2,155],"108":[2,155],"110":[2,155],"111":[2,155],"112":[2,155],"116":[2,155],"122":[2,155],"123":[2,155],"124":[2,155],"133":[2,155],"134":[2,155],"135":[2,155],"136":[2,155],"137":[2,155],"138":[2,155],"139":[2,155],"140":[2,155],"141":[2,155],"142":[2,155],"143":[2,155],"144":[2,155],"145":[2,155],"147":[2,155]},{"8":252,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":253,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"4":[2,61],"29":[2,61],"58":254,"59":[1,255],"86":[2,61]},{"4":[2,95],"29":[2,95],"30":[2,95],"59":[2,95],"86":[2,95]},{"4":[2,46],"29":[2,46],"30":[2,46],"48":[1,256],"59":[2,46],"86":[2,46]},{"4":[2,47],"29":[2,47],"30":[2,47],"48":[1,257],"59":[2,47],"86":[2,47]},{"4":[2,52],"29":[2,52],"30":[2,52],"59":[2,52],"86":[2,52]},{"1":[2,6],"4":[2,6],"30":[2,6]},{"1":[2,29],"4":[2,29],"29":[2,29],"30":[2,29],"51":[2,29],"59":[2,29],"63":[2,29],"81":[2,29],"86":[2,29],"96":[2,29],"100":[2,29],"104":[2,29],"105":[2,29],"108":[2,29],"110":[2,29],"111":[2,29],"112":[2,29],"116":[2,29],"122":[2,29],"123":[2,29],"124":[2,29],"127":[2,29],"129":[2,29],"133":[2,29],"134":[2,29],"135":[2,29],"136":[2,29],"137":[2,29],"138":[2,29],"139":[2,29],"140":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"147":[2,29]},{"1":[2,194],"4":[2,194],"29":[2,194],"30":[2,194],"51":[1,110],"59":[2,194],"63":[2,194],"81":[2,194],"86":[2,194],"96":[2,194],"100":[2,194],"108":[2,194],"109":107,"110":[2,194],"111":[2,194],"112":[2,194],"115":108,"116":[2,194],"117":79,"122":[2,194],"123":[2,194],"124":[2,194],"133":[2,194],"134":[2,194],"135":[1,104],"136":[2,194],"137":[2,194],"138":[1,91],"139":[1,92],"140":[2,194],"141":[2,194],"142":[1,97],"143":[2,194],"144":[2,194],"145":[2,194],"147":[2,194]},{"1":[2,195],"4":[2,195],"29":[2,195],"30":[2,195],"51":[1,110],"59":[2,195],"63":[2,195],"81":[2,195],"86":[2,195],"96":[2,195],"100":[2,195],"108":[2,195],"109":107,"110":[2,195],"111":[2,195],"112":[2,195],"115":108,"116":[2,195],"117":79,"122":[2,195],"123":[2,195],"124":[2,195],"133":[2,195],"134":[2,195],"135":[1,104],"136":[2,195],"137":[2,195],"138":[1,91],"139":[1,92],"140":[2,195],"141":[2,195],"142":[1,97],"143":[2,195],"144":[2,195],"145":[2,195],"147":[2,195]},{"1":[2,196],"4":[2,196],"29":[2,196],"30":[2,196],"51":[1,110],"59":[2,196],"63":[2,196],"81":[2,196],"86":[2,196],"96":[2,196],"100":[2,196],"108":[2,196],"109":107,"110":[2,196],"111":[2,196],"112":[2,196],"115":108,"116":[2,196],"117":79,"122":[2,196],"123":[2,196],"124":[2,196],"133":[2,196],"134":[2,196],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[2,196],"141":[2,196],"142":[1,97],"143":[1,98],"144":[1,99],"145":[2,196],"147":[1,101]},{"1":[2,197],"4":[2,197],"29":[2,197],"30":[2,197],"51":[1,110],"59":[2,197],"63":[2,197],"81":[2,197],"86":[2,197],"96":[2,197],"100":[2,197],"108":[2,197],"109":107,"110":[2,197],"111":[2,197],"112":[2,197],"115":108,"116":[2,197],"117":79,"122":[2,197],"123":[2,197],"124":[2,197],"133":[2,197],"134":[2,197],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[2,197],"141":[2,197],"142":[1,97],"143":[1,98],"144":[1,99],"145":[2,197],"147":[1,101]},{"1":[2,198],"4":[2,198],"29":[2,198],"30":[2,198],"51":[1,110],"59":[2,198],"63":[2,198],"81":[2,198],"86":[2,198],"96":[2,198],"100":[2,198],"108":[2,198],"109":107,"110":[2,198],"111":[2,198],"112":[2,198],"115":108,"116":[2,198],"117":79,"122":[2,198],"123":[2,198],"124":[2,198],"133":[2,198],"134":[2,198],"135":[1,104],"136":[2,198],"137":[2,198],"138":[1,91],"139":[1,92],"140":[2,198],"141":[2,198],"142":[2,198],"143":[2,198],"144":[2,198],"145":[2,198],"147":[2,198]},{"1":[2,199],"4":[2,199],"29":[2,199],"30":[2,199],"51":[1,110],"59":[2,199],"63":[2,199],"81":[2,199],"86":[2,199],"96":[2,199],"100":[2,199],"108":[2,199],"109":107,"110":[2,199],"111":[2,199],"112":[2,199],"115":108,"116":[2,199],"117":79,"122":[2,199],"123":[2,199],"124":[2,199],"133":[2,199],"134":[2,199],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[2,199],"141":[2,199],"142":[1,97],"143":[2,199],"144":[2,199],"145":[2,199],"147":[2,199]},{"1":[2,200],"4":[2,200],"29":[2,200],"30":[2,200],"51":[1,110],"59":[2,200],"63":[2,200],"81":[2,200],"86":[2,200],"96":[2,200],"100":[2,200],"108":[2,200],"109":107,"110":[2,200],"111":[2,200],"112":[2,200],"115":108,"116":[2,200],"117":79,"122":[2,200],"123":[2,200],"124":[2,200],"133":[2,200],"134":[2,200],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[2,200],"141":[2,200],"142":[1,97],"143":[1,98],"144":[2,200],"145":[2,200],"147":[2,200]},{"1":[2,201],"4":[2,201],"29":[2,201],"30":[2,201],"51":[1,110],"59":[2,201],"63":[2,201],"81":[2,201],"86":[2,201],"96":[2,201],"100":[2,201],"108":[2,201],"109":107,"110":[2,201],"111":[2,201],"112":[2,201],"115":108,"116":[2,201],"117":79,"122":[2,201],"123":[2,201],"124":[2,201],"133":[2,201],"134":[2,201],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[2,201],"147":[1,101]},{"1":[2,204],"4":[2,204],"29":[2,204],"30":[2,204],"51":[1,110],"59":[2,204],"63":[2,204],"81":[2,204],"86":[2,204],"96":[2,204],"100":[2,204],"108":[2,204],"109":107,"110":[2,204],"111":[2,204],"112":[2,204],"115":108,"116":[2,204],"117":79,"122":[2,204],"123":[2,204],"124":[2,204],"133":[2,204],"134":[2,204],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[2,204],"141":[2,204],"142":[1,97],"143":[1,98],"144":[1,99],"145":[2,204],"147":[2,204]},{"1":[2,205],"4":[2,205],"29":[2,205],"30":[2,205],"51":[1,110],"59":[2,205],"63":[1,109],"81":[2,205],"86":[2,205],"96":[2,205],"100":[2,205],"108":[2,205],"109":107,"110":[2,205],"111":[2,205],"112":[2,205],"115":108,"116":[2,205],"117":79,"122":[1,102],"123":[1,103],"124":[2,205],"133":[2,205],"134":[2,205],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,206],"4":[2,206],"29":[2,206],"30":[2,206],"51":[1,110],"59":[2,206],"63":[1,109],"81":[2,206],"86":[2,206],"96":[2,206],"100":[2,206],"108":[2,206],"109":107,"110":[2,206],"111":[2,206],"112":[2,206],"115":108,"116":[2,206],"117":79,"122":[1,102],"123":[1,103],"124":[2,206],"133":[2,206],"134":[2,206],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"8":258,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":259,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,184],"4":[2,184],"29":[2,184],"30":[2,184],"51":[1,110],"59":[2,184],"63":[1,109],"81":[2,184],"86":[2,184],"96":[2,184],"100":[2,184],"108":[2,184],"109":107,"110":[1,75],"111":[2,184],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"124":[2,184],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,186],"4":[2,186],"29":[2,186],"30":[2,186],"51":[1,110],"59":[2,186],"63":[1,109],"81":[2,186],"86":[2,186],"96":[2,186],"100":[2,186],"108":[2,186],"109":107,"110":[1,75],"111":[2,186],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"124":[2,186],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"63":[1,260]},{"1":[2,183],"4":[2,183],"29":[2,183],"30":[2,183],"51":[1,110],"59":[2,183],"63":[1,109],"81":[2,183],"86":[2,183],"96":[2,183],"100":[2,183],"108":[2,183],"109":107,"110":[1,75],"111":[2,183],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"124":[2,183],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,185],"4":[2,185],"29":[2,185],"30":[2,185],"51":[1,110],"59":[2,185],"63":[1,109],"81":[2,185],"86":[2,185],"96":[2,185],"100":[2,185],"108":[2,185],"109":107,"110":[1,75],"111":[2,185],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"124":[2,185],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,202],"4":[2,202],"29":[2,202],"30":[2,202],"51":[1,110],"59":[2,202],"63":[2,202],"81":[2,202],"86":[2,202],"96":[2,202],"100":[2,202],"108":[2,202],"109":107,"110":[2,202],"111":[2,202],"112":[2,202],"115":108,"116":[2,202],"117":79,"122":[2,202],"123":[2,202],"124":[2,202],"133":[2,202],"134":[2,202],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"8":261,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"4":[2,61],"29":[2,61],"58":262,"59":[1,244],"96":[2,61]},{"4":[2,129],"29":[2,129],"30":[2,129],"51":[1,110],"59":[2,129],"63":[1,109],"96":[2,129],"100":[2,129],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,84],"4":[2,84],"29":[2,84],"30":[2,84],"46":[2,84],"51":[2,84],"59":[2,84],"63":[2,84],"74":[2,84],"75":[2,84],"76":[2,84],"77":[2,84],"80":[2,84],"81":[2,84],"82":[2,84],"83":[2,84],"86":[2,84],"88":[2,84],"94":[2,84],"96":[2,84],"100":[2,84],"108":[2,84],"110":[2,84],"111":[2,84],"112":[2,84],"116":[2,84],"122":[2,84],"123":[2,84],"124":[2,84],"133":[2,84],"134":[2,84],"135":[2,84],"136":[2,84],"137":[2,84],"138":[2,84],"139":[2,84],"140":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84]},{"1":[2,85],"4":[2,85],"29":[2,85],"30":[2,85],"46":[2,85],"51":[2,85],"59":[2,85],"63":[2,85],"74":[2,85],"75":[2,85],"76":[2,85],"77":[2,85],"80":[2,85],"81":[2,85],"82":[2,85],"83":[2,85],"86":[2,85],"88":[2,85],"94":[2,85],"96":[2,85],"100":[2,85],"108":[2,85],"110":[2,85],"111":[2,85],"112":[2,85],"116":[2,85],"122":[2,85],"123":[2,85],"124":[2,85],"133":[2,85],"134":[2,85],"135":[2,85],"136":[2,85],"137":[2,85],"138":[2,85],"139":[2,85],"140":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85]},{"1":[2,87],"4":[2,87],"29":[2,87],"30":[2,87],"46":[2,87],"51":[2,87],"59":[2,87],"63":[2,87],"74":[2,87],"75":[2,87],"76":[2,87],"77":[2,87],"80":[2,87],"81":[2,87],"82":[2,87],"83":[2,87],"86":[2,87],"88":[2,87],"94":[2,87],"96":[2,87],"100":[2,87],"108":[2,87],"110":[2,87],"111":[2,87],"112":[2,87],"116":[2,87],"122":[2,87],"123":[2,87],"124":[2,87],"133":[2,87],"134":[2,87],"135":[2,87],"136":[2,87],"137":[2,87],"138":[2,87],"139":[2,87],"140":[2,87],"141":[2,87],"142":[2,87],"143":[2,87],"144":[2,87],"145":[2,87],"146":[2,87],"147":[2,87]},{"51":[1,110],"63":[1,264],"81":[1,263],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,91],"4":[2,91],"29":[2,91],"30":[2,91],"46":[2,91],"51":[2,91],"59":[2,91],"63":[2,91],"74":[2,91],"75":[2,91],"76":[2,91],"77":[2,91],"80":[2,91],"81":[2,91],"82":[2,91],"83":[2,91],"86":[2,91],"88":[2,91],"94":[2,91],"96":[2,91],"100":[2,91],"108":[2,91],"110":[2,91],"111":[2,91],"112":[2,91],"116":[2,91],"122":[2,91],"123":[2,91],"124":[2,91],"133":[2,91],"134":[2,91],"135":[2,91],"136":[2,91],"137":[2,91],"138":[2,91],"139":[2,91],"140":[2,91],"141":[2,91],"142":[2,91],"143":[2,91],"144":[2,91],"145":[2,91],"146":[2,91],"147":[2,91]},{"8":265,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,92],"4":[2,92],"29":[2,92],"30":[2,92],"46":[2,92],"51":[2,92],"59":[2,92],"63":[2,92],"74":[2,92],"75":[2,92],"76":[2,92],"77":[2,92],"80":[2,92],"81":[2,92],"82":[2,92],"83":[2,92],"86":[2,92],"88":[2,92],"94":[2,92],"96":[2,92],"100":[2,92],"108":[2,92],"110":[2,92],"111":[2,92],"112":[2,92],"116":[2,92],"122":[2,92],"123":[2,92],"124":[2,92],"133":[2,92],"134":[2,92],"135":[2,92],"136":[2,92],"137":[2,92],"138":[2,92],"139":[2,92],"140":[2,92],"141":[2,92],"142":[2,92],"143":[2,92],"144":[2,92],"145":[2,92],"146":[2,92],"147":[2,92]},{"1":[2,44],"4":[2,44],"29":[2,44],"30":[2,44],"51":[1,110],"59":[2,44],"63":[1,109],"81":[2,44],"86":[2,44],"96":[2,44],"100":[2,44],"108":[2,44],"109":107,"110":[1,75],"111":[2,44],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"124":[2,44],"133":[2,44],"134":[2,44],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"8":266,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"55":267,"56":[1,71],"57":[1,72]},{"60":268,"61":[1,137],"62":[1,138]},{"63":[1,269]},{"54":[2,67],"59":[2,67],"63":[1,270]},{"8":271,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,181],"4":[2,181],"29":[2,181],"30":[2,181],"51":[2,181],"59":[2,181],"63":[2,181],"81":[2,181],"86":[2,181],"96":[2,181],"100":[2,181],"108":[2,181],"110":[2,181],"111":[2,181],"112":[2,181],"116":[2,181],"122":[2,181],"123":[2,181],"124":[2,181],"127":[2,181],"133":[2,181],"134":[2,181],"135":[2,181],"136":[2,181],"137":[2,181],"138":[2,181],"139":[2,181],"140":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"147":[2,181]},{"1":[2,135],"4":[2,135],"29":[2,135],"30":[2,135],"51":[2,135],"59":[2,135],"63":[2,135],"81":[2,135],"86":[2,135],"96":[2,135],"100":[2,135],"104":[1,272],"108":[2,135],"110":[2,135],"111":[2,135],"112":[2,135],"116":[2,135],"122":[2,135],"123":[2,135],"124":[2,135],"133":[2,135],"134":[2,135],"135":[2,135],"136":[2,135],"137":[2,135],"138":[2,135],"139":[2,135],"140":[2,135],"141":[2,135],"142":[2,135],"143":[2,135],"144":[2,135],"145":[2,135],"147":[2,135]},{"4":[1,140],"6":273,"29":[1,6]},{"31":274,"32":[1,85]},{"126":275,"128":230,"129":[1,231]},{"30":[1,276],"127":[1,277],"128":278,"129":[1,231]},{"30":[2,174],"127":[2,174],"129":[2,174]},{"8":280,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"101":279,"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,114],"4":[2,114],"29":[2,114],"30":[2,114],"51":[2,114],"59":[2,114],"63":[2,114],"65":117,"74":[1,119],"75":[1,120],"76":[1,121],"77":[1,122],"78":123,"79":124,"80":[1,125],"81":[2,114],"82":[1,126],"83":[1,127],"86":[2,114],"93":116,"94":[1,118],"96":[2,114],"100":[2,114],"108":[2,114],"110":[2,114],"111":[2,114],"112":[2,114],"116":[2,114],"122":[2,114],"123":[2,114],"124":[2,114],"133":[2,114],"134":[2,114],"135":[2,114],"136":[2,114],"137":[2,114],"138":[2,114],"139":[2,114],"140":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"147":[2,114]},{"14":281,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":133,"62":[1,69],"64":134,"66":157,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"98":[1,68],"99":[1,67],"107":[1,66]},{"4":[2,106],"28":185,"30":[2,106],"31":183,"32":[1,85],"33":184,"34":[1,83],"35":[1,84],"47":238,"50":[1,52],"62":[1,240],"67":239,"84":[1,237],"89":282,"90":236},{"4":[1,284],"30":[1,283]},{"4":[2,107],"30":[2,107],"86":[2,107]},{"4":[2,106],"28":185,"31":183,"32":[1,85],"33":184,"34":[1,83],"35":[1,84],"47":238,"50":[1,52],"62":[1,240],"67":239,"84":[1,237],"86":[2,106],"89":285,"90":236},{"4":[2,104],"30":[2,104],"86":[2,104]},{"48":[1,286]},{"31":163,"32":[1,85]},{"1":[2,140],"4":[2,140],"29":[2,140],"30":[2,140],"51":[2,140],"59":[2,140],"63":[2,140],"74":[2,140],"75":[2,140],"76":[2,140],"77":[2,140],"80":[2,140],"81":[2,140],"82":[2,140],"83":[2,140],"86":[2,140],"94":[2,140],"96":[2,140],"100":[2,140],"108":[2,140],"110":[2,140],"111":[2,140],"112":[2,140],"116":[2,140],"122":[2,140],"123":[2,140],"124":[2,140],"133":[2,140],"134":[2,140],"135":[2,140],"136":[2,140],"137":[2,140],"138":[2,140],"139":[2,140],"140":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140]},{"63":[1,287]},{"4":[1,289],"29":[1,290],"100":[1,288]},{"4":[2,62],"8":291,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,62],"30":[2,62],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"96":[2,62],"97":[1,70],"98":[1,68],"99":[1,67],"100":[2,62],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,178],"4":[2,178],"29":[2,178],"30":[2,178],"51":[2,178],"59":[2,178],"63":[2,178],"81":[2,178],"86":[2,178],"96":[2,178],"100":[2,178],"108":[2,178],"110":[2,178],"111":[2,178],"112":[2,178],"116":[2,178],"122":[2,178],"123":[2,178],"124":[2,178],"127":[2,178],"133":[2,178],"134":[2,178],"135":[2,178],"136":[2,178],"137":[2,178],"138":[2,178],"139":[2,178],"140":[2,178],"141":[2,178],"142":[2,178],"143":[2,178],"144":[2,178],"145":[2,178],"147":[2,178]},{"1":[2,179],"4":[2,179],"29":[2,179],"30":[2,179],"51":[2,179],"59":[2,179],"63":[2,179],"81":[2,179],"86":[2,179],"96":[2,179],"100":[2,179],"108":[2,179],"110":[2,179],"111":[2,179],"112":[2,179],"116":[2,179],"122":[2,179],"123":[2,179],"124":[2,179],"127":[2,179],"133":[2,179],"134":[2,179],"135":[2,179],"136":[2,179],"137":[2,179],"138":[2,179],"139":[2,179],"140":[2,179],"141":[2,179],"142":[2,179],"143":[2,179],"144":[2,179],"145":[2,179],"147":[2,179]},{"8":292,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":293,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"122":[2,157],"123":[2,157]},{"4":[2,128],"8":209,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,128],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"59":[2,128],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"95":162,"97":[1,70],"98":[1,68],"99":[1,67],"100":[2,128],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"31":175,"32":[1,85],"68":176,"69":177,"84":[1,82],"99":[1,250],"121":294},{"1":[2,163],"4":[2,163],"29":[2,163],"30":[2,163],"51":[1,110],"59":[2,163],"63":[1,109],"81":[2,163],"86":[2,163],"96":[2,163],"100":[2,163],"108":[2,163],"109":107,"110":[2,163],"111":[1,295],"112":[2,163],"115":108,"116":[2,163],"117":79,"122":[1,102],"123":[1,103],"124":[1,296],"133":[2,163],"134":[2,163],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,164],"4":[2,164],"29":[2,164],"30":[2,164],"51":[1,110],"59":[2,164],"63":[1,109],"81":[2,164],"86":[2,164],"96":[2,164],"100":[2,164],"108":[2,164],"109":107,"110":[2,164],"111":[1,297],"112":[2,164],"115":108,"116":[2,164],"117":79,"122":[1,102],"123":[1,103],"124":[2,164],"133":[2,164],"134":[2,164],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"4":[1,299],"29":[1,300],"86":[1,298]},{"4":[2,62],"28":185,"29":[2,62],"30":[2,62],"31":183,"32":[1,85],"33":184,"34":[1,83],"35":[1,84],"47":301,"50":[1,52],"86":[2,62]},{"8":302,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,303],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":304,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,305],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,207],"4":[2,207],"29":[2,207],"30":[2,207],"51":[1,110],"59":[2,207],"63":[2,207],"81":[2,207],"86":[2,207],"96":[2,207],"100":[2,207],"108":[2,207],"109":107,"110":[2,207],"111":[2,207],"112":[2,207],"115":108,"116":[2,207],"117":79,"122":[2,207],"123":[2,207],"124":[2,207],"133":[2,207],"134":[2,207],"135":[1,104],"136":[2,207],"137":[2,207],"138":[1,91],"139":[1,92],"140":[2,207],"141":[2,207],"142":[2,207],"143":[2,207],"144":[2,207],"145":[2,207],"147":[2,207]},{"1":[2,208],"4":[2,208],"29":[2,208],"30":[2,208],"51":[1,110],"59":[2,208],"63":[2,208],"81":[2,208],"86":[2,208],"96":[2,208],"100":[2,208],"108":[2,208],"109":107,"110":[2,208],"111":[2,208],"112":[2,208],"115":108,"116":[2,208],"117":79,"122":[2,208],"123":[2,208],"124":[2,208],"133":[2,208],"134":[2,208],"135":[1,104],"136":[2,208],"137":[2,208],"138":[1,91],"139":[1,92],"140":[2,208],"141":[2,208],"142":[2,208],"143":[2,208],"144":[2,208],"145":[2,208],"147":[2,208]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"51":[2,70],"59":[2,70],"63":[2,70],"81":[2,70],"86":[2,70],"96":[2,70],"100":[2,70],"108":[2,70],"110":[2,70],"111":[2,70],"112":[2,70],"116":[2,70],"122":[2,70],"123":[2,70],"124":[2,70],"133":[2,70],"134":[2,70],"135":[2,70],"136":[2,70],"137":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"147":[2,70]},{"30":[1,306],"51":[1,110],"63":[1,109],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"4":[1,289],"29":[1,290],"96":[1,307]},{"1":[2,90],"4":[2,90],"29":[2,90],"30":[2,90],"46":[2,90],"51":[2,90],"59":[2,90],"63":[2,90],"74":[2,90],"75":[2,90],"76":[2,90],"77":[2,90],"80":[2,90],"81":[2,90],"82":[2,90],"83":[2,90],"86":[2,90],"88":[2,90],"94":[2,90],"96":[2,90],"100":[2,90],"108":[2,90],"110":[2,90],"111":[2,90],"112":[2,90],"116":[2,90],"122":[2,90],"123":[2,90],"124":[2,90],"133":[2,90],"134":[2,90],"135":[2,90],"136":[2,90],"137":[2,90],"138":[2,90],"139":[2,90],"140":[2,90],"141":[2,90],"142":[2,90],"143":[2,90],"144":[2,90],"145":[2,90],"146":[2,90],"147":[2,90]},{"63":[1,308]},{"51":[1,110],"63":[1,109],"81":[1,263],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"30":[1,309],"51":[1,110],"63":[1,109],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"4":[1,140],"6":310,"29":[1,6]},{"54":[2,65],"59":[2,65]},{"63":[1,311]},{"63":[1,312]},{"4":[1,140],"6":313,"29":[1,6],"51":[1,110],"63":[1,109],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"4":[1,140],"6":314,"29":[1,6]},{"1":[2,136],"4":[2,136],"29":[2,136],"30":[2,136],"51":[2,136],"59":[2,136],"63":[2,136],"81":[2,136],"86":[2,136],"96":[2,136],"100":[2,136],"108":[2,136],"110":[2,136],"111":[2,136],"112":[2,136],"116":[2,136],"122":[2,136],"123":[2,136],"124":[2,136],"133":[2,136],"134":[2,136],"135":[2,136],"136":[2,136],"137":[2,136],"138":[2,136],"139":[2,136],"140":[2,136],"141":[2,136],"142":[2,136],"143":[2,136],"144":[2,136],"145":[2,136],"147":[2,136]},{"4":[1,140],"6":315,"29":[1,6]},{"30":[1,316],"127":[1,317],"128":278,"129":[1,231]},{"1":[2,172],"4":[2,172],"29":[2,172],"30":[2,172],"51":[2,172],"59":[2,172],"63":[2,172],"81":[2,172],"86":[2,172],"96":[2,172],"100":[2,172],"108":[2,172],"110":[2,172],"111":[2,172],"112":[2,172],"116":[2,172],"122":[2,172],"123":[2,172],"124":[2,172],"133":[2,172],"134":[2,172],"135":[2,172],"136":[2,172],"137":[2,172],"138":[2,172],"139":[2,172],"140":[2,172],"141":[2,172],"142":[2,172],"143":[2,172],"144":[2,172],"145":[2,172],"147":[2,172]},{"4":[1,140],"6":318,"29":[1,6]},{"30":[2,175],"127":[2,175],"129":[2,175]},{"4":[1,140],"6":319,"29":[1,6],"59":[1,320]},{"4":[2,133],"29":[2,133],"51":[1,110],"59":[2,133],"63":[1,109],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,100],"4":[2,100],"29":[1,321],"30":[2,100],"51":[2,100],"59":[2,100],"63":[2,100],"65":117,"74":[1,119],"75":[1,120],"76":[1,121],"77":[1,122],"78":123,"79":124,"80":[1,125],"81":[2,100],"82":[1,126],"83":[1,127],"86":[2,100],"93":116,"94":[1,118],"96":[2,100],"100":[2,100],"108":[2,100],"110":[2,100],"111":[2,100],"112":[2,100],"116":[2,100],"122":[2,100],"123":[2,100],"124":[2,100],"133":[2,100],"134":[2,100],"135":[2,100],"136":[2,100],"137":[2,100],"138":[2,100],"139":[2,100],"140":[2,100],"141":[2,100],"142":[2,100],"143":[2,100],"144":[2,100],"145":[2,100],"147":[2,100]},{"4":[1,284],"30":[1,322]},{"1":[2,103],"4":[2,103],"29":[2,103],"30":[2,103],"51":[2,103],"59":[2,103],"63":[2,103],"81":[2,103],"86":[2,103],"96":[2,103],"100":[2,103],"108":[2,103],"110":[2,103],"111":[2,103],"112":[2,103],"116":[2,103],"122":[2,103],"123":[2,103],"124":[2,103],"133":[2,103],"134":[2,103],"135":[2,103],"136":[2,103],"137":[2,103],"138":[2,103],"139":[2,103],"140":[2,103],"141":[2,103],"142":[2,103],"143":[2,103],"144":[2,103],"145":[2,103],"147":[2,103]},{"28":185,"31":183,"32":[1,85],"33":184,"34":[1,83],"35":[1,84],"47":238,"50":[1,52],"62":[1,240],"67":239,"90":323},{"4":[1,284],"86":[1,324]},{"8":325,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":326,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"63":[1,327],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,127],"4":[2,127],"29":[2,127],"30":[2,127],"46":[2,127],"51":[2,127],"59":[2,127],"63":[2,127],"74":[2,127],"75":[2,127],"76":[2,127],"77":[2,127],"80":[2,127],"81":[2,127],"82":[2,127],"83":[2,127],"86":[2,127],"94":[2,127],"96":[2,127],"100":[2,127],"108":[2,127],"110":[2,127],"111":[2,127],"112":[2,127],"116":[2,127],"122":[2,127],"123":[2,127],"124":[2,127],"133":[2,127],"134":[2,127],"135":[2,127],"136":[2,127],"137":[2,127],"138":[2,127],"139":[2,127],"140":[2,127],"141":[2,127],"142":[2,127],"143":[2,127],"144":[2,127],"145":[2,127],"146":[2,127],"147":[2,127]},{"8":328,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"4":[2,128],"8":209,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,128],"30":[2,128],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"59":[2,128],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"95":329,"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"4":[2,130],"29":[2,130],"30":[2,130],"51":[1,110],"59":[2,130],"63":[1,109],"96":[2,130],"100":[2,130],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,142],"4":[2,142],"29":[2,142],"30":[2,142],"51":[1,110],"59":[2,142],"63":[1,109],"81":[2,142],"86":[2,142],"96":[2,142],"100":[2,142],"108":[2,142],"109":107,"110":[1,75],"111":[2,142],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"124":[2,142],"133":[2,142],"134":[2,142],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,144],"4":[2,144],"29":[2,144],"30":[2,144],"51":[1,110],"59":[2,144],"63":[1,109],"81":[2,144],"86":[2,144],"96":[2,144],"100":[2,144],"108":[2,144],"109":107,"110":[1,75],"111":[2,144],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"124":[2,144],"133":[2,144],"134":[2,144],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"122":[2,162],"123":[2,162]},{"8":330,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":331,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":332,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,93],"4":[2,93],"29":[2,93],"30":[2,93],"46":[2,93],"51":[2,93],"59":[2,93],"63":[2,93],"74":[2,93],"75":[2,93],"76":[2,93],"77":[2,93],"80":[2,93],"81":[2,93],"82":[2,93],"83":[2,93],"86":[2,93],"94":[2,93],"96":[2,93],"100":[2,93],"108":[2,93],"110":[2,93],"111":[2,93],"112":[2,93],"116":[2,93],"122":[2,93],"123":[2,93],"124":[2,93],"133":[2,93],"134":[2,93],"135":[2,93],"136":[2,93],"137":[2,93],"138":[2,93],"139":[2,93],"140":[2,93],"141":[2,93],"142":[2,93],"143":[2,93],"144":[2,93],"145":[2,93],"146":[2,93],"147":[2,93]},{"28":185,"31":183,"32":[1,85],"33":184,"34":[1,83],"35":[1,84],"47":333,"50":[1,52]},{"4":[2,94],"28":185,"29":[2,94],"30":[2,94],"31":183,"32":[1,85],"33":184,"34":[1,83],"35":[1,84],"47":182,"50":[1,52],"59":[2,94],"85":334},{"4":[2,96],"29":[2,96],"30":[2,96],"59":[2,96],"86":[2,96]},{"4":[2,48],"29":[2,48],"30":[2,48],"51":[1,110],"59":[2,48],"63":[1,109],"86":[2,48],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"8":335,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"4":[2,49],"29":[2,49],"30":[2,49],"51":[1,110],"59":[2,49],"63":[1,109],"86":[2,49],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"8":336,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,203],"4":[2,203],"29":[2,203],"30":[2,203],"51":[2,203],"59":[2,203],"63":[2,203],"81":[2,203],"86":[2,203],"96":[2,203],"100":[2,203],"108":[2,203],"110":[2,203],"111":[2,203],"112":[2,203],"116":[2,203],"122":[2,203],"123":[2,203],"124":[2,203],"133":[2,203],"134":[2,203],"135":[2,203],"136":[2,203],"137":[2,203],"138":[2,203],"139":[2,203],"140":[2,203],"141":[2,203],"142":[2,203],"143":[2,203],"144":[2,203],"145":[2,203],"147":[2,203]},{"1":[2,117],"4":[2,117],"29":[2,117],"30":[2,117],"51":[2,117],"59":[2,117],"63":[2,117],"74":[2,117],"75":[2,117],"76":[2,117],"77":[2,117],"80":[2,117],"81":[2,117],"82":[2,117],"83":[2,117],"86":[2,117],"94":[2,117],"96":[2,117],"100":[2,117],"108":[2,117],"110":[2,117],"111":[2,117],"112":[2,117],"116":[2,117],"122":[2,117],"123":[2,117],"124":[2,117],"133":[2,117],"134":[2,117],"135":[2,117],"136":[2,117],"137":[2,117],"138":[2,117],"139":[2,117],"140":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"147":[2,117]},{"8":337,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"63":[1,338],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,45],"4":[2,45],"29":[2,45],"30":[2,45],"51":[2,45],"59":[2,45],"63":[2,45],"81":[2,45],"86":[2,45],"96":[2,45],"100":[2,45],"108":[2,45],"110":[2,45],"111":[2,45],"112":[2,45],"116":[2,45],"122":[2,45],"123":[2,45],"124":[2,45],"133":[2,45],"134":[2,45],"135":[2,45],"136":[2,45],"137":[2,45],"138":[2,45],"139":[2,45],"140":[2,45],"141":[2,45],"142":[2,45],"143":[2,45],"144":[2,45],"145":[2,45],"147":[2,45]},{"1":[2,57],"4":[2,57],"29":[2,57],"30":[2,57],"51":[2,57],"59":[2,57],"63":[2,57],"81":[2,57],"86":[2,57],"96":[2,57],"100":[2,57],"108":[2,57],"110":[2,57],"111":[2,57],"112":[2,57],"116":[2,57],"122":[2,57],"123":[2,57],"124":[2,57],"133":[2,57],"134":[2,57],"135":[2,57],"136":[2,57],"137":[2,57],"138":[2,57],"139":[2,57],"140":[2,57],"141":[2,57],"142":[2,57],"143":[2,57],"144":[2,57],"145":[2,57],"147":[2,57]},{"54":[2,68],"59":[2,68]},{"63":[1,339]},{"1":[2,180],"4":[2,180],"29":[2,180],"30":[2,180],"51":[2,180],"59":[2,180],"63":[2,180],"81":[2,180],"86":[2,180],"96":[2,180],"100":[2,180],"108":[2,180],"110":[2,180],"111":[2,180],"112":[2,180],"116":[2,180],"122":[2,180],"123":[2,180],"124":[2,180],"127":[2,180],"133":[2,180],"134":[2,180],"135":[2,180],"136":[2,180],"137":[2,180],"138":[2,180],"139":[2,180],"140":[2,180],"141":[2,180],"142":[2,180],"143":[2,180],"144":[2,180],"145":[2,180],"147":[2,180]},{"1":[2,137],"4":[2,137],"29":[2,137],"30":[2,137],"51":[2,137],"59":[2,137],"63":[2,137],"81":[2,137],"86":[2,137],"96":[2,137],"100":[2,137],"108":[2,137],"110":[2,137],"111":[2,137],"112":[2,137],"116":[2,137],"122":[2,137],"123":[2,137],"124":[2,137],"133":[2,137],"134":[2,137],"135":[2,137],"136":[2,137],"137":[2,137],"138":[2,137],"139":[2,137],"140":[2,137],"141":[2,137],"142":[2,137],"143":[2,137],"144":[2,137],"145":[2,137],"147":[2,137]},{"1":[2,138],"4":[2,138],"29":[2,138],"30":[2,138],"51":[2,138],"59":[2,138],"63":[2,138],"81":[2,138],"86":[2,138],"96":[2,138],"100":[2,138],"104":[2,138],"108":[2,138],"110":[2,138],"111":[2,138],"112":[2,138],"116":[2,138],"122":[2,138],"123":[2,138],"124":[2,138],"133":[2,138],"134":[2,138],"135":[2,138],"136":[2,138],"137":[2,138],"138":[2,138],"139":[2,138],"140":[2,138],"141":[2,138],"142":[2,138],"143":[2,138],"144":[2,138],"145":[2,138],"147":[2,138]},{"1":[2,170],"4":[2,170],"29":[2,170],"30":[2,170],"51":[2,170],"59":[2,170],"63":[2,170],"81":[2,170],"86":[2,170],"96":[2,170],"100":[2,170],"108":[2,170],"110":[2,170],"111":[2,170],"112":[2,170],"116":[2,170],"122":[2,170],"123":[2,170],"124":[2,170],"133":[2,170],"134":[2,170],"135":[2,170],"136":[2,170],"137":[2,170],"138":[2,170],"139":[2,170],"140":[2,170],"141":[2,170],"142":[2,170],"143":[2,170],"144":[2,170],"145":[2,170],"147":[2,170]},{"4":[1,140],"6":340,"29":[1,6]},{"30":[1,341]},{"4":[1,342],"30":[2,176],"127":[2,176],"129":[2,176]},{"8":343,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"4":[2,106],"28":185,"30":[2,106],"31":183,"32":[1,85],"33":184,"34":[1,83],"35":[1,84],"47":238,"50":[1,52],"62":[1,240],"67":239,"84":[1,237],"89":344,"90":236},{"1":[2,101],"4":[2,101],"29":[2,101],"30":[2,101],"51":[2,101],"59":[2,101],"63":[2,101],"81":[2,101],"86":[2,101],"96":[2,101],"100":[2,101],"108":[2,101],"110":[2,101],"111":[2,101],"112":[2,101],"116":[2,101],"122":[2,101],"123":[2,101],"124":[2,101],"133":[2,101],"134":[2,101],"135":[2,101],"136":[2,101],"137":[2,101],"138":[2,101],"139":[2,101],"140":[2,101],"141":[2,101],"142":[2,101],"143":[2,101],"144":[2,101],"145":[2,101],"147":[2,101]},{"4":[2,108],"30":[2,108],"86":[2,108]},{"4":[2,109],"30":[2,109],"86":[2,109]},{"4":[2,105],"30":[2,105],"51":[1,110],"63":[1,109],"86":[2,105],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"51":[1,110],"63":[1,109],"100":[1,345],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"4":[2,70],"8":346,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,70],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"51":[2,70],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"59":[2,70],"62":[1,69],"63":[2,70],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"100":[2,70],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[2,70],"112":[2,70],"113":47,"114":[1,77],"115":48,"116":[2,70],"117":79,"122":[2,70],"123":[2,70],"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"133":[2,70],"134":[2,70],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"147":[2,70]},{"4":[2,131],"29":[2,131],"30":[2,131],"51":[1,110],"59":[2,131],"63":[1,109],"96":[2,131],"100":[2,131],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"4":[2,61],"29":[2,61],"30":[2,61],"58":347,"59":[1,244]},{"1":[2,165],"4":[2,165],"29":[2,165],"30":[2,165],"51":[1,110],"59":[2,165],"63":[1,109],"81":[2,165],"86":[2,165],"96":[2,165],"100":[2,165],"108":[2,165],"109":107,"110":[2,165],"111":[2,165],"112":[2,165],"115":108,"116":[2,165],"117":79,"122":[1,102],"123":[1,103],"124":[1,348],"133":[2,165],"134":[2,165],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,167],"4":[2,167],"29":[2,167],"30":[2,167],"51":[1,110],"59":[2,167],"63":[1,109],"81":[2,167],"86":[2,167],"96":[2,167],"100":[2,167],"108":[2,167],"109":107,"110":[2,167],"111":[1,349],"112":[2,167],"115":108,"116":[2,167],"117":79,"122":[1,102],"123":[1,103],"124":[2,167],"133":[2,167],"134":[2,167],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,166],"4":[2,166],"29":[2,166],"30":[2,166],"51":[1,110],"59":[2,166],"63":[1,109],"81":[2,166],"86":[2,166],"96":[2,166],"100":[2,166],"108":[2,166],"109":107,"110":[2,166],"111":[2,166],"112":[2,166],"115":108,"116":[2,166],"117":79,"122":[1,102],"123":[1,103],"124":[2,166],"133":[2,166],"134":[2,166],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"4":[2,97],"29":[2,97],"30":[2,97],"59":[2,97],"86":[2,97]},{"4":[2,61],"29":[2,61],"30":[2,61],"58":350,"59":[1,255]},{"30":[1,351],"51":[1,110],"63":[1,109],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"30":[1,352],"51":[1,110],"63":[1,109],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"51":[1,110],"63":[1,109],"81":[1,353],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"8":354,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"51":[2,70],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"63":[2,70],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"81":[2,70],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[2,70],"112":[2,70],"113":47,"114":[1,77],"115":48,"116":[2,70],"117":79,"122":[2,70],"123":[2,70],"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"133":[2,70],"134":[2,70],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"147":[2,70]},{"54":[2,69],"59":[2,69]},{"30":[1,355]},{"1":[2,173],"4":[2,173],"29":[2,173],"30":[2,173],"51":[2,173],"59":[2,173],"63":[2,173],"81":[2,173],"86":[2,173],"96":[2,173],"100":[2,173],"108":[2,173],"110":[2,173],"111":[2,173],"112":[2,173],"116":[2,173],"122":[2,173],"123":[2,173],"124":[2,173],"133":[2,173],"134":[2,173],"135":[2,173],"136":[2,173],"137":[2,173],"138":[2,173],"139":[2,173],"140":[2,173],"141":[2,173],"142":[2,173],"143":[2,173],"144":[2,173],"145":[2,173],"147":[2,173]},{"30":[2,177],"127":[2,177],"129":[2,177]},{"4":[2,134],"29":[2,134],"51":[1,110],"59":[2,134],"63":[1,109],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"4":[1,284],"30":[1,356]},{"1":[2,123],"4":[2,123],"29":[2,123],"30":[2,123],"51":[2,123],"59":[2,123],"63":[2,123],"74":[2,123],"75":[2,123],"76":[2,123],"77":[2,123],"80":[2,123],"81":[2,123],"82":[2,123],"83":[2,123],"86":[2,123],"94":[2,123],"96":[2,123],"100":[2,123],"108":[2,123],"110":[2,123],"111":[2,123],"112":[2,123],"116":[2,123],"122":[2,123],"123":[2,123],"124":[2,123],"133":[2,123],"134":[2,123],"135":[2,123],"136":[2,123],"137":[2,123],"138":[2,123],"139":[2,123],"140":[2,123],"141":[2,123],"142":[2,123],"143":[2,123],"144":[2,123],"145":[2,123],"146":[2,123],"147":[2,123]},{"51":[1,110],"63":[1,109],"100":[1,357],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"4":[1,289],"29":[1,290],"30":[1,358]},{"8":359,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":360,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"4":[1,299],"29":[1,300],"30":[1,361]},{"4":[2,50],"29":[2,50],"30":[2,50],"59":[2,50],"86":[2,50]},{"4":[2,51],"29":[2,51],"30":[2,51],"59":[2,51],"86":[2,51]},{"1":[2,125],"4":[2,125],"29":[2,125],"30":[2,125],"46":[2,125],"51":[2,125],"59":[2,125],"63":[2,125],"74":[2,125],"75":[2,125],"76":[2,125],"77":[2,125],"80":[2,125],"81":[2,125],"82":[2,125],"83":[2,125],"86":[2,125],"88":[2,125],"94":[2,125],"96":[2,125],"100":[2,125],"108":[2,125],"110":[2,125],"111":[2,125],"112":[2,125],"116":[2,125],"122":[2,125],"123":[2,125],"124":[2,125],"133":[2,125],"134":[2,125],"135":[2,125],"136":[2,125],"137":[2,125],"138":[2,125],"139":[2,125],"140":[2,125],"141":[2,125],"142":[2,125],"143":[2,125],"144":[2,125],"145":[2,125],"146":[2,125],"147":[2,125]},{"51":[1,110],"63":[1,109],"81":[1,362],"109":107,"110":[1,75],"112":[1,76],"115":108,"116":[1,78],"117":79,"122":[1,102],"123":[1,103],"133":[1,105],"134":[1,106],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,171],"4":[2,171],"29":[2,171],"30":[2,171],"51":[2,171],"59":[2,171],"63":[2,171],"81":[2,171],"86":[2,171],"96":[2,171],"100":[2,171],"108":[2,171],"110":[2,171],"111":[2,171],"112":[2,171],"116":[2,171],"122":[2,171],"123":[2,171],"124":[2,171],"133":[2,171],"134":[2,171],"135":[2,171],"136":[2,171],"137":[2,171],"138":[2,171],"139":[2,171],"140":[2,171],"141":[2,171],"142":[2,171],"143":[2,171],"144":[2,171],"145":[2,171],"147":[2,171]},{"1":[2,102],"4":[2,102],"29":[2,102],"30":[2,102],"51":[2,102],"59":[2,102],"63":[2,102],"81":[2,102],"86":[2,102],"96":[2,102],"100":[2,102],"108":[2,102],"110":[2,102],"111":[2,102],"112":[2,102],"116":[2,102],"122":[2,102],"123":[2,102],"124":[2,102],"133":[2,102],"134":[2,102],"135":[2,102],"136":[2,102],"137":[2,102],"138":[2,102],"139":[2,102],"140":[2,102],"141":[2,102],"142":[2,102],"143":[2,102],"144":[2,102],"145":[2,102],"147":[2,102]},{"1":[2,124],"4":[2,124],"29":[2,124],"30":[2,124],"51":[2,124],"59":[2,124],"63":[2,124],"74":[2,124],"75":[2,124],"76":[2,124],"77":[2,124],"80":[2,124],"81":[2,124],"82":[2,124],"83":[2,124],"86":[2,124],"94":[2,124],"96":[2,124],"100":[2,124],"108":[2,124],"110":[2,124],"111":[2,124],"112":[2,124],"116":[2,124],"122":[2,124],"123":[2,124],"124":[2,124],"133":[2,124],"134":[2,124],"135":[2,124],"136":[2,124],"137":[2,124],"138":[2,124],"139":[2,124],"140":[2,124],"141":[2,124],"142":[2,124],"143":[2,124],"144":[2,124],"145":[2,124],"146":[2,124],"147":[2,124]},{"4":[2,132],"29":[2,132],"30":[2,132],"59":[2,132],"96":[2,132],"100":[2,132]},{"1":[2,168],"4":[2,168],"29":[2,168],"30":[2,168],"51":[1,110],"59":[2,168],"63":[1,109],"81":[2,168],"86":[2,168],"96":[2,168],"100":[2,168],"108":[2,168],"109":107,"110":[2,168],"111":[2,168],"112":[2,168],"115":108,"116":[2,168],"117":79,"122":[1,102],"123":[1,103],"124":[2,168],"133":[2,168],"134":[2,168],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"1":[2,169],"4":[2,169],"29":[2,169],"30":[2,169],"51":[1,110],"59":[2,169],"63":[1,109],"81":[2,169],"86":[2,169],"96":[2,169],"100":[2,169],"108":[2,169],"109":107,"110":[2,169],"111":[2,169],"112":[2,169],"115":108,"116":[2,169],"117":79,"122":[1,102],"123":[1,103],"124":[2,169],"133":[2,169],"134":[2,169],"135":[1,104],"136":[1,94],"137":[1,93],"138":[1,91],"139":[1,92],"140":[1,95],"141":[1,96],"142":[1,97],"143":[1,98],"144":[1,99],"145":[1,100],"147":[1,101]},{"4":[2,98],"29":[2,98],"30":[2,98],"59":[2,98],"86":[2,98]},{"1":[2,126],"4":[2,126],"29":[2,126],"30":[2,126],"46":[2,126],"51":[2,126],"59":[2,126],"63":[2,126],"74":[2,126],"75":[2,126],"76":[2,126],"77":[2,126],"80":[2,126],"81":[2,126],"82":[2,126],"83":[2,126],"86":[2,126],"88":[2,126],"94":[2,126],"96":[2,126],"100":[2,126],"108":[2,126],"110":[2,126],"111":[2,126],"112":[2,126],"116":[2,126],"122":[2,126],"123":[2,126],"124":[2,126],"133":[2,126],"134":[2,126],"135":[2,126],"136":[2,126],"137":[2,126],"138":[2,126],"139":[2,126],"140":[2,126],"141":[2,126],"142":[2,126],"143":[2,126],"144":[2,126],"145":[2,126],"146":[2,126],"147":[2,126]}], +table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[3]},{"1":[2,2],"28":86,"50":[1,52]},{"1":[2,3],"4":[1,87]},{"4":[1,88]},{"1":[2,5],"4":[2,5],"30":[2,5]},{"5":89,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[1,90],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,8],"4":[2,8],"30":[2,8],"51":[1,93],"63":[1,110],"108":[2,8],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,9],"4":[2,9],"30":[2,9],"108":[2,9],"109":113,"110":[1,75],"112":[1,76],"115":114,"116":[1,78],"117":79,"133":[1,111],"134":[1,112]},{"1":[2,14],"4":[2,14],"29":[2,14],"30":[2,14],"51":[2,14],"59":[2,14],"63":[2,14],"65":117,"74":[1,119],"75":[1,120],"76":[1,121],"77":[1,122],"78":123,"79":124,"80":[1,125],"81":[2,14],"82":[1,126],"83":[1,127],"86":[2,14],"93":116,"94":[1,118],"96":[2,14],"100":[2,14],"108":[2,14],"110":[2,14],"111":[2,14],"112":[2,14],"116":[2,14],"122":[2,14],"123":[2,14],"124":[2,14],"133":[2,14],"134":[2,14],"135":[2,14],"136":[2,14],"137":[2,14],"138":[2,14],"139":[2,14],"140":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[1,115],"147":[2,14]},{"1":[2,15],"4":[2,15],"29":[2,15],"30":[2,15],"51":[2,15],"59":[2,15],"63":[2,15],"81":[2,15],"86":[2,15],"96":[2,15],"100":[2,15],"108":[2,15],"110":[2,15],"111":[2,15],"112":[2,15],"116":[2,15],"122":[2,15],"123":[2,15],"124":[2,15],"133":[2,15],"134":[2,15],"135":[2,15],"136":[2,15],"137":[2,15],"138":[2,15],"139":[2,15],"140":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"147":[2,15]},{"1":[2,16],"4":[2,16],"29":[2,16],"30":[2,16],"51":[2,16],"59":[2,16],"63":[2,16],"81":[2,16],"86":[2,16],"96":[2,16],"100":[2,16],"108":[2,16],"110":[2,16],"111":[2,16],"112":[2,16],"116":[2,16],"122":[2,16],"123":[2,16],"124":[2,16],"133":[2,16],"134":[2,16],"135":[2,16],"136":[2,16],"137":[2,16],"138":[2,16],"139":[2,16],"140":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"147":[2,16]},{"1":[2,17],"4":[2,17],"29":[2,17],"30":[2,17],"51":[2,17],"59":[2,17],"63":[2,17],"81":[2,17],"86":[2,17],"96":[2,17],"100":[2,17],"108":[2,17],"110":[2,17],"111":[2,17],"112":[2,17],"116":[2,17],"122":[2,17],"123":[2,17],"124":[2,17],"133":[2,17],"134":[2,17],"135":[2,17],"136":[2,17],"137":[2,17],"138":[2,17],"139":[2,17],"140":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"147":[2,17]},{"1":[2,18],"4":[2,18],"29":[2,18],"30":[2,18],"51":[2,18],"59":[2,18],"63":[2,18],"81":[2,18],"86":[2,18],"96":[2,18],"100":[2,18],"108":[2,18],"110":[2,18],"111":[2,18],"112":[2,18],"116":[2,18],"122":[2,18],"123":[2,18],"124":[2,18],"133":[2,18],"134":[2,18],"135":[2,18],"136":[2,18],"137":[2,18],"138":[2,18],"139":[2,18],"140":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"147":[2,18]},{"1":[2,19],"4":[2,19],"29":[2,19],"30":[2,19],"51":[2,19],"59":[2,19],"63":[2,19],"81":[2,19],"86":[2,19],"96":[2,19],"100":[2,19],"108":[2,19],"110":[2,19],"111":[2,19],"112":[2,19],"116":[2,19],"122":[2,19],"123":[2,19],"124":[2,19],"133":[2,19],"134":[2,19],"135":[2,19],"136":[2,19],"137":[2,19],"138":[2,19],"139":[2,19],"140":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"147":[2,19]},{"1":[2,20],"4":[2,20],"29":[2,20],"30":[2,20],"51":[2,20],"59":[2,20],"63":[2,20],"81":[2,20],"86":[2,20],"96":[2,20],"100":[2,20],"108":[2,20],"110":[2,20],"111":[2,20],"112":[2,20],"116":[2,20],"122":[2,20],"123":[2,20],"124":[2,20],"133":[2,20],"134":[2,20],"135":[2,20],"136":[2,20],"137":[2,20],"138":[2,20],"139":[2,20],"140":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"147":[2,20]},{"1":[2,21],"4":[2,21],"29":[2,21],"30":[2,21],"51":[2,21],"59":[2,21],"63":[2,21],"81":[2,21],"86":[2,21],"96":[2,21],"100":[2,21],"108":[2,21],"110":[2,21],"111":[2,21],"112":[2,21],"116":[2,21],"122":[2,21],"123":[2,21],"124":[2,21],"133":[2,21],"134":[2,21],"135":[2,21],"136":[2,21],"137":[2,21],"138":[2,21],"139":[2,21],"140":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"147":[2,21]},{"1":[2,22],"4":[2,22],"29":[2,22],"30":[2,22],"51":[2,22],"59":[2,22],"63":[2,22],"81":[2,22],"86":[2,22],"96":[2,22],"100":[2,22],"108":[2,22],"110":[2,22],"111":[2,22],"112":[2,22],"116":[2,22],"122":[2,22],"123":[2,22],"124":[2,22],"133":[2,22],"134":[2,22],"135":[2,22],"136":[2,22],"137":[2,22],"138":[2,22],"139":[2,22],"140":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"147":[2,22]},{"1":[2,23],"4":[2,23],"29":[2,23],"30":[2,23],"51":[2,23],"59":[2,23],"63":[2,23],"81":[2,23],"86":[2,23],"96":[2,23],"100":[2,23],"108":[2,23],"110":[2,23],"111":[2,23],"112":[2,23],"116":[2,23],"122":[2,23],"123":[2,23],"124":[2,23],"133":[2,23],"134":[2,23],"135":[2,23],"136":[2,23],"137":[2,23],"138":[2,23],"139":[2,23],"140":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"147":[2,23]},{"1":[2,24],"4":[2,24],"29":[2,24],"30":[2,24],"51":[2,24],"59":[2,24],"63":[2,24],"81":[2,24],"86":[2,24],"96":[2,24],"100":[2,24],"108":[2,24],"110":[2,24],"111":[2,24],"112":[2,24],"116":[2,24],"122":[2,24],"123":[2,24],"124":[2,24],"133":[2,24],"134":[2,24],"135":[2,24],"136":[2,24],"137":[2,24],"138":[2,24],"139":[2,24],"140":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"147":[2,24]},{"1":[2,25],"4":[2,25],"29":[2,25],"30":[2,25],"51":[2,25],"59":[2,25],"63":[2,25],"81":[2,25],"86":[2,25],"96":[2,25],"100":[2,25],"108":[2,25],"110":[2,25],"111":[2,25],"112":[2,25],"116":[2,25],"122":[2,25],"123":[2,25],"124":[2,25],"133":[2,25],"134":[2,25],"135":[2,25],"136":[2,25],"137":[2,25],"138":[2,25],"139":[2,25],"140":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"147":[2,25]},{"1":[2,26],"4":[2,26],"29":[2,26],"30":[2,26],"51":[2,26],"59":[2,26],"63":[2,26],"81":[2,26],"86":[2,26],"96":[2,26],"100":[2,26],"108":[2,26],"110":[2,26],"111":[2,26],"112":[2,26],"116":[2,26],"122":[2,26],"123":[2,26],"124":[2,26],"133":[2,26],"134":[2,26],"135":[2,26],"136":[2,26],"137":[2,26],"138":[2,26],"139":[2,26],"140":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"147":[2,26]},{"1":[2,27],"4":[2,27],"29":[2,27],"30":[2,27],"51":[2,27],"59":[2,27],"63":[2,27],"81":[2,27],"86":[2,27],"96":[2,27],"100":[2,27],"108":[2,27],"110":[2,27],"111":[2,27],"112":[2,27],"116":[2,27],"122":[2,27],"123":[2,27],"124":[2,27],"133":[2,27],"134":[2,27],"135":[2,27],"136":[2,27],"137":[2,27],"138":[2,27],"139":[2,27],"140":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"147":[2,27]},{"1":[2,28],"4":[2,28],"29":[2,28],"30":[2,28],"51":[2,28],"59":[2,28],"63":[2,28],"81":[2,28],"86":[2,28],"96":[2,28],"100":[2,28],"108":[2,28],"110":[2,28],"111":[2,28],"112":[2,28],"116":[2,28],"122":[2,28],"123":[2,28],"124":[2,28],"133":[2,28],"134":[2,28],"135":[2,28],"136":[2,28],"137":[2,28],"138":[2,28],"139":[2,28],"140":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"147":[2,28]},{"1":[2,10],"4":[2,10],"30":[2,10],"108":[2,10],"110":[2,10],"112":[2,10],"116":[2,10],"133":[2,10],"134":[2,10]},{"1":[2,11],"4":[2,11],"30":[2,11],"108":[2,11],"110":[2,11],"112":[2,11],"116":[2,11],"133":[2,11],"134":[2,11]},{"1":[2,12],"4":[2,12],"30":[2,12],"108":[2,12],"110":[2,12],"112":[2,12],"116":[2,12],"133":[2,12],"134":[2,12]},{"1":[2,13],"4":[2,13],"30":[2,13],"108":[2,13],"110":[2,13],"112":[2,13],"116":[2,13],"133":[2,13],"134":[2,13]},{"1":[2,78],"4":[2,78],"29":[2,78],"30":[2,78],"46":[1,128],"51":[2,78],"59":[2,78],"63":[2,78],"74":[2,78],"75":[2,78],"76":[2,78],"77":[2,78],"80":[2,78],"81":[2,78],"82":[2,78],"83":[2,78],"86":[2,78],"94":[2,78],"96":[2,78],"100":[2,78],"108":[2,78],"110":[2,78],"111":[2,78],"112":[2,78],"116":[2,78],"122":[2,78],"123":[2,78],"124":[2,78],"133":[2,78],"134":[2,78],"135":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78]},{"1":[2,79],"4":[2,79],"29":[2,79],"30":[2,79],"51":[2,79],"59":[2,79],"63":[2,79],"74":[2,79],"75":[2,79],"76":[2,79],"77":[2,79],"80":[2,79],"81":[2,79],"82":[2,79],"83":[2,79],"86":[2,79],"94":[2,79],"96":[2,79],"100":[2,79],"108":[2,79],"110":[2,79],"111":[2,79],"112":[2,79],"116":[2,79],"122":[2,79],"123":[2,79],"124":[2,79],"133":[2,79],"134":[2,79],"135":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79]},{"1":[2,80],"4":[2,80],"29":[2,80],"30":[2,80],"51":[2,80],"59":[2,80],"63":[2,80],"74":[2,80],"75":[2,80],"76":[2,80],"77":[2,80],"80":[2,80],"81":[2,80],"82":[2,80],"83":[2,80],"86":[2,80],"94":[2,80],"96":[2,80],"100":[2,80],"108":[2,80],"110":[2,80],"111":[2,80],"112":[2,80],"116":[2,80],"122":[2,80],"123":[2,80],"124":[2,80],"133":[2,80],"134":[2,80],"135":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80],"140":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80]},{"1":[2,81],"4":[2,81],"29":[2,81],"30":[2,81],"51":[2,81],"59":[2,81],"63":[2,81],"74":[2,81],"75":[2,81],"76":[2,81],"77":[2,81],"80":[2,81],"81":[2,81],"82":[2,81],"83":[2,81],"86":[2,81],"94":[2,81],"96":[2,81],"100":[2,81],"108":[2,81],"110":[2,81],"111":[2,81],"112":[2,81],"116":[2,81],"122":[2,81],"123":[2,81],"124":[2,81],"133":[2,81],"134":[2,81],"135":[2,81],"136":[2,81],"137":[2,81],"138":[2,81],"139":[2,81],"140":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81]},{"1":[2,82],"4":[2,82],"29":[2,82],"30":[2,82],"51":[2,82],"59":[2,82],"63":[2,82],"74":[2,82],"75":[2,82],"76":[2,82],"77":[2,82],"80":[2,82],"81":[2,82],"82":[2,82],"83":[2,82],"86":[2,82],"94":[2,82],"96":[2,82],"100":[2,82],"108":[2,82],"110":[2,82],"111":[2,82],"112":[2,82],"116":[2,82],"122":[2,82],"123":[2,82],"124":[2,82],"133":[2,82],"134":[2,82],"135":[2,82],"136":[2,82],"137":[2,82],"138":[2,82],"139":[2,82],"140":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82]},{"1":[2,83],"4":[2,83],"29":[2,83],"30":[2,83],"51":[2,83],"59":[2,83],"63":[2,83],"74":[2,83],"75":[2,83],"76":[2,83],"77":[2,83],"80":[2,83],"81":[2,83],"82":[2,83],"83":[2,83],"86":[2,83],"94":[2,83],"96":[2,83],"100":[2,83],"108":[2,83],"110":[2,83],"111":[2,83],"112":[2,83],"116":[2,83],"122":[2,83],"123":[2,83],"124":[2,83],"133":[2,83],"134":[2,83],"135":[2,83],"136":[2,83],"137":[2,83],"138":[2,83],"139":[2,83],"140":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83]},{"1":[2,110],"4":[2,110],"29":[2,110],"30":[2,110],"51":[2,110],"59":[2,110],"63":[2,110],"65":130,"74":[1,119],"75":[1,120],"76":[1,121],"77":[1,122],"78":123,"79":124,"80":[1,125],"81":[2,110],"82":[1,126],"83":[1,127],"86":[2,110],"93":129,"94":[1,118],"96":[2,110],"100":[2,110],"108":[2,110],"110":[2,110],"111":[2,110],"112":[2,110],"116":[2,110],"122":[2,110],"123":[2,110],"124":[2,110],"133":[2,110],"134":[2,110],"135":[2,110],"136":[2,110],"137":[2,110],"138":[2,110],"139":[2,110],"140":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"147":[2,110]},{"1":[2,111],"4":[2,111],"29":[2,111],"30":[2,111],"51":[2,111],"59":[2,111],"63":[2,111],"81":[2,111],"86":[2,111],"96":[2,111],"100":[2,111],"108":[2,111],"110":[2,111],"111":[2,111],"112":[2,111],"116":[2,111],"122":[2,111],"123":[2,111],"124":[2,111],"133":[2,111],"134":[2,111],"135":[2,111],"136":[2,111],"137":[2,111],"138":[2,111],"139":[2,111],"140":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"147":[2,111]},{"14":132,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":133,"62":[1,69],"64":134,"66":131,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"98":[1,68],"99":[1,67],"107":[1,66]},{"53":135,"54":[2,63],"59":[2,63],"60":136,"61":[1,137],"62":[1,138]},{"4":[1,140],"6":139,"29":[1,6]},{"8":141,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":143,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":144,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":145,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":146,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,182],"4":[2,182],"29":[2,182],"30":[2,182],"51":[2,182],"59":[2,182],"63":[2,182],"81":[2,182],"86":[2,182],"96":[2,182],"100":[2,182],"108":[2,182],"110":[2,182],"111":[2,182],"112":[2,182],"116":[2,182],"122":[2,182],"123":[2,182],"124":[2,182],"127":[1,147],"133":[2,182],"134":[2,182],"135":[2,182],"136":[2,182],"137":[2,182],"138":[2,182],"139":[2,182],"140":[2,182],"141":[2,182],"142":[2,182],"143":[2,182],"144":[2,182],"145":[2,182],"147":[2,182]},{"4":[1,140],"6":148,"29":[1,6]},{"4":[1,140],"6":149,"29":[1,6]},{"1":[2,148],"4":[2,148],"29":[2,148],"30":[2,148],"51":[2,148],"59":[2,148],"63":[2,148],"81":[2,148],"86":[2,148],"96":[2,148],"100":[2,148],"108":[2,148],"110":[2,148],"111":[2,148],"112":[2,148],"116":[2,148],"122":[2,148],"123":[2,148],"124":[2,148],"133":[2,148],"134":[2,148],"135":[2,148],"136":[2,148],"137":[2,148],"138":[2,148],"139":[2,148],"140":[2,148],"141":[2,148],"142":[2,148],"143":[2,148],"144":[2,148],"145":[2,148],"147":[2,148]},{"4":[1,140],"6":150,"29":[1,6]},{"8":151,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,152],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,75],"4":[2,75],"29":[2,75],"30":[2,75],"46":[2,75],"51":[2,75],"59":[2,75],"63":[2,75],"74":[2,75],"75":[2,75],"76":[2,75],"77":[2,75],"80":[2,75],"81":[2,75],"82":[2,75],"83":[2,75],"86":[2,75],"88":[1,153],"94":[2,75],"96":[2,75],"100":[2,75],"108":[2,75],"110":[2,75],"111":[2,75],"112":[2,75],"116":[2,75],"122":[2,75],"123":[2,75],"124":[2,75],"133":[2,75],"134":[2,75],"135":[2,75],"136":[2,75],"137":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75]},{"14":156,"29":[1,155],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":133,"62":[1,69],"64":154,"66":157,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"98":[1,68],"99":[1,67],"107":[1,66]},{"1":[2,55],"4":[2,55],"29":[2,55],"30":[2,55],"51":[2,55],"59":[2,55],"63":[2,55],"81":[2,55],"86":[2,55],"96":[2,55],"100":[2,55],"104":[2,55],"105":[2,55],"108":[2,55],"110":[2,55],"111":[2,55],"112":[2,55],"116":[2,55],"122":[2,55],"123":[2,55],"124":[2,55],"127":[2,55],"129":[2,55],"133":[2,55],"134":[2,55],"135":[2,55],"136":[2,55],"137":[2,55],"138":[2,55],"139":[2,55],"140":[2,55],"141":[2,55],"142":[2,55],"143":[2,55],"144":[2,55],"145":[2,55],"147":[2,55]},{"1":[2,54],"4":[2,54],"8":158,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,54],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"108":[2,54],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"133":[2,54],"134":[2,54],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":159,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,76],"4":[2,76],"29":[2,76],"30":[2,76],"46":[2,76],"51":[2,76],"59":[2,76],"63":[2,76],"74":[2,76],"75":[2,76],"76":[2,76],"77":[2,76],"80":[2,76],"81":[2,76],"82":[2,76],"83":[2,76],"86":[2,76],"94":[2,76],"96":[2,76],"100":[2,76],"108":[2,76],"110":[2,76],"111":[2,76],"112":[2,76],"116":[2,76],"122":[2,76],"123":[2,76],"124":[2,76],"133":[2,76],"134":[2,76],"135":[2,76],"136":[2,76],"137":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76]},{"1":[2,77],"4":[2,77],"29":[2,77],"30":[2,77],"46":[2,77],"51":[2,77],"59":[2,77],"63":[2,77],"74":[2,77],"75":[2,77],"76":[2,77],"77":[2,77],"80":[2,77],"81":[2,77],"82":[2,77],"83":[2,77],"86":[2,77],"94":[2,77],"96":[2,77],"100":[2,77],"108":[2,77],"110":[2,77],"111":[2,77],"112":[2,77],"116":[2,77],"122":[2,77],"123":[2,77],"124":[2,77],"133":[2,77],"134":[2,77],"135":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77]},{"1":[2,35],"4":[2,35],"29":[2,35],"30":[2,35],"51":[2,35],"59":[2,35],"63":[2,35],"74":[2,35],"75":[2,35],"76":[2,35],"77":[2,35],"80":[2,35],"81":[2,35],"82":[2,35],"83":[2,35],"86":[2,35],"94":[2,35],"96":[2,35],"100":[2,35],"108":[2,35],"110":[2,35],"111":[2,35],"112":[2,35],"116":[2,35],"122":[2,35],"123":[2,35],"124":[2,35],"133":[2,35],"134":[2,35],"135":[2,35],"136":[2,35],"137":[2,35],"138":[2,35],"139":[2,35],"140":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35]},{"1":[2,36],"4":[2,36],"29":[2,36],"30":[2,36],"51":[2,36],"59":[2,36],"63":[2,36],"74":[2,36],"75":[2,36],"76":[2,36],"77":[2,36],"80":[2,36],"81":[2,36],"82":[2,36],"83":[2,36],"86":[2,36],"94":[2,36],"96":[2,36],"100":[2,36],"108":[2,36],"110":[2,36],"111":[2,36],"112":[2,36],"116":[2,36],"122":[2,36],"123":[2,36],"124":[2,36],"133":[2,36],"134":[2,36],"135":[2,36],"136":[2,36],"137":[2,36],"138":[2,36],"139":[2,36],"140":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36]},{"1":[2,37],"4":[2,37],"29":[2,37],"30":[2,37],"51":[2,37],"59":[2,37],"63":[2,37],"74":[2,37],"75":[2,37],"76":[2,37],"77":[2,37],"80":[2,37],"81":[2,37],"82":[2,37],"83":[2,37],"86":[2,37],"94":[2,37],"96":[2,37],"100":[2,37],"108":[2,37],"110":[2,37],"111":[2,37],"112":[2,37],"116":[2,37],"122":[2,37],"123":[2,37],"124":[2,37],"133":[2,37],"134":[2,37],"135":[2,37],"136":[2,37],"137":[2,37],"138":[2,37],"139":[2,37],"140":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37]},{"1":[2,38],"4":[2,38],"29":[2,38],"30":[2,38],"51":[2,38],"59":[2,38],"63":[2,38],"74":[2,38],"75":[2,38],"76":[2,38],"77":[2,38],"80":[2,38],"81":[2,38],"82":[2,38],"83":[2,38],"86":[2,38],"94":[2,38],"96":[2,38],"100":[2,38],"108":[2,38],"110":[2,38],"111":[2,38],"112":[2,38],"116":[2,38],"122":[2,38],"123":[2,38],"124":[2,38],"133":[2,38],"134":[2,38],"135":[2,38],"136":[2,38],"137":[2,38],"138":[2,38],"139":[2,38],"140":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38]},{"1":[2,39],"4":[2,39],"29":[2,39],"30":[2,39],"51":[2,39],"59":[2,39],"63":[2,39],"74":[2,39],"75":[2,39],"76":[2,39],"77":[2,39],"80":[2,39],"81":[2,39],"82":[2,39],"83":[2,39],"86":[2,39],"94":[2,39],"96":[2,39],"100":[2,39],"108":[2,39],"110":[2,39],"111":[2,39],"112":[2,39],"116":[2,39],"122":[2,39],"123":[2,39],"124":[2,39],"133":[2,39],"134":[2,39],"135":[2,39],"136":[2,39],"137":[2,39],"138":[2,39],"139":[2,39],"140":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39]},{"1":[2,40],"4":[2,40],"29":[2,40],"30":[2,40],"51":[2,40],"59":[2,40],"63":[2,40],"74":[2,40],"75":[2,40],"76":[2,40],"77":[2,40],"80":[2,40],"81":[2,40],"82":[2,40],"83":[2,40],"86":[2,40],"94":[2,40],"96":[2,40],"100":[2,40],"108":[2,40],"110":[2,40],"111":[2,40],"112":[2,40],"116":[2,40],"122":[2,40],"123":[2,40],"124":[2,40],"133":[2,40],"134":[2,40],"135":[2,40],"136":[2,40],"137":[2,40],"138":[2,40],"139":[2,40],"140":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40]},{"1":[2,41],"4":[2,41],"29":[2,41],"30":[2,41],"51":[2,41],"59":[2,41],"63":[2,41],"74":[2,41],"75":[2,41],"76":[2,41],"77":[2,41],"80":[2,41],"81":[2,41],"82":[2,41],"83":[2,41],"86":[2,41],"94":[2,41],"96":[2,41],"100":[2,41],"108":[2,41],"110":[2,41],"111":[2,41],"112":[2,41],"116":[2,41],"122":[2,41],"123":[2,41],"124":[2,41],"133":[2,41],"134":[2,41],"135":[2,41],"136":[2,41],"137":[2,41],"138":[2,41],"139":[2,41],"140":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41]},{"1":[2,42],"4":[2,42],"29":[2,42],"30":[2,42],"51":[2,42],"59":[2,42],"63":[2,42],"74":[2,42],"75":[2,42],"76":[2,42],"77":[2,42],"80":[2,42],"81":[2,42],"82":[2,42],"83":[2,42],"86":[2,42],"94":[2,42],"96":[2,42],"100":[2,42],"108":[2,42],"110":[2,42],"111":[2,42],"112":[2,42],"116":[2,42],"122":[2,42],"123":[2,42],"124":[2,42],"133":[2,42],"134":[2,42],"135":[2,42],"136":[2,42],"137":[2,42],"138":[2,42],"139":[2,42],"140":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42]},{"1":[2,43],"4":[2,43],"29":[2,43],"30":[2,43],"51":[2,43],"59":[2,43],"63":[2,43],"74":[2,43],"75":[2,43],"76":[2,43],"77":[2,43],"80":[2,43],"81":[2,43],"82":[2,43],"83":[2,43],"86":[2,43],"94":[2,43],"96":[2,43],"100":[2,43],"108":[2,43],"110":[2,43],"111":[2,43],"112":[2,43],"116":[2,43],"122":[2,43],"123":[2,43],"124":[2,43],"133":[2,43],"134":[2,43],"135":[2,43],"136":[2,43],"137":[2,43],"138":[2,43],"139":[2,43],"140":[2,43],"141":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43]},{"7":160,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"4":[2,128],"8":161,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,128],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"59":[2,128],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"95":162,"97":[1,70],"98":[1,68],"99":[1,67],"100":[2,128],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,120],"4":[2,120],"29":[2,120],"30":[2,120],"51":[2,120],"59":[2,120],"63":[2,120],"74":[2,120],"75":[2,120],"76":[2,120],"77":[2,120],"80":[2,120],"81":[2,120],"82":[2,120],"83":[2,120],"86":[2,120],"94":[2,120],"96":[2,120],"100":[2,120],"108":[2,120],"110":[2,120],"111":[2,120],"112":[2,120],"116":[2,120],"122":[2,120],"123":[2,120],"124":[2,120],"133":[2,120],"134":[2,120],"135":[2,120],"136":[2,120],"137":[2,120],"138":[2,120],"139":[2,120],"140":[2,120],"141":[2,120],"142":[2,120],"143":[2,120],"144":[2,120],"145":[2,120],"146":[2,120],"147":[2,120]},{"1":[2,121],"4":[2,121],"29":[2,121],"30":[2,121],"31":163,"32":[1,85],"51":[2,121],"59":[2,121],"63":[2,121],"74":[2,121],"75":[2,121],"76":[2,121],"77":[2,121],"80":[2,121],"81":[2,121],"82":[2,121],"83":[2,121],"86":[2,121],"94":[2,121],"96":[2,121],"100":[2,121],"108":[2,121],"110":[2,121],"111":[2,121],"112":[2,121],"116":[2,121],"122":[2,121],"123":[2,121],"124":[2,121],"133":[2,121],"134":[2,121],"135":[2,121],"136":[2,121],"137":[2,121],"138":[2,121],"139":[2,121],"140":[2,121],"141":[2,121],"142":[2,121],"143":[2,121],"144":[2,121],"145":[2,121],"146":[2,121],"147":[2,121]},{"1":[2,118],"4":[2,118],"29":[2,118],"30":[2,118],"51":[2,118],"59":[2,118],"63":[2,118],"81":[2,118],"86":[2,118],"93":164,"94":[1,118],"96":[2,118],"100":[2,118],"108":[2,118],"110":[2,118],"111":[2,118],"112":[2,118],"116":[2,118],"122":[2,118],"123":[2,118],"124":[2,118],"133":[2,118],"134":[2,118],"135":[2,118],"136":[2,118],"137":[2,118],"138":[2,118],"139":[2,118],"140":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"147":[2,118]},{"4":[2,59],"29":[2,59]},{"4":[2,60],"29":[2,60]},{"8":165,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":166,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":167,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":168,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"4":[1,140],"6":169,"8":170,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"31":175,"32":[1,85],"68":176,"69":177,"71":171,"84":[1,82],"99":[1,67],"119":172,"120":[1,173],"121":174},{"118":178,"122":[1,179],"123":[1,180]},{"1":[2,71],"4":[2,71],"29":[2,71],"30":[2,71],"46":[2,71],"51":[2,71],"59":[2,71],"63":[2,71],"74":[2,71],"75":[2,71],"76":[2,71],"77":[2,71],"80":[2,71],"81":[2,71],"82":[2,71],"83":[2,71],"86":[2,71],"88":[2,71],"94":[2,71],"96":[2,71],"100":[2,71],"108":[2,71],"110":[2,71],"111":[2,71],"112":[2,71],"116":[2,71],"122":[2,71],"123":[2,71],"124":[2,71],"133":[2,71],"134":[2,71],"135":[2,71],"136":[2,71],"137":[2,71],"138":[2,71],"139":[2,71],"140":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71]},{"1":[2,74],"4":[2,74],"29":[2,74],"30":[2,74],"46":[2,74],"51":[2,74],"59":[2,74],"63":[2,74],"74":[2,74],"75":[2,74],"76":[2,74],"77":[2,74],"80":[2,74],"81":[2,74],"82":[2,74],"83":[2,74],"86":[2,74],"88":[2,74],"94":[2,74],"96":[2,74],"100":[2,74],"108":[2,74],"110":[2,74],"111":[2,74],"112":[2,74],"116":[2,74],"122":[2,74],"123":[2,74],"124":[2,74],"133":[2,74],"134":[2,74],"135":[2,74],"136":[2,74],"137":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74]},{"4":[2,94],"28":185,"29":[2,94],"31":183,"32":[1,85],"33":184,"34":[1,83],"35":[1,84],"47":182,"50":[1,52],"59":[2,94],"85":181,"86":[2,94]},{"1":[2,33],"4":[2,33],"29":[2,33],"30":[2,33],"48":[2,33],"51":[2,33],"59":[2,33],"63":[2,33],"74":[2,33],"75":[2,33],"76":[2,33],"77":[2,33],"80":[2,33],"81":[2,33],"82":[2,33],"83":[2,33],"86":[2,33],"94":[2,33],"96":[2,33],"100":[2,33],"108":[2,33],"110":[2,33],"111":[2,33],"112":[2,33],"116":[2,33],"122":[2,33],"123":[2,33],"124":[2,33],"133":[2,33],"134":[2,33],"135":[2,33],"136":[2,33],"137":[2,33],"138":[2,33],"139":[2,33],"140":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33]},{"1":[2,34],"4":[2,34],"29":[2,34],"30":[2,34],"48":[2,34],"51":[2,34],"59":[2,34],"63":[2,34],"74":[2,34],"75":[2,34],"76":[2,34],"77":[2,34],"80":[2,34],"81":[2,34],"82":[2,34],"83":[2,34],"86":[2,34],"94":[2,34],"96":[2,34],"100":[2,34],"108":[2,34],"110":[2,34],"111":[2,34],"112":[2,34],"116":[2,34],"122":[2,34],"123":[2,34],"124":[2,34],"133":[2,34],"134":[2,34],"135":[2,34],"136":[2,34],"137":[2,34],"138":[2,34],"139":[2,34],"140":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34]},{"1":[2,32],"4":[2,32],"29":[2,32],"30":[2,32],"46":[2,32],"48":[2,32],"51":[2,32],"59":[2,32],"63":[2,32],"74":[2,32],"75":[2,32],"76":[2,32],"77":[2,32],"80":[2,32],"81":[2,32],"82":[2,32],"83":[2,32],"86":[2,32],"88":[2,32],"94":[2,32],"96":[2,32],"100":[2,32],"108":[2,32],"110":[2,32],"111":[2,32],"112":[2,32],"116":[2,32],"122":[2,32],"123":[2,32],"124":[2,32],"133":[2,32],"134":[2,32],"135":[2,32],"136":[2,32],"137":[2,32],"138":[2,32],"139":[2,32],"140":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32]},{"1":[2,31],"4":[2,31],"29":[2,31],"30":[2,31],"51":[2,31],"59":[2,31],"63":[2,31],"81":[2,31],"86":[2,31],"96":[2,31],"100":[2,31],"104":[2,31],"105":[2,31],"108":[2,31],"110":[2,31],"111":[2,31],"112":[2,31],"116":[2,31],"122":[2,31],"123":[2,31],"124":[2,31],"127":[2,31],"129":[2,31],"133":[2,31],"134":[2,31],"135":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31],"140":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"147":[2,31]},{"1":[2,7],"4":[2,7],"7":186,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,7],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,4]},{"4":[1,87],"30":[1,187]},{"1":[2,30],"4":[2,30],"29":[2,30],"30":[2,30],"51":[2,30],"59":[2,30],"63":[2,30],"81":[2,30],"86":[2,30],"96":[2,30],"100":[2,30],"104":[2,30],"105":[2,30],"108":[2,30],"110":[2,30],"111":[2,30],"112":[2,30],"116":[2,30],"122":[2,30],"123":[2,30],"124":[2,30],"127":[2,30],"129":[2,30],"133":[2,30],"134":[2,30],"135":[2,30],"136":[2,30],"137":[2,30],"138":[2,30],"139":[2,30],"140":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"147":[2,30]},{"1":[2,192],"4":[2,192],"29":[2,192],"30":[2,192],"51":[2,192],"59":[2,192],"63":[2,192],"81":[2,192],"86":[2,192],"96":[2,192],"100":[2,192],"108":[2,192],"110":[2,192],"111":[2,192],"112":[2,192],"116":[2,192],"122":[2,192],"123":[2,192],"124":[2,192],"133":[2,192],"134":[2,192],"135":[2,192],"136":[2,192],"137":[2,192],"138":[2,192],"139":[2,192],"140":[2,192],"141":[2,192],"142":[2,192],"143":[2,192],"144":[2,192],"145":[2,192],"147":[2,192]},{"1":[2,193],"4":[2,193],"29":[2,193],"30":[2,193],"51":[2,193],"59":[2,193],"63":[2,193],"81":[2,193],"86":[2,193],"96":[2,193],"100":[2,193],"108":[2,193],"110":[2,193],"111":[2,193],"112":[2,193],"116":[2,193],"122":[2,193],"123":[2,193],"124":[2,193],"133":[2,193],"134":[2,193],"135":[2,193],"136":[2,193],"137":[2,193],"138":[2,193],"139":[2,193],"140":[2,193],"141":[2,193],"142":[2,193],"143":[2,193],"144":[2,193],"145":[2,193],"147":[2,193]},{"1":[2,56],"4":[2,56],"8":188,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,56],"30":[2,56],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"51":[2,56],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"59":[2,56],"62":[1,69],"63":[2,56],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"81":[2,56],"84":[1,82],"86":[2,56],"87":[1,51],"91":35,"92":[1,36],"96":[2,56],"97":[1,70],"98":[1,68],"99":[1,67],"100":[2,56],"102":[1,45],"106":[1,54],"107":[1,66],"108":[2,56],"109":46,"110":[2,56],"111":[2,56],"112":[2,56],"113":47,"114":[1,77],"115":48,"116":[2,56],"117":79,"122":[2,56],"123":[2,56],"124":[2,56],"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"133":[2,56],"134":[2,56],"135":[2,56],"136":[2,56],"137":[2,56],"138":[2,56],"139":[2,56],"140":[2,56],"141":[2,56],"142":[2,56],"143":[2,56],"144":[2,56],"145":[2,56],"147":[2,56]},{"8":189,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":190,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":191,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":192,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":193,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":194,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":195,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":196,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":197,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":198,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":199,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"122":[1,200],"123":[1,201]},{"8":202,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":203,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,147],"4":[2,147],"29":[2,147],"30":[2,147],"51":[2,147],"59":[2,147],"63":[2,147],"81":[2,147],"86":[2,147],"96":[2,147],"100":[2,147],"108":[2,147],"110":[2,147],"111":[2,147],"112":[2,147],"116":[2,147],"122":[2,147],"123":[2,147],"124":[2,147],"133":[2,147],"134":[2,147],"135":[2,147],"136":[2,147],"137":[2,147],"138":[2,147],"139":[2,147],"140":[2,147],"141":[2,147],"142":[2,147],"143":[2,147],"144":[2,147],"145":[2,147],"147":[2,147]},{"1":[2,152],"4":[2,152],"29":[2,152],"30":[2,152],"51":[2,152],"59":[2,152],"63":[2,152],"81":[2,152],"86":[2,152],"96":[2,152],"100":[2,152],"108":[2,152],"110":[2,152],"111":[2,152],"112":[2,152],"116":[2,152],"122":[2,152],"123":[2,152],"124":[2,152],"133":[2,152],"134":[2,152],"135":[2,152],"136":[2,152],"137":[2,152],"138":[2,152],"139":[2,152],"140":[2,152],"141":[2,152],"142":[2,152],"143":[2,152],"144":[2,152],"145":[2,152],"147":[2,152]},{"63":[1,204]},{"8":205,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":206,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,146],"4":[2,146],"29":[2,146],"30":[2,146],"51":[2,146],"59":[2,146],"63":[2,146],"81":[2,146],"86":[2,146],"96":[2,146],"100":[2,146],"108":[2,146],"110":[2,146],"111":[2,146],"112":[2,146],"116":[2,146],"122":[2,146],"123":[2,146],"124":[2,146],"133":[2,146],"134":[2,146],"135":[2,146],"136":[2,146],"137":[2,146],"138":[2,146],"139":[2,146],"140":[2,146],"141":[2,146],"142":[2,146],"143":[2,146],"144":[2,146],"145":[2,146],"147":[2,146]},{"1":[2,151],"4":[2,151],"29":[2,151],"30":[2,151],"51":[2,151],"59":[2,151],"63":[2,151],"81":[2,151],"86":[2,151],"96":[2,151],"100":[2,151],"108":[2,151],"110":[2,151],"111":[2,151],"112":[2,151],"116":[2,151],"122":[2,151],"123":[2,151],"124":[2,151],"133":[2,151],"134":[2,151],"135":[2,151],"136":[2,151],"137":[2,151],"138":[2,151],"139":[2,151],"140":[2,151],"141":[2,151],"142":[2,151],"143":[2,151],"144":[2,151],"145":[2,151],"147":[2,151]},{"8":207,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,208],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,115],"4":[2,115],"29":[2,115],"30":[2,115],"51":[2,115],"59":[2,115],"63":[2,115],"74":[2,115],"75":[2,115],"76":[2,115],"77":[2,115],"80":[2,115],"81":[2,115],"82":[2,115],"83":[2,115],"86":[2,115],"94":[2,115],"96":[2,115],"100":[2,115],"108":[2,115],"110":[2,115],"111":[2,115],"112":[2,115],"116":[2,115],"122":[2,115],"123":[2,115],"124":[2,115],"133":[2,115],"134":[2,115],"135":[2,115],"136":[2,115],"137":[2,115],"138":[2,115],"139":[2,115],"140":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"147":[2,115]},{"1":[2,72],"4":[2,72],"29":[2,72],"30":[2,72],"46":[2,72],"51":[2,72],"59":[2,72],"63":[2,72],"74":[2,72],"75":[2,72],"76":[2,72],"77":[2,72],"80":[2,72],"81":[2,72],"82":[2,72],"83":[2,72],"86":[2,72],"88":[2,72],"94":[2,72],"96":[2,72],"100":[2,72],"108":[2,72],"110":[2,72],"111":[2,72],"112":[2,72],"116":[2,72],"122":[2,72],"123":[2,72],"124":[2,72],"133":[2,72],"134":[2,72],"135":[2,72],"136":[2,72],"137":[2,72],"138":[2,72],"139":[2,72],"140":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72]},{"4":[2,128],"8":210,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,128],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"59":[2,128],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"95":209,"96":[2,128],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"31":211,"32":[1,85]},{"31":212,"32":[1,85]},{"1":[2,86],"4":[2,86],"29":[2,86],"30":[2,86],"46":[2,86],"51":[2,86],"59":[2,86],"63":[2,86],"74":[2,86],"75":[2,86],"76":[2,86],"77":[2,86],"80":[2,86],"81":[2,86],"82":[2,86],"83":[2,86],"86":[2,86],"88":[2,86],"94":[2,86],"96":[2,86],"100":[2,86],"108":[2,86],"110":[2,86],"111":[2,86],"112":[2,86],"116":[2,86],"122":[2,86],"123":[2,86],"124":[2,86],"133":[2,86],"134":[2,86],"135":[2,86],"136":[2,86],"137":[2,86],"138":[2,86],"139":[2,86],"140":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86]},{"31":213,"32":[1,85]},{"1":[2,88],"4":[2,88],"29":[2,88],"30":[2,88],"46":[2,88],"51":[2,88],"59":[2,88],"63":[2,88],"74":[2,88],"75":[2,88],"76":[2,88],"77":[2,88],"80":[2,88],"81":[2,88],"82":[2,88],"83":[2,88],"86":[2,88],"88":[2,88],"94":[2,88],"96":[2,88],"100":[2,88],"108":[2,88],"110":[2,88],"111":[2,88],"112":[2,88],"116":[2,88],"122":[2,88],"123":[2,88],"124":[2,88],"133":[2,88],"134":[2,88],"135":[2,88],"136":[2,88],"137":[2,88],"138":[2,88],"139":[2,88],"140":[2,88],"141":[2,88],"142":[2,88],"143":[2,88],"144":[2,88],"145":[2,88],"146":[2,88],"147":[2,88]},{"1":[2,89],"4":[2,89],"29":[2,89],"30":[2,89],"46":[2,89],"51":[2,89],"59":[2,89],"63":[2,89],"74":[2,89],"75":[2,89],"76":[2,89],"77":[2,89],"80":[2,89],"81":[2,89],"82":[2,89],"83":[2,89],"86":[2,89],"88":[2,89],"94":[2,89],"96":[2,89],"100":[2,89],"108":[2,89],"110":[2,89],"111":[2,89],"112":[2,89],"116":[2,89],"122":[2,89],"123":[2,89],"124":[2,89],"133":[2,89],"134":[2,89],"135":[2,89],"136":[2,89],"137":[2,89],"138":[2,89],"139":[2,89],"140":[2,89],"141":[2,89],"142":[2,89],"143":[2,89],"144":[2,89],"145":[2,89],"146":[2,89],"147":[2,89]},{"8":214,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"78":215,"80":[1,216],"82":[1,126],"83":[1,127]},{"78":217,"80":[1,216],"82":[1,126],"83":[1,127]},{"8":218,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,219],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,116],"4":[2,116],"29":[2,116],"30":[2,116],"51":[2,116],"59":[2,116],"63":[2,116],"74":[2,116],"75":[2,116],"76":[2,116],"77":[2,116],"80":[2,116],"81":[2,116],"82":[2,116],"83":[2,116],"86":[2,116],"94":[2,116],"96":[2,116],"100":[2,116],"108":[2,116],"110":[2,116],"111":[2,116],"112":[2,116],"116":[2,116],"122":[2,116],"123":[2,116],"124":[2,116],"133":[2,116],"134":[2,116],"135":[2,116],"136":[2,116],"137":[2,116],"138":[2,116],"139":[2,116],"140":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"147":[2,116]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"46":[2,73],"51":[2,73],"59":[2,73],"63":[2,73],"74":[2,73],"75":[2,73],"76":[2,73],"77":[2,73],"80":[2,73],"81":[2,73],"82":[2,73],"83":[2,73],"86":[2,73],"88":[2,73],"94":[2,73],"96":[2,73],"100":[2,73],"108":[2,73],"110":[2,73],"111":[2,73],"112":[2,73],"116":[2,73],"122":[2,73],"123":[2,73],"124":[2,73],"133":[2,73],"134":[2,73],"135":[2,73],"136":[2,73],"137":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73]},{"1":[2,112],"4":[2,112],"29":[2,112],"30":[2,112],"51":[2,112],"59":[2,112],"63":[2,112],"65":130,"74":[1,119],"75":[1,120],"76":[1,121],"77":[1,122],"78":123,"79":124,"80":[1,125],"81":[2,112],"82":[1,126],"83":[1,127],"86":[2,112],"93":129,"94":[1,118],"96":[2,112],"100":[2,112],"108":[2,112],"110":[2,112],"111":[2,112],"112":[2,112],"116":[2,112],"122":[2,112],"123":[2,112],"124":[2,112],"133":[2,112],"134":[2,112],"135":[2,112],"136":[2,112],"137":[2,112],"138":[2,112],"139":[2,112],"140":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"147":[2,112]},{"1":[2,113],"4":[2,113],"29":[2,113],"30":[2,113],"51":[2,113],"59":[2,113],"63":[2,113],"65":117,"74":[1,119],"75":[1,120],"76":[1,121],"77":[1,122],"78":123,"79":124,"80":[1,125],"81":[2,113],"82":[1,126],"83":[1,127],"86":[2,113],"93":116,"94":[1,118],"96":[2,113],"100":[2,113],"108":[2,113],"110":[2,113],"111":[2,113],"112":[2,113],"116":[2,113],"122":[2,113],"123":[2,113],"124":[2,113],"133":[2,113],"134":[2,113],"135":[2,113],"136":[2,113],"137":[2,113],"138":[2,113],"139":[2,113],"140":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"147":[2,113]},{"1":[2,78],"4":[2,78],"29":[2,78],"30":[2,78],"51":[2,78],"59":[2,78],"63":[2,78],"74":[2,78],"75":[2,78],"76":[2,78],"77":[2,78],"80":[2,78],"81":[2,78],"82":[2,78],"83":[2,78],"86":[2,78],"94":[2,78],"96":[2,78],"100":[2,78],"108":[2,78],"110":[2,78],"111":[2,78],"112":[2,78],"116":[2,78],"122":[2,78],"123":[2,78],"124":[2,78],"133":[2,78],"134":[2,78],"135":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"147":[2,78]},{"1":[2,75],"4":[2,75],"29":[2,75],"30":[2,75],"51":[2,75],"59":[2,75],"63":[2,75],"74":[2,75],"75":[2,75],"76":[2,75],"77":[2,75],"80":[2,75],"81":[2,75],"82":[2,75],"83":[2,75],"86":[2,75],"94":[2,75],"96":[2,75],"100":[2,75],"108":[2,75],"110":[2,75],"111":[2,75],"112":[2,75],"116":[2,75],"122":[2,75],"123":[2,75],"124":[2,75],"133":[2,75],"134":[2,75],"135":[2,75],"136":[2,75],"137":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"147":[2,75]},{"54":[1,220],"59":[1,221]},{"54":[2,64],"59":[2,64]},{"54":[2,66],"59":[2,66],"63":[1,222]},{"61":[1,223]},{"1":[2,58],"4":[2,58],"29":[2,58],"30":[2,58],"51":[2,58],"59":[2,58],"63":[2,58],"81":[2,58],"86":[2,58],"96":[2,58],"100":[2,58],"108":[2,58],"110":[2,58],"111":[2,58],"112":[2,58],"116":[2,58],"122":[2,58],"123":[2,58],"124":[2,58],"133":[2,58],"134":[2,58],"135":[2,58],"136":[2,58],"137":[2,58],"138":[2,58],"139":[2,58],"140":[2,58],"141":[2,58],"142":[2,58],"143":[2,58],"144":[2,58],"145":[2,58],"147":[2,58]},{"28":86,"50":[1,52]},{"1":[2,187],"4":[2,187],"29":[2,187],"30":[2,187],"51":[1,93],"59":[2,187],"63":[2,187],"81":[2,187],"86":[2,187],"96":[2,187],"100":[2,187],"108":[2,187],"109":108,"110":[2,187],"111":[2,187],"112":[2,187],"115":109,"116":[2,187],"117":79,"122":[2,187],"123":[2,187],"124":[2,187],"133":[2,187],"134":[2,187],"135":[1,105],"136":[2,187],"137":[2,187],"138":[1,91],"139":[1,92],"140":[2,187],"141":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"147":[2,187]},{"109":113,"110":[1,75],"112":[1,76],"115":114,"116":[1,78],"117":79,"133":[1,111],"134":[1,112]},{"1":[2,188],"4":[2,188],"29":[2,188],"30":[2,188],"51":[1,93],"59":[2,188],"63":[2,188],"81":[2,188],"86":[2,188],"96":[2,188],"100":[2,188],"108":[2,188],"109":108,"110":[2,188],"111":[2,188],"112":[2,188],"115":109,"116":[2,188],"117":79,"122":[2,188],"123":[2,188],"124":[2,188],"133":[2,188],"134":[2,188],"135":[1,105],"136":[2,188],"137":[2,188],"138":[1,91],"139":[1,92],"140":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"147":[2,188]},{"1":[2,189],"4":[2,189],"29":[2,189],"30":[2,189],"51":[1,93],"59":[2,189],"63":[2,189],"81":[2,189],"86":[2,189],"96":[2,189],"100":[2,189],"108":[2,189],"109":108,"110":[2,189],"111":[2,189],"112":[2,189],"115":109,"116":[2,189],"117":79,"122":[2,189],"123":[2,189],"124":[2,189],"133":[2,189],"134":[2,189],"135":[1,105],"136":[2,189],"137":[2,189],"138":[1,91],"139":[1,92],"140":[2,189],"141":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"147":[2,189]},{"1":[2,190],"4":[2,190],"29":[2,190],"30":[2,190],"51":[1,93],"59":[2,190],"63":[2,190],"81":[2,190],"86":[2,190],"96":[2,190],"100":[2,190],"108":[2,190],"109":108,"110":[2,190],"111":[2,190],"112":[2,190],"115":109,"116":[2,190],"117":79,"122":[2,190],"123":[2,190],"124":[2,190],"133":[2,190],"134":[2,190],"135":[2,190],"136":[2,190],"137":[2,190],"140":[2,190],"141":[2,190],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"147":[2,190]},{"1":[2,191],"4":[2,191],"29":[2,191],"30":[2,191],"51":[1,93],"59":[2,191],"63":[2,191],"81":[2,191],"86":[2,191],"96":[2,191],"100":[2,191],"108":[2,191],"109":108,"110":[2,191],"111":[2,191],"112":[2,191],"115":109,"116":[2,191],"117":79,"122":[2,191],"123":[2,191],"124":[2,191],"133":[2,191],"134":[2,191],"135":[2,191],"136":[2,191],"137":[2,191],"140":[2,191],"141":[2,191],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"147":[2,191]},{"4":[1,140],"6":225,"29":[1,6],"131":[1,224]},{"103":226,"104":[1,227],"105":[1,228]},{"1":[2,145],"4":[2,145],"29":[2,145],"30":[2,145],"51":[2,145],"59":[2,145],"63":[2,145],"81":[2,145],"86":[2,145],"96":[2,145],"100":[2,145],"108":[2,145],"110":[2,145],"111":[2,145],"112":[2,145],"116":[2,145],"122":[2,145],"123":[2,145],"124":[2,145],"133":[2,145],"134":[2,145],"135":[2,145],"136":[2,145],"137":[2,145],"138":[2,145],"139":[2,145],"140":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"147":[2,145]},{"1":[2,153],"4":[2,153],"29":[2,153],"30":[2,153],"51":[2,153],"59":[2,153],"63":[2,153],"81":[2,153],"86":[2,153],"96":[2,153],"100":[2,153],"108":[2,153],"110":[2,153],"111":[2,153],"112":[2,153],"116":[2,153],"122":[2,153],"123":[2,153],"124":[2,153],"133":[2,153],"134":[2,153],"135":[2,153],"136":[2,153],"137":[2,153],"138":[2,153],"139":[2,153],"140":[2,153],"141":[2,153],"142":[2,153],"143":[2,153],"144":[2,153],"145":[2,153],"147":[2,153]},{"29":[1,229],"51":[1,93],"63":[1,110],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"126":230,"128":231,"129":[1,232]},{"14":233,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":133,"62":[1,69],"64":134,"66":157,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"98":[1,68],"99":[1,67],"107":[1,66]},{"1":[2,99],"4":[2,99],"29":[1,235],"30":[2,99],"51":[2,99],"59":[2,99],"63":[2,99],"74":[2,75],"75":[2,75],"76":[2,75],"77":[2,75],"80":[2,75],"81":[2,99],"82":[2,75],"83":[2,75],"86":[2,99],"88":[1,234],"94":[2,75],"96":[2,99],"100":[2,99],"108":[2,99],"110":[2,99],"111":[2,99],"112":[2,99],"116":[2,99],"122":[2,99],"123":[2,99],"124":[2,99],"133":[2,99],"134":[2,99],"135":[2,99],"136":[2,99],"137":[2,99],"138":[2,99],"139":[2,99],"140":[2,99],"141":[2,99],"142":[2,99],"143":[2,99],"144":[2,99],"145":[2,99],"147":[2,99]},{"4":[2,106],"28":185,"30":[2,106],"31":183,"32":[1,85],"33":184,"34":[1,83],"35":[1,84],"47":239,"50":[1,52],"62":[1,241],"67":240,"84":[1,238],"89":236,"90":237},{"65":117,"74":[1,119],"75":[1,120],"76":[1,121],"77":[1,122],"78":123,"79":124,"80":[1,125],"82":[1,126],"83":[1,127],"93":116,"94":[1,118]},{"65":130,"74":[1,119],"75":[1,120],"76":[1,121],"77":[1,122],"78":123,"79":124,"80":[1,125],"82":[1,126],"83":[1,127],"93":129,"94":[1,118]},{"1":[2,53],"4":[2,53],"30":[2,53],"51":[1,93],"63":[1,110],"108":[2,53],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[2,53],"134":[2,53],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,139],"4":[2,139],"30":[2,139],"51":[1,93],"63":[1,110],"108":[2,139],"109":108,"110":[2,139],"112":[2,139],"115":109,"116":[2,139],"117":79,"122":[1,103],"123":[1,104],"133":[2,139],"134":[2,139],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"108":[1,242]},{"4":[2,129],"29":[2,129],"51":[1,93],"59":[2,129],"63":[1,243],"100":[2,129],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"4":[2,61],"29":[2,61],"58":244,"59":[1,245],"100":[2,61]},{"1":[2,122],"4":[2,122],"29":[2,122],"30":[2,122],"46":[2,122],"48":[2,122],"51":[2,122],"59":[2,122],"63":[2,122],"74":[2,122],"75":[2,122],"76":[2,122],"77":[2,122],"80":[2,122],"81":[2,122],"82":[2,122],"83":[2,122],"86":[2,122],"88":[2,122],"94":[2,122],"96":[2,122],"100":[2,122],"108":[2,122],"110":[2,122],"111":[2,122],"112":[2,122],"116":[2,122],"122":[2,122],"123":[2,122],"124":[2,122],"133":[2,122],"134":[2,122],"135":[2,122],"136":[2,122],"137":[2,122],"138":[2,122],"139":[2,122],"140":[2,122],"141":[2,122],"142":[2,122],"143":[2,122],"144":[2,122],"145":[2,122],"146":[2,122],"147":[2,122]},{"1":[2,119],"4":[2,119],"29":[2,119],"30":[2,119],"51":[2,119],"59":[2,119],"63":[2,119],"81":[2,119],"86":[2,119],"96":[2,119],"100":[2,119],"108":[2,119],"110":[2,119],"111":[2,119],"112":[2,119],"116":[2,119],"122":[2,119],"123":[2,119],"124":[2,119],"133":[2,119],"134":[2,119],"135":[2,119],"136":[2,119],"137":[2,119],"138":[2,119],"139":[2,119],"140":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"147":[2,119]},{"4":[1,140],"6":246,"29":[1,6],"51":[1,93],"63":[1,110],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"4":[1,140],"6":247,"29":[1,6],"51":[1,93],"63":[1,110],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,141],"4":[2,141],"29":[2,141],"30":[2,141],"51":[1,93],"59":[2,141],"63":[1,110],"81":[2,141],"86":[2,141],"96":[2,141],"100":[2,141],"108":[2,141],"109":108,"110":[1,75],"111":[1,248],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"124":[2,141],"133":[2,141],"134":[2,141],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,143],"4":[2,143],"29":[2,143],"30":[2,143],"51":[1,93],"59":[2,143],"63":[1,110],"81":[2,143],"86":[2,143],"96":[2,143],"100":[2,143],"108":[2,143],"109":108,"110":[1,75],"111":[1,249],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"124":[2,143],"133":[2,143],"134":[2,143],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,149],"4":[2,149],"29":[2,149],"30":[2,149],"51":[2,149],"59":[2,149],"63":[2,149],"81":[2,149],"86":[2,149],"96":[2,149],"100":[2,149],"108":[2,149],"110":[2,149],"111":[2,149],"112":[2,149],"116":[2,149],"122":[2,149],"123":[2,149],"124":[2,149],"133":[2,149],"134":[2,149],"135":[2,149],"136":[2,149],"137":[2,149],"138":[2,149],"139":[2,149],"140":[2,149],"141":[2,149],"142":[2,149],"143":[2,149],"144":[2,149],"145":[2,149],"147":[2,149]},{"1":[2,150],"4":[2,150],"29":[2,150],"30":[2,150],"51":[1,93],"59":[2,150],"63":[1,110],"81":[2,150],"86":[2,150],"96":[2,150],"100":[2,150],"108":[2,150],"109":108,"110":[1,75],"111":[2,150],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"124":[2,150],"133":[2,150],"134":[2,150],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,154],"4":[2,154],"29":[2,154],"30":[2,154],"51":[2,154],"59":[2,154],"63":[2,154],"81":[2,154],"86":[2,154],"96":[2,154],"100":[2,154],"108":[2,154],"110":[2,154],"111":[2,154],"112":[2,154],"116":[2,154],"122":[2,154],"123":[2,154],"124":[2,154],"133":[2,154],"134":[2,154],"135":[2,154],"136":[2,154],"137":[2,154],"138":[2,154],"139":[2,154],"140":[2,154],"141":[2,154],"142":[2,154],"143":[2,154],"144":[2,154],"145":[2,154],"147":[2,154]},{"122":[2,156],"123":[2,156]},{"31":175,"32":[1,85],"68":176,"69":177,"84":[1,82],"99":[1,251],"119":250,"121":174},{"59":[1,252],"122":[2,161],"123":[2,161]},{"59":[2,158],"122":[2,158],"123":[2,158]},{"59":[2,159],"122":[2,159],"123":[2,159]},{"59":[2,160],"122":[2,160],"123":[2,160]},{"1":[2,155],"4":[2,155],"29":[2,155],"30":[2,155],"51":[2,155],"59":[2,155],"63":[2,155],"81":[2,155],"86":[2,155],"96":[2,155],"100":[2,155],"108":[2,155],"110":[2,155],"111":[2,155],"112":[2,155],"116":[2,155],"122":[2,155],"123":[2,155],"124":[2,155],"133":[2,155],"134":[2,155],"135":[2,155],"136":[2,155],"137":[2,155],"138":[2,155],"139":[2,155],"140":[2,155],"141":[2,155],"142":[2,155],"143":[2,155],"144":[2,155],"145":[2,155],"147":[2,155]},{"8":253,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":254,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"4":[2,61],"29":[2,61],"58":255,"59":[1,256],"86":[2,61]},{"4":[2,95],"29":[2,95],"30":[2,95],"59":[2,95],"86":[2,95]},{"4":[2,46],"29":[2,46],"30":[2,46],"48":[1,257],"59":[2,46],"86":[2,46]},{"4":[2,47],"29":[2,47],"30":[2,47],"48":[1,258],"59":[2,47],"86":[2,47]},{"4":[2,52],"29":[2,52],"30":[2,52],"59":[2,52],"86":[2,52]},{"1":[2,6],"4":[2,6],"30":[2,6]},{"1":[2,29],"4":[2,29],"29":[2,29],"30":[2,29],"51":[2,29],"59":[2,29],"63":[2,29],"81":[2,29],"86":[2,29],"96":[2,29],"100":[2,29],"104":[2,29],"105":[2,29],"108":[2,29],"110":[2,29],"111":[2,29],"112":[2,29],"116":[2,29],"122":[2,29],"123":[2,29],"124":[2,29],"127":[2,29],"129":[2,29],"133":[2,29],"134":[2,29],"135":[2,29],"136":[2,29],"137":[2,29],"138":[2,29],"139":[2,29],"140":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"147":[2,29]},{"1":[2,194],"4":[2,194],"29":[2,194],"30":[2,194],"51":[1,93],"59":[2,194],"63":[2,194],"81":[2,194],"86":[2,194],"96":[2,194],"100":[2,194],"108":[2,194],"109":108,"110":[2,194],"111":[2,194],"112":[2,194],"115":109,"116":[2,194],"117":79,"122":[2,194],"123":[2,194],"124":[2,194],"133":[2,194],"134":[2,194],"135":[2,194],"136":[2,194],"137":[2,194],"138":[2,194],"139":[2,194],"140":[2,194],"141":[2,194],"142":[2,194],"143":[2,194],"144":[2,194],"145":[2,194],"147":[2,194]},{"1":[2,195],"4":[2,195],"29":[2,195],"30":[2,195],"51":[1,93],"59":[2,195],"63":[2,195],"81":[2,195],"86":[2,195],"96":[2,195],"100":[2,195],"108":[2,195],"109":108,"110":[2,195],"111":[2,195],"112":[2,195],"115":109,"116":[2,195],"117":79,"122":[2,195],"123":[2,195],"124":[2,195],"133":[2,195],"134":[2,195],"135":[1,105],"136":[2,195],"137":[2,195],"138":[1,91],"139":[1,92],"140":[2,195],"141":[2,195],"142":[1,98],"143":[2,195],"144":[2,195],"145":[2,195],"147":[2,195]},{"1":[2,196],"4":[2,196],"29":[2,196],"30":[2,196],"51":[1,93],"59":[2,196],"63":[2,196],"81":[2,196],"86":[2,196],"96":[2,196],"100":[2,196],"108":[2,196],"109":108,"110":[2,196],"111":[2,196],"112":[2,196],"115":109,"116":[2,196],"117":79,"122":[2,196],"123":[2,196],"124":[2,196],"133":[2,196],"134":[2,196],"135":[1,105],"136":[2,196],"137":[2,196],"138":[1,91],"139":[1,92],"140":[2,196],"141":[2,196],"142":[1,98],"143":[2,196],"144":[2,196],"145":[2,196],"147":[2,196]},{"1":[2,197],"4":[2,197],"29":[2,197],"30":[2,197],"51":[1,93],"59":[2,197],"63":[2,197],"81":[2,197],"86":[2,197],"96":[2,197],"100":[2,197],"108":[2,197],"109":108,"110":[2,197],"111":[2,197],"112":[2,197],"115":109,"116":[2,197],"117":79,"122":[2,197],"123":[2,197],"124":[2,197],"133":[2,197],"134":[2,197],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[2,197],"141":[2,197],"142":[1,98],"143":[1,99],"144":[1,100],"145":[2,197],"147":[1,102]},{"1":[2,198],"4":[2,198],"29":[2,198],"30":[2,198],"51":[1,93],"59":[2,198],"63":[2,198],"81":[2,198],"86":[2,198],"96":[2,198],"100":[2,198],"108":[2,198],"109":108,"110":[2,198],"111":[2,198],"112":[2,198],"115":109,"116":[2,198],"117":79,"122":[2,198],"123":[2,198],"124":[2,198],"133":[2,198],"134":[2,198],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[2,198],"141":[2,198],"142":[1,98],"143":[1,99],"144":[1,100],"145":[2,198],"147":[1,102]},{"1":[2,199],"4":[2,199],"29":[2,199],"30":[2,199],"51":[1,93],"59":[2,199],"63":[2,199],"81":[2,199],"86":[2,199],"96":[2,199],"100":[2,199],"108":[2,199],"109":108,"110":[2,199],"111":[2,199],"112":[2,199],"115":109,"116":[2,199],"117":79,"122":[2,199],"123":[2,199],"124":[2,199],"133":[2,199],"134":[2,199],"135":[1,105],"136":[2,199],"137":[2,199],"138":[1,91],"139":[1,92],"140":[2,199],"141":[2,199],"142":[2,199],"143":[2,199],"144":[2,199],"145":[2,199],"147":[2,199]},{"1":[2,200],"4":[2,200],"29":[2,200],"30":[2,200],"51":[1,93],"59":[2,200],"63":[2,200],"81":[2,200],"86":[2,200],"96":[2,200],"100":[2,200],"108":[2,200],"109":108,"110":[2,200],"111":[2,200],"112":[2,200],"115":109,"116":[2,200],"117":79,"122":[2,200],"123":[2,200],"124":[2,200],"133":[2,200],"134":[2,200],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[2,200],"141":[2,200],"142":[1,98],"143":[2,200],"144":[2,200],"145":[2,200],"147":[2,200]},{"1":[2,201],"4":[2,201],"29":[2,201],"30":[2,201],"51":[1,93],"59":[2,201],"63":[2,201],"81":[2,201],"86":[2,201],"96":[2,201],"100":[2,201],"108":[2,201],"109":108,"110":[2,201],"111":[2,201],"112":[2,201],"115":109,"116":[2,201],"117":79,"122":[2,201],"123":[2,201],"124":[2,201],"133":[2,201],"134":[2,201],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[2,201],"141":[2,201],"142":[1,98],"143":[1,99],"144":[2,201],"145":[2,201],"147":[2,201]},{"1":[2,202],"4":[2,202],"29":[2,202],"30":[2,202],"51":[1,93],"59":[2,202],"63":[2,202],"81":[2,202],"86":[2,202],"96":[2,202],"100":[2,202],"108":[2,202],"109":108,"110":[2,202],"111":[2,202],"112":[2,202],"115":109,"116":[2,202],"117":79,"122":[2,202],"123":[2,202],"124":[2,202],"133":[2,202],"134":[2,202],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[2,202],"147":[1,102]},{"1":[2,205],"4":[2,205],"29":[2,205],"30":[2,205],"51":[1,93],"59":[2,205],"63":[2,205],"81":[2,205],"86":[2,205],"96":[2,205],"100":[2,205],"108":[2,205],"109":108,"110":[2,205],"111":[2,205],"112":[2,205],"115":109,"116":[2,205],"117":79,"122":[2,205],"123":[2,205],"124":[2,205],"133":[2,205],"134":[2,205],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[2,205],"141":[2,205],"142":[1,98],"143":[1,99],"144":[1,100],"145":[2,205],"147":[2,205]},{"1":[2,206],"4":[2,206],"29":[2,206],"30":[2,206],"51":[1,93],"59":[2,206],"63":[1,110],"81":[2,206],"86":[2,206],"96":[2,206],"100":[2,206],"108":[2,206],"109":108,"110":[2,206],"111":[2,206],"112":[2,206],"115":109,"116":[2,206],"117":79,"122":[1,103],"123":[1,104],"124":[2,206],"133":[2,206],"134":[2,206],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,207],"4":[2,207],"29":[2,207],"30":[2,207],"51":[1,93],"59":[2,207],"63":[1,110],"81":[2,207],"86":[2,207],"96":[2,207],"100":[2,207],"108":[2,207],"109":108,"110":[2,207],"111":[2,207],"112":[2,207],"115":109,"116":[2,207],"117":79,"122":[1,103],"123":[1,104],"124":[2,207],"133":[2,207],"134":[2,207],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"8":259,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":260,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,184],"4":[2,184],"29":[2,184],"30":[2,184],"51":[1,93],"59":[2,184],"63":[1,110],"81":[2,184],"86":[2,184],"96":[2,184],"100":[2,184],"108":[2,184],"109":108,"110":[1,75],"111":[2,184],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"124":[2,184],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,186],"4":[2,186],"29":[2,186],"30":[2,186],"51":[1,93],"59":[2,186],"63":[1,110],"81":[2,186],"86":[2,186],"96":[2,186],"100":[2,186],"108":[2,186],"109":108,"110":[1,75],"111":[2,186],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"124":[2,186],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"63":[1,261]},{"1":[2,183],"4":[2,183],"29":[2,183],"30":[2,183],"51":[1,93],"59":[2,183],"63":[1,110],"81":[2,183],"86":[2,183],"96":[2,183],"100":[2,183],"108":[2,183],"109":108,"110":[1,75],"111":[2,183],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"124":[2,183],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,185],"4":[2,185],"29":[2,185],"30":[2,185],"51":[1,93],"59":[2,185],"63":[1,110],"81":[2,185],"86":[2,185],"96":[2,185],"100":[2,185],"108":[2,185],"109":108,"110":[1,75],"111":[2,185],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"124":[2,185],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,203],"4":[2,203],"29":[2,203],"30":[2,203],"51":[1,93],"59":[2,203],"63":[2,203],"81":[2,203],"86":[2,203],"96":[2,203],"100":[2,203],"108":[2,203],"109":108,"110":[2,203],"111":[2,203],"112":[2,203],"115":109,"116":[2,203],"117":79,"122":[2,203],"123":[2,203],"124":[2,203],"133":[2,203],"134":[2,203],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"8":262,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"4":[2,61],"29":[2,61],"58":263,"59":[1,245],"96":[2,61]},{"4":[2,129],"29":[2,129],"30":[2,129],"51":[1,93],"59":[2,129],"63":[1,110],"96":[2,129],"100":[2,129],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,84],"4":[2,84],"29":[2,84],"30":[2,84],"46":[2,84],"51":[2,84],"59":[2,84],"63":[2,84],"74":[2,84],"75":[2,84],"76":[2,84],"77":[2,84],"80":[2,84],"81":[2,84],"82":[2,84],"83":[2,84],"86":[2,84],"88":[2,84],"94":[2,84],"96":[2,84],"100":[2,84],"108":[2,84],"110":[2,84],"111":[2,84],"112":[2,84],"116":[2,84],"122":[2,84],"123":[2,84],"124":[2,84],"133":[2,84],"134":[2,84],"135":[2,84],"136":[2,84],"137":[2,84],"138":[2,84],"139":[2,84],"140":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84]},{"1":[2,85],"4":[2,85],"29":[2,85],"30":[2,85],"46":[2,85],"51":[2,85],"59":[2,85],"63":[2,85],"74":[2,85],"75":[2,85],"76":[2,85],"77":[2,85],"80":[2,85],"81":[2,85],"82":[2,85],"83":[2,85],"86":[2,85],"88":[2,85],"94":[2,85],"96":[2,85],"100":[2,85],"108":[2,85],"110":[2,85],"111":[2,85],"112":[2,85],"116":[2,85],"122":[2,85],"123":[2,85],"124":[2,85],"133":[2,85],"134":[2,85],"135":[2,85],"136":[2,85],"137":[2,85],"138":[2,85],"139":[2,85],"140":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85]},{"1":[2,87],"4":[2,87],"29":[2,87],"30":[2,87],"46":[2,87],"51":[2,87],"59":[2,87],"63":[2,87],"74":[2,87],"75":[2,87],"76":[2,87],"77":[2,87],"80":[2,87],"81":[2,87],"82":[2,87],"83":[2,87],"86":[2,87],"88":[2,87],"94":[2,87],"96":[2,87],"100":[2,87],"108":[2,87],"110":[2,87],"111":[2,87],"112":[2,87],"116":[2,87],"122":[2,87],"123":[2,87],"124":[2,87],"133":[2,87],"134":[2,87],"135":[2,87],"136":[2,87],"137":[2,87],"138":[2,87],"139":[2,87],"140":[2,87],"141":[2,87],"142":[2,87],"143":[2,87],"144":[2,87],"145":[2,87],"146":[2,87],"147":[2,87]},{"51":[1,93],"63":[1,265],"81":[1,264],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,91],"4":[2,91],"29":[2,91],"30":[2,91],"46":[2,91],"51":[2,91],"59":[2,91],"63":[2,91],"74":[2,91],"75":[2,91],"76":[2,91],"77":[2,91],"80":[2,91],"81":[2,91],"82":[2,91],"83":[2,91],"86":[2,91],"88":[2,91],"94":[2,91],"96":[2,91],"100":[2,91],"108":[2,91],"110":[2,91],"111":[2,91],"112":[2,91],"116":[2,91],"122":[2,91],"123":[2,91],"124":[2,91],"133":[2,91],"134":[2,91],"135":[2,91],"136":[2,91],"137":[2,91],"138":[2,91],"139":[2,91],"140":[2,91],"141":[2,91],"142":[2,91],"143":[2,91],"144":[2,91],"145":[2,91],"146":[2,91],"147":[2,91]},{"8":266,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,92],"4":[2,92],"29":[2,92],"30":[2,92],"46":[2,92],"51":[2,92],"59":[2,92],"63":[2,92],"74":[2,92],"75":[2,92],"76":[2,92],"77":[2,92],"80":[2,92],"81":[2,92],"82":[2,92],"83":[2,92],"86":[2,92],"88":[2,92],"94":[2,92],"96":[2,92],"100":[2,92],"108":[2,92],"110":[2,92],"111":[2,92],"112":[2,92],"116":[2,92],"122":[2,92],"123":[2,92],"124":[2,92],"133":[2,92],"134":[2,92],"135":[2,92],"136":[2,92],"137":[2,92],"138":[2,92],"139":[2,92],"140":[2,92],"141":[2,92],"142":[2,92],"143":[2,92],"144":[2,92],"145":[2,92],"146":[2,92],"147":[2,92]},{"1":[2,44],"4":[2,44],"29":[2,44],"30":[2,44],"51":[1,93],"59":[2,44],"63":[1,110],"81":[2,44],"86":[2,44],"96":[2,44],"100":[2,44],"108":[2,44],"109":108,"110":[1,75],"111":[2,44],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"124":[2,44],"133":[2,44],"134":[2,44],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"8":267,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"55":268,"56":[1,71],"57":[1,72]},{"60":269,"61":[1,137],"62":[1,138]},{"63":[1,270]},{"54":[2,67],"59":[2,67],"63":[1,271]},{"8":272,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,181],"4":[2,181],"29":[2,181],"30":[2,181],"51":[2,181],"59":[2,181],"63":[2,181],"81":[2,181],"86":[2,181],"96":[2,181],"100":[2,181],"108":[2,181],"110":[2,181],"111":[2,181],"112":[2,181],"116":[2,181],"122":[2,181],"123":[2,181],"124":[2,181],"127":[2,181],"133":[2,181],"134":[2,181],"135":[2,181],"136":[2,181],"137":[2,181],"138":[2,181],"139":[2,181],"140":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"147":[2,181]},{"1":[2,135],"4":[2,135],"29":[2,135],"30":[2,135],"51":[2,135],"59":[2,135],"63":[2,135],"81":[2,135],"86":[2,135],"96":[2,135],"100":[2,135],"104":[1,273],"108":[2,135],"110":[2,135],"111":[2,135],"112":[2,135],"116":[2,135],"122":[2,135],"123":[2,135],"124":[2,135],"133":[2,135],"134":[2,135],"135":[2,135],"136":[2,135],"137":[2,135],"138":[2,135],"139":[2,135],"140":[2,135],"141":[2,135],"142":[2,135],"143":[2,135],"144":[2,135],"145":[2,135],"147":[2,135]},{"4":[1,140],"6":274,"29":[1,6]},{"31":275,"32":[1,85]},{"126":276,"128":231,"129":[1,232]},{"30":[1,277],"127":[1,278],"128":279,"129":[1,232]},{"30":[2,174],"127":[2,174],"129":[2,174]},{"8":281,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"101":280,"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,114],"4":[2,114],"29":[2,114],"30":[2,114],"51":[2,114],"59":[2,114],"63":[2,114],"65":117,"74":[1,119],"75":[1,120],"76":[1,121],"77":[1,122],"78":123,"79":124,"80":[1,125],"81":[2,114],"82":[1,126],"83":[1,127],"86":[2,114],"93":116,"94":[1,118],"96":[2,114],"100":[2,114],"108":[2,114],"110":[2,114],"111":[2,114],"112":[2,114],"116":[2,114],"122":[2,114],"123":[2,114],"124":[2,114],"133":[2,114],"134":[2,114],"135":[2,114],"136":[2,114],"137":[2,114],"138":[2,114],"139":[2,114],"140":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"147":[2,114]},{"14":282,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":133,"62":[1,69],"64":134,"66":157,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"98":[1,68],"99":[1,67],"107":[1,66]},{"4":[2,106],"28":185,"30":[2,106],"31":183,"32":[1,85],"33":184,"34":[1,83],"35":[1,84],"47":239,"50":[1,52],"62":[1,241],"67":240,"84":[1,238],"89":283,"90":237},{"4":[1,285],"30":[1,284]},{"4":[2,107],"30":[2,107],"86":[2,107]},{"4":[2,106],"28":185,"31":183,"32":[1,85],"33":184,"34":[1,83],"35":[1,84],"47":239,"50":[1,52],"62":[1,241],"67":240,"84":[1,238],"86":[2,106],"89":286,"90":237},{"4":[2,104],"30":[2,104],"86":[2,104]},{"48":[1,287]},{"31":163,"32":[1,85]},{"1":[2,140],"4":[2,140],"29":[2,140],"30":[2,140],"51":[2,140],"59":[2,140],"63":[2,140],"74":[2,140],"75":[2,140],"76":[2,140],"77":[2,140],"80":[2,140],"81":[2,140],"82":[2,140],"83":[2,140],"86":[2,140],"94":[2,140],"96":[2,140],"100":[2,140],"108":[2,140],"110":[2,140],"111":[2,140],"112":[2,140],"116":[2,140],"122":[2,140],"123":[2,140],"124":[2,140],"133":[2,140],"134":[2,140],"135":[2,140],"136":[2,140],"137":[2,140],"138":[2,140],"139":[2,140],"140":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140]},{"63":[1,288]},{"4":[1,290],"29":[1,291],"100":[1,289]},{"4":[2,62],"8":292,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,62],"30":[2,62],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"96":[2,62],"97":[1,70],"98":[1,68],"99":[1,67],"100":[2,62],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,178],"4":[2,178],"29":[2,178],"30":[2,178],"51":[2,178],"59":[2,178],"63":[2,178],"81":[2,178],"86":[2,178],"96":[2,178],"100":[2,178],"108":[2,178],"110":[2,178],"111":[2,178],"112":[2,178],"116":[2,178],"122":[2,178],"123":[2,178],"124":[2,178],"127":[2,178],"133":[2,178],"134":[2,178],"135":[2,178],"136":[2,178],"137":[2,178],"138":[2,178],"139":[2,178],"140":[2,178],"141":[2,178],"142":[2,178],"143":[2,178],"144":[2,178],"145":[2,178],"147":[2,178]},{"1":[2,179],"4":[2,179],"29":[2,179],"30":[2,179],"51":[2,179],"59":[2,179],"63":[2,179],"81":[2,179],"86":[2,179],"96":[2,179],"100":[2,179],"108":[2,179],"110":[2,179],"111":[2,179],"112":[2,179],"116":[2,179],"122":[2,179],"123":[2,179],"124":[2,179],"127":[2,179],"133":[2,179],"134":[2,179],"135":[2,179],"136":[2,179],"137":[2,179],"138":[2,179],"139":[2,179],"140":[2,179],"141":[2,179],"142":[2,179],"143":[2,179],"144":[2,179],"145":[2,179],"147":[2,179]},{"8":293,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":294,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"122":[2,157],"123":[2,157]},{"4":[2,128],"8":210,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,128],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"59":[2,128],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"95":162,"97":[1,70],"98":[1,68],"99":[1,67],"100":[2,128],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"31":175,"32":[1,85],"68":176,"69":177,"84":[1,82],"99":[1,251],"121":295},{"1":[2,163],"4":[2,163],"29":[2,163],"30":[2,163],"51":[1,93],"59":[2,163],"63":[1,110],"81":[2,163],"86":[2,163],"96":[2,163],"100":[2,163],"108":[2,163],"109":108,"110":[2,163],"111":[1,296],"112":[2,163],"115":109,"116":[2,163],"117":79,"122":[1,103],"123":[1,104],"124":[1,297],"133":[2,163],"134":[2,163],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,164],"4":[2,164],"29":[2,164],"30":[2,164],"51":[1,93],"59":[2,164],"63":[1,110],"81":[2,164],"86":[2,164],"96":[2,164],"100":[2,164],"108":[2,164],"109":108,"110":[2,164],"111":[1,298],"112":[2,164],"115":109,"116":[2,164],"117":79,"122":[1,103],"123":[1,104],"124":[2,164],"133":[2,164],"134":[2,164],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"4":[1,300],"29":[1,301],"86":[1,299]},{"4":[2,62],"28":185,"29":[2,62],"30":[2,62],"31":183,"32":[1,85],"33":184,"34":[1,83],"35":[1,84],"47":302,"50":[1,52],"86":[2,62]},{"8":303,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,304],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":305,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,306],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,208],"4":[2,208],"29":[2,208],"30":[2,208],"51":[1,93],"59":[2,208],"63":[2,208],"81":[2,208],"86":[2,208],"96":[2,208],"100":[2,208],"108":[2,208],"109":108,"110":[2,208],"111":[2,208],"112":[2,208],"115":109,"116":[2,208],"117":79,"122":[2,208],"123":[2,208],"124":[2,208],"133":[2,208],"134":[2,208],"135":[1,105],"136":[2,208],"137":[2,208],"138":[1,91],"139":[1,92],"140":[2,208],"141":[2,208],"142":[2,208],"143":[2,208],"144":[2,208],"145":[2,208],"147":[2,208]},{"1":[2,209],"4":[2,209],"29":[2,209],"30":[2,209],"51":[1,93],"59":[2,209],"63":[2,209],"81":[2,209],"86":[2,209],"96":[2,209],"100":[2,209],"108":[2,209],"109":108,"110":[2,209],"111":[2,209],"112":[2,209],"115":109,"116":[2,209],"117":79,"122":[2,209],"123":[2,209],"124":[2,209],"133":[2,209],"134":[2,209],"135":[1,105],"136":[2,209],"137":[2,209],"138":[1,91],"139":[1,92],"140":[2,209],"141":[2,209],"142":[2,209],"143":[2,209],"144":[2,209],"145":[2,209],"147":[2,209]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"51":[2,70],"59":[2,70],"63":[2,70],"81":[2,70],"86":[2,70],"96":[2,70],"100":[2,70],"108":[2,70],"110":[2,70],"111":[2,70],"112":[2,70],"116":[2,70],"122":[2,70],"123":[2,70],"124":[2,70],"133":[2,70],"134":[2,70],"135":[2,70],"136":[2,70],"137":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"147":[2,70]},{"30":[1,307],"51":[1,93],"63":[1,110],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"4":[1,290],"29":[1,291],"96":[1,308]},{"1":[2,90],"4":[2,90],"29":[2,90],"30":[2,90],"46":[2,90],"51":[2,90],"59":[2,90],"63":[2,90],"74":[2,90],"75":[2,90],"76":[2,90],"77":[2,90],"80":[2,90],"81":[2,90],"82":[2,90],"83":[2,90],"86":[2,90],"88":[2,90],"94":[2,90],"96":[2,90],"100":[2,90],"108":[2,90],"110":[2,90],"111":[2,90],"112":[2,90],"116":[2,90],"122":[2,90],"123":[2,90],"124":[2,90],"133":[2,90],"134":[2,90],"135":[2,90],"136":[2,90],"137":[2,90],"138":[2,90],"139":[2,90],"140":[2,90],"141":[2,90],"142":[2,90],"143":[2,90],"144":[2,90],"145":[2,90],"146":[2,90],"147":[2,90]},{"63":[1,309]},{"51":[1,93],"63":[1,110],"81":[1,264],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"30":[1,310],"51":[1,93],"63":[1,110],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"4":[1,140],"6":311,"29":[1,6]},{"54":[2,65],"59":[2,65]},{"63":[1,312]},{"63":[1,313]},{"4":[1,140],"6":314,"29":[1,6],"51":[1,93],"63":[1,110],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"4":[1,140],"6":315,"29":[1,6]},{"1":[2,136],"4":[2,136],"29":[2,136],"30":[2,136],"51":[2,136],"59":[2,136],"63":[2,136],"81":[2,136],"86":[2,136],"96":[2,136],"100":[2,136],"108":[2,136],"110":[2,136],"111":[2,136],"112":[2,136],"116":[2,136],"122":[2,136],"123":[2,136],"124":[2,136],"133":[2,136],"134":[2,136],"135":[2,136],"136":[2,136],"137":[2,136],"138":[2,136],"139":[2,136],"140":[2,136],"141":[2,136],"142":[2,136],"143":[2,136],"144":[2,136],"145":[2,136],"147":[2,136]},{"4":[1,140],"6":316,"29":[1,6]},{"30":[1,317],"127":[1,318],"128":279,"129":[1,232]},{"1":[2,172],"4":[2,172],"29":[2,172],"30":[2,172],"51":[2,172],"59":[2,172],"63":[2,172],"81":[2,172],"86":[2,172],"96":[2,172],"100":[2,172],"108":[2,172],"110":[2,172],"111":[2,172],"112":[2,172],"116":[2,172],"122":[2,172],"123":[2,172],"124":[2,172],"133":[2,172],"134":[2,172],"135":[2,172],"136":[2,172],"137":[2,172],"138":[2,172],"139":[2,172],"140":[2,172],"141":[2,172],"142":[2,172],"143":[2,172],"144":[2,172],"145":[2,172],"147":[2,172]},{"4":[1,140],"6":319,"29":[1,6]},{"30":[2,175],"127":[2,175],"129":[2,175]},{"4":[1,140],"6":320,"29":[1,6],"59":[1,321]},{"4":[2,133],"29":[2,133],"51":[1,93],"59":[2,133],"63":[1,110],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,100],"4":[2,100],"29":[1,322],"30":[2,100],"51":[2,100],"59":[2,100],"63":[2,100],"65":117,"74":[1,119],"75":[1,120],"76":[1,121],"77":[1,122],"78":123,"79":124,"80":[1,125],"81":[2,100],"82":[1,126],"83":[1,127],"86":[2,100],"93":116,"94":[1,118],"96":[2,100],"100":[2,100],"108":[2,100],"110":[2,100],"111":[2,100],"112":[2,100],"116":[2,100],"122":[2,100],"123":[2,100],"124":[2,100],"133":[2,100],"134":[2,100],"135":[2,100],"136":[2,100],"137":[2,100],"138":[2,100],"139":[2,100],"140":[2,100],"141":[2,100],"142":[2,100],"143":[2,100],"144":[2,100],"145":[2,100],"147":[2,100]},{"4":[1,285],"30":[1,323]},{"1":[2,103],"4":[2,103],"29":[2,103],"30":[2,103],"51":[2,103],"59":[2,103],"63":[2,103],"81":[2,103],"86":[2,103],"96":[2,103],"100":[2,103],"108":[2,103],"110":[2,103],"111":[2,103],"112":[2,103],"116":[2,103],"122":[2,103],"123":[2,103],"124":[2,103],"133":[2,103],"134":[2,103],"135":[2,103],"136":[2,103],"137":[2,103],"138":[2,103],"139":[2,103],"140":[2,103],"141":[2,103],"142":[2,103],"143":[2,103],"144":[2,103],"145":[2,103],"147":[2,103]},{"28":185,"31":183,"32":[1,85],"33":184,"34":[1,83],"35":[1,84],"47":239,"50":[1,52],"62":[1,241],"67":240,"90":324},{"4":[1,285],"86":[1,325]},{"8":326,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":327,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"63":[1,328],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,127],"4":[2,127],"29":[2,127],"30":[2,127],"46":[2,127],"51":[2,127],"59":[2,127],"63":[2,127],"74":[2,127],"75":[2,127],"76":[2,127],"77":[2,127],"80":[2,127],"81":[2,127],"82":[2,127],"83":[2,127],"86":[2,127],"94":[2,127],"96":[2,127],"100":[2,127],"108":[2,127],"110":[2,127],"111":[2,127],"112":[2,127],"116":[2,127],"122":[2,127],"123":[2,127],"124":[2,127],"133":[2,127],"134":[2,127],"135":[2,127],"136":[2,127],"137":[2,127],"138":[2,127],"139":[2,127],"140":[2,127],"141":[2,127],"142":[2,127],"143":[2,127],"144":[2,127],"145":[2,127],"146":[2,127],"147":[2,127]},{"8":329,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"4":[2,128],"8":210,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,128],"30":[2,128],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"59":[2,128],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"95":330,"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"4":[2,130],"29":[2,130],"30":[2,130],"51":[1,93],"59":[2,130],"63":[1,110],"96":[2,130],"100":[2,130],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,142],"4":[2,142],"29":[2,142],"30":[2,142],"51":[1,93],"59":[2,142],"63":[1,110],"81":[2,142],"86":[2,142],"96":[2,142],"100":[2,142],"108":[2,142],"109":108,"110":[1,75],"111":[2,142],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"124":[2,142],"133":[2,142],"134":[2,142],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,144],"4":[2,144],"29":[2,144],"30":[2,144],"51":[1,93],"59":[2,144],"63":[1,110],"81":[2,144],"86":[2,144],"96":[2,144],"100":[2,144],"108":[2,144],"109":108,"110":[1,75],"111":[2,144],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"124":[2,144],"133":[2,144],"134":[2,144],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"122":[2,162],"123":[2,162]},{"8":331,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":332,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":333,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,93],"4":[2,93],"29":[2,93],"30":[2,93],"46":[2,93],"51":[2,93],"59":[2,93],"63":[2,93],"74":[2,93],"75":[2,93],"76":[2,93],"77":[2,93],"80":[2,93],"81":[2,93],"82":[2,93],"83":[2,93],"86":[2,93],"94":[2,93],"96":[2,93],"100":[2,93],"108":[2,93],"110":[2,93],"111":[2,93],"112":[2,93],"116":[2,93],"122":[2,93],"123":[2,93],"124":[2,93],"133":[2,93],"134":[2,93],"135":[2,93],"136":[2,93],"137":[2,93],"138":[2,93],"139":[2,93],"140":[2,93],"141":[2,93],"142":[2,93],"143":[2,93],"144":[2,93],"145":[2,93],"146":[2,93],"147":[2,93]},{"28":185,"31":183,"32":[1,85],"33":184,"34":[1,83],"35":[1,84],"47":334,"50":[1,52]},{"4":[2,94],"28":185,"29":[2,94],"30":[2,94],"31":183,"32":[1,85],"33":184,"34":[1,83],"35":[1,84],"47":182,"50":[1,52],"59":[2,94],"85":335},{"4":[2,96],"29":[2,96],"30":[2,96],"59":[2,96],"86":[2,96]},{"4":[2,48],"29":[2,48],"30":[2,48],"51":[1,93],"59":[2,48],"63":[1,110],"86":[2,48],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"8":336,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"4":[2,49],"29":[2,49],"30":[2,49],"51":[1,93],"59":[2,49],"63":[1,110],"86":[2,49],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"8":337,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,204],"4":[2,204],"29":[2,204],"30":[2,204],"51":[2,204],"59":[2,204],"63":[2,204],"81":[2,204],"86":[2,204],"96":[2,204],"100":[2,204],"108":[2,204],"110":[2,204],"111":[2,204],"112":[2,204],"116":[2,204],"122":[2,204],"123":[2,204],"124":[2,204],"133":[2,204],"134":[2,204],"135":[2,204],"136":[2,204],"137":[2,204],"138":[2,204],"139":[2,204],"140":[2,204],"141":[2,204],"142":[2,204],"143":[2,204],"144":[2,204],"145":[2,204],"147":[2,204]},{"1":[2,117],"4":[2,117],"29":[2,117],"30":[2,117],"51":[2,117],"59":[2,117],"63":[2,117],"74":[2,117],"75":[2,117],"76":[2,117],"77":[2,117],"80":[2,117],"81":[2,117],"82":[2,117],"83":[2,117],"86":[2,117],"94":[2,117],"96":[2,117],"100":[2,117],"108":[2,117],"110":[2,117],"111":[2,117],"112":[2,117],"116":[2,117],"122":[2,117],"123":[2,117],"124":[2,117],"133":[2,117],"134":[2,117],"135":[2,117],"136":[2,117],"137":[2,117],"138":[2,117],"139":[2,117],"140":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"147":[2,117]},{"8":338,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"63":[1,339],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"1":[2,45],"4":[2,45],"29":[2,45],"30":[2,45],"51":[2,45],"59":[2,45],"63":[2,45],"81":[2,45],"86":[2,45],"96":[2,45],"100":[2,45],"108":[2,45],"110":[2,45],"111":[2,45],"112":[2,45],"116":[2,45],"122":[2,45],"123":[2,45],"124":[2,45],"133":[2,45],"134":[2,45],"135":[2,45],"136":[2,45],"137":[2,45],"138":[2,45],"139":[2,45],"140":[2,45],"141":[2,45],"142":[2,45],"143":[2,45],"144":[2,45],"145":[2,45],"147":[2,45]},{"1":[2,57],"4":[2,57],"29":[2,57],"30":[2,57],"51":[2,57],"59":[2,57],"63":[2,57],"81":[2,57],"86":[2,57],"96":[2,57],"100":[2,57],"108":[2,57],"110":[2,57],"111":[2,57],"112":[2,57],"116":[2,57],"122":[2,57],"123":[2,57],"124":[2,57],"133":[2,57],"134":[2,57],"135":[2,57],"136":[2,57],"137":[2,57],"138":[2,57],"139":[2,57],"140":[2,57],"141":[2,57],"142":[2,57],"143":[2,57],"144":[2,57],"145":[2,57],"147":[2,57]},{"54":[2,68],"59":[2,68]},{"63":[1,340]},{"1":[2,180],"4":[2,180],"29":[2,180],"30":[2,180],"51":[2,180],"59":[2,180],"63":[2,180],"81":[2,180],"86":[2,180],"96":[2,180],"100":[2,180],"108":[2,180],"110":[2,180],"111":[2,180],"112":[2,180],"116":[2,180],"122":[2,180],"123":[2,180],"124":[2,180],"127":[2,180],"133":[2,180],"134":[2,180],"135":[2,180],"136":[2,180],"137":[2,180],"138":[2,180],"139":[2,180],"140":[2,180],"141":[2,180],"142":[2,180],"143":[2,180],"144":[2,180],"145":[2,180],"147":[2,180]},{"1":[2,137],"4":[2,137],"29":[2,137],"30":[2,137],"51":[2,137],"59":[2,137],"63":[2,137],"81":[2,137],"86":[2,137],"96":[2,137],"100":[2,137],"108":[2,137],"110":[2,137],"111":[2,137],"112":[2,137],"116":[2,137],"122":[2,137],"123":[2,137],"124":[2,137],"133":[2,137],"134":[2,137],"135":[2,137],"136":[2,137],"137":[2,137],"138":[2,137],"139":[2,137],"140":[2,137],"141":[2,137],"142":[2,137],"143":[2,137],"144":[2,137],"145":[2,137],"147":[2,137]},{"1":[2,138],"4":[2,138],"29":[2,138],"30":[2,138],"51":[2,138],"59":[2,138],"63":[2,138],"81":[2,138],"86":[2,138],"96":[2,138],"100":[2,138],"104":[2,138],"108":[2,138],"110":[2,138],"111":[2,138],"112":[2,138],"116":[2,138],"122":[2,138],"123":[2,138],"124":[2,138],"133":[2,138],"134":[2,138],"135":[2,138],"136":[2,138],"137":[2,138],"138":[2,138],"139":[2,138],"140":[2,138],"141":[2,138],"142":[2,138],"143":[2,138],"144":[2,138],"145":[2,138],"147":[2,138]},{"1":[2,170],"4":[2,170],"29":[2,170],"30":[2,170],"51":[2,170],"59":[2,170],"63":[2,170],"81":[2,170],"86":[2,170],"96":[2,170],"100":[2,170],"108":[2,170],"110":[2,170],"111":[2,170],"112":[2,170],"116":[2,170],"122":[2,170],"123":[2,170],"124":[2,170],"133":[2,170],"134":[2,170],"135":[2,170],"136":[2,170],"137":[2,170],"138":[2,170],"139":[2,170],"140":[2,170],"141":[2,170],"142":[2,170],"143":[2,170],"144":[2,170],"145":[2,170],"147":[2,170]},{"4":[1,140],"6":341,"29":[1,6]},{"30":[1,342]},{"4":[1,343],"30":[2,176],"127":[2,176],"129":[2,176]},{"8":344,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"4":[2,106],"28":185,"30":[2,106],"31":183,"32":[1,85],"33":184,"34":[1,83],"35":[1,84],"47":239,"50":[1,52],"62":[1,241],"67":240,"84":[1,238],"89":345,"90":237},{"1":[2,101],"4":[2,101],"29":[2,101],"30":[2,101],"51":[2,101],"59":[2,101],"63":[2,101],"81":[2,101],"86":[2,101],"96":[2,101],"100":[2,101],"108":[2,101],"110":[2,101],"111":[2,101],"112":[2,101],"116":[2,101],"122":[2,101],"123":[2,101],"124":[2,101],"133":[2,101],"134":[2,101],"135":[2,101],"136":[2,101],"137":[2,101],"138":[2,101],"139":[2,101],"140":[2,101],"141":[2,101],"142":[2,101],"143":[2,101],"144":[2,101],"145":[2,101],"147":[2,101]},{"4":[2,108],"30":[2,108],"86":[2,108]},{"4":[2,109],"30":[2,109],"86":[2,109]},{"4":[2,105],"30":[2,105],"51":[1,93],"63":[1,110],"86":[2,105],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"51":[1,93],"63":[1,110],"100":[1,346],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"4":[2,70],"8":347,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,70],"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"51":[2,70],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"59":[2,70],"62":[1,69],"63":[2,70],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"100":[2,70],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[2,70],"112":[2,70],"113":47,"114":[1,77],"115":48,"116":[2,70],"117":79,"122":[2,70],"123":[2,70],"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"133":[2,70],"134":[2,70],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"147":[2,70]},{"4":[2,131],"29":[2,131],"30":[2,131],"51":[1,93],"59":[2,131],"63":[1,110],"96":[2,131],"100":[2,131],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"4":[2,61],"29":[2,61],"30":[2,61],"58":348,"59":[1,245]},{"1":[2,165],"4":[2,165],"29":[2,165],"30":[2,165],"51":[1,93],"59":[2,165],"63":[1,110],"81":[2,165],"86":[2,165],"96":[2,165],"100":[2,165],"108":[2,165],"109":108,"110":[2,165],"111":[2,165],"112":[2,165],"115":109,"116":[2,165],"117":79,"122":[1,103],"123":[1,104],"124":[1,349],"133":[2,165],"134":[2,165],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,167],"4":[2,167],"29":[2,167],"30":[2,167],"51":[1,93],"59":[2,167],"63":[1,110],"81":[2,167],"86":[2,167],"96":[2,167],"100":[2,167],"108":[2,167],"109":108,"110":[2,167],"111":[1,350],"112":[2,167],"115":109,"116":[2,167],"117":79,"122":[1,103],"123":[1,104],"124":[2,167],"133":[2,167],"134":[2,167],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,166],"4":[2,166],"29":[2,166],"30":[2,166],"51":[1,93],"59":[2,166],"63":[1,110],"81":[2,166],"86":[2,166],"96":[2,166],"100":[2,166],"108":[2,166],"109":108,"110":[2,166],"111":[2,166],"112":[2,166],"115":109,"116":[2,166],"117":79,"122":[1,103],"123":[1,104],"124":[2,166],"133":[2,166],"134":[2,166],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"4":[2,97],"29":[2,97],"30":[2,97],"59":[2,97],"86":[2,97]},{"4":[2,61],"29":[2,61],"30":[2,61],"58":351,"59":[1,256]},{"30":[1,352],"51":[1,93],"63":[1,110],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"30":[1,353],"51":[1,93],"63":[1,110],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"51":[1,93],"63":[1,110],"81":[1,354],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"8":355,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"51":[2,70],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"63":[2,70],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"81":[2,70],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[2,70],"112":[2,70],"113":47,"114":[1,77],"115":48,"116":[2,70],"117":79,"122":[2,70],"123":[2,70],"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"133":[2,70],"134":[2,70],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"147":[2,70]},{"54":[2,69],"59":[2,69]},{"30":[1,356]},{"1":[2,173],"4":[2,173],"29":[2,173],"30":[2,173],"51":[2,173],"59":[2,173],"63":[2,173],"81":[2,173],"86":[2,173],"96":[2,173],"100":[2,173],"108":[2,173],"110":[2,173],"111":[2,173],"112":[2,173],"116":[2,173],"122":[2,173],"123":[2,173],"124":[2,173],"133":[2,173],"134":[2,173],"135":[2,173],"136":[2,173],"137":[2,173],"138":[2,173],"139":[2,173],"140":[2,173],"141":[2,173],"142":[2,173],"143":[2,173],"144":[2,173],"145":[2,173],"147":[2,173]},{"30":[2,177],"127":[2,177],"129":[2,177]},{"4":[2,134],"29":[2,134],"51":[1,93],"59":[2,134],"63":[1,110],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"4":[1,285],"30":[1,357]},{"1":[2,123],"4":[2,123],"29":[2,123],"30":[2,123],"51":[2,123],"59":[2,123],"63":[2,123],"74":[2,123],"75":[2,123],"76":[2,123],"77":[2,123],"80":[2,123],"81":[2,123],"82":[2,123],"83":[2,123],"86":[2,123],"94":[2,123],"96":[2,123],"100":[2,123],"108":[2,123],"110":[2,123],"111":[2,123],"112":[2,123],"116":[2,123],"122":[2,123],"123":[2,123],"124":[2,123],"133":[2,123],"134":[2,123],"135":[2,123],"136":[2,123],"137":[2,123],"138":[2,123],"139":[2,123],"140":[2,123],"141":[2,123],"142":[2,123],"143":[2,123],"144":[2,123],"145":[2,123],"146":[2,123],"147":[2,123]},{"51":[1,93],"63":[1,110],"100":[1,358],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"4":[1,290],"29":[1,291],"30":[1,359]},{"8":360,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"8":361,"9":142,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":80,"32":[1,85],"33":57,"34":[1,83],"35":[1,84],"36":29,"37":[1,58],"38":[1,59],"39":[1,60],"40":[1,61],"41":[1,62],"42":[1,63],"43":[1,64],"44":[1,65],"45":28,"49":[1,53],"50":[1,52],"52":[1,37],"55":38,"56":[1,71],"57":[1,72],"62":[1,69],"64":50,"66":34,"67":81,"68":55,"69":56,"70":30,"71":31,"72":32,"73":[1,33],"84":[1,82],"87":[1,51],"91":35,"92":[1,36],"97":[1,70],"98":[1,68],"99":[1,67],"102":[1,45],"106":[1,54],"107":[1,66],"109":46,"110":[1,75],"112":[1,76],"113":47,"114":[1,77],"115":48,"116":[1,78],"117":79,"125":[1,49],"130":44,"131":[1,73],"132":[1,74],"135":[1,39],"136":[1,40],"137":[1,41],"138":[1,42],"139":[1,43]},{"4":[1,300],"29":[1,301],"30":[1,362]},{"4":[2,50],"29":[2,50],"30":[2,50],"59":[2,50],"86":[2,50]},{"4":[2,51],"29":[2,51],"30":[2,51],"59":[2,51],"86":[2,51]},{"1":[2,125],"4":[2,125],"29":[2,125],"30":[2,125],"46":[2,125],"51":[2,125],"59":[2,125],"63":[2,125],"74":[2,125],"75":[2,125],"76":[2,125],"77":[2,125],"80":[2,125],"81":[2,125],"82":[2,125],"83":[2,125],"86":[2,125],"88":[2,125],"94":[2,125],"96":[2,125],"100":[2,125],"108":[2,125],"110":[2,125],"111":[2,125],"112":[2,125],"116":[2,125],"122":[2,125],"123":[2,125],"124":[2,125],"133":[2,125],"134":[2,125],"135":[2,125],"136":[2,125],"137":[2,125],"138":[2,125],"139":[2,125],"140":[2,125],"141":[2,125],"142":[2,125],"143":[2,125],"144":[2,125],"145":[2,125],"146":[2,125],"147":[2,125]},{"51":[1,93],"63":[1,110],"81":[1,363],"109":108,"110":[1,75],"112":[1,76],"115":109,"116":[1,78],"117":79,"122":[1,103],"123":[1,104],"133":[1,106],"134":[1,107],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,171],"4":[2,171],"29":[2,171],"30":[2,171],"51":[2,171],"59":[2,171],"63":[2,171],"81":[2,171],"86":[2,171],"96":[2,171],"100":[2,171],"108":[2,171],"110":[2,171],"111":[2,171],"112":[2,171],"116":[2,171],"122":[2,171],"123":[2,171],"124":[2,171],"133":[2,171],"134":[2,171],"135":[2,171],"136":[2,171],"137":[2,171],"138":[2,171],"139":[2,171],"140":[2,171],"141":[2,171],"142":[2,171],"143":[2,171],"144":[2,171],"145":[2,171],"147":[2,171]},{"1":[2,102],"4":[2,102],"29":[2,102],"30":[2,102],"51":[2,102],"59":[2,102],"63":[2,102],"81":[2,102],"86":[2,102],"96":[2,102],"100":[2,102],"108":[2,102],"110":[2,102],"111":[2,102],"112":[2,102],"116":[2,102],"122":[2,102],"123":[2,102],"124":[2,102],"133":[2,102],"134":[2,102],"135":[2,102],"136":[2,102],"137":[2,102],"138":[2,102],"139":[2,102],"140":[2,102],"141":[2,102],"142":[2,102],"143":[2,102],"144":[2,102],"145":[2,102],"147":[2,102]},{"1":[2,124],"4":[2,124],"29":[2,124],"30":[2,124],"51":[2,124],"59":[2,124],"63":[2,124],"74":[2,124],"75":[2,124],"76":[2,124],"77":[2,124],"80":[2,124],"81":[2,124],"82":[2,124],"83":[2,124],"86":[2,124],"94":[2,124],"96":[2,124],"100":[2,124],"108":[2,124],"110":[2,124],"111":[2,124],"112":[2,124],"116":[2,124],"122":[2,124],"123":[2,124],"124":[2,124],"133":[2,124],"134":[2,124],"135":[2,124],"136":[2,124],"137":[2,124],"138":[2,124],"139":[2,124],"140":[2,124],"141":[2,124],"142":[2,124],"143":[2,124],"144":[2,124],"145":[2,124],"146":[2,124],"147":[2,124]},{"4":[2,132],"29":[2,132],"30":[2,132],"59":[2,132],"96":[2,132],"100":[2,132]},{"1":[2,168],"4":[2,168],"29":[2,168],"30":[2,168],"51":[1,93],"59":[2,168],"63":[1,110],"81":[2,168],"86":[2,168],"96":[2,168],"100":[2,168],"108":[2,168],"109":108,"110":[2,168],"111":[2,168],"112":[2,168],"115":109,"116":[2,168],"117":79,"122":[1,103],"123":[1,104],"124":[2,168],"133":[2,168],"134":[2,168],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"1":[2,169],"4":[2,169],"29":[2,169],"30":[2,169],"51":[1,93],"59":[2,169],"63":[1,110],"81":[2,169],"86":[2,169],"96":[2,169],"100":[2,169],"108":[2,169],"109":108,"110":[2,169],"111":[2,169],"112":[2,169],"115":109,"116":[2,169],"117":79,"122":[1,103],"123":[1,104],"124":[2,169],"133":[2,169],"134":[2,169],"135":[1,105],"136":[1,95],"137":[1,94],"138":[1,91],"139":[1,92],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"147":[1,102]},{"4":[2,98],"29":[2,98],"30":[2,98],"59":[2,98],"86":[2,98]},{"1":[2,126],"4":[2,126],"29":[2,126],"30":[2,126],"46":[2,126],"51":[2,126],"59":[2,126],"63":[2,126],"74":[2,126],"75":[2,126],"76":[2,126],"77":[2,126],"80":[2,126],"81":[2,126],"82":[2,126],"83":[2,126],"86":[2,126],"88":[2,126],"94":[2,126],"96":[2,126],"100":[2,126],"108":[2,126],"110":[2,126],"111":[2,126],"112":[2,126],"116":[2,126],"122":[2,126],"123":[2,126],"124":[2,126],"133":[2,126],"134":[2,126],"135":[2,126],"136":[2,126],"137":[2,126],"138":[2,126],"139":[2,126],"140":[2,126],"141":[2,126],"142":[2,126],"143":[2,126],"144":[2,126],"145":[2,126],"146":[2,126],"147":[2,126]}], defaultActions: {"88":[2,4]}, parseError: function parseError(str, hash) { throw new Error(str); diff --git a/src/grammar.coffee b/src/grammar.coffee index ef368ee9..9803f590 100644 --- a/src/grammar.coffee +++ b/src/grammar.coffee @@ -529,6 +529,7 @@ grammar = o "Expression --", -> new OpNode '--', $1, null, true o "Expression ++", -> new OpNode '++', $1, null, true + o "Expression ? Expression", -> new OpNode '?', $1, $3 o "Expression + Expression", -> new OpNode '+', $1, $3 o "Expression - Expression", -> new OpNode '-', $1, $3 o "Expression == Expression", -> new OpNode '==', $1, $3 @@ -561,7 +562,7 @@ grammar = # # (2 + 3) * 4 operators = [ - ["left", '?'] + ["right", '?'] ["nonassoc", '++', '--'] ["right", 'UNARY'] ["left", 'MATH'] diff --git a/src/lexer.coffee b/src/lexer.coffee index 02e90bb5..b41bd576 100644 --- a/src/lexer.coffee +++ b/src/lexer.coffee @@ -280,13 +280,13 @@ exports.Lexer = class Lexer if @value() in ['or', 'and'] @tokens.splice(@tokens.length - 1, 1, ['COMPOUND_ASSIGN', CONVERSIONS[@value()] + '=', @prev()[2]]) return true - if value is ';' then tag = 'TERMINATOR' - else if (value is '?' and spaced) or include(LOGIC, value) then tag = 'LOGIC' - else if include(MATH, value) then tag = 'MATH' - else if include(COMPARE, value) then tag = 'COMPARE' - else if include(COMPOUND_ASSIGN, value) then tag = 'COMPOUND_ASSIGN' - else if include(UNARY, value) then tag = 'UNARY' - else if include(SHIFT, value) then tag = 'SHIFT' + if value is ';' then tag = 'TERMINATOR' + else if include(LOGIC, value) then tag = 'LOGIC' + else if include(MATH, value) then tag = 'MATH' + else if include(COMPARE, value) then tag = 'COMPARE' + else if include(COMPOUND_ASSIGN, value) then tag = 'COMPOUND_ASSIGN' + else if include(UNARY, value) then tag = 'UNARY' + else if include(SHIFT, value) then tag = 'SHIFT' else if include(CALLABLE, @tag()) and not spaced if value is '(' tag = 'CALL_START' diff --git a/test/test_existence.coffee b/test/test_existence.coffee index 59df5259..8aa42d85 100644 --- a/test/test_existence.coffee +++ b/test/test_existence.coffee @@ -24,6 +24,8 @@ func = -> i += 1 result = func() ? 101 ok result is 10 +ok (non ? existent ? variables ? 1) is 1 + # Only evaluate once. counter = 0