diff --git a/lib/grammar.js b/lib/grammar.js index 9fbb556c..b66a690c 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -739,8 +739,12 @@ }), o("Expression INSTANCEOF Expression", function() { return new OpNode('instanceof', $1, $3); }), o("Expression IN Expression", function() { + return new InNode($1, $3); + }), o("Expression OF Expression", function() { return new OpNode('in', $1, $3); }), o("Expression ! IN Expression", function() { + return new OpNode('!', new InNode($1, $4)); + }), o("Expression ! OF Expression", function() { return new OpNode('!', new ParentheticalNode(new OpNode('in', $1, $4))); }) ] diff --git a/lib/nodes.js b/lib/nodes.js index 91a6ee45..0c445c37 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -1,5 +1,5 @@ (function(){ - var AccessorNode, ArrayNode, AssignNode, BaseNode, CallNode, ClassNode, ClosureNode, CodeNode, CommentNode, ExistenceNode, Expressions, ExtendsNode, ForNode, IDENTIFIER, IS_STRING, IfNode, IndexNode, LiteralNode, NUMBER, ObjectNode, OpNode, ParentheticalNode, PushNode, RangeNode, ReturnNode, Scope, SliceNode, SplatNode, TAB, TRAILING_WHITESPACE, ThrowNode, TryNode, UTILITIES, ValueNode, WhileNode, _a, compact, del, flatten, helpers, include, indexOf, literal, merge, starts, utility; + var AccessorNode, ArrayNode, AssignNode, BaseNode, CallNode, ClassNode, ClosureNode, CodeNode, CommentNode, ExistenceNode, Expressions, ExtendsNode, ForNode, IDENTIFIER, IS_STRING, IfNode, InNode, IndexNode, LiteralNode, NUMBER, ObjectNode, OpNode, ParentheticalNode, PushNode, RangeNode, ReturnNode, Scope, SliceNode, SplatNode, TAB, TRAILING_WHITESPACE, ThrowNode, TryNode, UTILITIES, ValueNode, WhileNode, _a, compact, del, flatten, helpers, include, indexOf, literal, merge, starts, utility; var __extends = function(child, parent) { var ctor = function(){ }; ctor.prototype = parent.prototype; @@ -79,14 +79,21 @@ // If the code generation wishes to use the result of a complex expression // in multiple places, ensure that the expression is only ever evaluated once, // by assigning it to a temporary variable. - BaseNode.prototype.compileReference = function(o, onlyIfNecessary) { - var compiled, reference; - if (onlyIfNecessary && !(this instanceof CallNode || this instanceof ValueNode && (!(this.base instanceof LiteralNode) || this.hasProperties()))) { - return [this, this]; + BaseNode.prototype.compileReference = function(o, options) { + var compiled, pair, reference; + pair = (function() { + if (!(this instanceof CallNode || this instanceof ValueNode && (!(this.base instanceof LiteralNode) || this.hasProperties()))) { + return [this, this]; + } else { + reference = literal(o.scope.freeVariable()); + compiled = new AssignNode(reference, this); + return [compiled, reference]; + } + }).call(this); + if (!(options && options.precompile)) { + return pair; } - reference = literal(o.scope.freeVariable()); - compiled = new AssignNode(reference, this); - return [compiled, reference]; + return [pair[0].compile(o), pair[1].compile(o)]; }; // Convenience method to grab the current indentation level, plus tabbing in. BaseNode.prototype.idt = function(tabs) { @@ -704,10 +711,10 @@ // But only if they need to be cached to avoid double evaluation. RangeNode.prototype.compileVariables = function(o) { var _b, _c, parts; - _b = this.from.compileReference(o, true); + _b = this.from.compileReference(o); this.from = _b[0]; this.fromVar = _b[1]; - _c = this.to.compileReference(o, true); + _c = this.to.compileReference(o); this.to = _c[0]; this.toVar = _c[1]; parts = []; @@ -1425,6 +1432,63 @@ }; return OpNode; })(); + //### InNode + exports.InNode = (function() { + InNode = function(object, array) { + this.object = object; + this.array = array; + return this; + }; + __extends(InNode, BaseNode); + InNode.prototype['class'] = 'InNode'; + InNode.prototype.children = ['object', 'array']; + InNode.prototype.isArray = function() { + return this.array instanceof ValueNode && this.array.isArray(); + }; + InNode.prototype.compileNode = function(o) { + var _b; + _b = this.object.compileReference(o, { + precompile: true + }); + this.obj1 = _b[0]; + this.obj2 = _b[1]; + if (this.isArray()) { + return this.compileOrTest(o); + } else { + return this.compileLoopTest(o); + } + }; + InNode.prototype.compileOrTest = function(o) { + var _b, _c, _d, i, item, tests; + tests = (function() { + _b = []; _c = this.array.base.objects; + for (i = 0, _d = _c.length; i < _d; i++) { + item = _c[i]; + _b.push(("" + (item.compile(o)) + " === " + (i ? this.obj2 : this.obj1))); + } + return _b; + }).call(this); + return "(" + (tests.join(' || ')) + ")"; + }; + InNode.prototype.compileLoopTest = function(o) { + var _b, _c, body, i, l; + _b = this.array.compileReference(o, { + precompile: true + }); + this.arr1 = _b[0]; + this.arr2 = _b[1]; + _c = [o.scope.freeVariable(), o.scope.freeVariable()]; + i = _c[0]; + l = _c[1]; + body = ("!!(function(){ for (var " + i + "=0, " + l + "=" + (this.arr1) + ".length; " + i + "<" + l + "; " + i + "++) if (" + (this.arr2) + "[" + i + "] === " + this.obj2 + ") return true; })()"); + if (this.obj1 !== this.obj2) { + return "" + this.obj1 + ";\n" + this.tab + body; + } else { + return body; + } + }; + return InNode; + })(); //### TryNode // A classic *try/catch/finally* block. exports.TryNode = (function() { @@ -1506,7 +1570,7 @@ // Be careful not to double-evaluate anything. ExistenceNode.compileTest = function(o, variable) { var _b, first, second; - _b = variable.compileReference(o, true); + _b = variable.compileReference(o); first = _b[0]; second = _b[1]; return "(typeof " + (first.compile(o)) + " !== \"undefined\" && " + (second.compile(o)) + " !== null)"; diff --git a/lib/parser.js b/lib/parser.js index b0c1a7fe..f8c354d5 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,"Extension":29,"INDENT":30,"OUTDENT":31,"Identifier":32,"IDENTIFIER":33,"AlphaNumeric":34,"NUMBER":35,"STRING":36,"Literal":37,"JS":38,"REGEX":39,"TRUE":40,"FALSE":41,"YES":42,"NO":43,"ON":44,"OFF":45,"Assignable":46,"ASSIGN":47,"AssignObj":48,"RETURN":49,"COMMENT":50,"HERECOMMENT":51,"?":52,"PARAM_START":53,"ParamList":54,"PARAM_END":55,"FuncGlyph":56,"->":57,"=>":58,"OptComma":59,",":60,"Param":61,"PARAM":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,"NEW":91,"Super":92,"Arguments":93,"CALL_START":94,"ArgList":95,"CALL_END":96,"SUPER":97,"THIS":98,"@":99,"[":100,"]":101,"SimpleArgs":102,"TRY":103,"Catch":104,"FINALLY":105,"CATCH":106,"THROW":107,"(":108,")":109,"EXTENSION":110,"WhileSource":111,"WHILE":112,"WHEN":113,"UNTIL":114,"Loop":115,"LOOP":116,"FOR":117,"ForVariables":118,"ForSource":119,"ForValue":120,"IN":121,"OF":122,"BY":123,"SWITCH":124,"Whens":125,"ELSE":126,"When":127,"LEADING_WHEN":128,"IfStart":129,"IF":130,"UNLESS":131,"IfBlock":132,"!":133,"!!":134,"-":135,"+":136,"~":137,"--":138,"++":139,"DELETE":140,"TYPEOF":141,"*":142,"/":143,"%":144,"<<":145,">>":146,">>>":147,"&":148,"|":149,"^":150,"<=":151,"<":152,">":153,">=":154,"==":155,"!=":156,"&&":157,"||":158,"-=":159,"+=":160,"/=":161,"*=":162,"%=":163,"||=":164,"&&=":165,"?=":166,"INSTANCEOF":167,"$accept":0,"$end":1}, terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","30":"INDENT","31":"OUTDENT","33":"IDENTIFIER","35":"NUMBER","36":"STRING","38":"JS","39":"REGEX","40":"TRUE","41":"FALSE","42":"YES","43":"NO","44":"ON","45":"OFF","47":"ASSIGN","49":"RETURN","50":"COMMENT","51":"HERECOMMENT","52":"?","53":"PARAM_START","55":"PARAM_END","57":"->","58":"=>","60":",","62":"PARAM","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","91":"NEW","94":"CALL_START","96":"CALL_END","97":"SUPER","98":"THIS","99":"@","100":"[","101":"]","103":"TRY","105":"FINALLY","106":"CATCH","107":"THROW","108":"(","109":")","110":"EXTENSION","112":"WHILE","113":"WHEN","114":"UNTIL","116":"LOOP","117":"FOR","121":"IN","122":"OF","123":"BY","124":"SWITCH","126":"ELSE","128":"LEADING_WHEN","130":"IF","131":"UNLESS","133":"!","134":"!!","135":"-","136":"+","137":"~","138":"--","139":"++","140":"DELETE","141":"TYPEOF","142":"*","143":"/","144":"%","145":"<<","146":">>","147":">>>","148":"&","149":"|","150":"^","151":"<=","152":"<","153":">","154":">=","155":"==","156":"!=","157":"&&","158":"||","159":"-=","160":"+=","161":"/=","162":"*=","163":"%=","164":"||=","165":"&&=","166":"?=","167":"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],[8,1],[6,3],[6,2],[6,2],[32,1],[34,1],[34,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[18,3],[48,1],[48,1],[48,3],[48,3],[48,1],[10,2],[10,1],[28,1],[28,1],[27,2],[16,5],[16,2],[56,1],[56,1],[59,0],[59,1],[54,0],[54,1],[54,3],[61,1],[61,4],[26,4],[64,1],[64,2],[64,2],[64,1],[46,1],[46,1],[46,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],[90,1],[90,3],[89,0],[89,1],[89,3],[15,1],[15,2],[15,1],[24,3],[66,2],[66,2],[93,4],[92,5],[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],[102,1],[102,3],[20,3],[20,4],[20,5],[104,3],[11,2],[70,3],[29,1],[111,2],[111,4],[111,2],[111,4],[21,2],[21,2],[21,2],[21,1],[115,2],[115,2],[22,4],[22,4],[22,4],[120,1],[120,1],[120,1],[118,1],[118,3],[119,2],[119,2],[119,4],[119,4],[119,4],[119,6],[119,6],[23,5],[23,7],[23,4],[23,6],[125,1],[125,2],[127,3],[127,4],[127,3],[129,3],[129,3],[129,5],[132,1],[132,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,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,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[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],[8,1],[6,3],[6,2],[6,2],[32,1],[34,1],[34,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[18,3],[48,1],[48,1],[48,3],[48,3],[48,1],[10,2],[10,1],[28,1],[28,1],[27,2],[16,5],[16,2],[56,1],[56,1],[59,0],[59,1],[54,0],[54,1],[54,3],[61,1],[61,4],[26,4],[64,1],[64,2],[64,2],[64,1],[46,1],[46,1],[46,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],[90,1],[90,3],[89,0],[89,1],[89,3],[15,1],[15,2],[15,1],[24,3],[66,2],[66,2],[93,4],[92,5],[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],[102,1],[102,3],[20,3],[20,4],[20,5],[104,3],[11,2],[70,3],[29,1],[111,2],[111,4],[111,2],[111,4],[21,2],[21,2],[21,2],[21,1],[115,2],[115,2],[22,4],[22,4],[22,4],[120,1],[120,1],[120,1],[118,1],[118,3],[119,2],[119,2],[119,4],[119,4],[119,4],[119,6],[119,6],[23,5],[23,7],[23,4],[23,6],[125,1],[125,2],[127,3],[127,4],[127,3],[129,3],[129,3],[129,5],[132,1],[132,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,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,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,4],[17,4]], performAction: function anonymous(yytext,yyleng,yylineno,yy) { var $$ = arguments[5],$0=arguments[5].length; @@ -506,13 +506,17 @@ case 217:this.$ = new OpNode('?=', $$[$0-3+1-1], $$[$0-3+3-1]); break; case 218:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 219:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); +case 219:this.$ = new InNode($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 220:this.$ = new OpNode('!', new ParentheticalNode(new OpNode('in', $$[$0-4+1-1], $$[$0-4+4-1]))); +case 220:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 221:this.$ = new OpNode('!', new InNode($$[$0-4+1-1], $$[$0-4+4-1])); +break; +case 222:this.$ = new OpNode('!', 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":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[1,6],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[3]},{"1":[2,2],"28":92,"50":[1,57],"51":[1,58]},{"1":[2,3],"4":[1,93]},{"4":[1,94]},{"1":[2,5],"4":[2,5],"31":[2,5]},{"5":95,"7":5,"8":7,"9":8,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"31":[1,96],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,8],"4":[2,8],"31":[2,8],"52":[1,118],"63":[1,134],"109":[2,8],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,9],"4":[2,9],"31":[2,9],"109":[2,9],"111":137,"112":[1,81],"114":[1,82],"117":[1,138],"130":[1,135],"131":[1,136]},{"1":[2,14],"4":[2,14],"30":[2,14],"31":[2,14],"52":[2,14],"60":[2,14],"63":[2,14],"65":140,"74":[1,142],"75":[1,143],"76":[1,144],"77":[1,145],"78":146,"79":147,"80":[1,148],"81":[2,14],"82":[1,149],"83":[1,150],"86":[2,14],"93":139,"94":[1,141],"96":[2,14],"101":[2,14],"109":[2,14],"112":[2,14],"113":[2,14],"114":[2,14],"117":[2,14],"121":[2,14],"123":[2,14],"130":[2,14],"131":[2,14],"133":[2,14],"135":[2,14],"136":[2,14],"138":[2,14],"139":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[2,14],"148":[2,14],"149":[2,14],"150":[2,14],"151":[2,14],"152":[2,14],"153":[2,14],"154":[2,14],"155":[2,14],"156":[2,14],"157":[2,14],"158":[2,14],"159":[2,14],"160":[2,14],"161":[2,14],"162":[2,14],"163":[2,14],"164":[2,14],"165":[2,14],"166":[2,14],"167":[2,14]},{"1":[2,15],"4":[2,15],"30":[2,15],"31":[2,15],"52":[2,15],"60":[2,15],"63":[2,15],"81":[2,15],"86":[2,15],"96":[2,15],"101":[2,15],"109":[2,15],"112":[2,15],"113":[2,15],"114":[2,15],"117":[2,15],"121":[2,15],"123":[2,15],"130":[2,15],"131":[2,15],"133":[2,15],"135":[2,15],"136":[2,15],"138":[2,15],"139":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[2,15],"149":[2,15],"150":[2,15],"151":[2,15],"152":[2,15],"153":[2,15],"154":[2,15],"155":[2,15],"156":[2,15],"157":[2,15],"158":[2,15],"159":[2,15],"160":[2,15],"161":[2,15],"162":[2,15],"163":[2,15],"164":[2,15],"165":[2,15],"166":[2,15],"167":[2,15]},{"1":[2,16],"4":[2,16],"30":[2,16],"31":[2,16],"52":[2,16],"60":[2,16],"63":[2,16],"81":[2,16],"86":[2,16],"96":[2,16],"101":[2,16],"109":[2,16],"112":[2,16],"113":[2,16],"114":[2,16],"117":[2,16],"121":[2,16],"123":[2,16],"130":[2,16],"131":[2,16],"133":[2,16],"135":[2,16],"136":[2,16],"138":[2,16],"139":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"148":[2,16],"149":[2,16],"150":[2,16],"151":[2,16],"152":[2,16],"153":[2,16],"154":[2,16],"155":[2,16],"156":[2,16],"157":[2,16],"158":[2,16],"159":[2,16],"160":[2,16],"161":[2,16],"162":[2,16],"163":[2,16],"164":[2,16],"165":[2,16],"166":[2,16],"167":[2,16]},{"1":[2,17],"4":[2,17],"30":[2,17],"31":[2,17],"52":[2,17],"60":[2,17],"63":[2,17],"81":[2,17],"86":[2,17],"96":[2,17],"101":[2,17],"109":[2,17],"112":[2,17],"113":[2,17],"114":[2,17],"117":[2,17],"121":[2,17],"123":[2,17],"130":[2,17],"131":[2,17],"133":[2,17],"135":[2,17],"136":[2,17],"138":[2,17],"139":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"148":[2,17],"149":[2,17],"150":[2,17],"151":[2,17],"152":[2,17],"153":[2,17],"154":[2,17],"155":[2,17],"156":[2,17],"157":[2,17],"158":[2,17],"159":[2,17],"160":[2,17],"161":[2,17],"162":[2,17],"163":[2,17],"164":[2,17],"165":[2,17],"166":[2,17],"167":[2,17]},{"1":[2,18],"4":[2,18],"30":[2,18],"31":[2,18],"52":[2,18],"60":[2,18],"63":[2,18],"81":[2,18],"86":[2,18],"96":[2,18],"101":[2,18],"109":[2,18],"112":[2,18],"113":[2,18],"114":[2,18],"117":[2,18],"121":[2,18],"123":[2,18],"130":[2,18],"131":[2,18],"133":[2,18],"135":[2,18],"136":[2,18],"138":[2,18],"139":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"148":[2,18],"149":[2,18],"150":[2,18],"151":[2,18],"152":[2,18],"153":[2,18],"154":[2,18],"155":[2,18],"156":[2,18],"157":[2,18],"158":[2,18],"159":[2,18],"160":[2,18],"161":[2,18],"162":[2,18],"163":[2,18],"164":[2,18],"165":[2,18],"166":[2,18],"167":[2,18]},{"1":[2,19],"4":[2,19],"30":[2,19],"31":[2,19],"52":[2,19],"60":[2,19],"63":[2,19],"81":[2,19],"86":[2,19],"96":[2,19],"101":[2,19],"109":[2,19],"112":[2,19],"113":[2,19],"114":[2,19],"117":[2,19],"121":[2,19],"123":[2,19],"130":[2,19],"131":[2,19],"133":[2,19],"135":[2,19],"136":[2,19],"138":[2,19],"139":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"148":[2,19],"149":[2,19],"150":[2,19],"151":[2,19],"152":[2,19],"153":[2,19],"154":[2,19],"155":[2,19],"156":[2,19],"157":[2,19],"158":[2,19],"159":[2,19],"160":[2,19],"161":[2,19],"162":[2,19],"163":[2,19],"164":[2,19],"165":[2,19],"166":[2,19],"167":[2,19]},{"1":[2,20],"4":[2,20],"30":[2,20],"31":[2,20],"52":[2,20],"60":[2,20],"63":[2,20],"81":[2,20],"86":[2,20],"96":[2,20],"101":[2,20],"109":[2,20],"112":[2,20],"113":[2,20],"114":[2,20],"117":[2,20],"121":[2,20],"123":[2,20],"130":[2,20],"131":[2,20],"133":[2,20],"135":[2,20],"136":[2,20],"138":[2,20],"139":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"148":[2,20],"149":[2,20],"150":[2,20],"151":[2,20],"152":[2,20],"153":[2,20],"154":[2,20],"155":[2,20],"156":[2,20],"157":[2,20],"158":[2,20],"159":[2,20],"160":[2,20],"161":[2,20],"162":[2,20],"163":[2,20],"164":[2,20],"165":[2,20],"166":[2,20],"167":[2,20]},{"1":[2,21],"4":[2,21],"30":[2,21],"31":[2,21],"52":[2,21],"60":[2,21],"63":[2,21],"81":[2,21],"86":[2,21],"96":[2,21],"101":[2,21],"109":[2,21],"112":[2,21],"113":[2,21],"114":[2,21],"117":[2,21],"121":[2,21],"123":[2,21],"130":[2,21],"131":[2,21],"133":[2,21],"135":[2,21],"136":[2,21],"138":[2,21],"139":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"148":[2,21],"149":[2,21],"150":[2,21],"151":[2,21],"152":[2,21],"153":[2,21],"154":[2,21],"155":[2,21],"156":[2,21],"157":[2,21],"158":[2,21],"159":[2,21],"160":[2,21],"161":[2,21],"162":[2,21],"163":[2,21],"164":[2,21],"165":[2,21],"166":[2,21],"167":[2,21]},{"1":[2,22],"4":[2,22],"30":[2,22],"31":[2,22],"52":[2,22],"60":[2,22],"63":[2,22],"81":[2,22],"86":[2,22],"96":[2,22],"101":[2,22],"109":[2,22],"112":[2,22],"113":[2,22],"114":[2,22],"117":[2,22],"121":[2,22],"123":[2,22],"130":[2,22],"131":[2,22],"133":[2,22],"135":[2,22],"136":[2,22],"138":[2,22],"139":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"148":[2,22],"149":[2,22],"150":[2,22],"151":[2,22],"152":[2,22],"153":[2,22],"154":[2,22],"155":[2,22],"156":[2,22],"157":[2,22],"158":[2,22],"159":[2,22],"160":[2,22],"161":[2,22],"162":[2,22],"163":[2,22],"164":[2,22],"165":[2,22],"166":[2,22],"167":[2,22]},{"1":[2,23],"4":[2,23],"30":[2,23],"31":[2,23],"52":[2,23],"60":[2,23],"63":[2,23],"81":[2,23],"86":[2,23],"96":[2,23],"101":[2,23],"109":[2,23],"112":[2,23],"113":[2,23],"114":[2,23],"117":[2,23],"121":[2,23],"123":[2,23],"130":[2,23],"131":[2,23],"133":[2,23],"135":[2,23],"136":[2,23],"138":[2,23],"139":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"148":[2,23],"149":[2,23],"150":[2,23],"151":[2,23],"152":[2,23],"153":[2,23],"154":[2,23],"155":[2,23],"156":[2,23],"157":[2,23],"158":[2,23],"159":[2,23],"160":[2,23],"161":[2,23],"162":[2,23],"163":[2,23],"164":[2,23],"165":[2,23],"166":[2,23],"167":[2,23]},{"1":[2,24],"4":[2,24],"30":[2,24],"31":[2,24],"52":[2,24],"60":[2,24],"63":[2,24],"81":[2,24],"86":[2,24],"96":[2,24],"101":[2,24],"109":[2,24],"112":[2,24],"113":[2,24],"114":[2,24],"117":[2,24],"121":[2,24],"123":[2,24],"130":[2,24],"131":[2,24],"133":[2,24],"135":[2,24],"136":[2,24],"138":[2,24],"139":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"148":[2,24],"149":[2,24],"150":[2,24],"151":[2,24],"152":[2,24],"153":[2,24],"154":[2,24],"155":[2,24],"156":[2,24],"157":[2,24],"158":[2,24],"159":[2,24],"160":[2,24],"161":[2,24],"162":[2,24],"163":[2,24],"164":[2,24],"165":[2,24],"166":[2,24],"167":[2,24]},{"1":[2,25],"4":[2,25],"30":[2,25],"31":[2,25],"52":[2,25],"60":[2,25],"63":[2,25],"81":[2,25],"86":[2,25],"96":[2,25],"101":[2,25],"109":[2,25],"112":[2,25],"113":[2,25],"114":[2,25],"117":[2,25],"121":[2,25],"123":[2,25],"130":[2,25],"131":[2,25],"133":[2,25],"135":[2,25],"136":[2,25],"138":[2,25],"139":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"148":[2,25],"149":[2,25],"150":[2,25],"151":[2,25],"152":[2,25],"153":[2,25],"154":[2,25],"155":[2,25],"156":[2,25],"157":[2,25],"158":[2,25],"159":[2,25],"160":[2,25],"161":[2,25],"162":[2,25],"163":[2,25],"164":[2,25],"165":[2,25],"166":[2,25],"167":[2,25]},{"1":[2,26],"4":[2,26],"30":[2,26],"31":[2,26],"52":[2,26],"60":[2,26],"63":[2,26],"81":[2,26],"86":[2,26],"96":[2,26],"101":[2,26],"109":[2,26],"112":[2,26],"113":[2,26],"114":[2,26],"117":[2,26],"121":[2,26],"123":[2,26],"130":[2,26],"131":[2,26],"133":[2,26],"135":[2,26],"136":[2,26],"138":[2,26],"139":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"148":[2,26],"149":[2,26],"150":[2,26],"151":[2,26],"152":[2,26],"153":[2,26],"154":[2,26],"155":[2,26],"156":[2,26],"157":[2,26],"158":[2,26],"159":[2,26],"160":[2,26],"161":[2,26],"162":[2,26],"163":[2,26],"164":[2,26],"165":[2,26],"166":[2,26],"167":[2,26]},{"1":[2,27],"4":[2,27],"30":[2,27],"31":[2,27],"52":[2,27],"60":[2,27],"63":[2,27],"81":[2,27],"86":[2,27],"96":[2,27],"101":[2,27],"109":[2,27],"112":[2,27],"113":[2,27],"114":[2,27],"117":[2,27],"121":[2,27],"123":[2,27],"130":[2,27],"131":[2,27],"133":[2,27],"135":[2,27],"136":[2,27],"138":[2,27],"139":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"148":[2,27],"149":[2,27],"150":[2,27],"151":[2,27],"152":[2,27],"153":[2,27],"154":[2,27],"155":[2,27],"156":[2,27],"157":[2,27],"158":[2,27],"159":[2,27],"160":[2,27],"161":[2,27],"162":[2,27],"163":[2,27],"164":[2,27],"165":[2,27],"166":[2,27],"167":[2,27]},{"1":[2,28],"4":[2,28],"30":[2,28],"31":[2,28],"52":[2,28],"60":[2,28],"63":[2,28],"81":[2,28],"86":[2,28],"96":[2,28],"101":[2,28],"109":[2,28],"112":[2,28],"113":[2,28],"114":[2,28],"117":[2,28],"121":[2,28],"123":[2,28],"130":[2,28],"131":[2,28],"133":[2,28],"135":[2,28],"136":[2,28],"138":[2,28],"139":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"148":[2,28],"149":[2,28],"150":[2,28],"151":[2,28],"152":[2,28],"153":[2,28],"154":[2,28],"155":[2,28],"156":[2,28],"157":[2,28],"158":[2,28],"159":[2,28],"160":[2,28],"161":[2,28],"162":[2,28],"163":[2,28],"164":[2,28],"165":[2,28],"166":[2,28],"167":[2,28]},{"1":[2,29],"4":[2,29],"30":[2,29],"31":[2,29],"52":[2,29],"60":[2,29],"63":[2,29],"81":[2,29],"86":[2,29],"96":[2,29],"101":[2,29],"109":[2,29],"112":[2,29],"113":[2,29],"114":[2,29],"117":[2,29],"121":[2,29],"123":[2,29],"130":[2,29],"131":[2,29],"133":[2,29],"135":[2,29],"136":[2,29],"138":[2,29],"139":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"148":[2,29],"149":[2,29],"150":[2,29],"151":[2,29],"152":[2,29],"153":[2,29],"154":[2,29],"155":[2,29],"156":[2,29],"157":[2,29],"158":[2,29],"159":[2,29],"160":[2,29],"161":[2,29],"162":[2,29],"163":[2,29],"164":[2,29],"165":[2,29],"166":[2,29],"167":[2,29]},{"1":[2,10],"4":[2,10],"31":[2,10],"109":[2,10],"112":[2,10],"114":[2,10],"117":[2,10],"130":[2,10],"131":[2,10]},{"1":[2,11],"4":[2,11],"31":[2,11],"109":[2,11],"112":[2,11],"114":[2,11],"117":[2,11],"130":[2,11],"131":[2,11]},{"1":[2,12],"4":[2,12],"31":[2,12],"109":[2,12],"112":[2,12],"114":[2,12],"117":[2,12],"130":[2,12],"131":[2,12]},{"1":[2,13],"4":[2,13],"31":[2,13],"109":[2,13],"112":[2,13],"114":[2,13],"117":[2,13],"130":[2,13],"131":[2,13]},{"1":[2,75],"4":[2,75],"30":[2,75],"31":[2,75],"47":[1,151],"52":[2,75],"60":[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],"101":[2,75],"109":[2,75],"112":[2,75],"113":[2,75],"114":[2,75],"117":[2,75],"121":[2,75],"123":[2,75],"130":[2,75],"131":[2,75],"133":[2,75],"135":[2,75],"136":[2,75],"138":[2,75],"139":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75],"162":[2,75],"163":[2,75],"164":[2,75],"165":[2,75],"166":[2,75],"167":[2,75]},{"1":[2,76],"4":[2,76],"30":[2,76],"31":[2,76],"52":[2,76],"60":[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],"101":[2,76],"109":[2,76],"112":[2,76],"113":[2,76],"114":[2,76],"117":[2,76],"121":[2,76],"123":[2,76],"130":[2,76],"131":[2,76],"133":[2,76],"135":[2,76],"136":[2,76],"138":[2,76],"139":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76],"162":[2,76],"163":[2,76],"164":[2,76],"165":[2,76],"166":[2,76],"167":[2,76]},{"1":[2,77],"4":[2,77],"30":[2,77],"31":[2,77],"52":[2,77],"60":[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],"101":[2,77],"109":[2,77],"112":[2,77],"113":[2,77],"114":[2,77],"117":[2,77],"121":[2,77],"123":[2,77],"130":[2,77],"131":[2,77],"133":[2,77],"135":[2,77],"136":[2,77],"138":[2,77],"139":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77],"151":[2,77],"152":[2,77],"153":[2,77],"154":[2,77],"155":[2,77],"156":[2,77],"157":[2,77],"158":[2,77],"159":[2,77],"160":[2,77],"161":[2,77],"162":[2,77],"163":[2,77],"164":[2,77],"165":[2,77],"166":[2,77],"167":[2,77]},{"1":[2,78],"4":[2,78],"30":[2,78],"31":[2,78],"52":[2,78],"60":[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],"101":[2,78],"109":[2,78],"112":[2,78],"113":[2,78],"114":[2,78],"117":[2,78],"121":[2,78],"123":[2,78],"130":[2,78],"131":[2,78],"133":[2,78],"135":[2,78],"136":[2,78],"138":[2,78],"139":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78],"151":[2,78],"152":[2,78],"153":[2,78],"154":[2,78],"155":[2,78],"156":[2,78],"157":[2,78],"158":[2,78],"159":[2,78],"160":[2,78],"161":[2,78],"162":[2,78],"163":[2,78],"164":[2,78],"165":[2,78],"166":[2,78],"167":[2,78]},{"1":[2,79],"4":[2,79],"30":[2,79],"31":[2,79],"52":[2,79],"60":[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],"101":[2,79],"109":[2,79],"112":[2,79],"113":[2,79],"114":[2,79],"117":[2,79],"121":[2,79],"123":[2,79],"130":[2,79],"131":[2,79],"133":[2,79],"135":[2,79],"136":[2,79],"138":[2,79],"139":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79],"151":[2,79],"152":[2,79],"153":[2,79],"154":[2,79],"155":[2,79],"156":[2,79],"157":[2,79],"158":[2,79],"159":[2,79],"160":[2,79],"161":[2,79],"162":[2,79],"163":[2,79],"164":[2,79],"165":[2,79],"166":[2,79],"167":[2,79]},{"1":[2,80],"4":[2,80],"30":[2,80],"31":[2,80],"52":[2,80],"60":[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],"101":[2,80],"109":[2,80],"112":[2,80],"113":[2,80],"114":[2,80],"117":[2,80],"121":[2,80],"123":[2,80],"130":[2,80],"131":[2,80],"133":[2,80],"135":[2,80],"136":[2,80],"138":[2,80],"139":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80],"151":[2,80],"152":[2,80],"153":[2,80],"154":[2,80],"155":[2,80],"156":[2,80],"157":[2,80],"158":[2,80],"159":[2,80],"160":[2,80],"161":[2,80],"162":[2,80],"163":[2,80],"164":[2,80],"165":[2,80],"166":[2,80],"167":[2,80]},{"1":[2,105],"4":[2,105],"30":[2,105],"31":[2,105],"52":[2,105],"60":[2,105],"63":[2,105],"65":153,"74":[1,142],"75":[1,143],"76":[1,144],"77":[1,145],"78":146,"79":147,"80":[1,148],"81":[2,105],"82":[1,149],"83":[1,150],"86":[2,105],"93":152,"94":[1,141],"96":[2,105],"101":[2,105],"109":[2,105],"112":[2,105],"113":[2,105],"114":[2,105],"117":[2,105],"121":[2,105],"123":[2,105],"130":[2,105],"131":[2,105],"133":[2,105],"135":[2,105],"136":[2,105],"138":[2,105],"139":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"148":[2,105],"149":[2,105],"150":[2,105],"151":[2,105],"152":[2,105],"153":[2,105],"154":[2,105],"155":[2,105],"156":[2,105],"157":[2,105],"158":[2,105],"159":[2,105],"160":[2,105],"161":[2,105],"162":[2,105],"163":[2,105],"164":[2,105],"165":[2,105],"166":[2,105],"167":[2,105]},{"14":155,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":156,"64":157,"66":154,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"98":[1,75],"99":[1,76],"100":[1,74],"108":[1,73]},{"1":[2,107],"4":[2,107],"30":[2,107],"31":[2,107],"52":[2,107],"60":[2,107],"63":[2,107],"81":[2,107],"86":[2,107],"96":[2,107],"101":[2,107],"109":[2,107],"112":[2,107],"113":[2,107],"114":[2,107],"117":[2,107],"121":[2,107],"123":[2,107],"130":[2,107],"131":[2,107],"133":[2,107],"135":[2,107],"136":[2,107],"138":[2,107],"139":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"148":[2,107],"149":[2,107],"150":[2,107],"151":[2,107],"152":[2,107],"153":[2,107],"154":[2,107],"155":[2,107],"156":[2,107],"157":[2,107],"158":[2,107],"159":[2,107],"160":[2,107],"161":[2,107],"162":[2,107],"163":[2,107],"164":[2,107],"165":[2,107],"166":[2,107],"167":[2,107]},{"54":158,"55":[2,62],"60":[2,62],"61":159,"62":[1,160]},{"4":[1,162],"6":161,"30":[1,6]},{"8":163,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":165,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":166,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":167,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":168,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":169,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":170,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":171,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":172,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,174],"4":[2,174],"30":[2,174],"31":[2,174],"52":[2,174],"60":[2,174],"63":[2,174],"81":[2,174],"86":[2,174],"96":[2,174],"101":[2,174],"109":[2,174],"112":[2,174],"113":[2,174],"114":[2,174],"117":[2,174],"121":[2,174],"123":[2,174],"130":[2,174],"131":[2,174],"133":[2,174],"135":[2,174],"136":[2,174],"138":[2,174],"139":[2,174],"142":[2,174],"143":[2,174],"144":[2,174],"145":[2,174],"146":[2,174],"147":[2,174],"148":[2,174],"149":[2,174],"150":[2,174],"151":[2,174],"152":[2,174],"153":[2,174],"154":[2,174],"155":[2,174],"156":[2,174],"157":[2,174],"158":[2,174],"159":[2,174],"160":[2,174],"161":[2,174],"162":[2,174],"163":[2,174],"164":[2,174],"165":[2,174],"166":[2,174],"167":[2,174]},{"4":[1,162],"6":173,"30":[1,6]},{"4":[1,162],"6":174,"30":[1,6]},{"1":[2,142],"4":[2,142],"30":[2,142],"31":[2,142],"52":[2,142],"60":[2,142],"63":[2,142],"81":[2,142],"86":[2,142],"96":[2,142],"101":[2,142],"109":[2,142],"112":[2,142],"113":[2,142],"114":[2,142],"117":[2,142],"121":[2,142],"123":[2,142],"130":[2,142],"131":[2,142],"133":[2,142],"135":[2,142],"136":[2,142],"138":[2,142],"139":[2,142],"142":[2,142],"143":[2,142],"144":[2,142],"145":[2,142],"146":[2,142],"147":[2,142],"148":[2,142],"149":[2,142],"150":[2,142],"151":[2,142],"152":[2,142],"153":[2,142],"154":[2,142],"155":[2,142],"156":[2,142],"157":[2,142],"158":[2,142],"159":[2,142],"160":[2,142],"161":[2,142],"162":[2,142],"163":[2,142],"164":[2,142],"165":[2,142],"166":[2,142],"167":[2,142]},{"32":177,"33":[1,91],"68":178,"69":179,"84":[1,86],"100":[1,180],"118":175,"120":176},{"8":181,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[1,182],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,72],"4":[2,72],"30":[2,72],"31":[2,72],"47":[2,72],"52":[2,72],"60":[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":[1,183],"94":[2,72],"96":[2,72],"101":[2,72],"109":[2,72],"112":[2,72],"113":[2,72],"114":[2,72],"117":[2,72],"121":[2,72],"123":[2,72],"130":[2,72],"131":[2,72],"133":[2,72],"135":[2,72],"136":[2,72],"138":[2,72],"139":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72],"162":[2,72],"163":[2,72],"164":[2,72],"165":[2,72],"166":[2,72],"167":[2,72]},{"14":155,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":156,"64":184,"66":185,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"98":[1,75],"99":[1,76],"100":[1,74],"108":[1,73]},{"1":[2,53],"4":[2,53],"30":[2,53],"31":[2,53],"50":[2,53],"51":[2,53],"52":[2,53],"60":[2,53],"63":[2,53],"81":[2,53],"86":[2,53],"96":[2,53],"101":[2,53],"105":[2,53],"106":[2,53],"109":[2,53],"112":[2,53],"113":[2,53],"114":[2,53],"117":[2,53],"121":[2,53],"123":[2,53],"126":[2,53],"128":[2,53],"130":[2,53],"131":[2,53],"133":[2,53],"135":[2,53],"136":[2,53],"138":[2,53],"139":[2,53],"142":[2,53],"143":[2,53],"144":[2,53],"145":[2,53],"146":[2,53],"147":[2,53],"148":[2,53],"149":[2,53],"150":[2,53],"151":[2,53],"152":[2,53],"153":[2,53],"154":[2,53],"155":[2,53],"156":[2,53],"157":[2,53],"158":[2,53],"159":[2,53],"160":[2,53],"161":[2,53],"162":[2,53],"163":[2,53],"164":[2,53],"165":[2,53],"166":[2,53],"167":[2,53]},{"1":[2,54],"4":[2,54],"30":[2,54],"31":[2,54],"50":[2,54],"51":[2,54],"52":[2,54],"60":[2,54],"63":[2,54],"81":[2,54],"86":[2,54],"96":[2,54],"101":[2,54],"105":[2,54],"106":[2,54],"109":[2,54],"112":[2,54],"113":[2,54],"114":[2,54],"117":[2,54],"121":[2,54],"123":[2,54],"126":[2,54],"128":[2,54],"130":[2,54],"131":[2,54],"133":[2,54],"135":[2,54],"136":[2,54],"138":[2,54],"139":[2,54],"142":[2,54],"143":[2,54],"144":[2,54],"145":[2,54],"146":[2,54],"147":[2,54],"148":[2,54],"149":[2,54],"150":[2,54],"151":[2,54],"152":[2,54],"153":[2,54],"154":[2,54],"155":[2,54],"156":[2,54],"157":[2,54],"158":[2,54],"159":[2,54],"160":[2,54],"161":[2,54],"162":[2,54],"163":[2,54],"164":[2,54],"165":[2,54],"166":[2,54],"167":[2,54]},{"1":[2,134],"4":[2,134],"30":[2,134],"31":[2,134],"52":[2,134],"60":[2,134],"63":[2,134],"81":[2,134],"86":[2,134],"96":[2,134],"101":[2,134],"109":[2,134],"112":[2,134],"113":[2,134],"114":[2,134],"117":[2,134],"121":[2,134],"123":[2,134],"130":[2,134],"131":[2,134],"133":[2,134],"135":[2,134],"136":[2,134],"138":[2,134],"139":[2,134],"142":[2,134],"143":[2,134],"144":[2,134],"145":[2,134],"146":[2,134],"147":[2,134],"148":[2,134],"149":[2,134],"150":[2,134],"151":[2,134],"152":[2,134],"153":[2,134],"154":[2,134],"155":[2,134],"156":[2,134],"157":[2,134],"158":[2,134],"159":[2,134],"160":[2,134],"161":[2,134],"162":[2,134],"163":[2,134],"164":[2,134],"165":[2,134],"166":[2,134],"167":[2,134]},{"1":[2,52],"4":[2,52],"8":186,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"31":[2,52],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"109":[2,52],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[2,52],"131":[2,52],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":187,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,73],"4":[2,73],"30":[2,73],"31":[2,73],"47":[2,73],"52":[2,73],"60":[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],"94":[2,73],"96":[2,73],"101":[2,73],"109":[2,73],"112":[2,73],"113":[2,73],"114":[2,73],"117":[2,73],"121":[2,73],"123":[2,73],"130":[2,73],"131":[2,73],"133":[2,73],"135":[2,73],"136":[2,73],"138":[2,73],"139":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73],"164":[2,73],"165":[2,73],"166":[2,73],"167":[2,73]},{"1":[2,74],"4":[2,74],"30":[2,74],"31":[2,74],"47":[2,74],"52":[2,74],"60":[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],"94":[2,74],"96":[2,74],"101":[2,74],"109":[2,74],"112":[2,74],"113":[2,74],"114":[2,74],"117":[2,74],"121":[2,74],"123":[2,74],"130":[2,74],"131":[2,74],"133":[2,74],"135":[2,74],"136":[2,74],"138":[2,74],"139":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74],"151":[2,74],"152":[2,74],"153":[2,74],"154":[2,74],"155":[2,74],"156":[2,74],"157":[2,74],"158":[2,74],"159":[2,74],"160":[2,74],"161":[2,74],"162":[2,74],"163":[2,74],"164":[2,74],"165":[2,74],"166":[2,74],"167":[2,74]},{"1":[2,36],"4":[2,36],"30":[2,36],"31":[2,36],"52":[2,36],"60":[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],"101":[2,36],"109":[2,36],"112":[2,36],"113":[2,36],"114":[2,36],"117":[2,36],"121":[2,36],"123":[2,36],"130":[2,36],"131":[2,36],"133":[2,36],"135":[2,36],"136":[2,36],"138":[2,36],"139":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36],"151":[2,36],"152":[2,36],"153":[2,36],"154":[2,36],"155":[2,36],"156":[2,36],"157":[2,36],"158":[2,36],"159":[2,36],"160":[2,36],"161":[2,36],"162":[2,36],"163":[2,36],"164":[2,36],"165":[2,36],"166":[2,36],"167":[2,36]},{"1":[2,37],"4":[2,37],"30":[2,37],"31":[2,37],"52":[2,37],"60":[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],"101":[2,37],"109":[2,37],"112":[2,37],"113":[2,37],"114":[2,37],"117":[2,37],"121":[2,37],"123":[2,37],"130":[2,37],"131":[2,37],"133":[2,37],"135":[2,37],"136":[2,37],"138":[2,37],"139":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37],"151":[2,37],"152":[2,37],"153":[2,37],"154":[2,37],"155":[2,37],"156":[2,37],"157":[2,37],"158":[2,37],"159":[2,37],"160":[2,37],"161":[2,37],"162":[2,37],"163":[2,37],"164":[2,37],"165":[2,37],"166":[2,37],"167":[2,37]},{"1":[2,38],"4":[2,38],"30":[2,38],"31":[2,38],"52":[2,38],"60":[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],"101":[2,38],"109":[2,38],"112":[2,38],"113":[2,38],"114":[2,38],"117":[2,38],"121":[2,38],"123":[2,38],"130":[2,38],"131":[2,38],"133":[2,38],"135":[2,38],"136":[2,38],"138":[2,38],"139":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38],"151":[2,38],"152":[2,38],"153":[2,38],"154":[2,38],"155":[2,38],"156":[2,38],"157":[2,38],"158":[2,38],"159":[2,38],"160":[2,38],"161":[2,38],"162":[2,38],"163":[2,38],"164":[2,38],"165":[2,38],"166":[2,38],"167":[2,38]},{"1":[2,39],"4":[2,39],"30":[2,39],"31":[2,39],"52":[2,39],"60":[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],"101":[2,39],"109":[2,39],"112":[2,39],"113":[2,39],"114":[2,39],"117":[2,39],"121":[2,39],"123":[2,39],"130":[2,39],"131":[2,39],"133":[2,39],"135":[2,39],"136":[2,39],"138":[2,39],"139":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39],"151":[2,39],"152":[2,39],"153":[2,39],"154":[2,39],"155":[2,39],"156":[2,39],"157":[2,39],"158":[2,39],"159":[2,39],"160":[2,39],"161":[2,39],"162":[2,39],"163":[2,39],"164":[2,39],"165":[2,39],"166":[2,39],"167":[2,39]},{"1":[2,40],"4":[2,40],"30":[2,40],"31":[2,40],"52":[2,40],"60":[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],"101":[2,40],"109":[2,40],"112":[2,40],"113":[2,40],"114":[2,40],"117":[2,40],"121":[2,40],"123":[2,40],"130":[2,40],"131":[2,40],"133":[2,40],"135":[2,40],"136":[2,40],"138":[2,40],"139":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40],"151":[2,40],"152":[2,40],"153":[2,40],"154":[2,40],"155":[2,40],"156":[2,40],"157":[2,40],"158":[2,40],"159":[2,40],"160":[2,40],"161":[2,40],"162":[2,40],"163":[2,40],"164":[2,40],"165":[2,40],"166":[2,40],"167":[2,40]},{"1":[2,41],"4":[2,41],"30":[2,41],"31":[2,41],"52":[2,41],"60":[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],"101":[2,41],"109":[2,41],"112":[2,41],"113":[2,41],"114":[2,41],"117":[2,41],"121":[2,41],"123":[2,41],"130":[2,41],"131":[2,41],"133":[2,41],"135":[2,41],"136":[2,41],"138":[2,41],"139":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41],"151":[2,41],"152":[2,41],"153":[2,41],"154":[2,41],"155":[2,41],"156":[2,41],"157":[2,41],"158":[2,41],"159":[2,41],"160":[2,41],"161":[2,41],"162":[2,41],"163":[2,41],"164":[2,41],"165":[2,41],"166":[2,41],"167":[2,41]},{"1":[2,42],"4":[2,42],"30":[2,42],"31":[2,42],"52":[2,42],"60":[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],"101":[2,42],"109":[2,42],"112":[2,42],"113":[2,42],"114":[2,42],"117":[2,42],"121":[2,42],"123":[2,42],"130":[2,42],"131":[2,42],"133":[2,42],"135":[2,42],"136":[2,42],"138":[2,42],"139":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"148":[2,42],"149":[2,42],"150":[2,42],"151":[2,42],"152":[2,42],"153":[2,42],"154":[2,42],"155":[2,42],"156":[2,42],"157":[2,42],"158":[2,42],"159":[2,42],"160":[2,42],"161":[2,42],"162":[2,42],"163":[2,42],"164":[2,42],"165":[2,42],"166":[2,42],"167":[2,42]},{"1":[2,43],"4":[2,43],"30":[2,43],"31":[2,43],"52":[2,43],"60":[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],"101":[2,43],"109":[2,43],"112":[2,43],"113":[2,43],"114":[2,43],"117":[2,43],"121":[2,43],"123":[2,43],"130":[2,43],"131":[2,43],"133":[2,43],"135":[2,43],"136":[2,43],"138":[2,43],"139":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43],"148":[2,43],"149":[2,43],"150":[2,43],"151":[2,43],"152":[2,43],"153":[2,43],"154":[2,43],"155":[2,43],"156":[2,43],"157":[2,43],"158":[2,43],"159":[2,43],"160":[2,43],"161":[2,43],"162":[2,43],"163":[2,43],"164":[2,43],"165":[2,43],"166":[2,43],"167":[2,43]},{"1":[2,44],"4":[2,44],"30":[2,44],"31":[2,44],"52":[2,44],"60":[2,44],"63":[2,44],"74":[2,44],"75":[2,44],"76":[2,44],"77":[2,44],"80":[2,44],"81":[2,44],"82":[2,44],"83":[2,44],"86":[2,44],"94":[2,44],"96":[2,44],"101":[2,44],"109":[2,44],"112":[2,44],"113":[2,44],"114":[2,44],"117":[2,44],"121":[2,44],"123":[2,44],"130":[2,44],"131":[2,44],"133":[2,44],"135":[2,44],"136":[2,44],"138":[2,44],"139":[2,44],"142":[2,44],"143":[2,44],"144":[2,44],"145":[2,44],"146":[2,44],"147":[2,44],"148":[2,44],"149":[2,44],"150":[2,44],"151":[2,44],"152":[2,44],"153":[2,44],"154":[2,44],"155":[2,44],"156":[2,44],"157":[2,44],"158":[2,44],"159":[2,44],"160":[2,44],"161":[2,44],"162":[2,44],"163":[2,44],"164":[2,44],"165":[2,44],"166":[2,44],"167":[2,44]},{"7":188,"8":7,"9":8,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"4":[2,121],"8":189,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[2,121],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"60":[2,121],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"95":190,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"101":[2,121],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,113],"4":[2,113],"30":[2,113],"31":[2,113],"52":[2,113],"60":[2,113],"63":[2,113],"74":[2,113],"75":[2,113],"76":[2,113],"77":[2,113],"80":[2,113],"81":[2,113],"82":[2,113],"83":[2,113],"86":[2,113],"94":[2,113],"96":[2,113],"101":[2,113],"109":[2,113],"112":[2,113],"113":[2,113],"114":[2,113],"117":[2,113],"121":[2,113],"123":[2,113],"130":[2,113],"131":[2,113],"133":[2,113],"135":[2,113],"136":[2,113],"138":[2,113],"139":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"147":[2,113],"148":[2,113],"149":[2,113],"150":[2,113],"151":[2,113],"152":[2,113],"153":[2,113],"154":[2,113],"155":[2,113],"156":[2,113],"157":[2,113],"158":[2,113],"159":[2,113],"160":[2,113],"161":[2,113],"162":[2,113],"163":[2,113],"164":[2,113],"165":[2,113],"166":[2,113],"167":[2,113]},{"1":[2,114],"4":[2,114],"30":[2,114],"31":[2,114],"32":191,"33":[1,91],"52":[2,114],"60":[2,114],"63":[2,114],"74":[2,114],"75":[2,114],"76":[2,114],"77":[2,114],"80":[2,114],"81":[2,114],"82":[2,114],"83":[2,114],"86":[2,114],"94":[2,114],"96":[2,114],"101":[2,114],"109":[2,114],"112":[2,114],"113":[2,114],"114":[2,114],"117":[2,114],"121":[2,114],"123":[2,114],"130":[2,114],"131":[2,114],"133":[2,114],"135":[2,114],"136":[2,114],"138":[2,114],"139":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"147":[2,114],"148":[2,114],"149":[2,114],"150":[2,114],"151":[2,114],"152":[2,114],"153":[2,114],"154":[2,114],"155":[2,114],"156":[2,114],"157":[2,114],"158":[2,114],"159":[2,114],"160":[2,114],"161":[2,114],"162":[2,114],"163":[2,114],"164":[2,114],"165":[2,114],"166":[2,114],"167":[2,114]},{"94":[1,192]},{"4":[2,58],"30":[2,58]},{"4":[2,59],"30":[2,59]},{"1":[2,172],"4":[2,172],"30":[2,172],"31":[2,172],"52":[2,172],"60":[2,172],"63":[2,172],"81":[2,172],"86":[2,172],"96":[2,172],"101":[2,172],"109":[2,172],"112":[2,172],"113":[2,172],"114":[2,172],"117":[2,172],"121":[2,172],"123":[2,172],"126":[1,193],"130":[2,172],"131":[2,172],"133":[2,172],"135":[2,172],"136":[2,172],"138":[2,172],"139":[2,172],"142":[2,172],"143":[2,172],"144":[2,172],"145":[2,172],"146":[2,172],"147":[2,172],"148":[2,172],"149":[2,172],"150":[2,172],"151":[2,172],"152":[2,172],"153":[2,172],"154":[2,172],"155":[2,172],"156":[2,172],"157":[2,172],"158":[2,172],"159":[2,172],"160":[2,172],"161":[2,172],"162":[2,172],"163":[2,172],"164":[2,172],"165":[2,172],"166":[2,172],"167":[2,172]},{"8":194,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":195,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"4":[1,162],"6":196,"8":197,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[1,6],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,68],"4":[2,68],"30":[2,68],"31":[2,68],"47":[2,68],"52":[2,68],"60":[2,68],"63":[2,68],"74":[2,68],"75":[2,68],"76":[2,68],"77":[2,68],"80":[2,68],"81":[2,68],"82":[2,68],"83":[2,68],"86":[2,68],"88":[2,68],"94":[2,68],"96":[2,68],"101":[2,68],"109":[2,68],"112":[2,68],"113":[2,68],"114":[2,68],"117":[2,68],"121":[2,68],"123":[2,68],"130":[2,68],"131":[2,68],"133":[2,68],"135":[2,68],"136":[2,68],"138":[2,68],"139":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68],"162":[2,68],"163":[2,68],"164":[2,68],"165":[2,68],"166":[2,68],"167":[2,68]},{"1":[2,71],"4":[2,71],"30":[2,71],"31":[2,71],"47":[2,71],"52":[2,71],"60":[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],"101":[2,71],"109":[2,71],"112":[2,71],"113":[2,71],"114":[2,71],"117":[2,71],"121":[2,71],"123":[2,71],"130":[2,71],"131":[2,71],"133":[2,71],"135":[2,71],"136":[2,71],"138":[2,71],"139":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71],"162":[2,71],"163":[2,71],"164":[2,71],"165":[2,71],"166":[2,71],"167":[2,71]},{"4":[2,91],"28":202,"30":[2,91],"32":200,"33":[1,91],"34":201,"35":[1,87],"36":[1,88],"48":199,"50":[1,57],"51":[1,58],"60":[2,91],"85":198,"86":[2,91]},{"1":[2,34],"4":[2,34],"30":[2,34],"31":[2,34],"47":[2,34],"52":[2,34],"60":[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],"101":[2,34],"109":[2,34],"112":[2,34],"113":[2,34],"114":[2,34],"117":[2,34],"121":[2,34],"123":[2,34],"130":[2,34],"131":[2,34],"133":[2,34],"135":[2,34],"136":[2,34],"138":[2,34],"139":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34],"151":[2,34],"152":[2,34],"153":[2,34],"154":[2,34],"155":[2,34],"156":[2,34],"157":[2,34],"158":[2,34],"159":[2,34],"160":[2,34],"161":[2,34],"162":[2,34],"163":[2,34],"164":[2,34],"165":[2,34],"166":[2,34],"167":[2,34]},{"1":[2,35],"4":[2,35],"30":[2,35],"31":[2,35],"47":[2,35],"52":[2,35],"60":[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],"101":[2,35],"109":[2,35],"112":[2,35],"113":[2,35],"114":[2,35],"117":[2,35],"121":[2,35],"123":[2,35],"130":[2,35],"131":[2,35],"133":[2,35],"135":[2,35],"136":[2,35],"138":[2,35],"139":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35],"151":[2,35],"152":[2,35],"153":[2,35],"154":[2,35],"155":[2,35],"156":[2,35],"157":[2,35],"158":[2,35],"159":[2,35],"160":[2,35],"161":[2,35],"162":[2,35],"163":[2,35],"164":[2,35],"165":[2,35],"166":[2,35],"167":[2,35]},{"8":203,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":204,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,33],"4":[2,33],"30":[2,33],"31":[2,33],"47":[2,33],"52":[2,33],"60":[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],"88":[2,33],"94":[2,33],"96":[2,33],"101":[2,33],"109":[2,33],"112":[2,33],"113":[2,33],"114":[2,33],"117":[2,33],"121":[2,33],"122":[2,33],"123":[2,33],"130":[2,33],"131":[2,33],"133":[2,33],"135":[2,33],"136":[2,33],"138":[2,33],"139":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33],"151":[2,33],"152":[2,33],"153":[2,33],"154":[2,33],"155":[2,33],"156":[2,33],"157":[2,33],"158":[2,33],"159":[2,33],"160":[2,33],"161":[2,33],"162":[2,33],"163":[2,33],"164":[2,33],"165":[2,33],"166":[2,33],"167":[2,33]},{"1":[2,32],"4":[2,32],"30":[2,32],"31":[2,32],"50":[2,32],"51":[2,32],"52":[2,32],"60":[2,32],"63":[2,32],"81":[2,32],"86":[2,32],"96":[2,32],"101":[2,32],"105":[2,32],"106":[2,32],"109":[2,32],"112":[2,32],"113":[2,32],"114":[2,32],"117":[2,32],"121":[2,32],"123":[2,32],"126":[2,32],"128":[2,32],"130":[2,32],"131":[2,32],"133":[2,32],"135":[2,32],"136":[2,32],"138":[2,32],"139":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32],"151":[2,32],"152":[2,32],"153":[2,32],"154":[2,32],"155":[2,32],"156":[2,32],"157":[2,32],"158":[2,32],"159":[2,32],"160":[2,32],"161":[2,32],"162":[2,32],"163":[2,32],"164":[2,32],"165":[2,32],"166":[2,32],"167":[2,32]},{"1":[2,7],"4":[2,7],"7":205,"8":7,"9":8,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"31":[2,7],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,4]},{"4":[1,93],"31":[1,206]},{"1":[2,31],"4":[2,31],"30":[2,31],"31":[2,31],"50":[2,31],"51":[2,31],"52":[2,31],"60":[2,31],"63":[2,31],"81":[2,31],"86":[2,31],"96":[2,31],"101":[2,31],"105":[2,31],"106":[2,31],"109":[2,31],"112":[2,31],"113":[2,31],"114":[2,31],"117":[2,31],"121":[2,31],"123":[2,31],"126":[2,31],"128":[2,31],"130":[2,31],"131":[2,31],"133":[2,31],"135":[2,31],"136":[2,31],"138":[2,31],"139":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31],"149":[2,31],"150":[2,31],"151":[2,31],"152":[2,31],"153":[2,31],"154":[2,31],"155":[2,31],"156":[2,31],"157":[2,31],"158":[2,31],"159":[2,31],"160":[2,31],"161":[2,31],"162":[2,31],"163":[2,31],"164":[2,31],"165":[2,31],"166":[2,31],"167":[2,31]},{"1":[2,188],"4":[2,188],"30":[2,188],"31":[2,188],"52":[2,188],"60":[2,188],"63":[2,188],"81":[2,188],"86":[2,188],"96":[2,188],"101":[2,188],"109":[2,188],"112":[2,188],"113":[2,188],"114":[2,188],"117":[2,188],"121":[2,188],"123":[2,188],"130":[2,188],"131":[2,188],"133":[2,188],"135":[2,188],"136":[2,188],"138":[2,188],"139":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"147":[2,188],"148":[2,188],"149":[2,188],"150":[2,188],"151":[2,188],"152":[2,188],"153":[2,188],"154":[2,188],"155":[2,188],"156":[2,188],"157":[2,188],"158":[2,188],"159":[2,188],"160":[2,188],"161":[2,188],"162":[2,188],"163":[2,188],"164":[2,188],"165":[2,188],"166":[2,188],"167":[2,188]},{"1":[2,189],"4":[2,189],"30":[2,189],"31":[2,189],"52":[2,189],"60":[2,189],"63":[2,189],"81":[2,189],"86":[2,189],"96":[2,189],"101":[2,189],"109":[2,189],"112":[2,189],"113":[2,189],"114":[2,189],"117":[2,189],"121":[2,189],"123":[2,189],"130":[2,189],"131":[2,189],"133":[2,189],"135":[2,189],"136":[2,189],"138":[2,189],"139":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"148":[2,189],"149":[2,189],"150":[2,189],"151":[2,189],"152":[2,189],"153":[2,189],"154":[2,189],"155":[2,189],"156":[2,189],"157":[2,189],"158":[2,189],"159":[2,189],"160":[2,189],"161":[2,189],"162":[2,189],"163":[2,189],"164":[2,189],"165":[2,189],"166":[2,189],"167":[2,189]},{"8":207,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":208,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":209,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":210,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":211,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":212,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":213,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":214,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":215,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":216,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":217,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":218,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":219,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":220,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":221,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":222,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":223,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":224,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":225,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,55],"4":[2,55],"8":226,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[2,55],"31":[2,55],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"52":[2,55],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"60":[2,55],"63":[2,55],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"81":[2,55],"84":[1,86],"86":[2,55],"87":[1,56],"91":[1,36],"92":37,"96":[2,55],"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"101":[2,55],"103":[1,50],"107":[1,61],"108":[1,73],"109":[2,55],"110":[1,59],"111":51,"112":[2,55],"113":[2,55],"114":[2,55],"115":52,"116":[1,83],"117":[2,55],"121":[2,55],"123":[2,55],"124":[1,54],"129":80,"130":[2,55],"131":[2,55],"132":49,"133":[2,55],"134":[1,41],"135":[2,55],"136":[2,55],"137":[1,44],"138":[2,55],"139":[2,55],"140":[1,47],"141":[1,48],"142":[2,55],"143":[2,55],"144":[2,55],"145":[2,55],"146":[2,55],"147":[2,55],"148":[2,55],"149":[2,55],"150":[2,55],"151":[2,55],"152":[2,55],"153":[2,55],"154":[2,55],"155":[2,55],"156":[2,55],"157":[2,55],"158":[2,55],"159":[2,55],"160":[2,55],"161":[2,55],"162":[2,55],"163":[2,55],"164":[2,55],"165":[2,55],"166":[2,55],"167":[2,55]},{"8":227,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":228,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":229,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":230,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":231,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":232,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":233,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":234,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":235,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":236,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"121":[1,237]},{"8":238,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":239,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,141],"4":[2,141],"30":[2,141],"31":[2,141],"52":[2,141],"60":[2,141],"63":[2,141],"81":[2,141],"86":[2,141],"96":[2,141],"101":[2,141],"109":[2,141],"112":[2,141],"113":[2,141],"114":[2,141],"117":[2,141],"121":[2,141],"123":[2,141],"130":[2,141],"131":[2,141],"133":[2,141],"135":[2,141],"136":[2,141],"138":[2,141],"139":[2,141],"142":[2,141],"143":[2,141],"144":[2,141],"145":[2,141],"146":[2,141],"147":[2,141],"148":[2,141],"149":[2,141],"150":[2,141],"151":[2,141],"152":[2,141],"153":[2,141],"154":[2,141],"155":[2,141],"156":[2,141],"157":[2,141],"158":[2,141],"159":[2,141],"160":[2,141],"161":[2,141],"162":[2,141],"163":[2,141],"164":[2,141],"165":[2,141],"166":[2,141],"167":[2,141]},{"32":177,"33":[1,91],"68":178,"69":179,"84":[1,86],"100":[1,180],"118":240,"120":176},{"63":[1,241]},{"8":242,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":243,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,140],"4":[2,140],"30":[2,140],"31":[2,140],"52":[2,140],"60":[2,140],"63":[2,140],"81":[2,140],"86":[2,140],"96":[2,140],"101":[2,140],"109":[2,140],"112":[2,140],"113":[2,140],"114":[2,140],"117":[2,140],"121":[2,140],"123":[2,140],"130":[2,140],"131":[2,140],"133":[2,140],"135":[2,140],"136":[2,140],"138":[2,140],"139":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140],"148":[2,140],"149":[2,140],"150":[2,140],"151":[2,140],"152":[2,140],"153":[2,140],"154":[2,140],"155":[2,140],"156":[2,140],"157":[2,140],"158":[2,140],"159":[2,140],"160":[2,140],"161":[2,140],"162":[2,140],"163":[2,140],"164":[2,140],"165":[2,140],"166":[2,140],"167":[2,140]},{"32":177,"33":[1,91],"68":178,"69":179,"84":[1,86],"100":[1,180],"118":244,"120":176},{"1":[2,109],"4":[2,109],"30":[2,109],"31":[2,109],"52":[2,109],"60":[2,109],"63":[2,109],"74":[2,109],"75":[2,109],"76":[2,109],"77":[2,109],"80":[2,109],"81":[2,109],"82":[2,109],"83":[2,109],"86":[2,109],"94":[2,109],"96":[2,109],"101":[2,109],"109":[2,109],"112":[2,109],"113":[2,109],"114":[2,109],"117":[2,109],"121":[2,109],"123":[2,109],"130":[2,109],"131":[2,109],"133":[2,109],"135":[2,109],"136":[2,109],"138":[2,109],"139":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"147":[2,109],"148":[2,109],"149":[2,109],"150":[2,109],"151":[2,109],"152":[2,109],"153":[2,109],"154":[2,109],"155":[2,109],"156":[2,109],"157":[2,109],"158":[2,109],"159":[2,109],"160":[2,109],"161":[2,109],"162":[2,109],"163":[2,109],"164":[2,109],"165":[2,109],"166":[2,109],"167":[2,109]},{"1":[2,69],"4":[2,69],"30":[2,69],"31":[2,69],"47":[2,69],"52":[2,69],"60":[2,69],"63":[2,69],"74":[2,69],"75":[2,69],"76":[2,69],"77":[2,69],"80":[2,69],"81":[2,69],"82":[2,69],"83":[2,69],"86":[2,69],"88":[2,69],"94":[2,69],"96":[2,69],"101":[2,69],"109":[2,69],"112":[2,69],"113":[2,69],"114":[2,69],"117":[2,69],"121":[2,69],"123":[2,69],"130":[2,69],"131":[2,69],"133":[2,69],"135":[2,69],"136":[2,69],"138":[2,69],"139":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69],"162":[2,69],"163":[2,69],"164":[2,69],"165":[2,69],"166":[2,69],"167":[2,69]},{"4":[2,121],"8":246,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[2,121],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"60":[2,121],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"95":245,"96":[2,121],"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"32":247,"33":[1,91]},{"32":248,"33":[1,91]},{"1":[2,83],"4":[2,83],"30":[2,83],"31":[2,83],"47":[2,83],"52":[2,83],"60":[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],"88":[2,83],"94":[2,83],"96":[2,83],"101":[2,83],"109":[2,83],"112":[2,83],"113":[2,83],"114":[2,83],"117":[2,83],"121":[2,83],"123":[2,83],"130":[2,83],"131":[2,83],"133":[2,83],"135":[2,83],"136":[2,83],"138":[2,83],"139":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83],"151":[2,83],"152":[2,83],"153":[2,83],"154":[2,83],"155":[2,83],"156":[2,83],"157":[2,83],"158":[2,83],"159":[2,83],"160":[2,83],"161":[2,83],"162":[2,83],"163":[2,83],"164":[2,83],"165":[2,83],"166":[2,83],"167":[2,83]},{"32":249,"33":[1,91]},{"1":[2,85],"4":[2,85],"30":[2,85],"31":[2,85],"47":[2,85],"52":[2,85],"60":[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],"101":[2,85],"109":[2,85],"112":[2,85],"113":[2,85],"114":[2,85],"117":[2,85],"121":[2,85],"123":[2,85],"130":[2,85],"131":[2,85],"133":[2,85],"135":[2,85],"136":[2,85],"138":[2,85],"139":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"148":[2,85],"149":[2,85],"150":[2,85],"151":[2,85],"152":[2,85],"153":[2,85],"154":[2,85],"155":[2,85],"156":[2,85],"157":[2,85],"158":[2,85],"159":[2,85],"160":[2,85],"161":[2,85],"162":[2,85],"163":[2,85],"164":[2,85],"165":[2,85],"166":[2,85],"167":[2,85]},{"1":[2,86],"4":[2,86],"30":[2,86],"31":[2,86],"47":[2,86],"52":[2,86],"60":[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],"101":[2,86],"109":[2,86],"112":[2,86],"113":[2,86],"114":[2,86],"117":[2,86],"121":[2,86],"123":[2,86],"130":[2,86],"131":[2,86],"133":[2,86],"135":[2,86],"136":[2,86],"138":[2,86],"139":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"148":[2,86],"149":[2,86],"150":[2,86],"151":[2,86],"152":[2,86],"153":[2,86],"154":[2,86],"155":[2,86],"156":[2,86],"157":[2,86],"158":[2,86],"159":[2,86],"160":[2,86],"161":[2,86],"162":[2,86],"163":[2,86],"164":[2,86],"165":[2,86],"166":[2,86],"167":[2,86]},{"8":250,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"78":251,"80":[1,252],"82":[1,149],"83":[1,150]},{"78":253,"80":[1,252],"82":[1,149],"83":[1,150]},{"8":254,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,110],"4":[2,110],"30":[2,110],"31":[2,110],"52":[2,110],"60":[2,110],"63":[2,110],"74":[2,110],"75":[2,110],"76":[2,110],"77":[2,110],"80":[2,110],"81":[2,110],"82":[2,110],"83":[2,110],"86":[2,110],"94":[2,110],"96":[2,110],"101":[2,110],"109":[2,110],"112":[2,110],"113":[2,110],"114":[2,110],"117":[2,110],"121":[2,110],"123":[2,110],"130":[2,110],"131":[2,110],"133":[2,110],"135":[2,110],"136":[2,110],"138":[2,110],"139":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"147":[2,110],"148":[2,110],"149":[2,110],"150":[2,110],"151":[2,110],"152":[2,110],"153":[2,110],"154":[2,110],"155":[2,110],"156":[2,110],"157":[2,110],"158":[2,110],"159":[2,110],"160":[2,110],"161":[2,110],"162":[2,110],"163":[2,110],"164":[2,110],"165":[2,110],"166":[2,110],"167":[2,110]},{"1":[2,70],"4":[2,70],"30":[2,70],"31":[2,70],"47":[2,70],"52":[2,70],"60":[2,70],"63":[2,70],"74":[2,70],"75":[2,70],"76":[2,70],"77":[2,70],"80":[2,70],"81":[2,70],"82":[2,70],"83":[2,70],"86":[2,70],"88":[2,70],"94":[2,70],"96":[2,70],"101":[2,70],"109":[2,70],"112":[2,70],"113":[2,70],"114":[2,70],"117":[2,70],"121":[2,70],"123":[2,70],"130":[2,70],"131":[2,70],"133":[2,70],"135":[2,70],"136":[2,70],"138":[2,70],"139":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70],"164":[2,70],"165":[2,70],"166":[2,70],"167":[2,70]},{"1":[2,106],"4":[2,106],"30":[2,106],"31":[2,106],"52":[2,106],"60":[2,106],"63":[2,106],"65":153,"74":[1,142],"75":[1,143],"76":[1,144],"77":[1,145],"78":146,"79":147,"80":[1,148],"81":[2,106],"82":[1,149],"83":[1,150],"86":[2,106],"93":152,"94":[1,141],"96":[2,106],"101":[2,106],"109":[2,106],"112":[2,106],"113":[2,106],"114":[2,106],"117":[2,106],"121":[2,106],"123":[2,106],"130":[2,106],"131":[2,106],"133":[2,106],"135":[2,106],"136":[2,106],"138":[2,106],"139":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"148":[2,106],"149":[2,106],"150":[2,106],"151":[2,106],"152":[2,106],"153":[2,106],"154":[2,106],"155":[2,106],"156":[2,106],"157":[2,106],"158":[2,106],"159":[2,106],"160":[2,106],"161":[2,106],"162":[2,106],"163":[2,106],"164":[2,106],"165":[2,106],"166":[2,106],"167":[2,106]},{"65":140,"74":[1,142],"75":[1,143],"76":[1,144],"77":[1,145],"78":146,"79":147,"80":[1,148],"82":[1,149],"83":[1,150],"93":139,"94":[1,141]},{"1":[2,75],"4":[2,75],"30":[2,75],"31":[2,75],"52":[2,75],"60":[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],"101":[2,75],"109":[2,75],"112":[2,75],"113":[2,75],"114":[2,75],"117":[2,75],"121":[2,75],"123":[2,75],"130":[2,75],"131":[2,75],"133":[2,75],"135":[2,75],"136":[2,75],"138":[2,75],"139":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75],"162":[2,75],"163":[2,75],"164":[2,75],"165":[2,75],"166":[2,75],"167":[2,75]},{"1":[2,72],"4":[2,72],"30":[2,72],"31":[2,72],"52":[2,72],"60":[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],"94":[2,72],"96":[2,72],"101":[2,72],"109":[2,72],"112":[2,72],"113":[2,72],"114":[2,72],"117":[2,72],"121":[2,72],"123":[2,72],"130":[2,72],"131":[2,72],"133":[2,72],"135":[2,72],"136":[2,72],"138":[2,72],"139":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72],"162":[2,72],"163":[2,72],"164":[2,72],"165":[2,72],"166":[2,72],"167":[2,72]},{"55":[1,255],"60":[1,256]},{"55":[2,63],"60":[2,63],"63":[1,257]},{"55":[2,65],"60":[2,65],"63":[2,65]},{"1":[2,57],"4":[2,57],"30":[2,57],"31":[2,57],"52":[2,57],"60":[2,57],"63":[2,57],"81":[2,57],"86":[2,57],"96":[2,57],"101":[2,57],"109":[2,57],"112":[2,57],"113":[2,57],"114":[2,57],"117":[2,57],"121":[2,57],"123":[2,57],"130":[2,57],"131":[2,57],"133":[2,57],"135":[2,57],"136":[2,57],"138":[2,57],"139":[2,57],"142":[2,57],"143":[2,57],"144":[2,57],"145":[2,57],"146":[2,57],"147":[2,57],"148":[2,57],"149":[2,57],"150":[2,57],"151":[2,57],"152":[2,57],"153":[2,57],"154":[2,57],"155":[2,57],"156":[2,57],"157":[2,57],"158":[2,57],"159":[2,57],"160":[2,57],"161":[2,57],"162":[2,57],"163":[2,57],"164":[2,57],"165":[2,57],"166":[2,57],"167":[2,57]},{"28":92,"50":[1,57],"51":[1,58]},{"1":[2,179],"4":[2,179],"30":[2,179],"31":[2,179],"52":[1,118],"60":[2,179],"63":[2,179],"81":[2,179],"86":[2,179],"96":[2,179],"101":[2,179],"109":[2,179],"111":132,"112":[2,179],"113":[2,179],"114":[2,179],"117":[2,179],"121":[2,179],"123":[2,179],"130":[2,179],"131":[2,179],"135":[2,179],"136":[2,179],"142":[2,179],"143":[2,179],"144":[2,179],"145":[2,179],"146":[2,179],"147":[2,179],"148":[2,179],"149":[2,179],"150":[2,179],"151":[2,179],"152":[2,179],"153":[2,179],"154":[2,179],"155":[2,179],"156":[2,179],"157":[2,179],"158":[2,179],"159":[2,179],"160":[2,179],"161":[2,179],"162":[2,179],"163":[2,179],"164":[2,179],"165":[2,179],"166":[2,179],"167":[2,179]},{"111":137,"112":[1,81],"114":[1,82],"117":[1,138],"130":[1,135],"131":[1,136]},{"1":[2,180],"4":[2,180],"30":[2,180],"31":[2,180],"52":[1,118],"60":[2,180],"63":[2,180],"81":[2,180],"86":[2,180],"96":[2,180],"101":[2,180],"109":[2,180],"111":132,"112":[2,180],"113":[2,180],"114":[2,180],"117":[2,180],"121":[2,180],"123":[2,180],"130":[2,180],"131":[2,180],"135":[2,180],"136":[2,180],"142":[2,180],"143":[2,180],"144":[2,180],"145":[2,180],"146":[2,180],"147":[2,180],"148":[2,180],"149":[2,180],"150":[2,180],"151":[2,180],"152":[2,180],"153":[2,180],"154":[2,180],"155":[2,180],"156":[2,180],"157":[2,180],"158":[2,180],"159":[2,180],"160":[2,180],"161":[2,180],"162":[2,180],"163":[2,180],"164":[2,180],"165":[2,180],"166":[2,180],"167":[2,180]},{"1":[2,181],"4":[2,181],"30":[2,181],"31":[2,181],"52":[1,118],"60":[2,181],"63":[2,181],"81":[2,181],"86":[2,181],"96":[2,181],"101":[2,181],"109":[2,181],"111":132,"112":[2,181],"113":[2,181],"114":[2,181],"117":[2,181],"121":[2,181],"123":[2,181],"130":[2,181],"131":[2,181],"135":[2,181],"136":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"148":[2,181],"149":[2,181],"150":[2,181],"151":[2,181],"152":[2,181],"153":[2,181],"154":[2,181],"155":[2,181],"156":[2,181],"157":[2,181],"158":[2,181],"159":[2,181],"160":[2,181],"161":[2,181],"162":[2,181],"163":[2,181],"164":[2,181],"165":[2,181],"166":[2,181],"167":[2,181]},{"1":[2,182],"4":[2,182],"30":[2,182],"31":[2,182],"52":[1,118],"60":[2,182],"63":[2,182],"81":[2,182],"86":[2,182],"96":[2,182],"101":[2,182],"109":[2,182],"111":132,"112":[2,182],"113":[2,182],"114":[2,182],"117":[2,182],"121":[2,182],"123":[2,182],"130":[2,182],"131":[2,182],"135":[2,182],"136":[2,182],"142":[2,182],"143":[2,182],"144":[2,182],"145":[2,182],"146":[2,182],"147":[2,182],"148":[2,182],"149":[2,182],"150":[2,182],"151":[2,182],"152":[2,182],"153":[2,182],"154":[2,182],"155":[2,182],"156":[2,182],"157":[2,182],"158":[2,182],"159":[2,182],"160":[2,182],"161":[2,182],"162":[2,182],"163":[2,182],"164":[2,182],"165":[2,182],"166":[2,182],"167":[2,182]},{"1":[2,183],"4":[2,183],"30":[2,183],"31":[2,183],"52":[1,118],"60":[2,183],"63":[2,183],"81":[2,183],"86":[2,183],"96":[2,183],"101":[2,183],"109":[2,183],"111":132,"112":[2,183],"113":[2,183],"114":[2,183],"117":[2,183],"121":[2,183],"123":[2,183],"130":[2,183],"131":[2,183],"135":[2,183],"136":[2,183],"142":[2,183],"143":[2,183],"144":[2,183],"145":[2,183],"146":[2,183],"147":[2,183],"148":[2,183],"149":[2,183],"150":[2,183],"151":[2,183],"152":[2,183],"153":[2,183],"154":[2,183],"155":[2,183],"156":[2,183],"157":[2,183],"158":[2,183],"159":[2,183],"160":[2,183],"161":[2,183],"162":[2,183],"163":[2,183],"164":[2,183],"165":[2,183],"166":[2,183],"167":[2,183]},{"1":[2,184],"4":[2,184],"30":[2,184],"31":[2,184],"52":[1,118],"60":[2,184],"63":[2,184],"81":[2,184],"86":[2,184],"96":[2,184],"101":[2,184],"109":[2,184],"111":132,"112":[2,184],"113":[2,184],"114":[2,184],"117":[2,184],"121":[2,184],"123":[2,184],"130":[2,184],"131":[2,184],"135":[2,184],"136":[2,184],"142":[2,184],"143":[2,184],"144":[2,184],"145":[2,184],"146":[2,184],"147":[2,184],"148":[2,184],"149":[2,184],"150":[2,184],"151":[2,184],"152":[2,184],"153":[2,184],"154":[2,184],"155":[2,184],"156":[2,184],"157":[2,184],"158":[2,184],"159":[2,184],"160":[2,184],"161":[2,184],"162":[2,184],"163":[2,184],"164":[2,184],"165":[2,184],"166":[2,184],"167":[2,184]},{"1":[2,185],"4":[2,185],"30":[2,185],"31":[2,185],"52":[1,118],"60":[2,185],"63":[2,185],"81":[2,185],"86":[2,185],"96":[2,185],"101":[2,185],"109":[2,185],"111":132,"112":[2,185],"113":[2,185],"114":[2,185],"117":[2,185],"121":[2,185],"123":[2,185],"130":[2,185],"131":[2,185],"135":[2,185],"136":[2,185],"142":[2,185],"143":[2,185],"144":[2,185],"145":[2,185],"146":[2,185],"147":[2,185],"148":[2,185],"149":[2,185],"150":[2,185],"151":[2,185],"152":[2,185],"153":[2,185],"154":[2,185],"155":[2,185],"156":[2,185],"157":[2,185],"158":[2,185],"159":[2,185],"160":[2,185],"161":[2,185],"162":[2,185],"163":[2,185],"164":[2,185],"165":[2,185],"166":[2,185],"167":[2,185]},{"1":[2,186],"4":[2,186],"30":[2,186],"31":[2,186],"52":[1,118],"60":[2,186],"63":[2,186],"81":[2,186],"86":[2,186],"96":[2,186],"101":[2,186],"109":[2,186],"111":132,"112":[2,186],"113":[2,186],"114":[2,186],"117":[2,186],"121":[2,186],"123":[2,186],"130":[2,186],"131":[2,186],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[2,186],"156":[2,186],"157":[2,186],"158":[2,186],"159":[2,186],"160":[2,186],"161":[2,186],"162":[2,186],"163":[2,186],"164":[2,186],"165":[2,186],"166":[2,186],"167":[1,127]},{"1":[2,187],"4":[2,187],"30":[2,187],"31":[2,187],"52":[1,118],"60":[2,187],"63":[2,187],"81":[2,187],"86":[2,187],"96":[2,187],"101":[2,187],"109":[2,187],"111":132,"112":[2,187],"113":[2,187],"114":[2,187],"117":[2,187],"121":[2,187],"123":[2,187],"130":[2,187],"131":[2,187],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[2,187],"156":[2,187],"157":[2,187],"158":[2,187],"159":[2,187],"160":[2,187],"161":[2,187],"162":[2,187],"163":[2,187],"164":[2,187],"165":[2,187],"166":[2,187],"167":[1,127]},{"104":258,"105":[1,259],"106":[1,260]},{"1":[2,139],"4":[2,139],"30":[2,139],"31":[2,139],"52":[2,139],"60":[2,139],"63":[2,139],"81":[2,139],"86":[2,139],"96":[2,139],"101":[2,139],"109":[2,139],"112":[2,139],"113":[2,139],"114":[2,139],"117":[2,139],"121":[2,139],"123":[2,139],"130":[2,139],"131":[2,139],"133":[2,139],"135":[2,139],"136":[2,139],"138":[2,139],"139":[2,139],"142":[2,139],"143":[2,139],"144":[2,139],"145":[2,139],"146":[2,139],"147":[2,139],"148":[2,139],"149":[2,139],"150":[2,139],"151":[2,139],"152":[2,139],"153":[2,139],"154":[2,139],"155":[2,139],"156":[2,139],"157":[2,139],"158":[2,139],"159":[2,139],"160":[2,139],"161":[2,139],"162":[2,139],"163":[2,139],"164":[2,139],"165":[2,139],"166":[2,139],"167":[2,139]},{"119":261,"121":[1,262],"122":[1,263]},{"60":[1,264],"121":[2,151],"122":[2,151]},{"60":[2,148],"121":[2,148],"122":[2,148]},{"60":[2,149],"121":[2,149],"122":[2,149]},{"60":[2,150],"121":[2,150],"122":[2,150]},{"4":[2,121],"8":246,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[2,121],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"60":[2,121],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"95":190,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"101":[2,121],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"30":[1,265],"52":[1,118],"63":[1,134],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"28":269,"50":[1,57],"51":[1,58],"125":266,"127":267,"128":[1,268]},{"14":270,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":156,"64":157,"66":185,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"98":[1,75],"99":[1,76],"100":[1,74],"108":[1,73]},{"1":[2,96],"4":[2,96],"30":[1,272],"31":[2,96],"52":[2,96],"60":[2,96],"63":[2,96],"74":[2,72],"75":[2,72],"76":[2,72],"77":[2,72],"80":[2,72],"81":[2,96],"82":[2,72],"83":[2,72],"86":[2,96],"88":[1,271],"94":[2,72],"96":[2,96],"101":[2,96],"109":[2,96],"112":[2,96],"113":[2,96],"114":[2,96],"117":[2,96],"121":[2,96],"123":[2,96],"130":[2,96],"131":[2,96],"133":[2,96],"135":[2,96],"136":[2,96],"138":[2,96],"139":[2,96],"142":[2,96],"143":[2,96],"144":[2,96],"145":[2,96],"146":[2,96],"147":[2,96],"148":[2,96],"149":[2,96],"150":[2,96],"151":[2,96],"152":[2,96],"153":[2,96],"154":[2,96],"155":[2,96],"156":[2,96],"157":[2,96],"158":[2,96],"159":[2,96],"160":[2,96],"161":[2,96],"162":[2,96],"163":[2,96],"164":[2,96],"165":[2,96],"166":[2,96],"167":[2,96]},{"65":153,"74":[1,142],"75":[1,143],"76":[1,144],"77":[1,145],"78":146,"79":147,"80":[1,148],"82":[1,149],"83":[1,150],"93":152,"94":[1,141]},{"1":[2,51],"4":[2,51],"31":[2,51],"52":[1,118],"63":[1,134],"109":[2,51],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[2,51],"131":[2,51],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,132],"4":[2,132],"31":[2,132],"52":[1,118],"63":[1,134],"109":[2,132],"111":132,"112":[2,132],"114":[2,132],"117":[2,132],"121":[1,128],"130":[2,132],"131":[2,132],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"109":[1,273]},{"4":[2,122],"30":[2,122],"52":[1,118],"60":[2,122],"63":[1,274],"101":[2,122],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[2,60],"30":[2,60],"59":275,"60":[1,276],"101":[2,60]},{"1":[2,115],"4":[2,115],"30":[2,115],"31":[2,115],"47":[2,115],"52":[2,115],"60":[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],"88":[2,115],"94":[2,115],"96":[2,115],"101":[2,115],"109":[2,115],"112":[2,115],"113":[2,115],"114":[2,115],"117":[2,115],"121":[2,115],"123":[2,115],"130":[2,115],"131":[2,115],"133":[2,115],"135":[2,115],"136":[2,115],"138":[2,115],"139":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"147":[2,115],"148":[2,115],"149":[2,115],"150":[2,115],"151":[2,115],"152":[2,115],"153":[2,115],"154":[2,115],"155":[2,115],"156":[2,115],"157":[2,115],"158":[2,115],"159":[2,115],"160":[2,115],"161":[2,115],"162":[2,115],"163":[2,115],"164":[2,115],"165":[2,115],"166":[2,115],"167":[2,115]},{"4":[2,121],"8":246,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[2,121],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"60":[2,121],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"95":277,"96":[2,121],"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"4":[1,162],"6":278,"30":[1,6],"130":[1,279]},{"1":[2,135],"4":[2,135],"30":[2,135],"31":[2,135],"52":[1,118],"60":[2,135],"63":[1,134],"81":[2,135],"86":[2,135],"96":[2,135],"101":[2,135],"109":[2,135],"111":132,"112":[1,81],"113":[1,280],"114":[1,82],"117":[1,133],"121":[1,128],"123":[2,135],"130":[2,135],"131":[2,135],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,137],"4":[2,137],"30":[2,137],"31":[2,137],"52":[1,118],"60":[2,137],"63":[1,134],"81":[2,137],"86":[2,137],"96":[2,137],"101":[2,137],"109":[2,137],"111":132,"112":[1,81],"113":[1,281],"114":[1,82],"117":[1,133],"121":[1,128],"123":[2,137],"130":[2,137],"131":[2,137],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,143],"4":[2,143],"30":[2,143],"31":[2,143],"52":[2,143],"60":[2,143],"63":[2,143],"81":[2,143],"86":[2,143],"96":[2,143],"101":[2,143],"109":[2,143],"112":[2,143],"113":[2,143],"114":[2,143],"117":[2,143],"121":[2,143],"123":[2,143],"130":[2,143],"131":[2,143],"133":[2,143],"135":[2,143],"136":[2,143],"138":[2,143],"139":[2,143],"142":[2,143],"143":[2,143],"144":[2,143],"145":[2,143],"146":[2,143],"147":[2,143],"148":[2,143],"149":[2,143],"150":[2,143],"151":[2,143],"152":[2,143],"153":[2,143],"154":[2,143],"155":[2,143],"156":[2,143],"157":[2,143],"158":[2,143],"159":[2,143],"160":[2,143],"161":[2,143],"162":[2,143],"163":[2,143],"164":[2,143],"165":[2,143],"166":[2,143],"167":[2,143]},{"1":[2,144],"4":[2,144],"30":[2,144],"31":[2,144],"52":[1,118],"60":[2,144],"63":[1,134],"81":[2,144],"86":[2,144],"96":[2,144],"101":[2,144],"109":[2,144],"111":132,"112":[1,81],"113":[2,144],"114":[1,82],"117":[1,133],"121":[1,128],"123":[2,144],"130":[2,144],"131":[2,144],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[2,60],"30":[2,60],"59":282,"60":[1,283],"86":[2,60]},{"4":[2,92],"30":[2,92],"31":[2,92],"60":[2,92],"86":[2,92]},{"4":[2,46],"30":[2,46],"31":[2,46],"47":[1,284],"60":[2,46],"86":[2,46]},{"4":[2,47],"30":[2,47],"31":[2,47],"47":[1,285],"60":[2,47],"86":[2,47]},{"4":[2,50],"30":[2,50],"31":[2,50],"60":[2,50],"86":[2,50]},{"4":[1,162],"6":286,"30":[1,6],"52":[1,118],"63":[1,134],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[1,162],"6":287,"30":[1,6],"52":[1,118],"63":[1,134],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,6],"4":[2,6],"31":[2,6]},{"1":[2,30],"4":[2,30],"30":[2,30],"31":[2,30],"50":[2,30],"51":[2,30],"52":[2,30],"60":[2,30],"63":[2,30],"81":[2,30],"86":[2,30],"96":[2,30],"101":[2,30],"105":[2,30],"106":[2,30],"109":[2,30],"112":[2,30],"113":[2,30],"114":[2,30],"117":[2,30],"121":[2,30],"123":[2,30],"126":[2,30],"128":[2,30],"130":[2,30],"131":[2,30],"133":[2,30],"135":[2,30],"136":[2,30],"138":[2,30],"139":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"148":[2,30],"149":[2,30],"150":[2,30],"151":[2,30],"152":[2,30],"153":[2,30],"154":[2,30],"155":[2,30],"156":[2,30],"157":[2,30],"158":[2,30],"159":[2,30],"160":[2,30],"161":[2,30],"162":[2,30],"163":[2,30],"164":[2,30],"165":[2,30],"166":[2,30],"167":[2,30]},{"1":[2,190],"4":[2,190],"30":[2,190],"31":[2,190],"52":[1,118],"60":[2,190],"63":[2,190],"81":[2,190],"86":[2,190],"96":[2,190],"101":[2,190],"109":[2,190],"111":132,"112":[2,190],"113":[2,190],"114":[2,190],"117":[2,190],"121":[2,190],"123":[2,190],"130":[2,190],"131":[2,190],"133":[1,129],"135":[2,190],"136":[2,190],"138":[1,97],"139":[1,98],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"148":[2,190],"149":[2,190],"150":[2,190],"151":[2,190],"152":[2,190],"153":[2,190],"154":[2,190],"155":[2,190],"156":[2,190],"157":[2,190],"158":[2,190],"159":[2,190],"160":[2,190],"161":[2,190],"162":[2,190],"163":[2,190],"164":[2,190],"165":[2,190],"166":[2,190],"167":[2,190]},{"1":[2,191],"4":[2,191],"30":[2,191],"31":[2,191],"52":[1,118],"60":[2,191],"63":[2,191],"81":[2,191],"86":[2,191],"96":[2,191],"101":[2,191],"109":[2,191],"111":132,"112":[2,191],"113":[2,191],"114":[2,191],"117":[2,191],"121":[2,191],"123":[2,191],"130":[2,191],"131":[2,191],"133":[1,129],"135":[2,191],"136":[2,191],"138":[1,97],"139":[1,98],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"148":[2,191],"149":[2,191],"150":[2,191],"151":[2,191],"152":[2,191],"153":[2,191],"154":[2,191],"155":[2,191],"156":[2,191],"157":[2,191],"158":[2,191],"159":[2,191],"160":[2,191],"161":[2,191],"162":[2,191],"163":[2,191],"164":[2,191],"165":[2,191],"166":[2,191],"167":[2,191]},{"1":[2,192],"4":[2,192],"30":[2,192],"31":[2,192],"52":[1,118],"60":[2,192],"63":[2,192],"81":[2,192],"86":[2,192],"96":[2,192],"101":[2,192],"109":[2,192],"111":132,"112":[2,192],"113":[2,192],"114":[2,192],"117":[2,192],"121":[2,192],"123":[2,192],"130":[2,192],"131":[2,192],"133":[1,129],"135":[2,192],"136":[2,192],"138":[1,97],"139":[1,98],"142":[2,192],"143":[2,192],"144":[2,192],"145":[2,192],"146":[2,192],"147":[2,192],"148":[2,192],"149":[2,192],"150":[2,192],"151":[2,192],"152":[2,192],"153":[2,192],"154":[2,192],"155":[2,192],"156":[2,192],"157":[2,192],"158":[2,192],"159":[2,192],"160":[2,192],"161":[2,192],"162":[2,192],"163":[2,192],"164":[2,192],"165":[2,192],"166":[2,192],"167":[2,192]},{"1":[2,193],"4":[2,193],"30":[2,193],"31":[2,193],"52":[1,118],"60":[2,193],"63":[2,193],"81":[2,193],"86":[2,193],"96":[2,193],"101":[2,193],"109":[2,193],"111":132,"112":[2,193],"113":[2,193],"114":[2,193],"117":[2,193],"121":[2,193],"123":[2,193],"130":[2,193],"131":[2,193],"133":[1,129],"135":[2,193],"136":[2,193],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[2,193],"146":[2,193],"147":[2,193],"148":[2,193],"149":[2,193],"150":[2,193],"151":[2,193],"152":[2,193],"153":[2,193],"154":[2,193],"155":[2,193],"156":[2,193],"157":[2,193],"158":[2,193],"159":[2,193],"160":[2,193],"161":[2,193],"162":[2,193],"163":[2,193],"164":[2,193],"165":[2,193],"166":[2,193],"167":[2,193]},{"1":[2,194],"4":[2,194],"30":[2,194],"31":[2,194],"52":[1,118],"60":[2,194],"63":[2,194],"81":[2,194],"86":[2,194],"96":[2,194],"101":[2,194],"109":[2,194],"111":132,"112":[2,194],"113":[2,194],"114":[2,194],"117":[2,194],"121":[2,194],"123":[2,194],"130":[2,194],"131":[2,194],"133":[1,129],"135":[2,194],"136":[2,194],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[2,194],"146":[2,194],"147":[2,194],"148":[2,194],"149":[2,194],"150":[2,194],"151":[2,194],"152":[2,194],"153":[2,194],"154":[2,194],"155":[2,194],"156":[2,194],"157":[2,194],"158":[2,194],"159":[2,194],"160":[2,194],"161":[2,194],"162":[2,194],"163":[2,194],"164":[2,194],"165":[2,194],"166":[2,194],"167":[2,194]},{"1":[2,195],"4":[2,195],"30":[2,195],"31":[2,195],"52":[1,118],"60":[2,195],"63":[2,195],"81":[2,195],"86":[2,195],"96":[2,195],"101":[2,195],"109":[2,195],"111":132,"112":[2,195],"113":[2,195],"114":[2,195],"117":[2,195],"121":[2,195],"123":[2,195],"130":[2,195],"131":[2,195],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[2,195],"146":[2,195],"147":[2,195],"148":[2,195],"149":[2,195],"150":[2,195],"151":[2,195],"152":[2,195],"153":[2,195],"154":[2,195],"155":[2,195],"156":[2,195],"157":[2,195],"158":[2,195],"159":[2,195],"160":[2,195],"161":[2,195],"162":[2,195],"163":[2,195],"164":[2,195],"165":[2,195],"166":[2,195],"167":[2,195]},{"1":[2,196],"4":[2,196],"30":[2,196],"31":[2,196],"52":[1,118],"60":[2,196],"63":[2,196],"81":[2,196],"86":[2,196],"96":[2,196],"101":[2,196],"109":[2,196],"111":132,"112":[2,196],"113":[2,196],"114":[2,196],"117":[2,196],"121":[2,196],"123":[2,196],"130":[2,196],"131":[2,196],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[2,196],"146":[2,196],"147":[2,196],"148":[2,196],"149":[2,196],"150":[2,196],"151":[2,196],"152":[2,196],"153":[2,196],"154":[2,196],"155":[2,196],"156":[2,196],"157":[2,196],"158":[2,196],"159":[2,196],"160":[2,196],"161":[2,196],"162":[2,196],"163":[2,196],"164":[2,196],"165":[2,196],"166":[2,196],"167":[2,196]},{"1":[2,197],"4":[2,197],"30":[2,197],"31":[2,197],"52":[1,118],"60":[2,197],"63":[2,197],"81":[2,197],"86":[2,197],"96":[2,197],"101":[2,197],"109":[2,197],"111":132,"112":[2,197],"113":[2,197],"114":[2,197],"117":[2,197],"121":[2,197],"123":[2,197],"130":[2,197],"131":[2,197],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[2,197],"146":[2,197],"147":[2,197],"148":[2,197],"149":[2,197],"150":[2,197],"151":[2,197],"152":[2,197],"153":[2,197],"154":[2,197],"155":[2,197],"156":[2,197],"157":[2,197],"158":[2,197],"159":[2,197],"160":[2,197],"161":[2,197],"162":[2,197],"163":[2,197],"164":[2,197],"165":[2,197],"166":[2,197],"167":[2,197]},{"1":[2,198],"4":[2,198],"30":[2,198],"31":[2,198],"52":[1,118],"60":[2,198],"63":[2,198],"81":[2,198],"86":[2,198],"96":[2,198],"101":[2,198],"109":[2,198],"111":132,"112":[2,198],"113":[2,198],"114":[2,198],"117":[2,198],"121":[2,198],"123":[2,198],"130":[2,198],"131":[2,198],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[2,198],"149":[2,198],"150":[2,198],"151":[2,198],"152":[2,198],"153":[2,198],"154":[2,198],"155":[2,198],"156":[2,198],"157":[2,198],"158":[2,198],"159":[2,198],"160":[2,198],"161":[2,198],"162":[2,198],"163":[2,198],"164":[2,198],"165":[2,198],"166":[2,198],"167":[2,198]},{"1":[2,199],"4":[2,199],"30":[2,199],"31":[2,199],"52":[1,118],"60":[2,199],"63":[2,199],"81":[2,199],"86":[2,199],"96":[2,199],"101":[2,199],"109":[2,199],"111":132,"112":[2,199],"113":[2,199],"114":[2,199],"117":[2,199],"121":[2,199],"123":[2,199],"130":[2,199],"131":[2,199],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[2,199],"149":[2,199],"150":[2,199],"151":[2,199],"152":[2,199],"153":[2,199],"154":[2,199],"155":[2,199],"156":[2,199],"157":[2,199],"158":[2,199],"159":[2,199],"160":[2,199],"161":[2,199],"162":[2,199],"163":[2,199],"164":[2,199],"165":[2,199],"166":[2,199],"167":[2,199]},{"1":[2,200],"4":[2,200],"30":[2,200],"31":[2,200],"52":[1,118],"60":[2,200],"63":[2,200],"81":[2,200],"86":[2,200],"96":[2,200],"101":[2,200],"109":[2,200],"111":132,"112":[2,200],"113":[2,200],"114":[2,200],"117":[2,200],"121":[2,200],"123":[2,200],"130":[2,200],"131":[2,200],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[2,200],"149":[2,200],"150":[2,200],"151":[2,200],"152":[2,200],"153":[2,200],"154":[2,200],"155":[2,200],"156":[2,200],"157":[2,200],"158":[2,200],"159":[2,200],"160":[2,200],"161":[2,200],"162":[2,200],"163":[2,200],"164":[2,200],"165":[2,200],"166":[2,200],"167":[2,200]},{"1":[2,201],"4":[2,201],"30":[2,201],"31":[2,201],"52":[1,118],"60":[2,201],"63":[2,201],"81":[2,201],"86":[2,201],"96":[2,201],"101":[2,201],"109":[2,201],"111":132,"112":[2,201],"113":[2,201],"114":[2,201],"117":[2,201],"121":[2,201],"123":[2,201],"130":[2,201],"131":[2,201],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,201],"152":[2,201],"153":[2,201],"154":[2,201],"155":[2,201],"156":[2,201],"157":[2,201],"158":[2,201],"159":[2,201],"160":[2,201],"161":[2,201],"162":[2,201],"163":[2,201],"164":[2,201],"165":[2,201],"166":[2,201],"167":[2,201]},{"1":[2,202],"4":[2,202],"30":[2,202],"31":[2,202],"52":[1,118],"60":[2,202],"63":[2,202],"81":[2,202],"86":[2,202],"96":[2,202],"101":[2,202],"109":[2,202],"111":132,"112":[2,202],"113":[2,202],"114":[2,202],"117":[2,202],"121":[2,202],"123":[2,202],"130":[2,202],"131":[2,202],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,202],"152":[2,202],"153":[2,202],"154":[2,202],"155":[2,202],"156":[2,202],"157":[2,202],"158":[2,202],"159":[2,202],"160":[2,202],"161":[2,202],"162":[2,202],"163":[2,202],"164":[2,202],"165":[2,202],"166":[2,202],"167":[2,202]},{"1":[2,203],"4":[2,203],"30":[2,203],"31":[2,203],"52":[1,118],"60":[2,203],"63":[2,203],"81":[2,203],"86":[2,203],"96":[2,203],"101":[2,203],"109":[2,203],"111":132,"112":[2,203],"113":[2,203],"114":[2,203],"117":[2,203],"121":[2,203],"123":[2,203],"130":[2,203],"131":[2,203],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,203],"152":[2,203],"153":[2,203],"154":[2,203],"155":[2,203],"156":[2,203],"157":[2,203],"158":[2,203],"159":[2,203],"160":[2,203],"161":[2,203],"162":[2,203],"163":[2,203],"164":[2,203],"165":[2,203],"166":[2,203],"167":[2,203]},{"1":[2,204],"4":[2,204],"30":[2,204],"31":[2,204],"52":[1,118],"60":[2,204],"63":[2,204],"81":[2,204],"86":[2,204],"96":[2,204],"101":[2,204],"109":[2,204],"111":132,"112":[2,204],"113":[2,204],"114":[2,204],"117":[2,204],"121":[2,204],"123":[2,204],"130":[2,204],"131":[2,204],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,204],"152":[2,204],"153":[2,204],"154":[2,204],"155":[2,204],"156":[2,204],"157":[2,204],"158":[2,204],"159":[2,204],"160":[2,204],"161":[2,204],"162":[2,204],"163":[2,204],"164":[2,204],"165":[2,204],"166":[2,204],"167":[2,204]},{"1":[2,205],"4":[2,205],"30":[2,205],"31":[2,205],"52":[1,118],"60":[2,205],"63":[2,205],"81":[2,205],"86":[2,205],"96":[2,205],"101":[2,205],"109":[2,205],"111":132,"112":[2,205],"113":[2,205],"114":[2,205],"117":[2,205],"121":[2,205],"123":[2,205],"130":[2,205],"131":[2,205],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[2,205],"156":[2,205],"157":[2,205],"158":[2,205],"159":[2,205],"160":[2,205],"161":[2,205],"162":[2,205],"163":[2,205],"164":[2,205],"165":[2,205],"166":[2,205],"167":[1,127]},{"1":[2,206],"4":[2,206],"30":[2,206],"31":[2,206],"52":[1,118],"60":[2,206],"63":[2,206],"81":[2,206],"86":[2,206],"96":[2,206],"101":[2,206],"109":[2,206],"111":132,"112":[2,206],"113":[2,206],"114":[2,206],"117":[2,206],"121":[2,206],"123":[2,206],"130":[2,206],"131":[2,206],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[2,206],"156":[2,206],"157":[2,206],"158":[2,206],"159":[2,206],"160":[2,206],"161":[2,206],"162":[2,206],"163":[2,206],"164":[2,206],"165":[2,206],"166":[2,206],"167":[1,127]},{"1":[2,207],"4":[2,207],"30":[2,207],"31":[2,207],"52":[1,118],"60":[2,207],"63":[2,207],"81":[2,207],"86":[2,207],"96":[2,207],"101":[2,207],"109":[2,207],"111":132,"112":[2,207],"113":[2,207],"114":[2,207],"117":[2,207],"121":[2,207],"123":[2,207],"130":[2,207],"131":[2,207],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[2,207],"158":[2,207],"159":[2,207],"160":[2,207],"161":[2,207],"162":[2,207],"163":[2,207],"164":[2,207],"165":[2,207],"166":[2,207],"167":[1,127]},{"1":[2,208],"4":[2,208],"30":[2,208],"31":[2,208],"52":[1,118],"60":[2,208],"63":[2,208],"81":[2,208],"86":[2,208],"96":[2,208],"101":[2,208],"109":[2,208],"111":132,"112":[2,208],"113":[2,208],"114":[2,208],"117":[2,208],"121":[2,208],"123":[2,208],"130":[2,208],"131":[2,208],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[2,208],"158":[2,208],"159":[2,208],"160":[2,208],"161":[2,208],"162":[2,208],"163":[2,208],"164":[2,208],"165":[2,208],"166":[2,208],"167":[1,127]},{"1":[2,209],"4":[2,209],"30":[2,209],"31":[2,209],"52":[2,209],"60":[2,209],"63":[2,209],"81":[2,209],"86":[2,209],"96":[2,209],"101":[2,209],"109":[2,209],"111":132,"112":[2,209],"113":[2,209],"114":[2,209],"117":[2,209],"121":[2,209],"123":[2,209],"130":[2,209],"131":[2,209],"133":[2,209],"135":[2,209],"136":[2,209],"138":[2,209],"139":[2,209],"142":[2,209],"143":[2,209],"144":[2,209],"145":[2,209],"146":[2,209],"147":[2,209],"148":[2,209],"149":[2,209],"150":[2,209],"151":[2,209],"152":[2,209],"153":[2,209],"154":[2,209],"155":[2,209],"156":[2,209],"157":[2,209],"158":[2,209],"159":[2,209],"160":[2,209],"161":[2,209],"162":[2,209],"163":[2,209],"164":[2,209],"165":[2,209],"166":[2,209],"167":[2,209]},{"1":[2,210],"4":[2,210],"30":[2,210],"31":[2,210],"52":[1,118],"60":[2,210],"63":[2,210],"81":[2,210],"86":[2,210],"96":[2,210],"101":[2,210],"109":[2,210],"111":132,"112":[2,210],"113":[2,210],"114":[2,210],"117":[2,210],"121":[2,210],"123":[2,210],"130":[2,210],"131":[2,210],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,211],"4":[2,211],"30":[2,211],"31":[2,211],"52":[1,118],"60":[2,211],"63":[2,211],"81":[2,211],"86":[2,211],"96":[2,211],"101":[2,211],"109":[2,211],"111":132,"112":[2,211],"113":[2,211],"114":[2,211],"117":[2,211],"121":[2,211],"123":[2,211],"130":[2,211],"131":[2,211],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,212],"4":[2,212],"30":[2,212],"31":[2,212],"52":[1,118],"60":[2,212],"63":[2,212],"81":[2,212],"86":[2,212],"96":[2,212],"101":[2,212],"109":[2,212],"111":132,"112":[2,212],"113":[2,212],"114":[2,212],"117":[2,212],"121":[2,212],"123":[2,212],"130":[2,212],"131":[2,212],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,213],"4":[2,213],"30":[2,213],"31":[2,213],"52":[1,118],"60":[2,213],"63":[2,213],"81":[2,213],"86":[2,213],"96":[2,213],"101":[2,213],"109":[2,213],"111":132,"112":[2,213],"113":[2,213],"114":[2,213],"117":[2,213],"121":[2,213],"123":[2,213],"130":[2,213],"131":[2,213],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,214],"4":[2,214],"30":[2,214],"31":[2,214],"52":[1,118],"60":[2,214],"63":[2,214],"81":[2,214],"86":[2,214],"96":[2,214],"101":[2,214],"109":[2,214],"111":132,"112":[2,214],"113":[2,214],"114":[2,214],"117":[2,214],"121":[2,214],"123":[2,214],"130":[2,214],"131":[2,214],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,215],"4":[2,215],"30":[2,215],"31":[2,215],"52":[1,118],"60":[2,215],"63":[2,215],"81":[2,215],"86":[2,215],"96":[2,215],"101":[2,215],"109":[2,215],"111":132,"112":[2,215],"113":[2,215],"114":[2,215],"117":[2,215],"121":[2,215],"123":[2,215],"130":[2,215],"131":[2,215],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,216],"4":[2,216],"30":[2,216],"31":[2,216],"52":[1,118],"60":[2,216],"63":[2,216],"81":[2,216],"86":[2,216],"96":[2,216],"101":[2,216],"109":[2,216],"111":132,"112":[2,216],"113":[2,216],"114":[2,216],"117":[2,216],"121":[2,216],"123":[2,216],"130":[2,216],"131":[2,216],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,217],"4":[2,217],"30":[2,217],"31":[2,217],"52":[1,118],"60":[2,217],"63":[2,217],"81":[2,217],"86":[2,217],"96":[2,217],"101":[2,217],"109":[2,217],"111":132,"112":[2,217],"113":[2,217],"114":[2,217],"117":[2,217],"121":[2,217],"123":[2,217],"130":[2,217],"131":[2,217],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,218],"4":[2,218],"30":[2,218],"31":[2,218],"52":[1,118],"60":[2,218],"63":[2,218],"81":[2,218],"86":[2,218],"96":[2,218],"101":[2,218],"109":[2,218],"111":132,"112":[2,218],"113":[2,218],"114":[2,218],"117":[2,218],"121":[2,218],"123":[2,218],"130":[2,218],"131":[2,218],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[2,218],"156":[2,218],"157":[2,218],"158":[2,218],"159":[2,218],"160":[2,218],"161":[2,218],"162":[2,218],"163":[2,218],"164":[2,218],"165":[2,218],"166":[2,218],"167":[1,127]},{"1":[2,219],"4":[2,219],"30":[2,219],"31":[2,219],"52":[1,118],"60":[2,219],"63":[1,134],"81":[2,219],"86":[2,219],"96":[2,219],"101":[2,219],"109":[2,219],"111":132,"112":[2,219],"113":[2,219],"114":[2,219],"117":[2,219],"121":[1,128],"123":[2,219],"130":[2,219],"131":[2,219],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"8":288,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,176],"4":[2,176],"30":[2,176],"31":[2,176],"52":[1,118],"60":[2,176],"63":[1,134],"81":[2,176],"86":[2,176],"96":[2,176],"101":[2,176],"109":[2,176],"111":132,"112":[1,81],"113":[2,176],"114":[1,82],"117":[1,133],"121":[1,128],"123":[2,176],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,178],"4":[2,178],"30":[2,178],"31":[2,178],"52":[1,118],"60":[2,178],"63":[1,134],"81":[2,178],"86":[2,178],"96":[2,178],"101":[2,178],"109":[2,178],"111":132,"112":[1,81],"113":[2,178],"114":[1,82],"117":[1,133],"121":[1,128],"123":[2,178],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"119":289,"121":[1,262],"122":[1,263]},{"63":[1,290]},{"1":[2,175],"4":[2,175],"30":[2,175],"31":[2,175],"52":[1,118],"60":[2,175],"63":[1,134],"81":[2,175],"86":[2,175],"96":[2,175],"101":[2,175],"109":[2,175],"111":132,"112":[1,81],"113":[2,175],"114":[1,82],"117":[1,133],"121":[1,128],"123":[2,175],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,177],"4":[2,177],"30":[2,177],"31":[2,177],"52":[1,118],"60":[2,177],"63":[1,134],"81":[2,177],"86":[2,177],"96":[2,177],"101":[2,177],"109":[2,177],"111":132,"112":[1,81],"113":[2,177],"114":[1,82],"117":[1,133],"121":[1,128],"123":[2,177],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"119":291,"121":[1,262],"122":[1,263]},{"4":[2,60],"30":[2,60],"59":292,"60":[1,276],"96":[2,60]},{"4":[2,122],"30":[2,122],"31":[2,122],"52":[1,118],"60":[2,122],"63":[1,134],"96":[2,122],"101":[2,122],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,81],"4":[2,81],"30":[2,81],"31":[2,81],"47":[2,81],"52":[2,81],"60":[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],"88":[2,81],"94":[2,81],"96":[2,81],"101":[2,81],"109":[2,81],"112":[2,81],"113":[2,81],"114":[2,81],"117":[2,81],"121":[2,81],"123":[2,81],"130":[2,81],"131":[2,81],"133":[2,81],"135":[2,81],"136":[2,81],"138":[2,81],"139":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81],"151":[2,81],"152":[2,81],"153":[2,81],"154":[2,81],"155":[2,81],"156":[2,81],"157":[2,81],"158":[2,81],"159":[2,81],"160":[2,81],"161":[2,81],"162":[2,81],"163":[2,81],"164":[2,81],"165":[2,81],"166":[2,81],"167":[2,81]},{"1":[2,82],"4":[2,82],"30":[2,82],"31":[2,82],"47":[2,82],"52":[2,82],"60":[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],"88":[2,82],"94":[2,82],"96":[2,82],"101":[2,82],"109":[2,82],"112":[2,82],"113":[2,82],"114":[2,82],"117":[2,82],"121":[2,82],"123":[2,82],"130":[2,82],"131":[2,82],"133":[2,82],"135":[2,82],"136":[2,82],"138":[2,82],"139":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82],"151":[2,82],"152":[2,82],"153":[2,82],"154":[2,82],"155":[2,82],"156":[2,82],"157":[2,82],"158":[2,82],"159":[2,82],"160":[2,82],"161":[2,82],"162":[2,82],"163":[2,82],"164":[2,82],"165":[2,82],"166":[2,82],"167":[2,82]},{"1":[2,84],"4":[2,84],"30":[2,84],"31":[2,84],"47":[2,84],"52":[2,84],"60":[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],"101":[2,84],"109":[2,84],"112":[2,84],"113":[2,84],"114":[2,84],"117":[2,84],"121":[2,84],"123":[2,84],"130":[2,84],"131":[2,84],"133":[2,84],"135":[2,84],"136":[2,84],"138":[2,84],"139":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84],"151":[2,84],"152":[2,84],"153":[2,84],"154":[2,84],"155":[2,84],"156":[2,84],"157":[2,84],"158":[2,84],"159":[2,84],"160":[2,84],"161":[2,84],"162":[2,84],"163":[2,84],"164":[2,84],"165":[2,84],"166":[2,84],"167":[2,84]},{"52":[1,118],"63":[1,294],"81":[1,293],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,88],"4":[2,88],"30":[2,88],"31":[2,88],"47":[2,88],"52":[2,88],"60":[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],"101":[2,88],"109":[2,88],"112":[2,88],"113":[2,88],"114":[2,88],"117":[2,88],"121":[2,88],"123":[2,88],"130":[2,88],"131":[2,88],"133":[2,88],"135":[2,88],"136":[2,88],"138":[2,88],"139":[2,88],"142":[2,88],"143":[2,88],"144":[2,88],"145":[2,88],"146":[2,88],"147":[2,88],"148":[2,88],"149":[2,88],"150":[2,88],"151":[2,88],"152":[2,88],"153":[2,88],"154":[2,88],"155":[2,88],"156":[2,88],"157":[2,88],"158":[2,88],"159":[2,88],"160":[2,88],"161":[2,88],"162":[2,88],"163":[2,88],"164":[2,88],"165":[2,88],"166":[2,88],"167":[2,88]},{"8":295,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,89],"4":[2,89],"30":[2,89],"31":[2,89],"47":[2,89],"52":[2,89],"60":[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],"101":[2,89],"109":[2,89],"112":[2,89],"113":[2,89],"114":[2,89],"117":[2,89],"121":[2,89],"123":[2,89],"130":[2,89],"131":[2,89],"133":[2,89],"135":[2,89],"136":[2,89],"138":[2,89],"139":[2,89],"142":[2,89],"143":[2,89],"144":[2,89],"145":[2,89],"146":[2,89],"147":[2,89],"148":[2,89],"149":[2,89],"150":[2,89],"151":[2,89],"152":[2,89],"153":[2,89],"154":[2,89],"155":[2,89],"156":[2,89],"157":[2,89],"158":[2,89],"159":[2,89],"160":[2,89],"161":[2,89],"162":[2,89],"163":[2,89],"164":[2,89],"165":[2,89],"166":[2,89],"167":[2,89]},{"1":[2,45],"4":[2,45],"30":[2,45],"31":[2,45],"52":[1,118],"60":[2,45],"63":[1,134],"81":[2,45],"86":[2,45],"96":[2,45],"101":[2,45],"109":[2,45],"111":132,"112":[1,81],"113":[2,45],"114":[1,82],"117":[1,133],"121":[1,128],"123":[2,45],"130":[2,45],"131":[2,45],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"56":296,"57":[1,78],"58":[1,79]},{"61":297,"62":[1,160]},{"63":[1,298]},{"1":[2,128],"4":[2,128],"30":[2,128],"31":[2,128],"52":[2,128],"60":[2,128],"63":[2,128],"81":[2,128],"86":[2,128],"96":[2,128],"101":[2,128],"105":[1,299],"109":[2,128],"112":[2,128],"113":[2,128],"114":[2,128],"117":[2,128],"121":[2,128],"123":[2,128],"130":[2,128],"131":[2,128],"133":[2,128],"135":[2,128],"136":[2,128],"138":[2,128],"139":[2,128],"142":[2,128],"143":[2,128],"144":[2,128],"145":[2,128],"146":[2,128],"147":[2,128],"148":[2,128],"149":[2,128],"150":[2,128],"151":[2,128],"152":[2,128],"153":[2,128],"154":[2,128],"155":[2,128],"156":[2,128],"157":[2,128],"158":[2,128],"159":[2,128],"160":[2,128],"161":[2,128],"162":[2,128],"163":[2,128],"164":[2,128],"165":[2,128],"166":[2,128],"167":[2,128]},{"4":[1,162],"6":300,"30":[1,6]},{"32":301,"33":[1,91]},{"4":[1,162],"6":302,"30":[1,6]},{"8":303,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":304,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"32":177,"33":[1,91],"68":178,"69":179,"84":[1,86],"100":[1,180],"120":305},{"28":269,"50":[1,57],"51":[1,58],"125":306,"127":267,"128":[1,268]},{"28":269,"31":[1,307],"50":[1,57],"51":[1,58],"126":[1,308],"127":309,"128":[1,268]},{"31":[2,164],"50":[2,164],"51":[2,164],"126":[2,164],"128":[2,164]},{"8":311,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"102":310,"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"4":[1,312]},{"1":[2,108],"4":[2,108],"30":[2,108],"31":[2,108],"52":[2,108],"60":[2,108],"63":[2,108],"65":140,"74":[1,142],"75":[1,143],"76":[1,144],"77":[1,145],"78":146,"79":147,"80":[1,148],"81":[2,108],"82":[1,149],"83":[1,150],"86":[2,108],"93":139,"94":[1,141],"96":[2,108],"101":[2,108],"109":[2,108],"112":[2,108],"113":[2,108],"114":[2,108],"117":[2,108],"121":[2,108],"123":[2,108],"130":[2,108],"131":[2,108],"133":[2,108],"135":[2,108],"136":[2,108],"138":[2,108],"139":[2,108],"142":[2,108],"143":[2,108],"144":[2,108],"145":[2,108],"146":[2,108],"147":[2,108],"148":[2,108],"149":[2,108],"150":[2,108],"151":[2,108],"152":[2,108],"153":[2,108],"154":[2,108],"155":[2,108],"156":[2,108],"157":[2,108],"158":[2,108],"159":[2,108],"160":[2,108],"161":[2,108],"162":[2,108],"163":[2,108],"164":[2,108],"165":[2,108],"166":[2,108],"167":[2,108]},{"14":313,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":156,"64":157,"66":185,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"98":[1,75],"99":[1,76],"100":[1,74],"108":[1,73]},{"4":[2,102],"28":202,"31":[2,102],"32":200,"33":[1,91],"34":201,"35":[1,87],"36":[1,88],"48":316,"50":[1,57],"51":[1,58],"67":317,"89":314,"90":315,"99":[1,318]},{"1":[2,133],"4":[2,133],"30":[2,133],"31":[2,133],"52":[2,133],"60":[2,133],"63":[2,133],"74":[2,133],"75":[2,133],"76":[2,133],"77":[2,133],"80":[2,133],"81":[2,133],"82":[2,133],"83":[2,133],"86":[2,133],"94":[2,133],"96":[2,133],"101":[2,133],"109":[2,133],"112":[2,133],"113":[2,133],"114":[2,133],"117":[2,133],"121":[2,133],"123":[2,133],"130":[2,133],"131":[2,133],"133":[2,133],"135":[2,133],"136":[2,133],"138":[2,133],"139":[2,133],"142":[2,133],"143":[2,133],"144":[2,133],"145":[2,133],"146":[2,133],"147":[2,133],"148":[2,133],"149":[2,133],"150":[2,133],"151":[2,133],"152":[2,133],"153":[2,133],"154":[2,133],"155":[2,133],"156":[2,133],"157":[2,133],"158":[2,133],"159":[2,133],"160":[2,133],"161":[2,133],"162":[2,133],"163":[2,133],"164":[2,133],"165":[2,133],"166":[2,133],"167":[2,133]},{"63":[1,319]},{"4":[1,321],"30":[1,322],"101":[1,320]},{"4":[2,61],"8":323,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[2,61],"31":[2,61],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"96":[2,61],"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"101":[2,61],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"4":[2,60],"30":[2,60],"59":324,"60":[1,276],"96":[2,60]},{"1":[2,173],"4":[2,173],"30":[2,173],"31":[2,173],"52":[2,173],"60":[2,173],"63":[2,173],"81":[2,173],"86":[2,173],"96":[2,173],"101":[2,173],"109":[2,173],"112":[2,173],"113":[2,173],"114":[2,173],"117":[2,173],"121":[2,173],"123":[2,173],"130":[2,173],"131":[2,173],"133":[2,173],"135":[2,173],"136":[2,173],"138":[2,173],"139":[2,173],"142":[2,173],"143":[2,173],"144":[2,173],"145":[2,173],"146":[2,173],"147":[2,173],"148":[2,173],"149":[2,173],"150":[2,173],"151":[2,173],"152":[2,173],"153":[2,173],"154":[2,173],"155":[2,173],"156":[2,173],"157":[2,173],"158":[2,173],"159":[2,173],"160":[2,173],"161":[2,173],"162":[2,173],"163":[2,173],"164":[2,173],"165":[2,173],"166":[2,173],"167":[2,173]},{"8":325,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":326,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":327,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"4":[1,329],"30":[1,330],"86":[1,328]},{"4":[2,61],"28":202,"30":[2,61],"31":[2,61],"32":200,"33":[1,91],"34":201,"35":[1,87],"36":[1,88],"48":331,"50":[1,57],"51":[1,58],"86":[2,61]},{"8":332,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":333,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,169],"4":[2,169],"30":[2,169],"31":[2,169],"52":[2,169],"60":[2,169],"63":[2,169],"81":[2,169],"86":[2,169],"96":[2,169],"101":[2,169],"109":[2,169],"112":[2,169],"113":[2,169],"114":[2,169],"117":[2,169],"121":[2,169],"123":[2,169],"126":[2,169],"130":[2,169],"131":[2,169],"133":[2,169],"135":[2,169],"136":[2,169],"138":[2,169],"139":[2,169],"142":[2,169],"143":[2,169],"144":[2,169],"145":[2,169],"146":[2,169],"147":[2,169],"148":[2,169],"149":[2,169],"150":[2,169],"151":[2,169],"152":[2,169],"153":[2,169],"154":[2,169],"155":[2,169],"156":[2,169],"157":[2,169],"158":[2,169],"159":[2,169],"160":[2,169],"161":[2,169],"162":[2,169],"163":[2,169],"164":[2,169],"165":[2,169],"166":[2,169],"167":[2,169]},{"1":[2,170],"4":[2,170],"30":[2,170],"31":[2,170],"52":[2,170],"60":[2,170],"63":[2,170],"81":[2,170],"86":[2,170],"96":[2,170],"101":[2,170],"109":[2,170],"112":[2,170],"113":[2,170],"114":[2,170],"117":[2,170],"121":[2,170],"123":[2,170],"126":[2,170],"130":[2,170],"131":[2,170],"133":[2,170],"135":[2,170],"136":[2,170],"138":[2,170],"139":[2,170],"142":[2,170],"143":[2,170],"144":[2,170],"145":[2,170],"146":[2,170],"147":[2,170],"148":[2,170],"149":[2,170],"150":[2,170],"151":[2,170],"152":[2,170],"153":[2,170],"154":[2,170],"155":[2,170],"156":[2,170],"157":[2,170],"158":[2,170],"159":[2,170],"160":[2,170],"161":[2,170],"162":[2,170],"163":[2,170],"164":[2,170],"165":[2,170],"166":[2,170],"167":[2,170]},{"1":[2,220],"4":[2,220],"30":[2,220],"31":[2,220],"52":[1,118],"60":[2,220],"63":[2,220],"81":[2,220],"86":[2,220],"96":[2,220],"101":[2,220],"109":[2,220],"111":132,"112":[2,220],"113":[2,220],"114":[2,220],"117":[2,220],"121":[2,220],"123":[2,220],"130":[2,220],"131":[2,220],"135":[2,220],"136":[2,220],"142":[2,220],"143":[2,220],"144":[2,220],"145":[2,220],"146":[2,220],"147":[2,220],"148":[2,220],"149":[2,220],"150":[2,220],"151":[2,220],"152":[2,220],"153":[2,220],"154":[2,220],"155":[2,220],"156":[2,220],"157":[2,220],"158":[2,220],"159":[2,220],"160":[2,220],"161":[2,220],"162":[2,220],"163":[2,220],"164":[2,220],"165":[2,220],"166":[2,220],"167":[2,220]},{"1":[2,146],"4":[2,146],"30":[2,146],"31":[2,146],"52":[2,146],"60":[2,146],"63":[2,146],"81":[2,146],"86":[2,146],"96":[2,146],"101":[2,146],"109":[2,146],"112":[2,146],"113":[2,146],"114":[2,146],"117":[2,146],"121":[2,146],"123":[2,146],"130":[2,146],"131":[2,146],"133":[2,146],"135":[2,146],"136":[2,146],"138":[2,146],"139":[2,146],"142":[2,146],"143":[2,146],"144":[2,146],"145":[2,146],"146":[2,146],"147":[2,146],"148":[2,146],"149":[2,146],"150":[2,146],"151":[2,146],"152":[2,146],"153":[2,146],"154":[2,146],"155":[2,146],"156":[2,146],"157":[2,146],"158":[2,146],"159":[2,146],"160":[2,146],"161":[2,146],"162":[2,146],"163":[2,146],"164":[2,146],"165":[2,146],"166":[2,146],"167":[2,146]},{"1":[2,67],"4":[2,67],"30":[2,67],"31":[2,67],"52":[2,67],"60":[2,67],"63":[2,67],"81":[2,67],"86":[2,67],"96":[2,67],"101":[2,67],"109":[2,67],"112":[2,67],"113":[2,67],"114":[2,67],"117":[2,67],"121":[2,67],"123":[2,67],"130":[2,67],"131":[2,67],"133":[2,67],"135":[2,67],"136":[2,67],"138":[2,67],"139":[2,67],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67],"162":[2,67],"163":[2,67],"164":[2,67],"165":[2,67],"166":[2,67],"167":[2,67]},{"1":[2,145],"4":[2,145],"30":[2,145],"31":[2,145],"52":[2,145],"60":[2,145],"63":[2,145],"81":[2,145],"86":[2,145],"96":[2,145],"101":[2,145],"109":[2,145],"112":[2,145],"113":[2,145],"114":[2,145],"117":[2,145],"121":[2,145],"123":[2,145],"130":[2,145],"131":[2,145],"133":[2,145],"135":[2,145],"136":[2,145],"138":[2,145],"139":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"146":[2,145],"147":[2,145],"148":[2,145],"149":[2,145],"150":[2,145],"151":[2,145],"152":[2,145],"153":[2,145],"154":[2,145],"155":[2,145],"156":[2,145],"157":[2,145],"158":[2,145],"159":[2,145],"160":[2,145],"161":[2,145],"162":[2,145],"163":[2,145],"164":[2,145],"165":[2,145],"166":[2,145],"167":[2,145]},{"4":[1,321],"30":[1,322],"96":[1,334]},{"1":[2,87],"4":[2,87],"30":[2,87],"31":[2,87],"47":[2,87],"52":[2,87],"60":[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],"101":[2,87],"109":[2,87],"112":[2,87],"113":[2,87],"114":[2,87],"117":[2,87],"121":[2,87],"123":[2,87],"130":[2,87],"131":[2,87],"133":[2,87],"135":[2,87],"136":[2,87],"138":[2,87],"139":[2,87],"142":[2,87],"143":[2,87],"144":[2,87],"145":[2,87],"146":[2,87],"147":[2,87],"148":[2,87],"149":[2,87],"150":[2,87],"151":[2,87],"152":[2,87],"153":[2,87],"154":[2,87],"155":[2,87],"156":[2,87],"157":[2,87],"158":[2,87],"159":[2,87],"160":[2,87],"161":[2,87],"162":[2,87],"163":[2,87],"164":[2,87],"165":[2,87],"166":[2,87],"167":[2,87]},{"63":[1,335]},{"52":[1,118],"63":[1,134],"81":[1,293],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[1,162],"6":336,"30":[1,6]},{"55":[2,64],"60":[2,64],"63":[1,257]},{"63":[1,337]},{"4":[1,162],"6":338,"30":[1,6]},{"1":[2,129],"4":[2,129],"30":[2,129],"31":[2,129],"52":[2,129],"60":[2,129],"63":[2,129],"81":[2,129],"86":[2,129],"96":[2,129],"101":[2,129],"109":[2,129],"112":[2,129],"113":[2,129],"114":[2,129],"117":[2,129],"121":[2,129],"123":[2,129],"130":[2,129],"131":[2,129],"133":[2,129],"135":[2,129],"136":[2,129],"138":[2,129],"139":[2,129],"142":[2,129],"143":[2,129],"144":[2,129],"145":[2,129],"146":[2,129],"147":[2,129],"148":[2,129],"149":[2,129],"150":[2,129],"151":[2,129],"152":[2,129],"153":[2,129],"154":[2,129],"155":[2,129],"156":[2,129],"157":[2,129],"158":[2,129],"159":[2,129],"160":[2,129],"161":[2,129],"162":[2,129],"163":[2,129],"164":[2,129],"165":[2,129],"166":[2,129],"167":[2,129]},{"4":[1,162],"6":339,"30":[1,6]},{"1":[2,147],"4":[2,147],"30":[2,147],"31":[2,147],"52":[2,147],"60":[2,147],"63":[2,147],"81":[2,147],"86":[2,147],"96":[2,147],"101":[2,147],"109":[2,147],"112":[2,147],"113":[2,147],"114":[2,147],"117":[2,147],"121":[2,147],"123":[2,147],"130":[2,147],"131":[2,147],"133":[2,147],"135":[2,147],"136":[2,147],"138":[2,147],"139":[2,147],"142":[2,147],"143":[2,147],"144":[2,147],"145":[2,147],"146":[2,147],"147":[2,147],"148":[2,147],"149":[2,147],"150":[2,147],"151":[2,147],"152":[2,147],"153":[2,147],"154":[2,147],"155":[2,147],"156":[2,147],"157":[2,147],"158":[2,147],"159":[2,147],"160":[2,147],"161":[2,147],"162":[2,147],"163":[2,147],"164":[2,147],"165":[2,147],"166":[2,147],"167":[2,147]},{"1":[2,153],"4":[2,153],"30":[2,153],"31":[2,153],"52":[1,118],"60":[2,153],"63":[1,134],"81":[2,153],"86":[2,153],"96":[2,153],"101":[2,153],"109":[2,153],"111":132,"112":[2,153],"113":[1,340],"114":[2,153],"117":[2,153],"121":[1,128],"123":[1,341],"130":[2,153],"131":[2,153],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,154],"4":[2,154],"30":[2,154],"31":[2,154],"52":[1,118],"60":[2,154],"63":[1,134],"81":[2,154],"86":[2,154],"96":[2,154],"101":[2,154],"109":[2,154],"111":132,"112":[2,154],"113":[1,342],"114":[2,154],"117":[2,154],"121":[1,128],"123":[2,154],"130":[2,154],"131":[2,154],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"121":[2,152],"122":[2,152]},{"28":269,"31":[1,343],"50":[1,57],"51":[1,58],"126":[1,344],"127":309,"128":[1,268]},{"1":[2,162],"4":[2,162],"30":[2,162],"31":[2,162],"52":[2,162],"60":[2,162],"63":[2,162],"81":[2,162],"86":[2,162],"96":[2,162],"101":[2,162],"109":[2,162],"112":[2,162],"113":[2,162],"114":[2,162],"117":[2,162],"121":[2,162],"123":[2,162],"130":[2,162],"131":[2,162],"133":[2,162],"135":[2,162],"136":[2,162],"138":[2,162],"139":[2,162],"142":[2,162],"143":[2,162],"144":[2,162],"145":[2,162],"146":[2,162],"147":[2,162],"148":[2,162],"149":[2,162],"150":[2,162],"151":[2,162],"152":[2,162],"153":[2,162],"154":[2,162],"155":[2,162],"156":[2,162],"157":[2,162],"158":[2,162],"159":[2,162],"160":[2,162],"161":[2,162],"162":[2,162],"163":[2,162],"164":[2,162],"165":[2,162],"166":[2,162],"167":[2,162]},{"4":[1,162],"6":345,"30":[1,6]},{"31":[2,165],"50":[2,165],"51":[2,165],"126":[2,165],"128":[2,165]},{"4":[1,162],"6":346,"30":[1,6],"60":[1,347]},{"4":[2,126],"30":[2,126],"52":[1,118],"60":[2,126],"63":[1,134],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"28":269,"50":[1,57],"51":[1,58],"127":348,"128":[1,268]},{"1":[2,97],"4":[2,97],"30":[1,349],"31":[2,97],"52":[2,97],"60":[2,97],"63":[2,97],"65":140,"74":[1,142],"75":[1,143],"76":[1,144],"77":[1,145],"78":146,"79":147,"80":[1,148],"81":[2,97],"82":[1,149],"83":[1,150],"86":[2,97],"93":139,"94":[1,141],"96":[2,97],"101":[2,97],"109":[2,97],"112":[2,97],"113":[2,97],"114":[2,97],"117":[2,97],"121":[2,97],"123":[2,97],"130":[2,97],"131":[2,97],"133":[2,97],"135":[2,97],"136":[2,97],"138":[2,97],"139":[2,97],"142":[2,97],"143":[2,97],"144":[2,97],"145":[2,97],"146":[2,97],"147":[2,97],"148":[2,97],"149":[2,97],"150":[2,97],"151":[2,97],"152":[2,97],"153":[2,97],"154":[2,97],"155":[2,97],"156":[2,97],"157":[2,97],"158":[2,97],"159":[2,97],"160":[2,97],"161":[2,97],"162":[2,97],"163":[2,97],"164":[2,97],"165":[2,97],"166":[2,97],"167":[2,97]},{"4":[1,351],"31":[1,350]},{"4":[2,103],"31":[2,103]},{"4":[2,100],"31":[2,100]},{"47":[1,352]},{"32":191,"33":[1,91]},{"8":353,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"63":[1,354],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,120],"4":[2,120],"30":[2,120],"31":[2,120],"47":[2,120],"52":[2,120],"60":[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],"101":[2,120],"109":[2,120],"112":[2,120],"113":[2,120],"114":[2,120],"117":[2,120],"121":[2,120],"122":[2,120],"123":[2,120],"130":[2,120],"131":[2,120],"133":[2,120],"135":[2,120],"136":[2,120],"138":[2,120],"139":[2,120],"142":[2,120],"143":[2,120],"144":[2,120],"145":[2,120],"146":[2,120],"147":[2,120],"148":[2,120],"149":[2,120],"150":[2,120],"151":[2,120],"152":[2,120],"153":[2,120],"154":[2,120],"155":[2,120],"156":[2,120],"157":[2,120],"158":[2,120],"159":[2,120],"160":[2,120],"161":[2,120],"162":[2,120],"163":[2,120],"164":[2,120],"165":[2,120],"166":[2,120],"167":[2,120]},{"8":355,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"4":[2,121],"8":246,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[2,121],"31":[2,121],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"60":[2,121],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"95":356,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"4":[2,123],"30":[2,123],"31":[2,123],"52":[1,118],"60":[2,123],"63":[1,134],"96":[2,123],"101":[2,123],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[1,321],"30":[1,322],"96":[1,357]},{"4":[1,162],"6":358,"30":[1,6],"52":[1,118],"63":[1,134],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,136],"4":[2,136],"30":[2,136],"31":[2,136],"52":[1,118],"60":[2,136],"63":[1,134],"81":[2,136],"86":[2,136],"96":[2,136],"101":[2,136],"109":[2,136],"111":132,"112":[1,81],"113":[2,136],"114":[1,82],"117":[1,133],"121":[1,128],"123":[2,136],"130":[2,136],"131":[2,136],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,138],"4":[2,138],"30":[2,138],"31":[2,138],"52":[1,118],"60":[2,138],"63":[1,134],"81":[2,138],"86":[2,138],"96":[2,138],"101":[2,138],"109":[2,138],"111":132,"112":[1,81],"113":[2,138],"114":[1,82],"117":[1,133],"121":[1,128],"123":[2,138],"130":[2,138],"131":[2,138],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,90],"4":[2,90],"30":[2,90],"31":[2,90],"47":[2,90],"52":[2,90],"60":[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],"94":[2,90],"96":[2,90],"101":[2,90],"109":[2,90],"112":[2,90],"113":[2,90],"114":[2,90],"117":[2,90],"121":[2,90],"122":[2,90],"123":[2,90],"130":[2,90],"131":[2,90],"133":[2,90],"135":[2,90],"136":[2,90],"138":[2,90],"139":[2,90],"142":[2,90],"143":[2,90],"144":[2,90],"145":[2,90],"146":[2,90],"147":[2,90],"148":[2,90],"149":[2,90],"150":[2,90],"151":[2,90],"152":[2,90],"153":[2,90],"154":[2,90],"155":[2,90],"156":[2,90],"157":[2,90],"158":[2,90],"159":[2,90],"160":[2,90],"161":[2,90],"162":[2,90],"163":[2,90],"164":[2,90],"165":[2,90],"166":[2,90],"167":[2,90]},{"28":202,"32":200,"33":[1,91],"34":201,"35":[1,87],"36":[1,88],"48":359,"50":[1,57],"51":[1,58]},{"4":[2,91],"28":202,"30":[2,91],"31":[2,91],"32":200,"33":[1,91],"34":201,"35":[1,87],"36":[1,88],"48":199,"50":[1,57],"51":[1,58],"60":[2,91],"85":360},{"4":[2,93],"30":[2,93],"31":[2,93],"60":[2,93],"86":[2,93]},{"4":[2,48],"30":[2,48],"31":[2,48],"52":[1,118],"60":[2,48],"63":[1,134],"86":[2,48],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[2,49],"30":[2,49],"31":[2,49],"52":[1,118],"60":[2,49],"63":[1,134],"86":[2,49],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,111],"4":[2,111],"30":[2,111],"31":[2,111],"52":[2,111],"60":[2,111],"63":[2,111],"74":[2,111],"75":[2,111],"76":[2,111],"77":[2,111],"80":[2,111],"81":[2,111],"82":[2,111],"83":[2,111],"86":[2,111],"94":[2,111],"96":[2,111],"101":[2,111],"109":[2,111],"112":[2,111],"113":[2,111],"114":[2,111],"117":[2,111],"121":[2,111],"123":[2,111],"130":[2,111],"131":[2,111],"133":[2,111],"135":[2,111],"136":[2,111],"138":[2,111],"139":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"147":[2,111],"148":[2,111],"149":[2,111],"150":[2,111],"151":[2,111],"152":[2,111],"153":[2,111],"154":[2,111],"155":[2,111],"156":[2,111],"157":[2,111],"158":[2,111],"159":[2,111],"160":[2,111],"161":[2,111],"162":[2,111],"163":[2,111],"164":[2,111],"165":[2,111],"166":[2,111],"167":[2,111]},{"8":361,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"63":[1,362],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,56],"4":[2,56],"30":[2,56],"31":[2,56],"52":[2,56],"60":[2,56],"63":[2,56],"81":[2,56],"86":[2,56],"96":[2,56],"101":[2,56],"109":[2,56],"112":[2,56],"113":[2,56],"114":[2,56],"117":[2,56],"121":[2,56],"123":[2,56],"130":[2,56],"131":[2,56],"133":[2,56],"135":[2,56],"136":[2,56],"138":[2,56],"139":[2,56],"142":[2,56],"143":[2,56],"144":[2,56],"145":[2,56],"146":[2,56],"147":[2,56],"148":[2,56],"149":[2,56],"150":[2,56],"151":[2,56],"152":[2,56],"153":[2,56],"154":[2,56],"155":[2,56],"156":[2,56],"157":[2,56],"158":[2,56],"159":[2,56],"160":[2,56],"161":[2,56],"162":[2,56],"163":[2,56],"164":[2,56],"165":[2,56],"166":[2,56],"167":[2,56]},{"55":[2,66],"60":[2,66],"63":[2,66]},{"1":[2,130],"4":[2,130],"30":[2,130],"31":[2,130],"52":[2,130],"60":[2,130],"63":[2,130],"81":[2,130],"86":[2,130],"96":[2,130],"101":[2,130],"109":[2,130],"112":[2,130],"113":[2,130],"114":[2,130],"117":[2,130],"121":[2,130],"123":[2,130],"130":[2,130],"131":[2,130],"133":[2,130],"135":[2,130],"136":[2,130],"138":[2,130],"139":[2,130],"142":[2,130],"143":[2,130],"144":[2,130],"145":[2,130],"146":[2,130],"147":[2,130],"148":[2,130],"149":[2,130],"150":[2,130],"151":[2,130],"152":[2,130],"153":[2,130],"154":[2,130],"155":[2,130],"156":[2,130],"157":[2,130],"158":[2,130],"159":[2,130],"160":[2,130],"161":[2,130],"162":[2,130],"163":[2,130],"164":[2,130],"165":[2,130],"166":[2,130],"167":[2,130]},{"1":[2,131],"4":[2,131],"30":[2,131],"31":[2,131],"52":[2,131],"60":[2,131],"63":[2,131],"81":[2,131],"86":[2,131],"96":[2,131],"101":[2,131],"105":[2,131],"109":[2,131],"112":[2,131],"113":[2,131],"114":[2,131],"117":[2,131],"121":[2,131],"123":[2,131],"130":[2,131],"131":[2,131],"133":[2,131],"135":[2,131],"136":[2,131],"138":[2,131],"139":[2,131],"142":[2,131],"143":[2,131],"144":[2,131],"145":[2,131],"146":[2,131],"147":[2,131],"148":[2,131],"149":[2,131],"150":[2,131],"151":[2,131],"152":[2,131],"153":[2,131],"154":[2,131],"155":[2,131],"156":[2,131],"157":[2,131],"158":[2,131],"159":[2,131],"160":[2,131],"161":[2,131],"162":[2,131],"163":[2,131],"164":[2,131],"165":[2,131],"166":[2,131],"167":[2,131]},{"8":363,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":364,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":365,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,160],"4":[2,160],"30":[2,160],"31":[2,160],"52":[2,160],"60":[2,160],"63":[2,160],"81":[2,160],"86":[2,160],"96":[2,160],"101":[2,160],"109":[2,160],"112":[2,160],"113":[2,160],"114":[2,160],"117":[2,160],"121":[2,160],"123":[2,160],"130":[2,160],"131":[2,160],"133":[2,160],"135":[2,160],"136":[2,160],"138":[2,160],"139":[2,160],"142":[2,160],"143":[2,160],"144":[2,160],"145":[2,160],"146":[2,160],"147":[2,160],"148":[2,160],"149":[2,160],"150":[2,160],"151":[2,160],"152":[2,160],"153":[2,160],"154":[2,160],"155":[2,160],"156":[2,160],"157":[2,160],"158":[2,160],"159":[2,160],"160":[2,160],"161":[2,160],"162":[2,160],"163":[2,160],"164":[2,160],"165":[2,160],"166":[2,160],"167":[2,160]},{"4":[1,162],"6":366,"30":[1,6]},{"31":[1,367]},{"4":[1,368],"31":[2,166],"50":[2,166],"51":[2,166],"126":[2,166],"128":[2,166]},{"8":369,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"31":[2,168],"50":[2,168],"51":[2,168],"126":[2,168],"128":[2,168]},{"4":[2,102],"28":202,"31":[2,102],"32":200,"33":[1,91],"34":201,"35":[1,87],"36":[1,88],"48":316,"50":[1,57],"51":[1,58],"67":317,"89":370,"90":315,"99":[1,318]},{"1":[2,98],"4":[2,98],"30":[2,98],"31":[2,98],"52":[2,98],"60":[2,98],"63":[2,98],"81":[2,98],"86":[2,98],"96":[2,98],"101":[2,98],"109":[2,98],"112":[2,98],"113":[2,98],"114":[2,98],"117":[2,98],"121":[2,98],"123":[2,98],"130":[2,98],"131":[2,98],"133":[2,98],"135":[2,98],"136":[2,98],"138":[2,98],"139":[2,98],"142":[2,98],"143":[2,98],"144":[2,98],"145":[2,98],"146":[2,98],"147":[2,98],"148":[2,98],"149":[2,98],"150":[2,98],"151":[2,98],"152":[2,98],"153":[2,98],"154":[2,98],"155":[2,98],"156":[2,98],"157":[2,98],"158":[2,98],"159":[2,98],"160":[2,98],"161":[2,98],"162":[2,98],"163":[2,98],"164":[2,98],"165":[2,98],"166":[2,98],"167":[2,98]},{"28":202,"32":200,"33":[1,91],"34":201,"35":[1,87],"36":[1,88],"48":316,"50":[1,57],"51":[1,58],"67":317,"90":371,"99":[1,318]},{"8":372,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"52":[1,118],"63":[1,134],"101":[1,373],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[2,67],"8":374,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[2,67],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"52":[2,67],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"60":[2,67],"63":[2,67],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"101":[2,67],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[2,67],"114":[2,67],"115":52,"116":[1,83],"117":[2,67],"121":[2,67],"124":[1,54],"129":80,"130":[2,67],"131":[2,67],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67],"162":[2,67],"163":[2,67],"164":[2,67],"165":[2,67],"166":[2,67],"167":[2,67]},{"4":[2,124],"30":[2,124],"31":[2,124],"52":[1,118],"60":[2,124],"63":[1,134],"96":[2,124],"101":[2,124],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[2,60],"30":[2,60],"31":[2,60],"59":375,"60":[1,276]},{"1":[2,112],"4":[2,112],"30":[2,112],"31":[2,112],"52":[2,112],"60":[2,112],"63":[2,112],"81":[2,112],"86":[2,112],"96":[2,112],"101":[2,112],"109":[2,112],"112":[2,112],"113":[2,112],"114":[2,112],"117":[2,112],"121":[2,112],"123":[2,112],"130":[2,112],"131":[2,112],"133":[2,112],"135":[2,112],"136":[2,112],"138":[2,112],"139":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"147":[2,112],"148":[2,112],"149":[2,112],"150":[2,112],"151":[2,112],"152":[2,112],"153":[2,112],"154":[2,112],"155":[2,112],"156":[2,112],"157":[2,112],"158":[2,112],"159":[2,112],"160":[2,112],"161":[2,112],"162":[2,112],"163":[2,112],"164":[2,112],"165":[2,112],"166":[2,112],"167":[2,112]},{"1":[2,171],"4":[2,171],"30":[2,171],"31":[2,171],"52":[2,171],"60":[2,171],"63":[2,171],"81":[2,171],"86":[2,171],"96":[2,171],"101":[2,171],"109":[2,171],"112":[2,171],"113":[2,171],"114":[2,171],"117":[2,171],"121":[2,171],"123":[2,171],"126":[2,171],"130":[2,171],"131":[2,171],"133":[2,171],"135":[2,171],"136":[2,171],"138":[2,171],"139":[2,171],"142":[2,171],"143":[2,171],"144":[2,171],"145":[2,171],"146":[2,171],"147":[2,171],"148":[2,171],"149":[2,171],"150":[2,171],"151":[2,171],"152":[2,171],"153":[2,171],"154":[2,171],"155":[2,171],"156":[2,171],"157":[2,171],"158":[2,171],"159":[2,171],"160":[2,171],"161":[2,171],"162":[2,171],"163":[2,171],"164":[2,171],"165":[2,171],"166":[2,171],"167":[2,171]},{"4":[2,94],"30":[2,94],"31":[2,94],"60":[2,94],"86":[2,94]},{"4":[2,60],"30":[2,60],"31":[2,60],"59":376,"60":[1,283]},{"52":[1,118],"63":[1,134],"81":[1,377],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"8":378,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"52":[2,67],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"63":[2,67],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"81":[2,67],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[2,67],"114":[2,67],"115":52,"116":[1,83],"117":[2,67],"121":[2,67],"124":[1,54],"129":80,"130":[2,67],"131":[2,67],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67],"162":[2,67],"163":[2,67],"164":[2,67],"165":[2,67],"166":[2,67],"167":[2,67]},{"1":[2,155],"4":[2,155],"30":[2,155],"31":[2,155],"52":[1,118],"60":[2,155],"63":[1,134],"81":[2,155],"86":[2,155],"96":[2,155],"101":[2,155],"109":[2,155],"111":132,"112":[2,155],"113":[2,155],"114":[2,155],"117":[2,155],"121":[1,128],"123":[1,379],"130":[2,155],"131":[2,155],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,157],"4":[2,157],"30":[2,157],"31":[2,157],"52":[1,118],"60":[2,157],"63":[1,134],"81":[2,157],"86":[2,157],"96":[2,157],"101":[2,157],"109":[2,157],"111":132,"112":[2,157],"113":[1,380],"114":[2,157],"117":[2,157],"121":[1,128],"123":[2,157],"130":[2,157],"131":[2,157],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,156],"4":[2,156],"30":[2,156],"31":[2,156],"52":[1,118],"60":[2,156],"63":[1,134],"81":[2,156],"86":[2,156],"96":[2,156],"101":[2,156],"109":[2,156],"111":132,"112":[2,156],"113":[2,156],"114":[2,156],"117":[2,156],"121":[1,128],"123":[2,156],"130":[2,156],"131":[2,156],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"31":[1,381]},{"1":[2,163],"4":[2,163],"30":[2,163],"31":[2,163],"52":[2,163],"60":[2,163],"63":[2,163],"81":[2,163],"86":[2,163],"96":[2,163],"101":[2,163],"109":[2,163],"112":[2,163],"113":[2,163],"114":[2,163],"117":[2,163],"121":[2,163],"123":[2,163],"130":[2,163],"131":[2,163],"133":[2,163],"135":[2,163],"136":[2,163],"138":[2,163],"139":[2,163],"142":[2,163],"143":[2,163],"144":[2,163],"145":[2,163],"146":[2,163],"147":[2,163],"148":[2,163],"149":[2,163],"150":[2,163],"151":[2,163],"152":[2,163],"153":[2,163],"154":[2,163],"155":[2,163],"156":[2,163],"157":[2,163],"158":[2,163],"159":[2,163],"160":[2,163],"161":[2,163],"162":[2,163],"163":[2,163],"164":[2,163],"165":[2,163],"166":[2,163],"167":[2,163]},{"31":[2,167],"50":[2,167],"51":[2,167],"126":[2,167],"128":[2,167]},{"4":[2,127],"30":[2,127],"52":[1,118],"60":[2,127],"63":[1,134],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[1,351],"31":[1,382]},{"4":[2,104],"31":[2,104]},{"4":[2,101],"31":[2,101],"52":[1,118],"63":[1,134],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,116],"4":[2,116],"30":[2,116],"31":[2,116],"52":[2,116],"60":[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],"101":[2,116],"109":[2,116],"112":[2,116],"113":[2,116],"114":[2,116],"117":[2,116],"121":[2,116],"123":[2,116],"130":[2,116],"131":[2,116],"133":[2,116],"135":[2,116],"136":[2,116],"138":[2,116],"139":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"146":[2,116],"147":[2,116],"148":[2,116],"149":[2,116],"150":[2,116],"151":[2,116],"152":[2,116],"153":[2,116],"154":[2,116],"155":[2,116],"156":[2,116],"157":[2,116],"158":[2,116],"159":[2,116],"160":[2,116],"161":[2,116],"162":[2,116],"163":[2,116],"164":[2,116],"165":[2,116],"166":[2,116],"167":[2,116]},{"52":[1,118],"63":[1,134],"101":[1,383],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[1,321],"30":[1,322],"31":[1,384]},{"4":[1,329],"30":[1,330],"31":[1,385]},{"1":[2,118],"4":[2,118],"30":[2,118],"31":[2,118],"47":[2,118],"52":[2,118],"60":[2,118],"63":[2,118],"74":[2,118],"75":[2,118],"76":[2,118],"77":[2,118],"80":[2,118],"81":[2,118],"82":[2,118],"83":[2,118],"86":[2,118],"88":[2,118],"94":[2,118],"96":[2,118],"101":[2,118],"109":[2,118],"112":[2,118],"113":[2,118],"114":[2,118],"117":[2,118],"121":[2,118],"123":[2,118],"130":[2,118],"131":[2,118],"133":[2,118],"135":[2,118],"136":[2,118],"138":[2,118],"139":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"146":[2,118],"147":[2,118],"148":[2,118],"149":[2,118],"150":[2,118],"151":[2,118],"152":[2,118],"153":[2,118],"154":[2,118],"155":[2,118],"156":[2,118],"157":[2,118],"158":[2,118],"159":[2,118],"160":[2,118],"161":[2,118],"162":[2,118],"163":[2,118],"164":[2,118],"165":[2,118],"166":[2,118],"167":[2,118]},{"52":[1,118],"63":[1,134],"81":[1,386],"111":132,"112":[1,81],"114":[1,82],"117":[1,133],"121":[1,128],"130":[1,130],"131":[1,131],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"8":387,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":388,"9":164,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,161],"4":[2,161],"30":[2,161],"31":[2,161],"52":[2,161],"60":[2,161],"63":[2,161],"81":[2,161],"86":[2,161],"96":[2,161],"101":[2,161],"109":[2,161],"112":[2,161],"113":[2,161],"114":[2,161],"117":[2,161],"121":[2,161],"123":[2,161],"130":[2,161],"131":[2,161],"133":[2,161],"135":[2,161],"136":[2,161],"138":[2,161],"139":[2,161],"142":[2,161],"143":[2,161],"144":[2,161],"145":[2,161],"146":[2,161],"147":[2,161],"148":[2,161],"149":[2,161],"150":[2,161],"151":[2,161],"152":[2,161],"153":[2,161],"154":[2,161],"155":[2,161],"156":[2,161],"157":[2,161],"158":[2,161],"159":[2,161],"160":[2,161],"161":[2,161],"162":[2,161],"163":[2,161],"164":[2,161],"165":[2,161],"166":[2,161],"167":[2,161]},{"1":[2,99],"4":[2,99],"30":[2,99],"31":[2,99],"52":[2,99],"60":[2,99],"63":[2,99],"81":[2,99],"86":[2,99],"96":[2,99],"101":[2,99],"109":[2,99],"112":[2,99],"113":[2,99],"114":[2,99],"117":[2,99],"121":[2,99],"123":[2,99],"130":[2,99],"131":[2,99],"133":[2,99],"135":[2,99],"136":[2,99],"138":[2,99],"139":[2,99],"142":[2,99],"143":[2,99],"144":[2,99],"145":[2,99],"146":[2,99],"147":[2,99],"148":[2,99],"149":[2,99],"150":[2,99],"151":[2,99],"152":[2,99],"153":[2,99],"154":[2,99],"155":[2,99],"156":[2,99],"157":[2,99],"158":[2,99],"159":[2,99],"160":[2,99],"161":[2,99],"162":[2,99],"163":[2,99],"164":[2,99],"165":[2,99],"166":[2,99],"167":[2,99]},{"1":[2,117],"4":[2,117],"30":[2,117],"31":[2,117],"52":[2,117],"60":[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],"101":[2,117],"109":[2,117],"112":[2,117],"113":[2,117],"114":[2,117],"117":[2,117],"121":[2,117],"123":[2,117],"130":[2,117],"131":[2,117],"133":[2,117],"135":[2,117],"136":[2,117],"138":[2,117],"139":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"146":[2,117],"147":[2,117],"148":[2,117],"149":[2,117],"150":[2,117],"151":[2,117],"152":[2,117],"153":[2,117],"154":[2,117],"155":[2,117],"156":[2,117],"157":[2,117],"158":[2,117],"159":[2,117],"160":[2,117],"161":[2,117],"162":[2,117],"163":[2,117],"164":[2,117],"165":[2,117],"166":[2,117],"167":[2,117]},{"4":[2,125],"30":[2,125],"31":[2,125],"60":[2,125],"96":[2,125],"101":[2,125]},{"4":[2,95],"30":[2,95],"31":[2,95],"60":[2,95],"86":[2,95]},{"1":[2,119],"4":[2,119],"30":[2,119],"31":[2,119],"47":[2,119],"52":[2,119],"60":[2,119],"63":[2,119],"74":[2,119],"75":[2,119],"76":[2,119],"77":[2,119],"80":[2,119],"81":[2,119],"82":[2,119],"83":[2,119],"86":[2,119],"88":[2,119],"94":[2,119],"96":[2,119],"101":[2,119],"109":[2,119],"112":[2,119],"113":[2,119],"114":[2,119],"117":[2,119],"121":[2,119],"123":[2,119],"130":[2,119],"131":[2,119],"133":[2,119],"135":[2,119],"136":[2,119],"138":[2,119],"139":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"146":[2,119],"147":[2,119],"148":[2,119],"149":[2,119],"150":[2,119],"151":[2,119],"152":[2,119],"153":[2,119],"154":[2,119],"155":[2,119],"156":[2,119],"157":[2,119],"158":[2,119],"159":[2,119],"160":[2,119],"161":[2,119],"162":[2,119],"163":[2,119],"164":[2,119],"165":[2,119],"166":[2,119],"167":[2,119]},{"1":[2,158],"4":[2,158],"30":[2,158],"31":[2,158],"52":[1,118],"60":[2,158],"63":[1,134],"81":[2,158],"86":[2,158],"96":[2,158],"101":[2,158],"109":[2,158],"111":132,"112":[2,158],"113":[2,158],"114":[2,158],"117":[2,158],"121":[1,128],"123":[2,158],"130":[2,158],"131":[2,158],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,159],"4":[2,159],"30":[2,159],"31":[2,159],"52":[1,118],"60":[2,159],"63":[1,134],"81":[2,159],"86":[2,159],"96":[2,159],"101":[2,159],"109":[2,159],"111":132,"112":[2,159],"113":[2,159],"114":[2,159],"117":[2,159],"121":[1,128],"123":[2,159],"130":[2,159],"131":[2,159],"133":[1,129],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]}], +table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[1,6],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[3]},{"1":[2,2],"28":92,"50":[1,57],"51":[1,58]},{"1":[2,3],"4":[1,93]},{"4":[1,94]},{"1":[2,5],"4":[2,5],"31":[2,5]},{"5":95,"7":5,"8":7,"9":8,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"31":[1,96],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,8],"4":[2,8],"31":[2,8],"52":[1,118],"63":[1,135],"109":[2,8],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,9],"4":[2,9],"31":[2,9],"109":[2,9],"111":138,"112":[1,81],"114":[1,82],"117":[1,139],"130":[1,136],"131":[1,137]},{"1":[2,14],"4":[2,14],"30":[2,14],"31":[2,14],"52":[2,14],"60":[2,14],"63":[2,14],"65":141,"74":[1,143],"75":[1,144],"76":[1,145],"77":[1,146],"78":147,"79":148,"80":[1,149],"81":[2,14],"82":[1,150],"83":[1,151],"86":[2,14],"93":140,"94":[1,142],"96":[2,14],"101":[2,14],"109":[2,14],"112":[2,14],"113":[2,14],"114":[2,14],"117":[2,14],"121":[2,14],"122":[2,14],"123":[2,14],"130":[2,14],"131":[2,14],"133":[2,14],"135":[2,14],"136":[2,14],"138":[2,14],"139":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[2,14],"148":[2,14],"149":[2,14],"150":[2,14],"151":[2,14],"152":[2,14],"153":[2,14],"154":[2,14],"155":[2,14],"156":[2,14],"157":[2,14],"158":[2,14],"159":[2,14],"160":[2,14],"161":[2,14],"162":[2,14],"163":[2,14],"164":[2,14],"165":[2,14],"166":[2,14],"167":[2,14]},{"1":[2,15],"4":[2,15],"30":[2,15],"31":[2,15],"52":[2,15],"60":[2,15],"63":[2,15],"81":[2,15],"86":[2,15],"96":[2,15],"101":[2,15],"109":[2,15],"112":[2,15],"113":[2,15],"114":[2,15],"117":[2,15],"121":[2,15],"122":[2,15],"123":[2,15],"130":[2,15],"131":[2,15],"133":[2,15],"135":[2,15],"136":[2,15],"138":[2,15],"139":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[2,15],"149":[2,15],"150":[2,15],"151":[2,15],"152":[2,15],"153":[2,15],"154":[2,15],"155":[2,15],"156":[2,15],"157":[2,15],"158":[2,15],"159":[2,15],"160":[2,15],"161":[2,15],"162":[2,15],"163":[2,15],"164":[2,15],"165":[2,15],"166":[2,15],"167":[2,15]},{"1":[2,16],"4":[2,16],"30":[2,16],"31":[2,16],"52":[2,16],"60":[2,16],"63":[2,16],"81":[2,16],"86":[2,16],"96":[2,16],"101":[2,16],"109":[2,16],"112":[2,16],"113":[2,16],"114":[2,16],"117":[2,16],"121":[2,16],"122":[2,16],"123":[2,16],"130":[2,16],"131":[2,16],"133":[2,16],"135":[2,16],"136":[2,16],"138":[2,16],"139":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"148":[2,16],"149":[2,16],"150":[2,16],"151":[2,16],"152":[2,16],"153":[2,16],"154":[2,16],"155":[2,16],"156":[2,16],"157":[2,16],"158":[2,16],"159":[2,16],"160":[2,16],"161":[2,16],"162":[2,16],"163":[2,16],"164":[2,16],"165":[2,16],"166":[2,16],"167":[2,16]},{"1":[2,17],"4":[2,17],"30":[2,17],"31":[2,17],"52":[2,17],"60":[2,17],"63":[2,17],"81":[2,17],"86":[2,17],"96":[2,17],"101":[2,17],"109":[2,17],"112":[2,17],"113":[2,17],"114":[2,17],"117":[2,17],"121":[2,17],"122":[2,17],"123":[2,17],"130":[2,17],"131":[2,17],"133":[2,17],"135":[2,17],"136":[2,17],"138":[2,17],"139":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"148":[2,17],"149":[2,17],"150":[2,17],"151":[2,17],"152":[2,17],"153":[2,17],"154":[2,17],"155":[2,17],"156":[2,17],"157":[2,17],"158":[2,17],"159":[2,17],"160":[2,17],"161":[2,17],"162":[2,17],"163":[2,17],"164":[2,17],"165":[2,17],"166":[2,17],"167":[2,17]},{"1":[2,18],"4":[2,18],"30":[2,18],"31":[2,18],"52":[2,18],"60":[2,18],"63":[2,18],"81":[2,18],"86":[2,18],"96":[2,18],"101":[2,18],"109":[2,18],"112":[2,18],"113":[2,18],"114":[2,18],"117":[2,18],"121":[2,18],"122":[2,18],"123":[2,18],"130":[2,18],"131":[2,18],"133":[2,18],"135":[2,18],"136":[2,18],"138":[2,18],"139":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"148":[2,18],"149":[2,18],"150":[2,18],"151":[2,18],"152":[2,18],"153":[2,18],"154":[2,18],"155":[2,18],"156":[2,18],"157":[2,18],"158":[2,18],"159":[2,18],"160":[2,18],"161":[2,18],"162":[2,18],"163":[2,18],"164":[2,18],"165":[2,18],"166":[2,18],"167":[2,18]},{"1":[2,19],"4":[2,19],"30":[2,19],"31":[2,19],"52":[2,19],"60":[2,19],"63":[2,19],"81":[2,19],"86":[2,19],"96":[2,19],"101":[2,19],"109":[2,19],"112":[2,19],"113":[2,19],"114":[2,19],"117":[2,19],"121":[2,19],"122":[2,19],"123":[2,19],"130":[2,19],"131":[2,19],"133":[2,19],"135":[2,19],"136":[2,19],"138":[2,19],"139":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"148":[2,19],"149":[2,19],"150":[2,19],"151":[2,19],"152":[2,19],"153":[2,19],"154":[2,19],"155":[2,19],"156":[2,19],"157":[2,19],"158":[2,19],"159":[2,19],"160":[2,19],"161":[2,19],"162":[2,19],"163":[2,19],"164":[2,19],"165":[2,19],"166":[2,19],"167":[2,19]},{"1":[2,20],"4":[2,20],"30":[2,20],"31":[2,20],"52":[2,20],"60":[2,20],"63":[2,20],"81":[2,20],"86":[2,20],"96":[2,20],"101":[2,20],"109":[2,20],"112":[2,20],"113":[2,20],"114":[2,20],"117":[2,20],"121":[2,20],"122":[2,20],"123":[2,20],"130":[2,20],"131":[2,20],"133":[2,20],"135":[2,20],"136":[2,20],"138":[2,20],"139":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"148":[2,20],"149":[2,20],"150":[2,20],"151":[2,20],"152":[2,20],"153":[2,20],"154":[2,20],"155":[2,20],"156":[2,20],"157":[2,20],"158":[2,20],"159":[2,20],"160":[2,20],"161":[2,20],"162":[2,20],"163":[2,20],"164":[2,20],"165":[2,20],"166":[2,20],"167":[2,20]},{"1":[2,21],"4":[2,21],"30":[2,21],"31":[2,21],"52":[2,21],"60":[2,21],"63":[2,21],"81":[2,21],"86":[2,21],"96":[2,21],"101":[2,21],"109":[2,21],"112":[2,21],"113":[2,21],"114":[2,21],"117":[2,21],"121":[2,21],"122":[2,21],"123":[2,21],"130":[2,21],"131":[2,21],"133":[2,21],"135":[2,21],"136":[2,21],"138":[2,21],"139":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"148":[2,21],"149":[2,21],"150":[2,21],"151":[2,21],"152":[2,21],"153":[2,21],"154":[2,21],"155":[2,21],"156":[2,21],"157":[2,21],"158":[2,21],"159":[2,21],"160":[2,21],"161":[2,21],"162":[2,21],"163":[2,21],"164":[2,21],"165":[2,21],"166":[2,21],"167":[2,21]},{"1":[2,22],"4":[2,22],"30":[2,22],"31":[2,22],"52":[2,22],"60":[2,22],"63":[2,22],"81":[2,22],"86":[2,22],"96":[2,22],"101":[2,22],"109":[2,22],"112":[2,22],"113":[2,22],"114":[2,22],"117":[2,22],"121":[2,22],"122":[2,22],"123":[2,22],"130":[2,22],"131":[2,22],"133":[2,22],"135":[2,22],"136":[2,22],"138":[2,22],"139":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"148":[2,22],"149":[2,22],"150":[2,22],"151":[2,22],"152":[2,22],"153":[2,22],"154":[2,22],"155":[2,22],"156":[2,22],"157":[2,22],"158":[2,22],"159":[2,22],"160":[2,22],"161":[2,22],"162":[2,22],"163":[2,22],"164":[2,22],"165":[2,22],"166":[2,22],"167":[2,22]},{"1":[2,23],"4":[2,23],"30":[2,23],"31":[2,23],"52":[2,23],"60":[2,23],"63":[2,23],"81":[2,23],"86":[2,23],"96":[2,23],"101":[2,23],"109":[2,23],"112":[2,23],"113":[2,23],"114":[2,23],"117":[2,23],"121":[2,23],"122":[2,23],"123":[2,23],"130":[2,23],"131":[2,23],"133":[2,23],"135":[2,23],"136":[2,23],"138":[2,23],"139":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"148":[2,23],"149":[2,23],"150":[2,23],"151":[2,23],"152":[2,23],"153":[2,23],"154":[2,23],"155":[2,23],"156":[2,23],"157":[2,23],"158":[2,23],"159":[2,23],"160":[2,23],"161":[2,23],"162":[2,23],"163":[2,23],"164":[2,23],"165":[2,23],"166":[2,23],"167":[2,23]},{"1":[2,24],"4":[2,24],"30":[2,24],"31":[2,24],"52":[2,24],"60":[2,24],"63":[2,24],"81":[2,24],"86":[2,24],"96":[2,24],"101":[2,24],"109":[2,24],"112":[2,24],"113":[2,24],"114":[2,24],"117":[2,24],"121":[2,24],"122":[2,24],"123":[2,24],"130":[2,24],"131":[2,24],"133":[2,24],"135":[2,24],"136":[2,24],"138":[2,24],"139":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"148":[2,24],"149":[2,24],"150":[2,24],"151":[2,24],"152":[2,24],"153":[2,24],"154":[2,24],"155":[2,24],"156":[2,24],"157":[2,24],"158":[2,24],"159":[2,24],"160":[2,24],"161":[2,24],"162":[2,24],"163":[2,24],"164":[2,24],"165":[2,24],"166":[2,24],"167":[2,24]},{"1":[2,25],"4":[2,25],"30":[2,25],"31":[2,25],"52":[2,25],"60":[2,25],"63":[2,25],"81":[2,25],"86":[2,25],"96":[2,25],"101":[2,25],"109":[2,25],"112":[2,25],"113":[2,25],"114":[2,25],"117":[2,25],"121":[2,25],"122":[2,25],"123":[2,25],"130":[2,25],"131":[2,25],"133":[2,25],"135":[2,25],"136":[2,25],"138":[2,25],"139":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"148":[2,25],"149":[2,25],"150":[2,25],"151":[2,25],"152":[2,25],"153":[2,25],"154":[2,25],"155":[2,25],"156":[2,25],"157":[2,25],"158":[2,25],"159":[2,25],"160":[2,25],"161":[2,25],"162":[2,25],"163":[2,25],"164":[2,25],"165":[2,25],"166":[2,25],"167":[2,25]},{"1":[2,26],"4":[2,26],"30":[2,26],"31":[2,26],"52":[2,26],"60":[2,26],"63":[2,26],"81":[2,26],"86":[2,26],"96":[2,26],"101":[2,26],"109":[2,26],"112":[2,26],"113":[2,26],"114":[2,26],"117":[2,26],"121":[2,26],"122":[2,26],"123":[2,26],"130":[2,26],"131":[2,26],"133":[2,26],"135":[2,26],"136":[2,26],"138":[2,26],"139":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"148":[2,26],"149":[2,26],"150":[2,26],"151":[2,26],"152":[2,26],"153":[2,26],"154":[2,26],"155":[2,26],"156":[2,26],"157":[2,26],"158":[2,26],"159":[2,26],"160":[2,26],"161":[2,26],"162":[2,26],"163":[2,26],"164":[2,26],"165":[2,26],"166":[2,26],"167":[2,26]},{"1":[2,27],"4":[2,27],"30":[2,27],"31":[2,27],"52":[2,27],"60":[2,27],"63":[2,27],"81":[2,27],"86":[2,27],"96":[2,27],"101":[2,27],"109":[2,27],"112":[2,27],"113":[2,27],"114":[2,27],"117":[2,27],"121":[2,27],"122":[2,27],"123":[2,27],"130":[2,27],"131":[2,27],"133":[2,27],"135":[2,27],"136":[2,27],"138":[2,27],"139":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"148":[2,27],"149":[2,27],"150":[2,27],"151":[2,27],"152":[2,27],"153":[2,27],"154":[2,27],"155":[2,27],"156":[2,27],"157":[2,27],"158":[2,27],"159":[2,27],"160":[2,27],"161":[2,27],"162":[2,27],"163":[2,27],"164":[2,27],"165":[2,27],"166":[2,27],"167":[2,27]},{"1":[2,28],"4":[2,28],"30":[2,28],"31":[2,28],"52":[2,28],"60":[2,28],"63":[2,28],"81":[2,28],"86":[2,28],"96":[2,28],"101":[2,28],"109":[2,28],"112":[2,28],"113":[2,28],"114":[2,28],"117":[2,28],"121":[2,28],"122":[2,28],"123":[2,28],"130":[2,28],"131":[2,28],"133":[2,28],"135":[2,28],"136":[2,28],"138":[2,28],"139":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"148":[2,28],"149":[2,28],"150":[2,28],"151":[2,28],"152":[2,28],"153":[2,28],"154":[2,28],"155":[2,28],"156":[2,28],"157":[2,28],"158":[2,28],"159":[2,28],"160":[2,28],"161":[2,28],"162":[2,28],"163":[2,28],"164":[2,28],"165":[2,28],"166":[2,28],"167":[2,28]},{"1":[2,29],"4":[2,29],"30":[2,29],"31":[2,29],"52":[2,29],"60":[2,29],"63":[2,29],"81":[2,29],"86":[2,29],"96":[2,29],"101":[2,29],"109":[2,29],"112":[2,29],"113":[2,29],"114":[2,29],"117":[2,29],"121":[2,29],"122":[2,29],"123":[2,29],"130":[2,29],"131":[2,29],"133":[2,29],"135":[2,29],"136":[2,29],"138":[2,29],"139":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"148":[2,29],"149":[2,29],"150":[2,29],"151":[2,29],"152":[2,29],"153":[2,29],"154":[2,29],"155":[2,29],"156":[2,29],"157":[2,29],"158":[2,29],"159":[2,29],"160":[2,29],"161":[2,29],"162":[2,29],"163":[2,29],"164":[2,29],"165":[2,29],"166":[2,29],"167":[2,29]},{"1":[2,10],"4":[2,10],"31":[2,10],"109":[2,10],"112":[2,10],"114":[2,10],"117":[2,10],"130":[2,10],"131":[2,10]},{"1":[2,11],"4":[2,11],"31":[2,11],"109":[2,11],"112":[2,11],"114":[2,11],"117":[2,11],"130":[2,11],"131":[2,11]},{"1":[2,12],"4":[2,12],"31":[2,12],"109":[2,12],"112":[2,12],"114":[2,12],"117":[2,12],"130":[2,12],"131":[2,12]},{"1":[2,13],"4":[2,13],"31":[2,13],"109":[2,13],"112":[2,13],"114":[2,13],"117":[2,13],"130":[2,13],"131":[2,13]},{"1":[2,75],"4":[2,75],"30":[2,75],"31":[2,75],"47":[1,152],"52":[2,75],"60":[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],"101":[2,75],"109":[2,75],"112":[2,75],"113":[2,75],"114":[2,75],"117":[2,75],"121":[2,75],"122":[2,75],"123":[2,75],"130":[2,75],"131":[2,75],"133":[2,75],"135":[2,75],"136":[2,75],"138":[2,75],"139":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75],"162":[2,75],"163":[2,75],"164":[2,75],"165":[2,75],"166":[2,75],"167":[2,75]},{"1":[2,76],"4":[2,76],"30":[2,76],"31":[2,76],"52":[2,76],"60":[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],"101":[2,76],"109":[2,76],"112":[2,76],"113":[2,76],"114":[2,76],"117":[2,76],"121":[2,76],"122":[2,76],"123":[2,76],"130":[2,76],"131":[2,76],"133":[2,76],"135":[2,76],"136":[2,76],"138":[2,76],"139":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76],"162":[2,76],"163":[2,76],"164":[2,76],"165":[2,76],"166":[2,76],"167":[2,76]},{"1":[2,77],"4":[2,77],"30":[2,77],"31":[2,77],"52":[2,77],"60":[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],"101":[2,77],"109":[2,77],"112":[2,77],"113":[2,77],"114":[2,77],"117":[2,77],"121":[2,77],"122":[2,77],"123":[2,77],"130":[2,77],"131":[2,77],"133":[2,77],"135":[2,77],"136":[2,77],"138":[2,77],"139":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77],"151":[2,77],"152":[2,77],"153":[2,77],"154":[2,77],"155":[2,77],"156":[2,77],"157":[2,77],"158":[2,77],"159":[2,77],"160":[2,77],"161":[2,77],"162":[2,77],"163":[2,77],"164":[2,77],"165":[2,77],"166":[2,77],"167":[2,77]},{"1":[2,78],"4":[2,78],"30":[2,78],"31":[2,78],"52":[2,78],"60":[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],"101":[2,78],"109":[2,78],"112":[2,78],"113":[2,78],"114":[2,78],"117":[2,78],"121":[2,78],"122":[2,78],"123":[2,78],"130":[2,78],"131":[2,78],"133":[2,78],"135":[2,78],"136":[2,78],"138":[2,78],"139":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78],"151":[2,78],"152":[2,78],"153":[2,78],"154":[2,78],"155":[2,78],"156":[2,78],"157":[2,78],"158":[2,78],"159":[2,78],"160":[2,78],"161":[2,78],"162":[2,78],"163":[2,78],"164":[2,78],"165":[2,78],"166":[2,78],"167":[2,78]},{"1":[2,79],"4":[2,79],"30":[2,79],"31":[2,79],"52":[2,79],"60":[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],"101":[2,79],"109":[2,79],"112":[2,79],"113":[2,79],"114":[2,79],"117":[2,79],"121":[2,79],"122":[2,79],"123":[2,79],"130":[2,79],"131":[2,79],"133":[2,79],"135":[2,79],"136":[2,79],"138":[2,79],"139":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79],"151":[2,79],"152":[2,79],"153":[2,79],"154":[2,79],"155":[2,79],"156":[2,79],"157":[2,79],"158":[2,79],"159":[2,79],"160":[2,79],"161":[2,79],"162":[2,79],"163":[2,79],"164":[2,79],"165":[2,79],"166":[2,79],"167":[2,79]},{"1":[2,80],"4":[2,80],"30":[2,80],"31":[2,80],"52":[2,80],"60":[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],"101":[2,80],"109":[2,80],"112":[2,80],"113":[2,80],"114":[2,80],"117":[2,80],"121":[2,80],"122":[2,80],"123":[2,80],"130":[2,80],"131":[2,80],"133":[2,80],"135":[2,80],"136":[2,80],"138":[2,80],"139":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80],"151":[2,80],"152":[2,80],"153":[2,80],"154":[2,80],"155":[2,80],"156":[2,80],"157":[2,80],"158":[2,80],"159":[2,80],"160":[2,80],"161":[2,80],"162":[2,80],"163":[2,80],"164":[2,80],"165":[2,80],"166":[2,80],"167":[2,80]},{"1":[2,105],"4":[2,105],"30":[2,105],"31":[2,105],"52":[2,105],"60":[2,105],"63":[2,105],"65":154,"74":[1,143],"75":[1,144],"76":[1,145],"77":[1,146],"78":147,"79":148,"80":[1,149],"81":[2,105],"82":[1,150],"83":[1,151],"86":[2,105],"93":153,"94":[1,142],"96":[2,105],"101":[2,105],"109":[2,105],"112":[2,105],"113":[2,105],"114":[2,105],"117":[2,105],"121":[2,105],"122":[2,105],"123":[2,105],"130":[2,105],"131":[2,105],"133":[2,105],"135":[2,105],"136":[2,105],"138":[2,105],"139":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"148":[2,105],"149":[2,105],"150":[2,105],"151":[2,105],"152":[2,105],"153":[2,105],"154":[2,105],"155":[2,105],"156":[2,105],"157":[2,105],"158":[2,105],"159":[2,105],"160":[2,105],"161":[2,105],"162":[2,105],"163":[2,105],"164":[2,105],"165":[2,105],"166":[2,105],"167":[2,105]},{"14":156,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":157,"64":158,"66":155,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"98":[1,75],"99":[1,76],"100":[1,74],"108":[1,73]},{"1":[2,107],"4":[2,107],"30":[2,107],"31":[2,107],"52":[2,107],"60":[2,107],"63":[2,107],"81":[2,107],"86":[2,107],"96":[2,107],"101":[2,107],"109":[2,107],"112":[2,107],"113":[2,107],"114":[2,107],"117":[2,107],"121":[2,107],"122":[2,107],"123":[2,107],"130":[2,107],"131":[2,107],"133":[2,107],"135":[2,107],"136":[2,107],"138":[2,107],"139":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"148":[2,107],"149":[2,107],"150":[2,107],"151":[2,107],"152":[2,107],"153":[2,107],"154":[2,107],"155":[2,107],"156":[2,107],"157":[2,107],"158":[2,107],"159":[2,107],"160":[2,107],"161":[2,107],"162":[2,107],"163":[2,107],"164":[2,107],"165":[2,107],"166":[2,107],"167":[2,107]},{"54":159,"55":[2,62],"60":[2,62],"61":160,"62":[1,161]},{"4":[1,163],"6":162,"30":[1,6]},{"8":164,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":166,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":167,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":168,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":169,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":170,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":171,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":172,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":173,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,174],"4":[2,174],"30":[2,174],"31":[2,174],"52":[2,174],"60":[2,174],"63":[2,174],"81":[2,174],"86":[2,174],"96":[2,174],"101":[2,174],"109":[2,174],"112":[2,174],"113":[2,174],"114":[2,174],"117":[2,174],"121":[2,174],"122":[2,174],"123":[2,174],"130":[2,174],"131":[2,174],"133":[2,174],"135":[2,174],"136":[2,174],"138":[2,174],"139":[2,174],"142":[2,174],"143":[2,174],"144":[2,174],"145":[2,174],"146":[2,174],"147":[2,174],"148":[2,174],"149":[2,174],"150":[2,174],"151":[2,174],"152":[2,174],"153":[2,174],"154":[2,174],"155":[2,174],"156":[2,174],"157":[2,174],"158":[2,174],"159":[2,174],"160":[2,174],"161":[2,174],"162":[2,174],"163":[2,174],"164":[2,174],"165":[2,174],"166":[2,174],"167":[2,174]},{"4":[1,163],"6":174,"30":[1,6]},{"4":[1,163],"6":175,"30":[1,6]},{"1":[2,142],"4":[2,142],"30":[2,142],"31":[2,142],"52":[2,142],"60":[2,142],"63":[2,142],"81":[2,142],"86":[2,142],"96":[2,142],"101":[2,142],"109":[2,142],"112":[2,142],"113":[2,142],"114":[2,142],"117":[2,142],"121":[2,142],"122":[2,142],"123":[2,142],"130":[2,142],"131":[2,142],"133":[2,142],"135":[2,142],"136":[2,142],"138":[2,142],"139":[2,142],"142":[2,142],"143":[2,142],"144":[2,142],"145":[2,142],"146":[2,142],"147":[2,142],"148":[2,142],"149":[2,142],"150":[2,142],"151":[2,142],"152":[2,142],"153":[2,142],"154":[2,142],"155":[2,142],"156":[2,142],"157":[2,142],"158":[2,142],"159":[2,142],"160":[2,142],"161":[2,142],"162":[2,142],"163":[2,142],"164":[2,142],"165":[2,142],"166":[2,142],"167":[2,142]},{"32":178,"33":[1,91],"68":179,"69":180,"84":[1,86],"100":[1,181],"118":176,"120":177},{"8":182,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[1,183],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,72],"4":[2,72],"30":[2,72],"31":[2,72],"47":[2,72],"52":[2,72],"60":[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":[1,184],"94":[2,72],"96":[2,72],"101":[2,72],"109":[2,72],"112":[2,72],"113":[2,72],"114":[2,72],"117":[2,72],"121":[2,72],"122":[2,72],"123":[2,72],"130":[2,72],"131":[2,72],"133":[2,72],"135":[2,72],"136":[2,72],"138":[2,72],"139":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72],"162":[2,72],"163":[2,72],"164":[2,72],"165":[2,72],"166":[2,72],"167":[2,72]},{"14":156,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":157,"64":185,"66":186,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"98":[1,75],"99":[1,76],"100":[1,74],"108":[1,73]},{"1":[2,53],"4":[2,53],"30":[2,53],"31":[2,53],"50":[2,53],"51":[2,53],"52":[2,53],"60":[2,53],"63":[2,53],"81":[2,53],"86":[2,53],"96":[2,53],"101":[2,53],"105":[2,53],"106":[2,53],"109":[2,53],"112":[2,53],"113":[2,53],"114":[2,53],"117":[2,53],"121":[2,53],"122":[2,53],"123":[2,53],"126":[2,53],"128":[2,53],"130":[2,53],"131":[2,53],"133":[2,53],"135":[2,53],"136":[2,53],"138":[2,53],"139":[2,53],"142":[2,53],"143":[2,53],"144":[2,53],"145":[2,53],"146":[2,53],"147":[2,53],"148":[2,53],"149":[2,53],"150":[2,53],"151":[2,53],"152":[2,53],"153":[2,53],"154":[2,53],"155":[2,53],"156":[2,53],"157":[2,53],"158":[2,53],"159":[2,53],"160":[2,53],"161":[2,53],"162":[2,53],"163":[2,53],"164":[2,53],"165":[2,53],"166":[2,53],"167":[2,53]},{"1":[2,54],"4":[2,54],"30":[2,54],"31":[2,54],"50":[2,54],"51":[2,54],"52":[2,54],"60":[2,54],"63":[2,54],"81":[2,54],"86":[2,54],"96":[2,54],"101":[2,54],"105":[2,54],"106":[2,54],"109":[2,54],"112":[2,54],"113":[2,54],"114":[2,54],"117":[2,54],"121":[2,54],"122":[2,54],"123":[2,54],"126":[2,54],"128":[2,54],"130":[2,54],"131":[2,54],"133":[2,54],"135":[2,54],"136":[2,54],"138":[2,54],"139":[2,54],"142":[2,54],"143":[2,54],"144":[2,54],"145":[2,54],"146":[2,54],"147":[2,54],"148":[2,54],"149":[2,54],"150":[2,54],"151":[2,54],"152":[2,54],"153":[2,54],"154":[2,54],"155":[2,54],"156":[2,54],"157":[2,54],"158":[2,54],"159":[2,54],"160":[2,54],"161":[2,54],"162":[2,54],"163":[2,54],"164":[2,54],"165":[2,54],"166":[2,54],"167":[2,54]},{"1":[2,134],"4":[2,134],"30":[2,134],"31":[2,134],"52":[2,134],"60":[2,134],"63":[2,134],"81":[2,134],"86":[2,134],"96":[2,134],"101":[2,134],"109":[2,134],"112":[2,134],"113":[2,134],"114":[2,134],"117":[2,134],"121":[2,134],"122":[2,134],"123":[2,134],"130":[2,134],"131":[2,134],"133":[2,134],"135":[2,134],"136":[2,134],"138":[2,134],"139":[2,134],"142":[2,134],"143":[2,134],"144":[2,134],"145":[2,134],"146":[2,134],"147":[2,134],"148":[2,134],"149":[2,134],"150":[2,134],"151":[2,134],"152":[2,134],"153":[2,134],"154":[2,134],"155":[2,134],"156":[2,134],"157":[2,134],"158":[2,134],"159":[2,134],"160":[2,134],"161":[2,134],"162":[2,134],"163":[2,134],"164":[2,134],"165":[2,134],"166":[2,134],"167":[2,134]},{"1":[2,52],"4":[2,52],"8":187,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"31":[2,52],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"109":[2,52],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[2,52],"131":[2,52],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":188,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,73],"4":[2,73],"30":[2,73],"31":[2,73],"47":[2,73],"52":[2,73],"60":[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],"94":[2,73],"96":[2,73],"101":[2,73],"109":[2,73],"112":[2,73],"113":[2,73],"114":[2,73],"117":[2,73],"121":[2,73],"122":[2,73],"123":[2,73],"130":[2,73],"131":[2,73],"133":[2,73],"135":[2,73],"136":[2,73],"138":[2,73],"139":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73],"164":[2,73],"165":[2,73],"166":[2,73],"167":[2,73]},{"1":[2,74],"4":[2,74],"30":[2,74],"31":[2,74],"47":[2,74],"52":[2,74],"60":[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],"94":[2,74],"96":[2,74],"101":[2,74],"109":[2,74],"112":[2,74],"113":[2,74],"114":[2,74],"117":[2,74],"121":[2,74],"122":[2,74],"123":[2,74],"130":[2,74],"131":[2,74],"133":[2,74],"135":[2,74],"136":[2,74],"138":[2,74],"139":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74],"151":[2,74],"152":[2,74],"153":[2,74],"154":[2,74],"155":[2,74],"156":[2,74],"157":[2,74],"158":[2,74],"159":[2,74],"160":[2,74],"161":[2,74],"162":[2,74],"163":[2,74],"164":[2,74],"165":[2,74],"166":[2,74],"167":[2,74]},{"1":[2,36],"4":[2,36],"30":[2,36],"31":[2,36],"52":[2,36],"60":[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],"101":[2,36],"109":[2,36],"112":[2,36],"113":[2,36],"114":[2,36],"117":[2,36],"121":[2,36],"122":[2,36],"123":[2,36],"130":[2,36],"131":[2,36],"133":[2,36],"135":[2,36],"136":[2,36],"138":[2,36],"139":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36],"151":[2,36],"152":[2,36],"153":[2,36],"154":[2,36],"155":[2,36],"156":[2,36],"157":[2,36],"158":[2,36],"159":[2,36],"160":[2,36],"161":[2,36],"162":[2,36],"163":[2,36],"164":[2,36],"165":[2,36],"166":[2,36],"167":[2,36]},{"1":[2,37],"4":[2,37],"30":[2,37],"31":[2,37],"52":[2,37],"60":[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],"101":[2,37],"109":[2,37],"112":[2,37],"113":[2,37],"114":[2,37],"117":[2,37],"121":[2,37],"122":[2,37],"123":[2,37],"130":[2,37],"131":[2,37],"133":[2,37],"135":[2,37],"136":[2,37],"138":[2,37],"139":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37],"151":[2,37],"152":[2,37],"153":[2,37],"154":[2,37],"155":[2,37],"156":[2,37],"157":[2,37],"158":[2,37],"159":[2,37],"160":[2,37],"161":[2,37],"162":[2,37],"163":[2,37],"164":[2,37],"165":[2,37],"166":[2,37],"167":[2,37]},{"1":[2,38],"4":[2,38],"30":[2,38],"31":[2,38],"52":[2,38],"60":[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],"101":[2,38],"109":[2,38],"112":[2,38],"113":[2,38],"114":[2,38],"117":[2,38],"121":[2,38],"122":[2,38],"123":[2,38],"130":[2,38],"131":[2,38],"133":[2,38],"135":[2,38],"136":[2,38],"138":[2,38],"139":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38],"151":[2,38],"152":[2,38],"153":[2,38],"154":[2,38],"155":[2,38],"156":[2,38],"157":[2,38],"158":[2,38],"159":[2,38],"160":[2,38],"161":[2,38],"162":[2,38],"163":[2,38],"164":[2,38],"165":[2,38],"166":[2,38],"167":[2,38]},{"1":[2,39],"4":[2,39],"30":[2,39],"31":[2,39],"52":[2,39],"60":[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],"101":[2,39],"109":[2,39],"112":[2,39],"113":[2,39],"114":[2,39],"117":[2,39],"121":[2,39],"122":[2,39],"123":[2,39],"130":[2,39],"131":[2,39],"133":[2,39],"135":[2,39],"136":[2,39],"138":[2,39],"139":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39],"151":[2,39],"152":[2,39],"153":[2,39],"154":[2,39],"155":[2,39],"156":[2,39],"157":[2,39],"158":[2,39],"159":[2,39],"160":[2,39],"161":[2,39],"162":[2,39],"163":[2,39],"164":[2,39],"165":[2,39],"166":[2,39],"167":[2,39]},{"1":[2,40],"4":[2,40],"30":[2,40],"31":[2,40],"52":[2,40],"60":[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],"101":[2,40],"109":[2,40],"112":[2,40],"113":[2,40],"114":[2,40],"117":[2,40],"121":[2,40],"122":[2,40],"123":[2,40],"130":[2,40],"131":[2,40],"133":[2,40],"135":[2,40],"136":[2,40],"138":[2,40],"139":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40],"151":[2,40],"152":[2,40],"153":[2,40],"154":[2,40],"155":[2,40],"156":[2,40],"157":[2,40],"158":[2,40],"159":[2,40],"160":[2,40],"161":[2,40],"162":[2,40],"163":[2,40],"164":[2,40],"165":[2,40],"166":[2,40],"167":[2,40]},{"1":[2,41],"4":[2,41],"30":[2,41],"31":[2,41],"52":[2,41],"60":[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],"101":[2,41],"109":[2,41],"112":[2,41],"113":[2,41],"114":[2,41],"117":[2,41],"121":[2,41],"122":[2,41],"123":[2,41],"130":[2,41],"131":[2,41],"133":[2,41],"135":[2,41],"136":[2,41],"138":[2,41],"139":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41],"151":[2,41],"152":[2,41],"153":[2,41],"154":[2,41],"155":[2,41],"156":[2,41],"157":[2,41],"158":[2,41],"159":[2,41],"160":[2,41],"161":[2,41],"162":[2,41],"163":[2,41],"164":[2,41],"165":[2,41],"166":[2,41],"167":[2,41]},{"1":[2,42],"4":[2,42],"30":[2,42],"31":[2,42],"52":[2,42],"60":[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],"101":[2,42],"109":[2,42],"112":[2,42],"113":[2,42],"114":[2,42],"117":[2,42],"121":[2,42],"122":[2,42],"123":[2,42],"130":[2,42],"131":[2,42],"133":[2,42],"135":[2,42],"136":[2,42],"138":[2,42],"139":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"148":[2,42],"149":[2,42],"150":[2,42],"151":[2,42],"152":[2,42],"153":[2,42],"154":[2,42],"155":[2,42],"156":[2,42],"157":[2,42],"158":[2,42],"159":[2,42],"160":[2,42],"161":[2,42],"162":[2,42],"163":[2,42],"164":[2,42],"165":[2,42],"166":[2,42],"167":[2,42]},{"1":[2,43],"4":[2,43],"30":[2,43],"31":[2,43],"52":[2,43],"60":[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],"101":[2,43],"109":[2,43],"112":[2,43],"113":[2,43],"114":[2,43],"117":[2,43],"121":[2,43],"122":[2,43],"123":[2,43],"130":[2,43],"131":[2,43],"133":[2,43],"135":[2,43],"136":[2,43],"138":[2,43],"139":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43],"148":[2,43],"149":[2,43],"150":[2,43],"151":[2,43],"152":[2,43],"153":[2,43],"154":[2,43],"155":[2,43],"156":[2,43],"157":[2,43],"158":[2,43],"159":[2,43],"160":[2,43],"161":[2,43],"162":[2,43],"163":[2,43],"164":[2,43],"165":[2,43],"166":[2,43],"167":[2,43]},{"1":[2,44],"4":[2,44],"30":[2,44],"31":[2,44],"52":[2,44],"60":[2,44],"63":[2,44],"74":[2,44],"75":[2,44],"76":[2,44],"77":[2,44],"80":[2,44],"81":[2,44],"82":[2,44],"83":[2,44],"86":[2,44],"94":[2,44],"96":[2,44],"101":[2,44],"109":[2,44],"112":[2,44],"113":[2,44],"114":[2,44],"117":[2,44],"121":[2,44],"122":[2,44],"123":[2,44],"130":[2,44],"131":[2,44],"133":[2,44],"135":[2,44],"136":[2,44],"138":[2,44],"139":[2,44],"142":[2,44],"143":[2,44],"144":[2,44],"145":[2,44],"146":[2,44],"147":[2,44],"148":[2,44],"149":[2,44],"150":[2,44],"151":[2,44],"152":[2,44],"153":[2,44],"154":[2,44],"155":[2,44],"156":[2,44],"157":[2,44],"158":[2,44],"159":[2,44],"160":[2,44],"161":[2,44],"162":[2,44],"163":[2,44],"164":[2,44],"165":[2,44],"166":[2,44],"167":[2,44]},{"7":189,"8":7,"9":8,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"4":[2,121],"8":190,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[2,121],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"60":[2,121],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"95":191,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"101":[2,121],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,113],"4":[2,113],"30":[2,113],"31":[2,113],"52":[2,113],"60":[2,113],"63":[2,113],"74":[2,113],"75":[2,113],"76":[2,113],"77":[2,113],"80":[2,113],"81":[2,113],"82":[2,113],"83":[2,113],"86":[2,113],"94":[2,113],"96":[2,113],"101":[2,113],"109":[2,113],"112":[2,113],"113":[2,113],"114":[2,113],"117":[2,113],"121":[2,113],"122":[2,113],"123":[2,113],"130":[2,113],"131":[2,113],"133":[2,113],"135":[2,113],"136":[2,113],"138":[2,113],"139":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"147":[2,113],"148":[2,113],"149":[2,113],"150":[2,113],"151":[2,113],"152":[2,113],"153":[2,113],"154":[2,113],"155":[2,113],"156":[2,113],"157":[2,113],"158":[2,113],"159":[2,113],"160":[2,113],"161":[2,113],"162":[2,113],"163":[2,113],"164":[2,113],"165":[2,113],"166":[2,113],"167":[2,113]},{"1":[2,114],"4":[2,114],"30":[2,114],"31":[2,114],"32":192,"33":[1,91],"52":[2,114],"60":[2,114],"63":[2,114],"74":[2,114],"75":[2,114],"76":[2,114],"77":[2,114],"80":[2,114],"81":[2,114],"82":[2,114],"83":[2,114],"86":[2,114],"94":[2,114],"96":[2,114],"101":[2,114],"109":[2,114],"112":[2,114],"113":[2,114],"114":[2,114],"117":[2,114],"121":[2,114],"122":[2,114],"123":[2,114],"130":[2,114],"131":[2,114],"133":[2,114],"135":[2,114],"136":[2,114],"138":[2,114],"139":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"147":[2,114],"148":[2,114],"149":[2,114],"150":[2,114],"151":[2,114],"152":[2,114],"153":[2,114],"154":[2,114],"155":[2,114],"156":[2,114],"157":[2,114],"158":[2,114],"159":[2,114],"160":[2,114],"161":[2,114],"162":[2,114],"163":[2,114],"164":[2,114],"165":[2,114],"166":[2,114],"167":[2,114]},{"94":[1,193]},{"4":[2,58],"30":[2,58]},{"4":[2,59],"30":[2,59]},{"1":[2,172],"4":[2,172],"30":[2,172],"31":[2,172],"52":[2,172],"60":[2,172],"63":[2,172],"81":[2,172],"86":[2,172],"96":[2,172],"101":[2,172],"109":[2,172],"112":[2,172],"113":[2,172],"114":[2,172],"117":[2,172],"121":[2,172],"122":[2,172],"123":[2,172],"126":[1,194],"130":[2,172],"131":[2,172],"133":[2,172],"135":[2,172],"136":[2,172],"138":[2,172],"139":[2,172],"142":[2,172],"143":[2,172],"144":[2,172],"145":[2,172],"146":[2,172],"147":[2,172],"148":[2,172],"149":[2,172],"150":[2,172],"151":[2,172],"152":[2,172],"153":[2,172],"154":[2,172],"155":[2,172],"156":[2,172],"157":[2,172],"158":[2,172],"159":[2,172],"160":[2,172],"161":[2,172],"162":[2,172],"163":[2,172],"164":[2,172],"165":[2,172],"166":[2,172],"167":[2,172]},{"8":195,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":196,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"4":[1,163],"6":197,"8":198,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[1,6],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,68],"4":[2,68],"30":[2,68],"31":[2,68],"47":[2,68],"52":[2,68],"60":[2,68],"63":[2,68],"74":[2,68],"75":[2,68],"76":[2,68],"77":[2,68],"80":[2,68],"81":[2,68],"82":[2,68],"83":[2,68],"86":[2,68],"88":[2,68],"94":[2,68],"96":[2,68],"101":[2,68],"109":[2,68],"112":[2,68],"113":[2,68],"114":[2,68],"117":[2,68],"121":[2,68],"122":[2,68],"123":[2,68],"130":[2,68],"131":[2,68],"133":[2,68],"135":[2,68],"136":[2,68],"138":[2,68],"139":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68],"162":[2,68],"163":[2,68],"164":[2,68],"165":[2,68],"166":[2,68],"167":[2,68]},{"1":[2,71],"4":[2,71],"30":[2,71],"31":[2,71],"47":[2,71],"52":[2,71],"60":[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],"101":[2,71],"109":[2,71],"112":[2,71],"113":[2,71],"114":[2,71],"117":[2,71],"121":[2,71],"122":[2,71],"123":[2,71],"130":[2,71],"131":[2,71],"133":[2,71],"135":[2,71],"136":[2,71],"138":[2,71],"139":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71],"162":[2,71],"163":[2,71],"164":[2,71],"165":[2,71],"166":[2,71],"167":[2,71]},{"4":[2,91],"28":203,"30":[2,91],"32":201,"33":[1,91],"34":202,"35":[1,87],"36":[1,88],"48":200,"50":[1,57],"51":[1,58],"60":[2,91],"85":199,"86":[2,91]},{"1":[2,34],"4":[2,34],"30":[2,34],"31":[2,34],"47":[2,34],"52":[2,34],"60":[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],"101":[2,34],"109":[2,34],"112":[2,34],"113":[2,34],"114":[2,34],"117":[2,34],"121":[2,34],"122":[2,34],"123":[2,34],"130":[2,34],"131":[2,34],"133":[2,34],"135":[2,34],"136":[2,34],"138":[2,34],"139":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34],"151":[2,34],"152":[2,34],"153":[2,34],"154":[2,34],"155":[2,34],"156":[2,34],"157":[2,34],"158":[2,34],"159":[2,34],"160":[2,34],"161":[2,34],"162":[2,34],"163":[2,34],"164":[2,34],"165":[2,34],"166":[2,34],"167":[2,34]},{"1":[2,35],"4":[2,35],"30":[2,35],"31":[2,35],"47":[2,35],"52":[2,35],"60":[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],"101":[2,35],"109":[2,35],"112":[2,35],"113":[2,35],"114":[2,35],"117":[2,35],"121":[2,35],"122":[2,35],"123":[2,35],"130":[2,35],"131":[2,35],"133":[2,35],"135":[2,35],"136":[2,35],"138":[2,35],"139":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35],"151":[2,35],"152":[2,35],"153":[2,35],"154":[2,35],"155":[2,35],"156":[2,35],"157":[2,35],"158":[2,35],"159":[2,35],"160":[2,35],"161":[2,35],"162":[2,35],"163":[2,35],"164":[2,35],"165":[2,35],"166":[2,35],"167":[2,35]},{"8":204,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":205,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,33],"4":[2,33],"30":[2,33],"31":[2,33],"47":[2,33],"52":[2,33],"60":[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],"88":[2,33],"94":[2,33],"96":[2,33],"101":[2,33],"109":[2,33],"112":[2,33],"113":[2,33],"114":[2,33],"117":[2,33],"121":[2,33],"122":[2,33],"123":[2,33],"130":[2,33],"131":[2,33],"133":[2,33],"135":[2,33],"136":[2,33],"138":[2,33],"139":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33],"151":[2,33],"152":[2,33],"153":[2,33],"154":[2,33],"155":[2,33],"156":[2,33],"157":[2,33],"158":[2,33],"159":[2,33],"160":[2,33],"161":[2,33],"162":[2,33],"163":[2,33],"164":[2,33],"165":[2,33],"166":[2,33],"167":[2,33]},{"1":[2,32],"4":[2,32],"30":[2,32],"31":[2,32],"50":[2,32],"51":[2,32],"52":[2,32],"60":[2,32],"63":[2,32],"81":[2,32],"86":[2,32],"96":[2,32],"101":[2,32],"105":[2,32],"106":[2,32],"109":[2,32],"112":[2,32],"113":[2,32],"114":[2,32],"117":[2,32],"121":[2,32],"122":[2,32],"123":[2,32],"126":[2,32],"128":[2,32],"130":[2,32],"131":[2,32],"133":[2,32],"135":[2,32],"136":[2,32],"138":[2,32],"139":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32],"151":[2,32],"152":[2,32],"153":[2,32],"154":[2,32],"155":[2,32],"156":[2,32],"157":[2,32],"158":[2,32],"159":[2,32],"160":[2,32],"161":[2,32],"162":[2,32],"163":[2,32],"164":[2,32],"165":[2,32],"166":[2,32],"167":[2,32]},{"1":[2,7],"4":[2,7],"7":206,"8":7,"9":8,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"31":[2,7],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,4]},{"4":[1,93],"31":[1,207]},{"1":[2,31],"4":[2,31],"30":[2,31],"31":[2,31],"50":[2,31],"51":[2,31],"52":[2,31],"60":[2,31],"63":[2,31],"81":[2,31],"86":[2,31],"96":[2,31],"101":[2,31],"105":[2,31],"106":[2,31],"109":[2,31],"112":[2,31],"113":[2,31],"114":[2,31],"117":[2,31],"121":[2,31],"122":[2,31],"123":[2,31],"126":[2,31],"128":[2,31],"130":[2,31],"131":[2,31],"133":[2,31],"135":[2,31],"136":[2,31],"138":[2,31],"139":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31],"149":[2,31],"150":[2,31],"151":[2,31],"152":[2,31],"153":[2,31],"154":[2,31],"155":[2,31],"156":[2,31],"157":[2,31],"158":[2,31],"159":[2,31],"160":[2,31],"161":[2,31],"162":[2,31],"163":[2,31],"164":[2,31],"165":[2,31],"166":[2,31],"167":[2,31]},{"1":[2,188],"4":[2,188],"30":[2,188],"31":[2,188],"52":[2,188],"60":[2,188],"63":[2,188],"81":[2,188],"86":[2,188],"96":[2,188],"101":[2,188],"109":[2,188],"112":[2,188],"113":[2,188],"114":[2,188],"117":[2,188],"121":[2,188],"122":[2,188],"123":[2,188],"130":[2,188],"131":[2,188],"133":[2,188],"135":[2,188],"136":[2,188],"138":[2,188],"139":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"147":[2,188],"148":[2,188],"149":[2,188],"150":[2,188],"151":[2,188],"152":[2,188],"153":[2,188],"154":[2,188],"155":[2,188],"156":[2,188],"157":[2,188],"158":[2,188],"159":[2,188],"160":[2,188],"161":[2,188],"162":[2,188],"163":[2,188],"164":[2,188],"165":[2,188],"166":[2,188],"167":[2,188]},{"1":[2,189],"4":[2,189],"30":[2,189],"31":[2,189],"52":[2,189],"60":[2,189],"63":[2,189],"81":[2,189],"86":[2,189],"96":[2,189],"101":[2,189],"109":[2,189],"112":[2,189],"113":[2,189],"114":[2,189],"117":[2,189],"121":[2,189],"122":[2,189],"123":[2,189],"130":[2,189],"131":[2,189],"133":[2,189],"135":[2,189],"136":[2,189],"138":[2,189],"139":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"148":[2,189],"149":[2,189],"150":[2,189],"151":[2,189],"152":[2,189],"153":[2,189],"154":[2,189],"155":[2,189],"156":[2,189],"157":[2,189],"158":[2,189],"159":[2,189],"160":[2,189],"161":[2,189],"162":[2,189],"163":[2,189],"164":[2,189],"165":[2,189],"166":[2,189],"167":[2,189]},{"8":208,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":209,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":210,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":211,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":212,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":213,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":214,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":215,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":216,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":217,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":218,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":219,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":220,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":221,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":222,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":223,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":224,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":225,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":226,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,55],"4":[2,55],"8":227,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[2,55],"31":[2,55],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"52":[2,55],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"60":[2,55],"63":[2,55],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"81":[2,55],"84":[1,86],"86":[2,55],"87":[1,56],"91":[1,36],"92":37,"96":[2,55],"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"101":[2,55],"103":[1,50],"107":[1,61],"108":[1,73],"109":[2,55],"110":[1,59],"111":51,"112":[2,55],"113":[2,55],"114":[2,55],"115":52,"116":[1,83],"117":[2,55],"121":[2,55],"122":[2,55],"123":[2,55],"124":[1,54],"129":80,"130":[2,55],"131":[2,55],"132":49,"133":[2,55],"134":[1,41],"135":[2,55],"136":[2,55],"137":[1,44],"138":[2,55],"139":[2,55],"140":[1,47],"141":[1,48],"142":[2,55],"143":[2,55],"144":[2,55],"145":[2,55],"146":[2,55],"147":[2,55],"148":[2,55],"149":[2,55],"150":[2,55],"151":[2,55],"152":[2,55],"153":[2,55],"154":[2,55],"155":[2,55],"156":[2,55],"157":[2,55],"158":[2,55],"159":[2,55],"160":[2,55],"161":[2,55],"162":[2,55],"163":[2,55],"164":[2,55],"165":[2,55],"166":[2,55],"167":[2,55]},{"8":228,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":229,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":230,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":231,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":232,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":233,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":234,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":235,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":236,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":237,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":238,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"121":[1,239],"122":[1,240]},{"8":241,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":242,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,141],"4":[2,141],"30":[2,141],"31":[2,141],"52":[2,141],"60":[2,141],"63":[2,141],"81":[2,141],"86":[2,141],"96":[2,141],"101":[2,141],"109":[2,141],"112":[2,141],"113":[2,141],"114":[2,141],"117":[2,141],"121":[2,141],"122":[2,141],"123":[2,141],"130":[2,141],"131":[2,141],"133":[2,141],"135":[2,141],"136":[2,141],"138":[2,141],"139":[2,141],"142":[2,141],"143":[2,141],"144":[2,141],"145":[2,141],"146":[2,141],"147":[2,141],"148":[2,141],"149":[2,141],"150":[2,141],"151":[2,141],"152":[2,141],"153":[2,141],"154":[2,141],"155":[2,141],"156":[2,141],"157":[2,141],"158":[2,141],"159":[2,141],"160":[2,141],"161":[2,141],"162":[2,141],"163":[2,141],"164":[2,141],"165":[2,141],"166":[2,141],"167":[2,141]},{"32":178,"33":[1,91],"68":179,"69":180,"84":[1,86],"100":[1,181],"118":243,"120":177},{"63":[1,244]},{"8":245,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":246,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,140],"4":[2,140],"30":[2,140],"31":[2,140],"52":[2,140],"60":[2,140],"63":[2,140],"81":[2,140],"86":[2,140],"96":[2,140],"101":[2,140],"109":[2,140],"112":[2,140],"113":[2,140],"114":[2,140],"117":[2,140],"121":[2,140],"122":[2,140],"123":[2,140],"130":[2,140],"131":[2,140],"133":[2,140],"135":[2,140],"136":[2,140],"138":[2,140],"139":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140],"148":[2,140],"149":[2,140],"150":[2,140],"151":[2,140],"152":[2,140],"153":[2,140],"154":[2,140],"155":[2,140],"156":[2,140],"157":[2,140],"158":[2,140],"159":[2,140],"160":[2,140],"161":[2,140],"162":[2,140],"163":[2,140],"164":[2,140],"165":[2,140],"166":[2,140],"167":[2,140]},{"32":178,"33":[1,91],"68":179,"69":180,"84":[1,86],"100":[1,181],"118":247,"120":177},{"1":[2,109],"4":[2,109],"30":[2,109],"31":[2,109],"52":[2,109],"60":[2,109],"63":[2,109],"74":[2,109],"75":[2,109],"76":[2,109],"77":[2,109],"80":[2,109],"81":[2,109],"82":[2,109],"83":[2,109],"86":[2,109],"94":[2,109],"96":[2,109],"101":[2,109],"109":[2,109],"112":[2,109],"113":[2,109],"114":[2,109],"117":[2,109],"121":[2,109],"122":[2,109],"123":[2,109],"130":[2,109],"131":[2,109],"133":[2,109],"135":[2,109],"136":[2,109],"138":[2,109],"139":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"147":[2,109],"148":[2,109],"149":[2,109],"150":[2,109],"151":[2,109],"152":[2,109],"153":[2,109],"154":[2,109],"155":[2,109],"156":[2,109],"157":[2,109],"158":[2,109],"159":[2,109],"160":[2,109],"161":[2,109],"162":[2,109],"163":[2,109],"164":[2,109],"165":[2,109],"166":[2,109],"167":[2,109]},{"1":[2,69],"4":[2,69],"30":[2,69],"31":[2,69],"47":[2,69],"52":[2,69],"60":[2,69],"63":[2,69],"74":[2,69],"75":[2,69],"76":[2,69],"77":[2,69],"80":[2,69],"81":[2,69],"82":[2,69],"83":[2,69],"86":[2,69],"88":[2,69],"94":[2,69],"96":[2,69],"101":[2,69],"109":[2,69],"112":[2,69],"113":[2,69],"114":[2,69],"117":[2,69],"121":[2,69],"122":[2,69],"123":[2,69],"130":[2,69],"131":[2,69],"133":[2,69],"135":[2,69],"136":[2,69],"138":[2,69],"139":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69],"162":[2,69],"163":[2,69],"164":[2,69],"165":[2,69],"166":[2,69],"167":[2,69]},{"4":[2,121],"8":249,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[2,121],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"60":[2,121],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"95":248,"96":[2,121],"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"32":250,"33":[1,91]},{"32":251,"33":[1,91]},{"1":[2,83],"4":[2,83],"30":[2,83],"31":[2,83],"47":[2,83],"52":[2,83],"60":[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],"88":[2,83],"94":[2,83],"96":[2,83],"101":[2,83],"109":[2,83],"112":[2,83],"113":[2,83],"114":[2,83],"117":[2,83],"121":[2,83],"122":[2,83],"123":[2,83],"130":[2,83],"131":[2,83],"133":[2,83],"135":[2,83],"136":[2,83],"138":[2,83],"139":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83],"151":[2,83],"152":[2,83],"153":[2,83],"154":[2,83],"155":[2,83],"156":[2,83],"157":[2,83],"158":[2,83],"159":[2,83],"160":[2,83],"161":[2,83],"162":[2,83],"163":[2,83],"164":[2,83],"165":[2,83],"166":[2,83],"167":[2,83]},{"32":252,"33":[1,91]},{"1":[2,85],"4":[2,85],"30":[2,85],"31":[2,85],"47":[2,85],"52":[2,85],"60":[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],"101":[2,85],"109":[2,85],"112":[2,85],"113":[2,85],"114":[2,85],"117":[2,85],"121":[2,85],"122":[2,85],"123":[2,85],"130":[2,85],"131":[2,85],"133":[2,85],"135":[2,85],"136":[2,85],"138":[2,85],"139":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"148":[2,85],"149":[2,85],"150":[2,85],"151":[2,85],"152":[2,85],"153":[2,85],"154":[2,85],"155":[2,85],"156":[2,85],"157":[2,85],"158":[2,85],"159":[2,85],"160":[2,85],"161":[2,85],"162":[2,85],"163":[2,85],"164":[2,85],"165":[2,85],"166":[2,85],"167":[2,85]},{"1":[2,86],"4":[2,86],"30":[2,86],"31":[2,86],"47":[2,86],"52":[2,86],"60":[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],"101":[2,86],"109":[2,86],"112":[2,86],"113":[2,86],"114":[2,86],"117":[2,86],"121":[2,86],"122":[2,86],"123":[2,86],"130":[2,86],"131":[2,86],"133":[2,86],"135":[2,86],"136":[2,86],"138":[2,86],"139":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"148":[2,86],"149":[2,86],"150":[2,86],"151":[2,86],"152":[2,86],"153":[2,86],"154":[2,86],"155":[2,86],"156":[2,86],"157":[2,86],"158":[2,86],"159":[2,86],"160":[2,86],"161":[2,86],"162":[2,86],"163":[2,86],"164":[2,86],"165":[2,86],"166":[2,86],"167":[2,86]},{"8":253,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"78":254,"80":[1,255],"82":[1,150],"83":[1,151]},{"78":256,"80":[1,255],"82":[1,150],"83":[1,151]},{"8":257,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,110],"4":[2,110],"30":[2,110],"31":[2,110],"52":[2,110],"60":[2,110],"63":[2,110],"74":[2,110],"75":[2,110],"76":[2,110],"77":[2,110],"80":[2,110],"81":[2,110],"82":[2,110],"83":[2,110],"86":[2,110],"94":[2,110],"96":[2,110],"101":[2,110],"109":[2,110],"112":[2,110],"113":[2,110],"114":[2,110],"117":[2,110],"121":[2,110],"122":[2,110],"123":[2,110],"130":[2,110],"131":[2,110],"133":[2,110],"135":[2,110],"136":[2,110],"138":[2,110],"139":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"147":[2,110],"148":[2,110],"149":[2,110],"150":[2,110],"151":[2,110],"152":[2,110],"153":[2,110],"154":[2,110],"155":[2,110],"156":[2,110],"157":[2,110],"158":[2,110],"159":[2,110],"160":[2,110],"161":[2,110],"162":[2,110],"163":[2,110],"164":[2,110],"165":[2,110],"166":[2,110],"167":[2,110]},{"1":[2,70],"4":[2,70],"30":[2,70],"31":[2,70],"47":[2,70],"52":[2,70],"60":[2,70],"63":[2,70],"74":[2,70],"75":[2,70],"76":[2,70],"77":[2,70],"80":[2,70],"81":[2,70],"82":[2,70],"83":[2,70],"86":[2,70],"88":[2,70],"94":[2,70],"96":[2,70],"101":[2,70],"109":[2,70],"112":[2,70],"113":[2,70],"114":[2,70],"117":[2,70],"121":[2,70],"122":[2,70],"123":[2,70],"130":[2,70],"131":[2,70],"133":[2,70],"135":[2,70],"136":[2,70],"138":[2,70],"139":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70],"164":[2,70],"165":[2,70],"166":[2,70],"167":[2,70]},{"1":[2,106],"4":[2,106],"30":[2,106],"31":[2,106],"52":[2,106],"60":[2,106],"63":[2,106],"65":154,"74":[1,143],"75":[1,144],"76":[1,145],"77":[1,146],"78":147,"79":148,"80":[1,149],"81":[2,106],"82":[1,150],"83":[1,151],"86":[2,106],"93":153,"94":[1,142],"96":[2,106],"101":[2,106],"109":[2,106],"112":[2,106],"113":[2,106],"114":[2,106],"117":[2,106],"121":[2,106],"122":[2,106],"123":[2,106],"130":[2,106],"131":[2,106],"133":[2,106],"135":[2,106],"136":[2,106],"138":[2,106],"139":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"148":[2,106],"149":[2,106],"150":[2,106],"151":[2,106],"152":[2,106],"153":[2,106],"154":[2,106],"155":[2,106],"156":[2,106],"157":[2,106],"158":[2,106],"159":[2,106],"160":[2,106],"161":[2,106],"162":[2,106],"163":[2,106],"164":[2,106],"165":[2,106],"166":[2,106],"167":[2,106]},{"65":141,"74":[1,143],"75":[1,144],"76":[1,145],"77":[1,146],"78":147,"79":148,"80":[1,149],"82":[1,150],"83":[1,151],"93":140,"94":[1,142]},{"1":[2,75],"4":[2,75],"30":[2,75],"31":[2,75],"52":[2,75],"60":[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],"101":[2,75],"109":[2,75],"112":[2,75],"113":[2,75],"114":[2,75],"117":[2,75],"121":[2,75],"122":[2,75],"123":[2,75],"130":[2,75],"131":[2,75],"133":[2,75],"135":[2,75],"136":[2,75],"138":[2,75],"139":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75],"162":[2,75],"163":[2,75],"164":[2,75],"165":[2,75],"166":[2,75],"167":[2,75]},{"1":[2,72],"4":[2,72],"30":[2,72],"31":[2,72],"52":[2,72],"60":[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],"94":[2,72],"96":[2,72],"101":[2,72],"109":[2,72],"112":[2,72],"113":[2,72],"114":[2,72],"117":[2,72],"121":[2,72],"122":[2,72],"123":[2,72],"130":[2,72],"131":[2,72],"133":[2,72],"135":[2,72],"136":[2,72],"138":[2,72],"139":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72],"162":[2,72],"163":[2,72],"164":[2,72],"165":[2,72],"166":[2,72],"167":[2,72]},{"55":[1,258],"60":[1,259]},{"55":[2,63],"60":[2,63],"63":[1,260]},{"55":[2,65],"60":[2,65],"63":[2,65]},{"1":[2,57],"4":[2,57],"30":[2,57],"31":[2,57],"52":[2,57],"60":[2,57],"63":[2,57],"81":[2,57],"86":[2,57],"96":[2,57],"101":[2,57],"109":[2,57],"112":[2,57],"113":[2,57],"114":[2,57],"117":[2,57],"121":[2,57],"122":[2,57],"123":[2,57],"130":[2,57],"131":[2,57],"133":[2,57],"135":[2,57],"136":[2,57],"138":[2,57],"139":[2,57],"142":[2,57],"143":[2,57],"144":[2,57],"145":[2,57],"146":[2,57],"147":[2,57],"148":[2,57],"149":[2,57],"150":[2,57],"151":[2,57],"152":[2,57],"153":[2,57],"154":[2,57],"155":[2,57],"156":[2,57],"157":[2,57],"158":[2,57],"159":[2,57],"160":[2,57],"161":[2,57],"162":[2,57],"163":[2,57],"164":[2,57],"165":[2,57],"166":[2,57],"167":[2,57]},{"28":92,"50":[1,57],"51":[1,58]},{"1":[2,179],"4":[2,179],"30":[2,179],"31":[2,179],"52":[1,118],"60":[2,179],"63":[2,179],"81":[2,179],"86":[2,179],"96":[2,179],"101":[2,179],"109":[2,179],"111":133,"112":[2,179],"113":[2,179],"114":[2,179],"117":[2,179],"121":[2,179],"122":[2,179],"123":[2,179],"130":[2,179],"131":[2,179],"135":[2,179],"136":[2,179],"142":[2,179],"143":[2,179],"144":[2,179],"145":[2,179],"146":[2,179],"147":[2,179],"148":[2,179],"149":[2,179],"150":[2,179],"151":[2,179],"152":[2,179],"153":[2,179],"154":[2,179],"155":[2,179],"156":[2,179],"157":[2,179],"158":[2,179],"159":[2,179],"160":[2,179],"161":[2,179],"162":[2,179],"163":[2,179],"164":[2,179],"165":[2,179],"166":[2,179],"167":[2,179]},{"111":138,"112":[1,81],"114":[1,82],"117":[1,139],"130":[1,136],"131":[1,137]},{"1":[2,180],"4":[2,180],"30":[2,180],"31":[2,180],"52":[1,118],"60":[2,180],"63":[2,180],"81":[2,180],"86":[2,180],"96":[2,180],"101":[2,180],"109":[2,180],"111":133,"112":[2,180],"113":[2,180],"114":[2,180],"117":[2,180],"121":[2,180],"122":[2,180],"123":[2,180],"130":[2,180],"131":[2,180],"135":[2,180],"136":[2,180],"142":[2,180],"143":[2,180],"144":[2,180],"145":[2,180],"146":[2,180],"147":[2,180],"148":[2,180],"149":[2,180],"150":[2,180],"151":[2,180],"152":[2,180],"153":[2,180],"154":[2,180],"155":[2,180],"156":[2,180],"157":[2,180],"158":[2,180],"159":[2,180],"160":[2,180],"161":[2,180],"162":[2,180],"163":[2,180],"164":[2,180],"165":[2,180],"166":[2,180],"167":[2,180]},{"1":[2,181],"4":[2,181],"30":[2,181],"31":[2,181],"52":[1,118],"60":[2,181],"63":[2,181],"81":[2,181],"86":[2,181],"96":[2,181],"101":[2,181],"109":[2,181],"111":133,"112":[2,181],"113":[2,181],"114":[2,181],"117":[2,181],"121":[2,181],"122":[2,181],"123":[2,181],"130":[2,181],"131":[2,181],"135":[2,181],"136":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"148":[2,181],"149":[2,181],"150":[2,181],"151":[2,181],"152":[2,181],"153":[2,181],"154":[2,181],"155":[2,181],"156":[2,181],"157":[2,181],"158":[2,181],"159":[2,181],"160":[2,181],"161":[2,181],"162":[2,181],"163":[2,181],"164":[2,181],"165":[2,181],"166":[2,181],"167":[2,181]},{"1":[2,182],"4":[2,182],"30":[2,182],"31":[2,182],"52":[1,118],"60":[2,182],"63":[2,182],"81":[2,182],"86":[2,182],"96":[2,182],"101":[2,182],"109":[2,182],"111":133,"112":[2,182],"113":[2,182],"114":[2,182],"117":[2,182],"121":[2,182],"122":[2,182],"123":[2,182],"130":[2,182],"131":[2,182],"135":[2,182],"136":[2,182],"142":[2,182],"143":[2,182],"144":[2,182],"145":[2,182],"146":[2,182],"147":[2,182],"148":[2,182],"149":[2,182],"150":[2,182],"151":[2,182],"152":[2,182],"153":[2,182],"154":[2,182],"155":[2,182],"156":[2,182],"157":[2,182],"158":[2,182],"159":[2,182],"160":[2,182],"161":[2,182],"162":[2,182],"163":[2,182],"164":[2,182],"165":[2,182],"166":[2,182],"167":[2,182]},{"1":[2,183],"4":[2,183],"30":[2,183],"31":[2,183],"52":[1,118],"60":[2,183],"63":[2,183],"81":[2,183],"86":[2,183],"96":[2,183],"101":[2,183],"109":[2,183],"111":133,"112":[2,183],"113":[2,183],"114":[2,183],"117":[2,183],"121":[2,183],"122":[2,183],"123":[2,183],"130":[2,183],"131":[2,183],"135":[2,183],"136":[2,183],"142":[2,183],"143":[2,183],"144":[2,183],"145":[2,183],"146":[2,183],"147":[2,183],"148":[2,183],"149":[2,183],"150":[2,183],"151":[2,183],"152":[2,183],"153":[2,183],"154":[2,183],"155":[2,183],"156":[2,183],"157":[2,183],"158":[2,183],"159":[2,183],"160":[2,183],"161":[2,183],"162":[2,183],"163":[2,183],"164":[2,183],"165":[2,183],"166":[2,183],"167":[2,183]},{"1":[2,184],"4":[2,184],"30":[2,184],"31":[2,184],"52":[1,118],"60":[2,184],"63":[2,184],"81":[2,184],"86":[2,184],"96":[2,184],"101":[2,184],"109":[2,184],"111":133,"112":[2,184],"113":[2,184],"114":[2,184],"117":[2,184],"121":[2,184],"122":[2,184],"123":[2,184],"130":[2,184],"131":[2,184],"135":[2,184],"136":[2,184],"142":[2,184],"143":[2,184],"144":[2,184],"145":[2,184],"146":[2,184],"147":[2,184],"148":[2,184],"149":[2,184],"150":[2,184],"151":[2,184],"152":[2,184],"153":[2,184],"154":[2,184],"155":[2,184],"156":[2,184],"157":[2,184],"158":[2,184],"159":[2,184],"160":[2,184],"161":[2,184],"162":[2,184],"163":[2,184],"164":[2,184],"165":[2,184],"166":[2,184],"167":[2,184]},{"1":[2,185],"4":[2,185],"30":[2,185],"31":[2,185],"52":[1,118],"60":[2,185],"63":[2,185],"81":[2,185],"86":[2,185],"96":[2,185],"101":[2,185],"109":[2,185],"111":133,"112":[2,185],"113":[2,185],"114":[2,185],"117":[2,185],"121":[2,185],"122":[2,185],"123":[2,185],"130":[2,185],"131":[2,185],"135":[2,185],"136":[2,185],"142":[2,185],"143":[2,185],"144":[2,185],"145":[2,185],"146":[2,185],"147":[2,185],"148":[2,185],"149":[2,185],"150":[2,185],"151":[2,185],"152":[2,185],"153":[2,185],"154":[2,185],"155":[2,185],"156":[2,185],"157":[2,185],"158":[2,185],"159":[2,185],"160":[2,185],"161":[2,185],"162":[2,185],"163":[2,185],"164":[2,185],"165":[2,185],"166":[2,185],"167":[2,185]},{"1":[2,186],"4":[2,186],"30":[2,186],"31":[2,186],"52":[1,118],"60":[2,186],"63":[2,186],"81":[2,186],"86":[2,186],"96":[2,186],"101":[2,186],"109":[2,186],"111":133,"112":[2,186],"113":[2,186],"114":[2,186],"117":[2,186],"121":[2,186],"122":[2,186],"123":[2,186],"130":[2,186],"131":[2,186],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[2,186],"156":[2,186],"157":[2,186],"158":[2,186],"159":[2,186],"160":[2,186],"161":[2,186],"162":[2,186],"163":[2,186],"164":[2,186],"165":[2,186],"166":[2,186],"167":[1,127]},{"1":[2,187],"4":[2,187],"30":[2,187],"31":[2,187],"52":[1,118],"60":[2,187],"63":[2,187],"81":[2,187],"86":[2,187],"96":[2,187],"101":[2,187],"109":[2,187],"111":133,"112":[2,187],"113":[2,187],"114":[2,187],"117":[2,187],"121":[2,187],"122":[2,187],"123":[2,187],"130":[2,187],"131":[2,187],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[2,187],"156":[2,187],"157":[2,187],"158":[2,187],"159":[2,187],"160":[2,187],"161":[2,187],"162":[2,187],"163":[2,187],"164":[2,187],"165":[2,187],"166":[2,187],"167":[1,127]},{"104":261,"105":[1,262],"106":[1,263]},{"1":[2,139],"4":[2,139],"30":[2,139],"31":[2,139],"52":[2,139],"60":[2,139],"63":[2,139],"81":[2,139],"86":[2,139],"96":[2,139],"101":[2,139],"109":[2,139],"112":[2,139],"113":[2,139],"114":[2,139],"117":[2,139],"121":[2,139],"122":[2,139],"123":[2,139],"130":[2,139],"131":[2,139],"133":[2,139],"135":[2,139],"136":[2,139],"138":[2,139],"139":[2,139],"142":[2,139],"143":[2,139],"144":[2,139],"145":[2,139],"146":[2,139],"147":[2,139],"148":[2,139],"149":[2,139],"150":[2,139],"151":[2,139],"152":[2,139],"153":[2,139],"154":[2,139],"155":[2,139],"156":[2,139],"157":[2,139],"158":[2,139],"159":[2,139],"160":[2,139],"161":[2,139],"162":[2,139],"163":[2,139],"164":[2,139],"165":[2,139],"166":[2,139],"167":[2,139]},{"119":264,"121":[1,265],"122":[1,266]},{"60":[1,267],"121":[2,151],"122":[2,151]},{"60":[2,148],"121":[2,148],"122":[2,148]},{"60":[2,149],"121":[2,149],"122":[2,149]},{"60":[2,150],"121":[2,150],"122":[2,150]},{"4":[2,121],"8":249,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[2,121],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"60":[2,121],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"95":191,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"101":[2,121],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"30":[1,268],"52":[1,118],"63":[1,135],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"28":272,"50":[1,57],"51":[1,58],"125":269,"127":270,"128":[1,271]},{"14":273,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":157,"64":158,"66":186,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"98":[1,75],"99":[1,76],"100":[1,74],"108":[1,73]},{"1":[2,96],"4":[2,96],"30":[1,275],"31":[2,96],"52":[2,96],"60":[2,96],"63":[2,96],"74":[2,72],"75":[2,72],"76":[2,72],"77":[2,72],"80":[2,72],"81":[2,96],"82":[2,72],"83":[2,72],"86":[2,96],"88":[1,274],"94":[2,72],"96":[2,96],"101":[2,96],"109":[2,96],"112":[2,96],"113":[2,96],"114":[2,96],"117":[2,96],"121":[2,96],"122":[2,96],"123":[2,96],"130":[2,96],"131":[2,96],"133":[2,96],"135":[2,96],"136":[2,96],"138":[2,96],"139":[2,96],"142":[2,96],"143":[2,96],"144":[2,96],"145":[2,96],"146":[2,96],"147":[2,96],"148":[2,96],"149":[2,96],"150":[2,96],"151":[2,96],"152":[2,96],"153":[2,96],"154":[2,96],"155":[2,96],"156":[2,96],"157":[2,96],"158":[2,96],"159":[2,96],"160":[2,96],"161":[2,96],"162":[2,96],"163":[2,96],"164":[2,96],"165":[2,96],"166":[2,96],"167":[2,96]},{"65":154,"74":[1,143],"75":[1,144],"76":[1,145],"77":[1,146],"78":147,"79":148,"80":[1,149],"82":[1,150],"83":[1,151],"93":153,"94":[1,142]},{"1":[2,51],"4":[2,51],"31":[2,51],"52":[1,118],"63":[1,135],"109":[2,51],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[2,51],"131":[2,51],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,132],"4":[2,132],"31":[2,132],"52":[1,118],"63":[1,135],"109":[2,132],"111":133,"112":[2,132],"114":[2,132],"117":[2,132],"121":[1,128],"122":[1,129],"130":[2,132],"131":[2,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"109":[1,276]},{"4":[2,122],"30":[2,122],"52":[1,118],"60":[2,122],"63":[1,277],"101":[2,122],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[2,60],"30":[2,60],"59":278,"60":[1,279],"101":[2,60]},{"1":[2,115],"4":[2,115],"30":[2,115],"31":[2,115],"47":[2,115],"52":[2,115],"60":[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],"88":[2,115],"94":[2,115],"96":[2,115],"101":[2,115],"109":[2,115],"112":[2,115],"113":[2,115],"114":[2,115],"117":[2,115],"121":[2,115],"122":[2,115],"123":[2,115],"130":[2,115],"131":[2,115],"133":[2,115],"135":[2,115],"136":[2,115],"138":[2,115],"139":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"147":[2,115],"148":[2,115],"149":[2,115],"150":[2,115],"151":[2,115],"152":[2,115],"153":[2,115],"154":[2,115],"155":[2,115],"156":[2,115],"157":[2,115],"158":[2,115],"159":[2,115],"160":[2,115],"161":[2,115],"162":[2,115],"163":[2,115],"164":[2,115],"165":[2,115],"166":[2,115],"167":[2,115]},{"4":[2,121],"8":249,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[2,121],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"60":[2,121],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"95":280,"96":[2,121],"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"4":[1,163],"6":281,"30":[1,6],"130":[1,282]},{"1":[2,135],"4":[2,135],"30":[2,135],"31":[2,135],"52":[1,118],"60":[2,135],"63":[1,135],"81":[2,135],"86":[2,135],"96":[2,135],"101":[2,135],"109":[2,135],"111":133,"112":[1,81],"113":[1,283],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"123":[2,135],"130":[2,135],"131":[2,135],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,137],"4":[2,137],"30":[2,137],"31":[2,137],"52":[1,118],"60":[2,137],"63":[1,135],"81":[2,137],"86":[2,137],"96":[2,137],"101":[2,137],"109":[2,137],"111":133,"112":[1,81],"113":[1,284],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"123":[2,137],"130":[2,137],"131":[2,137],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,143],"4":[2,143],"30":[2,143],"31":[2,143],"52":[2,143],"60":[2,143],"63":[2,143],"81":[2,143],"86":[2,143],"96":[2,143],"101":[2,143],"109":[2,143],"112":[2,143],"113":[2,143],"114":[2,143],"117":[2,143],"121":[2,143],"122":[2,143],"123":[2,143],"130":[2,143],"131":[2,143],"133":[2,143],"135":[2,143],"136":[2,143],"138":[2,143],"139":[2,143],"142":[2,143],"143":[2,143],"144":[2,143],"145":[2,143],"146":[2,143],"147":[2,143],"148":[2,143],"149":[2,143],"150":[2,143],"151":[2,143],"152":[2,143],"153":[2,143],"154":[2,143],"155":[2,143],"156":[2,143],"157":[2,143],"158":[2,143],"159":[2,143],"160":[2,143],"161":[2,143],"162":[2,143],"163":[2,143],"164":[2,143],"165":[2,143],"166":[2,143],"167":[2,143]},{"1":[2,144],"4":[2,144],"30":[2,144],"31":[2,144],"52":[1,118],"60":[2,144],"63":[1,135],"81":[2,144],"86":[2,144],"96":[2,144],"101":[2,144],"109":[2,144],"111":133,"112":[1,81],"113":[2,144],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"123":[2,144],"130":[2,144],"131":[2,144],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[2,60],"30":[2,60],"59":285,"60":[1,286],"86":[2,60]},{"4":[2,92],"30":[2,92],"31":[2,92],"60":[2,92],"86":[2,92]},{"4":[2,46],"30":[2,46],"31":[2,46],"47":[1,287],"60":[2,46],"86":[2,46]},{"4":[2,47],"30":[2,47],"31":[2,47],"47":[1,288],"60":[2,47],"86":[2,47]},{"4":[2,50],"30":[2,50],"31":[2,50],"60":[2,50],"86":[2,50]},{"4":[1,163],"6":289,"30":[1,6],"52":[1,118],"63":[1,135],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[1,163],"6":290,"30":[1,6],"52":[1,118],"63":[1,135],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,6],"4":[2,6],"31":[2,6]},{"1":[2,30],"4":[2,30],"30":[2,30],"31":[2,30],"50":[2,30],"51":[2,30],"52":[2,30],"60":[2,30],"63":[2,30],"81":[2,30],"86":[2,30],"96":[2,30],"101":[2,30],"105":[2,30],"106":[2,30],"109":[2,30],"112":[2,30],"113":[2,30],"114":[2,30],"117":[2,30],"121":[2,30],"122":[2,30],"123":[2,30],"126":[2,30],"128":[2,30],"130":[2,30],"131":[2,30],"133":[2,30],"135":[2,30],"136":[2,30],"138":[2,30],"139":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"148":[2,30],"149":[2,30],"150":[2,30],"151":[2,30],"152":[2,30],"153":[2,30],"154":[2,30],"155":[2,30],"156":[2,30],"157":[2,30],"158":[2,30],"159":[2,30],"160":[2,30],"161":[2,30],"162":[2,30],"163":[2,30],"164":[2,30],"165":[2,30],"166":[2,30],"167":[2,30]},{"1":[2,190],"4":[2,190],"30":[2,190],"31":[2,190],"52":[1,118],"60":[2,190],"63":[2,190],"81":[2,190],"86":[2,190],"96":[2,190],"101":[2,190],"109":[2,190],"111":133,"112":[2,190],"113":[2,190],"114":[2,190],"117":[2,190],"121":[2,190],"122":[2,190],"123":[2,190],"130":[2,190],"131":[2,190],"133":[1,130],"135":[2,190],"136":[2,190],"138":[1,97],"139":[1,98],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"148":[2,190],"149":[2,190],"150":[2,190],"151":[2,190],"152":[2,190],"153":[2,190],"154":[2,190],"155":[2,190],"156":[2,190],"157":[2,190],"158":[2,190],"159":[2,190],"160":[2,190],"161":[2,190],"162":[2,190],"163":[2,190],"164":[2,190],"165":[2,190],"166":[2,190],"167":[2,190]},{"1":[2,191],"4":[2,191],"30":[2,191],"31":[2,191],"52":[1,118],"60":[2,191],"63":[2,191],"81":[2,191],"86":[2,191],"96":[2,191],"101":[2,191],"109":[2,191],"111":133,"112":[2,191],"113":[2,191],"114":[2,191],"117":[2,191],"121":[2,191],"122":[2,191],"123":[2,191],"130":[2,191],"131":[2,191],"133":[1,130],"135":[2,191],"136":[2,191],"138":[1,97],"139":[1,98],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"148":[2,191],"149":[2,191],"150":[2,191],"151":[2,191],"152":[2,191],"153":[2,191],"154":[2,191],"155":[2,191],"156":[2,191],"157":[2,191],"158":[2,191],"159":[2,191],"160":[2,191],"161":[2,191],"162":[2,191],"163":[2,191],"164":[2,191],"165":[2,191],"166":[2,191],"167":[2,191]},{"1":[2,192],"4":[2,192],"30":[2,192],"31":[2,192],"52":[1,118],"60":[2,192],"63":[2,192],"81":[2,192],"86":[2,192],"96":[2,192],"101":[2,192],"109":[2,192],"111":133,"112":[2,192],"113":[2,192],"114":[2,192],"117":[2,192],"121":[2,192],"122":[2,192],"123":[2,192],"130":[2,192],"131":[2,192],"133":[1,130],"135":[2,192],"136":[2,192],"138":[1,97],"139":[1,98],"142":[2,192],"143":[2,192],"144":[2,192],"145":[2,192],"146":[2,192],"147":[2,192],"148":[2,192],"149":[2,192],"150":[2,192],"151":[2,192],"152":[2,192],"153":[2,192],"154":[2,192],"155":[2,192],"156":[2,192],"157":[2,192],"158":[2,192],"159":[2,192],"160":[2,192],"161":[2,192],"162":[2,192],"163":[2,192],"164":[2,192],"165":[2,192],"166":[2,192],"167":[2,192]},{"1":[2,193],"4":[2,193],"30":[2,193],"31":[2,193],"52":[1,118],"60":[2,193],"63":[2,193],"81":[2,193],"86":[2,193],"96":[2,193],"101":[2,193],"109":[2,193],"111":133,"112":[2,193],"113":[2,193],"114":[2,193],"117":[2,193],"121":[2,193],"122":[2,193],"123":[2,193],"130":[2,193],"131":[2,193],"133":[1,130],"135":[2,193],"136":[2,193],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[2,193],"146":[2,193],"147":[2,193],"148":[2,193],"149":[2,193],"150":[2,193],"151":[2,193],"152":[2,193],"153":[2,193],"154":[2,193],"155":[2,193],"156":[2,193],"157":[2,193],"158":[2,193],"159":[2,193],"160":[2,193],"161":[2,193],"162":[2,193],"163":[2,193],"164":[2,193],"165":[2,193],"166":[2,193],"167":[2,193]},{"1":[2,194],"4":[2,194],"30":[2,194],"31":[2,194],"52":[1,118],"60":[2,194],"63":[2,194],"81":[2,194],"86":[2,194],"96":[2,194],"101":[2,194],"109":[2,194],"111":133,"112":[2,194],"113":[2,194],"114":[2,194],"117":[2,194],"121":[2,194],"122":[2,194],"123":[2,194],"130":[2,194],"131":[2,194],"133":[1,130],"135":[2,194],"136":[2,194],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[2,194],"146":[2,194],"147":[2,194],"148":[2,194],"149":[2,194],"150":[2,194],"151":[2,194],"152":[2,194],"153":[2,194],"154":[2,194],"155":[2,194],"156":[2,194],"157":[2,194],"158":[2,194],"159":[2,194],"160":[2,194],"161":[2,194],"162":[2,194],"163":[2,194],"164":[2,194],"165":[2,194],"166":[2,194],"167":[2,194]},{"1":[2,195],"4":[2,195],"30":[2,195],"31":[2,195],"52":[1,118],"60":[2,195],"63":[2,195],"81":[2,195],"86":[2,195],"96":[2,195],"101":[2,195],"109":[2,195],"111":133,"112":[2,195],"113":[2,195],"114":[2,195],"117":[2,195],"121":[2,195],"122":[2,195],"123":[2,195],"130":[2,195],"131":[2,195],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[2,195],"146":[2,195],"147":[2,195],"148":[2,195],"149":[2,195],"150":[2,195],"151":[2,195],"152":[2,195],"153":[2,195],"154":[2,195],"155":[2,195],"156":[2,195],"157":[2,195],"158":[2,195],"159":[2,195],"160":[2,195],"161":[2,195],"162":[2,195],"163":[2,195],"164":[2,195],"165":[2,195],"166":[2,195],"167":[2,195]},{"1":[2,196],"4":[2,196],"30":[2,196],"31":[2,196],"52":[1,118],"60":[2,196],"63":[2,196],"81":[2,196],"86":[2,196],"96":[2,196],"101":[2,196],"109":[2,196],"111":133,"112":[2,196],"113":[2,196],"114":[2,196],"117":[2,196],"121":[2,196],"122":[2,196],"123":[2,196],"130":[2,196],"131":[2,196],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[2,196],"146":[2,196],"147":[2,196],"148":[2,196],"149":[2,196],"150":[2,196],"151":[2,196],"152":[2,196],"153":[2,196],"154":[2,196],"155":[2,196],"156":[2,196],"157":[2,196],"158":[2,196],"159":[2,196],"160":[2,196],"161":[2,196],"162":[2,196],"163":[2,196],"164":[2,196],"165":[2,196],"166":[2,196],"167":[2,196]},{"1":[2,197],"4":[2,197],"30":[2,197],"31":[2,197],"52":[1,118],"60":[2,197],"63":[2,197],"81":[2,197],"86":[2,197],"96":[2,197],"101":[2,197],"109":[2,197],"111":133,"112":[2,197],"113":[2,197],"114":[2,197],"117":[2,197],"121":[2,197],"122":[2,197],"123":[2,197],"130":[2,197],"131":[2,197],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[2,197],"146":[2,197],"147":[2,197],"148":[2,197],"149":[2,197],"150":[2,197],"151":[2,197],"152":[2,197],"153":[2,197],"154":[2,197],"155":[2,197],"156":[2,197],"157":[2,197],"158":[2,197],"159":[2,197],"160":[2,197],"161":[2,197],"162":[2,197],"163":[2,197],"164":[2,197],"165":[2,197],"166":[2,197],"167":[2,197]},{"1":[2,198],"4":[2,198],"30":[2,198],"31":[2,198],"52":[1,118],"60":[2,198],"63":[2,198],"81":[2,198],"86":[2,198],"96":[2,198],"101":[2,198],"109":[2,198],"111":133,"112":[2,198],"113":[2,198],"114":[2,198],"117":[2,198],"121":[2,198],"122":[2,198],"123":[2,198],"130":[2,198],"131":[2,198],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[2,198],"149":[2,198],"150":[2,198],"151":[2,198],"152":[2,198],"153":[2,198],"154":[2,198],"155":[2,198],"156":[2,198],"157":[2,198],"158":[2,198],"159":[2,198],"160":[2,198],"161":[2,198],"162":[2,198],"163":[2,198],"164":[2,198],"165":[2,198],"166":[2,198],"167":[2,198]},{"1":[2,199],"4":[2,199],"30":[2,199],"31":[2,199],"52":[1,118],"60":[2,199],"63":[2,199],"81":[2,199],"86":[2,199],"96":[2,199],"101":[2,199],"109":[2,199],"111":133,"112":[2,199],"113":[2,199],"114":[2,199],"117":[2,199],"121":[2,199],"122":[2,199],"123":[2,199],"130":[2,199],"131":[2,199],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[2,199],"149":[2,199],"150":[2,199],"151":[2,199],"152":[2,199],"153":[2,199],"154":[2,199],"155":[2,199],"156":[2,199],"157":[2,199],"158":[2,199],"159":[2,199],"160":[2,199],"161":[2,199],"162":[2,199],"163":[2,199],"164":[2,199],"165":[2,199],"166":[2,199],"167":[2,199]},{"1":[2,200],"4":[2,200],"30":[2,200],"31":[2,200],"52":[1,118],"60":[2,200],"63":[2,200],"81":[2,200],"86":[2,200],"96":[2,200],"101":[2,200],"109":[2,200],"111":133,"112":[2,200],"113":[2,200],"114":[2,200],"117":[2,200],"121":[2,200],"122":[2,200],"123":[2,200],"130":[2,200],"131":[2,200],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[2,200],"149":[2,200],"150":[2,200],"151":[2,200],"152":[2,200],"153":[2,200],"154":[2,200],"155":[2,200],"156":[2,200],"157":[2,200],"158":[2,200],"159":[2,200],"160":[2,200],"161":[2,200],"162":[2,200],"163":[2,200],"164":[2,200],"165":[2,200],"166":[2,200],"167":[2,200]},{"1":[2,201],"4":[2,201],"30":[2,201],"31":[2,201],"52":[1,118],"60":[2,201],"63":[2,201],"81":[2,201],"86":[2,201],"96":[2,201],"101":[2,201],"109":[2,201],"111":133,"112":[2,201],"113":[2,201],"114":[2,201],"117":[2,201],"121":[2,201],"122":[2,201],"123":[2,201],"130":[2,201],"131":[2,201],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,201],"152":[2,201],"153":[2,201],"154":[2,201],"155":[2,201],"156":[2,201],"157":[2,201],"158":[2,201],"159":[2,201],"160":[2,201],"161":[2,201],"162":[2,201],"163":[2,201],"164":[2,201],"165":[2,201],"166":[2,201],"167":[2,201]},{"1":[2,202],"4":[2,202],"30":[2,202],"31":[2,202],"52":[1,118],"60":[2,202],"63":[2,202],"81":[2,202],"86":[2,202],"96":[2,202],"101":[2,202],"109":[2,202],"111":133,"112":[2,202],"113":[2,202],"114":[2,202],"117":[2,202],"121":[2,202],"122":[2,202],"123":[2,202],"130":[2,202],"131":[2,202],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,202],"152":[2,202],"153":[2,202],"154":[2,202],"155":[2,202],"156":[2,202],"157":[2,202],"158":[2,202],"159":[2,202],"160":[2,202],"161":[2,202],"162":[2,202],"163":[2,202],"164":[2,202],"165":[2,202],"166":[2,202],"167":[2,202]},{"1":[2,203],"4":[2,203],"30":[2,203],"31":[2,203],"52":[1,118],"60":[2,203],"63":[2,203],"81":[2,203],"86":[2,203],"96":[2,203],"101":[2,203],"109":[2,203],"111":133,"112":[2,203],"113":[2,203],"114":[2,203],"117":[2,203],"121":[2,203],"122":[2,203],"123":[2,203],"130":[2,203],"131":[2,203],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,203],"152":[2,203],"153":[2,203],"154":[2,203],"155":[2,203],"156":[2,203],"157":[2,203],"158":[2,203],"159":[2,203],"160":[2,203],"161":[2,203],"162":[2,203],"163":[2,203],"164":[2,203],"165":[2,203],"166":[2,203],"167":[2,203]},{"1":[2,204],"4":[2,204],"30":[2,204],"31":[2,204],"52":[1,118],"60":[2,204],"63":[2,204],"81":[2,204],"86":[2,204],"96":[2,204],"101":[2,204],"109":[2,204],"111":133,"112":[2,204],"113":[2,204],"114":[2,204],"117":[2,204],"121":[2,204],"122":[2,204],"123":[2,204],"130":[2,204],"131":[2,204],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,204],"152":[2,204],"153":[2,204],"154":[2,204],"155":[2,204],"156":[2,204],"157":[2,204],"158":[2,204],"159":[2,204],"160":[2,204],"161":[2,204],"162":[2,204],"163":[2,204],"164":[2,204],"165":[2,204],"166":[2,204],"167":[2,204]},{"1":[2,205],"4":[2,205],"30":[2,205],"31":[2,205],"52":[1,118],"60":[2,205],"63":[2,205],"81":[2,205],"86":[2,205],"96":[2,205],"101":[2,205],"109":[2,205],"111":133,"112":[2,205],"113":[2,205],"114":[2,205],"117":[2,205],"121":[2,205],"122":[2,205],"123":[2,205],"130":[2,205],"131":[2,205],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[2,205],"156":[2,205],"157":[2,205],"158":[2,205],"159":[2,205],"160":[2,205],"161":[2,205],"162":[2,205],"163":[2,205],"164":[2,205],"165":[2,205],"166":[2,205],"167":[1,127]},{"1":[2,206],"4":[2,206],"30":[2,206],"31":[2,206],"52":[1,118],"60":[2,206],"63":[2,206],"81":[2,206],"86":[2,206],"96":[2,206],"101":[2,206],"109":[2,206],"111":133,"112":[2,206],"113":[2,206],"114":[2,206],"117":[2,206],"121":[2,206],"122":[2,206],"123":[2,206],"130":[2,206],"131":[2,206],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[2,206],"156":[2,206],"157":[2,206],"158":[2,206],"159":[2,206],"160":[2,206],"161":[2,206],"162":[2,206],"163":[2,206],"164":[2,206],"165":[2,206],"166":[2,206],"167":[1,127]},{"1":[2,207],"4":[2,207],"30":[2,207],"31":[2,207],"52":[1,118],"60":[2,207],"63":[2,207],"81":[2,207],"86":[2,207],"96":[2,207],"101":[2,207],"109":[2,207],"111":133,"112":[2,207],"113":[2,207],"114":[2,207],"117":[2,207],"121":[2,207],"122":[2,207],"123":[2,207],"130":[2,207],"131":[2,207],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[2,207],"158":[2,207],"159":[2,207],"160":[2,207],"161":[2,207],"162":[2,207],"163":[2,207],"164":[2,207],"165":[2,207],"166":[2,207],"167":[1,127]},{"1":[2,208],"4":[2,208],"30":[2,208],"31":[2,208],"52":[1,118],"60":[2,208],"63":[2,208],"81":[2,208],"86":[2,208],"96":[2,208],"101":[2,208],"109":[2,208],"111":133,"112":[2,208],"113":[2,208],"114":[2,208],"117":[2,208],"121":[2,208],"122":[2,208],"123":[2,208],"130":[2,208],"131":[2,208],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[2,208],"158":[2,208],"159":[2,208],"160":[2,208],"161":[2,208],"162":[2,208],"163":[2,208],"164":[2,208],"165":[2,208],"166":[2,208],"167":[1,127]},{"1":[2,209],"4":[2,209],"30":[2,209],"31":[2,209],"52":[2,209],"60":[2,209],"63":[2,209],"81":[2,209],"86":[2,209],"96":[2,209],"101":[2,209],"109":[2,209],"111":133,"112":[2,209],"113":[2,209],"114":[2,209],"117":[2,209],"121":[2,209],"122":[2,209],"123":[2,209],"130":[2,209],"131":[2,209],"133":[2,209],"135":[2,209],"136":[2,209],"138":[2,209],"139":[2,209],"142":[2,209],"143":[2,209],"144":[2,209],"145":[2,209],"146":[2,209],"147":[2,209],"148":[2,209],"149":[2,209],"150":[2,209],"151":[2,209],"152":[2,209],"153":[2,209],"154":[2,209],"155":[2,209],"156":[2,209],"157":[2,209],"158":[2,209],"159":[2,209],"160":[2,209],"161":[2,209],"162":[2,209],"163":[2,209],"164":[2,209],"165":[2,209],"166":[2,209],"167":[2,209]},{"1":[2,210],"4":[2,210],"30":[2,210],"31":[2,210],"52":[1,118],"60":[2,210],"63":[2,210],"81":[2,210],"86":[2,210],"96":[2,210],"101":[2,210],"109":[2,210],"111":133,"112":[2,210],"113":[2,210],"114":[2,210],"117":[2,210],"121":[2,210],"122":[2,210],"123":[2,210],"130":[2,210],"131":[2,210],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,211],"4":[2,211],"30":[2,211],"31":[2,211],"52":[1,118],"60":[2,211],"63":[2,211],"81":[2,211],"86":[2,211],"96":[2,211],"101":[2,211],"109":[2,211],"111":133,"112":[2,211],"113":[2,211],"114":[2,211],"117":[2,211],"121":[2,211],"122":[2,211],"123":[2,211],"130":[2,211],"131":[2,211],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,212],"4":[2,212],"30":[2,212],"31":[2,212],"52":[1,118],"60":[2,212],"63":[2,212],"81":[2,212],"86":[2,212],"96":[2,212],"101":[2,212],"109":[2,212],"111":133,"112":[2,212],"113":[2,212],"114":[2,212],"117":[2,212],"121":[2,212],"122":[2,212],"123":[2,212],"130":[2,212],"131":[2,212],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,213],"4":[2,213],"30":[2,213],"31":[2,213],"52":[1,118],"60":[2,213],"63":[2,213],"81":[2,213],"86":[2,213],"96":[2,213],"101":[2,213],"109":[2,213],"111":133,"112":[2,213],"113":[2,213],"114":[2,213],"117":[2,213],"121":[2,213],"122":[2,213],"123":[2,213],"130":[2,213],"131":[2,213],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,214],"4":[2,214],"30":[2,214],"31":[2,214],"52":[1,118],"60":[2,214],"63":[2,214],"81":[2,214],"86":[2,214],"96":[2,214],"101":[2,214],"109":[2,214],"111":133,"112":[2,214],"113":[2,214],"114":[2,214],"117":[2,214],"121":[2,214],"122":[2,214],"123":[2,214],"130":[2,214],"131":[2,214],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,215],"4":[2,215],"30":[2,215],"31":[2,215],"52":[1,118],"60":[2,215],"63":[2,215],"81":[2,215],"86":[2,215],"96":[2,215],"101":[2,215],"109":[2,215],"111":133,"112":[2,215],"113":[2,215],"114":[2,215],"117":[2,215],"121":[2,215],"122":[2,215],"123":[2,215],"130":[2,215],"131":[2,215],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,216],"4":[2,216],"30":[2,216],"31":[2,216],"52":[1,118],"60":[2,216],"63":[2,216],"81":[2,216],"86":[2,216],"96":[2,216],"101":[2,216],"109":[2,216],"111":133,"112":[2,216],"113":[2,216],"114":[2,216],"117":[2,216],"121":[2,216],"122":[2,216],"123":[2,216],"130":[2,216],"131":[2,216],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,217],"4":[2,217],"30":[2,217],"31":[2,217],"52":[1,118],"60":[2,217],"63":[2,217],"81":[2,217],"86":[2,217],"96":[2,217],"101":[2,217],"109":[2,217],"111":133,"112":[2,217],"113":[2,217],"114":[2,217],"117":[2,217],"121":[2,217],"122":[2,217],"123":[2,217],"130":[2,217],"131":[2,217],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,218],"4":[2,218],"30":[2,218],"31":[2,218],"52":[1,118],"60":[2,218],"63":[2,218],"81":[2,218],"86":[2,218],"96":[2,218],"101":[2,218],"109":[2,218],"111":133,"112":[2,218],"113":[2,218],"114":[2,218],"117":[2,218],"121":[2,218],"122":[2,218],"123":[2,218],"130":[2,218],"131":[2,218],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[2,218],"156":[2,218],"157":[2,218],"158":[2,218],"159":[2,218],"160":[2,218],"161":[2,218],"162":[2,218],"163":[2,218],"164":[2,218],"165":[2,218],"166":[2,218],"167":[1,127]},{"1":[2,219],"4":[2,219],"30":[2,219],"31":[2,219],"52":[1,118],"60":[2,219],"63":[1,135],"81":[2,219],"86":[2,219],"96":[2,219],"101":[2,219],"109":[2,219],"111":133,"112":[2,219],"113":[2,219],"114":[2,219],"117":[2,219],"121":[1,128],"122":[1,129],"123":[2,219],"130":[2,219],"131":[2,219],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,220],"4":[2,220],"30":[2,220],"31":[2,220],"52":[1,118],"60":[2,220],"63":[1,135],"81":[2,220],"86":[2,220],"96":[2,220],"101":[2,220],"109":[2,220],"111":133,"112":[2,220],"113":[2,220],"114":[2,220],"117":[2,220],"121":[1,128],"122":[1,129],"123":[2,220],"130":[2,220],"131":[2,220],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"8":291,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":292,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,176],"4":[2,176],"30":[2,176],"31":[2,176],"52":[1,118],"60":[2,176],"63":[1,135],"81":[2,176],"86":[2,176],"96":[2,176],"101":[2,176],"109":[2,176],"111":133,"112":[1,81],"113":[2,176],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"123":[2,176],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,178],"4":[2,178],"30":[2,178],"31":[2,178],"52":[1,118],"60":[2,178],"63":[1,135],"81":[2,178],"86":[2,178],"96":[2,178],"101":[2,178],"109":[2,178],"111":133,"112":[1,81],"113":[2,178],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"123":[2,178],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"119":293,"121":[1,265],"122":[1,266]},{"63":[1,294]},{"1":[2,175],"4":[2,175],"30":[2,175],"31":[2,175],"52":[1,118],"60":[2,175],"63":[1,135],"81":[2,175],"86":[2,175],"96":[2,175],"101":[2,175],"109":[2,175],"111":133,"112":[1,81],"113":[2,175],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"123":[2,175],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,177],"4":[2,177],"30":[2,177],"31":[2,177],"52":[1,118],"60":[2,177],"63":[1,135],"81":[2,177],"86":[2,177],"96":[2,177],"101":[2,177],"109":[2,177],"111":133,"112":[1,81],"113":[2,177],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"123":[2,177],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"119":295,"121":[1,265],"122":[1,266]},{"4":[2,60],"30":[2,60],"59":296,"60":[1,279],"96":[2,60]},{"4":[2,122],"30":[2,122],"31":[2,122],"52":[1,118],"60":[2,122],"63":[1,135],"96":[2,122],"101":[2,122],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,81],"4":[2,81],"30":[2,81],"31":[2,81],"47":[2,81],"52":[2,81],"60":[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],"88":[2,81],"94":[2,81],"96":[2,81],"101":[2,81],"109":[2,81],"112":[2,81],"113":[2,81],"114":[2,81],"117":[2,81],"121":[2,81],"122":[2,81],"123":[2,81],"130":[2,81],"131":[2,81],"133":[2,81],"135":[2,81],"136":[2,81],"138":[2,81],"139":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81],"151":[2,81],"152":[2,81],"153":[2,81],"154":[2,81],"155":[2,81],"156":[2,81],"157":[2,81],"158":[2,81],"159":[2,81],"160":[2,81],"161":[2,81],"162":[2,81],"163":[2,81],"164":[2,81],"165":[2,81],"166":[2,81],"167":[2,81]},{"1":[2,82],"4":[2,82],"30":[2,82],"31":[2,82],"47":[2,82],"52":[2,82],"60":[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],"88":[2,82],"94":[2,82],"96":[2,82],"101":[2,82],"109":[2,82],"112":[2,82],"113":[2,82],"114":[2,82],"117":[2,82],"121":[2,82],"122":[2,82],"123":[2,82],"130":[2,82],"131":[2,82],"133":[2,82],"135":[2,82],"136":[2,82],"138":[2,82],"139":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82],"151":[2,82],"152":[2,82],"153":[2,82],"154":[2,82],"155":[2,82],"156":[2,82],"157":[2,82],"158":[2,82],"159":[2,82],"160":[2,82],"161":[2,82],"162":[2,82],"163":[2,82],"164":[2,82],"165":[2,82],"166":[2,82],"167":[2,82]},{"1":[2,84],"4":[2,84],"30":[2,84],"31":[2,84],"47":[2,84],"52":[2,84],"60":[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],"101":[2,84],"109":[2,84],"112":[2,84],"113":[2,84],"114":[2,84],"117":[2,84],"121":[2,84],"122":[2,84],"123":[2,84],"130":[2,84],"131":[2,84],"133":[2,84],"135":[2,84],"136":[2,84],"138":[2,84],"139":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84],"151":[2,84],"152":[2,84],"153":[2,84],"154":[2,84],"155":[2,84],"156":[2,84],"157":[2,84],"158":[2,84],"159":[2,84],"160":[2,84],"161":[2,84],"162":[2,84],"163":[2,84],"164":[2,84],"165":[2,84],"166":[2,84],"167":[2,84]},{"52":[1,118],"63":[1,298],"81":[1,297],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,88],"4":[2,88],"30":[2,88],"31":[2,88],"47":[2,88],"52":[2,88],"60":[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],"101":[2,88],"109":[2,88],"112":[2,88],"113":[2,88],"114":[2,88],"117":[2,88],"121":[2,88],"122":[2,88],"123":[2,88],"130":[2,88],"131":[2,88],"133":[2,88],"135":[2,88],"136":[2,88],"138":[2,88],"139":[2,88],"142":[2,88],"143":[2,88],"144":[2,88],"145":[2,88],"146":[2,88],"147":[2,88],"148":[2,88],"149":[2,88],"150":[2,88],"151":[2,88],"152":[2,88],"153":[2,88],"154":[2,88],"155":[2,88],"156":[2,88],"157":[2,88],"158":[2,88],"159":[2,88],"160":[2,88],"161":[2,88],"162":[2,88],"163":[2,88],"164":[2,88],"165":[2,88],"166":[2,88],"167":[2,88]},{"8":299,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,89],"4":[2,89],"30":[2,89],"31":[2,89],"47":[2,89],"52":[2,89],"60":[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],"101":[2,89],"109":[2,89],"112":[2,89],"113":[2,89],"114":[2,89],"117":[2,89],"121":[2,89],"122":[2,89],"123":[2,89],"130":[2,89],"131":[2,89],"133":[2,89],"135":[2,89],"136":[2,89],"138":[2,89],"139":[2,89],"142":[2,89],"143":[2,89],"144":[2,89],"145":[2,89],"146":[2,89],"147":[2,89],"148":[2,89],"149":[2,89],"150":[2,89],"151":[2,89],"152":[2,89],"153":[2,89],"154":[2,89],"155":[2,89],"156":[2,89],"157":[2,89],"158":[2,89],"159":[2,89],"160":[2,89],"161":[2,89],"162":[2,89],"163":[2,89],"164":[2,89],"165":[2,89],"166":[2,89],"167":[2,89]},{"1":[2,45],"4":[2,45],"30":[2,45],"31":[2,45],"52":[1,118],"60":[2,45],"63":[1,135],"81":[2,45],"86":[2,45],"96":[2,45],"101":[2,45],"109":[2,45],"111":133,"112":[1,81],"113":[2,45],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"123":[2,45],"130":[2,45],"131":[2,45],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"56":300,"57":[1,78],"58":[1,79]},{"61":301,"62":[1,161]},{"63":[1,302]},{"1":[2,128],"4":[2,128],"30":[2,128],"31":[2,128],"52":[2,128],"60":[2,128],"63":[2,128],"81":[2,128],"86":[2,128],"96":[2,128],"101":[2,128],"105":[1,303],"109":[2,128],"112":[2,128],"113":[2,128],"114":[2,128],"117":[2,128],"121":[2,128],"122":[2,128],"123":[2,128],"130":[2,128],"131":[2,128],"133":[2,128],"135":[2,128],"136":[2,128],"138":[2,128],"139":[2,128],"142":[2,128],"143":[2,128],"144":[2,128],"145":[2,128],"146":[2,128],"147":[2,128],"148":[2,128],"149":[2,128],"150":[2,128],"151":[2,128],"152":[2,128],"153":[2,128],"154":[2,128],"155":[2,128],"156":[2,128],"157":[2,128],"158":[2,128],"159":[2,128],"160":[2,128],"161":[2,128],"162":[2,128],"163":[2,128],"164":[2,128],"165":[2,128],"166":[2,128],"167":[2,128]},{"4":[1,163],"6":304,"30":[1,6]},{"32":305,"33":[1,91]},{"4":[1,163],"6":306,"30":[1,6]},{"8":307,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":308,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"32":178,"33":[1,91],"68":179,"69":180,"84":[1,86],"100":[1,181],"120":309},{"28":272,"50":[1,57],"51":[1,58],"125":310,"127":270,"128":[1,271]},{"28":272,"31":[1,311],"50":[1,57],"51":[1,58],"126":[1,312],"127":313,"128":[1,271]},{"31":[2,164],"50":[2,164],"51":[2,164],"126":[2,164],"128":[2,164]},{"8":315,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"102":314,"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"4":[1,316]},{"1":[2,108],"4":[2,108],"30":[2,108],"31":[2,108],"52":[2,108],"60":[2,108],"63":[2,108],"65":141,"74":[1,143],"75":[1,144],"76":[1,145],"77":[1,146],"78":147,"79":148,"80":[1,149],"81":[2,108],"82":[1,150],"83":[1,151],"86":[2,108],"93":140,"94":[1,142],"96":[2,108],"101":[2,108],"109":[2,108],"112":[2,108],"113":[2,108],"114":[2,108],"117":[2,108],"121":[2,108],"122":[2,108],"123":[2,108],"130":[2,108],"131":[2,108],"133":[2,108],"135":[2,108],"136":[2,108],"138":[2,108],"139":[2,108],"142":[2,108],"143":[2,108],"144":[2,108],"145":[2,108],"146":[2,108],"147":[2,108],"148":[2,108],"149":[2,108],"150":[2,108],"151":[2,108],"152":[2,108],"153":[2,108],"154":[2,108],"155":[2,108],"156":[2,108],"157":[2,108],"158":[2,108],"159":[2,108],"160":[2,108],"161":[2,108],"162":[2,108],"163":[2,108],"164":[2,108],"165":[2,108],"166":[2,108],"167":[2,108]},{"14":317,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":157,"64":158,"66":186,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"98":[1,75],"99":[1,76],"100":[1,74],"108":[1,73]},{"4":[2,102],"28":203,"31":[2,102],"32":201,"33":[1,91],"34":202,"35":[1,87],"36":[1,88],"48":320,"50":[1,57],"51":[1,58],"67":321,"89":318,"90":319,"99":[1,322]},{"1":[2,133],"4":[2,133],"30":[2,133],"31":[2,133],"52":[2,133],"60":[2,133],"63":[2,133],"74":[2,133],"75":[2,133],"76":[2,133],"77":[2,133],"80":[2,133],"81":[2,133],"82":[2,133],"83":[2,133],"86":[2,133],"94":[2,133],"96":[2,133],"101":[2,133],"109":[2,133],"112":[2,133],"113":[2,133],"114":[2,133],"117":[2,133],"121":[2,133],"122":[2,133],"123":[2,133],"130":[2,133],"131":[2,133],"133":[2,133],"135":[2,133],"136":[2,133],"138":[2,133],"139":[2,133],"142":[2,133],"143":[2,133],"144":[2,133],"145":[2,133],"146":[2,133],"147":[2,133],"148":[2,133],"149":[2,133],"150":[2,133],"151":[2,133],"152":[2,133],"153":[2,133],"154":[2,133],"155":[2,133],"156":[2,133],"157":[2,133],"158":[2,133],"159":[2,133],"160":[2,133],"161":[2,133],"162":[2,133],"163":[2,133],"164":[2,133],"165":[2,133],"166":[2,133],"167":[2,133]},{"63":[1,323]},{"4":[1,325],"30":[1,326],"101":[1,324]},{"4":[2,61],"8":327,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[2,61],"31":[2,61],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"96":[2,61],"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"101":[2,61],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"4":[2,60],"30":[2,60],"59":328,"60":[1,279],"96":[2,60]},{"1":[2,173],"4":[2,173],"30":[2,173],"31":[2,173],"52":[2,173],"60":[2,173],"63":[2,173],"81":[2,173],"86":[2,173],"96":[2,173],"101":[2,173],"109":[2,173],"112":[2,173],"113":[2,173],"114":[2,173],"117":[2,173],"121":[2,173],"122":[2,173],"123":[2,173],"130":[2,173],"131":[2,173],"133":[2,173],"135":[2,173],"136":[2,173],"138":[2,173],"139":[2,173],"142":[2,173],"143":[2,173],"144":[2,173],"145":[2,173],"146":[2,173],"147":[2,173],"148":[2,173],"149":[2,173],"150":[2,173],"151":[2,173],"152":[2,173],"153":[2,173],"154":[2,173],"155":[2,173],"156":[2,173],"157":[2,173],"158":[2,173],"159":[2,173],"160":[2,173],"161":[2,173],"162":[2,173],"163":[2,173],"164":[2,173],"165":[2,173],"166":[2,173],"167":[2,173]},{"8":329,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":330,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":331,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"4":[1,333],"30":[1,334],"86":[1,332]},{"4":[2,61],"28":203,"30":[2,61],"31":[2,61],"32":201,"33":[1,91],"34":202,"35":[1,87],"36":[1,88],"48":335,"50":[1,57],"51":[1,58],"86":[2,61]},{"8":336,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":337,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,169],"4":[2,169],"30":[2,169],"31":[2,169],"52":[2,169],"60":[2,169],"63":[2,169],"81":[2,169],"86":[2,169],"96":[2,169],"101":[2,169],"109":[2,169],"112":[2,169],"113":[2,169],"114":[2,169],"117":[2,169],"121":[2,169],"122":[2,169],"123":[2,169],"126":[2,169],"130":[2,169],"131":[2,169],"133":[2,169],"135":[2,169],"136":[2,169],"138":[2,169],"139":[2,169],"142":[2,169],"143":[2,169],"144":[2,169],"145":[2,169],"146":[2,169],"147":[2,169],"148":[2,169],"149":[2,169],"150":[2,169],"151":[2,169],"152":[2,169],"153":[2,169],"154":[2,169],"155":[2,169],"156":[2,169],"157":[2,169],"158":[2,169],"159":[2,169],"160":[2,169],"161":[2,169],"162":[2,169],"163":[2,169],"164":[2,169],"165":[2,169],"166":[2,169],"167":[2,169]},{"1":[2,170],"4":[2,170],"30":[2,170],"31":[2,170],"52":[2,170],"60":[2,170],"63":[2,170],"81":[2,170],"86":[2,170],"96":[2,170],"101":[2,170],"109":[2,170],"112":[2,170],"113":[2,170],"114":[2,170],"117":[2,170],"121":[2,170],"122":[2,170],"123":[2,170],"126":[2,170],"130":[2,170],"131":[2,170],"133":[2,170],"135":[2,170],"136":[2,170],"138":[2,170],"139":[2,170],"142":[2,170],"143":[2,170],"144":[2,170],"145":[2,170],"146":[2,170],"147":[2,170],"148":[2,170],"149":[2,170],"150":[2,170],"151":[2,170],"152":[2,170],"153":[2,170],"154":[2,170],"155":[2,170],"156":[2,170],"157":[2,170],"158":[2,170],"159":[2,170],"160":[2,170],"161":[2,170],"162":[2,170],"163":[2,170],"164":[2,170],"165":[2,170],"166":[2,170],"167":[2,170]},{"1":[2,221],"4":[2,221],"30":[2,221],"31":[2,221],"52":[1,118],"60":[2,221],"63":[2,221],"81":[2,221],"86":[2,221],"96":[2,221],"101":[2,221],"109":[2,221],"111":133,"112":[2,221],"113":[2,221],"114":[2,221],"117":[2,221],"121":[2,221],"122":[2,221],"123":[2,221],"130":[2,221],"131":[2,221],"135":[2,221],"136":[2,221],"142":[2,221],"143":[2,221],"144":[2,221],"145":[2,221],"146":[2,221],"147":[2,221],"148":[2,221],"149":[2,221],"150":[2,221],"151":[2,221],"152":[2,221],"153":[2,221],"154":[2,221],"155":[2,221],"156":[2,221],"157":[2,221],"158":[2,221],"159":[2,221],"160":[2,221],"161":[2,221],"162":[2,221],"163":[2,221],"164":[2,221],"165":[2,221],"166":[2,221],"167":[2,221]},{"1":[2,222],"4":[2,222],"30":[2,222],"31":[2,222],"52":[1,118],"60":[2,222],"63":[2,222],"81":[2,222],"86":[2,222],"96":[2,222],"101":[2,222],"109":[2,222],"111":133,"112":[2,222],"113":[2,222],"114":[2,222],"117":[2,222],"121":[2,222],"122":[2,222],"123":[2,222],"130":[2,222],"131":[2,222],"135":[2,222],"136":[2,222],"142":[2,222],"143":[2,222],"144":[2,222],"145":[2,222],"146":[2,222],"147":[2,222],"148":[2,222],"149":[2,222],"150":[2,222],"151":[2,222],"152":[2,222],"153":[2,222],"154":[2,222],"155":[2,222],"156":[2,222],"157":[2,222],"158":[2,222],"159":[2,222],"160":[2,222],"161":[2,222],"162":[2,222],"163":[2,222],"164":[2,222],"165":[2,222],"166":[2,222],"167":[2,222]},{"1":[2,146],"4":[2,146],"30":[2,146],"31":[2,146],"52":[2,146],"60":[2,146],"63":[2,146],"81":[2,146],"86":[2,146],"96":[2,146],"101":[2,146],"109":[2,146],"112":[2,146],"113":[2,146],"114":[2,146],"117":[2,146],"121":[2,146],"122":[2,146],"123":[2,146],"130":[2,146],"131":[2,146],"133":[2,146],"135":[2,146],"136":[2,146],"138":[2,146],"139":[2,146],"142":[2,146],"143":[2,146],"144":[2,146],"145":[2,146],"146":[2,146],"147":[2,146],"148":[2,146],"149":[2,146],"150":[2,146],"151":[2,146],"152":[2,146],"153":[2,146],"154":[2,146],"155":[2,146],"156":[2,146],"157":[2,146],"158":[2,146],"159":[2,146],"160":[2,146],"161":[2,146],"162":[2,146],"163":[2,146],"164":[2,146],"165":[2,146],"166":[2,146],"167":[2,146]},{"1":[2,67],"4":[2,67],"30":[2,67],"31":[2,67],"52":[2,67],"60":[2,67],"63":[2,67],"81":[2,67],"86":[2,67],"96":[2,67],"101":[2,67],"109":[2,67],"112":[2,67],"113":[2,67],"114":[2,67],"117":[2,67],"121":[2,67],"122":[2,67],"123":[2,67],"130":[2,67],"131":[2,67],"133":[2,67],"135":[2,67],"136":[2,67],"138":[2,67],"139":[2,67],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67],"162":[2,67],"163":[2,67],"164":[2,67],"165":[2,67],"166":[2,67],"167":[2,67]},{"1":[2,145],"4":[2,145],"30":[2,145],"31":[2,145],"52":[2,145],"60":[2,145],"63":[2,145],"81":[2,145],"86":[2,145],"96":[2,145],"101":[2,145],"109":[2,145],"112":[2,145],"113":[2,145],"114":[2,145],"117":[2,145],"121":[2,145],"122":[2,145],"123":[2,145],"130":[2,145],"131":[2,145],"133":[2,145],"135":[2,145],"136":[2,145],"138":[2,145],"139":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"146":[2,145],"147":[2,145],"148":[2,145],"149":[2,145],"150":[2,145],"151":[2,145],"152":[2,145],"153":[2,145],"154":[2,145],"155":[2,145],"156":[2,145],"157":[2,145],"158":[2,145],"159":[2,145],"160":[2,145],"161":[2,145],"162":[2,145],"163":[2,145],"164":[2,145],"165":[2,145],"166":[2,145],"167":[2,145]},{"4":[1,325],"30":[1,326],"96":[1,338]},{"1":[2,87],"4":[2,87],"30":[2,87],"31":[2,87],"47":[2,87],"52":[2,87],"60":[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],"101":[2,87],"109":[2,87],"112":[2,87],"113":[2,87],"114":[2,87],"117":[2,87],"121":[2,87],"122":[2,87],"123":[2,87],"130":[2,87],"131":[2,87],"133":[2,87],"135":[2,87],"136":[2,87],"138":[2,87],"139":[2,87],"142":[2,87],"143":[2,87],"144":[2,87],"145":[2,87],"146":[2,87],"147":[2,87],"148":[2,87],"149":[2,87],"150":[2,87],"151":[2,87],"152":[2,87],"153":[2,87],"154":[2,87],"155":[2,87],"156":[2,87],"157":[2,87],"158":[2,87],"159":[2,87],"160":[2,87],"161":[2,87],"162":[2,87],"163":[2,87],"164":[2,87],"165":[2,87],"166":[2,87],"167":[2,87]},{"63":[1,339]},{"52":[1,118],"63":[1,135],"81":[1,297],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[1,163],"6":340,"30":[1,6]},{"55":[2,64],"60":[2,64],"63":[1,260]},{"63":[1,341]},{"4":[1,163],"6":342,"30":[1,6]},{"1":[2,129],"4":[2,129],"30":[2,129],"31":[2,129],"52":[2,129],"60":[2,129],"63":[2,129],"81":[2,129],"86":[2,129],"96":[2,129],"101":[2,129],"109":[2,129],"112":[2,129],"113":[2,129],"114":[2,129],"117":[2,129],"121":[2,129],"122":[2,129],"123":[2,129],"130":[2,129],"131":[2,129],"133":[2,129],"135":[2,129],"136":[2,129],"138":[2,129],"139":[2,129],"142":[2,129],"143":[2,129],"144":[2,129],"145":[2,129],"146":[2,129],"147":[2,129],"148":[2,129],"149":[2,129],"150":[2,129],"151":[2,129],"152":[2,129],"153":[2,129],"154":[2,129],"155":[2,129],"156":[2,129],"157":[2,129],"158":[2,129],"159":[2,129],"160":[2,129],"161":[2,129],"162":[2,129],"163":[2,129],"164":[2,129],"165":[2,129],"166":[2,129],"167":[2,129]},{"4":[1,163],"6":343,"30":[1,6]},{"1":[2,147],"4":[2,147],"30":[2,147],"31":[2,147],"52":[2,147],"60":[2,147],"63":[2,147],"81":[2,147],"86":[2,147],"96":[2,147],"101":[2,147],"109":[2,147],"112":[2,147],"113":[2,147],"114":[2,147],"117":[2,147],"121":[2,147],"122":[2,147],"123":[2,147],"130":[2,147],"131":[2,147],"133":[2,147],"135":[2,147],"136":[2,147],"138":[2,147],"139":[2,147],"142":[2,147],"143":[2,147],"144":[2,147],"145":[2,147],"146":[2,147],"147":[2,147],"148":[2,147],"149":[2,147],"150":[2,147],"151":[2,147],"152":[2,147],"153":[2,147],"154":[2,147],"155":[2,147],"156":[2,147],"157":[2,147],"158":[2,147],"159":[2,147],"160":[2,147],"161":[2,147],"162":[2,147],"163":[2,147],"164":[2,147],"165":[2,147],"166":[2,147],"167":[2,147]},{"1":[2,153],"4":[2,153],"30":[2,153],"31":[2,153],"52":[1,118],"60":[2,153],"63":[1,135],"81":[2,153],"86":[2,153],"96":[2,153],"101":[2,153],"109":[2,153],"111":133,"112":[2,153],"113":[1,344],"114":[2,153],"117":[2,153],"121":[1,128],"122":[1,129],"123":[1,345],"130":[2,153],"131":[2,153],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,154],"4":[2,154],"30":[2,154],"31":[2,154],"52":[1,118],"60":[2,154],"63":[1,135],"81":[2,154],"86":[2,154],"96":[2,154],"101":[2,154],"109":[2,154],"111":133,"112":[2,154],"113":[1,346],"114":[2,154],"117":[2,154],"121":[1,128],"122":[1,129],"123":[2,154],"130":[2,154],"131":[2,154],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"121":[2,152],"122":[2,152]},{"28":272,"31":[1,347],"50":[1,57],"51":[1,58],"126":[1,348],"127":313,"128":[1,271]},{"1":[2,162],"4":[2,162],"30":[2,162],"31":[2,162],"52":[2,162],"60":[2,162],"63":[2,162],"81":[2,162],"86":[2,162],"96":[2,162],"101":[2,162],"109":[2,162],"112":[2,162],"113":[2,162],"114":[2,162],"117":[2,162],"121":[2,162],"122":[2,162],"123":[2,162],"130":[2,162],"131":[2,162],"133":[2,162],"135":[2,162],"136":[2,162],"138":[2,162],"139":[2,162],"142":[2,162],"143":[2,162],"144":[2,162],"145":[2,162],"146":[2,162],"147":[2,162],"148":[2,162],"149":[2,162],"150":[2,162],"151":[2,162],"152":[2,162],"153":[2,162],"154":[2,162],"155":[2,162],"156":[2,162],"157":[2,162],"158":[2,162],"159":[2,162],"160":[2,162],"161":[2,162],"162":[2,162],"163":[2,162],"164":[2,162],"165":[2,162],"166":[2,162],"167":[2,162]},{"4":[1,163],"6":349,"30":[1,6]},{"31":[2,165],"50":[2,165],"51":[2,165],"126":[2,165],"128":[2,165]},{"4":[1,163],"6":350,"30":[1,6],"60":[1,351]},{"4":[2,126],"30":[2,126],"52":[1,118],"60":[2,126],"63":[1,135],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"28":272,"50":[1,57],"51":[1,58],"127":352,"128":[1,271]},{"1":[2,97],"4":[2,97],"30":[1,353],"31":[2,97],"52":[2,97],"60":[2,97],"63":[2,97],"65":141,"74":[1,143],"75":[1,144],"76":[1,145],"77":[1,146],"78":147,"79":148,"80":[1,149],"81":[2,97],"82":[1,150],"83":[1,151],"86":[2,97],"93":140,"94":[1,142],"96":[2,97],"101":[2,97],"109":[2,97],"112":[2,97],"113":[2,97],"114":[2,97],"117":[2,97],"121":[2,97],"122":[2,97],"123":[2,97],"130":[2,97],"131":[2,97],"133":[2,97],"135":[2,97],"136":[2,97],"138":[2,97],"139":[2,97],"142":[2,97],"143":[2,97],"144":[2,97],"145":[2,97],"146":[2,97],"147":[2,97],"148":[2,97],"149":[2,97],"150":[2,97],"151":[2,97],"152":[2,97],"153":[2,97],"154":[2,97],"155":[2,97],"156":[2,97],"157":[2,97],"158":[2,97],"159":[2,97],"160":[2,97],"161":[2,97],"162":[2,97],"163":[2,97],"164":[2,97],"165":[2,97],"166":[2,97],"167":[2,97]},{"4":[1,355],"31":[1,354]},{"4":[2,103],"31":[2,103]},{"4":[2,100],"31":[2,100]},{"47":[1,356]},{"32":192,"33":[1,91]},{"8":357,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"63":[1,358],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,120],"4":[2,120],"30":[2,120],"31":[2,120],"47":[2,120],"52":[2,120],"60":[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],"101":[2,120],"109":[2,120],"112":[2,120],"113":[2,120],"114":[2,120],"117":[2,120],"121":[2,120],"122":[2,120],"123":[2,120],"130":[2,120],"131":[2,120],"133":[2,120],"135":[2,120],"136":[2,120],"138":[2,120],"139":[2,120],"142":[2,120],"143":[2,120],"144":[2,120],"145":[2,120],"146":[2,120],"147":[2,120],"148":[2,120],"149":[2,120],"150":[2,120],"151":[2,120],"152":[2,120],"153":[2,120],"154":[2,120],"155":[2,120],"156":[2,120],"157":[2,120],"158":[2,120],"159":[2,120],"160":[2,120],"161":[2,120],"162":[2,120],"163":[2,120],"164":[2,120],"165":[2,120],"166":[2,120],"167":[2,120]},{"8":359,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"4":[2,121],"8":249,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[2,121],"31":[2,121],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"60":[2,121],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"95":360,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"4":[2,123],"30":[2,123],"31":[2,123],"52":[1,118],"60":[2,123],"63":[1,135],"96":[2,123],"101":[2,123],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[1,325],"30":[1,326],"96":[1,361]},{"4":[1,163],"6":362,"30":[1,6],"52":[1,118],"63":[1,135],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,136],"4":[2,136],"30":[2,136],"31":[2,136],"52":[1,118],"60":[2,136],"63":[1,135],"81":[2,136],"86":[2,136],"96":[2,136],"101":[2,136],"109":[2,136],"111":133,"112":[1,81],"113":[2,136],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"123":[2,136],"130":[2,136],"131":[2,136],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,138],"4":[2,138],"30":[2,138],"31":[2,138],"52":[1,118],"60":[2,138],"63":[1,135],"81":[2,138],"86":[2,138],"96":[2,138],"101":[2,138],"109":[2,138],"111":133,"112":[1,81],"113":[2,138],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"123":[2,138],"130":[2,138],"131":[2,138],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,90],"4":[2,90],"30":[2,90],"31":[2,90],"47":[2,90],"52":[2,90],"60":[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],"94":[2,90],"96":[2,90],"101":[2,90],"109":[2,90],"112":[2,90],"113":[2,90],"114":[2,90],"117":[2,90],"121":[2,90],"122":[2,90],"123":[2,90],"130":[2,90],"131":[2,90],"133":[2,90],"135":[2,90],"136":[2,90],"138":[2,90],"139":[2,90],"142":[2,90],"143":[2,90],"144":[2,90],"145":[2,90],"146":[2,90],"147":[2,90],"148":[2,90],"149":[2,90],"150":[2,90],"151":[2,90],"152":[2,90],"153":[2,90],"154":[2,90],"155":[2,90],"156":[2,90],"157":[2,90],"158":[2,90],"159":[2,90],"160":[2,90],"161":[2,90],"162":[2,90],"163":[2,90],"164":[2,90],"165":[2,90],"166":[2,90],"167":[2,90]},{"28":203,"32":201,"33":[1,91],"34":202,"35":[1,87],"36":[1,88],"48":363,"50":[1,57],"51":[1,58]},{"4":[2,91],"28":203,"30":[2,91],"31":[2,91],"32":201,"33":[1,91],"34":202,"35":[1,87],"36":[1,88],"48":200,"50":[1,57],"51":[1,58],"60":[2,91],"85":364},{"4":[2,93],"30":[2,93],"31":[2,93],"60":[2,93],"86":[2,93]},{"4":[2,48],"30":[2,48],"31":[2,48],"52":[1,118],"60":[2,48],"63":[1,135],"86":[2,48],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[2,49],"30":[2,49],"31":[2,49],"52":[1,118],"60":[2,49],"63":[1,135],"86":[2,49],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,111],"4":[2,111],"30":[2,111],"31":[2,111],"52":[2,111],"60":[2,111],"63":[2,111],"74":[2,111],"75":[2,111],"76":[2,111],"77":[2,111],"80":[2,111],"81":[2,111],"82":[2,111],"83":[2,111],"86":[2,111],"94":[2,111],"96":[2,111],"101":[2,111],"109":[2,111],"112":[2,111],"113":[2,111],"114":[2,111],"117":[2,111],"121":[2,111],"122":[2,111],"123":[2,111],"130":[2,111],"131":[2,111],"133":[2,111],"135":[2,111],"136":[2,111],"138":[2,111],"139":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"147":[2,111],"148":[2,111],"149":[2,111],"150":[2,111],"151":[2,111],"152":[2,111],"153":[2,111],"154":[2,111],"155":[2,111],"156":[2,111],"157":[2,111],"158":[2,111],"159":[2,111],"160":[2,111],"161":[2,111],"162":[2,111],"163":[2,111],"164":[2,111],"165":[2,111],"166":[2,111],"167":[2,111]},{"8":365,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"63":[1,366],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,56],"4":[2,56],"30":[2,56],"31":[2,56],"52":[2,56],"60":[2,56],"63":[2,56],"81":[2,56],"86":[2,56],"96":[2,56],"101":[2,56],"109":[2,56],"112":[2,56],"113":[2,56],"114":[2,56],"117":[2,56],"121":[2,56],"122":[2,56],"123":[2,56],"130":[2,56],"131":[2,56],"133":[2,56],"135":[2,56],"136":[2,56],"138":[2,56],"139":[2,56],"142":[2,56],"143":[2,56],"144":[2,56],"145":[2,56],"146":[2,56],"147":[2,56],"148":[2,56],"149":[2,56],"150":[2,56],"151":[2,56],"152":[2,56],"153":[2,56],"154":[2,56],"155":[2,56],"156":[2,56],"157":[2,56],"158":[2,56],"159":[2,56],"160":[2,56],"161":[2,56],"162":[2,56],"163":[2,56],"164":[2,56],"165":[2,56],"166":[2,56],"167":[2,56]},{"55":[2,66],"60":[2,66],"63":[2,66]},{"1":[2,130],"4":[2,130],"30":[2,130],"31":[2,130],"52":[2,130],"60":[2,130],"63":[2,130],"81":[2,130],"86":[2,130],"96":[2,130],"101":[2,130],"109":[2,130],"112":[2,130],"113":[2,130],"114":[2,130],"117":[2,130],"121":[2,130],"122":[2,130],"123":[2,130],"130":[2,130],"131":[2,130],"133":[2,130],"135":[2,130],"136":[2,130],"138":[2,130],"139":[2,130],"142":[2,130],"143":[2,130],"144":[2,130],"145":[2,130],"146":[2,130],"147":[2,130],"148":[2,130],"149":[2,130],"150":[2,130],"151":[2,130],"152":[2,130],"153":[2,130],"154":[2,130],"155":[2,130],"156":[2,130],"157":[2,130],"158":[2,130],"159":[2,130],"160":[2,130],"161":[2,130],"162":[2,130],"163":[2,130],"164":[2,130],"165":[2,130],"166":[2,130],"167":[2,130]},{"1":[2,131],"4":[2,131],"30":[2,131],"31":[2,131],"52":[2,131],"60":[2,131],"63":[2,131],"81":[2,131],"86":[2,131],"96":[2,131],"101":[2,131],"105":[2,131],"109":[2,131],"112":[2,131],"113":[2,131],"114":[2,131],"117":[2,131],"121":[2,131],"122":[2,131],"123":[2,131],"130":[2,131],"131":[2,131],"133":[2,131],"135":[2,131],"136":[2,131],"138":[2,131],"139":[2,131],"142":[2,131],"143":[2,131],"144":[2,131],"145":[2,131],"146":[2,131],"147":[2,131],"148":[2,131],"149":[2,131],"150":[2,131],"151":[2,131],"152":[2,131],"153":[2,131],"154":[2,131],"155":[2,131],"156":[2,131],"157":[2,131],"158":[2,131],"159":[2,131],"160":[2,131],"161":[2,131],"162":[2,131],"163":[2,131],"164":[2,131],"165":[2,131],"166":[2,131],"167":[2,131]},{"8":367,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":368,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":369,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,160],"4":[2,160],"30":[2,160],"31":[2,160],"52":[2,160],"60":[2,160],"63":[2,160],"81":[2,160],"86":[2,160],"96":[2,160],"101":[2,160],"109":[2,160],"112":[2,160],"113":[2,160],"114":[2,160],"117":[2,160],"121":[2,160],"122":[2,160],"123":[2,160],"130":[2,160],"131":[2,160],"133":[2,160],"135":[2,160],"136":[2,160],"138":[2,160],"139":[2,160],"142":[2,160],"143":[2,160],"144":[2,160],"145":[2,160],"146":[2,160],"147":[2,160],"148":[2,160],"149":[2,160],"150":[2,160],"151":[2,160],"152":[2,160],"153":[2,160],"154":[2,160],"155":[2,160],"156":[2,160],"157":[2,160],"158":[2,160],"159":[2,160],"160":[2,160],"161":[2,160],"162":[2,160],"163":[2,160],"164":[2,160],"165":[2,160],"166":[2,160],"167":[2,160]},{"4":[1,163],"6":370,"30":[1,6]},{"31":[1,371]},{"4":[1,372],"31":[2,166],"50":[2,166],"51":[2,166],"126":[2,166],"128":[2,166]},{"8":373,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"31":[2,168],"50":[2,168],"51":[2,168],"126":[2,168],"128":[2,168]},{"4":[2,102],"28":203,"31":[2,102],"32":201,"33":[1,91],"34":202,"35":[1,87],"36":[1,88],"48":320,"50":[1,57],"51":[1,58],"67":321,"89":374,"90":319,"99":[1,322]},{"1":[2,98],"4":[2,98],"30":[2,98],"31":[2,98],"52":[2,98],"60":[2,98],"63":[2,98],"81":[2,98],"86":[2,98],"96":[2,98],"101":[2,98],"109":[2,98],"112":[2,98],"113":[2,98],"114":[2,98],"117":[2,98],"121":[2,98],"122":[2,98],"123":[2,98],"130":[2,98],"131":[2,98],"133":[2,98],"135":[2,98],"136":[2,98],"138":[2,98],"139":[2,98],"142":[2,98],"143":[2,98],"144":[2,98],"145":[2,98],"146":[2,98],"147":[2,98],"148":[2,98],"149":[2,98],"150":[2,98],"151":[2,98],"152":[2,98],"153":[2,98],"154":[2,98],"155":[2,98],"156":[2,98],"157":[2,98],"158":[2,98],"159":[2,98],"160":[2,98],"161":[2,98],"162":[2,98],"163":[2,98],"164":[2,98],"165":[2,98],"166":[2,98],"167":[2,98]},{"28":203,"32":201,"33":[1,91],"34":202,"35":[1,87],"36":[1,88],"48":320,"50":[1,57],"51":[1,58],"67":321,"90":375,"99":[1,322]},{"8":376,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"52":[1,118],"63":[1,135],"101":[1,377],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[2,67],"8":378,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"30":[2,67],"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"52":[2,67],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"60":[2,67],"63":[2,67],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"101":[2,67],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[2,67],"114":[2,67],"115":52,"116":[1,83],"117":[2,67],"121":[2,67],"122":[2,67],"124":[1,54],"129":80,"130":[2,67],"131":[2,67],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67],"162":[2,67],"163":[2,67],"164":[2,67],"165":[2,67],"166":[2,67],"167":[2,67]},{"4":[2,124],"30":[2,124],"31":[2,124],"52":[1,118],"60":[2,124],"63":[1,135],"96":[2,124],"101":[2,124],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[2,60],"30":[2,60],"31":[2,60],"59":379,"60":[1,279]},{"1":[2,112],"4":[2,112],"30":[2,112],"31":[2,112],"52":[2,112],"60":[2,112],"63":[2,112],"81":[2,112],"86":[2,112],"96":[2,112],"101":[2,112],"109":[2,112],"112":[2,112],"113":[2,112],"114":[2,112],"117":[2,112],"121":[2,112],"122":[2,112],"123":[2,112],"130":[2,112],"131":[2,112],"133":[2,112],"135":[2,112],"136":[2,112],"138":[2,112],"139":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"147":[2,112],"148":[2,112],"149":[2,112],"150":[2,112],"151":[2,112],"152":[2,112],"153":[2,112],"154":[2,112],"155":[2,112],"156":[2,112],"157":[2,112],"158":[2,112],"159":[2,112],"160":[2,112],"161":[2,112],"162":[2,112],"163":[2,112],"164":[2,112],"165":[2,112],"166":[2,112],"167":[2,112]},{"1":[2,171],"4":[2,171],"30":[2,171],"31":[2,171],"52":[2,171],"60":[2,171],"63":[2,171],"81":[2,171],"86":[2,171],"96":[2,171],"101":[2,171],"109":[2,171],"112":[2,171],"113":[2,171],"114":[2,171],"117":[2,171],"121":[2,171],"122":[2,171],"123":[2,171],"126":[2,171],"130":[2,171],"131":[2,171],"133":[2,171],"135":[2,171],"136":[2,171],"138":[2,171],"139":[2,171],"142":[2,171],"143":[2,171],"144":[2,171],"145":[2,171],"146":[2,171],"147":[2,171],"148":[2,171],"149":[2,171],"150":[2,171],"151":[2,171],"152":[2,171],"153":[2,171],"154":[2,171],"155":[2,171],"156":[2,171],"157":[2,171],"158":[2,171],"159":[2,171],"160":[2,171],"161":[2,171],"162":[2,171],"163":[2,171],"164":[2,171],"165":[2,171],"166":[2,171],"167":[2,171]},{"4":[2,94],"30":[2,94],"31":[2,94],"60":[2,94],"86":[2,94]},{"4":[2,60],"30":[2,60],"31":[2,60],"59":380,"60":[1,286]},{"52":[1,118],"63":[1,135],"81":[1,381],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"8":382,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"52":[2,67],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"63":[2,67],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"81":[2,67],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[2,67],"114":[2,67],"115":52,"116":[1,83],"117":[2,67],"121":[2,67],"122":[2,67],"124":[1,54],"129":80,"130":[2,67],"131":[2,67],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67],"162":[2,67],"163":[2,67],"164":[2,67],"165":[2,67],"166":[2,67],"167":[2,67]},{"1":[2,155],"4":[2,155],"30":[2,155],"31":[2,155],"52":[1,118],"60":[2,155],"63":[1,135],"81":[2,155],"86":[2,155],"96":[2,155],"101":[2,155],"109":[2,155],"111":133,"112":[2,155],"113":[2,155],"114":[2,155],"117":[2,155],"121":[1,128],"122":[1,129],"123":[1,383],"130":[2,155],"131":[2,155],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,157],"4":[2,157],"30":[2,157],"31":[2,157],"52":[1,118],"60":[2,157],"63":[1,135],"81":[2,157],"86":[2,157],"96":[2,157],"101":[2,157],"109":[2,157],"111":133,"112":[2,157],"113":[1,384],"114":[2,157],"117":[2,157],"121":[1,128],"122":[1,129],"123":[2,157],"130":[2,157],"131":[2,157],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,156],"4":[2,156],"30":[2,156],"31":[2,156],"52":[1,118],"60":[2,156],"63":[1,135],"81":[2,156],"86":[2,156],"96":[2,156],"101":[2,156],"109":[2,156],"111":133,"112":[2,156],"113":[2,156],"114":[2,156],"117":[2,156],"121":[1,128],"122":[1,129],"123":[2,156],"130":[2,156],"131":[2,156],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"31":[1,385]},{"1":[2,163],"4":[2,163],"30":[2,163],"31":[2,163],"52":[2,163],"60":[2,163],"63":[2,163],"81":[2,163],"86":[2,163],"96":[2,163],"101":[2,163],"109":[2,163],"112":[2,163],"113":[2,163],"114":[2,163],"117":[2,163],"121":[2,163],"122":[2,163],"123":[2,163],"130":[2,163],"131":[2,163],"133":[2,163],"135":[2,163],"136":[2,163],"138":[2,163],"139":[2,163],"142":[2,163],"143":[2,163],"144":[2,163],"145":[2,163],"146":[2,163],"147":[2,163],"148":[2,163],"149":[2,163],"150":[2,163],"151":[2,163],"152":[2,163],"153":[2,163],"154":[2,163],"155":[2,163],"156":[2,163],"157":[2,163],"158":[2,163],"159":[2,163],"160":[2,163],"161":[2,163],"162":[2,163],"163":[2,163],"164":[2,163],"165":[2,163],"166":[2,163],"167":[2,163]},{"31":[2,167],"50":[2,167],"51":[2,167],"126":[2,167],"128":[2,167]},{"4":[2,127],"30":[2,127],"52":[1,118],"60":[2,127],"63":[1,135],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[1,355],"31":[1,386]},{"4":[2,104],"31":[2,104]},{"4":[2,101],"31":[2,101],"52":[1,118],"63":[1,135],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,116],"4":[2,116],"30":[2,116],"31":[2,116],"52":[2,116],"60":[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],"101":[2,116],"109":[2,116],"112":[2,116],"113":[2,116],"114":[2,116],"117":[2,116],"121":[2,116],"122":[2,116],"123":[2,116],"130":[2,116],"131":[2,116],"133":[2,116],"135":[2,116],"136":[2,116],"138":[2,116],"139":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"146":[2,116],"147":[2,116],"148":[2,116],"149":[2,116],"150":[2,116],"151":[2,116],"152":[2,116],"153":[2,116],"154":[2,116],"155":[2,116],"156":[2,116],"157":[2,116],"158":[2,116],"159":[2,116],"160":[2,116],"161":[2,116],"162":[2,116],"163":[2,116],"164":[2,116],"165":[2,116],"166":[2,116],"167":[2,116]},{"52":[1,118],"63":[1,135],"101":[1,387],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"4":[1,325],"30":[1,326],"31":[1,388]},{"4":[1,333],"30":[1,334],"31":[1,389]},{"1":[2,118],"4":[2,118],"30":[2,118],"31":[2,118],"47":[2,118],"52":[2,118],"60":[2,118],"63":[2,118],"74":[2,118],"75":[2,118],"76":[2,118],"77":[2,118],"80":[2,118],"81":[2,118],"82":[2,118],"83":[2,118],"86":[2,118],"88":[2,118],"94":[2,118],"96":[2,118],"101":[2,118],"109":[2,118],"112":[2,118],"113":[2,118],"114":[2,118],"117":[2,118],"121":[2,118],"122":[2,118],"123":[2,118],"130":[2,118],"131":[2,118],"133":[2,118],"135":[2,118],"136":[2,118],"138":[2,118],"139":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"146":[2,118],"147":[2,118],"148":[2,118],"149":[2,118],"150":[2,118],"151":[2,118],"152":[2,118],"153":[2,118],"154":[2,118],"155":[2,118],"156":[2,118],"157":[2,118],"158":[2,118],"159":[2,118],"160":[2,118],"161":[2,118],"162":[2,118],"163":[2,118],"164":[2,118],"165":[2,118],"166":[2,118],"167":[2,118]},{"52":[1,118],"63":[1,135],"81":[1,390],"111":133,"112":[1,81],"114":[1,82],"117":[1,134],"121":[1,128],"122":[1,129],"130":[1,131],"131":[1,132],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"8":391,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"8":392,"9":165,"10":25,"11":26,"12":[1,27],"13":[1,28],"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":24,"32":84,"33":[1,91],"34":64,"35":[1,87],"36":[1,88],"37":30,"38":[1,65],"39":[1,66],"40":[1,67],"41":[1,68],"42":[1,69],"43":[1,70],"44":[1,71],"45":[1,72],"46":29,"49":[1,60],"50":[1,57],"51":[1,58],"53":[1,38],"56":39,"57":[1,78],"58":[1,79],"64":55,"66":35,"67":85,"68":62,"69":63,"70":31,"71":32,"72":33,"73":[1,34],"84":[1,86],"87":[1,56],"91":[1,36],"92":37,"97":[1,77],"98":[1,75],"99":[1,76],"100":[1,74],"103":[1,50],"107":[1,61],"108":[1,73],"110":[1,59],"111":51,"112":[1,81],"114":[1,82],"115":52,"116":[1,83],"117":[1,53],"124":[1,54],"129":80,"130":[1,89],"131":[1,90],"132":49,"133":[1,40],"134":[1,41],"135":[1,42],"136":[1,43],"137":[1,44],"138":[1,45],"139":[1,46],"140":[1,47],"141":[1,48]},{"1":[2,161],"4":[2,161],"30":[2,161],"31":[2,161],"52":[2,161],"60":[2,161],"63":[2,161],"81":[2,161],"86":[2,161],"96":[2,161],"101":[2,161],"109":[2,161],"112":[2,161],"113":[2,161],"114":[2,161],"117":[2,161],"121":[2,161],"122":[2,161],"123":[2,161],"130":[2,161],"131":[2,161],"133":[2,161],"135":[2,161],"136":[2,161],"138":[2,161],"139":[2,161],"142":[2,161],"143":[2,161],"144":[2,161],"145":[2,161],"146":[2,161],"147":[2,161],"148":[2,161],"149":[2,161],"150":[2,161],"151":[2,161],"152":[2,161],"153":[2,161],"154":[2,161],"155":[2,161],"156":[2,161],"157":[2,161],"158":[2,161],"159":[2,161],"160":[2,161],"161":[2,161],"162":[2,161],"163":[2,161],"164":[2,161],"165":[2,161],"166":[2,161],"167":[2,161]},{"1":[2,99],"4":[2,99],"30":[2,99],"31":[2,99],"52":[2,99],"60":[2,99],"63":[2,99],"81":[2,99],"86":[2,99],"96":[2,99],"101":[2,99],"109":[2,99],"112":[2,99],"113":[2,99],"114":[2,99],"117":[2,99],"121":[2,99],"122":[2,99],"123":[2,99],"130":[2,99],"131":[2,99],"133":[2,99],"135":[2,99],"136":[2,99],"138":[2,99],"139":[2,99],"142":[2,99],"143":[2,99],"144":[2,99],"145":[2,99],"146":[2,99],"147":[2,99],"148":[2,99],"149":[2,99],"150":[2,99],"151":[2,99],"152":[2,99],"153":[2,99],"154":[2,99],"155":[2,99],"156":[2,99],"157":[2,99],"158":[2,99],"159":[2,99],"160":[2,99],"161":[2,99],"162":[2,99],"163":[2,99],"164":[2,99],"165":[2,99],"166":[2,99],"167":[2,99]},{"1":[2,117],"4":[2,117],"30":[2,117],"31":[2,117],"52":[2,117],"60":[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],"101":[2,117],"109":[2,117],"112":[2,117],"113":[2,117],"114":[2,117],"117":[2,117],"121":[2,117],"122":[2,117],"123":[2,117],"130":[2,117],"131":[2,117],"133":[2,117],"135":[2,117],"136":[2,117],"138":[2,117],"139":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"146":[2,117],"147":[2,117],"148":[2,117],"149":[2,117],"150":[2,117],"151":[2,117],"152":[2,117],"153":[2,117],"154":[2,117],"155":[2,117],"156":[2,117],"157":[2,117],"158":[2,117],"159":[2,117],"160":[2,117],"161":[2,117],"162":[2,117],"163":[2,117],"164":[2,117],"165":[2,117],"166":[2,117],"167":[2,117]},{"4":[2,125],"30":[2,125],"31":[2,125],"60":[2,125],"96":[2,125],"101":[2,125]},{"4":[2,95],"30":[2,95],"31":[2,95],"60":[2,95],"86":[2,95]},{"1":[2,119],"4":[2,119],"30":[2,119],"31":[2,119],"47":[2,119],"52":[2,119],"60":[2,119],"63":[2,119],"74":[2,119],"75":[2,119],"76":[2,119],"77":[2,119],"80":[2,119],"81":[2,119],"82":[2,119],"83":[2,119],"86":[2,119],"88":[2,119],"94":[2,119],"96":[2,119],"101":[2,119],"109":[2,119],"112":[2,119],"113":[2,119],"114":[2,119],"117":[2,119],"121":[2,119],"122":[2,119],"123":[2,119],"130":[2,119],"131":[2,119],"133":[2,119],"135":[2,119],"136":[2,119],"138":[2,119],"139":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"146":[2,119],"147":[2,119],"148":[2,119],"149":[2,119],"150":[2,119],"151":[2,119],"152":[2,119],"153":[2,119],"154":[2,119],"155":[2,119],"156":[2,119],"157":[2,119],"158":[2,119],"159":[2,119],"160":[2,119],"161":[2,119],"162":[2,119],"163":[2,119],"164":[2,119],"165":[2,119],"166":[2,119],"167":[2,119]},{"1":[2,158],"4":[2,158],"30":[2,158],"31":[2,158],"52":[1,118],"60":[2,158],"63":[1,135],"81":[2,158],"86":[2,158],"96":[2,158],"101":[2,158],"109":[2,158],"111":133,"112":[2,158],"113":[2,158],"114":[2,158],"117":[2,158],"121":[1,128],"122":[1,129],"123":[2,158],"130":[2,158],"131":[2,158],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]},{"1":[2,159],"4":[2,159],"30":[2,159],"31":[2,159],"52":[1,118],"60":[2,159],"63":[1,135],"81":[2,159],"86":[2,159],"96":[2,159],"101":[2,159],"109":[2,159],"111":133,"112":[2,159],"113":[2,159],"114":[2,159],"117":[2,159],"121":[1,128],"122":[1,129],"123":[2,159],"130":[2,159],"131":[2,159],"133":[1,130],"135":[1,103],"136":[1,102],"138":[1,97],"139":[1,98],"142":[1,99],"143":[1,100],"144":[1,101],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123],"164":[1,124],"165":[1,125],"166":[1,126],"167":[1,127]}], defaultActions: {"94":[2,4]}, parseError: function parseError(str, hash) { throw new Error(str); diff --git a/lib/rewriter.js b/lib/rewriter.js index da9d2e54..63152670 100644 --- a/lib/rewriter.js +++ b/lib/rewriter.js @@ -180,7 +180,7 @@ stack[stack.length - 2] += stack.pop(); } open = stack[stack.length - 1] > 0; - if (prev && prev.spaced && include(IMPLICIT_FUNC, prev[0]) && include(IMPLICIT_CALL, tag) && !(tag === '!' && post[0] === 'IN')) { + if (prev && prev.spaced && include(IMPLICIT_FUNC, prev[0]) && include(IMPLICIT_CALL, tag) && !(tag === '!' && (post[0] === 'IN' || post[0] === 'OF'))) { this.tokens.splice(i, 0, ['CALL_START', '(', token[2]]); stack[stack.length - 1] += 1; if (include(EXPRESSION_START, tag)) { diff --git a/src/grammar.coffee b/src/grammar.coffee index 850de47b..f9233ac2 100644 --- a/src/grammar.coffee +++ b/src/grammar.coffee @@ -565,8 +565,10 @@ grammar: { o "Expression ?= Expression", -> new OpNode '?=', $1, $3 o "Expression INSTANCEOF Expression", -> new OpNode 'instanceof', $1, $3 - o "Expression IN Expression", -> new OpNode 'in', $1, $3 - o "Expression ! IN Expression", -> new OpNode '!', new ParentheticalNode new OpNode 'in', $1, $4 + o "Expression IN Expression", -> new InNode $1, $3 + o "Expression OF Expression", -> new OpNode 'in', $1, $3 + o "Expression ! IN Expression", -> new OpNode '!', new InNode $1, $4 + o "Expression ! OF Expression", -> new OpNode '!', new ParentheticalNode new OpNode 'in', $1, $4 ] } diff --git a/src/nodes.coffee b/src/nodes.coffee index b99aa6b3..805f1bdb 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -61,14 +61,16 @@ exports.BaseNode: class BaseNode # If the code generation wishes to use the result of a complex expression # in multiple places, ensure that the expression is only ever evaluated once, # by assigning it to a temporary variable. - compileReference: (o, onlyIfNecessary) -> - if onlyIfNecessary and not - (this instanceof CallNode or - this instanceof ValueNode and (not (@base instanceof LiteralNode) or @hasProperties())) - return [this, this] - reference: literal o.scope.freeVariable() - compiled: new AssignNode reference, this - [compiled, reference] + compileReference: (o, options) -> + pair: if not (this instanceof CallNode or this instanceof ValueNode and + (not (@base instanceof LiteralNode) or @hasProperties())) + [this, this] + else + reference: literal o.scope.freeVariable() + compiled: new AssignNode reference, this + [compiled, reference] + return pair unless options and options.precompile + [pair[0].compile(o), pair[1].compile(o)] # Convenience method to grab the current indentation level, plus tabbing in. idt: (tabs) -> @@ -518,8 +520,8 @@ exports.RangeNode: class RangeNode extends BaseNode # Compiles the range's source variables -- where it starts and where it ends. # But only if they need to be cached to avoid double evaluation. compileVariables: (o) -> - [@from, @fromVar]: @from.compileReference o, true - [@to, @toVar]: @to.compileReference o, true + [@from, @fromVar]: @from.compileReference o + [@to, @toVar]: @to.compileReference o parts: [] parts.push @from.compile o if @from isnt @fromVar parts.push @to.compile o if @to isnt @toVar @@ -1052,14 +1054,42 @@ exports.OpNode: class OpNode extends BaseNode parts: parts.reverse() if @flip parts.join('') +#### InNode +exports.InNode: class InNode extends BaseNode + + class: 'InNode' + children: ['object', 'array'] + + constructor: (object, array) -> + @object: object + @array: array + + isArray: -> + @array instanceof ValueNode and @array.isArray() + + compileNode: (o) -> + [@obj1, @obj2]: @object.compileReference o, {precompile: yes} + if @isArray() then @compileOrTest(o) else @compileLoopTest(o) + + compileOrTest: (o) -> + tests: for item, i in @array.base.objects + "${item.compile(o)} === ${if i then @obj2 else @obj1}" + "(${tests.join(' || ')})" + + compileLoopTest: (o) -> + [@arr1, @arr2]: @array.compileReference o, {precompile: yes} + [i, l]: [o.scope.freeVariable(), o.scope.freeVariable()] + body: "!!(function(){ for (var $i=0, $l=${@arr1}.length; $i<$l; $i++) if (${@arr2}[$i] === $@obj2) return true; })()" + if @obj1 isnt @obj2 then "$@obj1;\n$@tab$body" else body + #### TryNode # A classic *try/catch/finally* block. exports.TryNode: class TryNode extends BaseNode - class: 'TryNode' + class: 'TryNode' children: ['attempt', 'recovery', 'ensure'] - isStatement: -> yes + isStatement: -> yes constructor: (attempt, error, recovery, ensure) -> @attempt: attempt @@ -1122,7 +1152,7 @@ exports.ExistenceNode: class ExistenceNode extends BaseNode # because other nodes like to check the existence of their variables as well. # Be careful not to double-evaluate anything. @compileTest: (o, variable) -> - [first, second]: variable.compileReference o, true + [first, second]: variable.compileReference o "(typeof ${first.compile(o)} !== \"undefined\" && ${second.compile(o)} !== null)" #### ParentheticalNode diff --git a/src/rewriter.coffee b/src/rewriter.coffee index 6136e8a0..1b147d10 100644 --- a/src/rewriter.coffee +++ b/src/rewriter.coffee @@ -127,7 +127,7 @@ exports.Rewriter: class Rewriter stack[stack.length - 2]: + stack.pop() if tag is 'OUTDENT' open: stack[stack.length - 1] > 0 if prev and prev.spaced and include(IMPLICIT_FUNC, prev[0]) and include(IMPLICIT_CALL, tag) and - not (tag is '!' and post[0] is 'IN') + not (tag is '!' and (post[0] is 'IN' or post[0] is 'OF')) @tokens.splice i, 0, ['CALL_START', '(', token[2]] stack[stack.length - 1]: + 1 stack.push 0 if include(EXPRESSION_START, tag) diff --git a/test/test_comprehensions.coffee b/test/test_comprehensions.coffee index 9bbd956e..55723fbb 100644 --- a/test/test_comprehensions.coffee +++ b/test/test_comprehensions.coffee @@ -56,7 +56,7 @@ ok evens.join(', ') is '4, 6, 8' # The in operator still works, standalone. -ok 2 in evens +ok 2 of evens # Ensure that the closure wrapper preserves local variables. diff --git a/test/test_operations.coffee b/test/test_operations.coffee index 3053e26f..9a6e7466 100644 --- a/test/test_operations.coffee +++ b/test/test_operations.coffee @@ -38,5 +38,11 @@ ok val is 1 # Allow "if x not in y" obj: {a: true} -ok 'b' not in obj -ok not ('a' not in obj) +ok 'a' of obj +ok 'b' not of obj + +# And for "a in b" with array presence. +ok 100 in [100, 200, 300] +array: [100, 200, 300] +ok 100 in array +ok 1 not in array \ No newline at end of file