From e7cc4e4faf792e38e0c9e47a10e27afe852aa45d Mon Sep 17 00:00:00 2001 From: satyr Date: Tue, 26 Oct 2010 13:09:46 +0900 Subject: [PATCH 1/7] implemented default arguments --- lib/grammar.js | 20 ++- lib/lexer.js | 22 +-- lib/nodes.js | 78 ++++------ lib/parser.js | 308 +++++++++++++++++++------------------ src/grammar.coffee | 10 +- src/lexer.coffee | 17 +- src/nodes.coffee | 59 ++++--- test/test_arguments.coffee | 8 +- 8 files changed, 268 insertions(+), 254 deletions(-) diff --git a/lib/grammar.js b/lib/grammar.js index 6763eb0a..85101603 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -124,14 +124,18 @@ }) ], Param: [ - o('PARAM', function() { - return new Literal($1); - }), o('PARAM ...', function() { - return new Param($1, false, true); - }), o('@ PARAM', function() { - return new Param($2, true); - }), o('@ PARAM ...', function() { - return new Param($2, true, true); + o('Identifier', function() { + return new Param($1); + }), o('Identifier ...', function() { + return new Param($1, null, true); + }), o('Identifier = Expression', function() { + return new Param($1, $3); + }), o('ThisProperty', function() { + return new Param($1, null); + }), o('ThisProperty ...', function() { + return new Param($1, null, true); + }), o('ThisProperty = Expression', function() { + return new Param($1, $3); }) ], Splat: [ diff --git a/lib/lexer.js b/lib/lexer.js index 0d2b6b20..6eb6053e 100644 --- a/lib/lexer.js +++ b/lib/lexer.js @@ -402,23 +402,27 @@ return doc; }; Lexer.prototype.tagParameters = function() { - var i, tok; + var i, stack, tok, tokens; if (this.tag() !== ')') { return this; } - i = this.tokens.length; - while (tok = this.tokens[--i]) { + stack = []; + tokens = this.tokens; + i = tokens.length; + tokens[--i][0] = 'PARAM_END'; + while (tok = tokens[--i]) { switch (tok[0]) { - case 'IDENTIFIER': - tok[0] = 'PARAM'; - break; case ')': - tok[0] = 'PARAM_END'; + stack.push(tok); break; case '(': case 'CALL_START': - tok[0] = 'PARAM_START'; - return true; + if (stack.length) { + stack.pop(); + } else { + tok[0] = 'PARAM_START'; + return this; + } } } return this; diff --git a/lib/nodes.js b/lib/nodes.js index 2b51d292..eb2fd38c 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -1007,10 +1007,10 @@ })(); exports.Code = (function() { Code = (function() { - function Code(params, body, tag) { + function Code(_arg, _arg2, tag) { + this.body = _arg2 != null ? _arg2 : new Expressions; + this.params = _arg != null ? _arg : []; Code.__super__.constructor.call(this); - this.params = params || []; - this.body = body || new Expressions; this.bound = tag === 'boundfunc'; if (this.bound) { this.context = 'this'; @@ -1022,32 +1022,37 @@ __extends(Code, Base); Code.prototype.children = ['params', 'body']; Code.prototype.compileNode = function(o) { - var _i, _len, _len2, _ref2, _ref3, _result, close, code, comm, empty, func, i, idt, open, param, params, scope, sharedScope, splat, value; + var _len, _len2, _ref2, close, code, comm, empty, func, i, idt, name, open, param, params, scope, sharedScope, splat, value; sharedScope = del(o, 'sharedScope'); o.scope = scope = sharedScope || new Scope(o.scope, this.body, this); o.indent = this.idt(1); empty = this.body.expressions.length === 0; delete o.bare; delete o.globals; - splat = undefined; + splat = null; params = []; _ref2 = this.params; for (i = 0, _len = _ref2.length; i < _len; i++) { param = _ref2[i]; if (splat) { if (param.attach) { - param.assign = new Assign(new Value(new Literal('this'), [new Accessor(param.value)])); + param.assign = new Assign(param.name); this.body.expressions.splice(splat.index + 1, 0, param.assign); + } else if (param.value) { + this.body.unshift(new Assign(new Value(param.name), param.value, '?=')); } splat.trailings.push(param); } else { if (param.attach) { - value = param.value; - _ref3 = [new Literal(scope.freeVariable('arg')), param.splat], param = _ref3[0], param.splat = _ref3[1]; - this.body.unshift(new Assign(new Value(new Literal('this'), [new Accessor(value)]), param)); + name = param.name, value = param.value, splat = param.splat; + param = new Literal(scope.freeVariable('arg')); + param.splat = splat; + this.body.unshift(new Assign(name, value ? new Op('?', param, value) : param)); + } else if (param.value) { + this.body.unshift(new Assign(new Value(param.name), param.value, '?=')); } if (param.splat) { - splat = new Splat(param.value); + splat = new Splat(param.name || param); splat.index = i; splat.trailings = []; splat.arglength = this.params.length; @@ -1061,21 +1066,16 @@ if (!(empty || this.noReturn)) { this.body.makeReturn(); } - params = (function() { - _result = []; - for (_i = 0, _len2 = params.length; _i < _len2; _i++) { - param = params[_i]; - scope.parameter(param = param.compile(o)); - _result.push(param); - } - return _result; - })(); + for (i = 0, _len2 = params.length; i < _len2; i++) { + param = params[i]; + scope.parameter(params[i] = param.compile(o)); + } comm = this.comment ? this.comment.compile(o) + '\n' : ''; if (this.className) { o.indent = this.idt(2); } idt = this.idt(1); - code = this.body.expressions.length ? "\n" + (this.body.compileWithDeclarations(o)) + "\n" : ''; + code = this.body.isEmpty() ? '' : "\n" + (this.body.compileWithDeclarations(o)) + "\n"; if (this.className) { open = "(function() {\n" + comm + idt + "function " + this.className + "("; close = "" + (code && idt) + "}\n" + idt + "return " + this.className + ";\n" + this.tab + "})()"; @@ -1097,30 +1097,20 @@ })(); exports.Param = (function() { Param = (function() { - function Param(name, _arg, _arg2) { - this.splat = _arg2; - this.attach = _arg; + function Param(_arg, _arg2, _arg3) { + this.splat = _arg3; + this.value = _arg2; + this.name = _arg; Param.__super__.constructor.call(this); - this.value = new Literal(this.name = name); + this.attach = this.name instanceof Value; return this; } return Param; })(); __extends(Param, Base); - Param.prototype.children = ['name']; + Param.prototype.children = ['name', 'value']; Param.prototype.compile = function(o) { - return this.value.compile(o, LEVEL_LIST); - }; - Param.prototype.toString = function() { - var name; - name = this.name; - if (this.attach) { - name = '@' + name; - } - if (this.splat) { - name += '...'; - } - return new Literal(name).toString(); + return this.name.compile(o, LEVEL_LIST); }; return Param; })(); @@ -1143,7 +1133,7 @@ return this.index != null ? this.compileParam(o) : this.name.compile(o); }; Splat.prototype.compileParam = function(o) { - var _len, _ref2, assign, end, idx, len, name, pos, trailing, variadic; + var _len, _ref2, assign, end, idx, len, name, param, pos, value, variadic; name = this.name.compile(o); o.scope.find(name); end = ''; @@ -1155,14 +1145,14 @@ end = this.trailings.length ? ", " + len + " - " + this.trailings.length : undefined; _ref2 = this.trailings; for (idx = 0, _len = _ref2.length; idx < _len; idx++) { - trailing = _ref2[idx]; - if (trailing.attach) { - assign = trailing.assign; - trailing = new Literal(o.scope.freeVariable('arg')); - assign.value = trailing; + param = _ref2[idx]; + if (param.attach) { + assign = param.assign, value = param.value; + param = new Literal(o.scope.freeVariable('arg')); + assign.value = value ? new Op('?', param, value) : param; } pos = this.trailings.length - idx; - o.scope.assign(trailing.compile(o), "arguments[" + variadic + " ? " + len + " - " + pos + " : " + (this.index + idx) + "]"); + o.scope.assign(param.compile(o), "arguments[" + variadic + " ? " + len + " - " + pos + " : " + (this.index + idx) + "]"); } } return "" + name + " = " + (utility('slice')) + ".call(arguments, " + this.index + end + ")"; diff --git a/lib/parser.js b/lib/parser.js index d6478e5a..ad7f8ead 100755 --- a/lib/parser.js +++ b/lib/parser.js @@ -2,9 +2,9 @@ var parser = (function(){ 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,"DEBUGGER":14,"Value":15,"Invocation":16,"Code":17,"Operation":18,"Assign":19,"If":20,"Try":21,"While":22,"For":23,"Switch":24,"Extends":25,"Class":26,"Comment":27,"INDENT":28,"OUTDENT":29,"Identifier":30,"IDENTIFIER":31,"AlphaNumeric":32,"NUMBER":33,"STRING":34,"Literal":35,"JS":36,"REGEX":37,"BOOL":38,"Assignable":39,"=":40,"AssignObj":41,"ObjAssignable":42,":":43,"ThisProperty":44,"Parenthetical":45,"RETURN":46,"HERECOMMENT":47,"PARAM_START":48,"ParamList":49,"PARAM_END":50,"FuncGlyph":51,"->":52,"=>":53,"OptComma":54,",":55,"Param":56,"PARAM":57,"...":58,"@":59,"Splat":60,"SimpleAssignable":61,"Accessor":62,"Array":63,"Object":64,"This":65,".":66,"?.":67,"::":68,"Index":69,"INDEX_START":70,"INDEX_END":71,"INDEX_SOAK":72,"INDEX_PROTO":73,"{":74,"AssignList":75,"}":76,"CLASS":77,"EXTENDS":78,"ClassBody":79,"ClassAssign":80,"OptFuncExist":81,"Arguments":82,"SUPER":83,"FUNC_EXIST":84,"CALL_START":85,"CALL_END":86,"ArgList":87,"THIS":88,"[":89,"]":90,"Arg":91,"SimpleArgs":92,"TRY":93,"Catch":94,"FINALLY":95,"CATCH":96,"THROW":97,"(":98,")":99,"WhileSource":100,"WHILE":101,"WHEN":102,"UNTIL":103,"Loop":104,"LOOP":105,"ForBody":106,"ForValue":107,"ForIn":108,"FORIN":109,"BY":110,"ForOf":111,"FOROF":112,"ForTo":113,"TO":114,"FOR":115,"ALL":116,"FROM":117,"SWITCH":118,"Whens":119,"ELSE":120,"When":121,"LEADING_WHEN":122,"IfBlock":123,"IF":124,"UNLESS":125,"POST_IF":126,"POST_UNLESS":127,"UNARY":128,"-":129,"+":130,"--":131,"++":132,"?":133,"MATH":134,"SHIFT":135,"COMPARE":136,"LOGIC":137,"RELATION":138,"COMPOUND_ASSIGN":139,"$accept":0,"$end":1}, -terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","14":"DEBUGGER","28":"INDENT","29":"OUTDENT","31":"IDENTIFIER","33":"NUMBER","34":"STRING","36":"JS","37":"REGEX","38":"BOOL","40":"=","43":":","46":"RETURN","47":"HERECOMMENT","48":"PARAM_START","50":"PARAM_END","52":"->","53":"=>","55":",","57":"PARAM","58":"...","59":"@","66":".","67":"?.","68":"::","70":"INDEX_START","71":"INDEX_END","72":"INDEX_SOAK","73":"INDEX_PROTO","74":"{","76":"}","77":"CLASS","78":"EXTENDS","83":"SUPER","84":"FUNC_EXIST","85":"CALL_START","86":"CALL_END","88":"THIS","89":"[","90":"]","93":"TRY","95":"FINALLY","96":"CATCH","97":"THROW","98":"(","99":")","101":"WHILE","102":"WHEN","103":"UNTIL","105":"LOOP","109":"FORIN","110":"BY","112":"FOROF","114":"TO","115":"FOR","116":"ALL","117":"FROM","118":"SWITCH","120":"ELSE","122":"LEADING_WHEN","124":"IF","125":"UNLESS","126":"POST_IF","127":"POST_UNLESS","128":"UNARY","129":"-","130":"+","131":"--","132":"++","133":"?","134":"MATH","135":"SHIFT","136":"COMPARE","137":"LOGIC","138":"RELATION","139":"COMPOUND_ASSIGN"}, -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],[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],[6,3],[6,2],[6,2],[30,1],[32,1],[32,1],[35,1],[35,1],[35,1],[35,1],[19,3],[19,5],[41,1],[41,3],[41,5],[41,1],[41,1],[42,1],[42,1],[42,1],[10,2],[10,1],[27,1],[17,5],[17,2],[51,1],[51,1],[54,0],[54,1],[49,0],[49,1],[49,3],[56,1],[56,2],[56,2],[56,3],[60,2],[61,1],[61,2],[61,2],[61,1],[39,1],[39,1],[39,1],[15,1],[15,1],[15,1],[15,1],[62,2],[62,2],[62,2],[62,1],[62,1],[69,3],[69,2],[69,2],[64,4],[75,0],[75,1],[75,3],[75,4],[75,6],[26,2],[26,4],[26,5],[26,7],[26,4],[26,1],[26,3],[26,6],[80,1],[80,3],[80,5],[79,0],[79,1],[79,3],[79,3],[25,3],[16,3],[16,3],[16,1],[16,2],[81,0],[81,1],[82,2],[82,4],[65,1],[65,1],[44,2],[63,2],[63,4],[87,1],[87,3],[87,4],[87,4],[87,6],[91,1],[91,1],[92,1],[92,3],[21,2],[21,3],[21,4],[21,5],[94,3],[11,2],[45,3],[100,2],[100,4],[100,2],[100,4],[22,2],[22,2],[22,2],[22,1],[104,2],[104,2],[23,2],[23,2],[23,2],[107,1],[107,1],[107,1],[108,2],[108,4],[108,4],[108,6],[111,2],[111,4],[113,2],[113,4],[113,4],[113,6],[106,3],[106,5],[106,3],[106,5],[106,4],[106,6],[106,5],[24,5],[24,7],[24,4],[24,6],[119,1],[119,2],[121,3],[121,4],[123,3],[123,3],[123,5],[123,3],[20,1],[20,3],[20,3],[20,3],[20,3],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,5]], +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,"DEBUGGER":14,"Value":15,"Invocation":16,"Code":17,"Operation":18,"Assign":19,"If":20,"Try":21,"While":22,"For":23,"Switch":24,"Extends":25,"Class":26,"Comment":27,"INDENT":28,"OUTDENT":29,"Identifier":30,"IDENTIFIER":31,"AlphaNumeric":32,"NUMBER":33,"STRING":34,"Literal":35,"JS":36,"REGEX":37,"BOOL":38,"Assignable":39,"=":40,"AssignObj":41,"ObjAssignable":42,":":43,"ThisProperty":44,"Parenthetical":45,"RETURN":46,"HERECOMMENT":47,"PARAM_START":48,"ParamList":49,"PARAM_END":50,"FuncGlyph":51,"->":52,"=>":53,"OptComma":54,",":55,"Param":56,"...":57,"Splat":58,"SimpleAssignable":59,"Accessor":60,"Array":61,"Object":62,"This":63,".":64,"?.":65,"::":66,"Index":67,"INDEX_START":68,"INDEX_END":69,"INDEX_SOAK":70,"INDEX_PROTO":71,"{":72,"AssignList":73,"}":74,"CLASS":75,"EXTENDS":76,"ClassBody":77,"ClassAssign":78,"OptFuncExist":79,"Arguments":80,"SUPER":81,"FUNC_EXIST":82,"CALL_START":83,"CALL_END":84,"ArgList":85,"THIS":86,"@":87,"[":88,"]":89,"Arg":90,"SimpleArgs":91,"TRY":92,"Catch":93,"FINALLY":94,"CATCH":95,"THROW":96,"(":97,")":98,"WhileSource":99,"WHILE":100,"WHEN":101,"UNTIL":102,"Loop":103,"LOOP":104,"ForBody":105,"ForValue":106,"ForIn":107,"FORIN":108,"BY":109,"ForOf":110,"FOROF":111,"ForTo":112,"TO":113,"FOR":114,"ALL":115,"FROM":116,"SWITCH":117,"Whens":118,"ELSE":119,"When":120,"LEADING_WHEN":121,"IfBlock":122,"IF":123,"UNLESS":124,"POST_IF":125,"POST_UNLESS":126,"UNARY":127,"-":128,"+":129,"--":130,"++":131,"?":132,"MATH":133,"SHIFT":134,"COMPARE":135,"LOGIC":136,"RELATION":137,"COMPOUND_ASSIGN":138,"$accept":0,"$end":1}, +terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","14":"DEBUGGER","28":"INDENT","29":"OUTDENT","31":"IDENTIFIER","33":"NUMBER","34":"STRING","36":"JS","37":"REGEX","38":"BOOL","40":"=","43":":","46":"RETURN","47":"HERECOMMENT","48":"PARAM_START","50":"PARAM_END","52":"->","53":"=>","55":",","57":"...","64":".","65":"?.","66":"::","68":"INDEX_START","69":"INDEX_END","70":"INDEX_SOAK","71":"INDEX_PROTO","72":"{","74":"}","75":"CLASS","76":"EXTENDS","81":"SUPER","82":"FUNC_EXIST","83":"CALL_START","84":"CALL_END","86":"THIS","87":"@","88":"[","89":"]","92":"TRY","94":"FINALLY","95":"CATCH","96":"THROW","97":"(","98":")","100":"WHILE","101":"WHEN","102":"UNTIL","104":"LOOP","108":"FORIN","109":"BY","111":"FOROF","113":"TO","114":"FOR","115":"ALL","116":"FROM","117":"SWITCH","119":"ELSE","121":"LEADING_WHEN","123":"IF","124":"UNLESS","125":"POST_IF","126":"POST_UNLESS","127":"UNARY","128":"-","129":"+","130":"--","131":"++","132":"?","133":"MATH","134":"SHIFT","135":"COMPARE","136":"LOGIC","137":"RELATION","138":"COMPOUND_ASSIGN"}, +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],[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],[6,3],[6,2],[6,2],[30,1],[32,1],[32,1],[35,1],[35,1],[35,1],[35,1],[19,3],[19,5],[41,1],[41,3],[41,5],[41,1],[41,1],[42,1],[42,1],[42,1],[10,2],[10,1],[27,1],[17,5],[17,2],[51,1],[51,1],[54,0],[54,1],[49,0],[49,1],[49,3],[56,1],[56,2],[56,3],[56,1],[56,2],[56,3],[58,2],[59,1],[59,2],[59,2],[59,1],[39,1],[39,1],[39,1],[15,1],[15,1],[15,1],[15,1],[60,2],[60,2],[60,2],[60,1],[60,1],[67,3],[67,2],[67,2],[62,4],[73,0],[73,1],[73,3],[73,4],[73,6],[26,2],[26,4],[26,5],[26,7],[26,4],[26,1],[26,3],[26,6],[78,1],[78,3],[78,5],[77,0],[77,1],[77,3],[77,3],[25,3],[16,3],[16,3],[16,1],[16,2],[79,0],[79,1],[80,2],[80,4],[63,1],[63,1],[44,2],[61,2],[61,4],[85,1],[85,3],[85,4],[85,4],[85,6],[90,1],[90,1],[91,1],[91,3],[21,2],[21,3],[21,4],[21,5],[93,3],[11,2],[45,3],[99,2],[99,4],[99,2],[99,4],[22,2],[22,2],[22,2],[22,1],[103,2],[103,2],[23,2],[23,2],[23,2],[106,1],[106,1],[106,1],[107,2],[107,4],[107,4],[107,6],[110,2],[110,4],[112,2],[112,4],[112,4],[112,6],[105,3],[105,5],[105,3],[105,5],[105,4],[105,6],[105,5],[24,5],[24,7],[24,4],[24,6],[118,1],[118,2],[120,3],[120,4],[122,3],[122,3],[122,5],[122,3],[20,1],[20,3],[20,3],[20,3],[20,3],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,5]], performAction: function anonymous(yytext,yyleng,yylineno,yy) { var $$ = arguments[5],$0=arguments[5].length; @@ -127,368 +127,372 @@ case 58:this.$ = [$$[$0-1+1-1]]; break; case 59:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; -case 60:this.$ = new yy.Literal($$[$0-1+1-1]); +case 60:this.$ = new yy.Param($$[$0-1+1-1]); break; -case 61:this.$ = new yy.Param($$[$0-2+1-1], false, true); +case 61:this.$ = new yy.Param($$[$0-2+1-1], null, true); break; -case 62:this.$ = new yy.Param($$[$0-2+2-1], true); +case 62:this.$ = new yy.Param($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 63:this.$ = new yy.Param($$[$0-3+2-1], true, true); +case 63:this.$ = new yy.Param($$[$0-1+1-1], null); break; -case 64:this.$ = new yy.Splat($$[$0-2+1-1]); +case 64:this.$ = new yy.Param($$[$0-2+1-1], null, true); break; -case 65:this.$ = new yy.Value($$[$0-1+1-1]); +case 65:this.$ = new yy.Param($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 66:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); +case 66:this.$ = new yy.Splat($$[$0-2+1-1]); break; -case 67:this.$ = new yy.Value($$[$0-2+1-1], [$$[$0-2+2-1]]); +case 67:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 68:this.$ = $$[$0-1+1-1]; +case 68:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); break; -case 69:this.$ = $$[$0-1+1-1]; +case 69:this.$ = new yy.Value($$[$0-2+1-1], [$$[$0-2+2-1]]); break; -case 70:this.$ = new yy.Value($$[$0-1+1-1]); +case 70:this.$ = $$[$0-1+1-1]; break; -case 71:this.$ = new yy.Value($$[$0-1+1-1]); +case 71:this.$ = $$[$0-1+1-1]; break; -case 72:this.$ = $$[$0-1+1-1]; +case 72:this.$ = new yy.Value($$[$0-1+1-1]); break; case 73:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 74:this.$ = new yy.Value($$[$0-1+1-1]); +case 74:this.$ = $$[$0-1+1-1]; break; -case 75:this.$ = $$[$0-1+1-1]; +case 75:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 76:this.$ = new yy.Accessor($$[$0-2+2-1]); +case 76:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 77:this.$ = new yy.Accessor($$[$0-2+2-1], 'soak'); +case 77:this.$ = $$[$0-1+1-1]; break; -case 78:this.$ = new yy.Accessor($$[$0-2+2-1], 'proto'); +case 78:this.$ = new yy.Accessor($$[$0-2+2-1]); break; -case 79:this.$ = new yy.Accessor(new yy.Literal('prototype')); +case 79:this.$ = new yy.Accessor($$[$0-2+2-1], 'soak'); break; -case 80:this.$ = $$[$0-1+1-1]; +case 80:this.$ = new yy.Accessor($$[$0-2+2-1], 'proto'); break; -case 81:this.$ = new yy.Index($$[$0-3+2-1]); +case 81:this.$ = new yy.Accessor(new yy.Literal('prototype')); break; -case 82:this.$ = yy.extend($$[$0-2+2-1], { +case 82:this.$ = $$[$0-1+1-1]; +break; +case 83:this.$ = new yy.Index($$[$0-3+2-1]); +break; +case 84:this.$ = yy.extend($$[$0-2+2-1], { soak: true }); break; -case 83:this.$ = yy.extend($$[$0-2+2-1], { +case 85:this.$ = yy.extend($$[$0-2+2-1], { proto: true }); break; -case 84:this.$ = new yy.Obj($$[$0-4+2-1]); +case 86:this.$ = new yy.Obj($$[$0-4+2-1]); break; -case 85:this.$ = []; +case 87:this.$ = []; break; -case 86:this.$ = [$$[$0-1+1-1]]; +case 88:this.$ = [$$[$0-1+1-1]]; break; -case 87:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +case 89:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; -case 88:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); +case 90:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); break; -case 89:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); +case 91:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); break; -case 90:this.$ = new yy.Class($$[$0-2+2-1]); +case 92:this.$ = new yy.Class($$[$0-2+2-1]); break; -case 91:this.$ = new yy.Class($$[$0-4+2-1], $$[$0-4+4-1]); +case 93:this.$ = new yy.Class($$[$0-4+2-1], $$[$0-4+4-1]); break; -case 92:this.$ = new yy.Class($$[$0-5+2-1], null, $$[$0-5+4-1]); +case 94:this.$ = new yy.Class($$[$0-5+2-1], null, $$[$0-5+4-1]); break; -case 93:this.$ = new yy.Class($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); +case 95:this.$ = new yy.Class($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); break; -case 94:this.$ = new yy.Class(null, null, $$[$0-4+3-1]); +case 96:this.$ = new yy.Class(null, null, $$[$0-4+3-1]); break; -case 95:this.$ = new yy.Class(null, null, new yy.Expressions); +case 97:this.$ = new yy.Class(null, null, new yy.Expressions); break; -case 96:this.$ = new yy.Class(null, $$[$0-3+3-1], new yy.Expressions); +case 98:this.$ = new yy.Class(null, $$[$0-3+3-1], new yy.Expressions); break; -case 97:this.$ = new yy.Class(null, $$[$0-6+3-1], $$[$0-6+5-1]); +case 99:this.$ = new yy.Class(null, $$[$0-6+3-1], $$[$0-6+5-1]); break; -case 98:this.$ = $$[$0-1+1-1]; +case 100:this.$ = $$[$0-1+1-1]; break; -case 99:this.$ = new yy.Assign(new yy.Value($$[$0-3+1-1]), $$[$0-3+3-1], 'this'); +case 101:this.$ = new yy.Assign(new yy.Value($$[$0-3+1-1]), $$[$0-3+3-1], 'this'); break; -case 100:this.$ = new yy.Assign(new yy.Value($$[$0-5+1-1]), $$[$0-5+4-1], 'this'); +case 102:this.$ = new yy.Assign(new yy.Value($$[$0-5+1-1]), $$[$0-5+4-1], 'this'); break; -case 101:this.$ = []; +case 103:this.$ = []; break; -case 102:this.$ = [$$[$0-1+1-1]]; +case 104:this.$ = [$$[$0-1+1-1]]; break; -case 103:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +case 105:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; -case 104:this.$ = $$[$0-3+2-1]; +case 106:this.$ = $$[$0-3+2-1]; break; -case 105:this.$ = new yy.Extends($$[$0-3+1-1], $$[$0-3+3-1]); +case 107:this.$ = new yy.Extends($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 106:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); +case 108:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); break; -case 107:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); +case 109:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); break; -case 108:this.$ = new yy.Call('super', [new yy.Splat(new yy.Literal('arguments'))]); +case 110:this.$ = new yy.Call('super', [new yy.Splat(new yy.Literal('arguments'))]); break; -case 109:this.$ = new yy.Call('super', $$[$0-2+2-1]); +case 111:this.$ = new yy.Call('super', $$[$0-2+2-1]); break; -case 110:this.$ = false; +case 112:this.$ = false; break; -case 111:this.$ = true; +case 113:this.$ = true; break; -case 112:this.$ = []; +case 114:this.$ = []; break; -case 113:this.$ = $$[$0-4+2-1]; +case 115:this.$ = $$[$0-4+2-1]; break; -case 114:this.$ = new yy.Value(new yy.Literal('this')); +case 116:this.$ = new yy.Value(new yy.Literal('this')); break; -case 115:this.$ = new yy.Value(new yy.Literal('this')); +case 117:this.$ = new yy.Value(new yy.Literal('this')); break; -case 116:this.$ = new yy.Value(new yy.Literal('this'), [new yy.Accessor($$[$0-2+2-1])], 'this'); +case 118:this.$ = new yy.Value(new yy.Literal('this'), [new yy.Accessor($$[$0-2+2-1])], 'this'); break; -case 117:this.$ = new yy.Arr([]); +case 119:this.$ = new yy.Arr([]); break; -case 118:this.$ = new yy.Arr($$[$0-4+2-1]); +case 120:this.$ = new yy.Arr($$[$0-4+2-1]); break; -case 119:this.$ = [$$[$0-1+1-1]]; +case 121:this.$ = [$$[$0-1+1-1]]; break; -case 120:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +case 122:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; -case 121:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); +case 123:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); break; -case 122:this.$ = $$[$0-4+2-1]; +case 124:this.$ = $$[$0-4+2-1]; break; -case 123:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); -break; -case 124:this.$ = $$[$0-1+1-1]; -break; -case 125:this.$ = $$[$0-1+1-1]; +case 125:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); break; case 126:this.$ = $$[$0-1+1-1]; break; -case 127:this.$ = [].concat($$[$0-3+1-1], $$[$0-3+3-1]); +case 127:this.$ = $$[$0-1+1-1]; break; -case 128:this.$ = new yy.Try($$[$0-2+2-1]); +case 128:this.$ = $$[$0-1+1-1]; break; -case 129:this.$ = new yy.Try($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); +case 129:this.$ = [].concat($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 130:this.$ = new yy.Try($$[$0-4+2-1], null, null, $$[$0-4+4-1]); +case 130:this.$ = new yy.Try($$[$0-2+2-1]); break; -case 131:this.$ = new yy.Try($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); +case 131:this.$ = new yy.Try($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); break; -case 132:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; +case 132:this.$ = new yy.Try($$[$0-4+2-1], null, null, $$[$0-4+4-1]); break; -case 133:this.$ = new yy.Throw($$[$0-2+2-1]); +case 133:this.$ = new yy.Try($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); break; -case 134:this.$ = new yy.Parens($$[$0-3+2-1]); +case 134:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; break; -case 135:this.$ = new yy.While($$[$0-2+2-1]); +case 135:this.$ = new yy.Throw($$[$0-2+2-1]); break; -case 136:this.$ = new yy.While($$[$0-4+2-1], { +case 136:this.$ = new yy.Parens($$[$0-3+2-1]); +break; +case 137:this.$ = new yy.While($$[$0-2+2-1]); +break; +case 138:this.$ = new yy.While($$[$0-4+2-1], { guard: $$[$0-4+4-1] }); break; -case 137:this.$ = new yy.While($$[$0-2+2-1], { +case 139:this.$ = new yy.While($$[$0-2+2-1], { invert: true }); break; -case 138:this.$ = new yy.While($$[$0-4+2-1], { +case 140:this.$ = new yy.While($$[$0-4+2-1], { invert: true, guard: $$[$0-4+4-1] }); break; -case 139:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); +case 141:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); break; -case 140:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); +case 142:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); break; -case 141:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); +case 143:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); break; -case 142:this.$ = $$[$0-1+1-1]; +case 144:this.$ = $$[$0-1+1-1]; break; -case 143:this.$ = new yy.While(new yy.Literal('true')).addBody($$[$0-2+2-1]); +case 145:this.$ = new yy.While(new yy.Literal('true')).addBody($$[$0-2+2-1]); break; -case 144:this.$ = new yy.While(new yy.Literal('true')).addBody(yy.Expressions.wrap([$$[$0-2+2-1]])); +case 146:this.$ = new yy.While(new yy.Literal('true')).addBody(yy.Expressions.wrap([$$[$0-2+2-1]])); break; -case 145:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); +case 147:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 146:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); +case 148:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 147:this.$ = new yy.For($$[$0-2+2-1], $$[$0-2+1-1]); +case 149:this.$ = new yy.For($$[$0-2+2-1], $$[$0-2+1-1]); break; -case 148:this.$ = $$[$0-1+1-1]; +case 150:this.$ = $$[$0-1+1-1]; break; -case 149:this.$ = new yy.Value($$[$0-1+1-1]); +case 151:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 150:this.$ = new yy.Value($$[$0-1+1-1]); +case 152:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 151:this.$ = { +case 153:this.$ = { source: $$[$0-2+2-1] }; break; -case 152:this.$ = { +case 154:this.$ = { source: $$[$0-4+2-1], guard: $$[$0-4+4-1] }; break; -case 153:this.$ = { +case 155:this.$ = { source: $$[$0-4+2-1], step: $$[$0-4+4-1] }; break; -case 154:this.$ = { +case 156:this.$ = { source: $$[$0-6+2-1], step: $$[$0-6+4-1], guard: $$[$0-6+6-1] }; break; -case 155:this.$ = { +case 157:this.$ = { object: true, source: $$[$0-2+2-1] }; break; -case 156:this.$ = { +case 158:this.$ = { object: true, source: $$[$0-4+2-1], guard: $$[$0-4+4-1] }; break; -case 157:this.$ = { +case 159:this.$ = { to: $$[$0-2+2-1] }; break; -case 158:this.$ = { +case 160:this.$ = { to: $$[$0-4+2-1], guard: $$[$0-4+4-1] }; break; -case 159:this.$ = { +case 161:this.$ = { to: $$[$0-4+2-1], step: $$[$0-4+4-1] }; break; -case 160:this.$ = { +case 162:this.$ = { to: $$[$0-6+2-1], step: $$[$0-6+4-1], guard: $$[$0-6+6-1] }; break; -case 161:this.$ = yy.extend($$[$0-3+3-1], { +case 163:this.$ = yy.extend($$[$0-3+3-1], { name: $$[$0-3+2-1] }); break; -case 162:this.$ = yy.extend($$[$0-5+5-1], { +case 164:this.$ = yy.extend($$[$0-5+5-1], { name: $$[$0-5+2-1], index: $$[$0-5+4-1] }); break; -case 163:this.$ = yy.extend($$[$0-3+3-1], { +case 165:this.$ = yy.extend($$[$0-3+3-1], { index: $$[$0-3+2-1] }); break; -case 164:this.$ = yy.extend($$[$0-5+5-1], { +case 166:this.$ = yy.extend($$[$0-5+5-1], { index: $$[$0-5+2-1], name: $$[$0-5+4-1] }); break; -case 165:this.$ = yy.extend($$[$0-4+4-1], { +case 167:this.$ = yy.extend($$[$0-4+4-1], { raw: true, index: $$[$0-4+3-1] }); break; -case 166:this.$ = yy.extend($$[$0-6+6-1], { +case 168:this.$ = yy.extend($$[$0-6+6-1], { raw: true, index: $$[$0-6+3-1], name: $$[$0-6+5-1] }); break; -case 167:this.$ = yy.extend($$[$0-5+5-1], { +case 169:this.$ = yy.extend($$[$0-5+5-1], { index: $$[$0-5+2-1], from: $$[$0-5+4-1] }); break; -case 168:this.$ = new yy.Switch($$[$0-5+2-1], $$[$0-5+4-1]); +case 170:this.$ = new yy.Switch($$[$0-5+2-1], $$[$0-5+4-1]); break; -case 169:this.$ = new yy.Switch($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); +case 171:this.$ = new yy.Switch($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); break; -case 170:this.$ = new yy.Switch(null, $$[$0-4+3-1]); +case 172:this.$ = new yy.Switch(null, $$[$0-4+3-1]); break; -case 171:this.$ = new yy.Switch(null, $$[$0-6+3-1], $$[$0-6+5-1]); +case 173:this.$ = new yy.Switch(null, $$[$0-6+3-1], $$[$0-6+5-1]); break; -case 172:this.$ = $$[$0-1+1-1]; +case 174:this.$ = $$[$0-1+1-1]; break; -case 173:this.$ = $$[$0-2+1-1].concat($$[$0-2+2-1]); +case 175:this.$ = $$[$0-2+1-1].concat($$[$0-2+2-1]); break; -case 174:this.$ = [[$$[$0-3+2-1], $$[$0-3+3-1]]]; +case 176:this.$ = [[$$[$0-3+2-1], $$[$0-3+3-1]]]; break; -case 175:this.$ = [[$$[$0-4+2-1], $$[$0-4+3-1]]]; +case 177:this.$ = [[$$[$0-4+2-1], $$[$0-4+3-1]]]; break; -case 176:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1]); +case 178:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1]); break; -case 177:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1], { +case 179:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1], { invert: true }); break; -case 178:this.$ = $$[$0-5+1-1].addElse(new yy.If($$[$0-5+4-1], $$[$0-5+5-1])); +case 180:this.$ = $$[$0-5+1-1].addElse(new yy.If($$[$0-5+4-1], $$[$0-5+5-1])); break; -case 179:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); +case 181:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); break; -case 180:this.$ = $$[$0-1+1-1]; -break; -case 181:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { - statement: true - }); -break; -case 182:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { - statement: true - }); +case 182:this.$ = $$[$0-1+1-1]; break; case 183:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { - statement: true, - invert: true + statement: true }); break; case 184:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true + }); +break; +case 185:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { statement: true, invert: true }); break; -case 185:this.$ = new yy.Op($$[$0-2+1-1], $$[$0-2+2-1]); +case 186:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true, + invert: true + }); break; -case 186:this.$ = new yy.Op('-', $$[$0-2+2-1]); +case 187:this.$ = new yy.Op($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 187:this.$ = new yy.Op('+', $$[$0-2+2-1]); +case 188:this.$ = new yy.Op('-', $$[$0-2+2-1]); break; -case 188:this.$ = new yy.Op('--', $$[$0-2+2-1]); +case 189:this.$ = new yy.Op('+', $$[$0-2+2-1]); break; -case 189:this.$ = new yy.Op('++', $$[$0-2+2-1]); +case 190:this.$ = new yy.Op('--', $$[$0-2+2-1]); break; -case 190:this.$ = new yy.Op('--', $$[$0-2+1-1], null, true); +case 191:this.$ = new yy.Op('++', $$[$0-2+2-1]); break; -case 191:this.$ = new yy.Op('++', $$[$0-2+1-1], null, true); +case 192:this.$ = new yy.Op('--', $$[$0-2+1-1], null, true); break; -case 192:this.$ = new yy.Existence($$[$0-2+1-1]); +case 193:this.$ = new yy.Op('++', $$[$0-2+1-1], null, true); break; -case 193:this.$ = new yy.Op('+', $$[$0-3+1-1], $$[$0-3+3-1]); +case 194:this.$ = new yy.Existence($$[$0-2+1-1]); break; -case 194:this.$ = new yy.Op('-', $$[$0-3+1-1], $$[$0-3+3-1]); +case 195:this.$ = new yy.Op('+', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 195:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); -break; -case 196:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); +case 196:this.$ = new yy.Op('-', $$[$0-3+1-1], $$[$0-3+3-1]); break; case 197:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; case 198:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 199:this.$ = $$[$0-3+2-1].charAt(0) === '!' ? new yy.Op($$[$0-3+2-1].slice(1), $$[$0-3+1-1], $$[$0-3+3-1]).invert() : new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); +case 199:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 200:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); +case 200:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 201:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1], $$[$0-5+2-1]); +case 201:this.$ = $$[$0-3+2-1].charAt(0) === '!' ? new yy.Op($$[$0-3+2-1].slice(1), $$[$0-3+1-1], $$[$0-3+3-1]).invert() : new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 202:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); +break; +case 203:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1], $$[$0-5+2-1]); break; } }, -table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[3]},{"1":[2,2],"27":74,"47":[1,47]},{"1":[2,3],"4":[1,75]},{"4":[1,76]},{"1":[2,5],"4":[2,5],"29":[2,5]},{"5":77,"7":5,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[1,78],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,8],"4":[2,8],"29":[2,8],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,9],"4":[2,9],"29":[2,9],"100":93,"101":[1,65],"103":[1,66],"106":94,"115":[1,68],"126":[1,91],"127":[1,92]},{"1":[2,15],"4":[2,15],"28":[2,15],"29":[2,15],"55":[2,15],"58":[2,15],"62":96,"66":[1,98],"67":[1,99],"68":[1,100],"69":101,"70":[1,102],"71":[2,15],"72":[1,103],"73":[1,104],"76":[2,15],"81":95,"84":[1,97],"85":[2,110],"86":[2,15],"90":[2,15],"99":[2,15],"101":[2,15],"102":[2,15],"103":[2,15],"110":[2,15],"114":[2,15],"115":[2,15],"126":[2,15],"127":[2,15],"129":[2,15],"130":[2,15],"133":[2,15],"134":[2,15],"135":[2,15],"136":[2,15],"137":[2,15],"138":[2,15]},{"1":[2,16],"4":[2,16],"28":[2,16],"29":[2,16],"55":[2,16],"58":[2,16],"62":106,"66":[1,98],"67":[1,99],"68":[1,100],"69":101,"70":[1,102],"71":[2,16],"72":[1,103],"73":[1,104],"76":[2,16],"81":105,"84":[1,97],"85":[2,110],"86":[2,16],"90":[2,16],"99":[2,16],"101":[2,16],"102":[2,16],"103":[2,16],"110":[2,16],"114":[2,16],"115":[2,16],"126":[2,16],"127":[2,16],"129":[2,16],"130":[2,16],"133":[2,16],"134":[2,16],"135":[2,16],"136":[2,16],"137":[2,16],"138":[2,16]},{"1":[2,17],"4":[2,17],"28":[2,17],"29":[2,17],"55":[2,17],"58":[2,17],"71":[2,17],"76":[2,17],"86":[2,17],"90":[2,17],"99":[2,17],"101":[2,17],"102":[2,17],"103":[2,17],"110":[2,17],"114":[2,17],"115":[2,17],"126":[2,17],"127":[2,17],"129":[2,17],"130":[2,17],"133":[2,17],"134":[2,17],"135":[2,17],"136":[2,17],"137":[2,17],"138":[2,17]},{"1":[2,18],"4":[2,18],"28":[2,18],"29":[2,18],"55":[2,18],"58":[2,18],"71":[2,18],"76":[2,18],"86":[2,18],"90":[2,18],"99":[2,18],"101":[2,18],"102":[2,18],"103":[2,18],"110":[2,18],"114":[2,18],"115":[2,18],"126":[2,18],"127":[2,18],"129":[2,18],"130":[2,18],"133":[2,18],"134":[2,18],"135":[2,18],"136":[2,18],"137":[2,18],"138":[2,18]},{"1":[2,19],"4":[2,19],"28":[2,19],"29":[2,19],"55":[2,19],"58":[2,19],"71":[2,19],"76":[2,19],"86":[2,19],"90":[2,19],"99":[2,19],"101":[2,19],"102":[2,19],"103":[2,19],"110":[2,19],"114":[2,19],"115":[2,19],"126":[2,19],"127":[2,19],"129":[2,19],"130":[2,19],"133":[2,19],"134":[2,19],"135":[2,19],"136":[2,19],"137":[2,19],"138":[2,19]},{"1":[2,20],"4":[2,20],"28":[2,20],"29":[2,20],"55":[2,20],"58":[2,20],"71":[2,20],"76":[2,20],"86":[2,20],"90":[2,20],"99":[2,20],"101":[2,20],"102":[2,20],"103":[2,20],"110":[2,20],"114":[2,20],"115":[2,20],"126":[2,20],"127":[2,20],"129":[2,20],"130":[2,20],"133":[2,20],"134":[2,20],"135":[2,20],"136":[2,20],"137":[2,20],"138":[2,20]},{"1":[2,21],"4":[2,21],"28":[2,21],"29":[2,21],"55":[2,21],"58":[2,21],"71":[2,21],"76":[2,21],"86":[2,21],"90":[2,21],"99":[2,21],"101":[2,21],"102":[2,21],"103":[2,21],"110":[2,21],"114":[2,21],"115":[2,21],"126":[2,21],"127":[2,21],"129":[2,21],"130":[2,21],"133":[2,21],"134":[2,21],"135":[2,21],"136":[2,21],"137":[2,21],"138":[2,21]},{"1":[2,22],"4":[2,22],"28":[2,22],"29":[2,22],"55":[2,22],"58":[2,22],"71":[2,22],"76":[2,22],"86":[2,22],"90":[2,22],"99":[2,22],"101":[2,22],"102":[2,22],"103":[2,22],"110":[2,22],"114":[2,22],"115":[2,22],"126":[2,22],"127":[2,22],"129":[2,22],"130":[2,22],"133":[2,22],"134":[2,22],"135":[2,22],"136":[2,22],"137":[2,22],"138":[2,22]},{"1":[2,23],"4":[2,23],"28":[2,23],"29":[2,23],"55":[2,23],"58":[2,23],"71":[2,23],"76":[2,23],"86":[2,23],"90":[2,23],"99":[2,23],"101":[2,23],"102":[2,23],"103":[2,23],"110":[2,23],"114":[2,23],"115":[2,23],"126":[2,23],"127":[2,23],"129":[2,23],"130":[2,23],"133":[2,23],"134":[2,23],"135":[2,23],"136":[2,23],"137":[2,23],"138":[2,23]},{"1":[2,24],"4":[2,24],"28":[2,24],"29":[2,24],"55":[2,24],"58":[2,24],"71":[2,24],"76":[2,24],"86":[2,24],"90":[2,24],"99":[2,24],"101":[2,24],"102":[2,24],"103":[2,24],"110":[2,24],"114":[2,24],"115":[2,24],"126":[2,24],"127":[2,24],"129":[2,24],"130":[2,24],"133":[2,24],"134":[2,24],"135":[2,24],"136":[2,24],"137":[2,24],"138":[2,24]},{"1":[2,25],"4":[2,25],"28":[2,25],"29":[2,25],"55":[2,25],"58":[2,25],"71":[2,25],"76":[2,25],"86":[2,25],"90":[2,25],"99":[2,25],"101":[2,25],"102":[2,25],"103":[2,25],"110":[2,25],"114":[2,25],"115":[2,25],"126":[2,25],"127":[2,25],"129":[2,25],"130":[2,25],"133":[2,25],"134":[2,25],"135":[2,25],"136":[2,25],"137":[2,25],"138":[2,25]},{"1":[2,26],"4":[2,26],"28":[2,26],"29":[2,26],"55":[2,26],"58":[2,26],"71":[2,26],"76":[2,26],"86":[2,26],"90":[2,26],"99":[2,26],"101":[2,26],"102":[2,26],"103":[2,26],"110":[2,26],"114":[2,26],"115":[2,26],"126":[2,26],"127":[2,26],"129":[2,26],"130":[2,26],"133":[2,26],"134":[2,26],"135":[2,26],"136":[2,26],"137":[2,26],"138":[2,26]},{"1":[2,27],"4":[2,27],"28":[2,27],"29":[2,27],"55":[2,27],"58":[2,27],"71":[2,27],"76":[2,27],"86":[2,27],"90":[2,27],"99":[2,27],"101":[2,27],"102":[2,27],"103":[2,27],"110":[2,27],"114":[2,27],"115":[2,27],"126":[2,27],"127":[2,27],"129":[2,27],"130":[2,27],"133":[2,27],"134":[2,27],"135":[2,27],"136":[2,27],"137":[2,27],"138":[2,27]},{"1":[2,10],"4":[2,10],"29":[2,10],"101":[2,10],"103":[2,10],"115":[2,10],"126":[2,10],"127":[2,10]},{"1":[2,11],"4":[2,11],"29":[2,11],"101":[2,11],"103":[2,11],"115":[2,11],"126":[2,11],"127":[2,11]},{"1":[2,12],"4":[2,12],"29":[2,12],"101":[2,12],"103":[2,12],"115":[2,12],"126":[2,12],"127":[2,12]},{"1":[2,13],"4":[2,13],"29":[2,13],"101":[2,13],"103":[2,13],"115":[2,13],"126":[2,13],"127":[2,13]},{"1":[2,14],"4":[2,14],"29":[2,14],"101":[2,14],"103":[2,14],"115":[2,14],"126":[2,14],"127":[2,14]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"40":[1,107],"55":[2,72],"58":[2,72],"66":[2,72],"67":[2,72],"68":[2,72],"70":[2,72],"71":[2,72],"72":[2,72],"73":[2,72],"76":[2,72],"84":[2,72],"85":[2,72],"86":[2,72],"90":[2,72],"99":[2,72],"101":[2,72],"102":[2,72],"103":[2,72],"110":[2,72],"114":[2,72],"115":[2,72],"126":[2,72],"127":[2,72],"129":[2,72],"130":[2,72],"133":[2,72],"134":[2,72],"135":[2,72],"136":[2,72],"137":[2,72],"138":[2,72]},{"1":[2,73],"4":[2,73],"28":[2,73],"29":[2,73],"55":[2,73],"58":[2,73],"66":[2,73],"67":[2,73],"68":[2,73],"70":[2,73],"71":[2,73],"72":[2,73],"73":[2,73],"76":[2,73],"84":[2,73],"85":[2,73],"86":[2,73],"90":[2,73],"99":[2,73],"101":[2,73],"102":[2,73],"103":[2,73],"110":[2,73],"114":[2,73],"115":[2,73],"126":[2,73],"127":[2,73],"129":[2,73],"130":[2,73],"133":[2,73],"134":[2,73],"135":[2,73],"136":[2,73],"137":[2,73],"138":[2,73]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"55":[2,74],"58":[2,74],"66":[2,74],"67":[2,74],"68":[2,74],"70":[2,74],"71":[2,74],"72":[2,74],"73":[2,74],"76":[2,74],"84":[2,74],"85":[2,74],"86":[2,74],"90":[2,74],"99":[2,74],"101":[2,74],"102":[2,74],"103":[2,74],"110":[2,74],"114":[2,74],"115":[2,74],"126":[2,74],"127":[2,74],"129":[2,74],"130":[2,74],"133":[2,74],"134":[2,74],"135":[2,74],"136":[2,74],"137":[2,74],"138":[2,74]},{"1":[2,75],"4":[2,75],"28":[2,75],"29":[2,75],"55":[2,75],"58":[2,75],"66":[2,75],"67":[2,75],"68":[2,75],"70":[2,75],"71":[2,75],"72":[2,75],"73":[2,75],"76":[2,75],"84":[2,75],"85":[2,75],"86":[2,75],"90":[2,75],"99":[2,75],"101":[2,75],"102":[2,75],"103":[2,75],"110":[2,75],"114":[2,75],"115":[2,75],"126":[2,75],"127":[2,75],"129":[2,75],"130":[2,75],"133":[2,75],"134":[2,75],"135":[2,75],"136":[2,75],"137":[2,75],"138":[2,75]},{"1":[2,108],"4":[2,108],"28":[2,108],"29":[2,108],"55":[2,108],"58":[2,108],"66":[2,108],"67":[2,108],"68":[2,108],"70":[2,108],"71":[2,108],"72":[2,108],"73":[2,108],"76":[2,108],"82":108,"84":[2,108],"85":[1,109],"86":[2,108],"90":[2,108],"99":[2,108],"101":[2,108],"102":[2,108],"103":[2,108],"110":[2,108],"114":[2,108],"115":[2,108],"126":[2,108],"127":[2,108],"129":[2,108],"130":[2,108],"133":[2,108],"134":[2,108],"135":[2,108],"136":[2,108],"137":[2,108],"138":[2,108]},{"49":110,"50":[2,57],"55":[2,57],"56":111,"57":[1,112],"59":[1,113]},{"4":[1,115],"6":114,"28":[1,6]},{"8":116,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":118,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":119,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"15":121,"16":122,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":123,"44":62,"45":29,"59":[1,58],"61":120,"63":50,"64":51,"65":30,"74":[1,70],"83":[1,31],"88":[1,57],"89":[1,69],"98":[1,56]},{"15":121,"16":122,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":123,"44":62,"45":29,"59":[1,58],"61":124,"63":50,"64":51,"65":30,"74":[1,70],"83":[1,31],"88":[1,57],"89":[1,69],"98":[1,56]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"40":[2,69],"55":[2,69],"58":[2,69],"66":[2,69],"67":[2,69],"68":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"78":[1,128],"84":[2,69],"85":[2,69],"86":[2,69],"90":[2,69],"99":[2,69],"101":[2,69],"102":[2,69],"103":[2,69],"110":[2,69],"114":[2,69],"115":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"131":[1,125],"132":[1,126],"133":[2,69],"134":[2,69],"135":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[1,127]},{"1":[2,180],"4":[2,180],"28":[2,180],"29":[2,180],"55":[2,180],"58":[2,180],"71":[2,180],"76":[2,180],"86":[2,180],"90":[2,180],"99":[2,180],"101":[2,180],"102":[2,180],"103":[2,180],"110":[2,180],"114":[2,180],"115":[2,180],"120":[1,129],"126":[2,180],"127":[2,180],"129":[2,180],"130":[2,180],"133":[2,180],"134":[2,180],"135":[2,180],"136":[2,180],"137":[2,180],"138":[2,180]},{"4":[1,115],"6":130,"28":[1,6]},{"4":[1,115],"6":131,"28":[1,6]},{"1":[2,142],"4":[2,142],"28":[2,142],"29":[2,142],"55":[2,142],"58":[2,142],"71":[2,142],"76":[2,142],"86":[2,142],"90":[2,142],"99":[2,142],"101":[2,142],"102":[2,142],"103":[2,142],"110":[2,142],"114":[2,142],"115":[2,142],"126":[2,142],"127":[2,142],"129":[2,142],"130":[2,142],"133":[2,142],"134":[2,142],"135":[2,142],"136":[2,142],"137":[2,142],"138":[2,142]},{"4":[1,115],"6":132,"28":[1,6]},{"8":133,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,134],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,95],"4":[2,95],"15":121,"16":122,"28":[1,136],"29":[2,95],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":123,"44":62,"45":29,"55":[2,95],"58":[2,95],"59":[1,58],"61":135,"63":50,"64":51,"65":30,"71":[2,95],"74":[1,70],"76":[2,95],"78":[1,137],"83":[1,31],"86":[2,95],"88":[1,57],"89":[1,69],"90":[2,95],"98":[1,56],"99":[2,95],"101":[2,95],"102":[2,95],"103":[2,95],"110":[2,95],"114":[2,95],"115":[2,95],"126":[2,95],"127":[2,95],"129":[2,95],"130":[2,95],"133":[2,95],"134":[2,95],"135":[2,95],"136":[2,95],"137":[2,95],"138":[2,95]},{"1":[2,50],"4":[2,50],"28":[2,50],"29":[2,50],"55":[2,50],"58":[2,50],"71":[2,50],"76":[2,50],"86":[2,50],"90":[2,50],"95":[2,50],"96":[2,50],"99":[2,50],"101":[2,50],"102":[2,50],"103":[2,50],"110":[2,50],"114":[2,50],"115":[2,50],"120":[2,50],"122":[2,50],"126":[2,50],"127":[2,50],"129":[2,50],"130":[2,50],"133":[2,50],"134":[2,50],"135":[2,50],"136":[2,50],"137":[2,50],"138":[2,50]},{"1":[2,49],"4":[2,49],"8":138,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[2,49],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[2,49],"103":[2,49],"104":43,"105":[1,67],"106":44,"115":[2,49],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"126":[2,49],"127":[2,49],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":139,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,70],"4":[2,70],"28":[2,70],"29":[2,70],"40":[2,70],"55":[2,70],"58":[2,70],"66":[2,70],"67":[2,70],"68":[2,70],"70":[2,70],"71":[2,70],"72":[2,70],"73":[2,70],"76":[2,70],"84":[2,70],"85":[2,70],"86":[2,70],"90":[2,70],"99":[2,70],"101":[2,70],"102":[2,70],"103":[2,70],"110":[2,70],"114":[2,70],"115":[2,70],"126":[2,70],"127":[2,70],"129":[2,70],"130":[2,70],"133":[2,70],"134":[2,70],"135":[2,70],"136":[2,70],"137":[2,70],"138":[2,70]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"40":[2,71],"55":[2,71],"58":[2,71],"66":[2,71],"67":[2,71],"68":[2,71],"70":[2,71],"71":[2,71],"72":[2,71],"73":[2,71],"76":[2,71],"84":[2,71],"85":[2,71],"86":[2,71],"90":[2,71],"99":[2,71],"101":[2,71],"102":[2,71],"103":[2,71],"110":[2,71],"114":[2,71],"115":[2,71],"126":[2,71],"127":[2,71],"129":[2,71],"130":[2,71],"133":[2,71],"134":[2,71],"135":[2,71],"136":[2,71],"137":[2,71],"138":[2,71]},{"1":[2,34],"4":[2,34],"28":[2,34],"29":[2,34],"55":[2,34],"58":[2,34],"66":[2,34],"67":[2,34],"68":[2,34],"70":[2,34],"71":[2,34],"72":[2,34],"73":[2,34],"76":[2,34],"84":[2,34],"85":[2,34],"86":[2,34],"90":[2,34],"99":[2,34],"101":[2,34],"102":[2,34],"103":[2,34],"110":[2,34],"114":[2,34],"115":[2,34],"126":[2,34],"127":[2,34],"129":[2,34],"130":[2,34],"133":[2,34],"134":[2,34],"135":[2,34],"136":[2,34],"137":[2,34],"138":[2,34]},{"1":[2,35],"4":[2,35],"28":[2,35],"29":[2,35],"55":[2,35],"58":[2,35],"66":[2,35],"67":[2,35],"68":[2,35],"70":[2,35],"71":[2,35],"72":[2,35],"73":[2,35],"76":[2,35],"84":[2,35],"85":[2,35],"86":[2,35],"90":[2,35],"99":[2,35],"101":[2,35],"102":[2,35],"103":[2,35],"110":[2,35],"114":[2,35],"115":[2,35],"126":[2,35],"127":[2,35],"129":[2,35],"130":[2,35],"133":[2,35],"134":[2,35],"135":[2,35],"136":[2,35],"137":[2,35],"138":[2,35]},{"1":[2,36],"4":[2,36],"28":[2,36],"29":[2,36],"55":[2,36],"58":[2,36],"66":[2,36],"67":[2,36],"68":[2,36],"70":[2,36],"71":[2,36],"72":[2,36],"73":[2,36],"76":[2,36],"84":[2,36],"85":[2,36],"86":[2,36],"90":[2,36],"99":[2,36],"101":[2,36],"102":[2,36],"103":[2,36],"110":[2,36],"114":[2,36],"115":[2,36],"126":[2,36],"127":[2,36],"129":[2,36],"130":[2,36],"133":[2,36],"134":[2,36],"135":[2,36],"136":[2,36],"137":[2,36],"138":[2,36]},{"1":[2,37],"4":[2,37],"28":[2,37],"29":[2,37],"55":[2,37],"58":[2,37],"66":[2,37],"67":[2,37],"68":[2,37],"70":[2,37],"71":[2,37],"72":[2,37],"73":[2,37],"76":[2,37],"84":[2,37],"85":[2,37],"86":[2,37],"90":[2,37],"99":[2,37],"101":[2,37],"102":[2,37],"103":[2,37],"110":[2,37],"114":[2,37],"115":[2,37],"126":[2,37],"127":[2,37],"129":[2,37],"130":[2,37],"133":[2,37],"134":[2,37],"135":[2,37],"136":[2,37],"137":[2,37],"138":[2,37]},{"8":140,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,114],"4":[2,114],"28":[2,114],"29":[2,114],"55":[2,114],"58":[2,114],"66":[2,114],"67":[2,114],"68":[2,114],"70":[2,114],"71":[2,114],"72":[2,114],"73":[2,114],"76":[2,114],"84":[2,114],"85":[2,114],"86":[2,114],"90":[2,114],"99":[2,114],"101":[2,114],"102":[2,114],"103":[2,114],"110":[2,114],"114":[2,114],"115":[2,114],"126":[2,114],"127":[2,114],"129":[2,114],"130":[2,114],"133":[2,114],"134":[2,114],"135":[2,114],"136":[2,114],"137":[2,114],"138":[2,114]},{"1":[2,115],"4":[2,115],"28":[2,115],"29":[2,115],"30":141,"31":[1,73],"55":[2,115],"58":[2,115],"66":[2,115],"67":[2,115],"68":[2,115],"70":[2,115],"71":[2,115],"72":[2,115],"73":[2,115],"76":[2,115],"84":[2,115],"85":[2,115],"86":[2,115],"90":[2,115],"99":[2,115],"101":[2,115],"102":[2,115],"103":[2,115],"110":[2,115],"114":[2,115],"115":[2,115],"126":[2,115],"127":[2,115],"129":[2,115],"130":[2,115],"133":[2,115],"134":[2,115],"135":[2,115],"136":[2,115],"137":[2,115],"138":[2,115]},{"4":[2,53],"28":[2,53]},{"4":[2,54],"28":[2,54]},{"1":[2,65],"4":[2,65],"28":[2,65],"29":[2,65],"40":[2,65],"55":[2,65],"58":[2,65],"66":[2,65],"67":[2,65],"68":[2,65],"70":[2,65],"71":[2,65],"72":[2,65],"73":[2,65],"76":[2,65],"78":[2,65],"84":[2,65],"85":[2,65],"86":[2,65],"90":[2,65],"99":[2,65],"101":[2,65],"102":[2,65],"103":[2,65],"110":[2,65],"114":[2,65],"115":[2,65],"126":[2,65],"127":[2,65],"129":[2,65],"130":[2,65],"131":[2,65],"132":[2,65],"133":[2,65],"134":[2,65],"135":[2,65],"136":[2,65],"137":[2,65],"138":[2,65],"139":[2,65]},{"1":[2,68],"4":[2,68],"28":[2,68],"29":[2,68],"40":[2,68],"55":[2,68],"58":[2,68],"66":[2,68],"67":[2,68],"68":[2,68],"70":[2,68],"71":[2,68],"72":[2,68],"73":[2,68],"76":[2,68],"78":[2,68],"84":[2,68],"85":[2,68],"86":[2,68],"90":[2,68],"99":[2,68],"101":[2,68],"102":[2,68],"103":[2,68],"110":[2,68],"114":[2,68],"115":[2,68],"126":[2,68],"127":[2,68],"129":[2,68],"130":[2,68],"131":[2,68],"132":[2,68],"133":[2,68],"134":[2,68],"135":[2,68],"136":[2,68],"137":[2,68],"138":[2,68],"139":[2,68]},{"8":142,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":143,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":144,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":145,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[1,115],"6":146,"8":147,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"30":149,"31":[1,73],"63":151,"64":152,"74":[1,70],"89":[1,69],"107":148,"116":[1,150]},{"8":157,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,156],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"60":158,"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"87":154,"88":[1,57],"89":[1,69],"90":[1,153],"91":155,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,85],"27":163,"28":[2,85],"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":160,"42":161,"44":162,"45":166,"47":[1,47],"55":[2,85],"59":[1,167],"75":159,"76":[2,85],"98":[1,56]},{"1":[2,32],"4":[2,32],"28":[2,32],"29":[2,32],"43":[2,32],"55":[2,32],"58":[2,32],"66":[2,32],"67":[2,32],"68":[2,32],"70":[2,32],"71":[2,32],"72":[2,32],"73":[2,32],"76":[2,32],"84":[2,32],"85":[2,32],"86":[2,32],"90":[2,32],"99":[2,32],"101":[2,32],"102":[2,32],"103":[2,32],"110":[2,32],"114":[2,32],"115":[2,32],"126":[2,32],"127":[2,32],"129":[2,32],"130":[2,32],"133":[2,32],"134":[2,32],"135":[2,32],"136":[2,32],"137":[2,32],"138":[2,32]},{"1":[2,33],"4":[2,33],"28":[2,33],"29":[2,33],"43":[2,33],"55":[2,33],"58":[2,33],"66":[2,33],"67":[2,33],"68":[2,33],"70":[2,33],"71":[2,33],"72":[2,33],"73":[2,33],"76":[2,33],"84":[2,33],"85":[2,33],"86":[2,33],"90":[2,33],"99":[2,33],"101":[2,33],"102":[2,33],"103":[2,33],"110":[2,33],"114":[2,33],"115":[2,33],"126":[2,33],"127":[2,33],"129":[2,33],"130":[2,33],"133":[2,33],"134":[2,33],"135":[2,33],"136":[2,33],"137":[2,33],"138":[2,33]},{"1":[2,31],"4":[2,31],"28":[2,31],"29":[2,31],"40":[2,31],"43":[2,31],"55":[2,31],"58":[2,31],"66":[2,31],"67":[2,31],"68":[2,31],"70":[2,31],"71":[2,31],"72":[2,31],"73":[2,31],"76":[2,31],"78":[2,31],"84":[2,31],"85":[2,31],"86":[2,31],"90":[2,31],"99":[2,31],"101":[2,31],"102":[2,31],"103":[2,31],"109":[2,31],"110":[2,31],"112":[2,31],"114":[2,31],"115":[2,31],"117":[2,31],"126":[2,31],"127":[2,31],"129":[2,31],"130":[2,31],"131":[2,31],"132":[2,31],"133":[2,31],"134":[2,31],"135":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31]},{"1":[2,30],"4":[2,30],"28":[2,30],"29":[2,30],"55":[2,30],"58":[2,30],"71":[2,30],"76":[2,30],"86":[2,30],"90":[2,30],"95":[2,30],"96":[2,30],"99":[2,30],"101":[2,30],"102":[2,30],"103":[2,30],"110":[2,30],"114":[2,30],"115":[2,30],"120":[2,30],"122":[2,30],"126":[2,30],"127":[2,30],"129":[2,30],"130":[2,30],"133":[2,30],"134":[2,30],"135":[2,30],"136":[2,30],"137":[2,30],"138":[2,30]},{"1":[2,7],"4":[2,7],"7":168,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[2,7],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,4]},{"4":[1,75],"29":[1,169]},{"1":[2,29],"4":[2,29],"28":[2,29],"29":[2,29],"55":[2,29],"58":[2,29],"71":[2,29],"76":[2,29],"86":[2,29],"90":[2,29],"95":[2,29],"96":[2,29],"99":[2,29],"101":[2,29],"102":[2,29],"103":[2,29],"110":[2,29],"114":[2,29],"115":[2,29],"120":[2,29],"122":[2,29],"126":[2,29],"127":[2,29],"129":[2,29],"130":[2,29],"133":[2,29],"134":[2,29],"135":[2,29],"136":[2,29],"137":[2,29],"138":[2,29]},{"1":[2,192],"4":[2,192],"28":[2,192],"29":[2,192],"55":[2,192],"58":[2,192],"71":[2,192],"76":[2,192],"86":[2,192],"90":[2,192],"99":[2,192],"101":[2,192],"102":[2,192],"103":[2,192],"110":[2,192],"114":[2,192],"115":[2,192],"126":[2,192],"127":[2,192],"129":[2,192],"130":[2,192],"133":[2,192],"134":[2,192],"135":[2,192],"136":[2,192],"137":[2,192],"138":[2,192]},{"8":170,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":171,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":172,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":173,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":174,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":175,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":176,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":177,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":178,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,141],"4":[2,141],"28":[2,141],"29":[2,141],"55":[2,141],"58":[2,141],"71":[2,141],"76":[2,141],"86":[2,141],"90":[2,141],"99":[2,141],"101":[2,141],"102":[2,141],"103":[2,141],"110":[2,141],"114":[2,141],"115":[2,141],"126":[2,141],"127":[2,141],"129":[2,141],"130":[2,141],"133":[2,141],"134":[2,141],"135":[2,141],"136":[2,141],"137":[2,141],"138":[2,141]},{"1":[2,146],"4":[2,146],"28":[2,146],"29":[2,146],"55":[2,146],"58":[2,146],"71":[2,146],"76":[2,146],"86":[2,146],"90":[2,146],"99":[2,146],"101":[2,146],"102":[2,146],"103":[2,146],"110":[2,146],"114":[2,146],"115":[2,146],"126":[2,146],"127":[2,146],"129":[2,146],"130":[2,146],"133":[2,146],"134":[2,146],"135":[2,146],"136":[2,146],"137":[2,146],"138":[2,146]},{"8":179,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":180,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,140],"4":[2,140],"28":[2,140],"29":[2,140],"55":[2,140],"58":[2,140],"71":[2,140],"76":[2,140],"86":[2,140],"90":[2,140],"99":[2,140],"101":[2,140],"102":[2,140],"103":[2,140],"110":[2,140],"114":[2,140],"115":[2,140],"126":[2,140],"127":[2,140],"129":[2,140],"130":[2,140],"133":[2,140],"134":[2,140],"135":[2,140],"136":[2,140],"137":[2,140],"138":[2,140]},{"1":[2,145],"4":[2,145],"28":[2,145],"29":[2,145],"55":[2,145],"58":[2,145],"71":[2,145],"76":[2,145],"86":[2,145],"90":[2,145],"99":[2,145],"101":[2,145],"102":[2,145],"103":[2,145],"110":[2,145],"114":[2,145],"115":[2,145],"126":[2,145],"127":[2,145],"129":[2,145],"130":[2,145],"133":[2,145],"134":[2,145],"135":[2,145],"136":[2,145],"137":[2,145],"138":[2,145]},{"82":181,"85":[1,109]},{"1":[2,66],"4":[2,66],"28":[2,66],"29":[2,66],"40":[2,66],"55":[2,66],"58":[2,66],"66":[2,66],"67":[2,66],"68":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"78":[2,66],"84":[2,66],"85":[2,66],"86":[2,66],"90":[2,66],"99":[2,66],"101":[2,66],"102":[2,66],"103":[2,66],"110":[2,66],"114":[2,66],"115":[2,66],"126":[2,66],"127":[2,66],"129":[2,66],"130":[2,66],"131":[2,66],"132":[2,66],"133":[2,66],"134":[2,66],"135":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66]},{"85":[2,111]},{"30":182,"31":[1,73]},{"30":183,"31":[1,73]},{"1":[2,79],"4":[2,79],"28":[2,79],"29":[2,79],"30":184,"31":[1,73],"40":[2,79],"55":[2,79],"58":[2,79],"66":[2,79],"67":[2,79],"68":[2,79],"70":[2,79],"71":[2,79],"72":[2,79],"73":[2,79],"76":[2,79],"78":[2,79],"84":[2,79],"85":[2,79],"86":[2,79],"90":[2,79],"99":[2,79],"101":[2,79],"102":[2,79],"103":[2,79],"110":[2,79],"114":[2,79],"115":[2,79],"126":[2,79],"127":[2,79],"129":[2,79],"130":[2,79],"131":[2,79],"132":[2,79],"133":[2,79],"134":[2,79],"135":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79]},{"1":[2,80],"4":[2,80],"28":[2,80],"29":[2,80],"40":[2,80],"55":[2,80],"58":[2,80],"66":[2,80],"67":[2,80],"68":[2,80],"70":[2,80],"71":[2,80],"72":[2,80],"73":[2,80],"76":[2,80],"78":[2,80],"84":[2,80],"85":[2,80],"86":[2,80],"90":[2,80],"99":[2,80],"101":[2,80],"102":[2,80],"103":[2,80],"110":[2,80],"114":[2,80],"115":[2,80],"126":[2,80],"127":[2,80],"129":[2,80],"130":[2,80],"131":[2,80],"132":[2,80],"133":[2,80],"134":[2,80],"135":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80]},{"8":185,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"69":186,"70":[1,102],"72":[1,103],"73":[1,104]},{"69":187,"70":[1,102],"72":[1,103],"73":[1,104]},{"82":188,"85":[1,109]},{"1":[2,67],"4":[2,67],"28":[2,67],"29":[2,67],"40":[2,67],"55":[2,67],"58":[2,67],"66":[2,67],"67":[2,67],"68":[2,67],"70":[2,67],"71":[2,67],"72":[2,67],"73":[2,67],"76":[2,67],"78":[2,67],"84":[2,67],"85":[2,67],"86":[2,67],"90":[2,67],"99":[2,67],"101":[2,67],"102":[2,67],"103":[2,67],"110":[2,67],"114":[2,67],"115":[2,67],"126":[2,67],"127":[2,67],"129":[2,67],"130":[2,67],"131":[2,67],"132":[2,67],"133":[2,67],"134":[2,67],"135":[2,67],"136":[2,67],"137":[2,67],"138":[2,67],"139":[2,67]},{"8":189,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,190],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,109],"4":[2,109],"28":[2,109],"29":[2,109],"55":[2,109],"58":[2,109],"66":[2,109],"67":[2,109],"68":[2,109],"70":[2,109],"71":[2,109],"72":[2,109],"73":[2,109],"76":[2,109],"84":[2,109],"85":[2,109],"86":[2,109],"90":[2,109],"99":[2,109],"101":[2,109],"102":[2,109],"103":[2,109],"110":[2,109],"114":[2,109],"115":[2,109],"126":[2,109],"127":[2,109],"129":[2,109],"130":[2,109],"133":[2,109],"134":[2,109],"135":[2,109],"136":[2,109],"137":[2,109],"138":[2,109]},{"8":157,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,156],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"60":158,"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"86":[1,191],"87":192,"88":[1,57],"89":[1,69],"91":155,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"50":[1,193],"55":[1,194]},{"50":[2,58],"55":[2,58]},{"50":[2,60],"55":[2,60],"58":[1,195]},{"57":[1,196]},{"1":[2,52],"4":[2,52],"28":[2,52],"29":[2,52],"55":[2,52],"58":[2,52],"71":[2,52],"76":[2,52],"86":[2,52],"90":[2,52],"99":[2,52],"101":[2,52],"102":[2,52],"103":[2,52],"110":[2,52],"114":[2,52],"115":[2,52],"126":[2,52],"127":[2,52],"129":[2,52],"130":[2,52],"133":[2,52],"134":[2,52],"135":[2,52],"136":[2,52],"137":[2,52],"138":[2,52]},{"27":74,"47":[1,47]},{"1":[2,185],"4":[2,185],"28":[2,185],"29":[2,185],"55":[2,185],"58":[2,185],"71":[2,185],"76":[2,185],"86":[2,185],"90":[2,185],"99":[2,185],"100":89,"101":[2,185],"102":[2,185],"103":[2,185],"106":90,"110":[2,185],"114":[2,185],"115":[2,185],"126":[2,185],"127":[2,185],"129":[2,185],"130":[2,185],"133":[1,79],"134":[2,185],"135":[2,185],"136":[2,185],"137":[2,185],"138":[2,185]},{"100":93,"101":[1,65],"103":[1,66],"106":94,"115":[1,68],"126":[1,91],"127":[1,92]},{"1":[2,186],"4":[2,186],"28":[2,186],"29":[2,186],"55":[2,186],"58":[2,186],"71":[2,186],"76":[2,186],"86":[2,186],"90":[2,186],"99":[2,186],"100":89,"101":[2,186],"102":[2,186],"103":[2,186],"106":90,"110":[2,186],"114":[2,186],"115":[2,186],"126":[2,186],"127":[2,186],"129":[2,186],"130":[2,186],"133":[1,79],"134":[2,186],"135":[2,186],"136":[2,186],"137":[2,186],"138":[2,186]},{"1":[2,187],"4":[2,187],"28":[2,187],"29":[2,187],"55":[2,187],"58":[2,187],"71":[2,187],"76":[2,187],"86":[2,187],"90":[2,187],"99":[2,187],"100":89,"101":[2,187],"102":[2,187],"103":[2,187],"106":90,"110":[2,187],"114":[2,187],"115":[2,187],"126":[2,187],"127":[2,187],"129":[2,187],"130":[2,187],"133":[1,79],"134":[2,187],"135":[2,187],"136":[2,187],"137":[2,187],"138":[2,187]},{"1":[2,188],"4":[2,188],"28":[2,188],"29":[2,188],"55":[2,188],"58":[2,188],"66":[2,69],"67":[2,69],"68":[2,69],"70":[2,69],"71":[2,188],"72":[2,69],"73":[2,69],"76":[2,188],"84":[2,69],"85":[2,69],"86":[2,188],"90":[2,188],"99":[2,188],"101":[2,188],"102":[2,188],"103":[2,188],"110":[2,188],"114":[2,188],"115":[2,188],"126":[2,188],"127":[2,188],"129":[2,188],"130":[2,188],"133":[2,188],"134":[2,188],"135":[2,188],"136":[2,188],"137":[2,188],"138":[2,188]},{"62":96,"66":[1,98],"67":[1,99],"68":[1,100],"69":101,"70":[1,102],"72":[1,103],"73":[1,104],"81":95,"84":[1,97],"85":[2,110]},{"62":106,"66":[1,98],"67":[1,99],"68":[1,100],"69":101,"70":[1,102],"72":[1,103],"73":[1,104],"81":105,"84":[1,97],"85":[2,110]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"55":[2,72],"58":[2,72],"66":[2,72],"67":[2,72],"68":[2,72],"70":[2,72],"71":[2,72],"72":[2,72],"73":[2,72],"76":[2,72],"84":[2,72],"85":[2,72],"86":[2,72],"90":[2,72],"99":[2,72],"101":[2,72],"102":[2,72],"103":[2,72],"110":[2,72],"114":[2,72],"115":[2,72],"126":[2,72],"127":[2,72],"129":[2,72],"130":[2,72],"133":[2,72],"134":[2,72],"135":[2,72],"136":[2,72],"137":[2,72],"138":[2,72]},{"1":[2,189],"4":[2,189],"28":[2,189],"29":[2,189],"55":[2,189],"58":[2,189],"66":[2,69],"67":[2,69],"68":[2,69],"70":[2,69],"71":[2,189],"72":[2,69],"73":[2,69],"76":[2,189],"84":[2,69],"85":[2,69],"86":[2,189],"90":[2,189],"99":[2,189],"101":[2,189],"102":[2,189],"103":[2,189],"110":[2,189],"114":[2,189],"115":[2,189],"126":[2,189],"127":[2,189],"129":[2,189],"130":[2,189],"133":[2,189],"134":[2,189],"135":[2,189],"136":[2,189],"137":[2,189],"138":[2,189]},{"1":[2,190],"4":[2,190],"28":[2,190],"29":[2,190],"55":[2,190],"58":[2,190],"71":[2,190],"76":[2,190],"86":[2,190],"90":[2,190],"99":[2,190],"101":[2,190],"102":[2,190],"103":[2,190],"110":[2,190],"114":[2,190],"115":[2,190],"126":[2,190],"127":[2,190],"129":[2,190],"130":[2,190],"133":[2,190],"134":[2,190],"135":[2,190],"136":[2,190],"137":[2,190],"138":[2,190]},{"1":[2,191],"4":[2,191],"28":[2,191],"29":[2,191],"55":[2,191],"58":[2,191],"71":[2,191],"76":[2,191],"86":[2,191],"90":[2,191],"99":[2,191],"101":[2,191],"102":[2,191],"103":[2,191],"110":[2,191],"114":[2,191],"115":[2,191],"126":[2,191],"127":[2,191],"129":[2,191],"130":[2,191],"133":[2,191],"134":[2,191],"135":[2,191],"136":[2,191],"137":[2,191],"138":[2,191]},{"8":197,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,198],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"15":199,"16":122,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":123,"44":62,"45":29,"59":[1,58],"61":200,"63":50,"64":51,"65":30,"74":[1,70],"83":[1,31],"88":[1,57],"89":[1,69],"98":[1,56]},{"4":[1,115],"6":202,"28":[1,6],"124":[1,201]},{"1":[2,128],"4":[2,128],"28":[2,128],"29":[2,128],"55":[2,128],"58":[2,128],"71":[2,128],"76":[2,128],"86":[2,128],"90":[2,128],"94":203,"95":[1,204],"96":[1,205],"99":[2,128],"101":[2,128],"102":[2,128],"103":[2,128],"110":[2,128],"114":[2,128],"115":[2,128],"126":[2,128],"127":[2,128],"129":[2,128],"130":[2,128],"133":[2,128],"134":[2,128],"135":[2,128],"136":[2,128],"137":[2,128],"138":[2,128]},{"1":[2,139],"4":[2,139],"28":[2,139],"29":[2,139],"55":[2,139],"58":[2,139],"71":[2,139],"76":[2,139],"86":[2,139],"90":[2,139],"99":[2,139],"101":[2,139],"102":[2,139],"103":[2,139],"110":[2,139],"114":[2,139],"115":[2,139],"126":[2,139],"127":[2,139],"129":[2,139],"130":[2,139],"133":[2,139],"134":[2,139],"135":[2,139],"136":[2,139],"137":[2,139],"138":[2,139]},{"1":[2,147],"4":[2,147],"28":[2,147],"29":[2,147],"55":[2,147],"58":[2,147],"71":[2,147],"76":[2,147],"86":[2,147],"90":[2,147],"99":[2,147],"101":[2,147],"102":[2,147],"103":[2,147],"110":[2,147],"114":[2,147],"115":[2,147],"126":[2,147],"127":[2,147],"129":[2,147],"130":[2,147],"133":[2,147],"134":[2,147],"135":[2,147],"136":[2,147],"137":[2,147],"138":[2,147]},{"28":[1,206],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"119":207,"121":208,"122":[1,209]},{"1":[2,90],"4":[2,90],"28":[1,211],"29":[2,90],"55":[2,90],"58":[2,90],"66":[2,69],"67":[2,69],"68":[2,69],"70":[2,69],"71":[2,90],"72":[2,69],"73":[2,69],"76":[2,90],"78":[1,210],"84":[2,69],"85":[2,69],"86":[2,90],"90":[2,90],"99":[2,90],"101":[2,90],"102":[2,90],"103":[2,90],"110":[2,90],"114":[2,90],"115":[2,90],"126":[2,90],"127":[2,90],"129":[2,90],"130":[2,90],"133":[2,90],"134":[2,90],"135":[2,90],"136":[2,90],"137":[2,90],"138":[2,90]},{"4":[2,101],"27":163,"29":[2,101],"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":215,"42":161,"44":216,"45":166,"47":[1,47],"59":[1,167],"74":[1,214],"79":212,"80":213,"98":[1,56]},{"15":217,"16":122,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":123,"44":62,"45":29,"59":[1,58],"61":200,"63":50,"64":51,"65":30,"74":[1,70],"83":[1,31],"88":[1,57],"89":[1,69],"98":[1,56]},{"1":[2,48],"4":[2,48],"29":[2,48],"100":89,"101":[2,48],"103":[2,48],"106":90,"115":[2,48],"126":[2,48],"127":[2,48],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,133],"4":[2,133],"29":[2,133],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[2,133],"127":[2,133],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"99":[1,218],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,116],"4":[2,116],"28":[2,116],"29":[2,116],"40":[2,116],"43":[2,116],"55":[2,116],"58":[2,116],"66":[2,116],"67":[2,116],"68":[2,116],"70":[2,116],"71":[2,116],"72":[2,116],"73":[2,116],"76":[2,116],"78":[2,116],"84":[2,116],"85":[2,116],"86":[2,116],"90":[2,116],"99":[2,116],"101":[2,116],"102":[2,116],"103":[2,116],"110":[2,116],"114":[2,116],"115":[2,116],"126":[2,116],"127":[2,116],"129":[2,116],"130":[2,116],"131":[2,116],"132":[2,116],"133":[2,116],"134":[2,116],"135":[2,116],"136":[2,116],"137":[2,116],"138":[2,116],"139":[2,116]},{"4":[1,115],"6":219,"28":[1,6],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,115],"6":220,"28":[1,6],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,135],"4":[2,135],"28":[2,135],"29":[2,135],"55":[2,135],"58":[2,135],"71":[2,135],"76":[2,135],"86":[2,135],"90":[2,135],"99":[2,135],"100":89,"101":[1,65],"102":[1,221],"103":[1,66],"106":90,"110":[2,135],"114":[2,135],"115":[1,68],"126":[2,135],"127":[2,135],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,137],"4":[2,137],"28":[2,137],"29":[2,137],"55":[2,137],"58":[2,137],"71":[2,137],"76":[2,137],"86":[2,137],"90":[2,137],"99":[2,137],"100":89,"101":[1,65],"102":[1,222],"103":[1,66],"106":90,"110":[2,137],"114":[2,137],"115":[1,68],"126":[2,137],"127":[2,137],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,143],"4":[2,143],"28":[2,143],"29":[2,143],"55":[2,143],"58":[2,143],"71":[2,143],"76":[2,143],"86":[2,143],"90":[2,143],"99":[2,143],"101":[2,143],"102":[2,143],"103":[2,143],"110":[2,143],"114":[2,143],"115":[2,143],"126":[2,143],"127":[2,143],"129":[2,143],"130":[2,143],"133":[2,143],"134":[2,143],"135":[2,143],"136":[2,143],"137":[2,143],"138":[2,143]},{"1":[2,144],"4":[2,144],"28":[2,144],"29":[2,144],"55":[2,144],"58":[2,144],"71":[2,144],"76":[2,144],"86":[2,144],"90":[2,144],"99":[2,144],"100":89,"101":[1,65],"102":[2,144],"103":[1,66],"106":90,"110":[2,144],"114":[2,144],"115":[1,68],"126":[2,144],"127":[2,144],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"55":[1,224],"108":223,"109":[1,225]},{"55":[2,148],"109":[2,148],"111":226,"112":[1,228],"117":[1,227]},{"30":229,"31":[1,73]},{"55":[2,149],"109":[2,149],"112":[2,149]},{"55":[2,150],"109":[2,150],"112":[2,150]},{"1":[2,117],"4":[2,117],"28":[2,117],"29":[2,117],"40":[2,117],"55":[2,117],"58":[2,117],"66":[2,117],"67":[2,117],"68":[2,117],"70":[2,117],"71":[2,117],"72":[2,117],"73":[2,117],"76":[2,117],"84":[2,117],"85":[2,117],"86":[2,117],"90":[2,117],"99":[2,117],"101":[2,117],"102":[2,117],"103":[2,117],"109":[2,117],"110":[2,117],"112":[2,117],"114":[2,117],"115":[2,117],"126":[2,117],"127":[2,117],"129":[2,117],"130":[2,117],"133":[2,117],"134":[2,117],"135":[2,117],"136":[2,117],"137":[2,117],"138":[2,117]},{"4":[2,55],"28":[2,55],"54":230,"55":[1,231],"90":[2,55]},{"4":[2,119],"28":[2,119],"29":[2,119],"55":[2,119],"86":[2,119],"90":[2,119]},{"8":157,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,156],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"60":158,"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"87":232,"88":[1,57],"89":[1,69],"91":155,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,124],"28":[2,124],"29":[2,124],"55":[2,124],"58":[1,233],"86":[2,124],"90":[2,124],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[2,125],"28":[2,125],"29":[2,125],"55":[2,125],"86":[2,125],"90":[2,125]},{"4":[2,55],"28":[2,55],"54":234,"55":[1,235],"76":[2,55]},{"4":[2,86],"28":[2,86],"29":[2,86],"55":[2,86],"76":[2,86]},{"4":[2,40],"28":[2,40],"29":[2,40],"43":[1,236],"55":[2,40],"76":[2,40]},{"4":[2,43],"28":[2,43],"29":[2,43],"55":[2,43],"76":[2,43]},{"4":[2,44],"28":[2,44],"29":[2,44],"55":[2,44],"76":[2,44]},{"4":[2,45],"28":[2,45],"29":[2,45],"43":[2,45],"55":[2,45],"76":[2,45]},{"4":[2,46],"28":[2,46],"29":[2,46],"43":[2,46],"55":[2,46],"76":[2,46]},{"4":[2,47],"28":[2,47],"29":[2,47],"43":[2,47],"55":[2,47],"76":[2,47]},{"30":141,"31":[1,73]},{"1":[2,6],"4":[2,6],"29":[2,6]},{"1":[2,28],"4":[2,28],"28":[2,28],"29":[2,28],"55":[2,28],"58":[2,28],"71":[2,28],"76":[2,28],"86":[2,28],"90":[2,28],"95":[2,28],"96":[2,28],"99":[2,28],"101":[2,28],"102":[2,28],"103":[2,28],"110":[2,28],"114":[2,28],"115":[2,28],"120":[2,28],"122":[2,28],"126":[2,28],"127":[2,28],"129":[2,28],"130":[2,28],"133":[2,28],"134":[2,28],"135":[2,28],"136":[2,28],"137":[2,28],"138":[2,28]},{"1":[2,193],"4":[2,193],"28":[2,193],"29":[2,193],"55":[2,193],"58":[2,193],"71":[2,193],"76":[2,193],"86":[2,193],"90":[2,193],"99":[2,193],"100":89,"101":[2,193],"102":[2,193],"103":[2,193],"106":90,"110":[2,193],"114":[2,193],"115":[2,193],"126":[2,193],"127":[2,193],"129":[2,193],"130":[2,193],"133":[1,79],"134":[1,82],"135":[2,193],"136":[2,193],"137":[2,193],"138":[2,193]},{"1":[2,194],"4":[2,194],"28":[2,194],"29":[2,194],"55":[2,194],"58":[2,194],"71":[2,194],"76":[2,194],"86":[2,194],"90":[2,194],"99":[2,194],"100":89,"101":[2,194],"102":[2,194],"103":[2,194],"106":90,"110":[2,194],"114":[2,194],"115":[2,194],"126":[2,194],"127":[2,194],"129":[2,194],"130":[2,194],"133":[1,79],"134":[1,82],"135":[2,194],"136":[2,194],"137":[2,194],"138":[2,194]},{"1":[2,195],"4":[2,195],"28":[2,195],"29":[2,195],"55":[2,195],"58":[2,195],"71":[2,195],"76":[2,195],"86":[2,195],"90":[2,195],"99":[2,195],"100":89,"101":[2,195],"102":[2,195],"103":[2,195],"106":90,"110":[2,195],"114":[2,195],"115":[2,195],"126":[2,195],"127":[2,195],"129":[2,195],"130":[2,195],"133":[1,79],"134":[2,195],"135":[2,195],"136":[2,195],"137":[2,195],"138":[2,195]},{"1":[2,196],"4":[2,196],"28":[2,196],"29":[2,196],"55":[2,196],"58":[2,196],"71":[2,196],"76":[2,196],"86":[2,196],"90":[2,196],"99":[2,196],"100":89,"101":[2,196],"102":[2,196],"103":[2,196],"106":90,"110":[2,196],"114":[2,196],"115":[2,196],"126":[2,196],"127":[2,196],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[2,196],"136":[2,196],"137":[2,196],"138":[2,196]},{"1":[2,197],"4":[2,197],"28":[2,197],"29":[2,197],"55":[2,197],"58":[2,197],"71":[2,197],"76":[2,197],"86":[2,197],"90":[2,197],"99":[2,197],"100":89,"101":[2,197],"102":[2,197],"103":[2,197],"106":90,"110":[2,197],"114":[2,197],"115":[2,197],"126":[2,197],"127":[2,197],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[2,197],"137":[2,197],"138":[1,86]},{"1":[2,198],"4":[2,198],"28":[2,198],"29":[2,198],"55":[2,198],"58":[2,198],"71":[2,198],"76":[2,198],"86":[2,198],"90":[2,198],"99":[2,198],"100":89,"101":[2,198],"102":[2,198],"103":[2,198],"106":90,"110":[2,198],"114":[2,198],"115":[2,198],"126":[2,198],"127":[2,198],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[2,198],"138":[1,86]},{"1":[2,199],"4":[2,199],"28":[2,199],"29":[2,199],"55":[2,199],"58":[2,199],"71":[2,199],"76":[2,199],"86":[2,199],"90":[2,199],"99":[2,199],"100":89,"101":[2,199],"102":[2,199],"103":[2,199],"106":90,"110":[2,199],"114":[2,199],"115":[2,199],"126":[2,199],"127":[2,199],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[2,199],"137":[2,199],"138":[2,199]},{"1":[2,182],"4":[2,182],"28":[2,182],"29":[2,182],"55":[2,182],"58":[2,182],"71":[2,182],"76":[2,182],"86":[2,182],"90":[2,182],"99":[2,182],"100":89,"101":[1,65],"102":[2,182],"103":[1,66],"106":90,"110":[2,182],"114":[2,182],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,184],"4":[2,184],"28":[2,184],"29":[2,184],"55":[2,184],"58":[2,184],"71":[2,184],"76":[2,184],"86":[2,184],"90":[2,184],"99":[2,184],"100":89,"101":[1,65],"102":[2,184],"103":[1,66],"106":90,"110":[2,184],"114":[2,184],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,181],"4":[2,181],"28":[2,181],"29":[2,181],"55":[2,181],"58":[2,181],"71":[2,181],"76":[2,181],"86":[2,181],"90":[2,181],"99":[2,181],"100":89,"101":[1,65],"102":[2,181],"103":[1,66],"106":90,"110":[2,181],"114":[2,181],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,183],"4":[2,183],"28":[2,183],"29":[2,183],"55":[2,183],"58":[2,183],"71":[2,183],"76":[2,183],"86":[2,183],"90":[2,183],"99":[2,183],"100":89,"101":[1,65],"102":[2,183],"103":[1,66],"106":90,"110":[2,183],"114":[2,183],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,106],"4":[2,106],"28":[2,106],"29":[2,106],"55":[2,106],"58":[2,106],"66":[2,106],"67":[2,106],"68":[2,106],"70":[2,106],"71":[2,106],"72":[2,106],"73":[2,106],"76":[2,106],"84":[2,106],"85":[2,106],"86":[2,106],"90":[2,106],"99":[2,106],"101":[2,106],"102":[2,106],"103":[2,106],"110":[2,106],"114":[2,106],"115":[2,106],"126":[2,106],"127":[2,106],"129":[2,106],"130":[2,106],"133":[2,106],"134":[2,106],"135":[2,106],"136":[2,106],"137":[2,106],"138":[2,106]},{"1":[2,76],"4":[2,76],"28":[2,76],"29":[2,76],"40":[2,76],"55":[2,76],"58":[2,76],"66":[2,76],"67":[2,76],"68":[2,76],"70":[2,76],"71":[2,76],"72":[2,76],"73":[2,76],"76":[2,76],"78":[2,76],"84":[2,76],"85":[2,76],"86":[2,76],"90":[2,76],"99":[2,76],"101":[2,76],"102":[2,76],"103":[2,76],"110":[2,76],"114":[2,76],"115":[2,76],"126":[2,76],"127":[2,76],"129":[2,76],"130":[2,76],"131":[2,76],"132":[2,76],"133":[2,76],"134":[2,76],"135":[2,76],"136":[2,76],"137":[2,76],"138":[2,76],"139":[2,76]},{"1":[2,77],"4":[2,77],"28":[2,77],"29":[2,77],"40":[2,77],"55":[2,77],"58":[2,77],"66":[2,77],"67":[2,77],"68":[2,77],"70":[2,77],"71":[2,77],"72":[2,77],"73":[2,77],"76":[2,77],"78":[2,77],"84":[2,77],"85":[2,77],"86":[2,77],"90":[2,77],"99":[2,77],"101":[2,77],"102":[2,77],"103":[2,77],"110":[2,77],"114":[2,77],"115":[2,77],"126":[2,77],"127":[2,77],"129":[2,77],"130":[2,77],"131":[2,77],"132":[2,77],"133":[2,77],"134":[2,77],"135":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77]},{"1":[2,78],"4":[2,78],"28":[2,78],"29":[2,78],"40":[2,78],"55":[2,78],"58":[2,78],"66":[2,78],"67":[2,78],"68":[2,78],"70":[2,78],"71":[2,78],"72":[2,78],"73":[2,78],"76":[2,78],"78":[2,78],"84":[2,78],"85":[2,78],"86":[2,78],"90":[2,78],"99":[2,78],"101":[2,78],"102":[2,78],"103":[2,78],"110":[2,78],"114":[2,78],"115":[2,78],"126":[2,78],"127":[2,78],"129":[2,78],"130":[2,78],"131":[2,78],"132":[2,78],"133":[2,78],"134":[2,78],"135":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78]},{"71":[1,237],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,82],"4":[2,82],"28":[2,82],"29":[2,82],"40":[2,82],"55":[2,82],"58":[2,82],"66":[2,82],"67":[2,82],"68":[2,82],"70":[2,82],"71":[2,82],"72":[2,82],"73":[2,82],"76":[2,82],"78":[2,82],"84":[2,82],"85":[2,82],"86":[2,82],"90":[2,82],"99":[2,82],"101":[2,82],"102":[2,82],"103":[2,82],"110":[2,82],"114":[2,82],"115":[2,82],"126":[2,82],"127":[2,82],"129":[2,82],"130":[2,82],"131":[2,82],"132":[2,82],"133":[2,82],"134":[2,82],"135":[2,82],"136":[2,82],"137":[2,82],"138":[2,82],"139":[2,82]},{"1":[2,83],"4":[2,83],"28":[2,83],"29":[2,83],"40":[2,83],"55":[2,83],"58":[2,83],"66":[2,83],"67":[2,83],"68":[2,83],"70":[2,83],"71":[2,83],"72":[2,83],"73":[2,83],"76":[2,83],"78":[2,83],"84":[2,83],"85":[2,83],"86":[2,83],"90":[2,83],"99":[2,83],"101":[2,83],"102":[2,83],"103":[2,83],"110":[2,83],"114":[2,83],"115":[2,83],"126":[2,83],"127":[2,83],"129":[2,83],"130":[2,83],"131":[2,83],"132":[2,83],"133":[2,83],"134":[2,83],"135":[2,83],"136":[2,83],"137":[2,83],"138":[2,83],"139":[2,83]},{"1":[2,107],"4":[2,107],"28":[2,107],"29":[2,107],"55":[2,107],"58":[2,107],"66":[2,107],"67":[2,107],"68":[2,107],"70":[2,107],"71":[2,107],"72":[2,107],"73":[2,107],"76":[2,107],"84":[2,107],"85":[2,107],"86":[2,107],"90":[2,107],"99":[2,107],"101":[2,107],"102":[2,107],"103":[2,107],"110":[2,107],"114":[2,107],"115":[2,107],"126":[2,107],"127":[2,107],"129":[2,107],"130":[2,107],"133":[2,107],"134":[2,107],"135":[2,107],"136":[2,107],"137":[2,107],"138":[2,107]},{"1":[2,38],"4":[2,38],"28":[2,38],"29":[2,38],"55":[2,38],"58":[2,38],"71":[2,38],"76":[2,38],"86":[2,38],"90":[2,38],"99":[2,38],"100":89,"101":[2,38],"102":[2,38],"103":[2,38],"106":90,"110":[2,38],"114":[2,38],"115":[2,38],"126":[2,38],"127":[2,38],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":238,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,112],"4":[2,112],"28":[2,112],"29":[2,112],"55":[2,112],"58":[2,112],"66":[2,112],"67":[2,112],"68":[2,112],"70":[2,112],"71":[2,112],"72":[2,112],"73":[2,112],"76":[2,112],"84":[2,112],"85":[2,112],"86":[2,112],"90":[2,112],"99":[2,112],"101":[2,112],"102":[2,112],"103":[2,112],"110":[2,112],"114":[2,112],"115":[2,112],"126":[2,112],"127":[2,112],"129":[2,112],"130":[2,112],"133":[2,112],"134":[2,112],"135":[2,112],"136":[2,112],"137":[2,112],"138":[2,112]},{"4":[2,55],"28":[2,55],"54":239,"55":[1,231],"86":[2,55]},{"51":240,"52":[1,59],"53":[1,60]},{"56":241,"57":[1,112],"59":[1,113]},{"50":[2,61],"55":[2,61]},{"50":[2,62],"55":[2,62],"58":[1,242]},{"1":[2,200],"4":[2,200],"28":[2,200],"29":[2,200],"55":[2,200],"58":[2,200],"71":[2,200],"76":[2,200],"86":[2,200],"90":[2,200],"99":[2,200],"100":89,"101":[2,200],"102":[2,200],"103":[2,200],"106":90,"110":[2,200],"114":[2,200],"115":[2,200],"126":[2,200],"127":[2,200],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":243,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,105],"4":[2,105],"28":[2,105],"29":[2,105],"55":[2,105],"58":[2,105],"62":96,"66":[1,98],"67":[1,99],"68":[1,100],"69":101,"70":[1,102],"71":[2,105],"72":[1,103],"73":[1,104],"76":[2,105],"81":95,"84":[1,97],"85":[2,110],"86":[2,105],"90":[2,105],"99":[2,105],"101":[2,105],"102":[2,105],"103":[2,105],"110":[2,105],"114":[2,105],"115":[2,105],"126":[2,105],"127":[2,105],"129":[2,105],"130":[2,105],"133":[2,105],"134":[2,105],"135":[2,105],"136":[2,105],"137":[2,105],"138":[2,105]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"55":[2,69],"58":[2,69],"66":[2,69],"67":[2,69],"68":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"84":[2,69],"85":[2,69],"86":[2,69],"90":[2,69],"99":[2,69],"101":[2,69],"102":[2,69],"103":[2,69],"110":[2,69],"114":[2,69],"115":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"133":[2,69],"134":[2,69],"135":[2,69],"136":[2,69],"137":[2,69],"138":[2,69]},{"8":244,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,179],"4":[2,179],"28":[2,179],"29":[2,179],"55":[2,179],"58":[2,179],"71":[2,179],"76":[2,179],"86":[2,179],"90":[2,179],"99":[2,179],"101":[2,179],"102":[2,179],"103":[2,179],"110":[2,179],"114":[2,179],"115":[2,179],"120":[2,179],"126":[2,179],"127":[2,179],"129":[2,179],"130":[2,179],"133":[2,179],"134":[2,179],"135":[2,179],"136":[2,179],"137":[2,179],"138":[2,179]},{"1":[2,129],"4":[2,129],"28":[2,129],"29":[2,129],"55":[2,129],"58":[2,129],"71":[2,129],"76":[2,129],"86":[2,129],"90":[2,129],"95":[1,245],"99":[2,129],"101":[2,129],"102":[2,129],"103":[2,129],"110":[2,129],"114":[2,129],"115":[2,129],"126":[2,129],"127":[2,129],"129":[2,129],"130":[2,129],"133":[2,129],"134":[2,129],"135":[2,129],"136":[2,129],"137":[2,129],"138":[2,129]},{"4":[1,115],"6":246,"28":[1,6]},{"30":247,"31":[1,73]},{"119":248,"121":208,"122":[1,209]},{"29":[1,249],"120":[1,250],"121":251,"122":[1,209]},{"29":[2,172],"120":[2,172],"122":[2,172]},{"8":253,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"92":252,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"15":254,"16":122,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":123,"44":62,"45":29,"59":[1,58],"61":200,"63":50,"64":51,"65":30,"74":[1,70],"83":[1,31],"88":[1,57],"89":[1,69],"98":[1,56]},{"4":[2,101],"27":163,"29":[2,101],"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":215,"42":161,"44":216,"45":166,"47":[1,47],"59":[1,167],"74":[1,214],"79":255,"80":213,"98":[1,56]},{"4":[1,257],"29":[1,256]},{"4":[2,102],"29":[2,102],"76":[2,102]},{"4":[2,101],"27":163,"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":215,"42":161,"44":216,"45":166,"47":[1,47],"59":[1,167],"74":[1,214],"76":[2,101],"79":258,"80":213,"98":[1,56]},{"4":[2,98],"29":[2,98],"76":[2,98]},{"4":[2,43],"29":[2,43],"43":[1,259],"76":[2,43]},{"1":[2,96],"4":[2,96],"28":[1,260],"29":[2,96],"55":[2,96],"58":[2,96],"62":96,"66":[1,98],"67":[1,99],"68":[1,100],"69":101,"70":[1,102],"71":[2,96],"72":[1,103],"73":[1,104],"76":[2,96],"81":95,"84":[1,97],"85":[2,110],"86":[2,96],"90":[2,96],"99":[2,96],"101":[2,96],"102":[2,96],"103":[2,96],"110":[2,96],"114":[2,96],"115":[2,96],"126":[2,96],"127":[2,96],"129":[2,96],"130":[2,96],"133":[2,96],"134":[2,96],"135":[2,96],"136":[2,96],"137":[2,96],"138":[2,96]},{"1":[2,134],"4":[2,134],"28":[2,134],"29":[2,134],"43":[2,134],"55":[2,134],"58":[2,134],"66":[2,134],"67":[2,134],"68":[2,134],"70":[2,134],"71":[2,134],"72":[2,134],"73":[2,134],"76":[2,134],"84":[2,134],"85":[2,134],"86":[2,134],"90":[2,134],"99":[2,134],"101":[2,134],"102":[2,134],"103":[2,134],"110":[2,134],"114":[2,134],"115":[2,134],"126":[2,134],"127":[2,134],"129":[2,134],"130":[2,134],"133":[2,134],"134":[2,134],"135":[2,134],"136":[2,134],"137":[2,134],"138":[2,134]},{"1":[2,176],"4":[2,176],"28":[2,176],"29":[2,176],"55":[2,176],"58":[2,176],"71":[2,176],"76":[2,176],"86":[2,176],"90":[2,176],"99":[2,176],"101":[2,176],"102":[2,176],"103":[2,176],"110":[2,176],"114":[2,176],"115":[2,176],"120":[2,176],"126":[2,176],"127":[2,176],"129":[2,176],"130":[2,176],"133":[2,176],"134":[2,176],"135":[2,176],"136":[2,176],"137":[2,176],"138":[2,176]},{"1":[2,177],"4":[2,177],"28":[2,177],"29":[2,177],"55":[2,177],"58":[2,177],"71":[2,177],"76":[2,177],"86":[2,177],"90":[2,177],"99":[2,177],"101":[2,177],"102":[2,177],"103":[2,177],"110":[2,177],"114":[2,177],"115":[2,177],"120":[2,177],"126":[2,177],"127":[2,177],"129":[2,177],"130":[2,177],"133":[2,177],"134":[2,177],"135":[2,177],"136":[2,177],"137":[2,177],"138":[2,177]},{"8":261,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":262,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,161],"4":[2,161],"28":[2,161],"29":[2,161],"55":[2,161],"58":[2,161],"71":[2,161],"76":[2,161],"86":[2,161],"90":[2,161],"99":[2,161],"101":[2,161],"102":[2,161],"103":[2,161],"110":[2,161],"114":[2,161],"115":[2,161],"126":[2,161],"127":[2,161],"129":[2,161],"130":[2,161],"133":[2,161],"134":[2,161],"135":[2,161],"136":[2,161],"137":[2,161],"138":[2,161]},{"30":263,"31":[1,73],"63":151,"64":152,"74":[1,70],"89":[1,69],"107":264},{"8":265,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,163],"4":[2,163],"28":[2,163],"29":[2,163],"55":[2,163],"58":[2,163],"71":[2,163],"76":[2,163],"86":[2,163],"90":[2,163],"99":[2,163],"101":[2,163],"102":[2,163],"103":[2,163],"110":[2,163],"114":[2,163],"115":[2,163],"126":[2,163],"127":[2,163],"129":[2,163],"130":[2,163],"133":[2,163],"134":[2,163],"135":[2,163],"136":[2,163],"137":[2,163],"138":[2,163]},{"8":266,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":267,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"55":[1,269],"111":268,"112":[1,228]},{"4":[1,271],"28":[1,272],"90":[1,270]},{"4":[2,56],"8":157,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[2,56],"29":[2,56],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"60":158,"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"86":[2,56],"88":[1,57],"89":[1,69],"90":[2,56],"91":273,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":274,"55":[1,231]},{"4":[2,64],"28":[2,64],"29":[2,64],"55":[2,64],"86":[2,64],"90":[2,64]},{"4":[1,276],"28":[1,277],"76":[1,275]},{"4":[2,56],"27":163,"28":[2,56],"29":[2,56],"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":278,"42":161,"44":162,"45":166,"47":[1,47],"59":[1,167],"76":[2,56],"98":[1,56]},{"8":279,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,280],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,81],"4":[2,81],"28":[2,81],"29":[2,81],"40":[2,81],"55":[2,81],"58":[2,81],"66":[2,81],"67":[2,81],"68":[2,81],"70":[2,81],"71":[2,81],"72":[2,81],"73":[2,81],"76":[2,81],"78":[2,81],"84":[2,81],"85":[2,81],"86":[2,81],"90":[2,81],"99":[2,81],"101":[2,81],"102":[2,81],"103":[2,81],"110":[2,81],"114":[2,81],"115":[2,81],"126":[2,81],"127":[2,81],"129":[2,81],"130":[2,81],"131":[2,81],"132":[2,81],"133":[2,81],"134":[2,81],"135":[2,81],"136":[2,81],"137":[2,81],"138":[2,81],"139":[2,81]},{"29":[1,281],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,271],"28":[1,272],"86":[1,282]},{"4":[1,115],"6":283,"28":[1,6]},{"50":[2,59],"55":[2,59]},{"50":[2,63],"55":[2,63]},{"29":[1,284],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,115],"6":285,"28":[1,6],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,115],"6":286,"28":[1,6]},{"1":[2,130],"4":[2,130],"28":[2,130],"29":[2,130],"55":[2,130],"58":[2,130],"71":[2,130],"76":[2,130],"86":[2,130],"90":[2,130],"99":[2,130],"101":[2,130],"102":[2,130],"103":[2,130],"110":[2,130],"114":[2,130],"115":[2,130],"126":[2,130],"127":[2,130],"129":[2,130],"130":[2,130],"133":[2,130],"134":[2,130],"135":[2,130],"136":[2,130],"137":[2,130],"138":[2,130]},{"4":[1,115],"6":287,"28":[1,6]},{"29":[1,288],"120":[1,289],"121":251,"122":[1,209]},{"1":[2,170],"4":[2,170],"28":[2,170],"29":[2,170],"55":[2,170],"58":[2,170],"71":[2,170],"76":[2,170],"86":[2,170],"90":[2,170],"99":[2,170],"101":[2,170],"102":[2,170],"103":[2,170],"110":[2,170],"114":[2,170],"115":[2,170],"126":[2,170],"127":[2,170],"129":[2,170],"130":[2,170],"133":[2,170],"134":[2,170],"135":[2,170],"136":[2,170],"137":[2,170],"138":[2,170]},{"4":[1,115],"6":290,"28":[1,6]},{"29":[2,173],"120":[2,173],"122":[2,173]},{"4":[1,115],"6":291,"28":[1,6],"55":[1,292]},{"4":[2,126],"28":[2,126],"55":[2,126],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,91],"4":[2,91],"28":[1,293],"29":[2,91],"55":[2,91],"58":[2,91],"62":96,"66":[1,98],"67":[1,99],"68":[1,100],"69":101,"70":[1,102],"71":[2,91],"72":[1,103],"73":[1,104],"76":[2,91],"81":95,"84":[1,97],"85":[2,110],"86":[2,91],"90":[2,91],"99":[2,91],"101":[2,91],"102":[2,91],"103":[2,91],"110":[2,91],"114":[2,91],"115":[2,91],"126":[2,91],"127":[2,91],"129":[2,91],"130":[2,91],"133":[2,91],"134":[2,91],"135":[2,91],"136":[2,91],"137":[2,91],"138":[2,91]},{"4":[1,257],"29":[1,294]},{"1":[2,94],"4":[2,94],"28":[2,94],"29":[2,94],"55":[2,94],"58":[2,94],"71":[2,94],"76":[2,94],"86":[2,94],"90":[2,94],"99":[2,94],"101":[2,94],"102":[2,94],"103":[2,94],"110":[2,94],"114":[2,94],"115":[2,94],"126":[2,94],"127":[2,94],"129":[2,94],"130":[2,94],"133":[2,94],"134":[2,94],"135":[2,94],"136":[2,94],"137":[2,94],"138":[2,94]},{"27":163,"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":215,"42":161,"44":216,"45":166,"47":[1,47],"59":[1,167],"80":295,"98":[1,56]},{"4":[1,257],"76":[1,296]},{"8":297,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,298],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,101],"27":163,"29":[2,101],"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":215,"42":161,"44":216,"45":166,"47":[1,47],"59":[1,167],"74":[1,214],"79":299,"80":213,"98":[1,56]},{"1":[2,136],"4":[2,136],"28":[2,136],"29":[2,136],"55":[2,136],"58":[2,136],"71":[2,136],"76":[2,136],"86":[2,136],"90":[2,136],"99":[2,136],"100":89,"101":[1,65],"102":[2,136],"103":[1,66],"106":90,"110":[2,136],"114":[2,136],"115":[1,68],"126":[2,136],"127":[2,136],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,138],"4":[2,138],"28":[2,138],"29":[2,138],"55":[2,138],"58":[2,138],"71":[2,138],"76":[2,138],"86":[2,138],"90":[2,138],"99":[2,138],"100":89,"101":[1,65],"102":[2,138],"103":[1,66],"106":90,"110":[2,138],"114":[2,138],"115":[1,68],"126":[2,138],"127":[2,138],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"108":300,"109":[1,225],"112":[2,148]},{"111":301,"112":[1,228]},{"1":[2,151],"4":[2,151],"28":[2,151],"29":[2,151],"55":[2,151],"58":[2,151],"71":[2,151],"76":[2,151],"86":[2,151],"90":[2,151],"99":[2,151],"100":89,"101":[1,65],"102":[1,302],"103":[1,66],"106":90,"110":[1,303],"114":[2,151],"115":[1,68],"126":[2,151],"127":[2,151],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"100":89,"101":[1,65],"103":[1,66],"106":90,"113":304,"114":[1,305],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,155],"4":[2,155],"28":[2,155],"29":[2,155],"55":[2,155],"58":[2,155],"71":[2,155],"76":[2,155],"86":[2,155],"90":[2,155],"99":[2,155],"100":89,"101":[1,65],"102":[1,306],"103":[1,66],"106":90,"110":[2,155],"114":[2,155],"115":[1,68],"126":[2,155],"127":[2,155],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,165],"4":[2,165],"28":[2,165],"29":[2,165],"55":[2,165],"58":[2,165],"71":[2,165],"76":[2,165],"86":[2,165],"90":[2,165],"99":[2,165],"101":[2,165],"102":[2,165],"103":[2,165],"110":[2,165],"114":[2,165],"115":[2,165],"126":[2,165],"127":[2,165],"129":[2,165],"130":[2,165],"133":[2,165],"134":[2,165],"135":[2,165],"136":[2,165],"137":[2,165],"138":[2,165]},{"30":308,"31":[1,73],"63":151,"64":152,"74":[1,70],"89":[1,69],"107":307},{"1":[2,118],"4":[2,118],"28":[2,118],"29":[2,118],"40":[2,118],"55":[2,118],"58":[2,118],"66":[2,118],"67":[2,118],"68":[2,118],"70":[2,118],"71":[2,118],"72":[2,118],"73":[2,118],"76":[2,118],"84":[2,118],"85":[2,118],"86":[2,118],"90":[2,118],"99":[2,118],"101":[2,118],"102":[2,118],"103":[2,118],"109":[2,118],"110":[2,118],"112":[2,118],"114":[2,118],"115":[2,118],"126":[2,118],"127":[2,118],"129":[2,118],"130":[2,118],"133":[2,118],"134":[2,118],"135":[2,118],"136":[2,118],"137":[2,118],"138":[2,118]},{"8":157,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"60":158,"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"91":309,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":157,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,156],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"60":158,"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"87":310,"88":[1,57],"89":[1,69],"91":155,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,120],"28":[2,120],"29":[2,120],"55":[2,120],"86":[2,120],"90":[2,120]},{"4":[1,271],"28":[1,272],"29":[1,311]},{"1":[2,84],"4":[2,84],"28":[2,84],"29":[2,84],"40":[2,84],"55":[2,84],"58":[2,84],"66":[2,84],"67":[2,84],"68":[2,84],"70":[2,84],"71":[2,84],"72":[2,84],"73":[2,84],"76":[2,84],"84":[2,84],"85":[2,84],"86":[2,84],"90":[2,84],"99":[2,84],"101":[2,84],"102":[2,84],"103":[2,84],"109":[2,84],"110":[2,84],"112":[2,84],"114":[2,84],"115":[2,84],"126":[2,84],"127":[2,84],"129":[2,84],"130":[2,84],"133":[2,84],"134":[2,84],"135":[2,84],"136":[2,84],"137":[2,84],"138":[2,84]},{"27":163,"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":312,"42":161,"44":162,"45":166,"47":[1,47],"59":[1,167],"98":[1,56]},{"4":[2,85],"27":163,"28":[2,85],"29":[2,85],"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":160,"42":161,"44":162,"45":166,"47":[1,47],"55":[2,85],"59":[1,167],"75":313,"98":[1,56]},{"4":[2,87],"28":[2,87],"29":[2,87],"55":[2,87],"76":[2,87]},{"4":[2,41],"28":[2,41],"29":[2,41],"55":[2,41],"76":[2,41],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":314,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,39],"4":[2,39],"28":[2,39],"29":[2,39],"55":[2,39],"58":[2,39],"71":[2,39],"76":[2,39],"86":[2,39],"90":[2,39],"99":[2,39],"101":[2,39],"102":[2,39],"103":[2,39],"110":[2,39],"114":[2,39],"115":[2,39],"126":[2,39],"127":[2,39],"129":[2,39],"130":[2,39],"133":[2,39],"134":[2,39],"135":[2,39],"136":[2,39],"137":[2,39],"138":[2,39]},{"1":[2,113],"4":[2,113],"28":[2,113],"29":[2,113],"55":[2,113],"58":[2,113],"66":[2,113],"67":[2,113],"68":[2,113],"70":[2,113],"71":[2,113],"72":[2,113],"73":[2,113],"76":[2,113],"84":[2,113],"85":[2,113],"86":[2,113],"90":[2,113],"99":[2,113],"101":[2,113],"102":[2,113],"103":[2,113],"110":[2,113],"114":[2,113],"115":[2,113],"126":[2,113],"127":[2,113],"129":[2,113],"130":[2,113],"133":[2,113],"134":[2,113],"135":[2,113],"136":[2,113],"137":[2,113],"138":[2,113]},{"1":[2,51],"4":[2,51],"28":[2,51],"29":[2,51],"55":[2,51],"58":[2,51],"71":[2,51],"76":[2,51],"86":[2,51],"90":[2,51],"99":[2,51],"101":[2,51],"102":[2,51],"103":[2,51],"110":[2,51],"114":[2,51],"115":[2,51],"126":[2,51],"127":[2,51],"129":[2,51],"130":[2,51],"133":[2,51],"134":[2,51],"135":[2,51],"136":[2,51],"137":[2,51],"138":[2,51]},{"1":[2,201],"4":[2,201],"28":[2,201],"29":[2,201],"55":[2,201],"58":[2,201],"71":[2,201],"76":[2,201],"86":[2,201],"90":[2,201],"99":[2,201],"101":[2,201],"102":[2,201],"103":[2,201],"110":[2,201],"114":[2,201],"115":[2,201],"126":[2,201],"127":[2,201],"129":[2,201],"130":[2,201],"133":[2,201],"134":[2,201],"135":[2,201],"136":[2,201],"137":[2,201],"138":[2,201]},{"1":[2,178],"4":[2,178],"28":[2,178],"29":[2,178],"55":[2,178],"58":[2,178],"71":[2,178],"76":[2,178],"86":[2,178],"90":[2,178],"99":[2,178],"101":[2,178],"102":[2,178],"103":[2,178],"110":[2,178],"114":[2,178],"115":[2,178],"120":[2,178],"126":[2,178],"127":[2,178],"129":[2,178],"130":[2,178],"133":[2,178],"134":[2,178],"135":[2,178],"136":[2,178],"137":[2,178],"138":[2,178]},{"1":[2,131],"4":[2,131],"28":[2,131],"29":[2,131],"55":[2,131],"58":[2,131],"71":[2,131],"76":[2,131],"86":[2,131],"90":[2,131],"99":[2,131],"101":[2,131],"102":[2,131],"103":[2,131],"110":[2,131],"114":[2,131],"115":[2,131],"126":[2,131],"127":[2,131],"129":[2,131],"130":[2,131],"133":[2,131],"134":[2,131],"135":[2,131],"136":[2,131],"137":[2,131],"138":[2,131]},{"1":[2,132],"4":[2,132],"28":[2,132],"29":[2,132],"55":[2,132],"58":[2,132],"71":[2,132],"76":[2,132],"86":[2,132],"90":[2,132],"95":[2,132],"99":[2,132],"101":[2,132],"102":[2,132],"103":[2,132],"110":[2,132],"114":[2,132],"115":[2,132],"126":[2,132],"127":[2,132],"129":[2,132],"130":[2,132],"133":[2,132],"134":[2,132],"135":[2,132],"136":[2,132],"137":[2,132],"138":[2,132]},{"1":[2,168],"4":[2,168],"28":[2,168],"29":[2,168],"55":[2,168],"58":[2,168],"71":[2,168],"76":[2,168],"86":[2,168],"90":[2,168],"99":[2,168],"101":[2,168],"102":[2,168],"103":[2,168],"110":[2,168],"114":[2,168],"115":[2,168],"126":[2,168],"127":[2,168],"129":[2,168],"130":[2,168],"133":[2,168],"134":[2,168],"135":[2,168],"136":[2,168],"137":[2,168],"138":[2,168]},{"4":[1,115],"6":315,"28":[1,6]},{"29":[1,316]},{"4":[1,317],"29":[2,174],"120":[2,174],"122":[2,174]},{"8":318,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,101],"27":163,"29":[2,101],"30":164,"31":[1,73],"32":165,"33":[1,71],"34":[1,72],"41":215,"42":161,"44":216,"45":166,"47":[1,47],"59":[1,167],"74":[1,214],"79":319,"80":213,"98":[1,56]},{"1":[2,92],"4":[2,92],"28":[2,92],"29":[2,92],"55":[2,92],"58":[2,92],"71":[2,92],"76":[2,92],"86":[2,92],"90":[2,92],"99":[2,92],"101":[2,92],"102":[2,92],"103":[2,92],"110":[2,92],"114":[2,92],"115":[2,92],"126":[2,92],"127":[2,92],"129":[2,92],"130":[2,92],"133":[2,92],"134":[2,92],"135":[2,92],"136":[2,92],"137":[2,92],"138":[2,92]},{"4":[2,103],"29":[2,103],"76":[2,103]},{"4":[2,104],"29":[2,104],"76":[2,104]},{"4":[2,99],"29":[2,99],"76":[2,99],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":320,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[1,257],"29":[1,321]},{"1":[2,162],"4":[2,162],"28":[2,162],"29":[2,162],"55":[2,162],"58":[2,162],"71":[2,162],"76":[2,162],"86":[2,162],"90":[2,162],"99":[2,162],"101":[2,162],"102":[2,162],"103":[2,162],"110":[2,162],"114":[2,162],"115":[2,162],"126":[2,162],"127":[2,162],"129":[2,162],"130":[2,162],"133":[2,162],"134":[2,162],"135":[2,162],"136":[2,162],"137":[2,162],"138":[2,162]},{"1":[2,164],"4":[2,164],"28":[2,164],"29":[2,164],"55":[2,164],"58":[2,164],"71":[2,164],"76":[2,164],"86":[2,164],"90":[2,164],"99":[2,164],"101":[2,164],"102":[2,164],"103":[2,164],"110":[2,164],"114":[2,164],"115":[2,164],"126":[2,164],"127":[2,164],"129":[2,164],"130":[2,164],"133":[2,164],"134":[2,164],"135":[2,164],"136":[2,164],"137":[2,164],"138":[2,164]},{"8":322,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":323,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,167],"4":[2,167],"28":[2,167],"29":[2,167],"55":[2,167],"58":[2,167],"71":[2,167],"76":[2,167],"86":[2,167],"90":[2,167],"99":[2,167],"101":[2,167],"102":[2,167],"103":[2,167],"110":[2,167],"114":[2,167],"115":[2,167],"126":[2,167],"127":[2,167],"129":[2,167],"130":[2,167],"133":[2,167],"134":[2,167],"135":[2,167],"136":[2,167],"137":[2,167],"138":[2,167]},{"8":324,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":325,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"111":326,"112":[1,228]},{"112":[2,148]},{"4":[2,121],"28":[2,121],"29":[2,121],"55":[2,121],"86":[2,121],"90":[2,121]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":327,"55":[1,231]},{"4":[2,122],"28":[2,122],"29":[2,122],"55":[2,122],"86":[2,122],"90":[2,122]},{"4":[2,88],"28":[2,88],"29":[2,88],"55":[2,88],"76":[2,88]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":328,"55":[1,235]},{"29":[1,329],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"29":[1,330]},{"1":[2,171],"4":[2,171],"28":[2,171],"29":[2,171],"55":[2,171],"58":[2,171],"71":[2,171],"76":[2,171],"86":[2,171],"90":[2,171],"99":[2,171],"101":[2,171],"102":[2,171],"103":[2,171],"110":[2,171],"114":[2,171],"115":[2,171],"126":[2,171],"127":[2,171],"129":[2,171],"130":[2,171],"133":[2,171],"134":[2,171],"135":[2,171],"136":[2,171],"137":[2,171],"138":[2,171]},{"29":[2,175],"120":[2,175],"122":[2,175]},{"4":[2,127],"28":[2,127],"55":[2,127],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,257],"29":[1,331]},{"29":[1,332],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,97],"4":[2,97],"28":[2,97],"29":[2,97],"55":[2,97],"58":[2,97],"71":[2,97],"76":[2,97],"86":[2,97],"90":[2,97],"99":[2,97],"101":[2,97],"102":[2,97],"103":[2,97],"110":[2,97],"114":[2,97],"115":[2,97],"126":[2,97],"127":[2,97],"129":[2,97],"130":[2,97],"133":[2,97],"134":[2,97],"135":[2,97],"136":[2,97],"137":[2,97],"138":[2,97]},{"1":[2,152],"4":[2,152],"28":[2,152],"29":[2,152],"55":[2,152],"58":[2,152],"71":[2,152],"76":[2,152],"86":[2,152],"90":[2,152],"99":[2,152],"100":89,"101":[1,65],"102":[2,152],"103":[1,66],"106":90,"110":[2,152],"114":[2,152],"115":[1,68],"126":[2,152],"127":[2,152],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,153],"4":[2,153],"28":[2,153],"29":[2,153],"55":[2,153],"58":[2,153],"71":[2,153],"76":[2,153],"86":[2,153],"90":[2,153],"99":[2,153],"100":89,"101":[1,65],"102":[1,333],"103":[1,66],"106":90,"110":[2,153],"114":[2,153],"115":[1,68],"126":[2,153],"127":[2,153],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,157],"4":[2,157],"28":[2,157],"29":[2,157],"55":[2,157],"58":[2,157],"71":[2,157],"76":[2,157],"86":[2,157],"90":[2,157],"99":[2,157],"100":89,"101":[1,65],"102":[1,334],"103":[1,66],"106":90,"110":[1,335],"114":[2,157],"115":[1,68],"126":[2,157],"127":[2,157],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,156],"4":[2,156],"28":[2,156],"29":[2,156],"55":[2,156],"58":[2,156],"71":[2,156],"76":[2,156],"86":[2,156],"90":[2,156],"99":[2,156],"100":89,"101":[1,65],"102":[2,156],"103":[1,66],"106":90,"110":[2,156],"114":[2,156],"115":[1,68],"126":[2,156],"127":[2,156],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,166],"4":[2,166],"28":[2,166],"29":[2,166],"55":[2,166],"58":[2,166],"71":[2,166],"76":[2,166],"86":[2,166],"90":[2,166],"99":[2,166],"101":[2,166],"102":[2,166],"103":[2,166],"110":[2,166],"114":[2,166],"115":[2,166],"126":[2,166],"127":[2,166],"129":[2,166],"130":[2,166],"133":[2,166],"134":[2,166],"135":[2,166],"136":[2,166],"137":[2,166],"138":[2,166]},{"4":[1,271],"28":[1,272],"29":[1,336]},{"4":[1,276],"28":[1,277],"29":[1,337]},{"4":[2,42],"28":[2,42],"29":[2,42],"55":[2,42],"76":[2,42]},{"1":[2,169],"4":[2,169],"28":[2,169],"29":[2,169],"55":[2,169],"58":[2,169],"71":[2,169],"76":[2,169],"86":[2,169],"90":[2,169],"99":[2,169],"101":[2,169],"102":[2,169],"103":[2,169],"110":[2,169],"114":[2,169],"115":[2,169],"126":[2,169],"127":[2,169],"129":[2,169],"130":[2,169],"133":[2,169],"134":[2,169],"135":[2,169],"136":[2,169],"137":[2,169],"138":[2,169]},{"1":[2,93],"4":[2,93],"28":[2,93],"29":[2,93],"55":[2,93],"58":[2,93],"71":[2,93],"76":[2,93],"86":[2,93],"90":[2,93],"99":[2,93],"101":[2,93],"102":[2,93],"103":[2,93],"110":[2,93],"114":[2,93],"115":[2,93],"126":[2,93],"127":[2,93],"129":[2,93],"130":[2,93],"133":[2,93],"134":[2,93],"135":[2,93],"136":[2,93],"137":[2,93],"138":[2,93]},{"4":[2,100],"29":[2,100],"76":[2,100]},{"8":338,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":339,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":340,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,123],"28":[2,123],"29":[2,123],"55":[2,123],"86":[2,123],"90":[2,123]},{"4":[2,89],"28":[2,89],"29":[2,89],"55":[2,89],"76":[2,89]},{"1":[2,154],"4":[2,154],"28":[2,154],"29":[2,154],"55":[2,154],"58":[2,154],"71":[2,154],"76":[2,154],"86":[2,154],"90":[2,154],"99":[2,154],"100":89,"101":[1,65],"102":[2,154],"103":[1,66],"106":90,"110":[2,154],"114":[2,154],"115":[1,68],"126":[2,154],"127":[2,154],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,158],"4":[2,158],"28":[2,158],"29":[2,158],"55":[2,158],"58":[2,158],"71":[2,158],"76":[2,158],"86":[2,158],"90":[2,158],"99":[2,158],"100":89,"101":[1,65],"102":[2,158],"103":[1,66],"106":90,"110":[2,158],"114":[2,158],"115":[1,68],"126":[2,158],"127":[2,158],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,159],"4":[2,159],"28":[2,159],"29":[2,159],"55":[2,159],"58":[2,159],"71":[2,159],"76":[2,159],"86":[2,159],"90":[2,159],"99":[2,159],"100":89,"101":[1,65],"102":[1,341],"103":[1,66],"106":90,"110":[2,159],"114":[2,159],"115":[1,68],"126":[2,159],"127":[2,159],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":342,"9":117,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":[1,58],"61":39,"63":50,"64":51,"65":30,"74":[1,70],"77":[1,46],"83":[1,31],"88":[1,57],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,160],"4":[2,160],"28":[2,160],"29":[2,160],"55":[2,160],"58":[2,160],"71":[2,160],"76":[2,160],"86":[2,160],"90":[2,160],"99":[2,160],"100":89,"101":[1,65],"102":[2,160],"103":[1,66],"106":90,"110":[2,160],"114":[2,160],"115":[1,68],"126":[2,160],"127":[2,160],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]}], -defaultActions: {"76":[2,4],"97":[2,111],"308":[2,148]}, +table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[3]},{"1":[2,2],"27":74,"47":[1,47]},{"1":[2,3],"4":[1,75]},{"4":[1,76]},{"1":[2,5],"4":[2,5],"29":[2,5]},{"5":77,"7":5,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[1,78],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,8],"4":[2,8],"29":[2,8],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,9],"4":[2,9],"29":[2,9],"99":93,"100":[1,65],"102":[1,66],"105":94,"114":[1,68],"125":[1,91],"126":[1,92]},{"1":[2,15],"4":[2,15],"28":[2,15],"29":[2,15],"50":[2,15],"55":[2,15],"57":[2,15],"60":96,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"69":[2,15],"70":[1,103],"71":[1,104],"74":[2,15],"79":95,"82":[1,97],"83":[2,112],"84":[2,15],"89":[2,15],"98":[2,15],"100":[2,15],"101":[2,15],"102":[2,15],"109":[2,15],"113":[2,15],"114":[2,15],"125":[2,15],"126":[2,15],"128":[2,15],"129":[2,15],"132":[2,15],"133":[2,15],"134":[2,15],"135":[2,15],"136":[2,15],"137":[2,15]},{"1":[2,16],"4":[2,16],"28":[2,16],"29":[2,16],"50":[2,16],"55":[2,16],"57":[2,16],"60":106,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"69":[2,16],"70":[1,103],"71":[1,104],"74":[2,16],"79":105,"82":[1,97],"83":[2,112],"84":[2,16],"89":[2,16],"98":[2,16],"100":[2,16],"101":[2,16],"102":[2,16],"109":[2,16],"113":[2,16],"114":[2,16],"125":[2,16],"126":[2,16],"128":[2,16],"129":[2,16],"132":[2,16],"133":[2,16],"134":[2,16],"135":[2,16],"136":[2,16],"137":[2,16]},{"1":[2,17],"4":[2,17],"28":[2,17],"29":[2,17],"50":[2,17],"55":[2,17],"57":[2,17],"69":[2,17],"74":[2,17],"84":[2,17],"89":[2,17],"98":[2,17],"100":[2,17],"101":[2,17],"102":[2,17],"109":[2,17],"113":[2,17],"114":[2,17],"125":[2,17],"126":[2,17],"128":[2,17],"129":[2,17],"132":[2,17],"133":[2,17],"134":[2,17],"135":[2,17],"136":[2,17],"137":[2,17]},{"1":[2,18],"4":[2,18],"28":[2,18],"29":[2,18],"50":[2,18],"55":[2,18],"57":[2,18],"69":[2,18],"74":[2,18],"84":[2,18],"89":[2,18],"98":[2,18],"100":[2,18],"101":[2,18],"102":[2,18],"109":[2,18],"113":[2,18],"114":[2,18],"125":[2,18],"126":[2,18],"128":[2,18],"129":[2,18],"132":[2,18],"133":[2,18],"134":[2,18],"135":[2,18],"136":[2,18],"137":[2,18]},{"1":[2,19],"4":[2,19],"28":[2,19],"29":[2,19],"50":[2,19],"55":[2,19],"57":[2,19],"69":[2,19],"74":[2,19],"84":[2,19],"89":[2,19],"98":[2,19],"100":[2,19],"101":[2,19],"102":[2,19],"109":[2,19],"113":[2,19],"114":[2,19],"125":[2,19],"126":[2,19],"128":[2,19],"129":[2,19],"132":[2,19],"133":[2,19],"134":[2,19],"135":[2,19],"136":[2,19],"137":[2,19]},{"1":[2,20],"4":[2,20],"28":[2,20],"29":[2,20],"50":[2,20],"55":[2,20],"57":[2,20],"69":[2,20],"74":[2,20],"84":[2,20],"89":[2,20],"98":[2,20],"100":[2,20],"101":[2,20],"102":[2,20],"109":[2,20],"113":[2,20],"114":[2,20],"125":[2,20],"126":[2,20],"128":[2,20],"129":[2,20],"132":[2,20],"133":[2,20],"134":[2,20],"135":[2,20],"136":[2,20],"137":[2,20]},{"1":[2,21],"4":[2,21],"28":[2,21],"29":[2,21],"50":[2,21],"55":[2,21],"57":[2,21],"69":[2,21],"74":[2,21],"84":[2,21],"89":[2,21],"98":[2,21],"100":[2,21],"101":[2,21],"102":[2,21],"109":[2,21],"113":[2,21],"114":[2,21],"125":[2,21],"126":[2,21],"128":[2,21],"129":[2,21],"132":[2,21],"133":[2,21],"134":[2,21],"135":[2,21],"136":[2,21],"137":[2,21]},{"1":[2,22],"4":[2,22],"28":[2,22],"29":[2,22],"50":[2,22],"55":[2,22],"57":[2,22],"69":[2,22],"74":[2,22],"84":[2,22],"89":[2,22],"98":[2,22],"100":[2,22],"101":[2,22],"102":[2,22],"109":[2,22],"113":[2,22],"114":[2,22],"125":[2,22],"126":[2,22],"128":[2,22],"129":[2,22],"132":[2,22],"133":[2,22],"134":[2,22],"135":[2,22],"136":[2,22],"137":[2,22]},{"1":[2,23],"4":[2,23],"28":[2,23],"29":[2,23],"50":[2,23],"55":[2,23],"57":[2,23],"69":[2,23],"74":[2,23],"84":[2,23],"89":[2,23],"98":[2,23],"100":[2,23],"101":[2,23],"102":[2,23],"109":[2,23],"113":[2,23],"114":[2,23],"125":[2,23],"126":[2,23],"128":[2,23],"129":[2,23],"132":[2,23],"133":[2,23],"134":[2,23],"135":[2,23],"136":[2,23],"137":[2,23]},{"1":[2,24],"4":[2,24],"28":[2,24],"29":[2,24],"50":[2,24],"55":[2,24],"57":[2,24],"69":[2,24],"74":[2,24],"84":[2,24],"89":[2,24],"98":[2,24],"100":[2,24],"101":[2,24],"102":[2,24],"109":[2,24],"113":[2,24],"114":[2,24],"125":[2,24],"126":[2,24],"128":[2,24],"129":[2,24],"132":[2,24],"133":[2,24],"134":[2,24],"135":[2,24],"136":[2,24],"137":[2,24]},{"1":[2,25],"4":[2,25],"28":[2,25],"29":[2,25],"50":[2,25],"55":[2,25],"57":[2,25],"69":[2,25],"74":[2,25],"84":[2,25],"89":[2,25],"98":[2,25],"100":[2,25],"101":[2,25],"102":[2,25],"109":[2,25],"113":[2,25],"114":[2,25],"125":[2,25],"126":[2,25],"128":[2,25],"129":[2,25],"132":[2,25],"133":[2,25],"134":[2,25],"135":[2,25],"136":[2,25],"137":[2,25]},{"1":[2,26],"4":[2,26],"28":[2,26],"29":[2,26],"50":[2,26],"55":[2,26],"57":[2,26],"69":[2,26],"74":[2,26],"84":[2,26],"89":[2,26],"98":[2,26],"100":[2,26],"101":[2,26],"102":[2,26],"109":[2,26],"113":[2,26],"114":[2,26],"125":[2,26],"126":[2,26],"128":[2,26],"129":[2,26],"132":[2,26],"133":[2,26],"134":[2,26],"135":[2,26],"136":[2,26],"137":[2,26]},{"1":[2,27],"4":[2,27],"28":[2,27],"29":[2,27],"50":[2,27],"55":[2,27],"57":[2,27],"69":[2,27],"74":[2,27],"84":[2,27],"89":[2,27],"98":[2,27],"100":[2,27],"101":[2,27],"102":[2,27],"109":[2,27],"113":[2,27],"114":[2,27],"125":[2,27],"126":[2,27],"128":[2,27],"129":[2,27],"132":[2,27],"133":[2,27],"134":[2,27],"135":[2,27],"136":[2,27],"137":[2,27]},{"1":[2,10],"4":[2,10],"29":[2,10],"100":[2,10],"102":[2,10],"114":[2,10],"125":[2,10],"126":[2,10]},{"1":[2,11],"4":[2,11],"29":[2,11],"100":[2,11],"102":[2,11],"114":[2,11],"125":[2,11],"126":[2,11]},{"1":[2,12],"4":[2,12],"29":[2,12],"100":[2,12],"102":[2,12],"114":[2,12],"125":[2,12],"126":[2,12]},{"1":[2,13],"4":[2,13],"29":[2,13],"100":[2,13],"102":[2,13],"114":[2,13],"125":[2,13],"126":[2,13]},{"1":[2,14],"4":[2,14],"29":[2,14],"100":[2,14],"102":[2,14],"114":[2,14],"125":[2,14],"126":[2,14]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"40":[1,107],"50":[2,74],"55":[2,74],"57":[2,74],"64":[2,74],"65":[2,74],"66":[2,74],"68":[2,74],"69":[2,74],"70":[2,74],"71":[2,74],"74":[2,74],"82":[2,74],"83":[2,74],"84":[2,74],"89":[2,74],"98":[2,74],"100":[2,74],"101":[2,74],"102":[2,74],"109":[2,74],"113":[2,74],"114":[2,74],"125":[2,74],"126":[2,74],"128":[2,74],"129":[2,74],"132":[2,74],"133":[2,74],"134":[2,74],"135":[2,74],"136":[2,74],"137":[2,74]},{"1":[2,75],"4":[2,75],"28":[2,75],"29":[2,75],"50":[2,75],"55":[2,75],"57":[2,75],"64":[2,75],"65":[2,75],"66":[2,75],"68":[2,75],"69":[2,75],"70":[2,75],"71":[2,75],"74":[2,75],"82":[2,75],"83":[2,75],"84":[2,75],"89":[2,75],"98":[2,75],"100":[2,75],"101":[2,75],"102":[2,75],"109":[2,75],"113":[2,75],"114":[2,75],"125":[2,75],"126":[2,75],"128":[2,75],"129":[2,75],"132":[2,75],"133":[2,75],"134":[2,75],"135":[2,75],"136":[2,75],"137":[2,75]},{"1":[2,76],"4":[2,76],"28":[2,76],"29":[2,76],"50":[2,76],"55":[2,76],"57":[2,76],"64":[2,76],"65":[2,76],"66":[2,76],"68":[2,76],"69":[2,76],"70":[2,76],"71":[2,76],"74":[2,76],"82":[2,76],"83":[2,76],"84":[2,76],"89":[2,76],"98":[2,76],"100":[2,76],"101":[2,76],"102":[2,76],"109":[2,76],"113":[2,76],"114":[2,76],"125":[2,76],"126":[2,76],"128":[2,76],"129":[2,76],"132":[2,76],"133":[2,76],"134":[2,76],"135":[2,76],"136":[2,76],"137":[2,76]},{"1":[2,77],"4":[2,77],"28":[2,77],"29":[2,77],"50":[2,77],"55":[2,77],"57":[2,77],"64":[2,77],"65":[2,77],"66":[2,77],"68":[2,77],"69":[2,77],"70":[2,77],"71":[2,77],"74":[2,77],"82":[2,77],"83":[2,77],"84":[2,77],"89":[2,77],"98":[2,77],"100":[2,77],"101":[2,77],"102":[2,77],"109":[2,77],"113":[2,77],"114":[2,77],"125":[2,77],"126":[2,77],"128":[2,77],"129":[2,77],"132":[2,77],"133":[2,77],"134":[2,77],"135":[2,77],"136":[2,77],"137":[2,77]},{"1":[2,110],"4":[2,110],"28":[2,110],"29":[2,110],"50":[2,110],"55":[2,110],"57":[2,110],"64":[2,110],"65":[2,110],"66":[2,110],"68":[2,110],"69":[2,110],"70":[2,110],"71":[2,110],"74":[2,110],"80":108,"82":[2,110],"83":[1,109],"84":[2,110],"89":[2,110],"98":[2,110],"100":[2,110],"101":[2,110],"102":[2,110],"109":[2,110],"113":[2,110],"114":[2,110],"125":[2,110],"126":[2,110],"128":[2,110],"129":[2,110],"132":[2,110],"133":[2,110],"134":[2,110],"135":[2,110],"136":[2,110],"137":[2,110]},{"30":112,"31":[1,73],"44":113,"49":110,"50":[2,57],"55":[2,57],"56":111,"87":[1,114]},{"4":[1,116],"6":115,"28":[1,6]},{"8":117,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":119,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":120,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"15":122,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":121,"61":50,"62":51,"63":30,"72":[1,70],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"97":[1,56]},{"15":122,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":125,"61":50,"62":51,"63":30,"72":[1,70],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"97":[1,56]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"40":[2,71],"50":[2,71],"55":[2,71],"57":[2,71],"64":[2,71],"65":[2,71],"66":[2,71],"68":[2,71],"69":[2,71],"70":[2,71],"71":[2,71],"74":[2,71],"76":[1,129],"82":[2,71],"83":[2,71],"84":[2,71],"89":[2,71],"98":[2,71],"100":[2,71],"101":[2,71],"102":[2,71],"109":[2,71],"113":[2,71],"114":[2,71],"125":[2,71],"126":[2,71],"128":[2,71],"129":[2,71],"130":[1,126],"131":[1,127],"132":[2,71],"133":[2,71],"134":[2,71],"135":[2,71],"136":[2,71],"137":[2,71],"138":[1,128]},{"1":[2,182],"4":[2,182],"28":[2,182],"29":[2,182],"50":[2,182],"55":[2,182],"57":[2,182],"69":[2,182],"74":[2,182],"84":[2,182],"89":[2,182],"98":[2,182],"100":[2,182],"101":[2,182],"102":[2,182],"109":[2,182],"113":[2,182],"114":[2,182],"119":[1,130],"125":[2,182],"126":[2,182],"128":[2,182],"129":[2,182],"132":[2,182],"133":[2,182],"134":[2,182],"135":[2,182],"136":[2,182],"137":[2,182]},{"4":[1,116],"6":131,"28":[1,6]},{"4":[1,116],"6":132,"28":[1,6]},{"1":[2,144],"4":[2,144],"28":[2,144],"29":[2,144],"50":[2,144],"55":[2,144],"57":[2,144],"69":[2,144],"74":[2,144],"84":[2,144],"89":[2,144],"98":[2,144],"100":[2,144],"101":[2,144],"102":[2,144],"109":[2,144],"113":[2,144],"114":[2,144],"125":[2,144],"126":[2,144],"128":[2,144],"129":[2,144],"132":[2,144],"133":[2,144],"134":[2,144],"135":[2,144],"136":[2,144],"137":[2,144]},{"4":[1,116],"6":133,"28":[1,6]},{"8":134,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,135],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,97],"4":[2,97],"15":122,"16":123,"28":[1,137],"29":[2,97],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"50":[2,97],"55":[2,97],"57":[2,97],"59":136,"61":50,"62":51,"63":30,"69":[2,97],"72":[1,70],"74":[2,97],"76":[1,138],"81":[1,31],"84":[2,97],"86":[1,57],"87":[1,58],"88":[1,69],"89":[2,97],"97":[1,56],"98":[2,97],"100":[2,97],"101":[2,97],"102":[2,97],"109":[2,97],"113":[2,97],"114":[2,97],"125":[2,97],"126":[2,97],"128":[2,97],"129":[2,97],"132":[2,97],"133":[2,97],"134":[2,97],"135":[2,97],"136":[2,97],"137":[2,97]},{"1":[2,50],"4":[2,50],"28":[2,50],"29":[2,50],"50":[2,50],"55":[2,50],"57":[2,50],"69":[2,50],"74":[2,50],"84":[2,50],"89":[2,50],"94":[2,50],"95":[2,50],"98":[2,50],"100":[2,50],"101":[2,50],"102":[2,50],"109":[2,50],"113":[2,50],"114":[2,50],"119":[2,50],"121":[2,50],"125":[2,50],"126":[2,50],"128":[2,50],"129":[2,50],"132":[2,50],"133":[2,50],"134":[2,50],"135":[2,50],"136":[2,50],"137":[2,50]},{"1":[2,49],"4":[2,49],"8":139,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[2,49],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[2,49],"102":[2,49],"103":43,"104":[1,67],"105":44,"114":[2,49],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"125":[2,49],"126":[2,49],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":140,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"40":[2,72],"50":[2,72],"55":[2,72],"57":[2,72],"64":[2,72],"65":[2,72],"66":[2,72],"68":[2,72],"69":[2,72],"70":[2,72],"71":[2,72],"74":[2,72],"82":[2,72],"83":[2,72],"84":[2,72],"89":[2,72],"98":[2,72],"100":[2,72],"101":[2,72],"102":[2,72],"109":[2,72],"113":[2,72],"114":[2,72],"125":[2,72],"126":[2,72],"128":[2,72],"129":[2,72],"132":[2,72],"133":[2,72],"134":[2,72],"135":[2,72],"136":[2,72],"137":[2,72]},{"1":[2,73],"4":[2,73],"28":[2,73],"29":[2,73],"40":[2,73],"50":[2,73],"55":[2,73],"57":[2,73],"64":[2,73],"65":[2,73],"66":[2,73],"68":[2,73],"69":[2,73],"70":[2,73],"71":[2,73],"74":[2,73],"82":[2,73],"83":[2,73],"84":[2,73],"89":[2,73],"98":[2,73],"100":[2,73],"101":[2,73],"102":[2,73],"109":[2,73],"113":[2,73],"114":[2,73],"125":[2,73],"126":[2,73],"128":[2,73],"129":[2,73],"132":[2,73],"133":[2,73],"134":[2,73],"135":[2,73],"136":[2,73],"137":[2,73]},{"1":[2,34],"4":[2,34],"28":[2,34],"29":[2,34],"50":[2,34],"55":[2,34],"57":[2,34],"64":[2,34],"65":[2,34],"66":[2,34],"68":[2,34],"69":[2,34],"70":[2,34],"71":[2,34],"74":[2,34],"82":[2,34],"83":[2,34],"84":[2,34],"89":[2,34],"98":[2,34],"100":[2,34],"101":[2,34],"102":[2,34],"109":[2,34],"113":[2,34],"114":[2,34],"125":[2,34],"126":[2,34],"128":[2,34],"129":[2,34],"132":[2,34],"133":[2,34],"134":[2,34],"135":[2,34],"136":[2,34],"137":[2,34]},{"1":[2,35],"4":[2,35],"28":[2,35],"29":[2,35],"50":[2,35],"55":[2,35],"57":[2,35],"64":[2,35],"65":[2,35],"66":[2,35],"68":[2,35],"69":[2,35],"70":[2,35],"71":[2,35],"74":[2,35],"82":[2,35],"83":[2,35],"84":[2,35],"89":[2,35],"98":[2,35],"100":[2,35],"101":[2,35],"102":[2,35],"109":[2,35],"113":[2,35],"114":[2,35],"125":[2,35],"126":[2,35],"128":[2,35],"129":[2,35],"132":[2,35],"133":[2,35],"134":[2,35],"135":[2,35],"136":[2,35],"137":[2,35]},{"1":[2,36],"4":[2,36],"28":[2,36],"29":[2,36],"50":[2,36],"55":[2,36],"57":[2,36],"64":[2,36],"65":[2,36],"66":[2,36],"68":[2,36],"69":[2,36],"70":[2,36],"71":[2,36],"74":[2,36],"82":[2,36],"83":[2,36],"84":[2,36],"89":[2,36],"98":[2,36],"100":[2,36],"101":[2,36],"102":[2,36],"109":[2,36],"113":[2,36],"114":[2,36],"125":[2,36],"126":[2,36],"128":[2,36],"129":[2,36],"132":[2,36],"133":[2,36],"134":[2,36],"135":[2,36],"136":[2,36],"137":[2,36]},{"1":[2,37],"4":[2,37],"28":[2,37],"29":[2,37],"50":[2,37],"55":[2,37],"57":[2,37],"64":[2,37],"65":[2,37],"66":[2,37],"68":[2,37],"69":[2,37],"70":[2,37],"71":[2,37],"74":[2,37],"82":[2,37],"83":[2,37],"84":[2,37],"89":[2,37],"98":[2,37],"100":[2,37],"101":[2,37],"102":[2,37],"109":[2,37],"113":[2,37],"114":[2,37],"125":[2,37],"126":[2,37],"128":[2,37],"129":[2,37],"132":[2,37],"133":[2,37],"134":[2,37],"135":[2,37],"136":[2,37],"137":[2,37]},{"8":141,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,116],"4":[2,116],"28":[2,116],"29":[2,116],"50":[2,116],"55":[2,116],"57":[2,116],"64":[2,116],"65":[2,116],"66":[2,116],"68":[2,116],"69":[2,116],"70":[2,116],"71":[2,116],"74":[2,116],"82":[2,116],"83":[2,116],"84":[2,116],"89":[2,116],"98":[2,116],"100":[2,116],"101":[2,116],"102":[2,116],"109":[2,116],"113":[2,116],"114":[2,116],"125":[2,116],"126":[2,116],"128":[2,116],"129":[2,116],"132":[2,116],"133":[2,116],"134":[2,116],"135":[2,116],"136":[2,116],"137":[2,116]},{"1":[2,117],"4":[2,117],"28":[2,117],"29":[2,117],"30":142,"31":[1,73],"50":[2,117],"55":[2,117],"57":[2,117],"64":[2,117],"65":[2,117],"66":[2,117],"68":[2,117],"69":[2,117],"70":[2,117],"71":[2,117],"74":[2,117],"82":[2,117],"83":[2,117],"84":[2,117],"89":[2,117],"98":[2,117],"100":[2,117],"101":[2,117],"102":[2,117],"109":[2,117],"113":[2,117],"114":[2,117],"125":[2,117],"126":[2,117],"128":[2,117],"129":[2,117],"132":[2,117],"133":[2,117],"134":[2,117],"135":[2,117],"136":[2,117],"137":[2,117]},{"4":[2,53],"28":[2,53]},{"4":[2,54],"28":[2,54]},{"1":[2,67],"4":[2,67],"28":[2,67],"29":[2,67],"40":[2,67],"50":[2,67],"55":[2,67],"57":[2,67],"64":[2,67],"65":[2,67],"66":[2,67],"68":[2,67],"69":[2,67],"70":[2,67],"71":[2,67],"74":[2,67],"76":[2,67],"82":[2,67],"83":[2,67],"84":[2,67],"89":[2,67],"98":[2,67],"100":[2,67],"101":[2,67],"102":[2,67],"109":[2,67],"113":[2,67],"114":[2,67],"125":[2,67],"126":[2,67],"128":[2,67],"129":[2,67],"130":[2,67],"131":[2,67],"132":[2,67],"133":[2,67],"134":[2,67],"135":[2,67],"136":[2,67],"137":[2,67],"138":[2,67]},{"1":[2,70],"4":[2,70],"28":[2,70],"29":[2,70],"40":[2,70],"50":[2,70],"55":[2,70],"57":[2,70],"64":[2,70],"65":[2,70],"66":[2,70],"68":[2,70],"69":[2,70],"70":[2,70],"71":[2,70],"74":[2,70],"76":[2,70],"82":[2,70],"83":[2,70],"84":[2,70],"89":[2,70],"98":[2,70],"100":[2,70],"101":[2,70],"102":[2,70],"109":[2,70],"113":[2,70],"114":[2,70],"125":[2,70],"126":[2,70],"128":[2,70],"129":[2,70],"130":[2,70],"131":[2,70],"132":[2,70],"133":[2,70],"134":[2,70],"135":[2,70],"136":[2,70],"137":[2,70],"138":[2,70]},{"8":143,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":144,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":145,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":146,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[1,116],"6":147,"8":148,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"30":150,"31":[1,73],"61":152,"62":153,"72":[1,70],"88":[1,69],"106":149,"115":[1,151]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,157],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"58":159,"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"85":155,"86":[1,57],"87":[1,58],"88":[1,69],"89":[1,154],"90":156,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,87],"27":164,"28":[2,87],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":161,"42":162,"44":163,"45":167,"47":[1,47],"55":[2,87],"73":160,"74":[2,87],"87":[1,114],"97":[1,56]},{"1":[2,32],"4":[2,32],"28":[2,32],"29":[2,32],"43":[2,32],"50":[2,32],"55":[2,32],"57":[2,32],"64":[2,32],"65":[2,32],"66":[2,32],"68":[2,32],"69":[2,32],"70":[2,32],"71":[2,32],"74":[2,32],"82":[2,32],"83":[2,32],"84":[2,32],"89":[2,32],"98":[2,32],"100":[2,32],"101":[2,32],"102":[2,32],"109":[2,32],"113":[2,32],"114":[2,32],"125":[2,32],"126":[2,32],"128":[2,32],"129":[2,32],"132":[2,32],"133":[2,32],"134":[2,32],"135":[2,32],"136":[2,32],"137":[2,32]},{"1":[2,33],"4":[2,33],"28":[2,33],"29":[2,33],"43":[2,33],"50":[2,33],"55":[2,33],"57":[2,33],"64":[2,33],"65":[2,33],"66":[2,33],"68":[2,33],"69":[2,33],"70":[2,33],"71":[2,33],"74":[2,33],"82":[2,33],"83":[2,33],"84":[2,33],"89":[2,33],"98":[2,33],"100":[2,33],"101":[2,33],"102":[2,33],"109":[2,33],"113":[2,33],"114":[2,33],"125":[2,33],"126":[2,33],"128":[2,33],"129":[2,33],"132":[2,33],"133":[2,33],"134":[2,33],"135":[2,33],"136":[2,33],"137":[2,33]},{"1":[2,31],"4":[2,31],"28":[2,31],"29":[2,31],"40":[2,31],"43":[2,31],"50":[2,31],"55":[2,31],"57":[2,31],"64":[2,31],"65":[2,31],"66":[2,31],"68":[2,31],"69":[2,31],"70":[2,31],"71":[2,31],"74":[2,31],"76":[2,31],"82":[2,31],"83":[2,31],"84":[2,31],"89":[2,31],"98":[2,31],"100":[2,31],"101":[2,31],"102":[2,31],"108":[2,31],"109":[2,31],"111":[2,31],"113":[2,31],"114":[2,31],"116":[2,31],"125":[2,31],"126":[2,31],"128":[2,31],"129":[2,31],"130":[2,31],"131":[2,31],"132":[2,31],"133":[2,31],"134":[2,31],"135":[2,31],"136":[2,31],"137":[2,31],"138":[2,31]},{"1":[2,30],"4":[2,30],"28":[2,30],"29":[2,30],"50":[2,30],"55":[2,30],"57":[2,30],"69":[2,30],"74":[2,30],"84":[2,30],"89":[2,30],"94":[2,30],"95":[2,30],"98":[2,30],"100":[2,30],"101":[2,30],"102":[2,30],"109":[2,30],"113":[2,30],"114":[2,30],"119":[2,30],"121":[2,30],"125":[2,30],"126":[2,30],"128":[2,30],"129":[2,30],"132":[2,30],"133":[2,30],"134":[2,30],"135":[2,30],"136":[2,30],"137":[2,30]},{"1":[2,7],"4":[2,7],"7":168,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[2,7],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,4]},{"4":[1,75],"29":[1,169]},{"1":[2,29],"4":[2,29],"28":[2,29],"29":[2,29],"50":[2,29],"55":[2,29],"57":[2,29],"69":[2,29],"74":[2,29],"84":[2,29],"89":[2,29],"94":[2,29],"95":[2,29],"98":[2,29],"100":[2,29],"101":[2,29],"102":[2,29],"109":[2,29],"113":[2,29],"114":[2,29],"119":[2,29],"121":[2,29],"125":[2,29],"126":[2,29],"128":[2,29],"129":[2,29],"132":[2,29],"133":[2,29],"134":[2,29],"135":[2,29],"136":[2,29],"137":[2,29]},{"1":[2,194],"4":[2,194],"28":[2,194],"29":[2,194],"50":[2,194],"55":[2,194],"57":[2,194],"69":[2,194],"74":[2,194],"84":[2,194],"89":[2,194],"98":[2,194],"100":[2,194],"101":[2,194],"102":[2,194],"109":[2,194],"113":[2,194],"114":[2,194],"125":[2,194],"126":[2,194],"128":[2,194],"129":[2,194],"132":[2,194],"133":[2,194],"134":[2,194],"135":[2,194],"136":[2,194],"137":[2,194]},{"8":170,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":171,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":172,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":173,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":174,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":175,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":176,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":177,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":178,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,143],"4":[2,143],"28":[2,143],"29":[2,143],"50":[2,143],"55":[2,143],"57":[2,143],"69":[2,143],"74":[2,143],"84":[2,143],"89":[2,143],"98":[2,143],"100":[2,143],"101":[2,143],"102":[2,143],"109":[2,143],"113":[2,143],"114":[2,143],"125":[2,143],"126":[2,143],"128":[2,143],"129":[2,143],"132":[2,143],"133":[2,143],"134":[2,143],"135":[2,143],"136":[2,143],"137":[2,143]},{"1":[2,148],"4":[2,148],"28":[2,148],"29":[2,148],"50":[2,148],"55":[2,148],"57":[2,148],"69":[2,148],"74":[2,148],"84":[2,148],"89":[2,148],"98":[2,148],"100":[2,148],"101":[2,148],"102":[2,148],"109":[2,148],"113":[2,148],"114":[2,148],"125":[2,148],"126":[2,148],"128":[2,148],"129":[2,148],"132":[2,148],"133":[2,148],"134":[2,148],"135":[2,148],"136":[2,148],"137":[2,148]},{"8":179,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":180,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,142],"4":[2,142],"28":[2,142],"29":[2,142],"50":[2,142],"55":[2,142],"57":[2,142],"69":[2,142],"74":[2,142],"84":[2,142],"89":[2,142],"98":[2,142],"100":[2,142],"101":[2,142],"102":[2,142],"109":[2,142],"113":[2,142],"114":[2,142],"125":[2,142],"126":[2,142],"128":[2,142],"129":[2,142],"132":[2,142],"133":[2,142],"134":[2,142],"135":[2,142],"136":[2,142],"137":[2,142]},{"1":[2,147],"4":[2,147],"28":[2,147],"29":[2,147],"50":[2,147],"55":[2,147],"57":[2,147],"69":[2,147],"74":[2,147],"84":[2,147],"89":[2,147],"98":[2,147],"100":[2,147],"101":[2,147],"102":[2,147],"109":[2,147],"113":[2,147],"114":[2,147],"125":[2,147],"126":[2,147],"128":[2,147],"129":[2,147],"132":[2,147],"133":[2,147],"134":[2,147],"135":[2,147],"136":[2,147],"137":[2,147]},{"80":181,"83":[1,109]},{"1":[2,68],"4":[2,68],"28":[2,68],"29":[2,68],"40":[2,68],"50":[2,68],"55":[2,68],"57":[2,68],"64":[2,68],"65":[2,68],"66":[2,68],"68":[2,68],"69":[2,68],"70":[2,68],"71":[2,68],"74":[2,68],"76":[2,68],"82":[2,68],"83":[2,68],"84":[2,68],"89":[2,68],"98":[2,68],"100":[2,68],"101":[2,68],"102":[2,68],"109":[2,68],"113":[2,68],"114":[2,68],"125":[2,68],"126":[2,68],"128":[2,68],"129":[2,68],"130":[2,68],"131":[2,68],"132":[2,68],"133":[2,68],"134":[2,68],"135":[2,68],"136":[2,68],"137":[2,68],"138":[2,68]},{"83":[2,113]},{"30":182,"31":[1,73]},{"30":183,"31":[1,73]},{"1":[2,81],"4":[2,81],"28":[2,81],"29":[2,81],"30":184,"31":[1,73],"40":[2,81],"50":[2,81],"55":[2,81],"57":[2,81],"64":[2,81],"65":[2,81],"66":[2,81],"68":[2,81],"69":[2,81],"70":[2,81],"71":[2,81],"74":[2,81],"76":[2,81],"82":[2,81],"83":[2,81],"84":[2,81],"89":[2,81],"98":[2,81],"100":[2,81],"101":[2,81],"102":[2,81],"109":[2,81],"113":[2,81],"114":[2,81],"125":[2,81],"126":[2,81],"128":[2,81],"129":[2,81],"130":[2,81],"131":[2,81],"132":[2,81],"133":[2,81],"134":[2,81],"135":[2,81],"136":[2,81],"137":[2,81],"138":[2,81]},{"1":[2,82],"4":[2,82],"28":[2,82],"29":[2,82],"40":[2,82],"50":[2,82],"55":[2,82],"57":[2,82],"64":[2,82],"65":[2,82],"66":[2,82],"68":[2,82],"69":[2,82],"70":[2,82],"71":[2,82],"74":[2,82],"76":[2,82],"82":[2,82],"83":[2,82],"84":[2,82],"89":[2,82],"98":[2,82],"100":[2,82],"101":[2,82],"102":[2,82],"109":[2,82],"113":[2,82],"114":[2,82],"125":[2,82],"126":[2,82],"128":[2,82],"129":[2,82],"130":[2,82],"131":[2,82],"132":[2,82],"133":[2,82],"134":[2,82],"135":[2,82],"136":[2,82],"137":[2,82],"138":[2,82]},{"8":185,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"67":186,"68":[1,102],"70":[1,103],"71":[1,104]},{"67":187,"68":[1,102],"70":[1,103],"71":[1,104]},{"80":188,"83":[1,109]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"40":[2,69],"50":[2,69],"55":[2,69],"57":[2,69],"64":[2,69],"65":[2,69],"66":[2,69],"68":[2,69],"69":[2,69],"70":[2,69],"71":[2,69],"74":[2,69],"76":[2,69],"82":[2,69],"83":[2,69],"84":[2,69],"89":[2,69],"98":[2,69],"100":[2,69],"101":[2,69],"102":[2,69],"109":[2,69],"113":[2,69],"114":[2,69],"125":[2,69],"126":[2,69],"128":[2,69],"129":[2,69],"130":[2,69],"131":[2,69],"132":[2,69],"133":[2,69],"134":[2,69],"135":[2,69],"136":[2,69],"137":[2,69],"138":[2,69]},{"8":189,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,190],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,111],"4":[2,111],"28":[2,111],"29":[2,111],"50":[2,111],"55":[2,111],"57":[2,111],"64":[2,111],"65":[2,111],"66":[2,111],"68":[2,111],"69":[2,111],"70":[2,111],"71":[2,111],"74":[2,111],"82":[2,111],"83":[2,111],"84":[2,111],"89":[2,111],"98":[2,111],"100":[2,111],"101":[2,111],"102":[2,111],"109":[2,111],"113":[2,111],"114":[2,111],"125":[2,111],"126":[2,111],"128":[2,111],"129":[2,111],"132":[2,111],"133":[2,111],"134":[2,111],"135":[2,111],"136":[2,111],"137":[2,111]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,157],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"58":159,"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"84":[1,191],"85":192,"86":[1,57],"87":[1,58],"88":[1,69],"90":156,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"50":[1,193],"55":[1,194]},{"50":[2,58],"55":[2,58]},{"40":[1,196],"50":[2,60],"55":[2,60],"57":[1,195]},{"40":[1,198],"50":[2,63],"55":[2,63],"57":[1,197]},{"30":142,"31":[1,73]},{"1":[2,52],"4":[2,52],"28":[2,52],"29":[2,52],"50":[2,52],"55":[2,52],"57":[2,52],"69":[2,52],"74":[2,52],"84":[2,52],"89":[2,52],"98":[2,52],"100":[2,52],"101":[2,52],"102":[2,52],"109":[2,52],"113":[2,52],"114":[2,52],"125":[2,52],"126":[2,52],"128":[2,52],"129":[2,52],"132":[2,52],"133":[2,52],"134":[2,52],"135":[2,52],"136":[2,52],"137":[2,52]},{"27":74,"47":[1,47]},{"1":[2,187],"4":[2,187],"28":[2,187],"29":[2,187],"50":[2,187],"55":[2,187],"57":[2,187],"69":[2,187],"74":[2,187],"84":[2,187],"89":[2,187],"98":[2,187],"99":89,"100":[2,187],"101":[2,187],"102":[2,187],"105":90,"109":[2,187],"113":[2,187],"114":[2,187],"125":[2,187],"126":[2,187],"128":[2,187],"129":[2,187],"132":[1,79],"133":[2,187],"134":[2,187],"135":[2,187],"136":[2,187],"137":[2,187]},{"99":93,"100":[1,65],"102":[1,66],"105":94,"114":[1,68],"125":[1,91],"126":[1,92]},{"1":[2,188],"4":[2,188],"28":[2,188],"29":[2,188],"50":[2,188],"55":[2,188],"57":[2,188],"69":[2,188],"74":[2,188],"84":[2,188],"89":[2,188],"98":[2,188],"99":89,"100":[2,188],"101":[2,188],"102":[2,188],"105":90,"109":[2,188],"113":[2,188],"114":[2,188],"125":[2,188],"126":[2,188],"128":[2,188],"129":[2,188],"132":[1,79],"133":[2,188],"134":[2,188],"135":[2,188],"136":[2,188],"137":[2,188]},{"1":[2,189],"4":[2,189],"28":[2,189],"29":[2,189],"50":[2,189],"55":[2,189],"57":[2,189],"69":[2,189],"74":[2,189],"84":[2,189],"89":[2,189],"98":[2,189],"99":89,"100":[2,189],"101":[2,189],"102":[2,189],"105":90,"109":[2,189],"113":[2,189],"114":[2,189],"125":[2,189],"126":[2,189],"128":[2,189],"129":[2,189],"132":[1,79],"133":[2,189],"134":[2,189],"135":[2,189],"136":[2,189],"137":[2,189]},{"1":[2,190],"4":[2,190],"28":[2,190],"29":[2,190],"50":[2,190],"55":[2,190],"57":[2,190],"64":[2,71],"65":[2,71],"66":[2,71],"68":[2,71],"69":[2,190],"70":[2,71],"71":[2,71],"74":[2,190],"82":[2,71],"83":[2,71],"84":[2,190],"89":[2,190],"98":[2,190],"100":[2,190],"101":[2,190],"102":[2,190],"109":[2,190],"113":[2,190],"114":[2,190],"125":[2,190],"126":[2,190],"128":[2,190],"129":[2,190],"132":[2,190],"133":[2,190],"134":[2,190],"135":[2,190],"136":[2,190],"137":[2,190]},{"60":96,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"70":[1,103],"71":[1,104],"79":95,"82":[1,97],"83":[2,112]},{"60":106,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"70":[1,103],"71":[1,104],"79":105,"82":[1,97],"83":[2,112]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"50":[2,74],"55":[2,74],"57":[2,74],"64":[2,74],"65":[2,74],"66":[2,74],"68":[2,74],"69":[2,74],"70":[2,74],"71":[2,74],"74":[2,74],"82":[2,74],"83":[2,74],"84":[2,74],"89":[2,74],"98":[2,74],"100":[2,74],"101":[2,74],"102":[2,74],"109":[2,74],"113":[2,74],"114":[2,74],"125":[2,74],"126":[2,74],"128":[2,74],"129":[2,74],"132":[2,74],"133":[2,74],"134":[2,74],"135":[2,74],"136":[2,74],"137":[2,74]},{"1":[2,191],"4":[2,191],"28":[2,191],"29":[2,191],"50":[2,191],"55":[2,191],"57":[2,191],"64":[2,71],"65":[2,71],"66":[2,71],"68":[2,71],"69":[2,191],"70":[2,71],"71":[2,71],"74":[2,191],"82":[2,71],"83":[2,71],"84":[2,191],"89":[2,191],"98":[2,191],"100":[2,191],"101":[2,191],"102":[2,191],"109":[2,191],"113":[2,191],"114":[2,191],"125":[2,191],"126":[2,191],"128":[2,191],"129":[2,191],"132":[2,191],"133":[2,191],"134":[2,191],"135":[2,191],"136":[2,191],"137":[2,191]},{"1":[2,192],"4":[2,192],"28":[2,192],"29":[2,192],"50":[2,192],"55":[2,192],"57":[2,192],"69":[2,192],"74":[2,192],"84":[2,192],"89":[2,192],"98":[2,192],"100":[2,192],"101":[2,192],"102":[2,192],"109":[2,192],"113":[2,192],"114":[2,192],"125":[2,192],"126":[2,192],"128":[2,192],"129":[2,192],"132":[2,192],"133":[2,192],"134":[2,192],"135":[2,192],"136":[2,192],"137":[2,192]},{"1":[2,193],"4":[2,193],"28":[2,193],"29":[2,193],"50":[2,193],"55":[2,193],"57":[2,193],"69":[2,193],"74":[2,193],"84":[2,193],"89":[2,193],"98":[2,193],"100":[2,193],"101":[2,193],"102":[2,193],"109":[2,193],"113":[2,193],"114":[2,193],"125":[2,193],"126":[2,193],"128":[2,193],"129":[2,193],"132":[2,193],"133":[2,193],"134":[2,193],"135":[2,193],"136":[2,193],"137":[2,193]},{"8":199,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,200],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"15":201,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":202,"61":50,"62":51,"63":30,"72":[1,70],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"97":[1,56]},{"4":[1,116],"6":204,"28":[1,6],"123":[1,203]},{"1":[2,130],"4":[2,130],"28":[2,130],"29":[2,130],"50":[2,130],"55":[2,130],"57":[2,130],"69":[2,130],"74":[2,130],"84":[2,130],"89":[2,130],"93":205,"94":[1,206],"95":[1,207],"98":[2,130],"100":[2,130],"101":[2,130],"102":[2,130],"109":[2,130],"113":[2,130],"114":[2,130],"125":[2,130],"126":[2,130],"128":[2,130],"129":[2,130],"132":[2,130],"133":[2,130],"134":[2,130],"135":[2,130],"136":[2,130],"137":[2,130]},{"1":[2,141],"4":[2,141],"28":[2,141],"29":[2,141],"50":[2,141],"55":[2,141],"57":[2,141],"69":[2,141],"74":[2,141],"84":[2,141],"89":[2,141],"98":[2,141],"100":[2,141],"101":[2,141],"102":[2,141],"109":[2,141],"113":[2,141],"114":[2,141],"125":[2,141],"126":[2,141],"128":[2,141],"129":[2,141],"132":[2,141],"133":[2,141],"134":[2,141],"135":[2,141],"136":[2,141],"137":[2,141]},{"1":[2,149],"4":[2,149],"28":[2,149],"29":[2,149],"50":[2,149],"55":[2,149],"57":[2,149],"69":[2,149],"74":[2,149],"84":[2,149],"89":[2,149],"98":[2,149],"100":[2,149],"101":[2,149],"102":[2,149],"109":[2,149],"113":[2,149],"114":[2,149],"125":[2,149],"126":[2,149],"128":[2,149],"129":[2,149],"132":[2,149],"133":[2,149],"134":[2,149],"135":[2,149],"136":[2,149],"137":[2,149]},{"28":[1,208],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"118":209,"120":210,"121":[1,211]},{"1":[2,92],"4":[2,92],"28":[1,213],"29":[2,92],"50":[2,92],"55":[2,92],"57":[2,92],"64":[2,71],"65":[2,71],"66":[2,71],"68":[2,71],"69":[2,92],"70":[2,71],"71":[2,71],"74":[2,92],"76":[1,212],"82":[2,71],"83":[2,71],"84":[2,92],"89":[2,92],"98":[2,92],"100":[2,92],"101":[2,92],"102":[2,92],"109":[2,92],"113":[2,92],"114":[2,92],"125":[2,92],"126":[2,92],"128":[2,92],"129":[2,92],"132":[2,92],"133":[2,92],"134":[2,92],"135":[2,92],"136":[2,92],"137":[2,92]},{"4":[2,103],"27":164,"29":[2,103],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":217,"42":162,"44":218,"45":167,"47":[1,47],"72":[1,216],"77":214,"78":215,"87":[1,114],"97":[1,56]},{"15":219,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":202,"61":50,"62":51,"63":30,"72":[1,70],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"97":[1,56]},{"1":[2,48],"4":[2,48],"29":[2,48],"99":89,"100":[2,48],"102":[2,48],"105":90,"114":[2,48],"125":[2,48],"126":[2,48],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,135],"4":[2,135],"29":[2,135],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[2,135],"126":[2,135],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"98":[1,220],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,118],"4":[2,118],"28":[2,118],"29":[2,118],"40":[2,118],"43":[2,118],"50":[2,118],"55":[2,118],"57":[2,118],"64":[2,118],"65":[2,118],"66":[2,118],"68":[2,118],"69":[2,118],"70":[2,118],"71":[2,118],"74":[2,118],"76":[2,118],"82":[2,118],"83":[2,118],"84":[2,118],"89":[2,118],"98":[2,118],"100":[2,118],"101":[2,118],"102":[2,118],"109":[2,118],"113":[2,118],"114":[2,118],"125":[2,118],"126":[2,118],"128":[2,118],"129":[2,118],"130":[2,118],"131":[2,118],"132":[2,118],"133":[2,118],"134":[2,118],"135":[2,118],"136":[2,118],"137":[2,118],"138":[2,118]},{"4":[1,116],"6":221,"28":[1,6],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"4":[1,116],"6":222,"28":[1,6],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,137],"4":[2,137],"28":[2,137],"29":[2,137],"50":[2,137],"55":[2,137],"57":[2,137],"69":[2,137],"74":[2,137],"84":[2,137],"89":[2,137],"98":[2,137],"99":89,"100":[1,65],"101":[1,223],"102":[1,66],"105":90,"109":[2,137],"113":[2,137],"114":[1,68],"125":[2,137],"126":[2,137],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,139],"4":[2,139],"28":[2,139],"29":[2,139],"50":[2,139],"55":[2,139],"57":[2,139],"69":[2,139],"74":[2,139],"84":[2,139],"89":[2,139],"98":[2,139],"99":89,"100":[1,65],"101":[1,224],"102":[1,66],"105":90,"109":[2,139],"113":[2,139],"114":[1,68],"125":[2,139],"126":[2,139],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,145],"4":[2,145],"28":[2,145],"29":[2,145],"50":[2,145],"55":[2,145],"57":[2,145],"69":[2,145],"74":[2,145],"84":[2,145],"89":[2,145],"98":[2,145],"100":[2,145],"101":[2,145],"102":[2,145],"109":[2,145],"113":[2,145],"114":[2,145],"125":[2,145],"126":[2,145],"128":[2,145],"129":[2,145],"132":[2,145],"133":[2,145],"134":[2,145],"135":[2,145],"136":[2,145],"137":[2,145]},{"1":[2,146],"4":[2,146],"28":[2,146],"29":[2,146],"50":[2,146],"55":[2,146],"57":[2,146],"69":[2,146],"74":[2,146],"84":[2,146],"89":[2,146],"98":[2,146],"99":89,"100":[1,65],"101":[2,146],"102":[1,66],"105":90,"109":[2,146],"113":[2,146],"114":[1,68],"125":[2,146],"126":[2,146],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"55":[1,226],"107":225,"108":[1,227]},{"55":[2,150],"108":[2,150],"110":228,"111":[1,230],"116":[1,229]},{"30":231,"31":[1,73]},{"55":[2,151],"108":[2,151],"111":[2,151]},{"55":[2,152],"108":[2,152],"111":[2,152]},{"1":[2,119],"4":[2,119],"28":[2,119],"29":[2,119],"40":[2,119],"50":[2,119],"55":[2,119],"57":[2,119],"64":[2,119],"65":[2,119],"66":[2,119],"68":[2,119],"69":[2,119],"70":[2,119],"71":[2,119],"74":[2,119],"82":[2,119],"83":[2,119],"84":[2,119],"89":[2,119],"98":[2,119],"100":[2,119],"101":[2,119],"102":[2,119],"108":[2,119],"109":[2,119],"111":[2,119],"113":[2,119],"114":[2,119],"125":[2,119],"126":[2,119],"128":[2,119],"129":[2,119],"132":[2,119],"133":[2,119],"134":[2,119],"135":[2,119],"136":[2,119],"137":[2,119]},{"4":[2,55],"28":[2,55],"54":232,"55":[1,233],"89":[2,55]},{"4":[2,121],"28":[2,121],"29":[2,121],"55":[2,121],"84":[2,121],"89":[2,121]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,157],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"58":159,"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"85":234,"86":[1,57],"87":[1,58],"88":[1,69],"90":156,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,126],"28":[2,126],"29":[2,126],"55":[2,126],"57":[1,235],"84":[2,126],"89":[2,126],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"4":[2,127],"28":[2,127],"29":[2,127],"55":[2,127],"84":[2,127],"89":[2,127]},{"4":[2,55],"28":[2,55],"54":236,"55":[1,237],"74":[2,55]},{"4":[2,88],"28":[2,88],"29":[2,88],"55":[2,88],"74":[2,88]},{"4":[2,40],"28":[2,40],"29":[2,40],"43":[1,238],"55":[2,40],"74":[2,40]},{"4":[2,43],"28":[2,43],"29":[2,43],"55":[2,43],"74":[2,43]},{"4":[2,44],"28":[2,44],"29":[2,44],"55":[2,44],"74":[2,44]},{"4":[2,45],"28":[2,45],"29":[2,45],"43":[2,45],"55":[2,45],"74":[2,45]},{"4":[2,46],"28":[2,46],"29":[2,46],"43":[2,46],"55":[2,46],"74":[2,46]},{"4":[2,47],"28":[2,47],"29":[2,47],"43":[2,47],"55":[2,47],"74":[2,47]},{"1":[2,6],"4":[2,6],"29":[2,6]},{"1":[2,28],"4":[2,28],"28":[2,28],"29":[2,28],"50":[2,28],"55":[2,28],"57":[2,28],"69":[2,28],"74":[2,28],"84":[2,28],"89":[2,28],"94":[2,28],"95":[2,28],"98":[2,28],"100":[2,28],"101":[2,28],"102":[2,28],"109":[2,28],"113":[2,28],"114":[2,28],"119":[2,28],"121":[2,28],"125":[2,28],"126":[2,28],"128":[2,28],"129":[2,28],"132":[2,28],"133":[2,28],"134":[2,28],"135":[2,28],"136":[2,28],"137":[2,28]},{"1":[2,195],"4":[2,195],"28":[2,195],"29":[2,195],"50":[2,195],"55":[2,195],"57":[2,195],"69":[2,195],"74":[2,195],"84":[2,195],"89":[2,195],"98":[2,195],"99":89,"100":[2,195],"101":[2,195],"102":[2,195],"105":90,"109":[2,195],"113":[2,195],"114":[2,195],"125":[2,195],"126":[2,195],"128":[2,195],"129":[2,195],"132":[1,79],"133":[1,82],"134":[2,195],"135":[2,195],"136":[2,195],"137":[2,195]},{"1":[2,196],"4":[2,196],"28":[2,196],"29":[2,196],"50":[2,196],"55":[2,196],"57":[2,196],"69":[2,196],"74":[2,196],"84":[2,196],"89":[2,196],"98":[2,196],"99":89,"100":[2,196],"101":[2,196],"102":[2,196],"105":90,"109":[2,196],"113":[2,196],"114":[2,196],"125":[2,196],"126":[2,196],"128":[2,196],"129":[2,196],"132":[1,79],"133":[1,82],"134":[2,196],"135":[2,196],"136":[2,196],"137":[2,196]},{"1":[2,197],"4":[2,197],"28":[2,197],"29":[2,197],"50":[2,197],"55":[2,197],"57":[2,197],"69":[2,197],"74":[2,197],"84":[2,197],"89":[2,197],"98":[2,197],"99":89,"100":[2,197],"101":[2,197],"102":[2,197],"105":90,"109":[2,197],"113":[2,197],"114":[2,197],"125":[2,197],"126":[2,197],"128":[2,197],"129":[2,197],"132":[1,79],"133":[2,197],"134":[2,197],"135":[2,197],"136":[2,197],"137":[2,197]},{"1":[2,198],"4":[2,198],"28":[2,198],"29":[2,198],"50":[2,198],"55":[2,198],"57":[2,198],"69":[2,198],"74":[2,198],"84":[2,198],"89":[2,198],"98":[2,198],"99":89,"100":[2,198],"101":[2,198],"102":[2,198],"105":90,"109":[2,198],"113":[2,198],"114":[2,198],"125":[2,198],"126":[2,198],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[2,198],"135":[2,198],"136":[2,198],"137":[2,198]},{"1":[2,199],"4":[2,199],"28":[2,199],"29":[2,199],"50":[2,199],"55":[2,199],"57":[2,199],"69":[2,199],"74":[2,199],"84":[2,199],"89":[2,199],"98":[2,199],"99":89,"100":[2,199],"101":[2,199],"102":[2,199],"105":90,"109":[2,199],"113":[2,199],"114":[2,199],"125":[2,199],"126":[2,199],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[2,199],"136":[2,199],"137":[1,86]},{"1":[2,200],"4":[2,200],"28":[2,200],"29":[2,200],"50":[2,200],"55":[2,200],"57":[2,200],"69":[2,200],"74":[2,200],"84":[2,200],"89":[2,200],"98":[2,200],"99":89,"100":[2,200],"101":[2,200],"102":[2,200],"105":90,"109":[2,200],"113":[2,200],"114":[2,200],"125":[2,200],"126":[2,200],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[2,200],"137":[1,86]},{"1":[2,201],"4":[2,201],"28":[2,201],"29":[2,201],"50":[2,201],"55":[2,201],"57":[2,201],"69":[2,201],"74":[2,201],"84":[2,201],"89":[2,201],"98":[2,201],"99":89,"100":[2,201],"101":[2,201],"102":[2,201],"105":90,"109":[2,201],"113":[2,201],"114":[2,201],"125":[2,201],"126":[2,201],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[2,201],"136":[2,201],"137":[2,201]},{"1":[2,184],"4":[2,184],"28":[2,184],"29":[2,184],"50":[2,184],"55":[2,184],"57":[2,184],"69":[2,184],"74":[2,184],"84":[2,184],"89":[2,184],"98":[2,184],"99":89,"100":[1,65],"101":[2,184],"102":[1,66],"105":90,"109":[2,184],"113":[2,184],"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,186],"4":[2,186],"28":[2,186],"29":[2,186],"50":[2,186],"55":[2,186],"57":[2,186],"69":[2,186],"74":[2,186],"84":[2,186],"89":[2,186],"98":[2,186],"99":89,"100":[1,65],"101":[2,186],"102":[1,66],"105":90,"109":[2,186],"113":[2,186],"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,183],"4":[2,183],"28":[2,183],"29":[2,183],"50":[2,183],"55":[2,183],"57":[2,183],"69":[2,183],"74":[2,183],"84":[2,183],"89":[2,183],"98":[2,183],"99":89,"100":[1,65],"101":[2,183],"102":[1,66],"105":90,"109":[2,183],"113":[2,183],"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,185],"4":[2,185],"28":[2,185],"29":[2,185],"50":[2,185],"55":[2,185],"57":[2,185],"69":[2,185],"74":[2,185],"84":[2,185],"89":[2,185],"98":[2,185],"99":89,"100":[1,65],"101":[2,185],"102":[1,66],"105":90,"109":[2,185],"113":[2,185],"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,108],"4":[2,108],"28":[2,108],"29":[2,108],"50":[2,108],"55":[2,108],"57":[2,108],"64":[2,108],"65":[2,108],"66":[2,108],"68":[2,108],"69":[2,108],"70":[2,108],"71":[2,108],"74":[2,108],"82":[2,108],"83":[2,108],"84":[2,108],"89":[2,108],"98":[2,108],"100":[2,108],"101":[2,108],"102":[2,108],"109":[2,108],"113":[2,108],"114":[2,108],"125":[2,108],"126":[2,108],"128":[2,108],"129":[2,108],"132":[2,108],"133":[2,108],"134":[2,108],"135":[2,108],"136":[2,108],"137":[2,108]},{"1":[2,78],"4":[2,78],"28":[2,78],"29":[2,78],"40":[2,78],"50":[2,78],"55":[2,78],"57":[2,78],"64":[2,78],"65":[2,78],"66":[2,78],"68":[2,78],"69":[2,78],"70":[2,78],"71":[2,78],"74":[2,78],"76":[2,78],"82":[2,78],"83":[2,78],"84":[2,78],"89":[2,78],"98":[2,78],"100":[2,78],"101":[2,78],"102":[2,78],"109":[2,78],"113":[2,78],"114":[2,78],"125":[2,78],"126":[2,78],"128":[2,78],"129":[2,78],"130":[2,78],"131":[2,78],"132":[2,78],"133":[2,78],"134":[2,78],"135":[2,78],"136":[2,78],"137":[2,78],"138":[2,78]},{"1":[2,79],"4":[2,79],"28":[2,79],"29":[2,79],"40":[2,79],"50":[2,79],"55":[2,79],"57":[2,79],"64":[2,79],"65":[2,79],"66":[2,79],"68":[2,79],"69":[2,79],"70":[2,79],"71":[2,79],"74":[2,79],"76":[2,79],"82":[2,79],"83":[2,79],"84":[2,79],"89":[2,79],"98":[2,79],"100":[2,79],"101":[2,79],"102":[2,79],"109":[2,79],"113":[2,79],"114":[2,79],"125":[2,79],"126":[2,79],"128":[2,79],"129":[2,79],"130":[2,79],"131":[2,79],"132":[2,79],"133":[2,79],"134":[2,79],"135":[2,79],"136":[2,79],"137":[2,79],"138":[2,79]},{"1":[2,80],"4":[2,80],"28":[2,80],"29":[2,80],"40":[2,80],"50":[2,80],"55":[2,80],"57":[2,80],"64":[2,80],"65":[2,80],"66":[2,80],"68":[2,80],"69":[2,80],"70":[2,80],"71":[2,80],"74":[2,80],"76":[2,80],"82":[2,80],"83":[2,80],"84":[2,80],"89":[2,80],"98":[2,80],"100":[2,80],"101":[2,80],"102":[2,80],"109":[2,80],"113":[2,80],"114":[2,80],"125":[2,80],"126":[2,80],"128":[2,80],"129":[2,80],"130":[2,80],"131":[2,80],"132":[2,80],"133":[2,80],"134":[2,80],"135":[2,80],"136":[2,80],"137":[2,80],"138":[2,80]},{"69":[1,239],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,84],"4":[2,84],"28":[2,84],"29":[2,84],"40":[2,84],"50":[2,84],"55":[2,84],"57":[2,84],"64":[2,84],"65":[2,84],"66":[2,84],"68":[2,84],"69":[2,84],"70":[2,84],"71":[2,84],"74":[2,84],"76":[2,84],"82":[2,84],"83":[2,84],"84":[2,84],"89":[2,84],"98":[2,84],"100":[2,84],"101":[2,84],"102":[2,84],"109":[2,84],"113":[2,84],"114":[2,84],"125":[2,84],"126":[2,84],"128":[2,84],"129":[2,84],"130":[2,84],"131":[2,84],"132":[2,84],"133":[2,84],"134":[2,84],"135":[2,84],"136":[2,84],"137":[2,84],"138":[2,84]},{"1":[2,85],"4":[2,85],"28":[2,85],"29":[2,85],"40":[2,85],"50":[2,85],"55":[2,85],"57":[2,85],"64":[2,85],"65":[2,85],"66":[2,85],"68":[2,85],"69":[2,85],"70":[2,85],"71":[2,85],"74":[2,85],"76":[2,85],"82":[2,85],"83":[2,85],"84":[2,85],"89":[2,85],"98":[2,85],"100":[2,85],"101":[2,85],"102":[2,85],"109":[2,85],"113":[2,85],"114":[2,85],"125":[2,85],"126":[2,85],"128":[2,85],"129":[2,85],"130":[2,85],"131":[2,85],"132":[2,85],"133":[2,85],"134":[2,85],"135":[2,85],"136":[2,85],"137":[2,85],"138":[2,85]},{"1":[2,109],"4":[2,109],"28":[2,109],"29":[2,109],"50":[2,109],"55":[2,109],"57":[2,109],"64":[2,109],"65":[2,109],"66":[2,109],"68":[2,109],"69":[2,109],"70":[2,109],"71":[2,109],"74":[2,109],"82":[2,109],"83":[2,109],"84":[2,109],"89":[2,109],"98":[2,109],"100":[2,109],"101":[2,109],"102":[2,109],"109":[2,109],"113":[2,109],"114":[2,109],"125":[2,109],"126":[2,109],"128":[2,109],"129":[2,109],"132":[2,109],"133":[2,109],"134":[2,109],"135":[2,109],"136":[2,109],"137":[2,109]},{"1":[2,38],"4":[2,38],"28":[2,38],"29":[2,38],"50":[2,38],"55":[2,38],"57":[2,38],"69":[2,38],"74":[2,38],"84":[2,38],"89":[2,38],"98":[2,38],"99":89,"100":[2,38],"101":[2,38],"102":[2,38],"105":90,"109":[2,38],"113":[2,38],"114":[2,38],"125":[2,38],"126":[2,38],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"8":240,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,114],"4":[2,114],"28":[2,114],"29":[2,114],"50":[2,114],"55":[2,114],"57":[2,114],"64":[2,114],"65":[2,114],"66":[2,114],"68":[2,114],"69":[2,114],"70":[2,114],"71":[2,114],"74":[2,114],"82":[2,114],"83":[2,114],"84":[2,114],"89":[2,114],"98":[2,114],"100":[2,114],"101":[2,114],"102":[2,114],"109":[2,114],"113":[2,114],"114":[2,114],"125":[2,114],"126":[2,114],"128":[2,114],"129":[2,114],"132":[2,114],"133":[2,114],"134":[2,114],"135":[2,114],"136":[2,114],"137":[2,114]},{"4":[2,55],"28":[2,55],"54":241,"55":[1,233],"84":[2,55]},{"51":242,"52":[1,59],"53":[1,60]},{"30":112,"31":[1,73],"44":113,"56":243,"87":[1,114]},{"50":[2,61],"55":[2,61]},{"8":244,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"50":[2,64],"55":[2,64]},{"8":245,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,202],"4":[2,202],"28":[2,202],"29":[2,202],"50":[2,202],"55":[2,202],"57":[2,202],"69":[2,202],"74":[2,202],"84":[2,202],"89":[2,202],"98":[2,202],"99":89,"100":[2,202],"101":[2,202],"102":[2,202],"105":90,"109":[2,202],"113":[2,202],"114":[2,202],"125":[2,202],"126":[2,202],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"8":246,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,107],"4":[2,107],"28":[2,107],"29":[2,107],"50":[2,107],"55":[2,107],"57":[2,107],"60":96,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"69":[2,107],"70":[1,103],"71":[1,104],"74":[2,107],"79":95,"82":[1,97],"83":[2,112],"84":[2,107],"89":[2,107],"98":[2,107],"100":[2,107],"101":[2,107],"102":[2,107],"109":[2,107],"113":[2,107],"114":[2,107],"125":[2,107],"126":[2,107],"128":[2,107],"129":[2,107],"132":[2,107],"133":[2,107],"134":[2,107],"135":[2,107],"136":[2,107],"137":[2,107]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"50":[2,71],"55":[2,71],"57":[2,71],"64":[2,71],"65":[2,71],"66":[2,71],"68":[2,71],"69":[2,71],"70":[2,71],"71":[2,71],"74":[2,71],"82":[2,71],"83":[2,71],"84":[2,71],"89":[2,71],"98":[2,71],"100":[2,71],"101":[2,71],"102":[2,71],"109":[2,71],"113":[2,71],"114":[2,71],"125":[2,71],"126":[2,71],"128":[2,71],"129":[2,71],"132":[2,71],"133":[2,71],"134":[2,71],"135":[2,71],"136":[2,71],"137":[2,71]},{"8":247,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,181],"4":[2,181],"28":[2,181],"29":[2,181],"50":[2,181],"55":[2,181],"57":[2,181],"69":[2,181],"74":[2,181],"84":[2,181],"89":[2,181],"98":[2,181],"100":[2,181],"101":[2,181],"102":[2,181],"109":[2,181],"113":[2,181],"114":[2,181],"119":[2,181],"125":[2,181],"126":[2,181],"128":[2,181],"129":[2,181],"132":[2,181],"133":[2,181],"134":[2,181],"135":[2,181],"136":[2,181],"137":[2,181]},{"1":[2,131],"4":[2,131],"28":[2,131],"29":[2,131],"50":[2,131],"55":[2,131],"57":[2,131],"69":[2,131],"74":[2,131],"84":[2,131],"89":[2,131],"94":[1,248],"98":[2,131],"100":[2,131],"101":[2,131],"102":[2,131],"109":[2,131],"113":[2,131],"114":[2,131],"125":[2,131],"126":[2,131],"128":[2,131],"129":[2,131],"132":[2,131],"133":[2,131],"134":[2,131],"135":[2,131],"136":[2,131],"137":[2,131]},{"4":[1,116],"6":249,"28":[1,6]},{"30":250,"31":[1,73]},{"118":251,"120":210,"121":[1,211]},{"29":[1,252],"119":[1,253],"120":254,"121":[1,211]},{"29":[2,174],"119":[2,174],"121":[2,174]},{"8":256,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"91":255,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"15":257,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":202,"61":50,"62":51,"63":30,"72":[1,70],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"97":[1,56]},{"4":[2,103],"27":164,"29":[2,103],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":217,"42":162,"44":218,"45":167,"47":[1,47],"72":[1,216],"77":258,"78":215,"87":[1,114],"97":[1,56]},{"4":[1,260],"29":[1,259]},{"4":[2,104],"29":[2,104],"74":[2,104]},{"4":[2,103],"27":164,"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":217,"42":162,"44":218,"45":167,"47":[1,47],"72":[1,216],"74":[2,103],"77":261,"78":215,"87":[1,114],"97":[1,56]},{"4":[2,100],"29":[2,100],"74":[2,100]},{"4":[2,43],"29":[2,43],"43":[1,262],"74":[2,43]},{"1":[2,98],"4":[2,98],"28":[1,263],"29":[2,98],"50":[2,98],"55":[2,98],"57":[2,98],"60":96,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"69":[2,98],"70":[1,103],"71":[1,104],"74":[2,98],"79":95,"82":[1,97],"83":[2,112],"84":[2,98],"89":[2,98],"98":[2,98],"100":[2,98],"101":[2,98],"102":[2,98],"109":[2,98],"113":[2,98],"114":[2,98],"125":[2,98],"126":[2,98],"128":[2,98],"129":[2,98],"132":[2,98],"133":[2,98],"134":[2,98],"135":[2,98],"136":[2,98],"137":[2,98]},{"1":[2,136],"4":[2,136],"28":[2,136],"29":[2,136],"43":[2,136],"50":[2,136],"55":[2,136],"57":[2,136],"64":[2,136],"65":[2,136],"66":[2,136],"68":[2,136],"69":[2,136],"70":[2,136],"71":[2,136],"74":[2,136],"82":[2,136],"83":[2,136],"84":[2,136],"89":[2,136],"98":[2,136],"100":[2,136],"101":[2,136],"102":[2,136],"109":[2,136],"113":[2,136],"114":[2,136],"125":[2,136],"126":[2,136],"128":[2,136],"129":[2,136],"132":[2,136],"133":[2,136],"134":[2,136],"135":[2,136],"136":[2,136],"137":[2,136]},{"1":[2,178],"4":[2,178],"28":[2,178],"29":[2,178],"50":[2,178],"55":[2,178],"57":[2,178],"69":[2,178],"74":[2,178],"84":[2,178],"89":[2,178],"98":[2,178],"100":[2,178],"101":[2,178],"102":[2,178],"109":[2,178],"113":[2,178],"114":[2,178],"119":[2,178],"125":[2,178],"126":[2,178],"128":[2,178],"129":[2,178],"132":[2,178],"133":[2,178],"134":[2,178],"135":[2,178],"136":[2,178],"137":[2,178]},{"1":[2,179],"4":[2,179],"28":[2,179],"29":[2,179],"50":[2,179],"55":[2,179],"57":[2,179],"69":[2,179],"74":[2,179],"84":[2,179],"89":[2,179],"98":[2,179],"100":[2,179],"101":[2,179],"102":[2,179],"109":[2,179],"113":[2,179],"114":[2,179],"119":[2,179],"125":[2,179],"126":[2,179],"128":[2,179],"129":[2,179],"132":[2,179],"133":[2,179],"134":[2,179],"135":[2,179],"136":[2,179],"137":[2,179]},{"8":264,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":265,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,163],"4":[2,163],"28":[2,163],"29":[2,163],"50":[2,163],"55":[2,163],"57":[2,163],"69":[2,163],"74":[2,163],"84":[2,163],"89":[2,163],"98":[2,163],"100":[2,163],"101":[2,163],"102":[2,163],"109":[2,163],"113":[2,163],"114":[2,163],"125":[2,163],"126":[2,163],"128":[2,163],"129":[2,163],"132":[2,163],"133":[2,163],"134":[2,163],"135":[2,163],"136":[2,163],"137":[2,163]},{"30":266,"31":[1,73],"61":152,"62":153,"72":[1,70],"88":[1,69],"106":267},{"8":268,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,165],"4":[2,165],"28":[2,165],"29":[2,165],"50":[2,165],"55":[2,165],"57":[2,165],"69":[2,165],"74":[2,165],"84":[2,165],"89":[2,165],"98":[2,165],"100":[2,165],"101":[2,165],"102":[2,165],"109":[2,165],"113":[2,165],"114":[2,165],"125":[2,165],"126":[2,165],"128":[2,165],"129":[2,165],"132":[2,165],"133":[2,165],"134":[2,165],"135":[2,165],"136":[2,165],"137":[2,165]},{"8":269,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":270,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"55":[1,272],"110":271,"111":[1,230]},{"4":[1,274],"28":[1,275],"89":[1,273]},{"4":[2,56],"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[2,56],"29":[2,56],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"58":159,"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"84":[2,56],"86":[1,57],"87":[1,58],"88":[1,69],"89":[2,56],"90":276,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":277,"55":[1,233]},{"4":[2,66],"28":[2,66],"29":[2,66],"55":[2,66],"84":[2,66],"89":[2,66]},{"4":[1,279],"28":[1,280],"74":[1,278]},{"4":[2,56],"27":164,"28":[2,56],"29":[2,56],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":281,"42":162,"44":163,"45":167,"47":[1,47],"74":[2,56],"87":[1,114],"97":[1,56]},{"8":282,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,283],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,83],"4":[2,83],"28":[2,83],"29":[2,83],"40":[2,83],"50":[2,83],"55":[2,83],"57":[2,83],"64":[2,83],"65":[2,83],"66":[2,83],"68":[2,83],"69":[2,83],"70":[2,83],"71":[2,83],"74":[2,83],"76":[2,83],"82":[2,83],"83":[2,83],"84":[2,83],"89":[2,83],"98":[2,83],"100":[2,83],"101":[2,83],"102":[2,83],"109":[2,83],"113":[2,83],"114":[2,83],"125":[2,83],"126":[2,83],"128":[2,83],"129":[2,83],"130":[2,83],"131":[2,83],"132":[2,83],"133":[2,83],"134":[2,83],"135":[2,83],"136":[2,83],"137":[2,83],"138":[2,83]},{"29":[1,284],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"4":[1,274],"28":[1,275],"84":[1,285]},{"4":[1,116],"6":286,"28":[1,6]},{"50":[2,59],"55":[2,59]},{"50":[2,62],"55":[2,62],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"50":[2,65],"55":[2,65],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"29":[1,287],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"4":[1,116],"6":288,"28":[1,6],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"4":[1,116],"6":289,"28":[1,6]},{"1":[2,132],"4":[2,132],"28":[2,132],"29":[2,132],"50":[2,132],"55":[2,132],"57":[2,132],"69":[2,132],"74":[2,132],"84":[2,132],"89":[2,132],"98":[2,132],"100":[2,132],"101":[2,132],"102":[2,132],"109":[2,132],"113":[2,132],"114":[2,132],"125":[2,132],"126":[2,132],"128":[2,132],"129":[2,132],"132":[2,132],"133":[2,132],"134":[2,132],"135":[2,132],"136":[2,132],"137":[2,132]},{"4":[1,116],"6":290,"28":[1,6]},{"29":[1,291],"119":[1,292],"120":254,"121":[1,211]},{"1":[2,172],"4":[2,172],"28":[2,172],"29":[2,172],"50":[2,172],"55":[2,172],"57":[2,172],"69":[2,172],"74":[2,172],"84":[2,172],"89":[2,172],"98":[2,172],"100":[2,172],"101":[2,172],"102":[2,172],"109":[2,172],"113":[2,172],"114":[2,172],"125":[2,172],"126":[2,172],"128":[2,172],"129":[2,172],"132":[2,172],"133":[2,172],"134":[2,172],"135":[2,172],"136":[2,172],"137":[2,172]},{"4":[1,116],"6":293,"28":[1,6]},{"29":[2,175],"119":[2,175],"121":[2,175]},{"4":[1,116],"6":294,"28":[1,6],"55":[1,295]},{"4":[2,128],"28":[2,128],"55":[2,128],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,93],"4":[2,93],"28":[1,296],"29":[2,93],"50":[2,93],"55":[2,93],"57":[2,93],"60":96,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"69":[2,93],"70":[1,103],"71":[1,104],"74":[2,93],"79":95,"82":[1,97],"83":[2,112],"84":[2,93],"89":[2,93],"98":[2,93],"100":[2,93],"101":[2,93],"102":[2,93],"109":[2,93],"113":[2,93],"114":[2,93],"125":[2,93],"126":[2,93],"128":[2,93],"129":[2,93],"132":[2,93],"133":[2,93],"134":[2,93],"135":[2,93],"136":[2,93],"137":[2,93]},{"4":[1,260],"29":[1,297]},{"1":[2,96],"4":[2,96],"28":[2,96],"29":[2,96],"50":[2,96],"55":[2,96],"57":[2,96],"69":[2,96],"74":[2,96],"84":[2,96],"89":[2,96],"98":[2,96],"100":[2,96],"101":[2,96],"102":[2,96],"109":[2,96],"113":[2,96],"114":[2,96],"125":[2,96],"126":[2,96],"128":[2,96],"129":[2,96],"132":[2,96],"133":[2,96],"134":[2,96],"135":[2,96],"136":[2,96],"137":[2,96]},{"27":164,"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":217,"42":162,"44":218,"45":167,"47":[1,47],"78":298,"87":[1,114],"97":[1,56]},{"4":[1,260],"74":[1,299]},{"8":300,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,301],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,103],"27":164,"29":[2,103],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":217,"42":162,"44":218,"45":167,"47":[1,47],"72":[1,216],"77":302,"78":215,"87":[1,114],"97":[1,56]},{"1":[2,138],"4":[2,138],"28":[2,138],"29":[2,138],"50":[2,138],"55":[2,138],"57":[2,138],"69":[2,138],"74":[2,138],"84":[2,138],"89":[2,138],"98":[2,138],"99":89,"100":[1,65],"101":[2,138],"102":[1,66],"105":90,"109":[2,138],"113":[2,138],"114":[1,68],"125":[2,138],"126":[2,138],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,140],"4":[2,140],"28":[2,140],"29":[2,140],"50":[2,140],"55":[2,140],"57":[2,140],"69":[2,140],"74":[2,140],"84":[2,140],"89":[2,140],"98":[2,140],"99":89,"100":[1,65],"101":[2,140],"102":[1,66],"105":90,"109":[2,140],"113":[2,140],"114":[1,68],"125":[2,140],"126":[2,140],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"107":303,"108":[1,227],"111":[2,150]},{"110":304,"111":[1,230]},{"1":[2,153],"4":[2,153],"28":[2,153],"29":[2,153],"50":[2,153],"55":[2,153],"57":[2,153],"69":[2,153],"74":[2,153],"84":[2,153],"89":[2,153],"98":[2,153],"99":89,"100":[1,65],"101":[1,305],"102":[1,66],"105":90,"109":[1,306],"113":[2,153],"114":[1,68],"125":[2,153],"126":[2,153],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"99":89,"100":[1,65],"102":[1,66],"105":90,"112":307,"113":[1,308],"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,157],"4":[2,157],"28":[2,157],"29":[2,157],"50":[2,157],"55":[2,157],"57":[2,157],"69":[2,157],"74":[2,157],"84":[2,157],"89":[2,157],"98":[2,157],"99":89,"100":[1,65],"101":[1,309],"102":[1,66],"105":90,"109":[2,157],"113":[2,157],"114":[1,68],"125":[2,157],"126":[2,157],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,167],"4":[2,167],"28":[2,167],"29":[2,167],"50":[2,167],"55":[2,167],"57":[2,167],"69":[2,167],"74":[2,167],"84":[2,167],"89":[2,167],"98":[2,167],"100":[2,167],"101":[2,167],"102":[2,167],"109":[2,167],"113":[2,167],"114":[2,167],"125":[2,167],"126":[2,167],"128":[2,167],"129":[2,167],"132":[2,167],"133":[2,167],"134":[2,167],"135":[2,167],"136":[2,167],"137":[2,167]},{"30":311,"31":[1,73],"61":152,"62":153,"72":[1,70],"88":[1,69],"106":310},{"1":[2,120],"4":[2,120],"28":[2,120],"29":[2,120],"40":[2,120],"50":[2,120],"55":[2,120],"57":[2,120],"64":[2,120],"65":[2,120],"66":[2,120],"68":[2,120],"69":[2,120],"70":[2,120],"71":[2,120],"74":[2,120],"82":[2,120],"83":[2,120],"84":[2,120],"89":[2,120],"98":[2,120],"100":[2,120],"101":[2,120],"102":[2,120],"108":[2,120],"109":[2,120],"111":[2,120],"113":[2,120],"114":[2,120],"125":[2,120],"126":[2,120],"128":[2,120],"129":[2,120],"132":[2,120],"133":[2,120],"134":[2,120],"135":[2,120],"136":[2,120],"137":[2,120]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"58":159,"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"90":312,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,157],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"58":159,"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"85":313,"86":[1,57],"87":[1,58],"88":[1,69],"90":156,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,122],"28":[2,122],"29":[2,122],"55":[2,122],"84":[2,122],"89":[2,122]},{"4":[1,274],"28":[1,275],"29":[1,314]},{"1":[2,86],"4":[2,86],"28":[2,86],"29":[2,86],"40":[2,86],"50":[2,86],"55":[2,86],"57":[2,86],"64":[2,86],"65":[2,86],"66":[2,86],"68":[2,86],"69":[2,86],"70":[2,86],"71":[2,86],"74":[2,86],"82":[2,86],"83":[2,86],"84":[2,86],"89":[2,86],"98":[2,86],"100":[2,86],"101":[2,86],"102":[2,86],"108":[2,86],"109":[2,86],"111":[2,86],"113":[2,86],"114":[2,86],"125":[2,86],"126":[2,86],"128":[2,86],"129":[2,86],"132":[2,86],"133":[2,86],"134":[2,86],"135":[2,86],"136":[2,86],"137":[2,86]},{"27":164,"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":315,"42":162,"44":163,"45":167,"47":[1,47],"87":[1,114],"97":[1,56]},{"4":[2,87],"27":164,"28":[2,87],"29":[2,87],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":161,"42":162,"44":163,"45":167,"47":[1,47],"55":[2,87],"73":316,"87":[1,114],"97":[1,56]},{"4":[2,89],"28":[2,89],"29":[2,89],"55":[2,89],"74":[2,89]},{"4":[2,41],"28":[2,41],"29":[2,41],"55":[2,41],"74":[2,41],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"8":317,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,39],"4":[2,39],"28":[2,39],"29":[2,39],"50":[2,39],"55":[2,39],"57":[2,39],"69":[2,39],"74":[2,39],"84":[2,39],"89":[2,39],"98":[2,39],"100":[2,39],"101":[2,39],"102":[2,39],"109":[2,39],"113":[2,39],"114":[2,39],"125":[2,39],"126":[2,39],"128":[2,39],"129":[2,39],"132":[2,39],"133":[2,39],"134":[2,39],"135":[2,39],"136":[2,39],"137":[2,39]},{"1":[2,115],"4":[2,115],"28":[2,115],"29":[2,115],"50":[2,115],"55":[2,115],"57":[2,115],"64":[2,115],"65":[2,115],"66":[2,115],"68":[2,115],"69":[2,115],"70":[2,115],"71":[2,115],"74":[2,115],"82":[2,115],"83":[2,115],"84":[2,115],"89":[2,115],"98":[2,115],"100":[2,115],"101":[2,115],"102":[2,115],"109":[2,115],"113":[2,115],"114":[2,115],"125":[2,115],"126":[2,115],"128":[2,115],"129":[2,115],"132":[2,115],"133":[2,115],"134":[2,115],"135":[2,115],"136":[2,115],"137":[2,115]},{"1":[2,51],"4":[2,51],"28":[2,51],"29":[2,51],"50":[2,51],"55":[2,51],"57":[2,51],"69":[2,51],"74":[2,51],"84":[2,51],"89":[2,51],"98":[2,51],"100":[2,51],"101":[2,51],"102":[2,51],"109":[2,51],"113":[2,51],"114":[2,51],"125":[2,51],"126":[2,51],"128":[2,51],"129":[2,51],"132":[2,51],"133":[2,51],"134":[2,51],"135":[2,51],"136":[2,51],"137":[2,51]},{"1":[2,203],"4":[2,203],"28":[2,203],"29":[2,203],"50":[2,203],"55":[2,203],"57":[2,203],"69":[2,203],"74":[2,203],"84":[2,203],"89":[2,203],"98":[2,203],"100":[2,203],"101":[2,203],"102":[2,203],"109":[2,203],"113":[2,203],"114":[2,203],"125":[2,203],"126":[2,203],"128":[2,203],"129":[2,203],"132":[2,203],"133":[2,203],"134":[2,203],"135":[2,203],"136":[2,203],"137":[2,203]},{"1":[2,180],"4":[2,180],"28":[2,180],"29":[2,180],"50":[2,180],"55":[2,180],"57":[2,180],"69":[2,180],"74":[2,180],"84":[2,180],"89":[2,180],"98":[2,180],"100":[2,180],"101":[2,180],"102":[2,180],"109":[2,180],"113":[2,180],"114":[2,180],"119":[2,180],"125":[2,180],"126":[2,180],"128":[2,180],"129":[2,180],"132":[2,180],"133":[2,180],"134":[2,180],"135":[2,180],"136":[2,180],"137":[2,180]},{"1":[2,133],"4":[2,133],"28":[2,133],"29":[2,133],"50":[2,133],"55":[2,133],"57":[2,133],"69":[2,133],"74":[2,133],"84":[2,133],"89":[2,133],"98":[2,133],"100":[2,133],"101":[2,133],"102":[2,133],"109":[2,133],"113":[2,133],"114":[2,133],"125":[2,133],"126":[2,133],"128":[2,133],"129":[2,133],"132":[2,133],"133":[2,133],"134":[2,133],"135":[2,133],"136":[2,133],"137":[2,133]},{"1":[2,134],"4":[2,134],"28":[2,134],"29":[2,134],"50":[2,134],"55":[2,134],"57":[2,134],"69":[2,134],"74":[2,134],"84":[2,134],"89":[2,134],"94":[2,134],"98":[2,134],"100":[2,134],"101":[2,134],"102":[2,134],"109":[2,134],"113":[2,134],"114":[2,134],"125":[2,134],"126":[2,134],"128":[2,134],"129":[2,134],"132":[2,134],"133":[2,134],"134":[2,134],"135":[2,134],"136":[2,134],"137":[2,134]},{"1":[2,170],"4":[2,170],"28":[2,170],"29":[2,170],"50":[2,170],"55":[2,170],"57":[2,170],"69":[2,170],"74":[2,170],"84":[2,170],"89":[2,170],"98":[2,170],"100":[2,170],"101":[2,170],"102":[2,170],"109":[2,170],"113":[2,170],"114":[2,170],"125":[2,170],"126":[2,170],"128":[2,170],"129":[2,170],"132":[2,170],"133":[2,170],"134":[2,170],"135":[2,170],"136":[2,170],"137":[2,170]},{"4":[1,116],"6":318,"28":[1,6]},{"29":[1,319]},{"4":[1,320],"29":[2,176],"119":[2,176],"121":[2,176]},{"8":321,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,103],"27":164,"29":[2,103],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":217,"42":162,"44":218,"45":167,"47":[1,47],"72":[1,216],"77":322,"78":215,"87":[1,114],"97":[1,56]},{"1":[2,94],"4":[2,94],"28":[2,94],"29":[2,94],"50":[2,94],"55":[2,94],"57":[2,94],"69":[2,94],"74":[2,94],"84":[2,94],"89":[2,94],"98":[2,94],"100":[2,94],"101":[2,94],"102":[2,94],"109":[2,94],"113":[2,94],"114":[2,94],"125":[2,94],"126":[2,94],"128":[2,94],"129":[2,94],"132":[2,94],"133":[2,94],"134":[2,94],"135":[2,94],"136":[2,94],"137":[2,94]},{"4":[2,105],"29":[2,105],"74":[2,105]},{"4":[2,106],"29":[2,106],"74":[2,106]},{"4":[2,101],"29":[2,101],"74":[2,101],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"8":323,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[1,260],"29":[1,324]},{"1":[2,164],"4":[2,164],"28":[2,164],"29":[2,164],"50":[2,164],"55":[2,164],"57":[2,164],"69":[2,164],"74":[2,164],"84":[2,164],"89":[2,164],"98":[2,164],"100":[2,164],"101":[2,164],"102":[2,164],"109":[2,164],"113":[2,164],"114":[2,164],"125":[2,164],"126":[2,164],"128":[2,164],"129":[2,164],"132":[2,164],"133":[2,164],"134":[2,164],"135":[2,164],"136":[2,164],"137":[2,164]},{"1":[2,166],"4":[2,166],"28":[2,166],"29":[2,166],"50":[2,166],"55":[2,166],"57":[2,166],"69":[2,166],"74":[2,166],"84":[2,166],"89":[2,166],"98":[2,166],"100":[2,166],"101":[2,166],"102":[2,166],"109":[2,166],"113":[2,166],"114":[2,166],"125":[2,166],"126":[2,166],"128":[2,166],"129":[2,166],"132":[2,166],"133":[2,166],"134":[2,166],"135":[2,166],"136":[2,166],"137":[2,166]},{"8":325,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":326,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,169],"4":[2,169],"28":[2,169],"29":[2,169],"50":[2,169],"55":[2,169],"57":[2,169],"69":[2,169],"74":[2,169],"84":[2,169],"89":[2,169],"98":[2,169],"100":[2,169],"101":[2,169],"102":[2,169],"109":[2,169],"113":[2,169],"114":[2,169],"125":[2,169],"126":[2,169],"128":[2,169],"129":[2,169],"132":[2,169],"133":[2,169],"134":[2,169],"135":[2,169],"136":[2,169],"137":[2,169]},{"8":327,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":328,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"110":329,"111":[1,230]},{"111":[2,150]},{"4":[2,123],"28":[2,123],"29":[2,123],"55":[2,123],"84":[2,123],"89":[2,123]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":330,"55":[1,233]},{"4":[2,124],"28":[2,124],"29":[2,124],"55":[2,124],"84":[2,124],"89":[2,124]},{"4":[2,90],"28":[2,90],"29":[2,90],"55":[2,90],"74":[2,90]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":331,"55":[1,237]},{"29":[1,332],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"29":[1,333]},{"1":[2,173],"4":[2,173],"28":[2,173],"29":[2,173],"50":[2,173],"55":[2,173],"57":[2,173],"69":[2,173],"74":[2,173],"84":[2,173],"89":[2,173],"98":[2,173],"100":[2,173],"101":[2,173],"102":[2,173],"109":[2,173],"113":[2,173],"114":[2,173],"125":[2,173],"126":[2,173],"128":[2,173],"129":[2,173],"132":[2,173],"133":[2,173],"134":[2,173],"135":[2,173],"136":[2,173],"137":[2,173]},{"29":[2,177],"119":[2,177],"121":[2,177]},{"4":[2,129],"28":[2,129],"55":[2,129],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"4":[1,260],"29":[1,334]},{"29":[1,335],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,99],"4":[2,99],"28":[2,99],"29":[2,99],"50":[2,99],"55":[2,99],"57":[2,99],"69":[2,99],"74":[2,99],"84":[2,99],"89":[2,99],"98":[2,99],"100":[2,99],"101":[2,99],"102":[2,99],"109":[2,99],"113":[2,99],"114":[2,99],"125":[2,99],"126":[2,99],"128":[2,99],"129":[2,99],"132":[2,99],"133":[2,99],"134":[2,99],"135":[2,99],"136":[2,99],"137":[2,99]},{"1":[2,154],"4":[2,154],"28":[2,154],"29":[2,154],"50":[2,154],"55":[2,154],"57":[2,154],"69":[2,154],"74":[2,154],"84":[2,154],"89":[2,154],"98":[2,154],"99":89,"100":[1,65],"101":[2,154],"102":[1,66],"105":90,"109":[2,154],"113":[2,154],"114":[1,68],"125":[2,154],"126":[2,154],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,155],"4":[2,155],"28":[2,155],"29":[2,155],"50":[2,155],"55":[2,155],"57":[2,155],"69":[2,155],"74":[2,155],"84":[2,155],"89":[2,155],"98":[2,155],"99":89,"100":[1,65],"101":[1,336],"102":[1,66],"105":90,"109":[2,155],"113":[2,155],"114":[1,68],"125":[2,155],"126":[2,155],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,159],"4":[2,159],"28":[2,159],"29":[2,159],"50":[2,159],"55":[2,159],"57":[2,159],"69":[2,159],"74":[2,159],"84":[2,159],"89":[2,159],"98":[2,159],"99":89,"100":[1,65],"101":[1,337],"102":[1,66],"105":90,"109":[1,338],"113":[2,159],"114":[1,68],"125":[2,159],"126":[2,159],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,158],"4":[2,158],"28":[2,158],"29":[2,158],"50":[2,158],"55":[2,158],"57":[2,158],"69":[2,158],"74":[2,158],"84":[2,158],"89":[2,158],"98":[2,158],"99":89,"100":[1,65],"101":[2,158],"102":[1,66],"105":90,"109":[2,158],"113":[2,158],"114":[1,68],"125":[2,158],"126":[2,158],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,168],"4":[2,168],"28":[2,168],"29":[2,168],"50":[2,168],"55":[2,168],"57":[2,168],"69":[2,168],"74":[2,168],"84":[2,168],"89":[2,168],"98":[2,168],"100":[2,168],"101":[2,168],"102":[2,168],"109":[2,168],"113":[2,168],"114":[2,168],"125":[2,168],"126":[2,168],"128":[2,168],"129":[2,168],"132":[2,168],"133":[2,168],"134":[2,168],"135":[2,168],"136":[2,168],"137":[2,168]},{"4":[1,274],"28":[1,275],"29":[1,339]},{"4":[1,279],"28":[1,280],"29":[1,340]},{"4":[2,42],"28":[2,42],"29":[2,42],"55":[2,42],"74":[2,42]},{"1":[2,171],"4":[2,171],"28":[2,171],"29":[2,171],"50":[2,171],"55":[2,171],"57":[2,171],"69":[2,171],"74":[2,171],"84":[2,171],"89":[2,171],"98":[2,171],"100":[2,171],"101":[2,171],"102":[2,171],"109":[2,171],"113":[2,171],"114":[2,171],"125":[2,171],"126":[2,171],"128":[2,171],"129":[2,171],"132":[2,171],"133":[2,171],"134":[2,171],"135":[2,171],"136":[2,171],"137":[2,171]},{"1":[2,95],"4":[2,95],"28":[2,95],"29":[2,95],"50":[2,95],"55":[2,95],"57":[2,95],"69":[2,95],"74":[2,95],"84":[2,95],"89":[2,95],"98":[2,95],"100":[2,95],"101":[2,95],"102":[2,95],"109":[2,95],"113":[2,95],"114":[2,95],"125":[2,95],"126":[2,95],"128":[2,95],"129":[2,95],"132":[2,95],"133":[2,95],"134":[2,95],"135":[2,95],"136":[2,95],"137":[2,95]},{"4":[2,102],"29":[2,102],"74":[2,102]},{"8":341,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":342,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":343,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,125],"28":[2,125],"29":[2,125],"55":[2,125],"84":[2,125],"89":[2,125]},{"4":[2,91],"28":[2,91],"29":[2,91],"55":[2,91],"74":[2,91]},{"1":[2,156],"4":[2,156],"28":[2,156],"29":[2,156],"50":[2,156],"55":[2,156],"57":[2,156],"69":[2,156],"74":[2,156],"84":[2,156],"89":[2,156],"98":[2,156],"99":89,"100":[1,65],"101":[2,156],"102":[1,66],"105":90,"109":[2,156],"113":[2,156],"114":[1,68],"125":[2,156],"126":[2,156],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,160],"4":[2,160],"28":[2,160],"29":[2,160],"50":[2,160],"55":[2,160],"57":[2,160],"69":[2,160],"74":[2,160],"84":[2,160],"89":[2,160],"98":[2,160],"99":89,"100":[1,65],"101":[2,160],"102":[1,66],"105":90,"109":[2,160],"113":[2,160],"114":[1,68],"125":[2,160],"126":[2,160],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,161],"4":[2,161],"28":[2,161],"29":[2,161],"50":[2,161],"55":[2,161],"57":[2,161],"69":[2,161],"74":[2,161],"84":[2,161],"89":[2,161],"98":[2,161],"99":89,"100":[1,65],"101":[1,344],"102":[1,66],"105":90,"109":[2,161],"113":[2,161],"114":[1,68],"125":[2,161],"126":[2,161],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"8":345,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,162],"4":[2,162],"28":[2,162],"29":[2,162],"50":[2,162],"55":[2,162],"57":[2,162],"69":[2,162],"74":[2,162],"84":[2,162],"89":[2,162],"98":[2,162],"99":89,"100":[1,65],"101":[2,162],"102":[1,66],"105":90,"109":[2,162],"113":[2,162],"114":[1,68],"125":[2,162],"126":[2,162],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]}], +defaultActions: {"76":[2,4],"97":[2,113],"311":[2,150]}, parseError: function parseError(str, hash) { throw new Error(str); }, diff --git a/src/grammar.coffee b/src/grammar.coffee index 2ca9d16a..fa5c6a22 100644 --- a/src/grammar.coffee +++ b/src/grammar.coffee @@ -199,10 +199,12 @@ grammar = # A single parameter in a function definition can be ordinary, or a splat # that hoovers up the remaining arguments. Param: [ - o 'PARAM', -> new Literal $1 - o 'PARAM ...', -> new Param $1, false, true - o '@ PARAM', -> new Param $2, true - o '@ PARAM ...', -> new Param $2, true, true + o 'Identifier', -> new Param $1 + o 'Identifier ...', -> new Param $1, null, on + o 'Identifier = Expression', -> new Param $1, $3 + o 'ThisProperty', -> new Param $1, null + o 'ThisProperty ...', -> new Param $1, null, on + o 'ThisProperty = Expression', -> new Param $1, $3 ] # A splat that occurs outside of a parameter list. diff --git a/src/lexer.coffee b/src/lexer.coffee index 4eeb6ca5..6f1fca80 100644 --- a/src/lexer.coffee +++ b/src/lexer.coffee @@ -353,12 +353,19 @@ exports.Lexer = class Lexer # parameters specially in order to make things easier for the parser. tagParameters: -> return this if @tag() isnt ')' - i = @tokens.length - while tok = @tokens[--i] + stack = [] + {tokens} = this + i = tokens.length + tokens[--i][0] = 'PARAM_END' + while tok = tokens[--i] switch tok[0] - when 'IDENTIFIER' then tok[0] = 'PARAM' - when ')' then tok[0] = 'PARAM_END' - when '(', 'CALL_START' then tok[0] = 'PARAM_START'; return true + when ')' + stack.push tok + when '(', 'CALL_START' + if stack.length then stack.pop() + else + tok[0] = 'PARAM_START' + return this this # Close up all remaining open blocks at the end of the file. diff --git a/src/nodes.coffee b/src/nodes.coffee index adc4d27d..fa82e6fc 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -833,10 +833,8 @@ exports.Code = class Code extends Base children: ['params', 'body'] - constructor: (params, body, tag) -> + constructor: (@params = [], @body = new Expressions, tag) -> super() - @params = params or [] - @body = body or new Expressions @bound = tag is 'boundfunc' @context = 'this' if @bound @@ -852,21 +850,27 @@ exports.Code = class Code extends Base empty = @body.expressions.length is 0 delete o.bare delete o.globals - splat = undefined + splat = null params = [] for param, i in @params if splat if param.attach - param.assign = new Assign new Value new Literal('this'), [new Accessor param.value] + param.assign = new Assign param.name @body.expressions.splice splat.index + 1, 0, param.assign + else if param.value + @body.unshift new Assign new Value(param.name), param.value, '?=' splat.trailings.push param else if param.attach - {value} = param - [param, param.splat] = [new Literal(scope.freeVariable 'arg'), param.splat] - @body.unshift new Assign new Value(new Literal('this'), [new Accessor value]), param + {name, value, splat} = param + param = new Literal scope.freeVariable 'arg' + param.splat = splat + @body.unshift new Assign name, + if value then new Op '?', param, value else param + else if param.value + @body.unshift new Assign new Value(param.name), param.value, '?=' if param.splat - splat = new Splat param.value + splat = new Splat param.name or param splat.index = i splat.trailings = [] splat.arglength = @params.length @@ -875,13 +879,12 @@ exports.Code = class Code extends Base params.push param scope.startLevel() @body.makeReturn() unless empty or @noReturn - params = for param in params - scope.parameter param = param.compile o - param - comm = if @comment then @comment.compile(o) + '\n' else '' + scope.parameter params[i] = param.compile o for param, i in params + comm = if @comment then @comment.compile(o) + '\n' else '' o.indent = @idt 2 if @className - idt = @idt 1 - code = if @body.expressions.length then "\n#{ @body.compileWithDeclarations o }\n" else '' + idt = @idt 1 + code = if @body.isEmpty() then '' + else "\n#{ @body.compileWithDeclarations o }\n" if @className open = "(function() {\n#{comm}#{idt}function #{@className}(" close = "#{ code and idt }}\n#{idt}return #{@className};\n#{@tab}})()" @@ -904,19 +907,13 @@ exports.Code = class Code extends Base # as well as be a splat, gathering up a group of parameters into an array. exports.Param = class Param extends Base - children: ['name'] + children: ['name', 'value'] - constructor: (name, @attach, @splat) -> + constructor: (@name, @value, @splat) -> super() - @value = new Literal @name = name + @attach = @name instanceof Value - compile: (o) -> @value.compile o, LEVEL_LIST - - toString: -> - {name} = this - name = '@' + name if @attach - name += '...' if @splat - new Literal(name).toString() + compile: (o) -> @name.compile o, LEVEL_LIST #### Splat @@ -948,13 +945,13 @@ exports.Splat = class Splat extends Base variadic = o.scope.freeVariable 'result' o.scope.assign variadic, len + ' >= ' + @arglength end = if @trailings.length then ", #{len} - #{@trailings.length}" - for trailing, idx in @trailings - if trailing.attach - assign = trailing.assign - trailing = new Literal o.scope.freeVariable 'arg' - assign.value = trailing + for param, idx in @trailings + if param.attach + {assign, value} = param + param = new Literal o.scope.freeVariable 'arg' + assign.value = if value then new Op '?', param, value else param pos = @trailings.length - idx - o.scope.assign trailing.compile(o), + o.scope.assign param.compile(o), "arguments[#{variadic} ? #{len} - #{pos} : #{ @index + idx }]" "#{name} = #{ utility 'slice' }.call(arguments, #{@index}#{end})" diff --git a/test/test_arguments.coffee b/test/test_arguments.coffee index a45044b2..c607395c 100644 --- a/test/test_arguments.coffee +++ b/test/test_arguments.coffee @@ -40,4 +40,10 @@ class Klass obj = new Klass 1, 2 ok obj.one is 1 -ok obj.two is 2 \ No newline at end of file +ok obj.two is 2 + + +# Default arguments. +obj = f: (q = 123, @p = 456) -> q +eq obj.f(), 123 +eq obj.p , 456 From 4eeab947ddfcdfab49c198653ced92c82dc1c9ec Mon Sep 17 00:00:00 2001 From: satyr Date: Tue, 26 Oct 2010 18:52:43 +0900 Subject: [PATCH 2/7] defarg: removed Splat::compileParam in favor of using the normal array destructuring against `arguments` --- lib/nodes.js | 178 +++++++++++++++++++++++------------------------ lib/scope.js | 4 +- src/nodes.coffee | 114 +++++++++++------------------- 3 files changed, 129 insertions(+), 167 deletions(-) diff --git a/lib/nodes.js b/lib/nodes.js index eb2fd38c..17dd6c86 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -96,7 +96,7 @@ }; Base.prototype.toString = function(idt, override) { var _i, _len, _ref2, _result, child, children, klass; - idt || (idt = ''); + idt != null ? idt : idt = ''; children = ((function() { _ref2 = this.collectChildren(); _result = []; @@ -209,7 +209,7 @@ return this; }; Expressions.prototype.compile = function(o, level) { - o || (o = {}); + o != null ? o : o = {}; return o.scope ? Expressions.__super__.compile.call(this, o, level) : this.compileRoot(o); }; Expressions.prototype.compileNode = function(o) { @@ -464,13 +464,12 @@ exports.Call = (function() { Call = (function() { function Call(variable, _arg, _arg2) { + this.args = _arg != null ? _arg : []; this.soak = _arg2; - this.args = _arg; Call.__super__.constructor.call(this); this["new"] = ''; this.isSuper = variable === 'super'; this.variable = this.isSuper ? null : variable; - this.args || (this.args = []); return this; } return Call; @@ -595,8 +594,8 @@ exports.Extends = (function() { Extends = (function() { function Extends(_arg, _arg2) { - this.parent = _arg2; this.child = _arg; + this.parent = _arg2; Extends.__super__.constructor.call(this); return this; } @@ -788,8 +787,8 @@ exports.Class = (function() { Class = (function() { function Class(_arg, _arg2, props) { - this.parent = _arg2; this.variable = _arg; + this.parent = _arg2; Class.__super__.constructor.call(this); this.properties = props || []; this.returns = false; @@ -888,9 +887,9 @@ exports.Assign = (function() { Assign = (function() { function Assign(_arg, _arg2, _arg3) { - this.context = _arg3; - this.value = _arg2; this.variable = _arg; + this.value = _arg2; + this.context = _arg3; Assign.__super__.constructor.call(this); return this; } @@ -934,7 +933,7 @@ return o.level <= LEVEL_LIST ? val : "(" + val + ")"; }; Assign.prototype.compilePatternMatch = function(o) { - var _len, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7, acc, assigns, code, i, idx, isObject, obj, objects, olength, ref, splat, top, val, valVar, value; + var _len, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7, acc, assigns, code, i, idx, isObject, ivar, obj, objects, olength, ref, rest, splat, top, val, valVar, value; top = o.level === LEVEL_TOP; value = this.value; objects = this.variable.base.objects; @@ -979,11 +978,15 @@ } } if (!splat && obj instanceof Splat) { - val = new Literal(obj.compileValue(o, valVar, i, olength - i - 1)); - splat = true; + if (rest = olength - i - 1 || '') { + ivar = o.scope.freeVariable('i'); + rest = ", " + ivar + " = " + valVar + ".length - " + rest; + } + val = new Literal(utility('slice') + (".call(" + valVar + ", " + i + rest + ")")); + splat = "" + ivar + " < " + i + " ? " + ivar + " = " + i + " : " + ivar + "++"; } else { - if (typeof idx !== 'object') { - idx = new Literal(splat ? "" + valVar + ".length - " + (olength - idx) : idx); + if (typeof idx === 'number') { + idx = new Literal(splat || idx); acc = false; } else { acc = isObject && IDENTIFIER.test(idx.unwrap().value || 0); @@ -1008,8 +1011,8 @@ exports.Code = (function() { Code = (function() { function Code(_arg, _arg2, tag) { - this.body = _arg2 != null ? _arg2 : new Expressions; this.params = _arg != null ? _arg : []; + this.body = _arg2 != null ? _arg2 : new Expressions; Code.__super__.constructor.call(this); this.bound = tag === 'boundfunc'; if (this.bound) { @@ -1022,53 +1025,62 @@ __extends(Code, Base); Code.prototype.children = ['params', 'body']; Code.prototype.compileNode = function(o) { - var _len, _len2, _ref2, close, code, comm, empty, func, i, idt, name, open, param, params, scope, sharedScope, splat, value; + var _i, _j, _len, _len2, _len3, _ref2, _ref3, _result, _this, close, code, comm, exprs, func, i, idt, open, p, param, ref, scope, sharedScope, splats, v, vars, wasEmpty; sharedScope = del(o, 'sharedScope'); o.scope = scope = sharedScope || new Scope(o.scope, this.body, this); o.indent = this.idt(1); - empty = this.body.expressions.length === 0; delete o.bare; delete o.globals; - splat = null; - params = []; + vars = []; + exprs = []; _ref2 = this.params; - for (i = 0, _len = _ref2.length; i < _len; i++) { - param = _ref2[i]; - if (splat) { - if (param.attach) { - param.assign = new Assign(param.name); - this.body.expressions.splice(splat.index + 1, 0, param.assign); - } else if (param.value) { - this.body.unshift(new Assign(new Value(param.name), param.value, '?=')); - } - splat.trailings.push(param); + for (_i = 0, _len = _ref2.length; _i < _len; _i++) { + param = _ref2[_i]; + if (param.splat) { + splats = new Assign(new Value(new Arr((function() { + _ref3 = this.params; + _result = []; + for (_j = 0, _len2 = _ref3.length; _j < _len2; _j++) { + p = _ref3[_j]; + _result.push(p.asReference(o)); + } + return _result; + }).call(this))), new Value(new Literal('arguments'))); + break; + } + } + _ref3 = this.params; + for (_j = 0, _len2 = _ref3.length; _j < _len2; _j++) { + param = _ref3[_j]; + if (param.attach) { + ref = param.asReference(o); + exprs.push(new Assign(param.name, param.value ? new Op('?', ref, param.value) : ref)); } else { - if (param.attach) { - name = param.name, value = param.value, splat = param.splat; - param = new Literal(scope.freeVariable('arg')); - param.splat = splat; - this.body.unshift(new Assign(name, value ? new Op('?', param, value) : param)); - } else if (param.value) { - this.body.unshift(new Assign(new Value(param.name), param.value, '?=')); - } - if (param.splat) { - splat = new Splat(param.name || param); - splat.index = i; - splat.trailings = []; - splat.arglength = this.params.length; - this.body.unshift(splat); - } else { - params.push(param); + ref = param; + if (param.value) { + exprs.push(new Assign(new Value(param.name), param.value, '?=')); } } + if (!splats) { + vars.push(ref); + } } scope.startLevel(); - if (!(empty || this.noReturn)) { + wasEmpty = this.body.isEmpty(); + if (splats) { + exprs.unshift(splats); + } + if (exprs.length) { + (_this = this.body.expressions).splice.apply(_this, [0, 0].concat(exprs)); + } + if (!(wasEmpty || this.noReturn)) { this.body.makeReturn(); } - for (i = 0, _len2 = params.length; i < _len2; i++) { - param = params[i]; - scope.parameter(params[i] = param.compile(o)); + if (!splats) { + for (i = 0, _len3 = vars.length; i < _len3; i++) { + v = vars[i]; + scope.parameter(vars[i] = v.compile(o)); + } } comm = this.comment ? this.comment.compile(o) + '\n' : ''; if (this.className) { @@ -1080,10 +1092,10 @@ open = "(function() {\n" + comm + idt + "function " + this.className + "("; close = "" + (code && idt) + "}\n" + idt + "return " + this.className + ";\n" + this.tab + "})()"; } else { - open = "function("; + open = 'function('; close = "" + (code && this.tab) + "}"; } - func = "" + open + (params.join(', ')) + ") {" + code + close; + func = "" + open + (vars.join(', ')) + ") {" + code + close; scope.endLevel(); if (this.bound) { return "" + (utility('bind')) + "(" + func + ", " + this.context + ")"; @@ -1098,9 +1110,9 @@ exports.Param = (function() { Param = (function() { function Param(_arg, _arg2, _arg3) { - this.splat = _arg3; - this.value = _arg2; this.name = _arg; + this.value = _arg2; + this.splat = _arg3; Param.__super__.constructor.call(this); this.attach = this.name instanceof Value; return this; @@ -1112,6 +1124,18 @@ Param.prototype.compile = function(o) { return this.name.compile(o, LEVEL_LIST); }; + Param.prototype.asReference = function(o) { + var node; + if (this.reference) { + return this.reference; + } + node = this.attach ? new Literal(o.scope.freeVariable('arg')) : this.name; + node = new Value(node); + if (this.splat) { + node = new Splat(node); + } + return this.reference = node; + }; return Param; })(); exports.Splat = (function() { @@ -1132,36 +1156,6 @@ Splat.prototype.compile = function(o) { return this.index != null ? this.compileParam(o) : this.name.compile(o); }; - Splat.prototype.compileParam = function(o) { - var _len, _ref2, assign, end, idx, len, name, param, pos, value, variadic; - name = this.name.compile(o); - o.scope.find(name); - end = ''; - if (this.trailings.length) { - len = o.scope.freeVariable('len'); - o.scope.assign(len, 'arguments.length'); - variadic = o.scope.freeVariable('result'); - o.scope.assign(variadic, len + ' >= ' + this.arglength); - end = this.trailings.length ? ", " + len + " - " + this.trailings.length : undefined; - _ref2 = this.trailings; - for (idx = 0, _len = _ref2.length; idx < _len; idx++) { - param = _ref2[idx]; - if (param.attach) { - assign = param.assign, value = param.value; - param = new Literal(o.scope.freeVariable('arg')); - assign.value = value ? new Op('?', param, value) : param; - } - pos = this.trailings.length - idx; - o.scope.assign(param.compile(o), "arguments[" + variadic + " ? " + len + " - " + pos + " : " + (this.index + idx) + "]"); - } - } - return "" + name + " = " + (utility('slice')) + ".call(arguments, " + this.index + end + ")"; - }; - Splat.prototype.compileValue = function(o, name, index, trailings) { - var trail; - trail = trailings ? ', -' + trailings : ''; - return utility('slice') + (".call(" + name + ", " + index + trail + ")"); - }; Splat.compileSplattedArray = function(list, o) { var _len, arg, args, code, end, i, prev; args = []; @@ -1343,8 +1337,8 @@ exports.In = (function() { In = (function() { function In(_arg, _arg2) { - this.array = _arg2; this.object = _arg; + this.array = _arg2; In.__super__.constructor.call(this); return this; } @@ -1393,10 +1387,10 @@ exports.Try = (function() { Try = (function() { function Try(_arg, _arg2, _arg3, _arg4) { - this.ensure = _arg4; - this.recovery = _arg3; - this.error = _arg2; this.attempt = _arg; + this.error = _arg2; + this.recovery = _arg3; + this.ensure = _arg4; Try.__super__.constructor.call(this); return this; } @@ -1622,9 +1616,9 @@ exports.Switch = (function() { Switch = (function() { function Switch(_arg, _arg2, _arg3) { - this.otherwise = _arg3; - this.cases = _arg2; this.subject = _arg; + this.cases = _arg2; + this.otherwise = _arg3; Switch.__super__.constructor.call(this); return this; } @@ -1686,13 +1680,13 @@ })(); exports.If = (function() { If = (function() { - function If(condition, _arg, tags) { + function If(condition, _arg, _arg2) { this.body = _arg; - this.tags = tags || (tags = {}); - this.condition = tags.invert ? condition.invert() : condition; - this.soak = tags.soak; + this.tags = _arg2 != null ? _arg2 : {}; + this.condition = this.tags.invert ? condition.invert() : condition; this.elseBody = null; this.isChain = false; + this.soak = this.tags.soak; return this; } return If; diff --git a/lib/scope.js b/lib/scope.js index 6be6a0e1..246317bc 100644 --- a/lib/scope.js +++ b/lib/scope.js @@ -4,9 +4,9 @@ exports.Scope = (function() { Scope = (function() { function Scope(_arg, _arg2, _arg3) { - this.method = _arg3; - this.expressions = _arg2; this.parent = _arg; + this.expressions = _arg2; + this.method = _arg3; this.variables = [ { name: 'arguments', diff --git a/src/nodes.coffee b/src/nodes.coffee index fa82e6fc..52e7eaca 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -107,8 +107,7 @@ exports.Base = class Base # `toString` representation of the node, for inspecting the parse tree. # This is what `coffee --nodes` prints out. - toString: (idt, override) -> - idt or= '' + toString: (idt = '', override) -> children = (child.toString idt + TAB for child in @collectChildren()).join('') klass = override or @constructor.name + if @soak then '?' else '' '\n' + idt + klass + children @@ -198,8 +197,7 @@ exports.Expressions = class Expressions extends Base this # An **Expressions** is the only node that can serve as the root. - compile: (o, level) -> - o or= {} + compile: (o = {}, level) -> if o.scope then super o, level else @compileRoot o compileNode: (o) -> @@ -405,12 +403,11 @@ exports.Call = class Call extends Base children: ['variable', 'args'] - constructor: (variable, @args, @soak) -> + constructor: (variable, @args = [], @soak) -> super() @new = '' @isSuper = variable is 'super' @variable = if @isSuper then null else variable - @args or= [] # Tag this invocation as creating a new instance. newInstance: -> @@ -803,11 +800,14 @@ exports.Assign = class Assign extends Base then [obj, idx] = new Value(obj.unwrapAll()).cacheReference o else idx = if obj.tags.this then obj.properties[0].name else obj if not splat and obj instanceof Splat - val = new Literal obj.compileValue o, valVar, i, olength - i - 1 - splat = true + if rest = olength - i - 1 or '' + ivar = o.scope.freeVariable 'i' + rest = ", #{ivar} = #{valVar}.length - #{rest}" + val = new Literal utility('slice') + ".call(#{valVar}, #{i}#{rest})" + splat = "#{ivar} < #{i} ? #{ivar} = #{i} : #{ivar}++" else - if typeof idx isnt 'object' - idx = new Literal(if splat then "#{valVar}.length - #{ olength - idx }" else idx) + if typeof idx is 'number' + idx = new Literal splat or idx acc = no else acc = isObject and IDENTIFIER.test idx.unwrap().value or 0 @@ -847,39 +847,29 @@ exports.Code = class Code extends Base sharedScope = del o, 'sharedScope' o.scope = scope = sharedScope or new Scope o.scope, @body, this o.indent = @idt 1 - empty = @body.expressions.length is 0 delete o.bare delete o.globals - splat = null - params = [] - for param, i in @params - if splat - if param.attach - param.assign = new Assign param.name - @body.expressions.splice splat.index + 1, 0, param.assign - else if param.value - @body.unshift new Assign new Value(param.name), param.value, '?=' - splat.trailings.push param + vars = [] + exprs = [] + for param in @params when param.splat + splats = new Assign new Value(new Arr(p.asReference o for p in @params)), + new Value new Literal 'arguments' + break + for param in @params + if param.attach + ref = param.asReference o + exprs.push new Assign param.name, + if param.value then new Op '?', ref, param.value else ref else - if param.attach - {name, value, splat} = param - param = new Literal scope.freeVariable 'arg' - param.splat = splat - @body.unshift new Assign name, - if value then new Op '?', param, value else param - else if param.value - @body.unshift new Assign new Value(param.name), param.value, '?=' - if param.splat - splat = new Splat param.name or param - splat.index = i - splat.trailings = [] - splat.arglength = @params.length - @body.unshift splat - else - params.push param + ref = param + exprs.push new Assign new Value(param.name), param.value, '?=' if param.value + vars.push ref unless splats scope.startLevel() - @body.makeReturn() unless empty or @noReturn - scope.parameter params[i] = param.compile o for param, i in params + wasEmpty = @body.isEmpty() + exprs.unshift splats if splats + @body.expressions.splice 0, 0, exprs... if exprs.length + @body.makeReturn() unless wasEmpty or @noReturn + scope.parameter vars[i] = v.compile o for v, i in vars unless splats comm = if @comment then @comment.compile(o) + '\n' else '' o.indent = @idt 2 if @className idt = @idt 1 @@ -889,9 +879,9 @@ exports.Code = class Code extends Base open = "(function() {\n#{comm}#{idt}function #{@className}(" close = "#{ code and idt }}\n#{idt}return #{@className};\n#{@tab}})()" else - open = "function(" + open = 'function(' close = "#{ code and @tab }}" - func = "#{open}#{ params.join ', ' }) {#{code}#{close}" + func = "#{open}#{ vars.join ', ' }) {#{code}#{close}" scope.endLevel() return "#{ utility 'bind' }(#{func}, #{@context})" if @bound if @tags.front then "(#{func})" else func @@ -915,6 +905,13 @@ exports.Param = class Param extends Base compile: (o) -> @name.compile o, LEVEL_LIST + asReference: (o) -> + return @reference if @reference + node = if @attach then new Literal o.scope.freeVariable 'arg' else this.name + node = new Value node + node = new Splat node if @splat + @reference = node + #### Splat # A splat, either as a parameter to a function, an argument to a call, @@ -933,34 +930,6 @@ exports.Splat = class Splat extends Base compile: (o) -> if @index? then @compileParam o else @name.compile o - # Compiling a parameter splat means recovering the parameters that succeed - # the splat in the parameter list, by slicing the arguments object. - compileParam: (o) -> - name = @name.compile o - o.scope.find name - end = '' - if @trailings.length - len = o.scope.freeVariable 'len' - o.scope.assign len, 'arguments.length' - variadic = o.scope.freeVariable 'result' - o.scope.assign variadic, len + ' >= ' + @arglength - end = if @trailings.length then ", #{len} - #{@trailings.length}" - for param, idx in @trailings - if param.attach - {assign, value} = param - param = new Literal o.scope.freeVariable 'arg' - assign.value = if value then new Op '?', param, value else param - pos = @trailings.length - idx - o.scope.assign param.compile(o), - "arguments[#{variadic} ? #{len} - #{pos} : #{ @index + idx }]" - "#{name} = #{ utility 'slice' }.call(arguments, #{@index}#{end})" - - # A compiling a splat as a destructuring assignment means slicing arguments - # from the right-hand-side's corresponding array. - compileValue: (o, name, index, trailings) -> - trail = if trailings then ', -' + trailings else '' - utility('slice') + ".call(#{name}, #{index}#{trail})" - # Utility function that converts arbitrary number of elements, mixed with # splats, to a proper array @compileSplattedArray: (list, o) -> @@ -1377,12 +1346,11 @@ exports.If = class If extends Base children: ['condition', 'body', 'elseBody'] - constructor: (condition, @body, tags) -> - @tags = tags or= {} - @condition = if tags.invert then condition.invert() else condition - @soak = tags.soak + constructor: (condition, @body, @tags = {}) -> + @condition = if @tags.invert then condition.invert() else condition @elseBody = null @isChain = false + {@soak} = @tags bodyNode: -> @body?.unwrap() elseBodyNode: -> @elseBody?.unwrap() From 96f74f9da8c1f99434d70e53813a6d48fab5abfc Mon Sep 17 00:00:00 2001 From: satyr Date: Tue, 26 Oct 2010 19:08:01 +0900 Subject: [PATCH 3/7] grammar: refactored Param --- lib/grammar.js | 13 +-- lib/parser.js | 274 ++++++++++++++++++++++----------------------- src/grammar.coffee | 14 ++- 3 files changed, 148 insertions(+), 153 deletions(-) diff --git a/lib/grammar.js b/lib/grammar.js index 85101603..691acf4e 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -124,20 +124,15 @@ }) ], Param: [ - o('Identifier', function() { + o('ParamVar', function() { return new Param($1); - }), o('Identifier ...', function() { + }), o('ParamVar ...', function() { return new Param($1, null, true); - }), o('Identifier = Expression', function() { - return new Param($1, $3); - }), o('ThisProperty', function() { - return new Param($1, null); - }), o('ThisProperty ...', function() { - return new Param($1, null, true); - }), o('ThisProperty = Expression', function() { + }), o('ParamVar = Expression', function() { return new Param($1, $3); }) ], + ParamVar: [o('Identifier'), o('ThisProperty')], Splat: [ o('Expression ...', function() { return new Splat($1); diff --git a/lib/parser.js b/lib/parser.js index ad7f8ead..092946c5 100755 --- a/lib/parser.js +++ b/lib/parser.js @@ -2,9 +2,9 @@ var parser = (function(){ 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,"DEBUGGER":14,"Value":15,"Invocation":16,"Code":17,"Operation":18,"Assign":19,"If":20,"Try":21,"While":22,"For":23,"Switch":24,"Extends":25,"Class":26,"Comment":27,"INDENT":28,"OUTDENT":29,"Identifier":30,"IDENTIFIER":31,"AlphaNumeric":32,"NUMBER":33,"STRING":34,"Literal":35,"JS":36,"REGEX":37,"BOOL":38,"Assignable":39,"=":40,"AssignObj":41,"ObjAssignable":42,":":43,"ThisProperty":44,"Parenthetical":45,"RETURN":46,"HERECOMMENT":47,"PARAM_START":48,"ParamList":49,"PARAM_END":50,"FuncGlyph":51,"->":52,"=>":53,"OptComma":54,",":55,"Param":56,"...":57,"Splat":58,"SimpleAssignable":59,"Accessor":60,"Array":61,"Object":62,"This":63,".":64,"?.":65,"::":66,"Index":67,"INDEX_START":68,"INDEX_END":69,"INDEX_SOAK":70,"INDEX_PROTO":71,"{":72,"AssignList":73,"}":74,"CLASS":75,"EXTENDS":76,"ClassBody":77,"ClassAssign":78,"OptFuncExist":79,"Arguments":80,"SUPER":81,"FUNC_EXIST":82,"CALL_START":83,"CALL_END":84,"ArgList":85,"THIS":86,"@":87,"[":88,"]":89,"Arg":90,"SimpleArgs":91,"TRY":92,"Catch":93,"FINALLY":94,"CATCH":95,"THROW":96,"(":97,")":98,"WhileSource":99,"WHILE":100,"WHEN":101,"UNTIL":102,"Loop":103,"LOOP":104,"ForBody":105,"ForValue":106,"ForIn":107,"FORIN":108,"BY":109,"ForOf":110,"FOROF":111,"ForTo":112,"TO":113,"FOR":114,"ALL":115,"FROM":116,"SWITCH":117,"Whens":118,"ELSE":119,"When":120,"LEADING_WHEN":121,"IfBlock":122,"IF":123,"UNLESS":124,"POST_IF":125,"POST_UNLESS":126,"UNARY":127,"-":128,"+":129,"--":130,"++":131,"?":132,"MATH":133,"SHIFT":134,"COMPARE":135,"LOGIC":136,"RELATION":137,"COMPOUND_ASSIGN":138,"$accept":0,"$end":1}, -terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","14":"DEBUGGER","28":"INDENT","29":"OUTDENT","31":"IDENTIFIER","33":"NUMBER","34":"STRING","36":"JS","37":"REGEX","38":"BOOL","40":"=","43":":","46":"RETURN","47":"HERECOMMENT","48":"PARAM_START","50":"PARAM_END","52":"->","53":"=>","55":",","57":"...","64":".","65":"?.","66":"::","68":"INDEX_START","69":"INDEX_END","70":"INDEX_SOAK","71":"INDEX_PROTO","72":"{","74":"}","75":"CLASS","76":"EXTENDS","81":"SUPER","82":"FUNC_EXIST","83":"CALL_START","84":"CALL_END","86":"THIS","87":"@","88":"[","89":"]","92":"TRY","94":"FINALLY","95":"CATCH","96":"THROW","97":"(","98":")","100":"WHILE","101":"WHEN","102":"UNTIL","104":"LOOP","108":"FORIN","109":"BY","111":"FOROF","113":"TO","114":"FOR","115":"ALL","116":"FROM","117":"SWITCH","119":"ELSE","121":"LEADING_WHEN","123":"IF","124":"UNLESS","125":"POST_IF","126":"POST_UNLESS","127":"UNARY","128":"-","129":"+","130":"--","131":"++","132":"?","133":"MATH","134":"SHIFT","135":"COMPARE","136":"LOGIC","137":"RELATION","138":"COMPOUND_ASSIGN"}, -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],[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],[6,3],[6,2],[6,2],[30,1],[32,1],[32,1],[35,1],[35,1],[35,1],[35,1],[19,3],[19,5],[41,1],[41,3],[41,5],[41,1],[41,1],[42,1],[42,1],[42,1],[10,2],[10,1],[27,1],[17,5],[17,2],[51,1],[51,1],[54,0],[54,1],[49,0],[49,1],[49,3],[56,1],[56,2],[56,3],[56,1],[56,2],[56,3],[58,2],[59,1],[59,2],[59,2],[59,1],[39,1],[39,1],[39,1],[15,1],[15,1],[15,1],[15,1],[60,2],[60,2],[60,2],[60,1],[60,1],[67,3],[67,2],[67,2],[62,4],[73,0],[73,1],[73,3],[73,4],[73,6],[26,2],[26,4],[26,5],[26,7],[26,4],[26,1],[26,3],[26,6],[78,1],[78,3],[78,5],[77,0],[77,1],[77,3],[77,3],[25,3],[16,3],[16,3],[16,1],[16,2],[79,0],[79,1],[80,2],[80,4],[63,1],[63,1],[44,2],[61,2],[61,4],[85,1],[85,3],[85,4],[85,4],[85,6],[90,1],[90,1],[91,1],[91,3],[21,2],[21,3],[21,4],[21,5],[93,3],[11,2],[45,3],[99,2],[99,4],[99,2],[99,4],[22,2],[22,2],[22,2],[22,1],[103,2],[103,2],[23,2],[23,2],[23,2],[106,1],[106,1],[106,1],[107,2],[107,4],[107,4],[107,6],[110,2],[110,4],[112,2],[112,4],[112,4],[112,6],[105,3],[105,5],[105,3],[105,5],[105,4],[105,6],[105,5],[24,5],[24,7],[24,4],[24,6],[118,1],[118,2],[120,3],[120,4],[122,3],[122,3],[122,5],[122,3],[20,1],[20,3],[20,3],[20,3],[20,3],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,5]], +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,"DEBUGGER":14,"Value":15,"Invocation":16,"Code":17,"Operation":18,"Assign":19,"If":20,"Try":21,"While":22,"For":23,"Switch":24,"Extends":25,"Class":26,"Comment":27,"INDENT":28,"OUTDENT":29,"Identifier":30,"IDENTIFIER":31,"AlphaNumeric":32,"NUMBER":33,"STRING":34,"Literal":35,"JS":36,"REGEX":37,"BOOL":38,"Assignable":39,"=":40,"AssignObj":41,"ObjAssignable":42,":":43,"ThisProperty":44,"Parenthetical":45,"RETURN":46,"HERECOMMENT":47,"PARAM_START":48,"ParamList":49,"PARAM_END":50,"FuncGlyph":51,"->":52,"=>":53,"OptComma":54,",":55,"Param":56,"ParamVar":57,"...":58,"Splat":59,"SimpleAssignable":60,"Accessor":61,"Array":62,"Object":63,"This":64,".":65,"?.":66,"::":67,"Index":68,"INDEX_START":69,"INDEX_END":70,"INDEX_SOAK":71,"INDEX_PROTO":72,"{":73,"AssignList":74,"}":75,"CLASS":76,"EXTENDS":77,"ClassBody":78,"ClassAssign":79,"OptFuncExist":80,"Arguments":81,"SUPER":82,"FUNC_EXIST":83,"CALL_START":84,"CALL_END":85,"ArgList":86,"THIS":87,"@":88,"[":89,"]":90,"Arg":91,"SimpleArgs":92,"TRY":93,"Catch":94,"FINALLY":95,"CATCH":96,"THROW":97,"(":98,")":99,"WhileSource":100,"WHILE":101,"WHEN":102,"UNTIL":103,"Loop":104,"LOOP":105,"ForBody":106,"ForValue":107,"ForIn":108,"FORIN":109,"BY":110,"ForOf":111,"FOROF":112,"ForTo":113,"TO":114,"FOR":115,"ALL":116,"FROM":117,"SWITCH":118,"Whens":119,"ELSE":120,"When":121,"LEADING_WHEN":122,"IfBlock":123,"IF":124,"UNLESS":125,"POST_IF":126,"POST_UNLESS":127,"UNARY":128,"-":129,"+":130,"--":131,"++":132,"?":133,"MATH":134,"SHIFT":135,"COMPARE":136,"LOGIC":137,"RELATION":138,"COMPOUND_ASSIGN":139,"$accept":0,"$end":1}, +terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","14":"DEBUGGER","28":"INDENT","29":"OUTDENT","31":"IDENTIFIER","33":"NUMBER","34":"STRING","36":"JS","37":"REGEX","38":"BOOL","40":"=","43":":","46":"RETURN","47":"HERECOMMENT","48":"PARAM_START","50":"PARAM_END","52":"->","53":"=>","55":",","58":"...","65":".","66":"?.","67":"::","69":"INDEX_START","70":"INDEX_END","71":"INDEX_SOAK","72":"INDEX_PROTO","73":"{","75":"}","76":"CLASS","77":"EXTENDS","82":"SUPER","83":"FUNC_EXIST","84":"CALL_START","85":"CALL_END","87":"THIS","88":"@","89":"[","90":"]","93":"TRY","95":"FINALLY","96":"CATCH","97":"THROW","98":"(","99":")","101":"WHILE","102":"WHEN","103":"UNTIL","105":"LOOP","109":"FORIN","110":"BY","112":"FOROF","114":"TO","115":"FOR","116":"ALL","117":"FROM","118":"SWITCH","120":"ELSE","122":"LEADING_WHEN","124":"IF","125":"UNLESS","126":"POST_IF","127":"POST_UNLESS","128":"UNARY","129":"-","130":"+","131":"--","132":"++","133":"?","134":"MATH","135":"SHIFT","136":"COMPARE","137":"LOGIC","138":"RELATION","139":"COMPOUND_ASSIGN"}, +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],[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],[6,3],[6,2],[6,2],[30,1],[32,1],[32,1],[35,1],[35,1],[35,1],[35,1],[19,3],[19,5],[41,1],[41,3],[41,5],[41,1],[41,1],[42,1],[42,1],[42,1],[10,2],[10,1],[27,1],[17,5],[17,2],[51,1],[51,1],[54,0],[54,1],[49,0],[49,1],[49,3],[56,1],[56,2],[56,3],[57,1],[57,1],[59,2],[60,1],[60,2],[60,2],[60,1],[39,1],[39,1],[39,1],[15,1],[15,1],[15,1],[15,1],[61,2],[61,2],[61,2],[61,1],[61,1],[68,3],[68,2],[68,2],[63,4],[74,0],[74,1],[74,3],[74,4],[74,6],[26,2],[26,4],[26,5],[26,7],[26,4],[26,1],[26,3],[26,6],[79,1],[79,3],[79,5],[78,0],[78,1],[78,3],[78,3],[25,3],[16,3],[16,3],[16,1],[16,2],[80,0],[80,1],[81,2],[81,4],[64,1],[64,1],[44,2],[62,2],[62,4],[86,1],[86,3],[86,4],[86,4],[86,6],[91,1],[91,1],[92,1],[92,3],[21,2],[21,3],[21,4],[21,5],[94,3],[11,2],[45,3],[100,2],[100,4],[100,2],[100,4],[22,2],[22,2],[22,2],[22,1],[104,2],[104,2],[23,2],[23,2],[23,2],[107,1],[107,1],[107,1],[108,2],[108,4],[108,4],[108,6],[111,2],[111,4],[113,2],[113,4],[113,4],[113,6],[106,3],[106,5],[106,3],[106,5],[106,4],[106,6],[106,5],[24,5],[24,7],[24,4],[24,6],[119,1],[119,2],[121,3],[121,4],[123,3],[123,3],[123,5],[123,3],[20,1],[20,3],[20,3],[20,3],[20,3],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,5]], performAction: function anonymous(yytext,yyleng,yylineno,yy) { var $$ = arguments[5],$0=arguments[5].length; @@ -133,316 +133,319 @@ case 61:this.$ = new yy.Param($$[$0-2+1-1], null, true); break; case 62:this.$ = new yy.Param($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 63:this.$ = new yy.Param($$[$0-1+1-1], null); +case 63:this.$ = $$[$0-1+1-1]; break; -case 64:this.$ = new yy.Param($$[$0-2+1-1], null, true); +case 64:this.$ = $$[$0-1+1-1]; break; -case 65:this.$ = new yy.Param($$[$0-3+1-1], $$[$0-3+3-1]); +case 65:this.$ = new yy.Splat($$[$0-2+1-1]); break; -case 66:this.$ = new yy.Splat($$[$0-2+1-1]); +case 66:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 67:this.$ = new yy.Value($$[$0-1+1-1]); +case 67:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); break; -case 68:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); +case 68:this.$ = new yy.Value($$[$0-2+1-1], [$$[$0-2+2-1]]); break; -case 69:this.$ = new yy.Value($$[$0-2+1-1], [$$[$0-2+2-1]]); +case 69:this.$ = $$[$0-1+1-1]; break; case 70:this.$ = $$[$0-1+1-1]; break; -case 71:this.$ = $$[$0-1+1-1]; +case 71:this.$ = new yy.Value($$[$0-1+1-1]); break; case 72:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 73:this.$ = new yy.Value($$[$0-1+1-1]); +case 73:this.$ = $$[$0-1+1-1]; break; -case 74:this.$ = $$[$0-1+1-1]; +case 74:this.$ = new yy.Value($$[$0-1+1-1]); break; case 75:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 76:this.$ = new yy.Value($$[$0-1+1-1]); +case 76:this.$ = $$[$0-1+1-1]; break; -case 77:this.$ = $$[$0-1+1-1]; +case 77:this.$ = new yy.Accessor($$[$0-2+2-1]); break; -case 78:this.$ = new yy.Accessor($$[$0-2+2-1]); +case 78:this.$ = new yy.Accessor($$[$0-2+2-1], 'soak'); break; -case 79:this.$ = new yy.Accessor($$[$0-2+2-1], 'soak'); +case 79:this.$ = new yy.Accessor($$[$0-2+2-1], 'proto'); break; -case 80:this.$ = new yy.Accessor($$[$0-2+2-1], 'proto'); +case 80:this.$ = new yy.Accessor(new yy.Literal('prototype')); break; -case 81:this.$ = new yy.Accessor(new yy.Literal('prototype')); +case 81:this.$ = $$[$0-1+1-1]; break; -case 82:this.$ = $$[$0-1+1-1]; +case 82:this.$ = new yy.Index($$[$0-3+2-1]); break; -case 83:this.$ = new yy.Index($$[$0-3+2-1]); -break; -case 84:this.$ = yy.extend($$[$0-2+2-1], { +case 83:this.$ = yy.extend($$[$0-2+2-1], { soak: true }); break; -case 85:this.$ = yy.extend($$[$0-2+2-1], { +case 84:this.$ = yy.extend($$[$0-2+2-1], { proto: true }); break; -case 86:this.$ = new yy.Obj($$[$0-4+2-1]); +case 85:this.$ = new yy.Obj($$[$0-4+2-1]); break; -case 87:this.$ = []; +case 86:this.$ = []; break; -case 88:this.$ = [$$[$0-1+1-1]]; +case 87:this.$ = [$$[$0-1+1-1]]; break; -case 89:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +case 88:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; -case 90:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); +case 89:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); break; -case 91:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); +case 90:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); break; -case 92:this.$ = new yy.Class($$[$0-2+2-1]); +case 91:this.$ = new yy.Class($$[$0-2+2-1]); break; -case 93:this.$ = new yy.Class($$[$0-4+2-1], $$[$0-4+4-1]); +case 92:this.$ = new yy.Class($$[$0-4+2-1], $$[$0-4+4-1]); break; -case 94:this.$ = new yy.Class($$[$0-5+2-1], null, $$[$0-5+4-1]); +case 93:this.$ = new yy.Class($$[$0-5+2-1], null, $$[$0-5+4-1]); break; -case 95:this.$ = new yy.Class($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); +case 94:this.$ = new yy.Class($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); break; -case 96:this.$ = new yy.Class(null, null, $$[$0-4+3-1]); +case 95:this.$ = new yy.Class(null, null, $$[$0-4+3-1]); break; -case 97:this.$ = new yy.Class(null, null, new yy.Expressions); +case 96:this.$ = new yy.Class(null, null, new yy.Expressions); break; -case 98:this.$ = new yy.Class(null, $$[$0-3+3-1], new yy.Expressions); +case 97:this.$ = new yy.Class(null, $$[$0-3+3-1], new yy.Expressions); break; -case 99:this.$ = new yy.Class(null, $$[$0-6+3-1], $$[$0-6+5-1]); +case 98:this.$ = new yy.Class(null, $$[$0-6+3-1], $$[$0-6+5-1]); break; -case 100:this.$ = $$[$0-1+1-1]; +case 99:this.$ = $$[$0-1+1-1]; break; -case 101:this.$ = new yy.Assign(new yy.Value($$[$0-3+1-1]), $$[$0-3+3-1], 'this'); +case 100:this.$ = new yy.Assign(new yy.Value($$[$0-3+1-1]), $$[$0-3+3-1], 'this'); break; -case 102:this.$ = new yy.Assign(new yy.Value($$[$0-5+1-1]), $$[$0-5+4-1], 'this'); +case 101:this.$ = new yy.Assign(new yy.Value($$[$0-5+1-1]), $$[$0-5+4-1], 'this'); break; -case 103:this.$ = []; +case 102:this.$ = []; break; -case 104:this.$ = [$$[$0-1+1-1]]; +case 103:this.$ = [$$[$0-1+1-1]]; break; -case 105:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +case 104:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; -case 106:this.$ = $$[$0-3+2-1]; +case 105:this.$ = $$[$0-3+2-1]; break; -case 107:this.$ = new yy.Extends($$[$0-3+1-1], $$[$0-3+3-1]); +case 106:this.$ = new yy.Extends($$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 107:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); break; case 108:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); break; -case 109:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); +case 109:this.$ = new yy.Call('super', [new yy.Splat(new yy.Literal('arguments'))]); break; -case 110:this.$ = new yy.Call('super', [new yy.Splat(new yy.Literal('arguments'))]); +case 110:this.$ = new yy.Call('super', $$[$0-2+2-1]); break; -case 111:this.$ = new yy.Call('super', $$[$0-2+2-1]); +case 111:this.$ = false; break; -case 112:this.$ = false; +case 112:this.$ = true; break; -case 113:this.$ = true; +case 113:this.$ = []; break; -case 114:this.$ = []; +case 114:this.$ = $$[$0-4+2-1]; break; -case 115:this.$ = $$[$0-4+2-1]; +case 115:this.$ = new yy.Value(new yy.Literal('this')); break; case 116:this.$ = new yy.Value(new yy.Literal('this')); break; -case 117:this.$ = new yy.Value(new yy.Literal('this')); +case 117:this.$ = new yy.Value(new yy.Literal('this'), [new yy.Accessor($$[$0-2+2-1])], 'this'); break; -case 118:this.$ = new yy.Value(new yy.Literal('this'), [new yy.Accessor($$[$0-2+2-1])], 'this'); +case 118:this.$ = new yy.Arr([]); break; -case 119:this.$ = new yy.Arr([]); +case 119:this.$ = new yy.Arr($$[$0-4+2-1]); break; -case 120:this.$ = new yy.Arr($$[$0-4+2-1]); +case 120:this.$ = [$$[$0-1+1-1]]; break; -case 121:this.$ = [$$[$0-1+1-1]]; +case 121:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; -case 122:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +case 122:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); break; -case 123:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); +case 123:this.$ = $$[$0-4+2-1]; break; -case 124:this.$ = $$[$0-4+2-1]; +case 124:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); break; -case 125:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); +case 125:this.$ = $$[$0-1+1-1]; break; case 126:this.$ = $$[$0-1+1-1]; break; case 127:this.$ = $$[$0-1+1-1]; break; -case 128:this.$ = $$[$0-1+1-1]; +case 128:this.$ = [].concat($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 129:this.$ = [].concat($$[$0-3+1-1], $$[$0-3+3-1]); +case 129:this.$ = new yy.Try($$[$0-2+2-1]); break; -case 130:this.$ = new yy.Try($$[$0-2+2-1]); +case 130:this.$ = new yy.Try($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); break; -case 131:this.$ = new yy.Try($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); +case 131:this.$ = new yy.Try($$[$0-4+2-1], null, null, $$[$0-4+4-1]); break; -case 132:this.$ = new yy.Try($$[$0-4+2-1], null, null, $$[$0-4+4-1]); +case 132:this.$ = new yy.Try($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); break; -case 133:this.$ = new yy.Try($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); +case 133:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; break; -case 134:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; +case 134:this.$ = new yy.Throw($$[$0-2+2-1]); break; -case 135:this.$ = new yy.Throw($$[$0-2+2-1]); +case 135:this.$ = new yy.Parens($$[$0-3+2-1]); break; -case 136:this.$ = new yy.Parens($$[$0-3+2-1]); +case 136:this.$ = new yy.While($$[$0-2+2-1]); break; -case 137:this.$ = new yy.While($$[$0-2+2-1]); -break; -case 138:this.$ = new yy.While($$[$0-4+2-1], { +case 137:this.$ = new yy.While($$[$0-4+2-1], { guard: $$[$0-4+4-1] }); break; -case 139:this.$ = new yy.While($$[$0-2+2-1], { +case 138:this.$ = new yy.While($$[$0-2+2-1], { invert: true }); break; -case 140:this.$ = new yy.While($$[$0-4+2-1], { +case 139:this.$ = new yy.While($$[$0-4+2-1], { invert: true, guard: $$[$0-4+4-1] }); break; -case 141:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); +case 140:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); +break; +case 141:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); break; case 142:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); break; -case 143:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); +case 143:this.$ = $$[$0-1+1-1]; break; -case 144:this.$ = $$[$0-1+1-1]; +case 144:this.$ = new yy.While(new yy.Literal('true')).addBody($$[$0-2+2-1]); break; -case 145:this.$ = new yy.While(new yy.Literal('true')).addBody($$[$0-2+2-1]); +case 145:this.$ = new yy.While(new yy.Literal('true')).addBody(yy.Expressions.wrap([$$[$0-2+2-1]])); break; -case 146:this.$ = new yy.While(new yy.Literal('true')).addBody(yy.Expressions.wrap([$$[$0-2+2-1]])); +case 146:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); break; case 147:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 148:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); +case 148:this.$ = new yy.For($$[$0-2+2-1], $$[$0-2+1-1]); break; -case 149:this.$ = new yy.For($$[$0-2+2-1], $$[$0-2+1-1]); +case 149:this.$ = $$[$0-1+1-1]; break; -case 150:this.$ = $$[$0-1+1-1]; +case 150:this.$ = new yy.Value($$[$0-1+1-1]); break; case 151:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 152:this.$ = new yy.Value($$[$0-1+1-1]); -break; -case 153:this.$ = { +case 152:this.$ = { source: $$[$0-2+2-1] }; break; -case 154:this.$ = { +case 153:this.$ = { source: $$[$0-4+2-1], guard: $$[$0-4+4-1] }; break; -case 155:this.$ = { +case 154:this.$ = { source: $$[$0-4+2-1], step: $$[$0-4+4-1] }; break; -case 156:this.$ = { +case 155:this.$ = { source: $$[$0-6+2-1], step: $$[$0-6+4-1], guard: $$[$0-6+6-1] }; break; -case 157:this.$ = { +case 156:this.$ = { object: true, source: $$[$0-2+2-1] }; break; -case 158:this.$ = { +case 157:this.$ = { object: true, source: $$[$0-4+2-1], guard: $$[$0-4+4-1] }; break; -case 159:this.$ = { +case 158:this.$ = { to: $$[$0-2+2-1] }; break; -case 160:this.$ = { +case 159:this.$ = { to: $$[$0-4+2-1], guard: $$[$0-4+4-1] }; break; -case 161:this.$ = { +case 160:this.$ = { to: $$[$0-4+2-1], step: $$[$0-4+4-1] }; break; -case 162:this.$ = { +case 161:this.$ = { to: $$[$0-6+2-1], step: $$[$0-6+4-1], guard: $$[$0-6+6-1] }; break; -case 163:this.$ = yy.extend($$[$0-3+3-1], { +case 162:this.$ = yy.extend($$[$0-3+3-1], { name: $$[$0-3+2-1] }); break; -case 164:this.$ = yy.extend($$[$0-5+5-1], { +case 163:this.$ = yy.extend($$[$0-5+5-1], { name: $$[$0-5+2-1], index: $$[$0-5+4-1] }); break; -case 165:this.$ = yy.extend($$[$0-3+3-1], { +case 164:this.$ = yy.extend($$[$0-3+3-1], { index: $$[$0-3+2-1] }); break; -case 166:this.$ = yy.extend($$[$0-5+5-1], { +case 165:this.$ = yy.extend($$[$0-5+5-1], { index: $$[$0-5+2-1], name: $$[$0-5+4-1] }); break; -case 167:this.$ = yy.extend($$[$0-4+4-1], { +case 166:this.$ = yy.extend($$[$0-4+4-1], { raw: true, index: $$[$0-4+3-1] }); break; -case 168:this.$ = yy.extend($$[$0-6+6-1], { +case 167:this.$ = yy.extend($$[$0-6+6-1], { raw: true, index: $$[$0-6+3-1], name: $$[$0-6+5-1] }); break; -case 169:this.$ = yy.extend($$[$0-5+5-1], { +case 168:this.$ = yy.extend($$[$0-5+5-1], { index: $$[$0-5+2-1], from: $$[$0-5+4-1] }); break; -case 170:this.$ = new yy.Switch($$[$0-5+2-1], $$[$0-5+4-1]); +case 169:this.$ = new yy.Switch($$[$0-5+2-1], $$[$0-5+4-1]); break; -case 171:this.$ = new yy.Switch($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); +case 170:this.$ = new yy.Switch($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); break; -case 172:this.$ = new yy.Switch(null, $$[$0-4+3-1]); +case 171:this.$ = new yy.Switch(null, $$[$0-4+3-1]); break; -case 173:this.$ = new yy.Switch(null, $$[$0-6+3-1], $$[$0-6+5-1]); +case 172:this.$ = new yy.Switch(null, $$[$0-6+3-1], $$[$0-6+5-1]); break; -case 174:this.$ = $$[$0-1+1-1]; +case 173:this.$ = $$[$0-1+1-1]; break; -case 175:this.$ = $$[$0-2+1-1].concat($$[$0-2+2-1]); +case 174:this.$ = $$[$0-2+1-1].concat($$[$0-2+2-1]); break; -case 176:this.$ = [[$$[$0-3+2-1], $$[$0-3+3-1]]]; +case 175:this.$ = [[$$[$0-3+2-1], $$[$0-3+3-1]]]; break; -case 177:this.$ = [[$$[$0-4+2-1], $$[$0-4+3-1]]]; +case 176:this.$ = [[$$[$0-4+2-1], $$[$0-4+3-1]]]; break; -case 178:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1]); +case 177:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1]); break; -case 179:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1], { +case 178:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1], { invert: true }); break; -case 180:this.$ = $$[$0-5+1-1].addElse(new yy.If($$[$0-5+4-1], $$[$0-5+5-1])); +case 179:this.$ = $$[$0-5+1-1].addElse(new yy.If($$[$0-5+4-1], $$[$0-5+5-1])); break; -case 181:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); +case 180:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); break; -case 182:this.$ = $$[$0-1+1-1]; +case 181:this.$ = $$[$0-1+1-1]; +break; +case 182:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true + }); break; case 183:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { statement: true }); break; case 184:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { - statement: true + statement: true, + invert: true }); break; case 185:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { @@ -450,30 +453,27 @@ case 185:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { invert: true }); break; -case 186:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { - statement: true, - invert: true - }); +case 186:this.$ = new yy.Op($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 187:this.$ = new yy.Op($$[$0-2+1-1], $$[$0-2+2-1]); +case 187:this.$ = new yy.Op('-', $$[$0-2+2-1]); break; -case 188:this.$ = new yy.Op('-', $$[$0-2+2-1]); +case 188:this.$ = new yy.Op('+', $$[$0-2+2-1]); break; -case 189:this.$ = new yy.Op('+', $$[$0-2+2-1]); +case 189:this.$ = new yy.Op('--', $$[$0-2+2-1]); break; -case 190:this.$ = new yy.Op('--', $$[$0-2+2-1]); +case 190:this.$ = new yy.Op('++', $$[$0-2+2-1]); break; -case 191:this.$ = new yy.Op('++', $$[$0-2+2-1]); +case 191:this.$ = new yy.Op('--', $$[$0-2+1-1], null, true); break; -case 192:this.$ = new yy.Op('--', $$[$0-2+1-1], null, true); +case 192:this.$ = new yy.Op('++', $$[$0-2+1-1], null, true); break; -case 193:this.$ = new yy.Op('++', $$[$0-2+1-1], null, true); +case 193:this.$ = new yy.Existence($$[$0-2+1-1]); break; -case 194:this.$ = new yy.Existence($$[$0-2+1-1]); +case 194:this.$ = new yy.Op('+', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 195:this.$ = new yy.Op('+', $$[$0-3+1-1], $$[$0-3+3-1]); +case 195:this.$ = new yy.Op('-', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 196:this.$ = new yy.Op('-', $$[$0-3+1-1], $$[$0-3+3-1]); +case 196:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; case 197:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; @@ -481,18 +481,16 @@ case 198:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; case 199:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 200:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); +case 200:this.$ = $$[$0-3+2-1].charAt(0) === '!' ? new yy.Op($$[$0-3+2-1].slice(1), $$[$0-3+1-1], $$[$0-3+3-1]).invert() : new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 201:this.$ = $$[$0-3+2-1].charAt(0) === '!' ? new yy.Op($$[$0-3+2-1].slice(1), $$[$0-3+1-1], $$[$0-3+3-1]).invert() : new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); +case 201:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); break; -case 202:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); -break; -case 203:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1], $$[$0-5+2-1]); +case 202:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1], $$[$0-5+2-1]); break; } }, -table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[3]},{"1":[2,2],"27":74,"47":[1,47]},{"1":[2,3],"4":[1,75]},{"4":[1,76]},{"1":[2,5],"4":[2,5],"29":[2,5]},{"5":77,"7":5,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[1,78],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,8],"4":[2,8],"29":[2,8],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,9],"4":[2,9],"29":[2,9],"99":93,"100":[1,65],"102":[1,66],"105":94,"114":[1,68],"125":[1,91],"126":[1,92]},{"1":[2,15],"4":[2,15],"28":[2,15],"29":[2,15],"50":[2,15],"55":[2,15],"57":[2,15],"60":96,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"69":[2,15],"70":[1,103],"71":[1,104],"74":[2,15],"79":95,"82":[1,97],"83":[2,112],"84":[2,15],"89":[2,15],"98":[2,15],"100":[2,15],"101":[2,15],"102":[2,15],"109":[2,15],"113":[2,15],"114":[2,15],"125":[2,15],"126":[2,15],"128":[2,15],"129":[2,15],"132":[2,15],"133":[2,15],"134":[2,15],"135":[2,15],"136":[2,15],"137":[2,15]},{"1":[2,16],"4":[2,16],"28":[2,16],"29":[2,16],"50":[2,16],"55":[2,16],"57":[2,16],"60":106,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"69":[2,16],"70":[1,103],"71":[1,104],"74":[2,16],"79":105,"82":[1,97],"83":[2,112],"84":[2,16],"89":[2,16],"98":[2,16],"100":[2,16],"101":[2,16],"102":[2,16],"109":[2,16],"113":[2,16],"114":[2,16],"125":[2,16],"126":[2,16],"128":[2,16],"129":[2,16],"132":[2,16],"133":[2,16],"134":[2,16],"135":[2,16],"136":[2,16],"137":[2,16]},{"1":[2,17],"4":[2,17],"28":[2,17],"29":[2,17],"50":[2,17],"55":[2,17],"57":[2,17],"69":[2,17],"74":[2,17],"84":[2,17],"89":[2,17],"98":[2,17],"100":[2,17],"101":[2,17],"102":[2,17],"109":[2,17],"113":[2,17],"114":[2,17],"125":[2,17],"126":[2,17],"128":[2,17],"129":[2,17],"132":[2,17],"133":[2,17],"134":[2,17],"135":[2,17],"136":[2,17],"137":[2,17]},{"1":[2,18],"4":[2,18],"28":[2,18],"29":[2,18],"50":[2,18],"55":[2,18],"57":[2,18],"69":[2,18],"74":[2,18],"84":[2,18],"89":[2,18],"98":[2,18],"100":[2,18],"101":[2,18],"102":[2,18],"109":[2,18],"113":[2,18],"114":[2,18],"125":[2,18],"126":[2,18],"128":[2,18],"129":[2,18],"132":[2,18],"133":[2,18],"134":[2,18],"135":[2,18],"136":[2,18],"137":[2,18]},{"1":[2,19],"4":[2,19],"28":[2,19],"29":[2,19],"50":[2,19],"55":[2,19],"57":[2,19],"69":[2,19],"74":[2,19],"84":[2,19],"89":[2,19],"98":[2,19],"100":[2,19],"101":[2,19],"102":[2,19],"109":[2,19],"113":[2,19],"114":[2,19],"125":[2,19],"126":[2,19],"128":[2,19],"129":[2,19],"132":[2,19],"133":[2,19],"134":[2,19],"135":[2,19],"136":[2,19],"137":[2,19]},{"1":[2,20],"4":[2,20],"28":[2,20],"29":[2,20],"50":[2,20],"55":[2,20],"57":[2,20],"69":[2,20],"74":[2,20],"84":[2,20],"89":[2,20],"98":[2,20],"100":[2,20],"101":[2,20],"102":[2,20],"109":[2,20],"113":[2,20],"114":[2,20],"125":[2,20],"126":[2,20],"128":[2,20],"129":[2,20],"132":[2,20],"133":[2,20],"134":[2,20],"135":[2,20],"136":[2,20],"137":[2,20]},{"1":[2,21],"4":[2,21],"28":[2,21],"29":[2,21],"50":[2,21],"55":[2,21],"57":[2,21],"69":[2,21],"74":[2,21],"84":[2,21],"89":[2,21],"98":[2,21],"100":[2,21],"101":[2,21],"102":[2,21],"109":[2,21],"113":[2,21],"114":[2,21],"125":[2,21],"126":[2,21],"128":[2,21],"129":[2,21],"132":[2,21],"133":[2,21],"134":[2,21],"135":[2,21],"136":[2,21],"137":[2,21]},{"1":[2,22],"4":[2,22],"28":[2,22],"29":[2,22],"50":[2,22],"55":[2,22],"57":[2,22],"69":[2,22],"74":[2,22],"84":[2,22],"89":[2,22],"98":[2,22],"100":[2,22],"101":[2,22],"102":[2,22],"109":[2,22],"113":[2,22],"114":[2,22],"125":[2,22],"126":[2,22],"128":[2,22],"129":[2,22],"132":[2,22],"133":[2,22],"134":[2,22],"135":[2,22],"136":[2,22],"137":[2,22]},{"1":[2,23],"4":[2,23],"28":[2,23],"29":[2,23],"50":[2,23],"55":[2,23],"57":[2,23],"69":[2,23],"74":[2,23],"84":[2,23],"89":[2,23],"98":[2,23],"100":[2,23],"101":[2,23],"102":[2,23],"109":[2,23],"113":[2,23],"114":[2,23],"125":[2,23],"126":[2,23],"128":[2,23],"129":[2,23],"132":[2,23],"133":[2,23],"134":[2,23],"135":[2,23],"136":[2,23],"137":[2,23]},{"1":[2,24],"4":[2,24],"28":[2,24],"29":[2,24],"50":[2,24],"55":[2,24],"57":[2,24],"69":[2,24],"74":[2,24],"84":[2,24],"89":[2,24],"98":[2,24],"100":[2,24],"101":[2,24],"102":[2,24],"109":[2,24],"113":[2,24],"114":[2,24],"125":[2,24],"126":[2,24],"128":[2,24],"129":[2,24],"132":[2,24],"133":[2,24],"134":[2,24],"135":[2,24],"136":[2,24],"137":[2,24]},{"1":[2,25],"4":[2,25],"28":[2,25],"29":[2,25],"50":[2,25],"55":[2,25],"57":[2,25],"69":[2,25],"74":[2,25],"84":[2,25],"89":[2,25],"98":[2,25],"100":[2,25],"101":[2,25],"102":[2,25],"109":[2,25],"113":[2,25],"114":[2,25],"125":[2,25],"126":[2,25],"128":[2,25],"129":[2,25],"132":[2,25],"133":[2,25],"134":[2,25],"135":[2,25],"136":[2,25],"137":[2,25]},{"1":[2,26],"4":[2,26],"28":[2,26],"29":[2,26],"50":[2,26],"55":[2,26],"57":[2,26],"69":[2,26],"74":[2,26],"84":[2,26],"89":[2,26],"98":[2,26],"100":[2,26],"101":[2,26],"102":[2,26],"109":[2,26],"113":[2,26],"114":[2,26],"125":[2,26],"126":[2,26],"128":[2,26],"129":[2,26],"132":[2,26],"133":[2,26],"134":[2,26],"135":[2,26],"136":[2,26],"137":[2,26]},{"1":[2,27],"4":[2,27],"28":[2,27],"29":[2,27],"50":[2,27],"55":[2,27],"57":[2,27],"69":[2,27],"74":[2,27],"84":[2,27],"89":[2,27],"98":[2,27],"100":[2,27],"101":[2,27],"102":[2,27],"109":[2,27],"113":[2,27],"114":[2,27],"125":[2,27],"126":[2,27],"128":[2,27],"129":[2,27],"132":[2,27],"133":[2,27],"134":[2,27],"135":[2,27],"136":[2,27],"137":[2,27]},{"1":[2,10],"4":[2,10],"29":[2,10],"100":[2,10],"102":[2,10],"114":[2,10],"125":[2,10],"126":[2,10]},{"1":[2,11],"4":[2,11],"29":[2,11],"100":[2,11],"102":[2,11],"114":[2,11],"125":[2,11],"126":[2,11]},{"1":[2,12],"4":[2,12],"29":[2,12],"100":[2,12],"102":[2,12],"114":[2,12],"125":[2,12],"126":[2,12]},{"1":[2,13],"4":[2,13],"29":[2,13],"100":[2,13],"102":[2,13],"114":[2,13],"125":[2,13],"126":[2,13]},{"1":[2,14],"4":[2,14],"29":[2,14],"100":[2,14],"102":[2,14],"114":[2,14],"125":[2,14],"126":[2,14]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"40":[1,107],"50":[2,74],"55":[2,74],"57":[2,74],"64":[2,74],"65":[2,74],"66":[2,74],"68":[2,74],"69":[2,74],"70":[2,74],"71":[2,74],"74":[2,74],"82":[2,74],"83":[2,74],"84":[2,74],"89":[2,74],"98":[2,74],"100":[2,74],"101":[2,74],"102":[2,74],"109":[2,74],"113":[2,74],"114":[2,74],"125":[2,74],"126":[2,74],"128":[2,74],"129":[2,74],"132":[2,74],"133":[2,74],"134":[2,74],"135":[2,74],"136":[2,74],"137":[2,74]},{"1":[2,75],"4":[2,75],"28":[2,75],"29":[2,75],"50":[2,75],"55":[2,75],"57":[2,75],"64":[2,75],"65":[2,75],"66":[2,75],"68":[2,75],"69":[2,75],"70":[2,75],"71":[2,75],"74":[2,75],"82":[2,75],"83":[2,75],"84":[2,75],"89":[2,75],"98":[2,75],"100":[2,75],"101":[2,75],"102":[2,75],"109":[2,75],"113":[2,75],"114":[2,75],"125":[2,75],"126":[2,75],"128":[2,75],"129":[2,75],"132":[2,75],"133":[2,75],"134":[2,75],"135":[2,75],"136":[2,75],"137":[2,75]},{"1":[2,76],"4":[2,76],"28":[2,76],"29":[2,76],"50":[2,76],"55":[2,76],"57":[2,76],"64":[2,76],"65":[2,76],"66":[2,76],"68":[2,76],"69":[2,76],"70":[2,76],"71":[2,76],"74":[2,76],"82":[2,76],"83":[2,76],"84":[2,76],"89":[2,76],"98":[2,76],"100":[2,76],"101":[2,76],"102":[2,76],"109":[2,76],"113":[2,76],"114":[2,76],"125":[2,76],"126":[2,76],"128":[2,76],"129":[2,76],"132":[2,76],"133":[2,76],"134":[2,76],"135":[2,76],"136":[2,76],"137":[2,76]},{"1":[2,77],"4":[2,77],"28":[2,77],"29":[2,77],"50":[2,77],"55":[2,77],"57":[2,77],"64":[2,77],"65":[2,77],"66":[2,77],"68":[2,77],"69":[2,77],"70":[2,77],"71":[2,77],"74":[2,77],"82":[2,77],"83":[2,77],"84":[2,77],"89":[2,77],"98":[2,77],"100":[2,77],"101":[2,77],"102":[2,77],"109":[2,77],"113":[2,77],"114":[2,77],"125":[2,77],"126":[2,77],"128":[2,77],"129":[2,77],"132":[2,77],"133":[2,77],"134":[2,77],"135":[2,77],"136":[2,77],"137":[2,77]},{"1":[2,110],"4":[2,110],"28":[2,110],"29":[2,110],"50":[2,110],"55":[2,110],"57":[2,110],"64":[2,110],"65":[2,110],"66":[2,110],"68":[2,110],"69":[2,110],"70":[2,110],"71":[2,110],"74":[2,110],"80":108,"82":[2,110],"83":[1,109],"84":[2,110],"89":[2,110],"98":[2,110],"100":[2,110],"101":[2,110],"102":[2,110],"109":[2,110],"113":[2,110],"114":[2,110],"125":[2,110],"126":[2,110],"128":[2,110],"129":[2,110],"132":[2,110],"133":[2,110],"134":[2,110],"135":[2,110],"136":[2,110],"137":[2,110]},{"30":112,"31":[1,73],"44":113,"49":110,"50":[2,57],"55":[2,57],"56":111,"87":[1,114]},{"4":[1,116],"6":115,"28":[1,6]},{"8":117,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":119,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":120,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"15":122,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":121,"61":50,"62":51,"63":30,"72":[1,70],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"97":[1,56]},{"15":122,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":125,"61":50,"62":51,"63":30,"72":[1,70],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"97":[1,56]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"40":[2,71],"50":[2,71],"55":[2,71],"57":[2,71],"64":[2,71],"65":[2,71],"66":[2,71],"68":[2,71],"69":[2,71],"70":[2,71],"71":[2,71],"74":[2,71],"76":[1,129],"82":[2,71],"83":[2,71],"84":[2,71],"89":[2,71],"98":[2,71],"100":[2,71],"101":[2,71],"102":[2,71],"109":[2,71],"113":[2,71],"114":[2,71],"125":[2,71],"126":[2,71],"128":[2,71],"129":[2,71],"130":[1,126],"131":[1,127],"132":[2,71],"133":[2,71],"134":[2,71],"135":[2,71],"136":[2,71],"137":[2,71],"138":[1,128]},{"1":[2,182],"4":[2,182],"28":[2,182],"29":[2,182],"50":[2,182],"55":[2,182],"57":[2,182],"69":[2,182],"74":[2,182],"84":[2,182],"89":[2,182],"98":[2,182],"100":[2,182],"101":[2,182],"102":[2,182],"109":[2,182],"113":[2,182],"114":[2,182],"119":[1,130],"125":[2,182],"126":[2,182],"128":[2,182],"129":[2,182],"132":[2,182],"133":[2,182],"134":[2,182],"135":[2,182],"136":[2,182],"137":[2,182]},{"4":[1,116],"6":131,"28":[1,6]},{"4":[1,116],"6":132,"28":[1,6]},{"1":[2,144],"4":[2,144],"28":[2,144],"29":[2,144],"50":[2,144],"55":[2,144],"57":[2,144],"69":[2,144],"74":[2,144],"84":[2,144],"89":[2,144],"98":[2,144],"100":[2,144],"101":[2,144],"102":[2,144],"109":[2,144],"113":[2,144],"114":[2,144],"125":[2,144],"126":[2,144],"128":[2,144],"129":[2,144],"132":[2,144],"133":[2,144],"134":[2,144],"135":[2,144],"136":[2,144],"137":[2,144]},{"4":[1,116],"6":133,"28":[1,6]},{"8":134,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,135],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,97],"4":[2,97],"15":122,"16":123,"28":[1,137],"29":[2,97],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"50":[2,97],"55":[2,97],"57":[2,97],"59":136,"61":50,"62":51,"63":30,"69":[2,97],"72":[1,70],"74":[2,97],"76":[1,138],"81":[1,31],"84":[2,97],"86":[1,57],"87":[1,58],"88":[1,69],"89":[2,97],"97":[1,56],"98":[2,97],"100":[2,97],"101":[2,97],"102":[2,97],"109":[2,97],"113":[2,97],"114":[2,97],"125":[2,97],"126":[2,97],"128":[2,97],"129":[2,97],"132":[2,97],"133":[2,97],"134":[2,97],"135":[2,97],"136":[2,97],"137":[2,97]},{"1":[2,50],"4":[2,50],"28":[2,50],"29":[2,50],"50":[2,50],"55":[2,50],"57":[2,50],"69":[2,50],"74":[2,50],"84":[2,50],"89":[2,50],"94":[2,50],"95":[2,50],"98":[2,50],"100":[2,50],"101":[2,50],"102":[2,50],"109":[2,50],"113":[2,50],"114":[2,50],"119":[2,50],"121":[2,50],"125":[2,50],"126":[2,50],"128":[2,50],"129":[2,50],"132":[2,50],"133":[2,50],"134":[2,50],"135":[2,50],"136":[2,50],"137":[2,50]},{"1":[2,49],"4":[2,49],"8":139,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[2,49],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[2,49],"102":[2,49],"103":43,"104":[1,67],"105":44,"114":[2,49],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"125":[2,49],"126":[2,49],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":140,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"40":[2,72],"50":[2,72],"55":[2,72],"57":[2,72],"64":[2,72],"65":[2,72],"66":[2,72],"68":[2,72],"69":[2,72],"70":[2,72],"71":[2,72],"74":[2,72],"82":[2,72],"83":[2,72],"84":[2,72],"89":[2,72],"98":[2,72],"100":[2,72],"101":[2,72],"102":[2,72],"109":[2,72],"113":[2,72],"114":[2,72],"125":[2,72],"126":[2,72],"128":[2,72],"129":[2,72],"132":[2,72],"133":[2,72],"134":[2,72],"135":[2,72],"136":[2,72],"137":[2,72]},{"1":[2,73],"4":[2,73],"28":[2,73],"29":[2,73],"40":[2,73],"50":[2,73],"55":[2,73],"57":[2,73],"64":[2,73],"65":[2,73],"66":[2,73],"68":[2,73],"69":[2,73],"70":[2,73],"71":[2,73],"74":[2,73],"82":[2,73],"83":[2,73],"84":[2,73],"89":[2,73],"98":[2,73],"100":[2,73],"101":[2,73],"102":[2,73],"109":[2,73],"113":[2,73],"114":[2,73],"125":[2,73],"126":[2,73],"128":[2,73],"129":[2,73],"132":[2,73],"133":[2,73],"134":[2,73],"135":[2,73],"136":[2,73],"137":[2,73]},{"1":[2,34],"4":[2,34],"28":[2,34],"29":[2,34],"50":[2,34],"55":[2,34],"57":[2,34],"64":[2,34],"65":[2,34],"66":[2,34],"68":[2,34],"69":[2,34],"70":[2,34],"71":[2,34],"74":[2,34],"82":[2,34],"83":[2,34],"84":[2,34],"89":[2,34],"98":[2,34],"100":[2,34],"101":[2,34],"102":[2,34],"109":[2,34],"113":[2,34],"114":[2,34],"125":[2,34],"126":[2,34],"128":[2,34],"129":[2,34],"132":[2,34],"133":[2,34],"134":[2,34],"135":[2,34],"136":[2,34],"137":[2,34]},{"1":[2,35],"4":[2,35],"28":[2,35],"29":[2,35],"50":[2,35],"55":[2,35],"57":[2,35],"64":[2,35],"65":[2,35],"66":[2,35],"68":[2,35],"69":[2,35],"70":[2,35],"71":[2,35],"74":[2,35],"82":[2,35],"83":[2,35],"84":[2,35],"89":[2,35],"98":[2,35],"100":[2,35],"101":[2,35],"102":[2,35],"109":[2,35],"113":[2,35],"114":[2,35],"125":[2,35],"126":[2,35],"128":[2,35],"129":[2,35],"132":[2,35],"133":[2,35],"134":[2,35],"135":[2,35],"136":[2,35],"137":[2,35]},{"1":[2,36],"4":[2,36],"28":[2,36],"29":[2,36],"50":[2,36],"55":[2,36],"57":[2,36],"64":[2,36],"65":[2,36],"66":[2,36],"68":[2,36],"69":[2,36],"70":[2,36],"71":[2,36],"74":[2,36],"82":[2,36],"83":[2,36],"84":[2,36],"89":[2,36],"98":[2,36],"100":[2,36],"101":[2,36],"102":[2,36],"109":[2,36],"113":[2,36],"114":[2,36],"125":[2,36],"126":[2,36],"128":[2,36],"129":[2,36],"132":[2,36],"133":[2,36],"134":[2,36],"135":[2,36],"136":[2,36],"137":[2,36]},{"1":[2,37],"4":[2,37],"28":[2,37],"29":[2,37],"50":[2,37],"55":[2,37],"57":[2,37],"64":[2,37],"65":[2,37],"66":[2,37],"68":[2,37],"69":[2,37],"70":[2,37],"71":[2,37],"74":[2,37],"82":[2,37],"83":[2,37],"84":[2,37],"89":[2,37],"98":[2,37],"100":[2,37],"101":[2,37],"102":[2,37],"109":[2,37],"113":[2,37],"114":[2,37],"125":[2,37],"126":[2,37],"128":[2,37],"129":[2,37],"132":[2,37],"133":[2,37],"134":[2,37],"135":[2,37],"136":[2,37],"137":[2,37]},{"8":141,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,116],"4":[2,116],"28":[2,116],"29":[2,116],"50":[2,116],"55":[2,116],"57":[2,116],"64":[2,116],"65":[2,116],"66":[2,116],"68":[2,116],"69":[2,116],"70":[2,116],"71":[2,116],"74":[2,116],"82":[2,116],"83":[2,116],"84":[2,116],"89":[2,116],"98":[2,116],"100":[2,116],"101":[2,116],"102":[2,116],"109":[2,116],"113":[2,116],"114":[2,116],"125":[2,116],"126":[2,116],"128":[2,116],"129":[2,116],"132":[2,116],"133":[2,116],"134":[2,116],"135":[2,116],"136":[2,116],"137":[2,116]},{"1":[2,117],"4":[2,117],"28":[2,117],"29":[2,117],"30":142,"31":[1,73],"50":[2,117],"55":[2,117],"57":[2,117],"64":[2,117],"65":[2,117],"66":[2,117],"68":[2,117],"69":[2,117],"70":[2,117],"71":[2,117],"74":[2,117],"82":[2,117],"83":[2,117],"84":[2,117],"89":[2,117],"98":[2,117],"100":[2,117],"101":[2,117],"102":[2,117],"109":[2,117],"113":[2,117],"114":[2,117],"125":[2,117],"126":[2,117],"128":[2,117],"129":[2,117],"132":[2,117],"133":[2,117],"134":[2,117],"135":[2,117],"136":[2,117],"137":[2,117]},{"4":[2,53],"28":[2,53]},{"4":[2,54],"28":[2,54]},{"1":[2,67],"4":[2,67],"28":[2,67],"29":[2,67],"40":[2,67],"50":[2,67],"55":[2,67],"57":[2,67],"64":[2,67],"65":[2,67],"66":[2,67],"68":[2,67],"69":[2,67],"70":[2,67],"71":[2,67],"74":[2,67],"76":[2,67],"82":[2,67],"83":[2,67],"84":[2,67],"89":[2,67],"98":[2,67],"100":[2,67],"101":[2,67],"102":[2,67],"109":[2,67],"113":[2,67],"114":[2,67],"125":[2,67],"126":[2,67],"128":[2,67],"129":[2,67],"130":[2,67],"131":[2,67],"132":[2,67],"133":[2,67],"134":[2,67],"135":[2,67],"136":[2,67],"137":[2,67],"138":[2,67]},{"1":[2,70],"4":[2,70],"28":[2,70],"29":[2,70],"40":[2,70],"50":[2,70],"55":[2,70],"57":[2,70],"64":[2,70],"65":[2,70],"66":[2,70],"68":[2,70],"69":[2,70],"70":[2,70],"71":[2,70],"74":[2,70],"76":[2,70],"82":[2,70],"83":[2,70],"84":[2,70],"89":[2,70],"98":[2,70],"100":[2,70],"101":[2,70],"102":[2,70],"109":[2,70],"113":[2,70],"114":[2,70],"125":[2,70],"126":[2,70],"128":[2,70],"129":[2,70],"130":[2,70],"131":[2,70],"132":[2,70],"133":[2,70],"134":[2,70],"135":[2,70],"136":[2,70],"137":[2,70],"138":[2,70]},{"8":143,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":144,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":145,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":146,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[1,116],"6":147,"8":148,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"30":150,"31":[1,73],"61":152,"62":153,"72":[1,70],"88":[1,69],"106":149,"115":[1,151]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,157],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"58":159,"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"85":155,"86":[1,57],"87":[1,58],"88":[1,69],"89":[1,154],"90":156,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,87],"27":164,"28":[2,87],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":161,"42":162,"44":163,"45":167,"47":[1,47],"55":[2,87],"73":160,"74":[2,87],"87":[1,114],"97":[1,56]},{"1":[2,32],"4":[2,32],"28":[2,32],"29":[2,32],"43":[2,32],"50":[2,32],"55":[2,32],"57":[2,32],"64":[2,32],"65":[2,32],"66":[2,32],"68":[2,32],"69":[2,32],"70":[2,32],"71":[2,32],"74":[2,32],"82":[2,32],"83":[2,32],"84":[2,32],"89":[2,32],"98":[2,32],"100":[2,32],"101":[2,32],"102":[2,32],"109":[2,32],"113":[2,32],"114":[2,32],"125":[2,32],"126":[2,32],"128":[2,32],"129":[2,32],"132":[2,32],"133":[2,32],"134":[2,32],"135":[2,32],"136":[2,32],"137":[2,32]},{"1":[2,33],"4":[2,33],"28":[2,33],"29":[2,33],"43":[2,33],"50":[2,33],"55":[2,33],"57":[2,33],"64":[2,33],"65":[2,33],"66":[2,33],"68":[2,33],"69":[2,33],"70":[2,33],"71":[2,33],"74":[2,33],"82":[2,33],"83":[2,33],"84":[2,33],"89":[2,33],"98":[2,33],"100":[2,33],"101":[2,33],"102":[2,33],"109":[2,33],"113":[2,33],"114":[2,33],"125":[2,33],"126":[2,33],"128":[2,33],"129":[2,33],"132":[2,33],"133":[2,33],"134":[2,33],"135":[2,33],"136":[2,33],"137":[2,33]},{"1":[2,31],"4":[2,31],"28":[2,31],"29":[2,31],"40":[2,31],"43":[2,31],"50":[2,31],"55":[2,31],"57":[2,31],"64":[2,31],"65":[2,31],"66":[2,31],"68":[2,31],"69":[2,31],"70":[2,31],"71":[2,31],"74":[2,31],"76":[2,31],"82":[2,31],"83":[2,31],"84":[2,31],"89":[2,31],"98":[2,31],"100":[2,31],"101":[2,31],"102":[2,31],"108":[2,31],"109":[2,31],"111":[2,31],"113":[2,31],"114":[2,31],"116":[2,31],"125":[2,31],"126":[2,31],"128":[2,31],"129":[2,31],"130":[2,31],"131":[2,31],"132":[2,31],"133":[2,31],"134":[2,31],"135":[2,31],"136":[2,31],"137":[2,31],"138":[2,31]},{"1":[2,30],"4":[2,30],"28":[2,30],"29":[2,30],"50":[2,30],"55":[2,30],"57":[2,30],"69":[2,30],"74":[2,30],"84":[2,30],"89":[2,30],"94":[2,30],"95":[2,30],"98":[2,30],"100":[2,30],"101":[2,30],"102":[2,30],"109":[2,30],"113":[2,30],"114":[2,30],"119":[2,30],"121":[2,30],"125":[2,30],"126":[2,30],"128":[2,30],"129":[2,30],"132":[2,30],"133":[2,30],"134":[2,30],"135":[2,30],"136":[2,30],"137":[2,30]},{"1":[2,7],"4":[2,7],"7":168,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[2,7],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,4]},{"4":[1,75],"29":[1,169]},{"1":[2,29],"4":[2,29],"28":[2,29],"29":[2,29],"50":[2,29],"55":[2,29],"57":[2,29],"69":[2,29],"74":[2,29],"84":[2,29],"89":[2,29],"94":[2,29],"95":[2,29],"98":[2,29],"100":[2,29],"101":[2,29],"102":[2,29],"109":[2,29],"113":[2,29],"114":[2,29],"119":[2,29],"121":[2,29],"125":[2,29],"126":[2,29],"128":[2,29],"129":[2,29],"132":[2,29],"133":[2,29],"134":[2,29],"135":[2,29],"136":[2,29],"137":[2,29]},{"1":[2,194],"4":[2,194],"28":[2,194],"29":[2,194],"50":[2,194],"55":[2,194],"57":[2,194],"69":[2,194],"74":[2,194],"84":[2,194],"89":[2,194],"98":[2,194],"100":[2,194],"101":[2,194],"102":[2,194],"109":[2,194],"113":[2,194],"114":[2,194],"125":[2,194],"126":[2,194],"128":[2,194],"129":[2,194],"132":[2,194],"133":[2,194],"134":[2,194],"135":[2,194],"136":[2,194],"137":[2,194]},{"8":170,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":171,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":172,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":173,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":174,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":175,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":176,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":177,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":178,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,143],"4":[2,143],"28":[2,143],"29":[2,143],"50":[2,143],"55":[2,143],"57":[2,143],"69":[2,143],"74":[2,143],"84":[2,143],"89":[2,143],"98":[2,143],"100":[2,143],"101":[2,143],"102":[2,143],"109":[2,143],"113":[2,143],"114":[2,143],"125":[2,143],"126":[2,143],"128":[2,143],"129":[2,143],"132":[2,143],"133":[2,143],"134":[2,143],"135":[2,143],"136":[2,143],"137":[2,143]},{"1":[2,148],"4":[2,148],"28":[2,148],"29":[2,148],"50":[2,148],"55":[2,148],"57":[2,148],"69":[2,148],"74":[2,148],"84":[2,148],"89":[2,148],"98":[2,148],"100":[2,148],"101":[2,148],"102":[2,148],"109":[2,148],"113":[2,148],"114":[2,148],"125":[2,148],"126":[2,148],"128":[2,148],"129":[2,148],"132":[2,148],"133":[2,148],"134":[2,148],"135":[2,148],"136":[2,148],"137":[2,148]},{"8":179,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":180,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,142],"4":[2,142],"28":[2,142],"29":[2,142],"50":[2,142],"55":[2,142],"57":[2,142],"69":[2,142],"74":[2,142],"84":[2,142],"89":[2,142],"98":[2,142],"100":[2,142],"101":[2,142],"102":[2,142],"109":[2,142],"113":[2,142],"114":[2,142],"125":[2,142],"126":[2,142],"128":[2,142],"129":[2,142],"132":[2,142],"133":[2,142],"134":[2,142],"135":[2,142],"136":[2,142],"137":[2,142]},{"1":[2,147],"4":[2,147],"28":[2,147],"29":[2,147],"50":[2,147],"55":[2,147],"57":[2,147],"69":[2,147],"74":[2,147],"84":[2,147],"89":[2,147],"98":[2,147],"100":[2,147],"101":[2,147],"102":[2,147],"109":[2,147],"113":[2,147],"114":[2,147],"125":[2,147],"126":[2,147],"128":[2,147],"129":[2,147],"132":[2,147],"133":[2,147],"134":[2,147],"135":[2,147],"136":[2,147],"137":[2,147]},{"80":181,"83":[1,109]},{"1":[2,68],"4":[2,68],"28":[2,68],"29":[2,68],"40":[2,68],"50":[2,68],"55":[2,68],"57":[2,68],"64":[2,68],"65":[2,68],"66":[2,68],"68":[2,68],"69":[2,68],"70":[2,68],"71":[2,68],"74":[2,68],"76":[2,68],"82":[2,68],"83":[2,68],"84":[2,68],"89":[2,68],"98":[2,68],"100":[2,68],"101":[2,68],"102":[2,68],"109":[2,68],"113":[2,68],"114":[2,68],"125":[2,68],"126":[2,68],"128":[2,68],"129":[2,68],"130":[2,68],"131":[2,68],"132":[2,68],"133":[2,68],"134":[2,68],"135":[2,68],"136":[2,68],"137":[2,68],"138":[2,68]},{"83":[2,113]},{"30":182,"31":[1,73]},{"30":183,"31":[1,73]},{"1":[2,81],"4":[2,81],"28":[2,81],"29":[2,81],"30":184,"31":[1,73],"40":[2,81],"50":[2,81],"55":[2,81],"57":[2,81],"64":[2,81],"65":[2,81],"66":[2,81],"68":[2,81],"69":[2,81],"70":[2,81],"71":[2,81],"74":[2,81],"76":[2,81],"82":[2,81],"83":[2,81],"84":[2,81],"89":[2,81],"98":[2,81],"100":[2,81],"101":[2,81],"102":[2,81],"109":[2,81],"113":[2,81],"114":[2,81],"125":[2,81],"126":[2,81],"128":[2,81],"129":[2,81],"130":[2,81],"131":[2,81],"132":[2,81],"133":[2,81],"134":[2,81],"135":[2,81],"136":[2,81],"137":[2,81],"138":[2,81]},{"1":[2,82],"4":[2,82],"28":[2,82],"29":[2,82],"40":[2,82],"50":[2,82],"55":[2,82],"57":[2,82],"64":[2,82],"65":[2,82],"66":[2,82],"68":[2,82],"69":[2,82],"70":[2,82],"71":[2,82],"74":[2,82],"76":[2,82],"82":[2,82],"83":[2,82],"84":[2,82],"89":[2,82],"98":[2,82],"100":[2,82],"101":[2,82],"102":[2,82],"109":[2,82],"113":[2,82],"114":[2,82],"125":[2,82],"126":[2,82],"128":[2,82],"129":[2,82],"130":[2,82],"131":[2,82],"132":[2,82],"133":[2,82],"134":[2,82],"135":[2,82],"136":[2,82],"137":[2,82],"138":[2,82]},{"8":185,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"67":186,"68":[1,102],"70":[1,103],"71":[1,104]},{"67":187,"68":[1,102],"70":[1,103],"71":[1,104]},{"80":188,"83":[1,109]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"40":[2,69],"50":[2,69],"55":[2,69],"57":[2,69],"64":[2,69],"65":[2,69],"66":[2,69],"68":[2,69],"69":[2,69],"70":[2,69],"71":[2,69],"74":[2,69],"76":[2,69],"82":[2,69],"83":[2,69],"84":[2,69],"89":[2,69],"98":[2,69],"100":[2,69],"101":[2,69],"102":[2,69],"109":[2,69],"113":[2,69],"114":[2,69],"125":[2,69],"126":[2,69],"128":[2,69],"129":[2,69],"130":[2,69],"131":[2,69],"132":[2,69],"133":[2,69],"134":[2,69],"135":[2,69],"136":[2,69],"137":[2,69],"138":[2,69]},{"8":189,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,190],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,111],"4":[2,111],"28":[2,111],"29":[2,111],"50":[2,111],"55":[2,111],"57":[2,111],"64":[2,111],"65":[2,111],"66":[2,111],"68":[2,111],"69":[2,111],"70":[2,111],"71":[2,111],"74":[2,111],"82":[2,111],"83":[2,111],"84":[2,111],"89":[2,111],"98":[2,111],"100":[2,111],"101":[2,111],"102":[2,111],"109":[2,111],"113":[2,111],"114":[2,111],"125":[2,111],"126":[2,111],"128":[2,111],"129":[2,111],"132":[2,111],"133":[2,111],"134":[2,111],"135":[2,111],"136":[2,111],"137":[2,111]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,157],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"58":159,"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"84":[1,191],"85":192,"86":[1,57],"87":[1,58],"88":[1,69],"90":156,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"50":[1,193],"55":[1,194]},{"50":[2,58],"55":[2,58]},{"40":[1,196],"50":[2,60],"55":[2,60],"57":[1,195]},{"40":[1,198],"50":[2,63],"55":[2,63],"57":[1,197]},{"30":142,"31":[1,73]},{"1":[2,52],"4":[2,52],"28":[2,52],"29":[2,52],"50":[2,52],"55":[2,52],"57":[2,52],"69":[2,52],"74":[2,52],"84":[2,52],"89":[2,52],"98":[2,52],"100":[2,52],"101":[2,52],"102":[2,52],"109":[2,52],"113":[2,52],"114":[2,52],"125":[2,52],"126":[2,52],"128":[2,52],"129":[2,52],"132":[2,52],"133":[2,52],"134":[2,52],"135":[2,52],"136":[2,52],"137":[2,52]},{"27":74,"47":[1,47]},{"1":[2,187],"4":[2,187],"28":[2,187],"29":[2,187],"50":[2,187],"55":[2,187],"57":[2,187],"69":[2,187],"74":[2,187],"84":[2,187],"89":[2,187],"98":[2,187],"99":89,"100":[2,187],"101":[2,187],"102":[2,187],"105":90,"109":[2,187],"113":[2,187],"114":[2,187],"125":[2,187],"126":[2,187],"128":[2,187],"129":[2,187],"132":[1,79],"133":[2,187],"134":[2,187],"135":[2,187],"136":[2,187],"137":[2,187]},{"99":93,"100":[1,65],"102":[1,66],"105":94,"114":[1,68],"125":[1,91],"126":[1,92]},{"1":[2,188],"4":[2,188],"28":[2,188],"29":[2,188],"50":[2,188],"55":[2,188],"57":[2,188],"69":[2,188],"74":[2,188],"84":[2,188],"89":[2,188],"98":[2,188],"99":89,"100":[2,188],"101":[2,188],"102":[2,188],"105":90,"109":[2,188],"113":[2,188],"114":[2,188],"125":[2,188],"126":[2,188],"128":[2,188],"129":[2,188],"132":[1,79],"133":[2,188],"134":[2,188],"135":[2,188],"136":[2,188],"137":[2,188]},{"1":[2,189],"4":[2,189],"28":[2,189],"29":[2,189],"50":[2,189],"55":[2,189],"57":[2,189],"69":[2,189],"74":[2,189],"84":[2,189],"89":[2,189],"98":[2,189],"99":89,"100":[2,189],"101":[2,189],"102":[2,189],"105":90,"109":[2,189],"113":[2,189],"114":[2,189],"125":[2,189],"126":[2,189],"128":[2,189],"129":[2,189],"132":[1,79],"133":[2,189],"134":[2,189],"135":[2,189],"136":[2,189],"137":[2,189]},{"1":[2,190],"4":[2,190],"28":[2,190],"29":[2,190],"50":[2,190],"55":[2,190],"57":[2,190],"64":[2,71],"65":[2,71],"66":[2,71],"68":[2,71],"69":[2,190],"70":[2,71],"71":[2,71],"74":[2,190],"82":[2,71],"83":[2,71],"84":[2,190],"89":[2,190],"98":[2,190],"100":[2,190],"101":[2,190],"102":[2,190],"109":[2,190],"113":[2,190],"114":[2,190],"125":[2,190],"126":[2,190],"128":[2,190],"129":[2,190],"132":[2,190],"133":[2,190],"134":[2,190],"135":[2,190],"136":[2,190],"137":[2,190]},{"60":96,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"70":[1,103],"71":[1,104],"79":95,"82":[1,97],"83":[2,112]},{"60":106,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"70":[1,103],"71":[1,104],"79":105,"82":[1,97],"83":[2,112]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"50":[2,74],"55":[2,74],"57":[2,74],"64":[2,74],"65":[2,74],"66":[2,74],"68":[2,74],"69":[2,74],"70":[2,74],"71":[2,74],"74":[2,74],"82":[2,74],"83":[2,74],"84":[2,74],"89":[2,74],"98":[2,74],"100":[2,74],"101":[2,74],"102":[2,74],"109":[2,74],"113":[2,74],"114":[2,74],"125":[2,74],"126":[2,74],"128":[2,74],"129":[2,74],"132":[2,74],"133":[2,74],"134":[2,74],"135":[2,74],"136":[2,74],"137":[2,74]},{"1":[2,191],"4":[2,191],"28":[2,191],"29":[2,191],"50":[2,191],"55":[2,191],"57":[2,191],"64":[2,71],"65":[2,71],"66":[2,71],"68":[2,71],"69":[2,191],"70":[2,71],"71":[2,71],"74":[2,191],"82":[2,71],"83":[2,71],"84":[2,191],"89":[2,191],"98":[2,191],"100":[2,191],"101":[2,191],"102":[2,191],"109":[2,191],"113":[2,191],"114":[2,191],"125":[2,191],"126":[2,191],"128":[2,191],"129":[2,191],"132":[2,191],"133":[2,191],"134":[2,191],"135":[2,191],"136":[2,191],"137":[2,191]},{"1":[2,192],"4":[2,192],"28":[2,192],"29":[2,192],"50":[2,192],"55":[2,192],"57":[2,192],"69":[2,192],"74":[2,192],"84":[2,192],"89":[2,192],"98":[2,192],"100":[2,192],"101":[2,192],"102":[2,192],"109":[2,192],"113":[2,192],"114":[2,192],"125":[2,192],"126":[2,192],"128":[2,192],"129":[2,192],"132":[2,192],"133":[2,192],"134":[2,192],"135":[2,192],"136":[2,192],"137":[2,192]},{"1":[2,193],"4":[2,193],"28":[2,193],"29":[2,193],"50":[2,193],"55":[2,193],"57":[2,193],"69":[2,193],"74":[2,193],"84":[2,193],"89":[2,193],"98":[2,193],"100":[2,193],"101":[2,193],"102":[2,193],"109":[2,193],"113":[2,193],"114":[2,193],"125":[2,193],"126":[2,193],"128":[2,193],"129":[2,193],"132":[2,193],"133":[2,193],"134":[2,193],"135":[2,193],"136":[2,193],"137":[2,193]},{"8":199,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,200],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"15":201,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":202,"61":50,"62":51,"63":30,"72":[1,70],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"97":[1,56]},{"4":[1,116],"6":204,"28":[1,6],"123":[1,203]},{"1":[2,130],"4":[2,130],"28":[2,130],"29":[2,130],"50":[2,130],"55":[2,130],"57":[2,130],"69":[2,130],"74":[2,130],"84":[2,130],"89":[2,130],"93":205,"94":[1,206],"95":[1,207],"98":[2,130],"100":[2,130],"101":[2,130],"102":[2,130],"109":[2,130],"113":[2,130],"114":[2,130],"125":[2,130],"126":[2,130],"128":[2,130],"129":[2,130],"132":[2,130],"133":[2,130],"134":[2,130],"135":[2,130],"136":[2,130],"137":[2,130]},{"1":[2,141],"4":[2,141],"28":[2,141],"29":[2,141],"50":[2,141],"55":[2,141],"57":[2,141],"69":[2,141],"74":[2,141],"84":[2,141],"89":[2,141],"98":[2,141],"100":[2,141],"101":[2,141],"102":[2,141],"109":[2,141],"113":[2,141],"114":[2,141],"125":[2,141],"126":[2,141],"128":[2,141],"129":[2,141],"132":[2,141],"133":[2,141],"134":[2,141],"135":[2,141],"136":[2,141],"137":[2,141]},{"1":[2,149],"4":[2,149],"28":[2,149],"29":[2,149],"50":[2,149],"55":[2,149],"57":[2,149],"69":[2,149],"74":[2,149],"84":[2,149],"89":[2,149],"98":[2,149],"100":[2,149],"101":[2,149],"102":[2,149],"109":[2,149],"113":[2,149],"114":[2,149],"125":[2,149],"126":[2,149],"128":[2,149],"129":[2,149],"132":[2,149],"133":[2,149],"134":[2,149],"135":[2,149],"136":[2,149],"137":[2,149]},{"28":[1,208],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"118":209,"120":210,"121":[1,211]},{"1":[2,92],"4":[2,92],"28":[1,213],"29":[2,92],"50":[2,92],"55":[2,92],"57":[2,92],"64":[2,71],"65":[2,71],"66":[2,71],"68":[2,71],"69":[2,92],"70":[2,71],"71":[2,71],"74":[2,92],"76":[1,212],"82":[2,71],"83":[2,71],"84":[2,92],"89":[2,92],"98":[2,92],"100":[2,92],"101":[2,92],"102":[2,92],"109":[2,92],"113":[2,92],"114":[2,92],"125":[2,92],"126":[2,92],"128":[2,92],"129":[2,92],"132":[2,92],"133":[2,92],"134":[2,92],"135":[2,92],"136":[2,92],"137":[2,92]},{"4":[2,103],"27":164,"29":[2,103],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":217,"42":162,"44":218,"45":167,"47":[1,47],"72":[1,216],"77":214,"78":215,"87":[1,114],"97":[1,56]},{"15":219,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":202,"61":50,"62":51,"63":30,"72":[1,70],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"97":[1,56]},{"1":[2,48],"4":[2,48],"29":[2,48],"99":89,"100":[2,48],"102":[2,48],"105":90,"114":[2,48],"125":[2,48],"126":[2,48],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,135],"4":[2,135],"29":[2,135],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[2,135],"126":[2,135],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"98":[1,220],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,118],"4":[2,118],"28":[2,118],"29":[2,118],"40":[2,118],"43":[2,118],"50":[2,118],"55":[2,118],"57":[2,118],"64":[2,118],"65":[2,118],"66":[2,118],"68":[2,118],"69":[2,118],"70":[2,118],"71":[2,118],"74":[2,118],"76":[2,118],"82":[2,118],"83":[2,118],"84":[2,118],"89":[2,118],"98":[2,118],"100":[2,118],"101":[2,118],"102":[2,118],"109":[2,118],"113":[2,118],"114":[2,118],"125":[2,118],"126":[2,118],"128":[2,118],"129":[2,118],"130":[2,118],"131":[2,118],"132":[2,118],"133":[2,118],"134":[2,118],"135":[2,118],"136":[2,118],"137":[2,118],"138":[2,118]},{"4":[1,116],"6":221,"28":[1,6],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"4":[1,116],"6":222,"28":[1,6],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,137],"4":[2,137],"28":[2,137],"29":[2,137],"50":[2,137],"55":[2,137],"57":[2,137],"69":[2,137],"74":[2,137],"84":[2,137],"89":[2,137],"98":[2,137],"99":89,"100":[1,65],"101":[1,223],"102":[1,66],"105":90,"109":[2,137],"113":[2,137],"114":[1,68],"125":[2,137],"126":[2,137],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,139],"4":[2,139],"28":[2,139],"29":[2,139],"50":[2,139],"55":[2,139],"57":[2,139],"69":[2,139],"74":[2,139],"84":[2,139],"89":[2,139],"98":[2,139],"99":89,"100":[1,65],"101":[1,224],"102":[1,66],"105":90,"109":[2,139],"113":[2,139],"114":[1,68],"125":[2,139],"126":[2,139],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,145],"4":[2,145],"28":[2,145],"29":[2,145],"50":[2,145],"55":[2,145],"57":[2,145],"69":[2,145],"74":[2,145],"84":[2,145],"89":[2,145],"98":[2,145],"100":[2,145],"101":[2,145],"102":[2,145],"109":[2,145],"113":[2,145],"114":[2,145],"125":[2,145],"126":[2,145],"128":[2,145],"129":[2,145],"132":[2,145],"133":[2,145],"134":[2,145],"135":[2,145],"136":[2,145],"137":[2,145]},{"1":[2,146],"4":[2,146],"28":[2,146],"29":[2,146],"50":[2,146],"55":[2,146],"57":[2,146],"69":[2,146],"74":[2,146],"84":[2,146],"89":[2,146],"98":[2,146],"99":89,"100":[1,65],"101":[2,146],"102":[1,66],"105":90,"109":[2,146],"113":[2,146],"114":[1,68],"125":[2,146],"126":[2,146],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"55":[1,226],"107":225,"108":[1,227]},{"55":[2,150],"108":[2,150],"110":228,"111":[1,230],"116":[1,229]},{"30":231,"31":[1,73]},{"55":[2,151],"108":[2,151],"111":[2,151]},{"55":[2,152],"108":[2,152],"111":[2,152]},{"1":[2,119],"4":[2,119],"28":[2,119],"29":[2,119],"40":[2,119],"50":[2,119],"55":[2,119],"57":[2,119],"64":[2,119],"65":[2,119],"66":[2,119],"68":[2,119],"69":[2,119],"70":[2,119],"71":[2,119],"74":[2,119],"82":[2,119],"83":[2,119],"84":[2,119],"89":[2,119],"98":[2,119],"100":[2,119],"101":[2,119],"102":[2,119],"108":[2,119],"109":[2,119],"111":[2,119],"113":[2,119],"114":[2,119],"125":[2,119],"126":[2,119],"128":[2,119],"129":[2,119],"132":[2,119],"133":[2,119],"134":[2,119],"135":[2,119],"136":[2,119],"137":[2,119]},{"4":[2,55],"28":[2,55],"54":232,"55":[1,233],"89":[2,55]},{"4":[2,121],"28":[2,121],"29":[2,121],"55":[2,121],"84":[2,121],"89":[2,121]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,157],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"58":159,"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"85":234,"86":[1,57],"87":[1,58],"88":[1,69],"90":156,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,126],"28":[2,126],"29":[2,126],"55":[2,126],"57":[1,235],"84":[2,126],"89":[2,126],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"4":[2,127],"28":[2,127],"29":[2,127],"55":[2,127],"84":[2,127],"89":[2,127]},{"4":[2,55],"28":[2,55],"54":236,"55":[1,237],"74":[2,55]},{"4":[2,88],"28":[2,88],"29":[2,88],"55":[2,88],"74":[2,88]},{"4":[2,40],"28":[2,40],"29":[2,40],"43":[1,238],"55":[2,40],"74":[2,40]},{"4":[2,43],"28":[2,43],"29":[2,43],"55":[2,43],"74":[2,43]},{"4":[2,44],"28":[2,44],"29":[2,44],"55":[2,44],"74":[2,44]},{"4":[2,45],"28":[2,45],"29":[2,45],"43":[2,45],"55":[2,45],"74":[2,45]},{"4":[2,46],"28":[2,46],"29":[2,46],"43":[2,46],"55":[2,46],"74":[2,46]},{"4":[2,47],"28":[2,47],"29":[2,47],"43":[2,47],"55":[2,47],"74":[2,47]},{"1":[2,6],"4":[2,6],"29":[2,6]},{"1":[2,28],"4":[2,28],"28":[2,28],"29":[2,28],"50":[2,28],"55":[2,28],"57":[2,28],"69":[2,28],"74":[2,28],"84":[2,28],"89":[2,28],"94":[2,28],"95":[2,28],"98":[2,28],"100":[2,28],"101":[2,28],"102":[2,28],"109":[2,28],"113":[2,28],"114":[2,28],"119":[2,28],"121":[2,28],"125":[2,28],"126":[2,28],"128":[2,28],"129":[2,28],"132":[2,28],"133":[2,28],"134":[2,28],"135":[2,28],"136":[2,28],"137":[2,28]},{"1":[2,195],"4":[2,195],"28":[2,195],"29":[2,195],"50":[2,195],"55":[2,195],"57":[2,195],"69":[2,195],"74":[2,195],"84":[2,195],"89":[2,195],"98":[2,195],"99":89,"100":[2,195],"101":[2,195],"102":[2,195],"105":90,"109":[2,195],"113":[2,195],"114":[2,195],"125":[2,195],"126":[2,195],"128":[2,195],"129":[2,195],"132":[1,79],"133":[1,82],"134":[2,195],"135":[2,195],"136":[2,195],"137":[2,195]},{"1":[2,196],"4":[2,196],"28":[2,196],"29":[2,196],"50":[2,196],"55":[2,196],"57":[2,196],"69":[2,196],"74":[2,196],"84":[2,196],"89":[2,196],"98":[2,196],"99":89,"100":[2,196],"101":[2,196],"102":[2,196],"105":90,"109":[2,196],"113":[2,196],"114":[2,196],"125":[2,196],"126":[2,196],"128":[2,196],"129":[2,196],"132":[1,79],"133":[1,82],"134":[2,196],"135":[2,196],"136":[2,196],"137":[2,196]},{"1":[2,197],"4":[2,197],"28":[2,197],"29":[2,197],"50":[2,197],"55":[2,197],"57":[2,197],"69":[2,197],"74":[2,197],"84":[2,197],"89":[2,197],"98":[2,197],"99":89,"100":[2,197],"101":[2,197],"102":[2,197],"105":90,"109":[2,197],"113":[2,197],"114":[2,197],"125":[2,197],"126":[2,197],"128":[2,197],"129":[2,197],"132":[1,79],"133":[2,197],"134":[2,197],"135":[2,197],"136":[2,197],"137":[2,197]},{"1":[2,198],"4":[2,198],"28":[2,198],"29":[2,198],"50":[2,198],"55":[2,198],"57":[2,198],"69":[2,198],"74":[2,198],"84":[2,198],"89":[2,198],"98":[2,198],"99":89,"100":[2,198],"101":[2,198],"102":[2,198],"105":90,"109":[2,198],"113":[2,198],"114":[2,198],"125":[2,198],"126":[2,198],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[2,198],"135":[2,198],"136":[2,198],"137":[2,198]},{"1":[2,199],"4":[2,199],"28":[2,199],"29":[2,199],"50":[2,199],"55":[2,199],"57":[2,199],"69":[2,199],"74":[2,199],"84":[2,199],"89":[2,199],"98":[2,199],"99":89,"100":[2,199],"101":[2,199],"102":[2,199],"105":90,"109":[2,199],"113":[2,199],"114":[2,199],"125":[2,199],"126":[2,199],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[2,199],"136":[2,199],"137":[1,86]},{"1":[2,200],"4":[2,200],"28":[2,200],"29":[2,200],"50":[2,200],"55":[2,200],"57":[2,200],"69":[2,200],"74":[2,200],"84":[2,200],"89":[2,200],"98":[2,200],"99":89,"100":[2,200],"101":[2,200],"102":[2,200],"105":90,"109":[2,200],"113":[2,200],"114":[2,200],"125":[2,200],"126":[2,200],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[2,200],"137":[1,86]},{"1":[2,201],"4":[2,201],"28":[2,201],"29":[2,201],"50":[2,201],"55":[2,201],"57":[2,201],"69":[2,201],"74":[2,201],"84":[2,201],"89":[2,201],"98":[2,201],"99":89,"100":[2,201],"101":[2,201],"102":[2,201],"105":90,"109":[2,201],"113":[2,201],"114":[2,201],"125":[2,201],"126":[2,201],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[2,201],"136":[2,201],"137":[2,201]},{"1":[2,184],"4":[2,184],"28":[2,184],"29":[2,184],"50":[2,184],"55":[2,184],"57":[2,184],"69":[2,184],"74":[2,184],"84":[2,184],"89":[2,184],"98":[2,184],"99":89,"100":[1,65],"101":[2,184],"102":[1,66],"105":90,"109":[2,184],"113":[2,184],"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,186],"4":[2,186],"28":[2,186],"29":[2,186],"50":[2,186],"55":[2,186],"57":[2,186],"69":[2,186],"74":[2,186],"84":[2,186],"89":[2,186],"98":[2,186],"99":89,"100":[1,65],"101":[2,186],"102":[1,66],"105":90,"109":[2,186],"113":[2,186],"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,183],"4":[2,183],"28":[2,183],"29":[2,183],"50":[2,183],"55":[2,183],"57":[2,183],"69":[2,183],"74":[2,183],"84":[2,183],"89":[2,183],"98":[2,183],"99":89,"100":[1,65],"101":[2,183],"102":[1,66],"105":90,"109":[2,183],"113":[2,183],"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,185],"4":[2,185],"28":[2,185],"29":[2,185],"50":[2,185],"55":[2,185],"57":[2,185],"69":[2,185],"74":[2,185],"84":[2,185],"89":[2,185],"98":[2,185],"99":89,"100":[1,65],"101":[2,185],"102":[1,66],"105":90,"109":[2,185],"113":[2,185],"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,108],"4":[2,108],"28":[2,108],"29":[2,108],"50":[2,108],"55":[2,108],"57":[2,108],"64":[2,108],"65":[2,108],"66":[2,108],"68":[2,108],"69":[2,108],"70":[2,108],"71":[2,108],"74":[2,108],"82":[2,108],"83":[2,108],"84":[2,108],"89":[2,108],"98":[2,108],"100":[2,108],"101":[2,108],"102":[2,108],"109":[2,108],"113":[2,108],"114":[2,108],"125":[2,108],"126":[2,108],"128":[2,108],"129":[2,108],"132":[2,108],"133":[2,108],"134":[2,108],"135":[2,108],"136":[2,108],"137":[2,108]},{"1":[2,78],"4":[2,78],"28":[2,78],"29":[2,78],"40":[2,78],"50":[2,78],"55":[2,78],"57":[2,78],"64":[2,78],"65":[2,78],"66":[2,78],"68":[2,78],"69":[2,78],"70":[2,78],"71":[2,78],"74":[2,78],"76":[2,78],"82":[2,78],"83":[2,78],"84":[2,78],"89":[2,78],"98":[2,78],"100":[2,78],"101":[2,78],"102":[2,78],"109":[2,78],"113":[2,78],"114":[2,78],"125":[2,78],"126":[2,78],"128":[2,78],"129":[2,78],"130":[2,78],"131":[2,78],"132":[2,78],"133":[2,78],"134":[2,78],"135":[2,78],"136":[2,78],"137":[2,78],"138":[2,78]},{"1":[2,79],"4":[2,79],"28":[2,79],"29":[2,79],"40":[2,79],"50":[2,79],"55":[2,79],"57":[2,79],"64":[2,79],"65":[2,79],"66":[2,79],"68":[2,79],"69":[2,79],"70":[2,79],"71":[2,79],"74":[2,79],"76":[2,79],"82":[2,79],"83":[2,79],"84":[2,79],"89":[2,79],"98":[2,79],"100":[2,79],"101":[2,79],"102":[2,79],"109":[2,79],"113":[2,79],"114":[2,79],"125":[2,79],"126":[2,79],"128":[2,79],"129":[2,79],"130":[2,79],"131":[2,79],"132":[2,79],"133":[2,79],"134":[2,79],"135":[2,79],"136":[2,79],"137":[2,79],"138":[2,79]},{"1":[2,80],"4":[2,80],"28":[2,80],"29":[2,80],"40":[2,80],"50":[2,80],"55":[2,80],"57":[2,80],"64":[2,80],"65":[2,80],"66":[2,80],"68":[2,80],"69":[2,80],"70":[2,80],"71":[2,80],"74":[2,80],"76":[2,80],"82":[2,80],"83":[2,80],"84":[2,80],"89":[2,80],"98":[2,80],"100":[2,80],"101":[2,80],"102":[2,80],"109":[2,80],"113":[2,80],"114":[2,80],"125":[2,80],"126":[2,80],"128":[2,80],"129":[2,80],"130":[2,80],"131":[2,80],"132":[2,80],"133":[2,80],"134":[2,80],"135":[2,80],"136":[2,80],"137":[2,80],"138":[2,80]},{"69":[1,239],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,84],"4":[2,84],"28":[2,84],"29":[2,84],"40":[2,84],"50":[2,84],"55":[2,84],"57":[2,84],"64":[2,84],"65":[2,84],"66":[2,84],"68":[2,84],"69":[2,84],"70":[2,84],"71":[2,84],"74":[2,84],"76":[2,84],"82":[2,84],"83":[2,84],"84":[2,84],"89":[2,84],"98":[2,84],"100":[2,84],"101":[2,84],"102":[2,84],"109":[2,84],"113":[2,84],"114":[2,84],"125":[2,84],"126":[2,84],"128":[2,84],"129":[2,84],"130":[2,84],"131":[2,84],"132":[2,84],"133":[2,84],"134":[2,84],"135":[2,84],"136":[2,84],"137":[2,84],"138":[2,84]},{"1":[2,85],"4":[2,85],"28":[2,85],"29":[2,85],"40":[2,85],"50":[2,85],"55":[2,85],"57":[2,85],"64":[2,85],"65":[2,85],"66":[2,85],"68":[2,85],"69":[2,85],"70":[2,85],"71":[2,85],"74":[2,85],"76":[2,85],"82":[2,85],"83":[2,85],"84":[2,85],"89":[2,85],"98":[2,85],"100":[2,85],"101":[2,85],"102":[2,85],"109":[2,85],"113":[2,85],"114":[2,85],"125":[2,85],"126":[2,85],"128":[2,85],"129":[2,85],"130":[2,85],"131":[2,85],"132":[2,85],"133":[2,85],"134":[2,85],"135":[2,85],"136":[2,85],"137":[2,85],"138":[2,85]},{"1":[2,109],"4":[2,109],"28":[2,109],"29":[2,109],"50":[2,109],"55":[2,109],"57":[2,109],"64":[2,109],"65":[2,109],"66":[2,109],"68":[2,109],"69":[2,109],"70":[2,109],"71":[2,109],"74":[2,109],"82":[2,109],"83":[2,109],"84":[2,109],"89":[2,109],"98":[2,109],"100":[2,109],"101":[2,109],"102":[2,109],"109":[2,109],"113":[2,109],"114":[2,109],"125":[2,109],"126":[2,109],"128":[2,109],"129":[2,109],"132":[2,109],"133":[2,109],"134":[2,109],"135":[2,109],"136":[2,109],"137":[2,109]},{"1":[2,38],"4":[2,38],"28":[2,38],"29":[2,38],"50":[2,38],"55":[2,38],"57":[2,38],"69":[2,38],"74":[2,38],"84":[2,38],"89":[2,38],"98":[2,38],"99":89,"100":[2,38],"101":[2,38],"102":[2,38],"105":90,"109":[2,38],"113":[2,38],"114":[2,38],"125":[2,38],"126":[2,38],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"8":240,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,114],"4":[2,114],"28":[2,114],"29":[2,114],"50":[2,114],"55":[2,114],"57":[2,114],"64":[2,114],"65":[2,114],"66":[2,114],"68":[2,114],"69":[2,114],"70":[2,114],"71":[2,114],"74":[2,114],"82":[2,114],"83":[2,114],"84":[2,114],"89":[2,114],"98":[2,114],"100":[2,114],"101":[2,114],"102":[2,114],"109":[2,114],"113":[2,114],"114":[2,114],"125":[2,114],"126":[2,114],"128":[2,114],"129":[2,114],"132":[2,114],"133":[2,114],"134":[2,114],"135":[2,114],"136":[2,114],"137":[2,114]},{"4":[2,55],"28":[2,55],"54":241,"55":[1,233],"84":[2,55]},{"51":242,"52":[1,59],"53":[1,60]},{"30":112,"31":[1,73],"44":113,"56":243,"87":[1,114]},{"50":[2,61],"55":[2,61]},{"8":244,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"50":[2,64],"55":[2,64]},{"8":245,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,202],"4":[2,202],"28":[2,202],"29":[2,202],"50":[2,202],"55":[2,202],"57":[2,202],"69":[2,202],"74":[2,202],"84":[2,202],"89":[2,202],"98":[2,202],"99":89,"100":[2,202],"101":[2,202],"102":[2,202],"105":90,"109":[2,202],"113":[2,202],"114":[2,202],"125":[2,202],"126":[2,202],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"8":246,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,107],"4":[2,107],"28":[2,107],"29":[2,107],"50":[2,107],"55":[2,107],"57":[2,107],"60":96,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"69":[2,107],"70":[1,103],"71":[1,104],"74":[2,107],"79":95,"82":[1,97],"83":[2,112],"84":[2,107],"89":[2,107],"98":[2,107],"100":[2,107],"101":[2,107],"102":[2,107],"109":[2,107],"113":[2,107],"114":[2,107],"125":[2,107],"126":[2,107],"128":[2,107],"129":[2,107],"132":[2,107],"133":[2,107],"134":[2,107],"135":[2,107],"136":[2,107],"137":[2,107]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"50":[2,71],"55":[2,71],"57":[2,71],"64":[2,71],"65":[2,71],"66":[2,71],"68":[2,71],"69":[2,71],"70":[2,71],"71":[2,71],"74":[2,71],"82":[2,71],"83":[2,71],"84":[2,71],"89":[2,71],"98":[2,71],"100":[2,71],"101":[2,71],"102":[2,71],"109":[2,71],"113":[2,71],"114":[2,71],"125":[2,71],"126":[2,71],"128":[2,71],"129":[2,71],"132":[2,71],"133":[2,71],"134":[2,71],"135":[2,71],"136":[2,71],"137":[2,71]},{"8":247,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,181],"4":[2,181],"28":[2,181],"29":[2,181],"50":[2,181],"55":[2,181],"57":[2,181],"69":[2,181],"74":[2,181],"84":[2,181],"89":[2,181],"98":[2,181],"100":[2,181],"101":[2,181],"102":[2,181],"109":[2,181],"113":[2,181],"114":[2,181],"119":[2,181],"125":[2,181],"126":[2,181],"128":[2,181],"129":[2,181],"132":[2,181],"133":[2,181],"134":[2,181],"135":[2,181],"136":[2,181],"137":[2,181]},{"1":[2,131],"4":[2,131],"28":[2,131],"29":[2,131],"50":[2,131],"55":[2,131],"57":[2,131],"69":[2,131],"74":[2,131],"84":[2,131],"89":[2,131],"94":[1,248],"98":[2,131],"100":[2,131],"101":[2,131],"102":[2,131],"109":[2,131],"113":[2,131],"114":[2,131],"125":[2,131],"126":[2,131],"128":[2,131],"129":[2,131],"132":[2,131],"133":[2,131],"134":[2,131],"135":[2,131],"136":[2,131],"137":[2,131]},{"4":[1,116],"6":249,"28":[1,6]},{"30":250,"31":[1,73]},{"118":251,"120":210,"121":[1,211]},{"29":[1,252],"119":[1,253],"120":254,"121":[1,211]},{"29":[2,174],"119":[2,174],"121":[2,174]},{"8":256,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"91":255,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"15":257,"16":123,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":124,"44":62,"45":29,"59":202,"61":50,"62":51,"63":30,"72":[1,70],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"97":[1,56]},{"4":[2,103],"27":164,"29":[2,103],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":217,"42":162,"44":218,"45":167,"47":[1,47],"72":[1,216],"77":258,"78":215,"87":[1,114],"97":[1,56]},{"4":[1,260],"29":[1,259]},{"4":[2,104],"29":[2,104],"74":[2,104]},{"4":[2,103],"27":164,"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":217,"42":162,"44":218,"45":167,"47":[1,47],"72":[1,216],"74":[2,103],"77":261,"78":215,"87":[1,114],"97":[1,56]},{"4":[2,100],"29":[2,100],"74":[2,100]},{"4":[2,43],"29":[2,43],"43":[1,262],"74":[2,43]},{"1":[2,98],"4":[2,98],"28":[1,263],"29":[2,98],"50":[2,98],"55":[2,98],"57":[2,98],"60":96,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"69":[2,98],"70":[1,103],"71":[1,104],"74":[2,98],"79":95,"82":[1,97],"83":[2,112],"84":[2,98],"89":[2,98],"98":[2,98],"100":[2,98],"101":[2,98],"102":[2,98],"109":[2,98],"113":[2,98],"114":[2,98],"125":[2,98],"126":[2,98],"128":[2,98],"129":[2,98],"132":[2,98],"133":[2,98],"134":[2,98],"135":[2,98],"136":[2,98],"137":[2,98]},{"1":[2,136],"4":[2,136],"28":[2,136],"29":[2,136],"43":[2,136],"50":[2,136],"55":[2,136],"57":[2,136],"64":[2,136],"65":[2,136],"66":[2,136],"68":[2,136],"69":[2,136],"70":[2,136],"71":[2,136],"74":[2,136],"82":[2,136],"83":[2,136],"84":[2,136],"89":[2,136],"98":[2,136],"100":[2,136],"101":[2,136],"102":[2,136],"109":[2,136],"113":[2,136],"114":[2,136],"125":[2,136],"126":[2,136],"128":[2,136],"129":[2,136],"132":[2,136],"133":[2,136],"134":[2,136],"135":[2,136],"136":[2,136],"137":[2,136]},{"1":[2,178],"4":[2,178],"28":[2,178],"29":[2,178],"50":[2,178],"55":[2,178],"57":[2,178],"69":[2,178],"74":[2,178],"84":[2,178],"89":[2,178],"98":[2,178],"100":[2,178],"101":[2,178],"102":[2,178],"109":[2,178],"113":[2,178],"114":[2,178],"119":[2,178],"125":[2,178],"126":[2,178],"128":[2,178],"129":[2,178],"132":[2,178],"133":[2,178],"134":[2,178],"135":[2,178],"136":[2,178],"137":[2,178]},{"1":[2,179],"4":[2,179],"28":[2,179],"29":[2,179],"50":[2,179],"55":[2,179],"57":[2,179],"69":[2,179],"74":[2,179],"84":[2,179],"89":[2,179],"98":[2,179],"100":[2,179],"101":[2,179],"102":[2,179],"109":[2,179],"113":[2,179],"114":[2,179],"119":[2,179],"125":[2,179],"126":[2,179],"128":[2,179],"129":[2,179],"132":[2,179],"133":[2,179],"134":[2,179],"135":[2,179],"136":[2,179],"137":[2,179]},{"8":264,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":265,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,163],"4":[2,163],"28":[2,163],"29":[2,163],"50":[2,163],"55":[2,163],"57":[2,163],"69":[2,163],"74":[2,163],"84":[2,163],"89":[2,163],"98":[2,163],"100":[2,163],"101":[2,163],"102":[2,163],"109":[2,163],"113":[2,163],"114":[2,163],"125":[2,163],"126":[2,163],"128":[2,163],"129":[2,163],"132":[2,163],"133":[2,163],"134":[2,163],"135":[2,163],"136":[2,163],"137":[2,163]},{"30":266,"31":[1,73],"61":152,"62":153,"72":[1,70],"88":[1,69],"106":267},{"8":268,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,165],"4":[2,165],"28":[2,165],"29":[2,165],"50":[2,165],"55":[2,165],"57":[2,165],"69":[2,165],"74":[2,165],"84":[2,165],"89":[2,165],"98":[2,165],"100":[2,165],"101":[2,165],"102":[2,165],"109":[2,165],"113":[2,165],"114":[2,165],"125":[2,165],"126":[2,165],"128":[2,165],"129":[2,165],"132":[2,165],"133":[2,165],"134":[2,165],"135":[2,165],"136":[2,165],"137":[2,165]},{"8":269,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":270,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"55":[1,272],"110":271,"111":[1,230]},{"4":[1,274],"28":[1,275],"89":[1,273]},{"4":[2,56],"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[2,56],"29":[2,56],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"58":159,"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"84":[2,56],"86":[1,57],"87":[1,58],"88":[1,69],"89":[2,56],"90":276,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":277,"55":[1,233]},{"4":[2,66],"28":[2,66],"29":[2,66],"55":[2,66],"84":[2,66],"89":[2,66]},{"4":[1,279],"28":[1,280],"74":[1,278]},{"4":[2,56],"27":164,"28":[2,56],"29":[2,56],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":281,"42":162,"44":163,"45":167,"47":[1,47],"74":[2,56],"87":[1,114],"97":[1,56]},{"8":282,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,283],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,83],"4":[2,83],"28":[2,83],"29":[2,83],"40":[2,83],"50":[2,83],"55":[2,83],"57":[2,83],"64":[2,83],"65":[2,83],"66":[2,83],"68":[2,83],"69":[2,83],"70":[2,83],"71":[2,83],"74":[2,83],"76":[2,83],"82":[2,83],"83":[2,83],"84":[2,83],"89":[2,83],"98":[2,83],"100":[2,83],"101":[2,83],"102":[2,83],"109":[2,83],"113":[2,83],"114":[2,83],"125":[2,83],"126":[2,83],"128":[2,83],"129":[2,83],"130":[2,83],"131":[2,83],"132":[2,83],"133":[2,83],"134":[2,83],"135":[2,83],"136":[2,83],"137":[2,83],"138":[2,83]},{"29":[1,284],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"4":[1,274],"28":[1,275],"84":[1,285]},{"4":[1,116],"6":286,"28":[1,6]},{"50":[2,59],"55":[2,59]},{"50":[2,62],"55":[2,62],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"50":[2,65],"55":[2,65],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"29":[1,287],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"4":[1,116],"6":288,"28":[1,6],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"4":[1,116],"6":289,"28":[1,6]},{"1":[2,132],"4":[2,132],"28":[2,132],"29":[2,132],"50":[2,132],"55":[2,132],"57":[2,132],"69":[2,132],"74":[2,132],"84":[2,132],"89":[2,132],"98":[2,132],"100":[2,132],"101":[2,132],"102":[2,132],"109":[2,132],"113":[2,132],"114":[2,132],"125":[2,132],"126":[2,132],"128":[2,132],"129":[2,132],"132":[2,132],"133":[2,132],"134":[2,132],"135":[2,132],"136":[2,132],"137":[2,132]},{"4":[1,116],"6":290,"28":[1,6]},{"29":[1,291],"119":[1,292],"120":254,"121":[1,211]},{"1":[2,172],"4":[2,172],"28":[2,172],"29":[2,172],"50":[2,172],"55":[2,172],"57":[2,172],"69":[2,172],"74":[2,172],"84":[2,172],"89":[2,172],"98":[2,172],"100":[2,172],"101":[2,172],"102":[2,172],"109":[2,172],"113":[2,172],"114":[2,172],"125":[2,172],"126":[2,172],"128":[2,172],"129":[2,172],"132":[2,172],"133":[2,172],"134":[2,172],"135":[2,172],"136":[2,172],"137":[2,172]},{"4":[1,116],"6":293,"28":[1,6]},{"29":[2,175],"119":[2,175],"121":[2,175]},{"4":[1,116],"6":294,"28":[1,6],"55":[1,295]},{"4":[2,128],"28":[2,128],"55":[2,128],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,93],"4":[2,93],"28":[1,296],"29":[2,93],"50":[2,93],"55":[2,93],"57":[2,93],"60":96,"64":[1,98],"65":[1,99],"66":[1,100],"67":101,"68":[1,102],"69":[2,93],"70":[1,103],"71":[1,104],"74":[2,93],"79":95,"82":[1,97],"83":[2,112],"84":[2,93],"89":[2,93],"98":[2,93],"100":[2,93],"101":[2,93],"102":[2,93],"109":[2,93],"113":[2,93],"114":[2,93],"125":[2,93],"126":[2,93],"128":[2,93],"129":[2,93],"132":[2,93],"133":[2,93],"134":[2,93],"135":[2,93],"136":[2,93],"137":[2,93]},{"4":[1,260],"29":[1,297]},{"1":[2,96],"4":[2,96],"28":[2,96],"29":[2,96],"50":[2,96],"55":[2,96],"57":[2,96],"69":[2,96],"74":[2,96],"84":[2,96],"89":[2,96],"98":[2,96],"100":[2,96],"101":[2,96],"102":[2,96],"109":[2,96],"113":[2,96],"114":[2,96],"125":[2,96],"126":[2,96],"128":[2,96],"129":[2,96],"132":[2,96],"133":[2,96],"134":[2,96],"135":[2,96],"136":[2,96],"137":[2,96]},{"27":164,"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":217,"42":162,"44":218,"45":167,"47":[1,47],"78":298,"87":[1,114],"97":[1,56]},{"4":[1,260],"74":[1,299]},{"8":300,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,301],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,103],"27":164,"29":[2,103],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":217,"42":162,"44":218,"45":167,"47":[1,47],"72":[1,216],"77":302,"78":215,"87":[1,114],"97":[1,56]},{"1":[2,138],"4":[2,138],"28":[2,138],"29":[2,138],"50":[2,138],"55":[2,138],"57":[2,138],"69":[2,138],"74":[2,138],"84":[2,138],"89":[2,138],"98":[2,138],"99":89,"100":[1,65],"101":[2,138],"102":[1,66],"105":90,"109":[2,138],"113":[2,138],"114":[1,68],"125":[2,138],"126":[2,138],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,140],"4":[2,140],"28":[2,140],"29":[2,140],"50":[2,140],"55":[2,140],"57":[2,140],"69":[2,140],"74":[2,140],"84":[2,140],"89":[2,140],"98":[2,140],"99":89,"100":[1,65],"101":[2,140],"102":[1,66],"105":90,"109":[2,140],"113":[2,140],"114":[1,68],"125":[2,140],"126":[2,140],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"107":303,"108":[1,227],"111":[2,150]},{"110":304,"111":[1,230]},{"1":[2,153],"4":[2,153],"28":[2,153],"29":[2,153],"50":[2,153],"55":[2,153],"57":[2,153],"69":[2,153],"74":[2,153],"84":[2,153],"89":[2,153],"98":[2,153],"99":89,"100":[1,65],"101":[1,305],"102":[1,66],"105":90,"109":[1,306],"113":[2,153],"114":[1,68],"125":[2,153],"126":[2,153],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"99":89,"100":[1,65],"102":[1,66],"105":90,"112":307,"113":[1,308],"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,157],"4":[2,157],"28":[2,157],"29":[2,157],"50":[2,157],"55":[2,157],"57":[2,157],"69":[2,157],"74":[2,157],"84":[2,157],"89":[2,157],"98":[2,157],"99":89,"100":[1,65],"101":[1,309],"102":[1,66],"105":90,"109":[2,157],"113":[2,157],"114":[1,68],"125":[2,157],"126":[2,157],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,167],"4":[2,167],"28":[2,167],"29":[2,167],"50":[2,167],"55":[2,167],"57":[2,167],"69":[2,167],"74":[2,167],"84":[2,167],"89":[2,167],"98":[2,167],"100":[2,167],"101":[2,167],"102":[2,167],"109":[2,167],"113":[2,167],"114":[2,167],"125":[2,167],"126":[2,167],"128":[2,167],"129":[2,167],"132":[2,167],"133":[2,167],"134":[2,167],"135":[2,167],"136":[2,167],"137":[2,167]},{"30":311,"31":[1,73],"61":152,"62":153,"72":[1,70],"88":[1,69],"106":310},{"1":[2,120],"4":[2,120],"28":[2,120],"29":[2,120],"40":[2,120],"50":[2,120],"55":[2,120],"57":[2,120],"64":[2,120],"65":[2,120],"66":[2,120],"68":[2,120],"69":[2,120],"70":[2,120],"71":[2,120],"74":[2,120],"82":[2,120],"83":[2,120],"84":[2,120],"89":[2,120],"98":[2,120],"100":[2,120],"101":[2,120],"102":[2,120],"108":[2,120],"109":[2,120],"111":[2,120],"113":[2,120],"114":[2,120],"125":[2,120],"126":[2,120],"128":[2,120],"129":[2,120],"132":[2,120],"133":[2,120],"134":[2,120],"135":[2,120],"136":[2,120],"137":[2,120]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"58":159,"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"90":312,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":158,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,157],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"58":159,"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"85":313,"86":[1,57],"87":[1,58],"88":[1,69],"90":156,"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,122],"28":[2,122],"29":[2,122],"55":[2,122],"84":[2,122],"89":[2,122]},{"4":[1,274],"28":[1,275],"29":[1,314]},{"1":[2,86],"4":[2,86],"28":[2,86],"29":[2,86],"40":[2,86],"50":[2,86],"55":[2,86],"57":[2,86],"64":[2,86],"65":[2,86],"66":[2,86],"68":[2,86],"69":[2,86],"70":[2,86],"71":[2,86],"74":[2,86],"82":[2,86],"83":[2,86],"84":[2,86],"89":[2,86],"98":[2,86],"100":[2,86],"101":[2,86],"102":[2,86],"108":[2,86],"109":[2,86],"111":[2,86],"113":[2,86],"114":[2,86],"125":[2,86],"126":[2,86],"128":[2,86],"129":[2,86],"132":[2,86],"133":[2,86],"134":[2,86],"135":[2,86],"136":[2,86],"137":[2,86]},{"27":164,"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":315,"42":162,"44":163,"45":167,"47":[1,47],"87":[1,114],"97":[1,56]},{"4":[2,87],"27":164,"28":[2,87],"29":[2,87],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":161,"42":162,"44":163,"45":167,"47":[1,47],"55":[2,87],"73":316,"87":[1,114],"97":[1,56]},{"4":[2,89],"28":[2,89],"29":[2,89],"55":[2,89],"74":[2,89]},{"4":[2,41],"28":[2,41],"29":[2,41],"55":[2,41],"74":[2,41],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"8":317,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,39],"4":[2,39],"28":[2,39],"29":[2,39],"50":[2,39],"55":[2,39],"57":[2,39],"69":[2,39],"74":[2,39],"84":[2,39],"89":[2,39],"98":[2,39],"100":[2,39],"101":[2,39],"102":[2,39],"109":[2,39],"113":[2,39],"114":[2,39],"125":[2,39],"126":[2,39],"128":[2,39],"129":[2,39],"132":[2,39],"133":[2,39],"134":[2,39],"135":[2,39],"136":[2,39],"137":[2,39]},{"1":[2,115],"4":[2,115],"28":[2,115],"29":[2,115],"50":[2,115],"55":[2,115],"57":[2,115],"64":[2,115],"65":[2,115],"66":[2,115],"68":[2,115],"69":[2,115],"70":[2,115],"71":[2,115],"74":[2,115],"82":[2,115],"83":[2,115],"84":[2,115],"89":[2,115],"98":[2,115],"100":[2,115],"101":[2,115],"102":[2,115],"109":[2,115],"113":[2,115],"114":[2,115],"125":[2,115],"126":[2,115],"128":[2,115],"129":[2,115],"132":[2,115],"133":[2,115],"134":[2,115],"135":[2,115],"136":[2,115],"137":[2,115]},{"1":[2,51],"4":[2,51],"28":[2,51],"29":[2,51],"50":[2,51],"55":[2,51],"57":[2,51],"69":[2,51],"74":[2,51],"84":[2,51],"89":[2,51],"98":[2,51],"100":[2,51],"101":[2,51],"102":[2,51],"109":[2,51],"113":[2,51],"114":[2,51],"125":[2,51],"126":[2,51],"128":[2,51],"129":[2,51],"132":[2,51],"133":[2,51],"134":[2,51],"135":[2,51],"136":[2,51],"137":[2,51]},{"1":[2,203],"4":[2,203],"28":[2,203],"29":[2,203],"50":[2,203],"55":[2,203],"57":[2,203],"69":[2,203],"74":[2,203],"84":[2,203],"89":[2,203],"98":[2,203],"100":[2,203],"101":[2,203],"102":[2,203],"109":[2,203],"113":[2,203],"114":[2,203],"125":[2,203],"126":[2,203],"128":[2,203],"129":[2,203],"132":[2,203],"133":[2,203],"134":[2,203],"135":[2,203],"136":[2,203],"137":[2,203]},{"1":[2,180],"4":[2,180],"28":[2,180],"29":[2,180],"50":[2,180],"55":[2,180],"57":[2,180],"69":[2,180],"74":[2,180],"84":[2,180],"89":[2,180],"98":[2,180],"100":[2,180],"101":[2,180],"102":[2,180],"109":[2,180],"113":[2,180],"114":[2,180],"119":[2,180],"125":[2,180],"126":[2,180],"128":[2,180],"129":[2,180],"132":[2,180],"133":[2,180],"134":[2,180],"135":[2,180],"136":[2,180],"137":[2,180]},{"1":[2,133],"4":[2,133],"28":[2,133],"29":[2,133],"50":[2,133],"55":[2,133],"57":[2,133],"69":[2,133],"74":[2,133],"84":[2,133],"89":[2,133],"98":[2,133],"100":[2,133],"101":[2,133],"102":[2,133],"109":[2,133],"113":[2,133],"114":[2,133],"125":[2,133],"126":[2,133],"128":[2,133],"129":[2,133],"132":[2,133],"133":[2,133],"134":[2,133],"135":[2,133],"136":[2,133],"137":[2,133]},{"1":[2,134],"4":[2,134],"28":[2,134],"29":[2,134],"50":[2,134],"55":[2,134],"57":[2,134],"69":[2,134],"74":[2,134],"84":[2,134],"89":[2,134],"94":[2,134],"98":[2,134],"100":[2,134],"101":[2,134],"102":[2,134],"109":[2,134],"113":[2,134],"114":[2,134],"125":[2,134],"126":[2,134],"128":[2,134],"129":[2,134],"132":[2,134],"133":[2,134],"134":[2,134],"135":[2,134],"136":[2,134],"137":[2,134]},{"1":[2,170],"4":[2,170],"28":[2,170],"29":[2,170],"50":[2,170],"55":[2,170],"57":[2,170],"69":[2,170],"74":[2,170],"84":[2,170],"89":[2,170],"98":[2,170],"100":[2,170],"101":[2,170],"102":[2,170],"109":[2,170],"113":[2,170],"114":[2,170],"125":[2,170],"126":[2,170],"128":[2,170],"129":[2,170],"132":[2,170],"133":[2,170],"134":[2,170],"135":[2,170],"136":[2,170],"137":[2,170]},{"4":[1,116],"6":318,"28":[1,6]},{"29":[1,319]},{"4":[1,320],"29":[2,176],"119":[2,176],"121":[2,176]},{"8":321,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,103],"27":164,"29":[2,103],"30":165,"31":[1,73],"32":166,"33":[1,71],"34":[1,72],"41":217,"42":162,"44":218,"45":167,"47":[1,47],"72":[1,216],"77":322,"78":215,"87":[1,114],"97":[1,56]},{"1":[2,94],"4":[2,94],"28":[2,94],"29":[2,94],"50":[2,94],"55":[2,94],"57":[2,94],"69":[2,94],"74":[2,94],"84":[2,94],"89":[2,94],"98":[2,94],"100":[2,94],"101":[2,94],"102":[2,94],"109":[2,94],"113":[2,94],"114":[2,94],"125":[2,94],"126":[2,94],"128":[2,94],"129":[2,94],"132":[2,94],"133":[2,94],"134":[2,94],"135":[2,94],"136":[2,94],"137":[2,94]},{"4":[2,105],"29":[2,105],"74":[2,105]},{"4":[2,106],"29":[2,106],"74":[2,106]},{"4":[2,101],"29":[2,101],"74":[2,101],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"8":323,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[1,260],"29":[1,324]},{"1":[2,164],"4":[2,164],"28":[2,164],"29":[2,164],"50":[2,164],"55":[2,164],"57":[2,164],"69":[2,164],"74":[2,164],"84":[2,164],"89":[2,164],"98":[2,164],"100":[2,164],"101":[2,164],"102":[2,164],"109":[2,164],"113":[2,164],"114":[2,164],"125":[2,164],"126":[2,164],"128":[2,164],"129":[2,164],"132":[2,164],"133":[2,164],"134":[2,164],"135":[2,164],"136":[2,164],"137":[2,164]},{"1":[2,166],"4":[2,166],"28":[2,166],"29":[2,166],"50":[2,166],"55":[2,166],"57":[2,166],"69":[2,166],"74":[2,166],"84":[2,166],"89":[2,166],"98":[2,166],"100":[2,166],"101":[2,166],"102":[2,166],"109":[2,166],"113":[2,166],"114":[2,166],"125":[2,166],"126":[2,166],"128":[2,166],"129":[2,166],"132":[2,166],"133":[2,166],"134":[2,166],"135":[2,166],"136":[2,166],"137":[2,166]},{"8":325,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":326,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,169],"4":[2,169],"28":[2,169],"29":[2,169],"50":[2,169],"55":[2,169],"57":[2,169],"69":[2,169],"74":[2,169],"84":[2,169],"89":[2,169],"98":[2,169],"100":[2,169],"101":[2,169],"102":[2,169],"109":[2,169],"113":[2,169],"114":[2,169],"125":[2,169],"126":[2,169],"128":[2,169],"129":[2,169],"132":[2,169],"133":[2,169],"134":[2,169],"135":[2,169],"136":[2,169],"137":[2,169]},{"8":327,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":328,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"110":329,"111":[1,230]},{"111":[2,150]},{"4":[2,123],"28":[2,123],"29":[2,123],"55":[2,123],"84":[2,123],"89":[2,123]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":330,"55":[1,233]},{"4":[2,124],"28":[2,124],"29":[2,124],"55":[2,124],"84":[2,124],"89":[2,124]},{"4":[2,90],"28":[2,90],"29":[2,90],"55":[2,90],"74":[2,90]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":331,"55":[1,237]},{"29":[1,332],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"29":[1,333]},{"1":[2,173],"4":[2,173],"28":[2,173],"29":[2,173],"50":[2,173],"55":[2,173],"57":[2,173],"69":[2,173],"74":[2,173],"84":[2,173],"89":[2,173],"98":[2,173],"100":[2,173],"101":[2,173],"102":[2,173],"109":[2,173],"113":[2,173],"114":[2,173],"125":[2,173],"126":[2,173],"128":[2,173],"129":[2,173],"132":[2,173],"133":[2,173],"134":[2,173],"135":[2,173],"136":[2,173],"137":[2,173]},{"29":[2,177],"119":[2,177],"121":[2,177]},{"4":[2,129],"28":[2,129],"55":[2,129],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"4":[1,260],"29":[1,334]},{"29":[1,335],"99":89,"100":[1,65],"102":[1,66],"105":90,"114":[1,68],"125":[1,87],"126":[1,88],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,99],"4":[2,99],"28":[2,99],"29":[2,99],"50":[2,99],"55":[2,99],"57":[2,99],"69":[2,99],"74":[2,99],"84":[2,99],"89":[2,99],"98":[2,99],"100":[2,99],"101":[2,99],"102":[2,99],"109":[2,99],"113":[2,99],"114":[2,99],"125":[2,99],"126":[2,99],"128":[2,99],"129":[2,99],"132":[2,99],"133":[2,99],"134":[2,99],"135":[2,99],"136":[2,99],"137":[2,99]},{"1":[2,154],"4":[2,154],"28":[2,154],"29":[2,154],"50":[2,154],"55":[2,154],"57":[2,154],"69":[2,154],"74":[2,154],"84":[2,154],"89":[2,154],"98":[2,154],"99":89,"100":[1,65],"101":[2,154],"102":[1,66],"105":90,"109":[2,154],"113":[2,154],"114":[1,68],"125":[2,154],"126":[2,154],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,155],"4":[2,155],"28":[2,155],"29":[2,155],"50":[2,155],"55":[2,155],"57":[2,155],"69":[2,155],"74":[2,155],"84":[2,155],"89":[2,155],"98":[2,155],"99":89,"100":[1,65],"101":[1,336],"102":[1,66],"105":90,"109":[2,155],"113":[2,155],"114":[1,68],"125":[2,155],"126":[2,155],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,159],"4":[2,159],"28":[2,159],"29":[2,159],"50":[2,159],"55":[2,159],"57":[2,159],"69":[2,159],"74":[2,159],"84":[2,159],"89":[2,159],"98":[2,159],"99":89,"100":[1,65],"101":[1,337],"102":[1,66],"105":90,"109":[1,338],"113":[2,159],"114":[1,68],"125":[2,159],"126":[2,159],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,158],"4":[2,158],"28":[2,158],"29":[2,158],"50":[2,158],"55":[2,158],"57":[2,158],"69":[2,158],"74":[2,158],"84":[2,158],"89":[2,158],"98":[2,158],"99":89,"100":[1,65],"101":[2,158],"102":[1,66],"105":90,"109":[2,158],"113":[2,158],"114":[1,68],"125":[2,158],"126":[2,158],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,168],"4":[2,168],"28":[2,168],"29":[2,168],"50":[2,168],"55":[2,168],"57":[2,168],"69":[2,168],"74":[2,168],"84":[2,168],"89":[2,168],"98":[2,168],"100":[2,168],"101":[2,168],"102":[2,168],"109":[2,168],"113":[2,168],"114":[2,168],"125":[2,168],"126":[2,168],"128":[2,168],"129":[2,168],"132":[2,168],"133":[2,168],"134":[2,168],"135":[2,168],"136":[2,168],"137":[2,168]},{"4":[1,274],"28":[1,275],"29":[1,339]},{"4":[1,279],"28":[1,280],"29":[1,340]},{"4":[2,42],"28":[2,42],"29":[2,42],"55":[2,42],"74":[2,42]},{"1":[2,171],"4":[2,171],"28":[2,171],"29":[2,171],"50":[2,171],"55":[2,171],"57":[2,171],"69":[2,171],"74":[2,171],"84":[2,171],"89":[2,171],"98":[2,171],"100":[2,171],"101":[2,171],"102":[2,171],"109":[2,171],"113":[2,171],"114":[2,171],"125":[2,171],"126":[2,171],"128":[2,171],"129":[2,171],"132":[2,171],"133":[2,171],"134":[2,171],"135":[2,171],"136":[2,171],"137":[2,171]},{"1":[2,95],"4":[2,95],"28":[2,95],"29":[2,95],"50":[2,95],"55":[2,95],"57":[2,95],"69":[2,95],"74":[2,95],"84":[2,95],"89":[2,95],"98":[2,95],"100":[2,95],"101":[2,95],"102":[2,95],"109":[2,95],"113":[2,95],"114":[2,95],"125":[2,95],"126":[2,95],"128":[2,95],"129":[2,95],"132":[2,95],"133":[2,95],"134":[2,95],"135":[2,95],"136":[2,95],"137":[2,95]},{"4":[2,102],"29":[2,102],"74":[2,102]},{"8":341,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":342,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"8":343,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"4":[2,125],"28":[2,125],"29":[2,125],"55":[2,125],"84":[2,125],"89":[2,125]},{"4":[2,91],"28":[2,91],"29":[2,91],"55":[2,91],"74":[2,91]},{"1":[2,156],"4":[2,156],"28":[2,156],"29":[2,156],"50":[2,156],"55":[2,156],"57":[2,156],"69":[2,156],"74":[2,156],"84":[2,156],"89":[2,156],"98":[2,156],"99":89,"100":[1,65],"101":[2,156],"102":[1,66],"105":90,"109":[2,156],"113":[2,156],"114":[1,68],"125":[2,156],"126":[2,156],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,160],"4":[2,160],"28":[2,160],"29":[2,160],"50":[2,160],"55":[2,160],"57":[2,160],"69":[2,160],"74":[2,160],"84":[2,160],"89":[2,160],"98":[2,160],"99":89,"100":[1,65],"101":[2,160],"102":[1,66],"105":90,"109":[2,160],"113":[2,160],"114":[1,68],"125":[2,160],"126":[2,160],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"1":[2,161],"4":[2,161],"28":[2,161],"29":[2,161],"50":[2,161],"55":[2,161],"57":[2,161],"69":[2,161],"74":[2,161],"84":[2,161],"89":[2,161],"98":[2,161],"99":89,"100":[1,65],"101":[1,344],"102":[1,66],"105":90,"109":[2,161],"113":[2,161],"114":[1,68],"125":[2,161],"126":[2,161],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]},{"8":345,"9":118,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":39,"61":50,"62":51,"63":30,"72":[1,70],"75":[1,46],"81":[1,31],"86":[1,57],"87":[1,58],"88":[1,69],"92":[1,41],"96":[1,49],"97":[1,56],"99":42,"100":[1,65],"102":[1,66],"103":43,"104":[1,67],"105":44,"114":[1,68],"117":[1,45],"122":40,"123":[1,63],"124":[1,64],"127":[1,34],"128":[1,35],"129":[1,36],"130":[1,37],"131":[1,38]},{"1":[2,162],"4":[2,162],"28":[2,162],"29":[2,162],"50":[2,162],"55":[2,162],"57":[2,162],"69":[2,162],"74":[2,162],"84":[2,162],"89":[2,162],"98":[2,162],"99":89,"100":[1,65],"101":[2,162],"102":[1,66],"105":90,"109":[2,162],"113":[2,162],"114":[1,68],"125":[2,162],"126":[2,162],"128":[1,81],"129":[1,80],"132":[1,79],"133":[1,82],"134":[1,83],"135":[1,84],"136":[1,85],"137":[1,86]}], -defaultActions: {"76":[2,4],"97":[2,113],"311":[2,150]}, +table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[3]},{"1":[2,2],"27":74,"47":[1,47]},{"1":[2,3],"4":[1,75]},{"4":[1,76]},{"1":[2,5],"4":[2,5],"29":[2,5]},{"5":77,"7":5,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[1,78],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,8],"4":[2,8],"29":[2,8],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,9],"4":[2,9],"29":[2,9],"100":93,"101":[1,65],"103":[1,66],"106":94,"115":[1,68],"126":[1,91],"127":[1,92]},{"1":[2,15],"4":[2,15],"28":[2,15],"29":[2,15],"50":[2,15],"55":[2,15],"58":[2,15],"61":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,15],"71":[1,103],"72":[1,104],"75":[2,15],"80":95,"83":[1,97],"84":[2,111],"85":[2,15],"90":[2,15],"99":[2,15],"101":[2,15],"102":[2,15],"103":[2,15],"110":[2,15],"114":[2,15],"115":[2,15],"126":[2,15],"127":[2,15],"129":[2,15],"130":[2,15],"133":[2,15],"134":[2,15],"135":[2,15],"136":[2,15],"137":[2,15],"138":[2,15]},{"1":[2,16],"4":[2,16],"28":[2,16],"29":[2,16],"50":[2,16],"55":[2,16],"58":[2,16],"61":106,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,16],"71":[1,103],"72":[1,104],"75":[2,16],"80":105,"83":[1,97],"84":[2,111],"85":[2,16],"90":[2,16],"99":[2,16],"101":[2,16],"102":[2,16],"103":[2,16],"110":[2,16],"114":[2,16],"115":[2,16],"126":[2,16],"127":[2,16],"129":[2,16],"130":[2,16],"133":[2,16],"134":[2,16],"135":[2,16],"136":[2,16],"137":[2,16],"138":[2,16]},{"1":[2,17],"4":[2,17],"28":[2,17],"29":[2,17],"50":[2,17],"55":[2,17],"58":[2,17],"70":[2,17],"75":[2,17],"85":[2,17],"90":[2,17],"99":[2,17],"101":[2,17],"102":[2,17],"103":[2,17],"110":[2,17],"114":[2,17],"115":[2,17],"126":[2,17],"127":[2,17],"129":[2,17],"130":[2,17],"133":[2,17],"134":[2,17],"135":[2,17],"136":[2,17],"137":[2,17],"138":[2,17]},{"1":[2,18],"4":[2,18],"28":[2,18],"29":[2,18],"50":[2,18],"55":[2,18],"58":[2,18],"70":[2,18],"75":[2,18],"85":[2,18],"90":[2,18],"99":[2,18],"101":[2,18],"102":[2,18],"103":[2,18],"110":[2,18],"114":[2,18],"115":[2,18],"126":[2,18],"127":[2,18],"129":[2,18],"130":[2,18],"133":[2,18],"134":[2,18],"135":[2,18],"136":[2,18],"137":[2,18],"138":[2,18]},{"1":[2,19],"4":[2,19],"28":[2,19],"29":[2,19],"50":[2,19],"55":[2,19],"58":[2,19],"70":[2,19],"75":[2,19],"85":[2,19],"90":[2,19],"99":[2,19],"101":[2,19],"102":[2,19],"103":[2,19],"110":[2,19],"114":[2,19],"115":[2,19],"126":[2,19],"127":[2,19],"129":[2,19],"130":[2,19],"133":[2,19],"134":[2,19],"135":[2,19],"136":[2,19],"137":[2,19],"138":[2,19]},{"1":[2,20],"4":[2,20],"28":[2,20],"29":[2,20],"50":[2,20],"55":[2,20],"58":[2,20],"70":[2,20],"75":[2,20],"85":[2,20],"90":[2,20],"99":[2,20],"101":[2,20],"102":[2,20],"103":[2,20],"110":[2,20],"114":[2,20],"115":[2,20],"126":[2,20],"127":[2,20],"129":[2,20],"130":[2,20],"133":[2,20],"134":[2,20],"135":[2,20],"136":[2,20],"137":[2,20],"138":[2,20]},{"1":[2,21],"4":[2,21],"28":[2,21],"29":[2,21],"50":[2,21],"55":[2,21],"58":[2,21],"70":[2,21],"75":[2,21],"85":[2,21],"90":[2,21],"99":[2,21],"101":[2,21],"102":[2,21],"103":[2,21],"110":[2,21],"114":[2,21],"115":[2,21],"126":[2,21],"127":[2,21],"129":[2,21],"130":[2,21],"133":[2,21],"134":[2,21],"135":[2,21],"136":[2,21],"137":[2,21],"138":[2,21]},{"1":[2,22],"4":[2,22],"28":[2,22],"29":[2,22],"50":[2,22],"55":[2,22],"58":[2,22],"70":[2,22],"75":[2,22],"85":[2,22],"90":[2,22],"99":[2,22],"101":[2,22],"102":[2,22],"103":[2,22],"110":[2,22],"114":[2,22],"115":[2,22],"126":[2,22],"127":[2,22],"129":[2,22],"130":[2,22],"133":[2,22],"134":[2,22],"135":[2,22],"136":[2,22],"137":[2,22],"138":[2,22]},{"1":[2,23],"4":[2,23],"28":[2,23],"29":[2,23],"50":[2,23],"55":[2,23],"58":[2,23],"70":[2,23],"75":[2,23],"85":[2,23],"90":[2,23],"99":[2,23],"101":[2,23],"102":[2,23],"103":[2,23],"110":[2,23],"114":[2,23],"115":[2,23],"126":[2,23],"127":[2,23],"129":[2,23],"130":[2,23],"133":[2,23],"134":[2,23],"135":[2,23],"136":[2,23],"137":[2,23],"138":[2,23]},{"1":[2,24],"4":[2,24],"28":[2,24],"29":[2,24],"50":[2,24],"55":[2,24],"58":[2,24],"70":[2,24],"75":[2,24],"85":[2,24],"90":[2,24],"99":[2,24],"101":[2,24],"102":[2,24],"103":[2,24],"110":[2,24],"114":[2,24],"115":[2,24],"126":[2,24],"127":[2,24],"129":[2,24],"130":[2,24],"133":[2,24],"134":[2,24],"135":[2,24],"136":[2,24],"137":[2,24],"138":[2,24]},{"1":[2,25],"4":[2,25],"28":[2,25],"29":[2,25],"50":[2,25],"55":[2,25],"58":[2,25],"70":[2,25],"75":[2,25],"85":[2,25],"90":[2,25],"99":[2,25],"101":[2,25],"102":[2,25],"103":[2,25],"110":[2,25],"114":[2,25],"115":[2,25],"126":[2,25],"127":[2,25],"129":[2,25],"130":[2,25],"133":[2,25],"134":[2,25],"135":[2,25],"136":[2,25],"137":[2,25],"138":[2,25]},{"1":[2,26],"4":[2,26],"28":[2,26],"29":[2,26],"50":[2,26],"55":[2,26],"58":[2,26],"70":[2,26],"75":[2,26],"85":[2,26],"90":[2,26],"99":[2,26],"101":[2,26],"102":[2,26],"103":[2,26],"110":[2,26],"114":[2,26],"115":[2,26],"126":[2,26],"127":[2,26],"129":[2,26],"130":[2,26],"133":[2,26],"134":[2,26],"135":[2,26],"136":[2,26],"137":[2,26],"138":[2,26]},{"1":[2,27],"4":[2,27],"28":[2,27],"29":[2,27],"50":[2,27],"55":[2,27],"58":[2,27],"70":[2,27],"75":[2,27],"85":[2,27],"90":[2,27],"99":[2,27],"101":[2,27],"102":[2,27],"103":[2,27],"110":[2,27],"114":[2,27],"115":[2,27],"126":[2,27],"127":[2,27],"129":[2,27],"130":[2,27],"133":[2,27],"134":[2,27],"135":[2,27],"136":[2,27],"137":[2,27],"138":[2,27]},{"1":[2,10],"4":[2,10],"29":[2,10],"101":[2,10],"103":[2,10],"115":[2,10],"126":[2,10],"127":[2,10]},{"1":[2,11],"4":[2,11],"29":[2,11],"101":[2,11],"103":[2,11],"115":[2,11],"126":[2,11],"127":[2,11]},{"1":[2,12],"4":[2,12],"29":[2,12],"101":[2,12],"103":[2,12],"115":[2,12],"126":[2,12],"127":[2,12]},{"1":[2,13],"4":[2,13],"29":[2,13],"101":[2,13],"103":[2,13],"115":[2,13],"126":[2,13],"127":[2,13]},{"1":[2,14],"4":[2,14],"29":[2,14],"101":[2,14],"103":[2,14],"115":[2,14],"126":[2,14],"127":[2,14]},{"1":[2,73],"4":[2,73],"28":[2,73],"29":[2,73],"40":[1,107],"50":[2,73],"55":[2,73],"58":[2,73],"65":[2,73],"66":[2,73],"67":[2,73],"69":[2,73],"70":[2,73],"71":[2,73],"72":[2,73],"75":[2,73],"83":[2,73],"84":[2,73],"85":[2,73],"90":[2,73],"99":[2,73],"101":[2,73],"102":[2,73],"103":[2,73],"110":[2,73],"114":[2,73],"115":[2,73],"126":[2,73],"127":[2,73],"129":[2,73],"130":[2,73],"133":[2,73],"134":[2,73],"135":[2,73],"136":[2,73],"137":[2,73],"138":[2,73]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"50":[2,74],"55":[2,74],"58":[2,74],"65":[2,74],"66":[2,74],"67":[2,74],"69":[2,74],"70":[2,74],"71":[2,74],"72":[2,74],"75":[2,74],"83":[2,74],"84":[2,74],"85":[2,74],"90":[2,74],"99":[2,74],"101":[2,74],"102":[2,74],"103":[2,74],"110":[2,74],"114":[2,74],"115":[2,74],"126":[2,74],"127":[2,74],"129":[2,74],"130":[2,74],"133":[2,74],"134":[2,74],"135":[2,74],"136":[2,74],"137":[2,74],"138":[2,74]},{"1":[2,75],"4":[2,75],"28":[2,75],"29":[2,75],"50":[2,75],"55":[2,75],"58":[2,75],"65":[2,75],"66":[2,75],"67":[2,75],"69":[2,75],"70":[2,75],"71":[2,75],"72":[2,75],"75":[2,75],"83":[2,75],"84":[2,75],"85":[2,75],"90":[2,75],"99":[2,75],"101":[2,75],"102":[2,75],"103":[2,75],"110":[2,75],"114":[2,75],"115":[2,75],"126":[2,75],"127":[2,75],"129":[2,75],"130":[2,75],"133":[2,75],"134":[2,75],"135":[2,75],"136":[2,75],"137":[2,75],"138":[2,75]},{"1":[2,76],"4":[2,76],"28":[2,76],"29":[2,76],"50":[2,76],"55":[2,76],"58":[2,76],"65":[2,76],"66":[2,76],"67":[2,76],"69":[2,76],"70":[2,76],"71":[2,76],"72":[2,76],"75":[2,76],"83":[2,76],"84":[2,76],"85":[2,76],"90":[2,76],"99":[2,76],"101":[2,76],"102":[2,76],"103":[2,76],"110":[2,76],"114":[2,76],"115":[2,76],"126":[2,76],"127":[2,76],"129":[2,76],"130":[2,76],"133":[2,76],"134":[2,76],"135":[2,76],"136":[2,76],"137":[2,76],"138":[2,76]},{"1":[2,109],"4":[2,109],"28":[2,109],"29":[2,109],"50":[2,109],"55":[2,109],"58":[2,109],"65":[2,109],"66":[2,109],"67":[2,109],"69":[2,109],"70":[2,109],"71":[2,109],"72":[2,109],"75":[2,109],"81":108,"83":[2,109],"84":[1,109],"85":[2,109],"90":[2,109],"99":[2,109],"101":[2,109],"102":[2,109],"103":[2,109],"110":[2,109],"114":[2,109],"115":[2,109],"126":[2,109],"127":[2,109],"129":[2,109],"130":[2,109],"133":[2,109],"134":[2,109],"135":[2,109],"136":[2,109],"137":[2,109],"138":[2,109]},{"30":113,"31":[1,73],"44":114,"49":110,"50":[2,57],"55":[2,57],"56":111,"57":112,"88":[1,115]},{"4":[1,117],"6":116,"28":[1,6]},{"8":118,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":120,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":121,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"15":123,"16":124,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":125,"44":62,"45":29,"60":122,"62":50,"63":51,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"15":123,"16":124,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":125,"44":62,"45":29,"60":126,"62":50,"63":51,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"1":[2,70],"4":[2,70],"28":[2,70],"29":[2,70],"40":[2,70],"50":[2,70],"55":[2,70],"58":[2,70],"65":[2,70],"66":[2,70],"67":[2,70],"69":[2,70],"70":[2,70],"71":[2,70],"72":[2,70],"75":[2,70],"77":[1,130],"83":[2,70],"84":[2,70],"85":[2,70],"90":[2,70],"99":[2,70],"101":[2,70],"102":[2,70],"103":[2,70],"110":[2,70],"114":[2,70],"115":[2,70],"126":[2,70],"127":[2,70],"129":[2,70],"130":[2,70],"131":[1,127],"132":[1,128],"133":[2,70],"134":[2,70],"135":[2,70],"136":[2,70],"137":[2,70],"138":[2,70],"139":[1,129]},{"1":[2,181],"4":[2,181],"28":[2,181],"29":[2,181],"50":[2,181],"55":[2,181],"58":[2,181],"70":[2,181],"75":[2,181],"85":[2,181],"90":[2,181],"99":[2,181],"101":[2,181],"102":[2,181],"103":[2,181],"110":[2,181],"114":[2,181],"115":[2,181],"120":[1,131],"126":[2,181],"127":[2,181],"129":[2,181],"130":[2,181],"133":[2,181],"134":[2,181],"135":[2,181],"136":[2,181],"137":[2,181],"138":[2,181]},{"4":[1,117],"6":132,"28":[1,6]},{"4":[1,117],"6":133,"28":[1,6]},{"1":[2,143],"4":[2,143],"28":[2,143],"29":[2,143],"50":[2,143],"55":[2,143],"58":[2,143],"70":[2,143],"75":[2,143],"85":[2,143],"90":[2,143],"99":[2,143],"101":[2,143],"102":[2,143],"103":[2,143],"110":[2,143],"114":[2,143],"115":[2,143],"126":[2,143],"127":[2,143],"129":[2,143],"130":[2,143],"133":[2,143],"134":[2,143],"135":[2,143],"136":[2,143],"137":[2,143],"138":[2,143]},{"4":[1,117],"6":134,"28":[1,6]},{"8":135,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,136],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,96],"4":[2,96],"15":123,"16":124,"28":[1,138],"29":[2,96],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":125,"44":62,"45":29,"50":[2,96],"55":[2,96],"58":[2,96],"60":137,"62":50,"63":51,"64":30,"70":[2,96],"73":[1,70],"75":[2,96],"77":[1,139],"82":[1,31],"85":[2,96],"87":[1,57],"88":[1,58],"89":[1,69],"90":[2,96],"98":[1,56],"99":[2,96],"101":[2,96],"102":[2,96],"103":[2,96],"110":[2,96],"114":[2,96],"115":[2,96],"126":[2,96],"127":[2,96],"129":[2,96],"130":[2,96],"133":[2,96],"134":[2,96],"135":[2,96],"136":[2,96],"137":[2,96],"138":[2,96]},{"1":[2,50],"4":[2,50],"28":[2,50],"29":[2,50],"50":[2,50],"55":[2,50],"58":[2,50],"70":[2,50],"75":[2,50],"85":[2,50],"90":[2,50],"95":[2,50],"96":[2,50],"99":[2,50],"101":[2,50],"102":[2,50],"103":[2,50],"110":[2,50],"114":[2,50],"115":[2,50],"120":[2,50],"122":[2,50],"126":[2,50],"127":[2,50],"129":[2,50],"130":[2,50],"133":[2,50],"134":[2,50],"135":[2,50],"136":[2,50],"137":[2,50],"138":[2,50]},{"1":[2,49],"4":[2,49],"8":140,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[2,49],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[2,49],"103":[2,49],"104":43,"105":[1,67],"106":44,"115":[2,49],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"126":[2,49],"127":[2,49],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":141,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"40":[2,71],"50":[2,71],"55":[2,71],"58":[2,71],"65":[2,71],"66":[2,71],"67":[2,71],"69":[2,71],"70":[2,71],"71":[2,71],"72":[2,71],"75":[2,71],"83":[2,71],"84":[2,71],"85":[2,71],"90":[2,71],"99":[2,71],"101":[2,71],"102":[2,71],"103":[2,71],"110":[2,71],"114":[2,71],"115":[2,71],"126":[2,71],"127":[2,71],"129":[2,71],"130":[2,71],"133":[2,71],"134":[2,71],"135":[2,71],"136":[2,71],"137":[2,71],"138":[2,71]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"40":[2,72],"50":[2,72],"55":[2,72],"58":[2,72],"65":[2,72],"66":[2,72],"67":[2,72],"69":[2,72],"70":[2,72],"71":[2,72],"72":[2,72],"75":[2,72],"83":[2,72],"84":[2,72],"85":[2,72],"90":[2,72],"99":[2,72],"101":[2,72],"102":[2,72],"103":[2,72],"110":[2,72],"114":[2,72],"115":[2,72],"126":[2,72],"127":[2,72],"129":[2,72],"130":[2,72],"133":[2,72],"134":[2,72],"135":[2,72],"136":[2,72],"137":[2,72],"138":[2,72]},{"1":[2,34],"4":[2,34],"28":[2,34],"29":[2,34],"50":[2,34],"55":[2,34],"58":[2,34],"65":[2,34],"66":[2,34],"67":[2,34],"69":[2,34],"70":[2,34],"71":[2,34],"72":[2,34],"75":[2,34],"83":[2,34],"84":[2,34],"85":[2,34],"90":[2,34],"99":[2,34],"101":[2,34],"102":[2,34],"103":[2,34],"110":[2,34],"114":[2,34],"115":[2,34],"126":[2,34],"127":[2,34],"129":[2,34],"130":[2,34],"133":[2,34],"134":[2,34],"135":[2,34],"136":[2,34],"137":[2,34],"138":[2,34]},{"1":[2,35],"4":[2,35],"28":[2,35],"29":[2,35],"50":[2,35],"55":[2,35],"58":[2,35],"65":[2,35],"66":[2,35],"67":[2,35],"69":[2,35],"70":[2,35],"71":[2,35],"72":[2,35],"75":[2,35],"83":[2,35],"84":[2,35],"85":[2,35],"90":[2,35],"99":[2,35],"101":[2,35],"102":[2,35],"103":[2,35],"110":[2,35],"114":[2,35],"115":[2,35],"126":[2,35],"127":[2,35],"129":[2,35],"130":[2,35],"133":[2,35],"134":[2,35],"135":[2,35],"136":[2,35],"137":[2,35],"138":[2,35]},{"1":[2,36],"4":[2,36],"28":[2,36],"29":[2,36],"50":[2,36],"55":[2,36],"58":[2,36],"65":[2,36],"66":[2,36],"67":[2,36],"69":[2,36],"70":[2,36],"71":[2,36],"72":[2,36],"75":[2,36],"83":[2,36],"84":[2,36],"85":[2,36],"90":[2,36],"99":[2,36],"101":[2,36],"102":[2,36],"103":[2,36],"110":[2,36],"114":[2,36],"115":[2,36],"126":[2,36],"127":[2,36],"129":[2,36],"130":[2,36],"133":[2,36],"134":[2,36],"135":[2,36],"136":[2,36],"137":[2,36],"138":[2,36]},{"1":[2,37],"4":[2,37],"28":[2,37],"29":[2,37],"50":[2,37],"55":[2,37],"58":[2,37],"65":[2,37],"66":[2,37],"67":[2,37],"69":[2,37],"70":[2,37],"71":[2,37],"72":[2,37],"75":[2,37],"83":[2,37],"84":[2,37],"85":[2,37],"90":[2,37],"99":[2,37],"101":[2,37],"102":[2,37],"103":[2,37],"110":[2,37],"114":[2,37],"115":[2,37],"126":[2,37],"127":[2,37],"129":[2,37],"130":[2,37],"133":[2,37],"134":[2,37],"135":[2,37],"136":[2,37],"137":[2,37],"138":[2,37]},{"8":142,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,115],"4":[2,115],"28":[2,115],"29":[2,115],"50":[2,115],"55":[2,115],"58":[2,115],"65":[2,115],"66":[2,115],"67":[2,115],"69":[2,115],"70":[2,115],"71":[2,115],"72":[2,115],"75":[2,115],"83":[2,115],"84":[2,115],"85":[2,115],"90":[2,115],"99":[2,115],"101":[2,115],"102":[2,115],"103":[2,115],"110":[2,115],"114":[2,115],"115":[2,115],"126":[2,115],"127":[2,115],"129":[2,115],"130":[2,115],"133":[2,115],"134":[2,115],"135":[2,115],"136":[2,115],"137":[2,115],"138":[2,115]},{"1":[2,116],"4":[2,116],"28":[2,116],"29":[2,116],"30":143,"31":[1,73],"50":[2,116],"55":[2,116],"58":[2,116],"65":[2,116],"66":[2,116],"67":[2,116],"69":[2,116],"70":[2,116],"71":[2,116],"72":[2,116],"75":[2,116],"83":[2,116],"84":[2,116],"85":[2,116],"90":[2,116],"99":[2,116],"101":[2,116],"102":[2,116],"103":[2,116],"110":[2,116],"114":[2,116],"115":[2,116],"126":[2,116],"127":[2,116],"129":[2,116],"130":[2,116],"133":[2,116],"134":[2,116],"135":[2,116],"136":[2,116],"137":[2,116],"138":[2,116]},{"4":[2,53],"28":[2,53]},{"4":[2,54],"28":[2,54]},{"1":[2,66],"4":[2,66],"28":[2,66],"29":[2,66],"40":[2,66],"50":[2,66],"55":[2,66],"58":[2,66],"65":[2,66],"66":[2,66],"67":[2,66],"69":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"75":[2,66],"77":[2,66],"83":[2,66],"84":[2,66],"85":[2,66],"90":[2,66],"99":[2,66],"101":[2,66],"102":[2,66],"103":[2,66],"110":[2,66],"114":[2,66],"115":[2,66],"126":[2,66],"127":[2,66],"129":[2,66],"130":[2,66],"131":[2,66],"132":[2,66],"133":[2,66],"134":[2,66],"135":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"40":[2,69],"50":[2,69],"55":[2,69],"58":[2,69],"65":[2,69],"66":[2,69],"67":[2,69],"69":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"75":[2,69],"77":[2,69],"83":[2,69],"84":[2,69],"85":[2,69],"90":[2,69],"99":[2,69],"101":[2,69],"102":[2,69],"103":[2,69],"110":[2,69],"114":[2,69],"115":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"131":[2,69],"132":[2,69],"133":[2,69],"134":[2,69],"135":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69]},{"8":144,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":145,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":146,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":147,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[1,117],"6":148,"8":149,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"30":151,"31":[1,73],"62":153,"63":154,"73":[1,70],"89":[1,69],"107":150,"116":[1,152]},{"8":159,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,158],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":160,"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"86":156,"87":[1,57],"88":[1,58],"89":[1,69],"90":[1,155],"91":157,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,86],"27":165,"28":[2,86],"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":162,"42":163,"44":164,"45":168,"47":[1,47],"55":[2,86],"74":161,"75":[2,86],"88":[1,115],"98":[1,56]},{"1":[2,32],"4":[2,32],"28":[2,32],"29":[2,32],"43":[2,32],"50":[2,32],"55":[2,32],"58":[2,32],"65":[2,32],"66":[2,32],"67":[2,32],"69":[2,32],"70":[2,32],"71":[2,32],"72":[2,32],"75":[2,32],"83":[2,32],"84":[2,32],"85":[2,32],"90":[2,32],"99":[2,32],"101":[2,32],"102":[2,32],"103":[2,32],"110":[2,32],"114":[2,32],"115":[2,32],"126":[2,32],"127":[2,32],"129":[2,32],"130":[2,32],"133":[2,32],"134":[2,32],"135":[2,32],"136":[2,32],"137":[2,32],"138":[2,32]},{"1":[2,33],"4":[2,33],"28":[2,33],"29":[2,33],"43":[2,33],"50":[2,33],"55":[2,33],"58":[2,33],"65":[2,33],"66":[2,33],"67":[2,33],"69":[2,33],"70":[2,33],"71":[2,33],"72":[2,33],"75":[2,33],"83":[2,33],"84":[2,33],"85":[2,33],"90":[2,33],"99":[2,33],"101":[2,33],"102":[2,33],"103":[2,33],"110":[2,33],"114":[2,33],"115":[2,33],"126":[2,33],"127":[2,33],"129":[2,33],"130":[2,33],"133":[2,33],"134":[2,33],"135":[2,33],"136":[2,33],"137":[2,33],"138":[2,33]},{"1":[2,31],"4":[2,31],"28":[2,31],"29":[2,31],"40":[2,31],"43":[2,31],"50":[2,31],"55":[2,31],"58":[2,31],"65":[2,31],"66":[2,31],"67":[2,31],"69":[2,31],"70":[2,31],"71":[2,31],"72":[2,31],"75":[2,31],"77":[2,31],"83":[2,31],"84":[2,31],"85":[2,31],"90":[2,31],"99":[2,31],"101":[2,31],"102":[2,31],"103":[2,31],"109":[2,31],"110":[2,31],"112":[2,31],"114":[2,31],"115":[2,31],"117":[2,31],"126":[2,31],"127":[2,31],"129":[2,31],"130":[2,31],"131":[2,31],"132":[2,31],"133":[2,31],"134":[2,31],"135":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31]},{"1":[2,30],"4":[2,30],"28":[2,30],"29":[2,30],"50":[2,30],"55":[2,30],"58":[2,30],"70":[2,30],"75":[2,30],"85":[2,30],"90":[2,30],"95":[2,30],"96":[2,30],"99":[2,30],"101":[2,30],"102":[2,30],"103":[2,30],"110":[2,30],"114":[2,30],"115":[2,30],"120":[2,30],"122":[2,30],"126":[2,30],"127":[2,30],"129":[2,30],"130":[2,30],"133":[2,30],"134":[2,30],"135":[2,30],"136":[2,30],"137":[2,30],"138":[2,30]},{"1":[2,7],"4":[2,7],"7":169,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[2,7],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,4]},{"4":[1,75],"29":[1,170]},{"1":[2,29],"4":[2,29],"28":[2,29],"29":[2,29],"50":[2,29],"55":[2,29],"58":[2,29],"70":[2,29],"75":[2,29],"85":[2,29],"90":[2,29],"95":[2,29],"96":[2,29],"99":[2,29],"101":[2,29],"102":[2,29],"103":[2,29],"110":[2,29],"114":[2,29],"115":[2,29],"120":[2,29],"122":[2,29],"126":[2,29],"127":[2,29],"129":[2,29],"130":[2,29],"133":[2,29],"134":[2,29],"135":[2,29],"136":[2,29],"137":[2,29],"138":[2,29]},{"1":[2,193],"4":[2,193],"28":[2,193],"29":[2,193],"50":[2,193],"55":[2,193],"58":[2,193],"70":[2,193],"75":[2,193],"85":[2,193],"90":[2,193],"99":[2,193],"101":[2,193],"102":[2,193],"103":[2,193],"110":[2,193],"114":[2,193],"115":[2,193],"126":[2,193],"127":[2,193],"129":[2,193],"130":[2,193],"133":[2,193],"134":[2,193],"135":[2,193],"136":[2,193],"137":[2,193],"138":[2,193]},{"8":171,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":172,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":173,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":174,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":175,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":176,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":177,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":178,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":179,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,142],"4":[2,142],"28":[2,142],"29":[2,142],"50":[2,142],"55":[2,142],"58":[2,142],"70":[2,142],"75":[2,142],"85":[2,142],"90":[2,142],"99":[2,142],"101":[2,142],"102":[2,142],"103":[2,142],"110":[2,142],"114":[2,142],"115":[2,142],"126":[2,142],"127":[2,142],"129":[2,142],"130":[2,142],"133":[2,142],"134":[2,142],"135":[2,142],"136":[2,142],"137":[2,142],"138":[2,142]},{"1":[2,147],"4":[2,147],"28":[2,147],"29":[2,147],"50":[2,147],"55":[2,147],"58":[2,147],"70":[2,147],"75":[2,147],"85":[2,147],"90":[2,147],"99":[2,147],"101":[2,147],"102":[2,147],"103":[2,147],"110":[2,147],"114":[2,147],"115":[2,147],"126":[2,147],"127":[2,147],"129":[2,147],"130":[2,147],"133":[2,147],"134":[2,147],"135":[2,147],"136":[2,147],"137":[2,147],"138":[2,147]},{"8":180,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":181,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,141],"4":[2,141],"28":[2,141],"29":[2,141],"50":[2,141],"55":[2,141],"58":[2,141],"70":[2,141],"75":[2,141],"85":[2,141],"90":[2,141],"99":[2,141],"101":[2,141],"102":[2,141],"103":[2,141],"110":[2,141],"114":[2,141],"115":[2,141],"126":[2,141],"127":[2,141],"129":[2,141],"130":[2,141],"133":[2,141],"134":[2,141],"135":[2,141],"136":[2,141],"137":[2,141],"138":[2,141]},{"1":[2,146],"4":[2,146],"28":[2,146],"29":[2,146],"50":[2,146],"55":[2,146],"58":[2,146],"70":[2,146],"75":[2,146],"85":[2,146],"90":[2,146],"99":[2,146],"101":[2,146],"102":[2,146],"103":[2,146],"110":[2,146],"114":[2,146],"115":[2,146],"126":[2,146],"127":[2,146],"129":[2,146],"130":[2,146],"133":[2,146],"134":[2,146],"135":[2,146],"136":[2,146],"137":[2,146],"138":[2,146]},{"81":182,"84":[1,109]},{"1":[2,67],"4":[2,67],"28":[2,67],"29":[2,67],"40":[2,67],"50":[2,67],"55":[2,67],"58":[2,67],"65":[2,67],"66":[2,67],"67":[2,67],"69":[2,67],"70":[2,67],"71":[2,67],"72":[2,67],"75":[2,67],"77":[2,67],"83":[2,67],"84":[2,67],"85":[2,67],"90":[2,67],"99":[2,67],"101":[2,67],"102":[2,67],"103":[2,67],"110":[2,67],"114":[2,67],"115":[2,67],"126":[2,67],"127":[2,67],"129":[2,67],"130":[2,67],"131":[2,67],"132":[2,67],"133":[2,67],"134":[2,67],"135":[2,67],"136":[2,67],"137":[2,67],"138":[2,67],"139":[2,67]},{"84":[2,112]},{"30":183,"31":[1,73]},{"30":184,"31":[1,73]},{"1":[2,80],"4":[2,80],"28":[2,80],"29":[2,80],"30":185,"31":[1,73],"40":[2,80],"50":[2,80],"55":[2,80],"58":[2,80],"65":[2,80],"66":[2,80],"67":[2,80],"69":[2,80],"70":[2,80],"71":[2,80],"72":[2,80],"75":[2,80],"77":[2,80],"83":[2,80],"84":[2,80],"85":[2,80],"90":[2,80],"99":[2,80],"101":[2,80],"102":[2,80],"103":[2,80],"110":[2,80],"114":[2,80],"115":[2,80],"126":[2,80],"127":[2,80],"129":[2,80],"130":[2,80],"131":[2,80],"132":[2,80],"133":[2,80],"134":[2,80],"135":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80]},{"1":[2,81],"4":[2,81],"28":[2,81],"29":[2,81],"40":[2,81],"50":[2,81],"55":[2,81],"58":[2,81],"65":[2,81],"66":[2,81],"67":[2,81],"69":[2,81],"70":[2,81],"71":[2,81],"72":[2,81],"75":[2,81],"77":[2,81],"83":[2,81],"84":[2,81],"85":[2,81],"90":[2,81],"99":[2,81],"101":[2,81],"102":[2,81],"103":[2,81],"110":[2,81],"114":[2,81],"115":[2,81],"126":[2,81],"127":[2,81],"129":[2,81],"130":[2,81],"131":[2,81],"132":[2,81],"133":[2,81],"134":[2,81],"135":[2,81],"136":[2,81],"137":[2,81],"138":[2,81],"139":[2,81]},{"8":186,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"68":187,"69":[1,102],"71":[1,103],"72":[1,104]},{"68":188,"69":[1,102],"71":[1,103],"72":[1,104]},{"81":189,"84":[1,109]},{"1":[2,68],"4":[2,68],"28":[2,68],"29":[2,68],"40":[2,68],"50":[2,68],"55":[2,68],"58":[2,68],"65":[2,68],"66":[2,68],"67":[2,68],"69":[2,68],"70":[2,68],"71":[2,68],"72":[2,68],"75":[2,68],"77":[2,68],"83":[2,68],"84":[2,68],"85":[2,68],"90":[2,68],"99":[2,68],"101":[2,68],"102":[2,68],"103":[2,68],"110":[2,68],"114":[2,68],"115":[2,68],"126":[2,68],"127":[2,68],"129":[2,68],"130":[2,68],"131":[2,68],"132":[2,68],"133":[2,68],"134":[2,68],"135":[2,68],"136":[2,68],"137":[2,68],"138":[2,68],"139":[2,68]},{"8":190,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,191],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,110],"4":[2,110],"28":[2,110],"29":[2,110],"50":[2,110],"55":[2,110],"58":[2,110],"65":[2,110],"66":[2,110],"67":[2,110],"69":[2,110],"70":[2,110],"71":[2,110],"72":[2,110],"75":[2,110],"83":[2,110],"84":[2,110],"85":[2,110],"90":[2,110],"99":[2,110],"101":[2,110],"102":[2,110],"103":[2,110],"110":[2,110],"114":[2,110],"115":[2,110],"126":[2,110],"127":[2,110],"129":[2,110],"130":[2,110],"133":[2,110],"134":[2,110],"135":[2,110],"136":[2,110],"137":[2,110],"138":[2,110]},{"8":159,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,158],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":160,"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"85":[1,192],"86":193,"87":[1,57],"88":[1,58],"89":[1,69],"91":157,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"50":[1,194],"55":[1,195]},{"50":[2,58],"55":[2,58]},{"40":[1,197],"50":[2,60],"55":[2,60],"58":[1,196]},{"40":[2,63],"50":[2,63],"55":[2,63],"58":[2,63]},{"40":[2,64],"50":[2,64],"55":[2,64],"58":[2,64]},{"30":143,"31":[1,73]},{"1":[2,52],"4":[2,52],"28":[2,52],"29":[2,52],"50":[2,52],"55":[2,52],"58":[2,52],"70":[2,52],"75":[2,52],"85":[2,52],"90":[2,52],"99":[2,52],"101":[2,52],"102":[2,52],"103":[2,52],"110":[2,52],"114":[2,52],"115":[2,52],"126":[2,52],"127":[2,52],"129":[2,52],"130":[2,52],"133":[2,52],"134":[2,52],"135":[2,52],"136":[2,52],"137":[2,52],"138":[2,52]},{"27":74,"47":[1,47]},{"1":[2,186],"4":[2,186],"28":[2,186],"29":[2,186],"50":[2,186],"55":[2,186],"58":[2,186],"70":[2,186],"75":[2,186],"85":[2,186],"90":[2,186],"99":[2,186],"100":89,"101":[2,186],"102":[2,186],"103":[2,186],"106":90,"110":[2,186],"114":[2,186],"115":[2,186],"126":[2,186],"127":[2,186],"129":[2,186],"130":[2,186],"133":[1,79],"134":[2,186],"135":[2,186],"136":[2,186],"137":[2,186],"138":[2,186]},{"100":93,"101":[1,65],"103":[1,66],"106":94,"115":[1,68],"126":[1,91],"127":[1,92]},{"1":[2,187],"4":[2,187],"28":[2,187],"29":[2,187],"50":[2,187],"55":[2,187],"58":[2,187],"70":[2,187],"75":[2,187],"85":[2,187],"90":[2,187],"99":[2,187],"100":89,"101":[2,187],"102":[2,187],"103":[2,187],"106":90,"110":[2,187],"114":[2,187],"115":[2,187],"126":[2,187],"127":[2,187],"129":[2,187],"130":[2,187],"133":[1,79],"134":[2,187],"135":[2,187],"136":[2,187],"137":[2,187],"138":[2,187]},{"1":[2,188],"4":[2,188],"28":[2,188],"29":[2,188],"50":[2,188],"55":[2,188],"58":[2,188],"70":[2,188],"75":[2,188],"85":[2,188],"90":[2,188],"99":[2,188],"100":89,"101":[2,188],"102":[2,188],"103":[2,188],"106":90,"110":[2,188],"114":[2,188],"115":[2,188],"126":[2,188],"127":[2,188],"129":[2,188],"130":[2,188],"133":[1,79],"134":[2,188],"135":[2,188],"136":[2,188],"137":[2,188],"138":[2,188]},{"1":[2,189],"4":[2,189],"28":[2,189],"29":[2,189],"50":[2,189],"55":[2,189],"58":[2,189],"65":[2,70],"66":[2,70],"67":[2,70],"69":[2,70],"70":[2,189],"71":[2,70],"72":[2,70],"75":[2,189],"83":[2,70],"84":[2,70],"85":[2,189],"90":[2,189],"99":[2,189],"101":[2,189],"102":[2,189],"103":[2,189],"110":[2,189],"114":[2,189],"115":[2,189],"126":[2,189],"127":[2,189],"129":[2,189],"130":[2,189],"133":[2,189],"134":[2,189],"135":[2,189],"136":[2,189],"137":[2,189],"138":[2,189]},{"61":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"71":[1,103],"72":[1,104],"80":95,"83":[1,97],"84":[2,111]},{"61":106,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"71":[1,103],"72":[1,104],"80":105,"83":[1,97],"84":[2,111]},{"1":[2,73],"4":[2,73],"28":[2,73],"29":[2,73],"50":[2,73],"55":[2,73],"58":[2,73],"65":[2,73],"66":[2,73],"67":[2,73],"69":[2,73],"70":[2,73],"71":[2,73],"72":[2,73],"75":[2,73],"83":[2,73],"84":[2,73],"85":[2,73],"90":[2,73],"99":[2,73],"101":[2,73],"102":[2,73],"103":[2,73],"110":[2,73],"114":[2,73],"115":[2,73],"126":[2,73],"127":[2,73],"129":[2,73],"130":[2,73],"133":[2,73],"134":[2,73],"135":[2,73],"136":[2,73],"137":[2,73],"138":[2,73]},{"1":[2,190],"4":[2,190],"28":[2,190],"29":[2,190],"50":[2,190],"55":[2,190],"58":[2,190],"65":[2,70],"66":[2,70],"67":[2,70],"69":[2,70],"70":[2,190],"71":[2,70],"72":[2,70],"75":[2,190],"83":[2,70],"84":[2,70],"85":[2,190],"90":[2,190],"99":[2,190],"101":[2,190],"102":[2,190],"103":[2,190],"110":[2,190],"114":[2,190],"115":[2,190],"126":[2,190],"127":[2,190],"129":[2,190],"130":[2,190],"133":[2,190],"134":[2,190],"135":[2,190],"136":[2,190],"137":[2,190],"138":[2,190]},{"1":[2,191],"4":[2,191],"28":[2,191],"29":[2,191],"50":[2,191],"55":[2,191],"58":[2,191],"70":[2,191],"75":[2,191],"85":[2,191],"90":[2,191],"99":[2,191],"101":[2,191],"102":[2,191],"103":[2,191],"110":[2,191],"114":[2,191],"115":[2,191],"126":[2,191],"127":[2,191],"129":[2,191],"130":[2,191],"133":[2,191],"134":[2,191],"135":[2,191],"136":[2,191],"137":[2,191],"138":[2,191]},{"1":[2,192],"4":[2,192],"28":[2,192],"29":[2,192],"50":[2,192],"55":[2,192],"58":[2,192],"70":[2,192],"75":[2,192],"85":[2,192],"90":[2,192],"99":[2,192],"101":[2,192],"102":[2,192],"103":[2,192],"110":[2,192],"114":[2,192],"115":[2,192],"126":[2,192],"127":[2,192],"129":[2,192],"130":[2,192],"133":[2,192],"134":[2,192],"135":[2,192],"136":[2,192],"137":[2,192],"138":[2,192]},{"8":198,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,199],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"15":200,"16":124,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":125,"44":62,"45":29,"60":201,"62":50,"63":51,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"4":[1,117],"6":203,"28":[1,6],"124":[1,202]},{"1":[2,129],"4":[2,129],"28":[2,129],"29":[2,129],"50":[2,129],"55":[2,129],"58":[2,129],"70":[2,129],"75":[2,129],"85":[2,129],"90":[2,129],"94":204,"95":[1,205],"96":[1,206],"99":[2,129],"101":[2,129],"102":[2,129],"103":[2,129],"110":[2,129],"114":[2,129],"115":[2,129],"126":[2,129],"127":[2,129],"129":[2,129],"130":[2,129],"133":[2,129],"134":[2,129],"135":[2,129],"136":[2,129],"137":[2,129],"138":[2,129]},{"1":[2,140],"4":[2,140],"28":[2,140],"29":[2,140],"50":[2,140],"55":[2,140],"58":[2,140],"70":[2,140],"75":[2,140],"85":[2,140],"90":[2,140],"99":[2,140],"101":[2,140],"102":[2,140],"103":[2,140],"110":[2,140],"114":[2,140],"115":[2,140],"126":[2,140],"127":[2,140],"129":[2,140],"130":[2,140],"133":[2,140],"134":[2,140],"135":[2,140],"136":[2,140],"137":[2,140],"138":[2,140]},{"1":[2,148],"4":[2,148],"28":[2,148],"29":[2,148],"50":[2,148],"55":[2,148],"58":[2,148],"70":[2,148],"75":[2,148],"85":[2,148],"90":[2,148],"99":[2,148],"101":[2,148],"102":[2,148],"103":[2,148],"110":[2,148],"114":[2,148],"115":[2,148],"126":[2,148],"127":[2,148],"129":[2,148],"130":[2,148],"133":[2,148],"134":[2,148],"135":[2,148],"136":[2,148],"137":[2,148],"138":[2,148]},{"28":[1,207],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"119":208,"121":209,"122":[1,210]},{"1":[2,91],"4":[2,91],"28":[1,212],"29":[2,91],"50":[2,91],"55":[2,91],"58":[2,91],"65":[2,70],"66":[2,70],"67":[2,70],"69":[2,70],"70":[2,91],"71":[2,70],"72":[2,70],"75":[2,91],"77":[1,211],"83":[2,70],"84":[2,70],"85":[2,91],"90":[2,91],"99":[2,91],"101":[2,91],"102":[2,91],"103":[2,91],"110":[2,91],"114":[2,91],"115":[2,91],"126":[2,91],"127":[2,91],"129":[2,91],"130":[2,91],"133":[2,91],"134":[2,91],"135":[2,91],"136":[2,91],"137":[2,91],"138":[2,91]},{"4":[2,102],"27":165,"29":[2,102],"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":216,"42":163,"44":217,"45":168,"47":[1,47],"73":[1,215],"78":213,"79":214,"88":[1,115],"98":[1,56]},{"15":218,"16":124,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":125,"44":62,"45":29,"60":201,"62":50,"63":51,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"1":[2,48],"4":[2,48],"29":[2,48],"100":89,"101":[2,48],"103":[2,48],"106":90,"115":[2,48],"126":[2,48],"127":[2,48],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,134],"4":[2,134],"29":[2,134],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[2,134],"127":[2,134],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"99":[1,219],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,117],"4":[2,117],"28":[2,117],"29":[2,117],"40":[2,117],"43":[2,117],"50":[2,117],"55":[2,117],"58":[2,117],"65":[2,117],"66":[2,117],"67":[2,117],"69":[2,117],"70":[2,117],"71":[2,117],"72":[2,117],"75":[2,117],"77":[2,117],"83":[2,117],"84":[2,117],"85":[2,117],"90":[2,117],"99":[2,117],"101":[2,117],"102":[2,117],"103":[2,117],"110":[2,117],"114":[2,117],"115":[2,117],"126":[2,117],"127":[2,117],"129":[2,117],"130":[2,117],"131":[2,117],"132":[2,117],"133":[2,117],"134":[2,117],"135":[2,117],"136":[2,117],"137":[2,117],"138":[2,117],"139":[2,117]},{"4":[1,117],"6":220,"28":[1,6],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,117],"6":221,"28":[1,6],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,136],"4":[2,136],"28":[2,136],"29":[2,136],"50":[2,136],"55":[2,136],"58":[2,136],"70":[2,136],"75":[2,136],"85":[2,136],"90":[2,136],"99":[2,136],"100":89,"101":[1,65],"102":[1,222],"103":[1,66],"106":90,"110":[2,136],"114":[2,136],"115":[1,68],"126":[2,136],"127":[2,136],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,138],"4":[2,138],"28":[2,138],"29":[2,138],"50":[2,138],"55":[2,138],"58":[2,138],"70":[2,138],"75":[2,138],"85":[2,138],"90":[2,138],"99":[2,138],"100":89,"101":[1,65],"102":[1,223],"103":[1,66],"106":90,"110":[2,138],"114":[2,138],"115":[1,68],"126":[2,138],"127":[2,138],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,144],"4":[2,144],"28":[2,144],"29":[2,144],"50":[2,144],"55":[2,144],"58":[2,144],"70":[2,144],"75":[2,144],"85":[2,144],"90":[2,144],"99":[2,144],"101":[2,144],"102":[2,144],"103":[2,144],"110":[2,144],"114":[2,144],"115":[2,144],"126":[2,144],"127":[2,144],"129":[2,144],"130":[2,144],"133":[2,144],"134":[2,144],"135":[2,144],"136":[2,144],"137":[2,144],"138":[2,144]},{"1":[2,145],"4":[2,145],"28":[2,145],"29":[2,145],"50":[2,145],"55":[2,145],"58":[2,145],"70":[2,145],"75":[2,145],"85":[2,145],"90":[2,145],"99":[2,145],"100":89,"101":[1,65],"102":[2,145],"103":[1,66],"106":90,"110":[2,145],"114":[2,145],"115":[1,68],"126":[2,145],"127":[2,145],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"55":[1,225],"108":224,"109":[1,226]},{"55":[2,149],"109":[2,149],"111":227,"112":[1,229],"117":[1,228]},{"30":230,"31":[1,73]},{"55":[2,150],"109":[2,150],"112":[2,150]},{"55":[2,151],"109":[2,151],"112":[2,151]},{"1":[2,118],"4":[2,118],"28":[2,118],"29":[2,118],"40":[2,118],"50":[2,118],"55":[2,118],"58":[2,118],"65":[2,118],"66":[2,118],"67":[2,118],"69":[2,118],"70":[2,118],"71":[2,118],"72":[2,118],"75":[2,118],"83":[2,118],"84":[2,118],"85":[2,118],"90":[2,118],"99":[2,118],"101":[2,118],"102":[2,118],"103":[2,118],"109":[2,118],"110":[2,118],"112":[2,118],"114":[2,118],"115":[2,118],"126":[2,118],"127":[2,118],"129":[2,118],"130":[2,118],"133":[2,118],"134":[2,118],"135":[2,118],"136":[2,118],"137":[2,118],"138":[2,118]},{"4":[2,55],"28":[2,55],"54":231,"55":[1,232],"90":[2,55]},{"4":[2,120],"28":[2,120],"29":[2,120],"55":[2,120],"85":[2,120],"90":[2,120]},{"8":159,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,158],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":160,"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"86":233,"87":[1,57],"88":[1,58],"89":[1,69],"91":157,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,125],"28":[2,125],"29":[2,125],"55":[2,125],"58":[1,234],"85":[2,125],"90":[2,125],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[2,126],"28":[2,126],"29":[2,126],"55":[2,126],"85":[2,126],"90":[2,126]},{"4":[2,55],"28":[2,55],"54":235,"55":[1,236],"75":[2,55]},{"4":[2,87],"28":[2,87],"29":[2,87],"55":[2,87],"75":[2,87]},{"4":[2,40],"28":[2,40],"29":[2,40],"43":[1,237],"55":[2,40],"75":[2,40]},{"4":[2,43],"28":[2,43],"29":[2,43],"55":[2,43],"75":[2,43]},{"4":[2,44],"28":[2,44],"29":[2,44],"55":[2,44],"75":[2,44]},{"4":[2,45],"28":[2,45],"29":[2,45],"43":[2,45],"55":[2,45],"75":[2,45]},{"4":[2,46],"28":[2,46],"29":[2,46],"43":[2,46],"55":[2,46],"75":[2,46]},{"4":[2,47],"28":[2,47],"29":[2,47],"43":[2,47],"55":[2,47],"75":[2,47]},{"1":[2,6],"4":[2,6],"29":[2,6]},{"1":[2,28],"4":[2,28],"28":[2,28],"29":[2,28],"50":[2,28],"55":[2,28],"58":[2,28],"70":[2,28],"75":[2,28],"85":[2,28],"90":[2,28],"95":[2,28],"96":[2,28],"99":[2,28],"101":[2,28],"102":[2,28],"103":[2,28],"110":[2,28],"114":[2,28],"115":[2,28],"120":[2,28],"122":[2,28],"126":[2,28],"127":[2,28],"129":[2,28],"130":[2,28],"133":[2,28],"134":[2,28],"135":[2,28],"136":[2,28],"137":[2,28],"138":[2,28]},{"1":[2,194],"4":[2,194],"28":[2,194],"29":[2,194],"50":[2,194],"55":[2,194],"58":[2,194],"70":[2,194],"75":[2,194],"85":[2,194],"90":[2,194],"99":[2,194],"100":89,"101":[2,194],"102":[2,194],"103":[2,194],"106":90,"110":[2,194],"114":[2,194],"115":[2,194],"126":[2,194],"127":[2,194],"129":[2,194],"130":[2,194],"133":[1,79],"134":[1,82],"135":[2,194],"136":[2,194],"137":[2,194],"138":[2,194]},{"1":[2,195],"4":[2,195],"28":[2,195],"29":[2,195],"50":[2,195],"55":[2,195],"58":[2,195],"70":[2,195],"75":[2,195],"85":[2,195],"90":[2,195],"99":[2,195],"100":89,"101":[2,195],"102":[2,195],"103":[2,195],"106":90,"110":[2,195],"114":[2,195],"115":[2,195],"126":[2,195],"127":[2,195],"129":[2,195],"130":[2,195],"133":[1,79],"134":[1,82],"135":[2,195],"136":[2,195],"137":[2,195],"138":[2,195]},{"1":[2,196],"4":[2,196],"28":[2,196],"29":[2,196],"50":[2,196],"55":[2,196],"58":[2,196],"70":[2,196],"75":[2,196],"85":[2,196],"90":[2,196],"99":[2,196],"100":89,"101":[2,196],"102":[2,196],"103":[2,196],"106":90,"110":[2,196],"114":[2,196],"115":[2,196],"126":[2,196],"127":[2,196],"129":[2,196],"130":[2,196],"133":[1,79],"134":[2,196],"135":[2,196],"136":[2,196],"137":[2,196],"138":[2,196]},{"1":[2,197],"4":[2,197],"28":[2,197],"29":[2,197],"50":[2,197],"55":[2,197],"58":[2,197],"70":[2,197],"75":[2,197],"85":[2,197],"90":[2,197],"99":[2,197],"100":89,"101":[2,197],"102":[2,197],"103":[2,197],"106":90,"110":[2,197],"114":[2,197],"115":[2,197],"126":[2,197],"127":[2,197],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[2,197],"136":[2,197],"137":[2,197],"138":[2,197]},{"1":[2,198],"4":[2,198],"28":[2,198],"29":[2,198],"50":[2,198],"55":[2,198],"58":[2,198],"70":[2,198],"75":[2,198],"85":[2,198],"90":[2,198],"99":[2,198],"100":89,"101":[2,198],"102":[2,198],"103":[2,198],"106":90,"110":[2,198],"114":[2,198],"115":[2,198],"126":[2,198],"127":[2,198],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[2,198],"137":[2,198],"138":[1,86]},{"1":[2,199],"4":[2,199],"28":[2,199],"29":[2,199],"50":[2,199],"55":[2,199],"58":[2,199],"70":[2,199],"75":[2,199],"85":[2,199],"90":[2,199],"99":[2,199],"100":89,"101":[2,199],"102":[2,199],"103":[2,199],"106":90,"110":[2,199],"114":[2,199],"115":[2,199],"126":[2,199],"127":[2,199],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[2,199],"138":[1,86]},{"1":[2,200],"4":[2,200],"28":[2,200],"29":[2,200],"50":[2,200],"55":[2,200],"58":[2,200],"70":[2,200],"75":[2,200],"85":[2,200],"90":[2,200],"99":[2,200],"100":89,"101":[2,200],"102":[2,200],"103":[2,200],"106":90,"110":[2,200],"114":[2,200],"115":[2,200],"126":[2,200],"127":[2,200],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[2,200],"137":[2,200],"138":[2,200]},{"1":[2,183],"4":[2,183],"28":[2,183],"29":[2,183],"50":[2,183],"55":[2,183],"58":[2,183],"70":[2,183],"75":[2,183],"85":[2,183],"90":[2,183],"99":[2,183],"100":89,"101":[1,65],"102":[2,183],"103":[1,66],"106":90,"110":[2,183],"114":[2,183],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,185],"4":[2,185],"28":[2,185],"29":[2,185],"50":[2,185],"55":[2,185],"58":[2,185],"70":[2,185],"75":[2,185],"85":[2,185],"90":[2,185],"99":[2,185],"100":89,"101":[1,65],"102":[2,185],"103":[1,66],"106":90,"110":[2,185],"114":[2,185],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,182],"4":[2,182],"28":[2,182],"29":[2,182],"50":[2,182],"55":[2,182],"58":[2,182],"70":[2,182],"75":[2,182],"85":[2,182],"90":[2,182],"99":[2,182],"100":89,"101":[1,65],"102":[2,182],"103":[1,66],"106":90,"110":[2,182],"114":[2,182],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,184],"4":[2,184],"28":[2,184],"29":[2,184],"50":[2,184],"55":[2,184],"58":[2,184],"70":[2,184],"75":[2,184],"85":[2,184],"90":[2,184],"99":[2,184],"100":89,"101":[1,65],"102":[2,184],"103":[1,66],"106":90,"110":[2,184],"114":[2,184],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,107],"4":[2,107],"28":[2,107],"29":[2,107],"50":[2,107],"55":[2,107],"58":[2,107],"65":[2,107],"66":[2,107],"67":[2,107],"69":[2,107],"70":[2,107],"71":[2,107],"72":[2,107],"75":[2,107],"83":[2,107],"84":[2,107],"85":[2,107],"90":[2,107],"99":[2,107],"101":[2,107],"102":[2,107],"103":[2,107],"110":[2,107],"114":[2,107],"115":[2,107],"126":[2,107],"127":[2,107],"129":[2,107],"130":[2,107],"133":[2,107],"134":[2,107],"135":[2,107],"136":[2,107],"137":[2,107],"138":[2,107]},{"1":[2,77],"4":[2,77],"28":[2,77],"29":[2,77],"40":[2,77],"50":[2,77],"55":[2,77],"58":[2,77],"65":[2,77],"66":[2,77],"67":[2,77],"69":[2,77],"70":[2,77],"71":[2,77],"72":[2,77],"75":[2,77],"77":[2,77],"83":[2,77],"84":[2,77],"85":[2,77],"90":[2,77],"99":[2,77],"101":[2,77],"102":[2,77],"103":[2,77],"110":[2,77],"114":[2,77],"115":[2,77],"126":[2,77],"127":[2,77],"129":[2,77],"130":[2,77],"131":[2,77],"132":[2,77],"133":[2,77],"134":[2,77],"135":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77]},{"1":[2,78],"4":[2,78],"28":[2,78],"29":[2,78],"40":[2,78],"50":[2,78],"55":[2,78],"58":[2,78],"65":[2,78],"66":[2,78],"67":[2,78],"69":[2,78],"70":[2,78],"71":[2,78],"72":[2,78],"75":[2,78],"77":[2,78],"83":[2,78],"84":[2,78],"85":[2,78],"90":[2,78],"99":[2,78],"101":[2,78],"102":[2,78],"103":[2,78],"110":[2,78],"114":[2,78],"115":[2,78],"126":[2,78],"127":[2,78],"129":[2,78],"130":[2,78],"131":[2,78],"132":[2,78],"133":[2,78],"134":[2,78],"135":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78]},{"1":[2,79],"4":[2,79],"28":[2,79],"29":[2,79],"40":[2,79],"50":[2,79],"55":[2,79],"58":[2,79],"65":[2,79],"66":[2,79],"67":[2,79],"69":[2,79],"70":[2,79],"71":[2,79],"72":[2,79],"75":[2,79],"77":[2,79],"83":[2,79],"84":[2,79],"85":[2,79],"90":[2,79],"99":[2,79],"101":[2,79],"102":[2,79],"103":[2,79],"110":[2,79],"114":[2,79],"115":[2,79],"126":[2,79],"127":[2,79],"129":[2,79],"130":[2,79],"131":[2,79],"132":[2,79],"133":[2,79],"134":[2,79],"135":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79]},{"70":[1,238],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,83],"4":[2,83],"28":[2,83],"29":[2,83],"40":[2,83],"50":[2,83],"55":[2,83],"58":[2,83],"65":[2,83],"66":[2,83],"67":[2,83],"69":[2,83],"70":[2,83],"71":[2,83],"72":[2,83],"75":[2,83],"77":[2,83],"83":[2,83],"84":[2,83],"85":[2,83],"90":[2,83],"99":[2,83],"101":[2,83],"102":[2,83],"103":[2,83],"110":[2,83],"114":[2,83],"115":[2,83],"126":[2,83],"127":[2,83],"129":[2,83],"130":[2,83],"131":[2,83],"132":[2,83],"133":[2,83],"134":[2,83],"135":[2,83],"136":[2,83],"137":[2,83],"138":[2,83],"139":[2,83]},{"1":[2,84],"4":[2,84],"28":[2,84],"29":[2,84],"40":[2,84],"50":[2,84],"55":[2,84],"58":[2,84],"65":[2,84],"66":[2,84],"67":[2,84],"69":[2,84],"70":[2,84],"71":[2,84],"72":[2,84],"75":[2,84],"77":[2,84],"83":[2,84],"84":[2,84],"85":[2,84],"90":[2,84],"99":[2,84],"101":[2,84],"102":[2,84],"103":[2,84],"110":[2,84],"114":[2,84],"115":[2,84],"126":[2,84],"127":[2,84],"129":[2,84],"130":[2,84],"131":[2,84],"132":[2,84],"133":[2,84],"134":[2,84],"135":[2,84],"136":[2,84],"137":[2,84],"138":[2,84],"139":[2,84]},{"1":[2,108],"4":[2,108],"28":[2,108],"29":[2,108],"50":[2,108],"55":[2,108],"58":[2,108],"65":[2,108],"66":[2,108],"67":[2,108],"69":[2,108],"70":[2,108],"71":[2,108],"72":[2,108],"75":[2,108],"83":[2,108],"84":[2,108],"85":[2,108],"90":[2,108],"99":[2,108],"101":[2,108],"102":[2,108],"103":[2,108],"110":[2,108],"114":[2,108],"115":[2,108],"126":[2,108],"127":[2,108],"129":[2,108],"130":[2,108],"133":[2,108],"134":[2,108],"135":[2,108],"136":[2,108],"137":[2,108],"138":[2,108]},{"1":[2,38],"4":[2,38],"28":[2,38],"29":[2,38],"50":[2,38],"55":[2,38],"58":[2,38],"70":[2,38],"75":[2,38],"85":[2,38],"90":[2,38],"99":[2,38],"100":89,"101":[2,38],"102":[2,38],"103":[2,38],"106":90,"110":[2,38],"114":[2,38],"115":[2,38],"126":[2,38],"127":[2,38],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":239,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,113],"4":[2,113],"28":[2,113],"29":[2,113],"50":[2,113],"55":[2,113],"58":[2,113],"65":[2,113],"66":[2,113],"67":[2,113],"69":[2,113],"70":[2,113],"71":[2,113],"72":[2,113],"75":[2,113],"83":[2,113],"84":[2,113],"85":[2,113],"90":[2,113],"99":[2,113],"101":[2,113],"102":[2,113],"103":[2,113],"110":[2,113],"114":[2,113],"115":[2,113],"126":[2,113],"127":[2,113],"129":[2,113],"130":[2,113],"133":[2,113],"134":[2,113],"135":[2,113],"136":[2,113],"137":[2,113],"138":[2,113]},{"4":[2,55],"28":[2,55],"54":240,"55":[1,232],"85":[2,55]},{"51":241,"52":[1,59],"53":[1,60]},{"30":113,"31":[1,73],"44":114,"56":242,"57":112,"88":[1,115]},{"50":[2,61],"55":[2,61]},{"8":243,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,201],"4":[2,201],"28":[2,201],"29":[2,201],"50":[2,201],"55":[2,201],"58":[2,201],"70":[2,201],"75":[2,201],"85":[2,201],"90":[2,201],"99":[2,201],"100":89,"101":[2,201],"102":[2,201],"103":[2,201],"106":90,"110":[2,201],"114":[2,201],"115":[2,201],"126":[2,201],"127":[2,201],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":244,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,106],"4":[2,106],"28":[2,106],"29":[2,106],"50":[2,106],"55":[2,106],"58":[2,106],"61":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,106],"71":[1,103],"72":[1,104],"75":[2,106],"80":95,"83":[1,97],"84":[2,111],"85":[2,106],"90":[2,106],"99":[2,106],"101":[2,106],"102":[2,106],"103":[2,106],"110":[2,106],"114":[2,106],"115":[2,106],"126":[2,106],"127":[2,106],"129":[2,106],"130":[2,106],"133":[2,106],"134":[2,106],"135":[2,106],"136":[2,106],"137":[2,106],"138":[2,106]},{"1":[2,70],"4":[2,70],"28":[2,70],"29":[2,70],"50":[2,70],"55":[2,70],"58":[2,70],"65":[2,70],"66":[2,70],"67":[2,70],"69":[2,70],"70":[2,70],"71":[2,70],"72":[2,70],"75":[2,70],"83":[2,70],"84":[2,70],"85":[2,70],"90":[2,70],"99":[2,70],"101":[2,70],"102":[2,70],"103":[2,70],"110":[2,70],"114":[2,70],"115":[2,70],"126":[2,70],"127":[2,70],"129":[2,70],"130":[2,70],"133":[2,70],"134":[2,70],"135":[2,70],"136":[2,70],"137":[2,70],"138":[2,70]},{"8":245,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,180],"4":[2,180],"28":[2,180],"29":[2,180],"50":[2,180],"55":[2,180],"58":[2,180],"70":[2,180],"75":[2,180],"85":[2,180],"90":[2,180],"99":[2,180],"101":[2,180],"102":[2,180],"103":[2,180],"110":[2,180],"114":[2,180],"115":[2,180],"120":[2,180],"126":[2,180],"127":[2,180],"129":[2,180],"130":[2,180],"133":[2,180],"134":[2,180],"135":[2,180],"136":[2,180],"137":[2,180],"138":[2,180]},{"1":[2,130],"4":[2,130],"28":[2,130],"29":[2,130],"50":[2,130],"55":[2,130],"58":[2,130],"70":[2,130],"75":[2,130],"85":[2,130],"90":[2,130],"95":[1,246],"99":[2,130],"101":[2,130],"102":[2,130],"103":[2,130],"110":[2,130],"114":[2,130],"115":[2,130],"126":[2,130],"127":[2,130],"129":[2,130],"130":[2,130],"133":[2,130],"134":[2,130],"135":[2,130],"136":[2,130],"137":[2,130],"138":[2,130]},{"4":[1,117],"6":247,"28":[1,6]},{"30":248,"31":[1,73]},{"119":249,"121":209,"122":[1,210]},{"29":[1,250],"120":[1,251],"121":252,"122":[1,210]},{"29":[2,173],"120":[2,173],"122":[2,173]},{"8":254,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"92":253,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"15":255,"16":124,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":125,"44":62,"45":29,"60":201,"62":50,"63":51,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"4":[2,102],"27":165,"29":[2,102],"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":216,"42":163,"44":217,"45":168,"47":[1,47],"73":[1,215],"78":256,"79":214,"88":[1,115],"98":[1,56]},{"4":[1,258],"29":[1,257]},{"4":[2,103],"29":[2,103],"75":[2,103]},{"4":[2,102],"27":165,"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":216,"42":163,"44":217,"45":168,"47":[1,47],"73":[1,215],"75":[2,102],"78":259,"79":214,"88":[1,115],"98":[1,56]},{"4":[2,99],"29":[2,99],"75":[2,99]},{"4":[2,43],"29":[2,43],"43":[1,260],"75":[2,43]},{"1":[2,97],"4":[2,97],"28":[1,261],"29":[2,97],"50":[2,97],"55":[2,97],"58":[2,97],"61":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,97],"71":[1,103],"72":[1,104],"75":[2,97],"80":95,"83":[1,97],"84":[2,111],"85":[2,97],"90":[2,97],"99":[2,97],"101":[2,97],"102":[2,97],"103":[2,97],"110":[2,97],"114":[2,97],"115":[2,97],"126":[2,97],"127":[2,97],"129":[2,97],"130":[2,97],"133":[2,97],"134":[2,97],"135":[2,97],"136":[2,97],"137":[2,97],"138":[2,97]},{"1":[2,135],"4":[2,135],"28":[2,135],"29":[2,135],"43":[2,135],"50":[2,135],"55":[2,135],"58":[2,135],"65":[2,135],"66":[2,135],"67":[2,135],"69":[2,135],"70":[2,135],"71":[2,135],"72":[2,135],"75":[2,135],"83":[2,135],"84":[2,135],"85":[2,135],"90":[2,135],"99":[2,135],"101":[2,135],"102":[2,135],"103":[2,135],"110":[2,135],"114":[2,135],"115":[2,135],"126":[2,135],"127":[2,135],"129":[2,135],"130":[2,135],"133":[2,135],"134":[2,135],"135":[2,135],"136":[2,135],"137":[2,135],"138":[2,135]},{"1":[2,177],"4":[2,177],"28":[2,177],"29":[2,177],"50":[2,177],"55":[2,177],"58":[2,177],"70":[2,177],"75":[2,177],"85":[2,177],"90":[2,177],"99":[2,177],"101":[2,177],"102":[2,177],"103":[2,177],"110":[2,177],"114":[2,177],"115":[2,177],"120":[2,177],"126":[2,177],"127":[2,177],"129":[2,177],"130":[2,177],"133":[2,177],"134":[2,177],"135":[2,177],"136":[2,177],"137":[2,177],"138":[2,177]},{"1":[2,178],"4":[2,178],"28":[2,178],"29":[2,178],"50":[2,178],"55":[2,178],"58":[2,178],"70":[2,178],"75":[2,178],"85":[2,178],"90":[2,178],"99":[2,178],"101":[2,178],"102":[2,178],"103":[2,178],"110":[2,178],"114":[2,178],"115":[2,178],"120":[2,178],"126":[2,178],"127":[2,178],"129":[2,178],"130":[2,178],"133":[2,178],"134":[2,178],"135":[2,178],"136":[2,178],"137":[2,178],"138":[2,178]},{"8":262,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":263,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,162],"4":[2,162],"28":[2,162],"29":[2,162],"50":[2,162],"55":[2,162],"58":[2,162],"70":[2,162],"75":[2,162],"85":[2,162],"90":[2,162],"99":[2,162],"101":[2,162],"102":[2,162],"103":[2,162],"110":[2,162],"114":[2,162],"115":[2,162],"126":[2,162],"127":[2,162],"129":[2,162],"130":[2,162],"133":[2,162],"134":[2,162],"135":[2,162],"136":[2,162],"137":[2,162],"138":[2,162]},{"30":264,"31":[1,73],"62":153,"63":154,"73":[1,70],"89":[1,69],"107":265},{"8":266,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,164],"4":[2,164],"28":[2,164],"29":[2,164],"50":[2,164],"55":[2,164],"58":[2,164],"70":[2,164],"75":[2,164],"85":[2,164],"90":[2,164],"99":[2,164],"101":[2,164],"102":[2,164],"103":[2,164],"110":[2,164],"114":[2,164],"115":[2,164],"126":[2,164],"127":[2,164],"129":[2,164],"130":[2,164],"133":[2,164],"134":[2,164],"135":[2,164],"136":[2,164],"137":[2,164],"138":[2,164]},{"8":267,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":268,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"55":[1,270],"111":269,"112":[1,229]},{"4":[1,272],"28":[1,273],"90":[1,271]},{"4":[2,56],"8":159,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[2,56],"29":[2,56],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":160,"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"85":[2,56],"87":[1,57],"88":[1,58],"89":[1,69],"90":[2,56],"91":274,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":275,"55":[1,232]},{"4":[2,65],"28":[2,65],"29":[2,65],"55":[2,65],"85":[2,65],"90":[2,65]},{"4":[1,277],"28":[1,278],"75":[1,276]},{"4":[2,56],"27":165,"28":[2,56],"29":[2,56],"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":279,"42":163,"44":164,"45":168,"47":[1,47],"75":[2,56],"88":[1,115],"98":[1,56]},{"8":280,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,281],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,82],"4":[2,82],"28":[2,82],"29":[2,82],"40":[2,82],"50":[2,82],"55":[2,82],"58":[2,82],"65":[2,82],"66":[2,82],"67":[2,82],"69":[2,82],"70":[2,82],"71":[2,82],"72":[2,82],"75":[2,82],"77":[2,82],"83":[2,82],"84":[2,82],"85":[2,82],"90":[2,82],"99":[2,82],"101":[2,82],"102":[2,82],"103":[2,82],"110":[2,82],"114":[2,82],"115":[2,82],"126":[2,82],"127":[2,82],"129":[2,82],"130":[2,82],"131":[2,82],"132":[2,82],"133":[2,82],"134":[2,82],"135":[2,82],"136":[2,82],"137":[2,82],"138":[2,82],"139":[2,82]},{"29":[1,282],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,272],"28":[1,273],"85":[1,283]},{"4":[1,117],"6":284,"28":[1,6]},{"50":[2,59],"55":[2,59]},{"50":[2,62],"55":[2,62],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"29":[1,285],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,117],"6":286,"28":[1,6],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,117],"6":287,"28":[1,6]},{"1":[2,131],"4":[2,131],"28":[2,131],"29":[2,131],"50":[2,131],"55":[2,131],"58":[2,131],"70":[2,131],"75":[2,131],"85":[2,131],"90":[2,131],"99":[2,131],"101":[2,131],"102":[2,131],"103":[2,131],"110":[2,131],"114":[2,131],"115":[2,131],"126":[2,131],"127":[2,131],"129":[2,131],"130":[2,131],"133":[2,131],"134":[2,131],"135":[2,131],"136":[2,131],"137":[2,131],"138":[2,131]},{"4":[1,117],"6":288,"28":[1,6]},{"29":[1,289],"120":[1,290],"121":252,"122":[1,210]},{"1":[2,171],"4":[2,171],"28":[2,171],"29":[2,171],"50":[2,171],"55":[2,171],"58":[2,171],"70":[2,171],"75":[2,171],"85":[2,171],"90":[2,171],"99":[2,171],"101":[2,171],"102":[2,171],"103":[2,171],"110":[2,171],"114":[2,171],"115":[2,171],"126":[2,171],"127":[2,171],"129":[2,171],"130":[2,171],"133":[2,171],"134":[2,171],"135":[2,171],"136":[2,171],"137":[2,171],"138":[2,171]},{"4":[1,117],"6":291,"28":[1,6]},{"29":[2,174],"120":[2,174],"122":[2,174]},{"4":[1,117],"6":292,"28":[1,6],"55":[1,293]},{"4":[2,127],"28":[2,127],"55":[2,127],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,92],"4":[2,92],"28":[1,294],"29":[2,92],"50":[2,92],"55":[2,92],"58":[2,92],"61":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,92],"71":[1,103],"72":[1,104],"75":[2,92],"80":95,"83":[1,97],"84":[2,111],"85":[2,92],"90":[2,92],"99":[2,92],"101":[2,92],"102":[2,92],"103":[2,92],"110":[2,92],"114":[2,92],"115":[2,92],"126":[2,92],"127":[2,92],"129":[2,92],"130":[2,92],"133":[2,92],"134":[2,92],"135":[2,92],"136":[2,92],"137":[2,92],"138":[2,92]},{"4":[1,258],"29":[1,295]},{"1":[2,95],"4":[2,95],"28":[2,95],"29":[2,95],"50":[2,95],"55":[2,95],"58":[2,95],"70":[2,95],"75":[2,95],"85":[2,95],"90":[2,95],"99":[2,95],"101":[2,95],"102":[2,95],"103":[2,95],"110":[2,95],"114":[2,95],"115":[2,95],"126":[2,95],"127":[2,95],"129":[2,95],"130":[2,95],"133":[2,95],"134":[2,95],"135":[2,95],"136":[2,95],"137":[2,95],"138":[2,95]},{"27":165,"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":216,"42":163,"44":217,"45":168,"47":[1,47],"79":296,"88":[1,115],"98":[1,56]},{"4":[1,258],"75":[1,297]},{"8":298,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,299],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,102],"27":165,"29":[2,102],"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":216,"42":163,"44":217,"45":168,"47":[1,47],"73":[1,215],"78":300,"79":214,"88":[1,115],"98":[1,56]},{"1":[2,137],"4":[2,137],"28":[2,137],"29":[2,137],"50":[2,137],"55":[2,137],"58":[2,137],"70":[2,137],"75":[2,137],"85":[2,137],"90":[2,137],"99":[2,137],"100":89,"101":[1,65],"102":[2,137],"103":[1,66],"106":90,"110":[2,137],"114":[2,137],"115":[1,68],"126":[2,137],"127":[2,137],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,139],"4":[2,139],"28":[2,139],"29":[2,139],"50":[2,139],"55":[2,139],"58":[2,139],"70":[2,139],"75":[2,139],"85":[2,139],"90":[2,139],"99":[2,139],"100":89,"101":[1,65],"102":[2,139],"103":[1,66],"106":90,"110":[2,139],"114":[2,139],"115":[1,68],"126":[2,139],"127":[2,139],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"108":301,"109":[1,226],"112":[2,149]},{"111":302,"112":[1,229]},{"1":[2,152],"4":[2,152],"28":[2,152],"29":[2,152],"50":[2,152],"55":[2,152],"58":[2,152],"70":[2,152],"75":[2,152],"85":[2,152],"90":[2,152],"99":[2,152],"100":89,"101":[1,65],"102":[1,303],"103":[1,66],"106":90,"110":[1,304],"114":[2,152],"115":[1,68],"126":[2,152],"127":[2,152],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"100":89,"101":[1,65],"103":[1,66],"106":90,"113":305,"114":[1,306],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,156],"4":[2,156],"28":[2,156],"29":[2,156],"50":[2,156],"55":[2,156],"58":[2,156],"70":[2,156],"75":[2,156],"85":[2,156],"90":[2,156],"99":[2,156],"100":89,"101":[1,65],"102":[1,307],"103":[1,66],"106":90,"110":[2,156],"114":[2,156],"115":[1,68],"126":[2,156],"127":[2,156],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,166],"4":[2,166],"28":[2,166],"29":[2,166],"50":[2,166],"55":[2,166],"58":[2,166],"70":[2,166],"75":[2,166],"85":[2,166],"90":[2,166],"99":[2,166],"101":[2,166],"102":[2,166],"103":[2,166],"110":[2,166],"114":[2,166],"115":[2,166],"126":[2,166],"127":[2,166],"129":[2,166],"130":[2,166],"133":[2,166],"134":[2,166],"135":[2,166],"136":[2,166],"137":[2,166],"138":[2,166]},{"30":309,"31":[1,73],"62":153,"63":154,"73":[1,70],"89":[1,69],"107":308},{"1":[2,119],"4":[2,119],"28":[2,119],"29":[2,119],"40":[2,119],"50":[2,119],"55":[2,119],"58":[2,119],"65":[2,119],"66":[2,119],"67":[2,119],"69":[2,119],"70":[2,119],"71":[2,119],"72":[2,119],"75":[2,119],"83":[2,119],"84":[2,119],"85":[2,119],"90":[2,119],"99":[2,119],"101":[2,119],"102":[2,119],"103":[2,119],"109":[2,119],"110":[2,119],"112":[2,119],"114":[2,119],"115":[2,119],"126":[2,119],"127":[2,119],"129":[2,119],"130":[2,119],"133":[2,119],"134":[2,119],"135":[2,119],"136":[2,119],"137":[2,119],"138":[2,119]},{"8":159,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":160,"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"91":310,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":159,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,158],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":160,"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"86":311,"87":[1,57],"88":[1,58],"89":[1,69],"91":157,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,121],"28":[2,121],"29":[2,121],"55":[2,121],"85":[2,121],"90":[2,121]},{"4":[1,272],"28":[1,273],"29":[1,312]},{"1":[2,85],"4":[2,85],"28":[2,85],"29":[2,85],"40":[2,85],"50":[2,85],"55":[2,85],"58":[2,85],"65":[2,85],"66":[2,85],"67":[2,85],"69":[2,85],"70":[2,85],"71":[2,85],"72":[2,85],"75":[2,85],"83":[2,85],"84":[2,85],"85":[2,85],"90":[2,85],"99":[2,85],"101":[2,85],"102":[2,85],"103":[2,85],"109":[2,85],"110":[2,85],"112":[2,85],"114":[2,85],"115":[2,85],"126":[2,85],"127":[2,85],"129":[2,85],"130":[2,85],"133":[2,85],"134":[2,85],"135":[2,85],"136":[2,85],"137":[2,85],"138":[2,85]},{"27":165,"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":313,"42":163,"44":164,"45":168,"47":[1,47],"88":[1,115],"98":[1,56]},{"4":[2,86],"27":165,"28":[2,86],"29":[2,86],"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":162,"42":163,"44":164,"45":168,"47":[1,47],"55":[2,86],"74":314,"88":[1,115],"98":[1,56]},{"4":[2,88],"28":[2,88],"29":[2,88],"55":[2,88],"75":[2,88]},{"4":[2,41],"28":[2,41],"29":[2,41],"55":[2,41],"75":[2,41],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":315,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,39],"4":[2,39],"28":[2,39],"29":[2,39],"50":[2,39],"55":[2,39],"58":[2,39],"70":[2,39],"75":[2,39],"85":[2,39],"90":[2,39],"99":[2,39],"101":[2,39],"102":[2,39],"103":[2,39],"110":[2,39],"114":[2,39],"115":[2,39],"126":[2,39],"127":[2,39],"129":[2,39],"130":[2,39],"133":[2,39],"134":[2,39],"135":[2,39],"136":[2,39],"137":[2,39],"138":[2,39]},{"1":[2,114],"4":[2,114],"28":[2,114],"29":[2,114],"50":[2,114],"55":[2,114],"58":[2,114],"65":[2,114],"66":[2,114],"67":[2,114],"69":[2,114],"70":[2,114],"71":[2,114],"72":[2,114],"75":[2,114],"83":[2,114],"84":[2,114],"85":[2,114],"90":[2,114],"99":[2,114],"101":[2,114],"102":[2,114],"103":[2,114],"110":[2,114],"114":[2,114],"115":[2,114],"126":[2,114],"127":[2,114],"129":[2,114],"130":[2,114],"133":[2,114],"134":[2,114],"135":[2,114],"136":[2,114],"137":[2,114],"138":[2,114]},{"1":[2,51],"4":[2,51],"28":[2,51],"29":[2,51],"50":[2,51],"55":[2,51],"58":[2,51],"70":[2,51],"75":[2,51],"85":[2,51],"90":[2,51],"99":[2,51],"101":[2,51],"102":[2,51],"103":[2,51],"110":[2,51],"114":[2,51],"115":[2,51],"126":[2,51],"127":[2,51],"129":[2,51],"130":[2,51],"133":[2,51],"134":[2,51],"135":[2,51],"136":[2,51],"137":[2,51],"138":[2,51]},{"1":[2,202],"4":[2,202],"28":[2,202],"29":[2,202],"50":[2,202],"55":[2,202],"58":[2,202],"70":[2,202],"75":[2,202],"85":[2,202],"90":[2,202],"99":[2,202],"101":[2,202],"102":[2,202],"103":[2,202],"110":[2,202],"114":[2,202],"115":[2,202],"126":[2,202],"127":[2,202],"129":[2,202],"130":[2,202],"133":[2,202],"134":[2,202],"135":[2,202],"136":[2,202],"137":[2,202],"138":[2,202]},{"1":[2,179],"4":[2,179],"28":[2,179],"29":[2,179],"50":[2,179],"55":[2,179],"58":[2,179],"70":[2,179],"75":[2,179],"85":[2,179],"90":[2,179],"99":[2,179],"101":[2,179],"102":[2,179],"103":[2,179],"110":[2,179],"114":[2,179],"115":[2,179],"120":[2,179],"126":[2,179],"127":[2,179],"129":[2,179],"130":[2,179],"133":[2,179],"134":[2,179],"135":[2,179],"136":[2,179],"137":[2,179],"138":[2,179]},{"1":[2,132],"4":[2,132],"28":[2,132],"29":[2,132],"50":[2,132],"55":[2,132],"58":[2,132],"70":[2,132],"75":[2,132],"85":[2,132],"90":[2,132],"99":[2,132],"101":[2,132],"102":[2,132],"103":[2,132],"110":[2,132],"114":[2,132],"115":[2,132],"126":[2,132],"127":[2,132],"129":[2,132],"130":[2,132],"133":[2,132],"134":[2,132],"135":[2,132],"136":[2,132],"137":[2,132],"138":[2,132]},{"1":[2,133],"4":[2,133],"28":[2,133],"29":[2,133],"50":[2,133],"55":[2,133],"58":[2,133],"70":[2,133],"75":[2,133],"85":[2,133],"90":[2,133],"95":[2,133],"99":[2,133],"101":[2,133],"102":[2,133],"103":[2,133],"110":[2,133],"114":[2,133],"115":[2,133],"126":[2,133],"127":[2,133],"129":[2,133],"130":[2,133],"133":[2,133],"134":[2,133],"135":[2,133],"136":[2,133],"137":[2,133],"138":[2,133]},{"1":[2,169],"4":[2,169],"28":[2,169],"29":[2,169],"50":[2,169],"55":[2,169],"58":[2,169],"70":[2,169],"75":[2,169],"85":[2,169],"90":[2,169],"99":[2,169],"101":[2,169],"102":[2,169],"103":[2,169],"110":[2,169],"114":[2,169],"115":[2,169],"126":[2,169],"127":[2,169],"129":[2,169],"130":[2,169],"133":[2,169],"134":[2,169],"135":[2,169],"136":[2,169],"137":[2,169],"138":[2,169]},{"4":[1,117],"6":316,"28":[1,6]},{"29":[1,317]},{"4":[1,318],"29":[2,175],"120":[2,175],"122":[2,175]},{"8":319,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,102],"27":165,"29":[2,102],"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":216,"42":163,"44":217,"45":168,"47":[1,47],"73":[1,215],"78":320,"79":214,"88":[1,115],"98":[1,56]},{"1":[2,93],"4":[2,93],"28":[2,93],"29":[2,93],"50":[2,93],"55":[2,93],"58":[2,93],"70":[2,93],"75":[2,93],"85":[2,93],"90":[2,93],"99":[2,93],"101":[2,93],"102":[2,93],"103":[2,93],"110":[2,93],"114":[2,93],"115":[2,93],"126":[2,93],"127":[2,93],"129":[2,93],"130":[2,93],"133":[2,93],"134":[2,93],"135":[2,93],"136":[2,93],"137":[2,93],"138":[2,93]},{"4":[2,104],"29":[2,104],"75":[2,104]},{"4":[2,105],"29":[2,105],"75":[2,105]},{"4":[2,100],"29":[2,100],"75":[2,100],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":321,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[1,258],"29":[1,322]},{"1":[2,163],"4":[2,163],"28":[2,163],"29":[2,163],"50":[2,163],"55":[2,163],"58":[2,163],"70":[2,163],"75":[2,163],"85":[2,163],"90":[2,163],"99":[2,163],"101":[2,163],"102":[2,163],"103":[2,163],"110":[2,163],"114":[2,163],"115":[2,163],"126":[2,163],"127":[2,163],"129":[2,163],"130":[2,163],"133":[2,163],"134":[2,163],"135":[2,163],"136":[2,163],"137":[2,163],"138":[2,163]},{"1":[2,165],"4":[2,165],"28":[2,165],"29":[2,165],"50":[2,165],"55":[2,165],"58":[2,165],"70":[2,165],"75":[2,165],"85":[2,165],"90":[2,165],"99":[2,165],"101":[2,165],"102":[2,165],"103":[2,165],"110":[2,165],"114":[2,165],"115":[2,165],"126":[2,165],"127":[2,165],"129":[2,165],"130":[2,165],"133":[2,165],"134":[2,165],"135":[2,165],"136":[2,165],"137":[2,165],"138":[2,165]},{"8":323,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":324,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,168],"4":[2,168],"28":[2,168],"29":[2,168],"50":[2,168],"55":[2,168],"58":[2,168],"70":[2,168],"75":[2,168],"85":[2,168],"90":[2,168],"99":[2,168],"101":[2,168],"102":[2,168],"103":[2,168],"110":[2,168],"114":[2,168],"115":[2,168],"126":[2,168],"127":[2,168],"129":[2,168],"130":[2,168],"133":[2,168],"134":[2,168],"135":[2,168],"136":[2,168],"137":[2,168],"138":[2,168]},{"8":325,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":326,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"111":327,"112":[1,229]},{"112":[2,149]},{"4":[2,122],"28":[2,122],"29":[2,122],"55":[2,122],"85":[2,122],"90":[2,122]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":328,"55":[1,232]},{"4":[2,123],"28":[2,123],"29":[2,123],"55":[2,123],"85":[2,123],"90":[2,123]},{"4":[2,89],"28":[2,89],"29":[2,89],"55":[2,89],"75":[2,89]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":329,"55":[1,236]},{"29":[1,330],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"29":[1,331]},{"1":[2,172],"4":[2,172],"28":[2,172],"29":[2,172],"50":[2,172],"55":[2,172],"58":[2,172],"70":[2,172],"75":[2,172],"85":[2,172],"90":[2,172],"99":[2,172],"101":[2,172],"102":[2,172],"103":[2,172],"110":[2,172],"114":[2,172],"115":[2,172],"126":[2,172],"127":[2,172],"129":[2,172],"130":[2,172],"133":[2,172],"134":[2,172],"135":[2,172],"136":[2,172],"137":[2,172],"138":[2,172]},{"29":[2,176],"120":[2,176],"122":[2,176]},{"4":[2,128],"28":[2,128],"55":[2,128],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,258],"29":[1,332]},{"29":[1,333],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,98],"4":[2,98],"28":[2,98],"29":[2,98],"50":[2,98],"55":[2,98],"58":[2,98],"70":[2,98],"75":[2,98],"85":[2,98],"90":[2,98],"99":[2,98],"101":[2,98],"102":[2,98],"103":[2,98],"110":[2,98],"114":[2,98],"115":[2,98],"126":[2,98],"127":[2,98],"129":[2,98],"130":[2,98],"133":[2,98],"134":[2,98],"135":[2,98],"136":[2,98],"137":[2,98],"138":[2,98]},{"1":[2,153],"4":[2,153],"28":[2,153],"29":[2,153],"50":[2,153],"55":[2,153],"58":[2,153],"70":[2,153],"75":[2,153],"85":[2,153],"90":[2,153],"99":[2,153],"100":89,"101":[1,65],"102":[2,153],"103":[1,66],"106":90,"110":[2,153],"114":[2,153],"115":[1,68],"126":[2,153],"127":[2,153],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,154],"4":[2,154],"28":[2,154],"29":[2,154],"50":[2,154],"55":[2,154],"58":[2,154],"70":[2,154],"75":[2,154],"85":[2,154],"90":[2,154],"99":[2,154],"100":89,"101":[1,65],"102":[1,334],"103":[1,66],"106":90,"110":[2,154],"114":[2,154],"115":[1,68],"126":[2,154],"127":[2,154],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,158],"4":[2,158],"28":[2,158],"29":[2,158],"50":[2,158],"55":[2,158],"58":[2,158],"70":[2,158],"75":[2,158],"85":[2,158],"90":[2,158],"99":[2,158],"100":89,"101":[1,65],"102":[1,335],"103":[1,66],"106":90,"110":[1,336],"114":[2,158],"115":[1,68],"126":[2,158],"127":[2,158],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,157],"4":[2,157],"28":[2,157],"29":[2,157],"50":[2,157],"55":[2,157],"58":[2,157],"70":[2,157],"75":[2,157],"85":[2,157],"90":[2,157],"99":[2,157],"100":89,"101":[1,65],"102":[2,157],"103":[1,66],"106":90,"110":[2,157],"114":[2,157],"115":[1,68],"126":[2,157],"127":[2,157],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,167],"4":[2,167],"28":[2,167],"29":[2,167],"50":[2,167],"55":[2,167],"58":[2,167],"70":[2,167],"75":[2,167],"85":[2,167],"90":[2,167],"99":[2,167],"101":[2,167],"102":[2,167],"103":[2,167],"110":[2,167],"114":[2,167],"115":[2,167],"126":[2,167],"127":[2,167],"129":[2,167],"130":[2,167],"133":[2,167],"134":[2,167],"135":[2,167],"136":[2,167],"137":[2,167],"138":[2,167]},{"4":[1,272],"28":[1,273],"29":[1,337]},{"4":[1,277],"28":[1,278],"29":[1,338]},{"4":[2,42],"28":[2,42],"29":[2,42],"55":[2,42],"75":[2,42]},{"1":[2,170],"4":[2,170],"28":[2,170],"29":[2,170],"50":[2,170],"55":[2,170],"58":[2,170],"70":[2,170],"75":[2,170],"85":[2,170],"90":[2,170],"99":[2,170],"101":[2,170],"102":[2,170],"103":[2,170],"110":[2,170],"114":[2,170],"115":[2,170],"126":[2,170],"127":[2,170],"129":[2,170],"130":[2,170],"133":[2,170],"134":[2,170],"135":[2,170],"136":[2,170],"137":[2,170],"138":[2,170]},{"1":[2,94],"4":[2,94],"28":[2,94],"29":[2,94],"50":[2,94],"55":[2,94],"58":[2,94],"70":[2,94],"75":[2,94],"85":[2,94],"90":[2,94],"99":[2,94],"101":[2,94],"102":[2,94],"103":[2,94],"110":[2,94],"114":[2,94],"115":[2,94],"126":[2,94],"127":[2,94],"129":[2,94],"130":[2,94],"133":[2,94],"134":[2,94],"135":[2,94],"136":[2,94],"137":[2,94],"138":[2,94]},{"4":[2,101],"29":[2,101],"75":[2,101]},{"8":339,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":340,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":341,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,124],"28":[2,124],"29":[2,124],"55":[2,124],"85":[2,124],"90":[2,124]},{"4":[2,90],"28":[2,90],"29":[2,90],"55":[2,90],"75":[2,90]},{"1":[2,155],"4":[2,155],"28":[2,155],"29":[2,155],"50":[2,155],"55":[2,155],"58":[2,155],"70":[2,155],"75":[2,155],"85":[2,155],"90":[2,155],"99":[2,155],"100":89,"101":[1,65],"102":[2,155],"103":[1,66],"106":90,"110":[2,155],"114":[2,155],"115":[1,68],"126":[2,155],"127":[2,155],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,159],"4":[2,159],"28":[2,159],"29":[2,159],"50":[2,159],"55":[2,159],"58":[2,159],"70":[2,159],"75":[2,159],"85":[2,159],"90":[2,159],"99":[2,159],"100":89,"101":[1,65],"102":[2,159],"103":[1,66],"106":90,"110":[2,159],"114":[2,159],"115":[1,68],"126":[2,159],"127":[2,159],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,160],"4":[2,160],"28":[2,160],"29":[2,160],"50":[2,160],"55":[2,160],"58":[2,160],"70":[2,160],"75":[2,160],"85":[2,160],"90":[2,160],"99":[2,160],"100":89,"101":[1,65],"102":[1,342],"103":[1,66],"106":90,"110":[2,160],"114":[2,160],"115":[1,68],"126":[2,160],"127":[2,160],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":343,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,161],"4":[2,161],"28":[2,161],"29":[2,161],"50":[2,161],"55":[2,161],"58":[2,161],"70":[2,161],"75":[2,161],"85":[2,161],"90":[2,161],"99":[2,161],"100":89,"101":[1,65],"102":[2,161],"103":[1,66],"106":90,"110":[2,161],"114":[2,161],"115":[1,68],"126":[2,161],"127":[2,161],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]}], +defaultActions: {"76":[2,4],"97":[2,112],"309":[2,149]}, parseError: function parseError(str, hash) { throw new Error(str); }, diff --git a/src/grammar.coffee b/src/grammar.coffee index fa5c6a22..b64299aa 100644 --- a/src/grammar.coffee +++ b/src/grammar.coffee @@ -199,12 +199,14 @@ grammar = # A single parameter in a function definition can be ordinary, or a splat # that hoovers up the remaining arguments. Param: [ - o 'Identifier', -> new Param $1 - o 'Identifier ...', -> new Param $1, null, on - o 'Identifier = Expression', -> new Param $1, $3 - o 'ThisProperty', -> new Param $1, null - o 'ThisProperty ...', -> new Param $1, null, on - o 'ThisProperty = Expression', -> new Param $1, $3 + o 'ParamVar', -> new Param $1 + o 'ParamVar ...', -> new Param $1, null, on + o 'ParamVar = Expression', -> new Param $1, $3 + ] + + ParamVar: [ + o 'Identifier' + o 'ThisProperty' ] # A splat that occurs outside of a parameter list. From 371282fe7aec4c9d6e9856f8907847df1e91b5fd Mon Sep 17 00:00:00 2001 From: satyr Date: Tue, 26 Oct 2010 19:13:55 +0900 Subject: [PATCH 4/7] defarg: `(options = {})` where possible --- lib/browser.js | 5 ++--- lib/coffee-script.js | 2 +- lib/lexer.js | 9 +++++---- src/browser.coffee | 4 ++-- src/coffee-script.coffee | 3 +-- src/lexer.coffee | 7 +++---- 6 files changed, 14 insertions(+), 16 deletions(-) diff --git a/lib/browser.js b/lib/browser.js index 075f6b43..33a0b583 100644 --- a/lib/browser.js +++ b/lib/browser.js @@ -6,9 +6,8 @@ return eval(CoffeeScript.compile(code, options)); }; CoffeeScript.run = function(code, options) { - if (options != null) { - options.bare = true; - } + options != null ? options : options = {}; + options.bare = true; return Function(CoffeeScript.compile(code, options))(); }; if (!(typeof window !== "undefined" && window !== null)) { diff --git a/lib/coffee-script.js b/lib/coffee-script.js index dc9e65c4..4b7319e1 100755 --- a/lib/coffee-script.js +++ b/lib/coffee-script.js @@ -18,7 +18,7 @@ exports.VERSION = '0.9.4'; exports.helpers = require('./helpers'); exports.compile = compile = function(code, options) { - options || (options = {}); + options != null ? options : options = {}; try { return (parser.parse(lexer.tokenize(code))).compile(options); } catch (err) { diff --git a/lib/lexer.js b/lib/lexer.js index 6eb6053e..e641d380 100644 --- a/lib/lexer.js +++ b/lib/lexer.js @@ -438,7 +438,7 @@ }; Lexer.prototype.balancedString = function(str, delimited, options) { var _i, _len, close, i, levels, open, pair, slen; - options || (options = {}); + options != null ? options : options = {}; levels = []; i = 0; slen = str.length; @@ -475,8 +475,9 @@ return i && str.slice(0, i); }; Lexer.prototype.interpolateString = function(str, options) { - var _len, _ref2, _ref3, _this, expr, heredoc, i, inner, interpolated, letter, nested, pi, regex, tag, tokens, value; - _ref2 = options || (options = {}), heredoc = _ref2.heredoc, regex = _ref2.regex; + var _len, _ref2, _this, expr, heredoc, i, inner, interpolated, letter, nested, pi, regex, tag, tokens, value; + options != null ? options : options = {}; + heredoc = options.heredoc, regex = options.regex; tokens = []; pi = 0; i = -1; @@ -523,7 +524,7 @@ this.token('(', '('); } for (i = 0, _len = tokens.length; i < _len; i++) { - _ref3 = tokens[i], tag = _ref3[0], value = _ref3[1]; + _ref2 = tokens[i], tag = _ref2[0], value = _ref2[1]; if (i) { this.token('+', '+'); } diff --git a/src/browser.coffee b/src/browser.coffee index 05c6e018..695c8dbc 100644 --- a/src/browser.coffee +++ b/src/browser.coffee @@ -8,8 +8,8 @@ CoffeeScript.eval = (code, options) -> eval CoffeeScript.compile code, options # Running code does not provide access to this scope. -CoffeeScript.run = (code, options) -> - options?.bare = on +CoffeeScript.run = (code, options = {}) -> + options.bare = on Function(CoffeeScript.compile code, options)() # If we're not in a browser environment, we're finished with the public API. diff --git a/src/coffee-script.coffee b/src/coffee-script.coffee index dc26a5fe..74fa88c0 100755 --- a/src/coffee-script.coffee +++ b/src/coffee-script.coffee @@ -27,8 +27,7 @@ exports.helpers = require './helpers' # Compile a string of CoffeeScript code to JavaScript, using the Coffee/Jison # compiler. -exports.compile = compile = (code, options) -> - options or= {} +exports.compile = compile = (code, options = {}) -> try (parser.parse lexer.tokenize code).compile options catch err diff --git a/src/lexer.coffee b/src/lexer.coffee index 6f1fca80..83c3ad05 100644 --- a/src/lexer.coffee +++ b/src/lexer.coffee @@ -386,8 +386,7 @@ exports.Lexer = class Lexer # a series of delimiters, all of which must be nested correctly within the # contents of the string. This method allows us to have strings within # interpolations within strings, ad infinitum. - balancedString: (str, delimited, options) -> - options or= {} + balancedString: (str, delimited, options = {}) -> levels = [] i = 0 slen = str.length @@ -420,8 +419,8 @@ exports.Lexer = class Lexer # If it encounters an interpolation, this method will recursively create a # new Lexer, tokenize the interpolated contents, and merge them into the # token stream. - interpolateString: (str, options) -> - {heredoc, regex} = options or= {} + interpolateString: (str, options = {}) -> + {heredoc, regex} = options tokens = [] pi = 0 i = -1 From e36746d367bad06de86e9ab278080440ddf723f6 Mon Sep 17 00:00:00 2001 From: satyr Date: Tue, 26 Oct 2010 19:32:48 +0900 Subject: [PATCH 5/7] made `[a..., b...] = c` throw syntax error --- lib/nodes.js | 4 ++++ src/nodes.coffee | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/lib/nodes.js b/lib/nodes.js index 17dd6c86..4af9bb87 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -985,6 +985,10 @@ val = new Literal(utility('slice') + (".call(" + valVar + ", " + i + rest + ")")); splat = "" + ivar + " < " + i + " ? " + ivar + " = " + i + " : " + ivar + "++"; } else { + if (obj instanceof Splat) { + obj = obj.name.compile(o); + throw SyntaxError("multiple splats are disallowed in an assignment: " + obj + " ..."); + } if (typeof idx === 'number') { idx = new Literal(splat || idx); acc = false; diff --git a/src/nodes.coffee b/src/nodes.coffee index 52e7eaca..afa9775a 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -806,6 +806,10 @@ exports.Assign = class Assign extends Base val = new Literal utility('slice') + ".call(#{valVar}, #{i}#{rest})" splat = "#{ivar} < #{i} ? #{ivar} = #{i} : #{ivar}++" else + if obj instanceof Splat + obj = obj.name.compile o + throw SyntaxError \ + "multiple splats are disallowed in an assignment: #{obj} ..." if typeof idx is 'number' idx = new Literal splat or idx acc = no From 1cb6464948550f8aaaa262ca9b1f3f7cc0b21d3e Mon Sep 17 00:00:00 2001 From: satyr Date: Tue, 26 Oct 2010 20:51:02 +0900 Subject: [PATCH 6/7] optimized splatting assignment --- lib/nodes.js | 29 ++++++++++++++++------------- src/nodes.coffee | 27 +++++++++++++++------------ test/test_arguments.coffee | 15 +++++++++++---- 3 files changed, 42 insertions(+), 29 deletions(-) diff --git a/lib/nodes.js b/lib/nodes.js index 4af9bb87..55b47723 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -933,15 +933,15 @@ return o.level <= LEVEL_LIST ? val : "(" + val + ")"; }; Assign.prototype.compilePatternMatch = function(o) { - var _len, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7, acc, assigns, code, i, idx, isObject, ivar, obj, objects, olength, ref, rest, splat, top, val, valVar, value; + var _len, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7, acc, assigns, code, i, idx, isObject, ivar, obj, objects, olen, ref, rest, splat, top, val, value, vvar; top = o.level === LEVEL_TOP; value = this.value; objects = this.variable.base.objects; - if (!(olength = objects.length)) { + if (!(olen = objects.length)) { return value.compile(o); } isObject = this.variable.isObject(); - if (top && olength === 1 && !((obj = objects[0]) instanceof Splat)) { + if (top && olen === 1 && !((obj = objects[0]) instanceof Splat)) { if (obj instanceof Assign) { _ref2 = obj, (_ref3 = _ref2.variable, idx = _ref3.base, _ref3), obj = _ref2.value; } else { @@ -956,12 +956,12 @@ value.properties.push(new (acc ? Accessor : Index)(idx)); return new Assign(obj, value).compile(o); } - valVar = value.compile(o, LEVEL_LIST); + vvar = value.compile(o, LEVEL_LIST); assigns = []; splat = false; - if (!IDENTIFIER.test(valVar) || this.variable.assigns(valVar)) { - assigns.push("" + (ref = o.scope.freeVariable('ref')) + " = " + valVar); - valVar = ref; + if (!IDENTIFIER.test(vvar) || this.variable.assigns(vvar)) { + assigns.push("" + (ref = o.scope.freeVariable('ref')) + " = " + vvar); + vvar = ref; } for (i = 0, _len = objects.length; i < _len; i++) { obj = objects[i]; @@ -978,12 +978,15 @@ } } if (!splat && obj instanceof Splat) { - if (rest = olength - i - 1 || '') { + val = "" + olen + " <= " + vvar + ".length ? " + (utility('slice')) + ".call(" + vvar + ", " + i; + if (rest = olen - i - 1) { ivar = o.scope.freeVariable('i'); - rest = ", " + ivar + " = " + valVar + ".length - " + rest; + val += ", " + ivar + " = " + vvar + ".length - " + rest + ") : (" + ivar + " = " + i + ", [])"; + } else { + val += ") : []"; } - val = new Literal(utility('slice') + (".call(" + valVar + ", " + i + rest + ")")); - splat = "" + ivar + " < " + i + " ? " + ivar + " = " + i + " : " + ivar + "++"; + val = new Literal(val); + splat = "" + ivar + "++"; } else { if (obj instanceof Splat) { obj = obj.name.compile(o); @@ -995,12 +998,12 @@ } else { acc = isObject && IDENTIFIER.test(idx.unwrap().value || 0); } - val = new Value(new Literal(valVar), [new (acc ? Accessor : Index)(idx)]); + val = new Value(new Literal(vvar), [new (acc ? Accessor : Index)(idx)]); } assigns.push(new Assign(obj, val).compile(o, LEVEL_LIST)); } if (!top) { - assigns.push(valVar); + assigns.push(vvar); } code = assigns.join(', '); return o.level < LEVEL_LIST ? code : "(" + code + ")"; diff --git a/src/nodes.coffee b/src/nodes.coffee index afa9775a..d4bb78b5 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -764,9 +764,9 @@ exports.Assign = class Assign extends Base top = o.level is LEVEL_TOP {value} = this {objects} = @variable.base - return value.compile o unless olength = objects.length + return value.compile o unless olen = objects.length isObject = @variable.isObject() - if top and olength is 1 and (obj = objects[0]) not instanceof Splat + if top and olen is 1 and (obj = objects[0]) not instanceof Splat # Unroll simplest cases: `{v} = x` -> `v = x.v` if obj instanceof Assign {variable: {base: idx}, value: obj} = obj @@ -781,12 +781,12 @@ exports.Assign = class Assign extends Base value = new Value value value.properties.push new (if acc then Accessor else Index) idx return new Assign(obj, value).compile o - valVar = value.compile o, LEVEL_LIST + vvar = value.compile o, LEVEL_LIST assigns = [] splat = false - if not IDENTIFIER.test(valVar) or @variable.assigns(valVar) - assigns.push "#{ ref = o.scope.freeVariable 'ref' } = #{valVar}" - valVar = ref + if not IDENTIFIER.test(vvar) or @variable.assigns(vvar) + assigns.push "#{ ref = o.scope.freeVariable 'ref' } = #{vvar}" + vvar = ref for obj, i in objects # A regular array pattern-match. idx = i @@ -800,11 +800,14 @@ exports.Assign = class Assign extends Base then [obj, idx] = new Value(obj.unwrapAll()).cacheReference o else idx = if obj.tags.this then obj.properties[0].name else obj if not splat and obj instanceof Splat - if rest = olength - i - 1 or '' + val = "#{olen} <= #{vvar}.length ? #{ utility 'slice' }.call(#{vvar}, #{i}" + if rest = olen - i - 1 ivar = o.scope.freeVariable 'i' - rest = ", #{ivar} = #{valVar}.length - #{rest}" - val = new Literal utility('slice') + ".call(#{valVar}, #{i}#{rest})" - splat = "#{ivar} < #{i} ? #{ivar} = #{i} : #{ivar}++" + val += ", #{ivar} = #{vvar}.length - #{rest}) : (#{ivar} = #{i}, [])" + else + val += ") : []" + val = new Literal val + splat = "#{ivar}++" else if obj instanceof Splat obj = obj.name.compile o @@ -815,9 +818,9 @@ exports.Assign = class Assign extends Base acc = no else acc = isObject and IDENTIFIER.test idx.unwrap().value or 0 - val = new Value new Literal(valVar), [new (if acc then Accessor else Index) idx] + val = new Value new Literal(vvar), [new (if acc then Accessor else Index) idx] assigns.push new Assign(obj, val).compile o, LEVEL_LIST - assigns.push valVar unless top + assigns.push vvar unless top code = assigns.join ', ' if o.level < LEVEL_LIST then code else "(#{code})" diff --git a/test/test_arguments.coffee b/test/test_arguments.coffee index c607395c..159ec74f 100644 --- a/test/test_arguments.coffee +++ b/test/test_arguments.coffee @@ -29,21 +29,28 @@ ok sumOfArgs(1, 2, 3, 4, 5) is 15 ok context.arg is 1 ((splat..., @arg) ->).call context, 1, 2, 3 -ok context.arg is 3 +eq context.arg, 3 ((@arg...) ->).call context, 1, 2, 3 -ok context.arg.join ' ' is '1 2 3' +eq context.arg.join(' '), '1 2 3' class Klass constructor: (@one, @two) -> obj = new Klass 1, 2 -ok obj.one is 1 -ok obj.two is 2 +eq obj.one, 1 +eq obj.two, 2 # Default arguments. obj = f: (q = 123, @p = 456) -> q eq obj.f(), 123 eq obj.p , 456 + +withSplats = (a = 2, b..., c = 3, d = 5) -> a * (b.length + 1) * c * d +eq 30, withSplats() +eq 15, withSplats 1 +eq 5, withSplats 1, 1 +eq 1, withSplats 1, 1, 1 +eq 2, withSplats 1, 1, 1, 1 From 1aba75e3e8b8b21dba8635cf07fbadb72ff505f6 Mon Sep 17 00:00:00 2001 From: satyr Date: Wed, 27 Oct 2010 04:46:03 +0900 Subject: [PATCH 7/7] destructuring within arguments is now allowed as in SpiderMonkey --- lib/grammar.js | 2 +- lib/nodes.js | 10 +- lib/parser.js | 298 +++++++++++++++++++------------------ src/grammar.coffee | 2 + src/nodes.coffee | 9 +- test/test_arguments.coffee | 9 +- 6 files changed, 173 insertions(+), 157 deletions(-) diff --git a/lib/grammar.js b/lib/grammar.js index 691acf4e..28d65053 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -132,7 +132,7 @@ return new Param($1, $3); }) ], - ParamVar: [o('Identifier'), o('ThisProperty')], + ParamVar: [o('Identifier'), o('ThisProperty'), o('Array'), o('Object')], Splat: [ o('Expression ...', function() { return new Splat($1); diff --git a/lib/nodes.js b/lib/nodes.js index 55b47723..6e1ae4d3 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -1059,9 +1059,9 @@ _ref3 = this.params; for (_j = 0, _len2 = _ref3.length; _j < _len2; _j++) { param = _ref3[_j]; - if (param.attach) { + if (param.isComplex()) { ref = param.asReference(o); - exprs.push(new Assign(param.name, param.value ? new Op('?', ref, param.value) : ref)); + exprs.push(new Assign(new Value(param.name), param.value ? new Op('?', ref, param.value) : ref)); } else { ref = param; if (param.value) { @@ -1121,7 +1121,6 @@ this.value = _arg2; this.splat = _arg3; Param.__super__.constructor.call(this); - this.attach = this.name instanceof Value; return this; } return Param; @@ -1136,13 +1135,16 @@ if (this.reference) { return this.reference; } - node = this.attach ? new Literal(o.scope.freeVariable('arg')) : this.name; + node = this.isComplex() ? new Literal(o.scope.freeVariable('arg')) : this.name; node = new Value(node); if (this.splat) { node = new Splat(node); } return this.reference = node; }; + Param.prototype.isComplex = function() { + return this.name.isComplex(); + }; return Param; })(); exports.Splat = (function() { diff --git a/lib/parser.js b/lib/parser.js index 092946c5..08be2718 100755 --- a/lib/parser.js +++ b/lib/parser.js @@ -2,9 +2,9 @@ var parser = (function(){ 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,"DEBUGGER":14,"Value":15,"Invocation":16,"Code":17,"Operation":18,"Assign":19,"If":20,"Try":21,"While":22,"For":23,"Switch":24,"Extends":25,"Class":26,"Comment":27,"INDENT":28,"OUTDENT":29,"Identifier":30,"IDENTIFIER":31,"AlphaNumeric":32,"NUMBER":33,"STRING":34,"Literal":35,"JS":36,"REGEX":37,"BOOL":38,"Assignable":39,"=":40,"AssignObj":41,"ObjAssignable":42,":":43,"ThisProperty":44,"Parenthetical":45,"RETURN":46,"HERECOMMENT":47,"PARAM_START":48,"ParamList":49,"PARAM_END":50,"FuncGlyph":51,"->":52,"=>":53,"OptComma":54,",":55,"Param":56,"ParamVar":57,"...":58,"Splat":59,"SimpleAssignable":60,"Accessor":61,"Array":62,"Object":63,"This":64,".":65,"?.":66,"::":67,"Index":68,"INDEX_START":69,"INDEX_END":70,"INDEX_SOAK":71,"INDEX_PROTO":72,"{":73,"AssignList":74,"}":75,"CLASS":76,"EXTENDS":77,"ClassBody":78,"ClassAssign":79,"OptFuncExist":80,"Arguments":81,"SUPER":82,"FUNC_EXIST":83,"CALL_START":84,"CALL_END":85,"ArgList":86,"THIS":87,"@":88,"[":89,"]":90,"Arg":91,"SimpleArgs":92,"TRY":93,"Catch":94,"FINALLY":95,"CATCH":96,"THROW":97,"(":98,")":99,"WhileSource":100,"WHILE":101,"WHEN":102,"UNTIL":103,"Loop":104,"LOOP":105,"ForBody":106,"ForValue":107,"ForIn":108,"FORIN":109,"BY":110,"ForOf":111,"FOROF":112,"ForTo":113,"TO":114,"FOR":115,"ALL":116,"FROM":117,"SWITCH":118,"Whens":119,"ELSE":120,"When":121,"LEADING_WHEN":122,"IfBlock":123,"IF":124,"UNLESS":125,"POST_IF":126,"POST_UNLESS":127,"UNARY":128,"-":129,"+":130,"--":131,"++":132,"?":133,"MATH":134,"SHIFT":135,"COMPARE":136,"LOGIC":137,"RELATION":138,"COMPOUND_ASSIGN":139,"$accept":0,"$end":1}, +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,"DEBUGGER":14,"Value":15,"Invocation":16,"Code":17,"Operation":18,"Assign":19,"If":20,"Try":21,"While":22,"For":23,"Switch":24,"Extends":25,"Class":26,"Comment":27,"INDENT":28,"OUTDENT":29,"Identifier":30,"IDENTIFIER":31,"AlphaNumeric":32,"NUMBER":33,"STRING":34,"Literal":35,"JS":36,"REGEX":37,"BOOL":38,"Assignable":39,"=":40,"AssignObj":41,"ObjAssignable":42,":":43,"ThisProperty":44,"Parenthetical":45,"RETURN":46,"HERECOMMENT":47,"PARAM_START":48,"ParamList":49,"PARAM_END":50,"FuncGlyph":51,"->":52,"=>":53,"OptComma":54,",":55,"Param":56,"ParamVar":57,"...":58,"Array":59,"Object":60,"Splat":61,"SimpleAssignable":62,"Accessor":63,"This":64,".":65,"?.":66,"::":67,"Index":68,"INDEX_START":69,"INDEX_END":70,"INDEX_SOAK":71,"INDEX_PROTO":72,"{":73,"AssignList":74,"}":75,"CLASS":76,"EXTENDS":77,"ClassBody":78,"ClassAssign":79,"OptFuncExist":80,"Arguments":81,"SUPER":82,"FUNC_EXIST":83,"CALL_START":84,"CALL_END":85,"ArgList":86,"THIS":87,"@":88,"[":89,"]":90,"Arg":91,"SimpleArgs":92,"TRY":93,"Catch":94,"FINALLY":95,"CATCH":96,"THROW":97,"(":98,")":99,"WhileSource":100,"WHILE":101,"WHEN":102,"UNTIL":103,"Loop":104,"LOOP":105,"ForBody":106,"ForValue":107,"ForIn":108,"FORIN":109,"BY":110,"ForOf":111,"FOROF":112,"ForTo":113,"TO":114,"FOR":115,"ALL":116,"FROM":117,"SWITCH":118,"Whens":119,"ELSE":120,"When":121,"LEADING_WHEN":122,"IfBlock":123,"IF":124,"UNLESS":125,"POST_IF":126,"POST_UNLESS":127,"UNARY":128,"-":129,"+":130,"--":131,"++":132,"?":133,"MATH":134,"SHIFT":135,"COMPARE":136,"LOGIC":137,"RELATION":138,"COMPOUND_ASSIGN":139,"$accept":0,"$end":1}, terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","14":"DEBUGGER","28":"INDENT","29":"OUTDENT","31":"IDENTIFIER","33":"NUMBER","34":"STRING","36":"JS","37":"REGEX","38":"BOOL","40":"=","43":":","46":"RETURN","47":"HERECOMMENT","48":"PARAM_START","50":"PARAM_END","52":"->","53":"=>","55":",","58":"...","65":".","66":"?.","67":"::","69":"INDEX_START","70":"INDEX_END","71":"INDEX_SOAK","72":"INDEX_PROTO","73":"{","75":"}","76":"CLASS","77":"EXTENDS","82":"SUPER","83":"FUNC_EXIST","84":"CALL_START","85":"CALL_END","87":"THIS","88":"@","89":"[","90":"]","93":"TRY","95":"FINALLY","96":"CATCH","97":"THROW","98":"(","99":")","101":"WHILE","102":"WHEN","103":"UNTIL","105":"LOOP","109":"FORIN","110":"BY","112":"FOROF","114":"TO","115":"FOR","116":"ALL","117":"FROM","118":"SWITCH","120":"ELSE","122":"LEADING_WHEN","124":"IF","125":"UNLESS","126":"POST_IF","127":"POST_UNLESS","128":"UNARY","129":"-","130":"+","131":"--","132":"++","133":"?","134":"MATH","135":"SHIFT","136":"COMPARE","137":"LOGIC","138":"RELATION","139":"COMPOUND_ASSIGN"}, -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],[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],[6,3],[6,2],[6,2],[30,1],[32,1],[32,1],[35,1],[35,1],[35,1],[35,1],[19,3],[19,5],[41,1],[41,3],[41,5],[41,1],[41,1],[42,1],[42,1],[42,1],[10,2],[10,1],[27,1],[17,5],[17,2],[51,1],[51,1],[54,0],[54,1],[49,0],[49,1],[49,3],[56,1],[56,2],[56,3],[57,1],[57,1],[59,2],[60,1],[60,2],[60,2],[60,1],[39,1],[39,1],[39,1],[15,1],[15,1],[15,1],[15,1],[61,2],[61,2],[61,2],[61,1],[61,1],[68,3],[68,2],[68,2],[63,4],[74,0],[74,1],[74,3],[74,4],[74,6],[26,2],[26,4],[26,5],[26,7],[26,4],[26,1],[26,3],[26,6],[79,1],[79,3],[79,5],[78,0],[78,1],[78,3],[78,3],[25,3],[16,3],[16,3],[16,1],[16,2],[80,0],[80,1],[81,2],[81,4],[64,1],[64,1],[44,2],[62,2],[62,4],[86,1],[86,3],[86,4],[86,4],[86,6],[91,1],[91,1],[92,1],[92,3],[21,2],[21,3],[21,4],[21,5],[94,3],[11,2],[45,3],[100,2],[100,4],[100,2],[100,4],[22,2],[22,2],[22,2],[22,1],[104,2],[104,2],[23,2],[23,2],[23,2],[107,1],[107,1],[107,1],[108,2],[108,4],[108,4],[108,6],[111,2],[111,4],[113,2],[113,4],[113,4],[113,6],[106,3],[106,5],[106,3],[106,5],[106,4],[106,6],[106,5],[24,5],[24,7],[24,4],[24,6],[119,1],[119,2],[121,3],[121,4],[123,3],[123,3],[123,5],[123,3],[20,1],[20,3],[20,3],[20,3],[20,3],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,5]], +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],[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],[6,3],[6,2],[6,2],[30,1],[32,1],[32,1],[35,1],[35,1],[35,1],[35,1],[19,3],[19,5],[41,1],[41,3],[41,5],[41,1],[41,1],[42,1],[42,1],[42,1],[10,2],[10,1],[27,1],[17,5],[17,2],[51,1],[51,1],[54,0],[54,1],[49,0],[49,1],[49,3],[56,1],[56,2],[56,3],[57,1],[57,1],[57,1],[57,1],[61,2],[62,1],[62,2],[62,2],[62,1],[39,1],[39,1],[39,1],[15,1],[15,1],[15,1],[15,1],[63,2],[63,2],[63,2],[63,1],[63,1],[68,3],[68,2],[68,2],[60,4],[74,0],[74,1],[74,3],[74,4],[74,6],[26,2],[26,4],[26,5],[26,7],[26,4],[26,1],[26,3],[26,6],[79,1],[79,3],[79,5],[78,0],[78,1],[78,3],[78,3],[25,3],[16,3],[16,3],[16,1],[16,2],[80,0],[80,1],[81,2],[81,4],[64,1],[64,1],[44,2],[59,2],[59,4],[86,1],[86,3],[86,4],[86,4],[86,6],[91,1],[91,1],[92,1],[92,3],[21,2],[21,3],[21,4],[21,5],[94,3],[11,2],[45,3],[100,2],[100,4],[100,2],[100,4],[22,2],[22,2],[22,2],[22,1],[104,2],[104,2],[23,2],[23,2],[23,2],[107,1],[107,1],[107,1],[108,2],[108,4],[108,4],[108,6],[111,2],[111,4],[113,2],[113,4],[113,4],[113,6],[106,3],[106,5],[106,3],[106,5],[106,4],[106,6],[106,5],[24,5],[24,7],[24,4],[24,6],[119,1],[119,2],[121,3],[121,4],[123,3],[123,3],[123,5],[123,3],[20,1],[20,3],[20,3],[20,3],[20,3],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,2],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,3],[18,5]], performAction: function anonymous(yytext,yyleng,yylineno,yy) { var $$ = arguments[5],$0=arguments[5].length; @@ -137,360 +137,364 @@ case 63:this.$ = $$[$0-1+1-1]; break; case 64:this.$ = $$[$0-1+1-1]; break; -case 65:this.$ = new yy.Splat($$[$0-2+1-1]); +case 65:this.$ = $$[$0-1+1-1]; break; -case 66:this.$ = new yy.Value($$[$0-1+1-1]); +case 66:this.$ = $$[$0-1+1-1]; break; -case 67:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); +case 67:this.$ = new yy.Splat($$[$0-2+1-1]); break; -case 68:this.$ = new yy.Value($$[$0-2+1-1], [$$[$0-2+2-1]]); +case 68:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 69:this.$ = $$[$0-1+1-1]; +case 69:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); break; -case 70:this.$ = $$[$0-1+1-1]; +case 70:this.$ = new yy.Value($$[$0-2+1-1], [$$[$0-2+2-1]]); break; -case 71:this.$ = new yy.Value($$[$0-1+1-1]); +case 71:this.$ = $$[$0-1+1-1]; break; -case 72:this.$ = new yy.Value($$[$0-1+1-1]); +case 72:this.$ = $$[$0-1+1-1]; break; -case 73:this.$ = $$[$0-1+1-1]; +case 73:this.$ = new yy.Value($$[$0-1+1-1]); break; case 74:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 75:this.$ = new yy.Value($$[$0-1+1-1]); +case 75:this.$ = $$[$0-1+1-1]; break; -case 76:this.$ = $$[$0-1+1-1]; +case 76:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 77:this.$ = new yy.Accessor($$[$0-2+2-1]); +case 77:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 78:this.$ = new yy.Accessor($$[$0-2+2-1], 'soak'); +case 78:this.$ = $$[$0-1+1-1]; break; -case 79:this.$ = new yy.Accessor($$[$0-2+2-1], 'proto'); +case 79:this.$ = new yy.Accessor($$[$0-2+2-1]); break; -case 80:this.$ = new yy.Accessor(new yy.Literal('prototype')); +case 80:this.$ = new yy.Accessor($$[$0-2+2-1], 'soak'); break; -case 81:this.$ = $$[$0-1+1-1]; +case 81:this.$ = new yy.Accessor($$[$0-2+2-1], 'proto'); break; -case 82:this.$ = new yy.Index($$[$0-3+2-1]); +case 82:this.$ = new yy.Accessor(new yy.Literal('prototype')); break; -case 83:this.$ = yy.extend($$[$0-2+2-1], { +case 83:this.$ = $$[$0-1+1-1]; +break; +case 84:this.$ = new yy.Index($$[$0-3+2-1]); +break; +case 85:this.$ = yy.extend($$[$0-2+2-1], { soak: true }); break; -case 84:this.$ = yy.extend($$[$0-2+2-1], { +case 86:this.$ = yy.extend($$[$0-2+2-1], { proto: true }); break; -case 85:this.$ = new yy.Obj($$[$0-4+2-1]); +case 87:this.$ = new yy.Obj($$[$0-4+2-1]); break; -case 86:this.$ = []; +case 88:this.$ = []; break; -case 87:this.$ = [$$[$0-1+1-1]]; +case 89:this.$ = [$$[$0-1+1-1]]; break; -case 88:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +case 90:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; -case 89:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); +case 91:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); break; -case 90:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); +case 92:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); break; -case 91:this.$ = new yy.Class($$[$0-2+2-1]); +case 93:this.$ = new yy.Class($$[$0-2+2-1]); break; -case 92:this.$ = new yy.Class($$[$0-4+2-1], $$[$0-4+4-1]); +case 94:this.$ = new yy.Class($$[$0-4+2-1], $$[$0-4+4-1]); break; -case 93:this.$ = new yy.Class($$[$0-5+2-1], null, $$[$0-5+4-1]); +case 95:this.$ = new yy.Class($$[$0-5+2-1], null, $$[$0-5+4-1]); break; -case 94:this.$ = new yy.Class($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); +case 96:this.$ = new yy.Class($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); break; -case 95:this.$ = new yy.Class(null, null, $$[$0-4+3-1]); +case 97:this.$ = new yy.Class(null, null, $$[$0-4+3-1]); break; -case 96:this.$ = new yy.Class(null, null, new yy.Expressions); +case 98:this.$ = new yy.Class(null, null, new yy.Expressions); break; -case 97:this.$ = new yy.Class(null, $$[$0-3+3-1], new yy.Expressions); +case 99:this.$ = new yy.Class(null, $$[$0-3+3-1], new yy.Expressions); break; -case 98:this.$ = new yy.Class(null, $$[$0-6+3-1], $$[$0-6+5-1]); +case 100:this.$ = new yy.Class(null, $$[$0-6+3-1], $$[$0-6+5-1]); break; -case 99:this.$ = $$[$0-1+1-1]; +case 101:this.$ = $$[$0-1+1-1]; break; -case 100:this.$ = new yy.Assign(new yy.Value($$[$0-3+1-1]), $$[$0-3+3-1], 'this'); +case 102:this.$ = new yy.Assign(new yy.Value($$[$0-3+1-1]), $$[$0-3+3-1], 'this'); break; -case 101:this.$ = new yy.Assign(new yy.Value($$[$0-5+1-1]), $$[$0-5+4-1], 'this'); +case 103:this.$ = new yy.Assign(new yy.Value($$[$0-5+1-1]), $$[$0-5+4-1], 'this'); break; -case 102:this.$ = []; +case 104:this.$ = []; break; -case 103:this.$ = [$$[$0-1+1-1]]; +case 105:this.$ = [$$[$0-1+1-1]]; break; -case 104:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +case 106:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; -case 105:this.$ = $$[$0-3+2-1]; +case 107:this.$ = $$[$0-3+2-1]; break; -case 106:this.$ = new yy.Extends($$[$0-3+1-1], $$[$0-3+3-1]); +case 108:this.$ = new yy.Extends($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 107:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); +case 109:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); break; -case 108:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); +case 110:this.$ = new yy.Call($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); break; -case 109:this.$ = new yy.Call('super', [new yy.Splat(new yy.Literal('arguments'))]); +case 111:this.$ = new yy.Call('super', [new yy.Splat(new yy.Literal('arguments'))]); break; -case 110:this.$ = new yy.Call('super', $$[$0-2+2-1]); +case 112:this.$ = new yy.Call('super', $$[$0-2+2-1]); break; -case 111:this.$ = false; +case 113:this.$ = false; break; -case 112:this.$ = true; +case 114:this.$ = true; break; -case 113:this.$ = []; +case 115:this.$ = []; break; -case 114:this.$ = $$[$0-4+2-1]; +case 116:this.$ = $$[$0-4+2-1]; break; -case 115:this.$ = new yy.Value(new yy.Literal('this')); +case 117:this.$ = new yy.Value(new yy.Literal('this')); break; -case 116:this.$ = new yy.Value(new yy.Literal('this')); +case 118:this.$ = new yy.Value(new yy.Literal('this')); break; -case 117:this.$ = new yy.Value(new yy.Literal('this'), [new yy.Accessor($$[$0-2+2-1])], 'this'); +case 119:this.$ = new yy.Value(new yy.Literal('this'), [new yy.Accessor($$[$0-2+2-1])], 'this'); break; -case 118:this.$ = new yy.Arr([]); +case 120:this.$ = new yy.Arr([]); break; -case 119:this.$ = new yy.Arr($$[$0-4+2-1]); +case 121:this.$ = new yy.Arr($$[$0-4+2-1]); break; -case 120:this.$ = [$$[$0-1+1-1]]; +case 122:this.$ = [$$[$0-1+1-1]]; break; -case 121:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +case 123:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; -case 122:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); +case 124:this.$ = $$[$0-4+1-1].concat($$[$0-4+4-1]); break; -case 123:this.$ = $$[$0-4+2-1]; +case 125:this.$ = $$[$0-4+2-1]; break; -case 124:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); -break; -case 125:this.$ = $$[$0-1+1-1]; -break; -case 126:this.$ = $$[$0-1+1-1]; +case 126:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); break; case 127:this.$ = $$[$0-1+1-1]; break; -case 128:this.$ = [].concat($$[$0-3+1-1], $$[$0-3+3-1]); +case 128:this.$ = $$[$0-1+1-1]; break; -case 129:this.$ = new yy.Try($$[$0-2+2-1]); +case 129:this.$ = $$[$0-1+1-1]; break; -case 130:this.$ = new yy.Try($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); +case 130:this.$ = [].concat($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 131:this.$ = new yy.Try($$[$0-4+2-1], null, null, $$[$0-4+4-1]); +case 131:this.$ = new yy.Try($$[$0-2+2-1]); break; -case 132:this.$ = new yy.Try($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); +case 132:this.$ = new yy.Try($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); break; -case 133:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; +case 133:this.$ = new yy.Try($$[$0-4+2-1], null, null, $$[$0-4+4-1]); break; -case 134:this.$ = new yy.Throw($$[$0-2+2-1]); +case 134:this.$ = new yy.Try($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); break; -case 135:this.$ = new yy.Parens($$[$0-3+2-1]); +case 135:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; break; -case 136:this.$ = new yy.While($$[$0-2+2-1]); +case 136:this.$ = new yy.Throw($$[$0-2+2-1]); break; -case 137:this.$ = new yy.While($$[$0-4+2-1], { +case 137:this.$ = new yy.Parens($$[$0-3+2-1]); +break; +case 138:this.$ = new yy.While($$[$0-2+2-1]); +break; +case 139:this.$ = new yy.While($$[$0-4+2-1], { guard: $$[$0-4+4-1] }); break; -case 138:this.$ = new yy.While($$[$0-2+2-1], { +case 140:this.$ = new yy.While($$[$0-2+2-1], { invert: true }); break; -case 139:this.$ = new yy.While($$[$0-4+2-1], { +case 141:this.$ = new yy.While($$[$0-4+2-1], { invert: true, guard: $$[$0-4+4-1] }); break; -case 140:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); +case 142:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); break; -case 141:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); +case 143:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); break; -case 142:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); +case 144:this.$ = $$[$0-2+2-1].addBody(yy.Expressions.wrap([$$[$0-2+1-1]])); break; -case 143:this.$ = $$[$0-1+1-1]; +case 145:this.$ = $$[$0-1+1-1]; break; -case 144:this.$ = new yy.While(new yy.Literal('true')).addBody($$[$0-2+2-1]); +case 146:this.$ = new yy.While(new yy.Literal('true')).addBody($$[$0-2+2-1]); break; -case 145:this.$ = new yy.While(new yy.Literal('true')).addBody(yy.Expressions.wrap([$$[$0-2+2-1]])); +case 147:this.$ = new yy.While(new yy.Literal('true')).addBody(yy.Expressions.wrap([$$[$0-2+2-1]])); break; -case 146:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); +case 148:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 147:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); +case 149:this.$ = new yy.For($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 148:this.$ = new yy.For($$[$0-2+2-1], $$[$0-2+1-1]); +case 150:this.$ = new yy.For($$[$0-2+2-1], $$[$0-2+1-1]); break; -case 149:this.$ = $$[$0-1+1-1]; +case 151:this.$ = $$[$0-1+1-1]; break; -case 150:this.$ = new yy.Value($$[$0-1+1-1]); +case 152:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 151:this.$ = new yy.Value($$[$0-1+1-1]); +case 153:this.$ = new yy.Value($$[$0-1+1-1]); break; -case 152:this.$ = { +case 154:this.$ = { source: $$[$0-2+2-1] }; break; -case 153:this.$ = { +case 155:this.$ = { source: $$[$0-4+2-1], guard: $$[$0-4+4-1] }; break; -case 154:this.$ = { +case 156:this.$ = { source: $$[$0-4+2-1], step: $$[$0-4+4-1] }; break; -case 155:this.$ = { +case 157:this.$ = { source: $$[$0-6+2-1], step: $$[$0-6+4-1], guard: $$[$0-6+6-1] }; break; -case 156:this.$ = { +case 158:this.$ = { object: true, source: $$[$0-2+2-1] }; break; -case 157:this.$ = { +case 159:this.$ = { object: true, source: $$[$0-4+2-1], guard: $$[$0-4+4-1] }; break; -case 158:this.$ = { +case 160:this.$ = { to: $$[$0-2+2-1] }; break; -case 159:this.$ = { +case 161:this.$ = { to: $$[$0-4+2-1], guard: $$[$0-4+4-1] }; break; -case 160:this.$ = { +case 162:this.$ = { to: $$[$0-4+2-1], step: $$[$0-4+4-1] }; break; -case 161:this.$ = { +case 163:this.$ = { to: $$[$0-6+2-1], step: $$[$0-6+4-1], guard: $$[$0-6+6-1] }; break; -case 162:this.$ = yy.extend($$[$0-3+3-1], { +case 164:this.$ = yy.extend($$[$0-3+3-1], { name: $$[$0-3+2-1] }); break; -case 163:this.$ = yy.extend($$[$0-5+5-1], { +case 165:this.$ = yy.extend($$[$0-5+5-1], { name: $$[$0-5+2-1], index: $$[$0-5+4-1] }); break; -case 164:this.$ = yy.extend($$[$0-3+3-1], { +case 166:this.$ = yy.extend($$[$0-3+3-1], { index: $$[$0-3+2-1] }); break; -case 165:this.$ = yy.extend($$[$0-5+5-1], { +case 167:this.$ = yy.extend($$[$0-5+5-1], { index: $$[$0-5+2-1], name: $$[$0-5+4-1] }); break; -case 166:this.$ = yy.extend($$[$0-4+4-1], { +case 168:this.$ = yy.extend($$[$0-4+4-1], { raw: true, index: $$[$0-4+3-1] }); break; -case 167:this.$ = yy.extend($$[$0-6+6-1], { +case 169:this.$ = yy.extend($$[$0-6+6-1], { raw: true, index: $$[$0-6+3-1], name: $$[$0-6+5-1] }); break; -case 168:this.$ = yy.extend($$[$0-5+5-1], { +case 170:this.$ = yy.extend($$[$0-5+5-1], { index: $$[$0-5+2-1], from: $$[$0-5+4-1] }); break; -case 169:this.$ = new yy.Switch($$[$0-5+2-1], $$[$0-5+4-1]); +case 171:this.$ = new yy.Switch($$[$0-5+2-1], $$[$0-5+4-1]); break; -case 170:this.$ = new yy.Switch($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); +case 172:this.$ = new yy.Switch($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); break; -case 171:this.$ = new yy.Switch(null, $$[$0-4+3-1]); +case 173:this.$ = new yy.Switch(null, $$[$0-4+3-1]); break; -case 172:this.$ = new yy.Switch(null, $$[$0-6+3-1], $$[$0-6+5-1]); +case 174:this.$ = new yy.Switch(null, $$[$0-6+3-1], $$[$0-6+5-1]); break; -case 173:this.$ = $$[$0-1+1-1]; +case 175:this.$ = $$[$0-1+1-1]; break; -case 174:this.$ = $$[$0-2+1-1].concat($$[$0-2+2-1]); +case 176:this.$ = $$[$0-2+1-1].concat($$[$0-2+2-1]); break; -case 175:this.$ = [[$$[$0-3+2-1], $$[$0-3+3-1]]]; +case 177:this.$ = [[$$[$0-3+2-1], $$[$0-3+3-1]]]; break; -case 176:this.$ = [[$$[$0-4+2-1], $$[$0-4+3-1]]]; +case 178:this.$ = [[$$[$0-4+2-1], $$[$0-4+3-1]]]; break; -case 177:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1]); +case 179:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1]); break; -case 178:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1], { +case 180:this.$ = new yy.If($$[$0-3+2-1], $$[$0-3+3-1], { invert: true }); break; -case 179:this.$ = $$[$0-5+1-1].addElse(new yy.If($$[$0-5+4-1], $$[$0-5+5-1])); +case 181:this.$ = $$[$0-5+1-1].addElse(new yy.If($$[$0-5+4-1], $$[$0-5+5-1])); break; -case 180:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); +case 182:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); break; -case 181:this.$ = $$[$0-1+1-1]; -break; -case 182:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { - statement: true - }); -break; -case 183:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { - statement: true - }); +case 183:this.$ = $$[$0-1+1-1]; break; case 184:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { - statement: true, - invert: true + statement: true }); break; case 185:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true + }); +break; +case 186:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { statement: true, invert: true }); break; -case 186:this.$ = new yy.Op($$[$0-2+1-1], $$[$0-2+2-1]); +case 187:this.$ = new yy.If($$[$0-3+3-1], yy.Expressions.wrap([$$[$0-3+1-1]]), { + statement: true, + invert: true + }); break; -case 187:this.$ = new yy.Op('-', $$[$0-2+2-1]); +case 188:this.$ = new yy.Op($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 188:this.$ = new yy.Op('+', $$[$0-2+2-1]); +case 189:this.$ = new yy.Op('-', $$[$0-2+2-1]); break; -case 189:this.$ = new yy.Op('--', $$[$0-2+2-1]); +case 190:this.$ = new yy.Op('+', $$[$0-2+2-1]); break; -case 190:this.$ = new yy.Op('++', $$[$0-2+2-1]); +case 191:this.$ = new yy.Op('--', $$[$0-2+2-1]); break; -case 191:this.$ = new yy.Op('--', $$[$0-2+1-1], null, true); +case 192:this.$ = new yy.Op('++', $$[$0-2+2-1]); break; -case 192:this.$ = new yy.Op('++', $$[$0-2+1-1], null, true); +case 193:this.$ = new yy.Op('--', $$[$0-2+1-1], null, true); break; -case 193:this.$ = new yy.Existence($$[$0-2+1-1]); +case 194:this.$ = new yy.Op('++', $$[$0-2+1-1], null, true); break; -case 194:this.$ = new yy.Op('+', $$[$0-3+1-1], $$[$0-3+3-1]); +case 195:this.$ = new yy.Existence($$[$0-2+1-1]); break; -case 195:this.$ = new yy.Op('-', $$[$0-3+1-1], $$[$0-3+3-1]); +case 196:this.$ = new yy.Op('+', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 196:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); -break; -case 197:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); +case 197:this.$ = new yy.Op('-', $$[$0-3+1-1], $$[$0-3+3-1]); break; case 198:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; case 199:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 200:this.$ = $$[$0-3+2-1].charAt(0) === '!' ? new yy.Op($$[$0-3+2-1].slice(1), $$[$0-3+1-1], $$[$0-3+3-1]).invert() : new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); +case 200:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 201:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); +case 201:this.$ = new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 202:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1], $$[$0-5+2-1]); +case 202:this.$ = $$[$0-3+2-1].charAt(0) === '!' ? new yy.Op($$[$0-3+2-1].slice(1), $$[$0-3+1-1], $$[$0-3+3-1]).invert() : new yy.Op($$[$0-3+2-1], $$[$0-3+1-1], $$[$0-3+3-1]); +break; +case 203:this.$ = new yy.Assign($$[$0-3+1-1], $$[$0-3+3-1], $$[$0-3+2-1]); +break; +case 204:this.$ = new yy.Assign($$[$0-5+1-1], $$[$0-5+4-1], $$[$0-5+2-1]); break; } }, -table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[3]},{"1":[2,2],"27":74,"47":[1,47]},{"1":[2,3],"4":[1,75]},{"4":[1,76]},{"1":[2,5],"4":[2,5],"29":[2,5]},{"5":77,"7":5,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[1,78],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,8],"4":[2,8],"29":[2,8],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,9],"4":[2,9],"29":[2,9],"100":93,"101":[1,65],"103":[1,66],"106":94,"115":[1,68],"126":[1,91],"127":[1,92]},{"1":[2,15],"4":[2,15],"28":[2,15],"29":[2,15],"50":[2,15],"55":[2,15],"58":[2,15],"61":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,15],"71":[1,103],"72":[1,104],"75":[2,15],"80":95,"83":[1,97],"84":[2,111],"85":[2,15],"90":[2,15],"99":[2,15],"101":[2,15],"102":[2,15],"103":[2,15],"110":[2,15],"114":[2,15],"115":[2,15],"126":[2,15],"127":[2,15],"129":[2,15],"130":[2,15],"133":[2,15],"134":[2,15],"135":[2,15],"136":[2,15],"137":[2,15],"138":[2,15]},{"1":[2,16],"4":[2,16],"28":[2,16],"29":[2,16],"50":[2,16],"55":[2,16],"58":[2,16],"61":106,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,16],"71":[1,103],"72":[1,104],"75":[2,16],"80":105,"83":[1,97],"84":[2,111],"85":[2,16],"90":[2,16],"99":[2,16],"101":[2,16],"102":[2,16],"103":[2,16],"110":[2,16],"114":[2,16],"115":[2,16],"126":[2,16],"127":[2,16],"129":[2,16],"130":[2,16],"133":[2,16],"134":[2,16],"135":[2,16],"136":[2,16],"137":[2,16],"138":[2,16]},{"1":[2,17],"4":[2,17],"28":[2,17],"29":[2,17],"50":[2,17],"55":[2,17],"58":[2,17],"70":[2,17],"75":[2,17],"85":[2,17],"90":[2,17],"99":[2,17],"101":[2,17],"102":[2,17],"103":[2,17],"110":[2,17],"114":[2,17],"115":[2,17],"126":[2,17],"127":[2,17],"129":[2,17],"130":[2,17],"133":[2,17],"134":[2,17],"135":[2,17],"136":[2,17],"137":[2,17],"138":[2,17]},{"1":[2,18],"4":[2,18],"28":[2,18],"29":[2,18],"50":[2,18],"55":[2,18],"58":[2,18],"70":[2,18],"75":[2,18],"85":[2,18],"90":[2,18],"99":[2,18],"101":[2,18],"102":[2,18],"103":[2,18],"110":[2,18],"114":[2,18],"115":[2,18],"126":[2,18],"127":[2,18],"129":[2,18],"130":[2,18],"133":[2,18],"134":[2,18],"135":[2,18],"136":[2,18],"137":[2,18],"138":[2,18]},{"1":[2,19],"4":[2,19],"28":[2,19],"29":[2,19],"50":[2,19],"55":[2,19],"58":[2,19],"70":[2,19],"75":[2,19],"85":[2,19],"90":[2,19],"99":[2,19],"101":[2,19],"102":[2,19],"103":[2,19],"110":[2,19],"114":[2,19],"115":[2,19],"126":[2,19],"127":[2,19],"129":[2,19],"130":[2,19],"133":[2,19],"134":[2,19],"135":[2,19],"136":[2,19],"137":[2,19],"138":[2,19]},{"1":[2,20],"4":[2,20],"28":[2,20],"29":[2,20],"50":[2,20],"55":[2,20],"58":[2,20],"70":[2,20],"75":[2,20],"85":[2,20],"90":[2,20],"99":[2,20],"101":[2,20],"102":[2,20],"103":[2,20],"110":[2,20],"114":[2,20],"115":[2,20],"126":[2,20],"127":[2,20],"129":[2,20],"130":[2,20],"133":[2,20],"134":[2,20],"135":[2,20],"136":[2,20],"137":[2,20],"138":[2,20]},{"1":[2,21],"4":[2,21],"28":[2,21],"29":[2,21],"50":[2,21],"55":[2,21],"58":[2,21],"70":[2,21],"75":[2,21],"85":[2,21],"90":[2,21],"99":[2,21],"101":[2,21],"102":[2,21],"103":[2,21],"110":[2,21],"114":[2,21],"115":[2,21],"126":[2,21],"127":[2,21],"129":[2,21],"130":[2,21],"133":[2,21],"134":[2,21],"135":[2,21],"136":[2,21],"137":[2,21],"138":[2,21]},{"1":[2,22],"4":[2,22],"28":[2,22],"29":[2,22],"50":[2,22],"55":[2,22],"58":[2,22],"70":[2,22],"75":[2,22],"85":[2,22],"90":[2,22],"99":[2,22],"101":[2,22],"102":[2,22],"103":[2,22],"110":[2,22],"114":[2,22],"115":[2,22],"126":[2,22],"127":[2,22],"129":[2,22],"130":[2,22],"133":[2,22],"134":[2,22],"135":[2,22],"136":[2,22],"137":[2,22],"138":[2,22]},{"1":[2,23],"4":[2,23],"28":[2,23],"29":[2,23],"50":[2,23],"55":[2,23],"58":[2,23],"70":[2,23],"75":[2,23],"85":[2,23],"90":[2,23],"99":[2,23],"101":[2,23],"102":[2,23],"103":[2,23],"110":[2,23],"114":[2,23],"115":[2,23],"126":[2,23],"127":[2,23],"129":[2,23],"130":[2,23],"133":[2,23],"134":[2,23],"135":[2,23],"136":[2,23],"137":[2,23],"138":[2,23]},{"1":[2,24],"4":[2,24],"28":[2,24],"29":[2,24],"50":[2,24],"55":[2,24],"58":[2,24],"70":[2,24],"75":[2,24],"85":[2,24],"90":[2,24],"99":[2,24],"101":[2,24],"102":[2,24],"103":[2,24],"110":[2,24],"114":[2,24],"115":[2,24],"126":[2,24],"127":[2,24],"129":[2,24],"130":[2,24],"133":[2,24],"134":[2,24],"135":[2,24],"136":[2,24],"137":[2,24],"138":[2,24]},{"1":[2,25],"4":[2,25],"28":[2,25],"29":[2,25],"50":[2,25],"55":[2,25],"58":[2,25],"70":[2,25],"75":[2,25],"85":[2,25],"90":[2,25],"99":[2,25],"101":[2,25],"102":[2,25],"103":[2,25],"110":[2,25],"114":[2,25],"115":[2,25],"126":[2,25],"127":[2,25],"129":[2,25],"130":[2,25],"133":[2,25],"134":[2,25],"135":[2,25],"136":[2,25],"137":[2,25],"138":[2,25]},{"1":[2,26],"4":[2,26],"28":[2,26],"29":[2,26],"50":[2,26],"55":[2,26],"58":[2,26],"70":[2,26],"75":[2,26],"85":[2,26],"90":[2,26],"99":[2,26],"101":[2,26],"102":[2,26],"103":[2,26],"110":[2,26],"114":[2,26],"115":[2,26],"126":[2,26],"127":[2,26],"129":[2,26],"130":[2,26],"133":[2,26],"134":[2,26],"135":[2,26],"136":[2,26],"137":[2,26],"138":[2,26]},{"1":[2,27],"4":[2,27],"28":[2,27],"29":[2,27],"50":[2,27],"55":[2,27],"58":[2,27],"70":[2,27],"75":[2,27],"85":[2,27],"90":[2,27],"99":[2,27],"101":[2,27],"102":[2,27],"103":[2,27],"110":[2,27],"114":[2,27],"115":[2,27],"126":[2,27],"127":[2,27],"129":[2,27],"130":[2,27],"133":[2,27],"134":[2,27],"135":[2,27],"136":[2,27],"137":[2,27],"138":[2,27]},{"1":[2,10],"4":[2,10],"29":[2,10],"101":[2,10],"103":[2,10],"115":[2,10],"126":[2,10],"127":[2,10]},{"1":[2,11],"4":[2,11],"29":[2,11],"101":[2,11],"103":[2,11],"115":[2,11],"126":[2,11],"127":[2,11]},{"1":[2,12],"4":[2,12],"29":[2,12],"101":[2,12],"103":[2,12],"115":[2,12],"126":[2,12],"127":[2,12]},{"1":[2,13],"4":[2,13],"29":[2,13],"101":[2,13],"103":[2,13],"115":[2,13],"126":[2,13],"127":[2,13]},{"1":[2,14],"4":[2,14],"29":[2,14],"101":[2,14],"103":[2,14],"115":[2,14],"126":[2,14],"127":[2,14]},{"1":[2,73],"4":[2,73],"28":[2,73],"29":[2,73],"40":[1,107],"50":[2,73],"55":[2,73],"58":[2,73],"65":[2,73],"66":[2,73],"67":[2,73],"69":[2,73],"70":[2,73],"71":[2,73],"72":[2,73],"75":[2,73],"83":[2,73],"84":[2,73],"85":[2,73],"90":[2,73],"99":[2,73],"101":[2,73],"102":[2,73],"103":[2,73],"110":[2,73],"114":[2,73],"115":[2,73],"126":[2,73],"127":[2,73],"129":[2,73],"130":[2,73],"133":[2,73],"134":[2,73],"135":[2,73],"136":[2,73],"137":[2,73],"138":[2,73]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"50":[2,74],"55":[2,74],"58":[2,74],"65":[2,74],"66":[2,74],"67":[2,74],"69":[2,74],"70":[2,74],"71":[2,74],"72":[2,74],"75":[2,74],"83":[2,74],"84":[2,74],"85":[2,74],"90":[2,74],"99":[2,74],"101":[2,74],"102":[2,74],"103":[2,74],"110":[2,74],"114":[2,74],"115":[2,74],"126":[2,74],"127":[2,74],"129":[2,74],"130":[2,74],"133":[2,74],"134":[2,74],"135":[2,74],"136":[2,74],"137":[2,74],"138":[2,74]},{"1":[2,75],"4":[2,75],"28":[2,75],"29":[2,75],"50":[2,75],"55":[2,75],"58":[2,75],"65":[2,75],"66":[2,75],"67":[2,75],"69":[2,75],"70":[2,75],"71":[2,75],"72":[2,75],"75":[2,75],"83":[2,75],"84":[2,75],"85":[2,75],"90":[2,75],"99":[2,75],"101":[2,75],"102":[2,75],"103":[2,75],"110":[2,75],"114":[2,75],"115":[2,75],"126":[2,75],"127":[2,75],"129":[2,75],"130":[2,75],"133":[2,75],"134":[2,75],"135":[2,75],"136":[2,75],"137":[2,75],"138":[2,75]},{"1":[2,76],"4":[2,76],"28":[2,76],"29":[2,76],"50":[2,76],"55":[2,76],"58":[2,76],"65":[2,76],"66":[2,76],"67":[2,76],"69":[2,76],"70":[2,76],"71":[2,76],"72":[2,76],"75":[2,76],"83":[2,76],"84":[2,76],"85":[2,76],"90":[2,76],"99":[2,76],"101":[2,76],"102":[2,76],"103":[2,76],"110":[2,76],"114":[2,76],"115":[2,76],"126":[2,76],"127":[2,76],"129":[2,76],"130":[2,76],"133":[2,76],"134":[2,76],"135":[2,76],"136":[2,76],"137":[2,76],"138":[2,76]},{"1":[2,109],"4":[2,109],"28":[2,109],"29":[2,109],"50":[2,109],"55":[2,109],"58":[2,109],"65":[2,109],"66":[2,109],"67":[2,109],"69":[2,109],"70":[2,109],"71":[2,109],"72":[2,109],"75":[2,109],"81":108,"83":[2,109],"84":[1,109],"85":[2,109],"90":[2,109],"99":[2,109],"101":[2,109],"102":[2,109],"103":[2,109],"110":[2,109],"114":[2,109],"115":[2,109],"126":[2,109],"127":[2,109],"129":[2,109],"130":[2,109],"133":[2,109],"134":[2,109],"135":[2,109],"136":[2,109],"137":[2,109],"138":[2,109]},{"30":113,"31":[1,73],"44":114,"49":110,"50":[2,57],"55":[2,57],"56":111,"57":112,"88":[1,115]},{"4":[1,117],"6":116,"28":[1,6]},{"8":118,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":120,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":121,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"15":123,"16":124,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":125,"44":62,"45":29,"60":122,"62":50,"63":51,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"15":123,"16":124,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":125,"44":62,"45":29,"60":126,"62":50,"63":51,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"1":[2,70],"4":[2,70],"28":[2,70],"29":[2,70],"40":[2,70],"50":[2,70],"55":[2,70],"58":[2,70],"65":[2,70],"66":[2,70],"67":[2,70],"69":[2,70],"70":[2,70],"71":[2,70],"72":[2,70],"75":[2,70],"77":[1,130],"83":[2,70],"84":[2,70],"85":[2,70],"90":[2,70],"99":[2,70],"101":[2,70],"102":[2,70],"103":[2,70],"110":[2,70],"114":[2,70],"115":[2,70],"126":[2,70],"127":[2,70],"129":[2,70],"130":[2,70],"131":[1,127],"132":[1,128],"133":[2,70],"134":[2,70],"135":[2,70],"136":[2,70],"137":[2,70],"138":[2,70],"139":[1,129]},{"1":[2,181],"4":[2,181],"28":[2,181],"29":[2,181],"50":[2,181],"55":[2,181],"58":[2,181],"70":[2,181],"75":[2,181],"85":[2,181],"90":[2,181],"99":[2,181],"101":[2,181],"102":[2,181],"103":[2,181],"110":[2,181],"114":[2,181],"115":[2,181],"120":[1,131],"126":[2,181],"127":[2,181],"129":[2,181],"130":[2,181],"133":[2,181],"134":[2,181],"135":[2,181],"136":[2,181],"137":[2,181],"138":[2,181]},{"4":[1,117],"6":132,"28":[1,6]},{"4":[1,117],"6":133,"28":[1,6]},{"1":[2,143],"4":[2,143],"28":[2,143],"29":[2,143],"50":[2,143],"55":[2,143],"58":[2,143],"70":[2,143],"75":[2,143],"85":[2,143],"90":[2,143],"99":[2,143],"101":[2,143],"102":[2,143],"103":[2,143],"110":[2,143],"114":[2,143],"115":[2,143],"126":[2,143],"127":[2,143],"129":[2,143],"130":[2,143],"133":[2,143],"134":[2,143],"135":[2,143],"136":[2,143],"137":[2,143],"138":[2,143]},{"4":[1,117],"6":134,"28":[1,6]},{"8":135,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,136],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,96],"4":[2,96],"15":123,"16":124,"28":[1,138],"29":[2,96],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":125,"44":62,"45":29,"50":[2,96],"55":[2,96],"58":[2,96],"60":137,"62":50,"63":51,"64":30,"70":[2,96],"73":[1,70],"75":[2,96],"77":[1,139],"82":[1,31],"85":[2,96],"87":[1,57],"88":[1,58],"89":[1,69],"90":[2,96],"98":[1,56],"99":[2,96],"101":[2,96],"102":[2,96],"103":[2,96],"110":[2,96],"114":[2,96],"115":[2,96],"126":[2,96],"127":[2,96],"129":[2,96],"130":[2,96],"133":[2,96],"134":[2,96],"135":[2,96],"136":[2,96],"137":[2,96],"138":[2,96]},{"1":[2,50],"4":[2,50],"28":[2,50],"29":[2,50],"50":[2,50],"55":[2,50],"58":[2,50],"70":[2,50],"75":[2,50],"85":[2,50],"90":[2,50],"95":[2,50],"96":[2,50],"99":[2,50],"101":[2,50],"102":[2,50],"103":[2,50],"110":[2,50],"114":[2,50],"115":[2,50],"120":[2,50],"122":[2,50],"126":[2,50],"127":[2,50],"129":[2,50],"130":[2,50],"133":[2,50],"134":[2,50],"135":[2,50],"136":[2,50],"137":[2,50],"138":[2,50]},{"1":[2,49],"4":[2,49],"8":140,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[2,49],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[2,49],"103":[2,49],"104":43,"105":[1,67],"106":44,"115":[2,49],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"126":[2,49],"127":[2,49],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":141,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"40":[2,71],"50":[2,71],"55":[2,71],"58":[2,71],"65":[2,71],"66":[2,71],"67":[2,71],"69":[2,71],"70":[2,71],"71":[2,71],"72":[2,71],"75":[2,71],"83":[2,71],"84":[2,71],"85":[2,71],"90":[2,71],"99":[2,71],"101":[2,71],"102":[2,71],"103":[2,71],"110":[2,71],"114":[2,71],"115":[2,71],"126":[2,71],"127":[2,71],"129":[2,71],"130":[2,71],"133":[2,71],"134":[2,71],"135":[2,71],"136":[2,71],"137":[2,71],"138":[2,71]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"40":[2,72],"50":[2,72],"55":[2,72],"58":[2,72],"65":[2,72],"66":[2,72],"67":[2,72],"69":[2,72],"70":[2,72],"71":[2,72],"72":[2,72],"75":[2,72],"83":[2,72],"84":[2,72],"85":[2,72],"90":[2,72],"99":[2,72],"101":[2,72],"102":[2,72],"103":[2,72],"110":[2,72],"114":[2,72],"115":[2,72],"126":[2,72],"127":[2,72],"129":[2,72],"130":[2,72],"133":[2,72],"134":[2,72],"135":[2,72],"136":[2,72],"137":[2,72],"138":[2,72]},{"1":[2,34],"4":[2,34],"28":[2,34],"29":[2,34],"50":[2,34],"55":[2,34],"58":[2,34],"65":[2,34],"66":[2,34],"67":[2,34],"69":[2,34],"70":[2,34],"71":[2,34],"72":[2,34],"75":[2,34],"83":[2,34],"84":[2,34],"85":[2,34],"90":[2,34],"99":[2,34],"101":[2,34],"102":[2,34],"103":[2,34],"110":[2,34],"114":[2,34],"115":[2,34],"126":[2,34],"127":[2,34],"129":[2,34],"130":[2,34],"133":[2,34],"134":[2,34],"135":[2,34],"136":[2,34],"137":[2,34],"138":[2,34]},{"1":[2,35],"4":[2,35],"28":[2,35],"29":[2,35],"50":[2,35],"55":[2,35],"58":[2,35],"65":[2,35],"66":[2,35],"67":[2,35],"69":[2,35],"70":[2,35],"71":[2,35],"72":[2,35],"75":[2,35],"83":[2,35],"84":[2,35],"85":[2,35],"90":[2,35],"99":[2,35],"101":[2,35],"102":[2,35],"103":[2,35],"110":[2,35],"114":[2,35],"115":[2,35],"126":[2,35],"127":[2,35],"129":[2,35],"130":[2,35],"133":[2,35],"134":[2,35],"135":[2,35],"136":[2,35],"137":[2,35],"138":[2,35]},{"1":[2,36],"4":[2,36],"28":[2,36],"29":[2,36],"50":[2,36],"55":[2,36],"58":[2,36],"65":[2,36],"66":[2,36],"67":[2,36],"69":[2,36],"70":[2,36],"71":[2,36],"72":[2,36],"75":[2,36],"83":[2,36],"84":[2,36],"85":[2,36],"90":[2,36],"99":[2,36],"101":[2,36],"102":[2,36],"103":[2,36],"110":[2,36],"114":[2,36],"115":[2,36],"126":[2,36],"127":[2,36],"129":[2,36],"130":[2,36],"133":[2,36],"134":[2,36],"135":[2,36],"136":[2,36],"137":[2,36],"138":[2,36]},{"1":[2,37],"4":[2,37],"28":[2,37],"29":[2,37],"50":[2,37],"55":[2,37],"58":[2,37],"65":[2,37],"66":[2,37],"67":[2,37],"69":[2,37],"70":[2,37],"71":[2,37],"72":[2,37],"75":[2,37],"83":[2,37],"84":[2,37],"85":[2,37],"90":[2,37],"99":[2,37],"101":[2,37],"102":[2,37],"103":[2,37],"110":[2,37],"114":[2,37],"115":[2,37],"126":[2,37],"127":[2,37],"129":[2,37],"130":[2,37],"133":[2,37],"134":[2,37],"135":[2,37],"136":[2,37],"137":[2,37],"138":[2,37]},{"8":142,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,115],"4":[2,115],"28":[2,115],"29":[2,115],"50":[2,115],"55":[2,115],"58":[2,115],"65":[2,115],"66":[2,115],"67":[2,115],"69":[2,115],"70":[2,115],"71":[2,115],"72":[2,115],"75":[2,115],"83":[2,115],"84":[2,115],"85":[2,115],"90":[2,115],"99":[2,115],"101":[2,115],"102":[2,115],"103":[2,115],"110":[2,115],"114":[2,115],"115":[2,115],"126":[2,115],"127":[2,115],"129":[2,115],"130":[2,115],"133":[2,115],"134":[2,115],"135":[2,115],"136":[2,115],"137":[2,115],"138":[2,115]},{"1":[2,116],"4":[2,116],"28":[2,116],"29":[2,116],"30":143,"31":[1,73],"50":[2,116],"55":[2,116],"58":[2,116],"65":[2,116],"66":[2,116],"67":[2,116],"69":[2,116],"70":[2,116],"71":[2,116],"72":[2,116],"75":[2,116],"83":[2,116],"84":[2,116],"85":[2,116],"90":[2,116],"99":[2,116],"101":[2,116],"102":[2,116],"103":[2,116],"110":[2,116],"114":[2,116],"115":[2,116],"126":[2,116],"127":[2,116],"129":[2,116],"130":[2,116],"133":[2,116],"134":[2,116],"135":[2,116],"136":[2,116],"137":[2,116],"138":[2,116]},{"4":[2,53],"28":[2,53]},{"4":[2,54],"28":[2,54]},{"1":[2,66],"4":[2,66],"28":[2,66],"29":[2,66],"40":[2,66],"50":[2,66],"55":[2,66],"58":[2,66],"65":[2,66],"66":[2,66],"67":[2,66],"69":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"75":[2,66],"77":[2,66],"83":[2,66],"84":[2,66],"85":[2,66],"90":[2,66],"99":[2,66],"101":[2,66],"102":[2,66],"103":[2,66],"110":[2,66],"114":[2,66],"115":[2,66],"126":[2,66],"127":[2,66],"129":[2,66],"130":[2,66],"131":[2,66],"132":[2,66],"133":[2,66],"134":[2,66],"135":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"40":[2,69],"50":[2,69],"55":[2,69],"58":[2,69],"65":[2,69],"66":[2,69],"67":[2,69],"69":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"75":[2,69],"77":[2,69],"83":[2,69],"84":[2,69],"85":[2,69],"90":[2,69],"99":[2,69],"101":[2,69],"102":[2,69],"103":[2,69],"110":[2,69],"114":[2,69],"115":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"131":[2,69],"132":[2,69],"133":[2,69],"134":[2,69],"135":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69]},{"8":144,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":145,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":146,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":147,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[1,117],"6":148,"8":149,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"30":151,"31":[1,73],"62":153,"63":154,"73":[1,70],"89":[1,69],"107":150,"116":[1,152]},{"8":159,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,158],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":160,"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"86":156,"87":[1,57],"88":[1,58],"89":[1,69],"90":[1,155],"91":157,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,86],"27":165,"28":[2,86],"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":162,"42":163,"44":164,"45":168,"47":[1,47],"55":[2,86],"74":161,"75":[2,86],"88":[1,115],"98":[1,56]},{"1":[2,32],"4":[2,32],"28":[2,32],"29":[2,32],"43":[2,32],"50":[2,32],"55":[2,32],"58":[2,32],"65":[2,32],"66":[2,32],"67":[2,32],"69":[2,32],"70":[2,32],"71":[2,32],"72":[2,32],"75":[2,32],"83":[2,32],"84":[2,32],"85":[2,32],"90":[2,32],"99":[2,32],"101":[2,32],"102":[2,32],"103":[2,32],"110":[2,32],"114":[2,32],"115":[2,32],"126":[2,32],"127":[2,32],"129":[2,32],"130":[2,32],"133":[2,32],"134":[2,32],"135":[2,32],"136":[2,32],"137":[2,32],"138":[2,32]},{"1":[2,33],"4":[2,33],"28":[2,33],"29":[2,33],"43":[2,33],"50":[2,33],"55":[2,33],"58":[2,33],"65":[2,33],"66":[2,33],"67":[2,33],"69":[2,33],"70":[2,33],"71":[2,33],"72":[2,33],"75":[2,33],"83":[2,33],"84":[2,33],"85":[2,33],"90":[2,33],"99":[2,33],"101":[2,33],"102":[2,33],"103":[2,33],"110":[2,33],"114":[2,33],"115":[2,33],"126":[2,33],"127":[2,33],"129":[2,33],"130":[2,33],"133":[2,33],"134":[2,33],"135":[2,33],"136":[2,33],"137":[2,33],"138":[2,33]},{"1":[2,31],"4":[2,31],"28":[2,31],"29":[2,31],"40":[2,31],"43":[2,31],"50":[2,31],"55":[2,31],"58":[2,31],"65":[2,31],"66":[2,31],"67":[2,31],"69":[2,31],"70":[2,31],"71":[2,31],"72":[2,31],"75":[2,31],"77":[2,31],"83":[2,31],"84":[2,31],"85":[2,31],"90":[2,31],"99":[2,31],"101":[2,31],"102":[2,31],"103":[2,31],"109":[2,31],"110":[2,31],"112":[2,31],"114":[2,31],"115":[2,31],"117":[2,31],"126":[2,31],"127":[2,31],"129":[2,31],"130":[2,31],"131":[2,31],"132":[2,31],"133":[2,31],"134":[2,31],"135":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31]},{"1":[2,30],"4":[2,30],"28":[2,30],"29":[2,30],"50":[2,30],"55":[2,30],"58":[2,30],"70":[2,30],"75":[2,30],"85":[2,30],"90":[2,30],"95":[2,30],"96":[2,30],"99":[2,30],"101":[2,30],"102":[2,30],"103":[2,30],"110":[2,30],"114":[2,30],"115":[2,30],"120":[2,30],"122":[2,30],"126":[2,30],"127":[2,30],"129":[2,30],"130":[2,30],"133":[2,30],"134":[2,30],"135":[2,30],"136":[2,30],"137":[2,30],"138":[2,30]},{"1":[2,7],"4":[2,7],"7":169,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[2,7],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,4]},{"4":[1,75],"29":[1,170]},{"1":[2,29],"4":[2,29],"28":[2,29],"29":[2,29],"50":[2,29],"55":[2,29],"58":[2,29],"70":[2,29],"75":[2,29],"85":[2,29],"90":[2,29],"95":[2,29],"96":[2,29],"99":[2,29],"101":[2,29],"102":[2,29],"103":[2,29],"110":[2,29],"114":[2,29],"115":[2,29],"120":[2,29],"122":[2,29],"126":[2,29],"127":[2,29],"129":[2,29],"130":[2,29],"133":[2,29],"134":[2,29],"135":[2,29],"136":[2,29],"137":[2,29],"138":[2,29]},{"1":[2,193],"4":[2,193],"28":[2,193],"29":[2,193],"50":[2,193],"55":[2,193],"58":[2,193],"70":[2,193],"75":[2,193],"85":[2,193],"90":[2,193],"99":[2,193],"101":[2,193],"102":[2,193],"103":[2,193],"110":[2,193],"114":[2,193],"115":[2,193],"126":[2,193],"127":[2,193],"129":[2,193],"130":[2,193],"133":[2,193],"134":[2,193],"135":[2,193],"136":[2,193],"137":[2,193],"138":[2,193]},{"8":171,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":172,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":173,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":174,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":175,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":176,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":177,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":178,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":179,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,142],"4":[2,142],"28":[2,142],"29":[2,142],"50":[2,142],"55":[2,142],"58":[2,142],"70":[2,142],"75":[2,142],"85":[2,142],"90":[2,142],"99":[2,142],"101":[2,142],"102":[2,142],"103":[2,142],"110":[2,142],"114":[2,142],"115":[2,142],"126":[2,142],"127":[2,142],"129":[2,142],"130":[2,142],"133":[2,142],"134":[2,142],"135":[2,142],"136":[2,142],"137":[2,142],"138":[2,142]},{"1":[2,147],"4":[2,147],"28":[2,147],"29":[2,147],"50":[2,147],"55":[2,147],"58":[2,147],"70":[2,147],"75":[2,147],"85":[2,147],"90":[2,147],"99":[2,147],"101":[2,147],"102":[2,147],"103":[2,147],"110":[2,147],"114":[2,147],"115":[2,147],"126":[2,147],"127":[2,147],"129":[2,147],"130":[2,147],"133":[2,147],"134":[2,147],"135":[2,147],"136":[2,147],"137":[2,147],"138":[2,147]},{"8":180,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":181,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,141],"4":[2,141],"28":[2,141],"29":[2,141],"50":[2,141],"55":[2,141],"58":[2,141],"70":[2,141],"75":[2,141],"85":[2,141],"90":[2,141],"99":[2,141],"101":[2,141],"102":[2,141],"103":[2,141],"110":[2,141],"114":[2,141],"115":[2,141],"126":[2,141],"127":[2,141],"129":[2,141],"130":[2,141],"133":[2,141],"134":[2,141],"135":[2,141],"136":[2,141],"137":[2,141],"138":[2,141]},{"1":[2,146],"4":[2,146],"28":[2,146],"29":[2,146],"50":[2,146],"55":[2,146],"58":[2,146],"70":[2,146],"75":[2,146],"85":[2,146],"90":[2,146],"99":[2,146],"101":[2,146],"102":[2,146],"103":[2,146],"110":[2,146],"114":[2,146],"115":[2,146],"126":[2,146],"127":[2,146],"129":[2,146],"130":[2,146],"133":[2,146],"134":[2,146],"135":[2,146],"136":[2,146],"137":[2,146],"138":[2,146]},{"81":182,"84":[1,109]},{"1":[2,67],"4":[2,67],"28":[2,67],"29":[2,67],"40":[2,67],"50":[2,67],"55":[2,67],"58":[2,67],"65":[2,67],"66":[2,67],"67":[2,67],"69":[2,67],"70":[2,67],"71":[2,67],"72":[2,67],"75":[2,67],"77":[2,67],"83":[2,67],"84":[2,67],"85":[2,67],"90":[2,67],"99":[2,67],"101":[2,67],"102":[2,67],"103":[2,67],"110":[2,67],"114":[2,67],"115":[2,67],"126":[2,67],"127":[2,67],"129":[2,67],"130":[2,67],"131":[2,67],"132":[2,67],"133":[2,67],"134":[2,67],"135":[2,67],"136":[2,67],"137":[2,67],"138":[2,67],"139":[2,67]},{"84":[2,112]},{"30":183,"31":[1,73]},{"30":184,"31":[1,73]},{"1":[2,80],"4":[2,80],"28":[2,80],"29":[2,80],"30":185,"31":[1,73],"40":[2,80],"50":[2,80],"55":[2,80],"58":[2,80],"65":[2,80],"66":[2,80],"67":[2,80],"69":[2,80],"70":[2,80],"71":[2,80],"72":[2,80],"75":[2,80],"77":[2,80],"83":[2,80],"84":[2,80],"85":[2,80],"90":[2,80],"99":[2,80],"101":[2,80],"102":[2,80],"103":[2,80],"110":[2,80],"114":[2,80],"115":[2,80],"126":[2,80],"127":[2,80],"129":[2,80],"130":[2,80],"131":[2,80],"132":[2,80],"133":[2,80],"134":[2,80],"135":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80]},{"1":[2,81],"4":[2,81],"28":[2,81],"29":[2,81],"40":[2,81],"50":[2,81],"55":[2,81],"58":[2,81],"65":[2,81],"66":[2,81],"67":[2,81],"69":[2,81],"70":[2,81],"71":[2,81],"72":[2,81],"75":[2,81],"77":[2,81],"83":[2,81],"84":[2,81],"85":[2,81],"90":[2,81],"99":[2,81],"101":[2,81],"102":[2,81],"103":[2,81],"110":[2,81],"114":[2,81],"115":[2,81],"126":[2,81],"127":[2,81],"129":[2,81],"130":[2,81],"131":[2,81],"132":[2,81],"133":[2,81],"134":[2,81],"135":[2,81],"136":[2,81],"137":[2,81],"138":[2,81],"139":[2,81]},{"8":186,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"68":187,"69":[1,102],"71":[1,103],"72":[1,104]},{"68":188,"69":[1,102],"71":[1,103],"72":[1,104]},{"81":189,"84":[1,109]},{"1":[2,68],"4":[2,68],"28":[2,68],"29":[2,68],"40":[2,68],"50":[2,68],"55":[2,68],"58":[2,68],"65":[2,68],"66":[2,68],"67":[2,68],"69":[2,68],"70":[2,68],"71":[2,68],"72":[2,68],"75":[2,68],"77":[2,68],"83":[2,68],"84":[2,68],"85":[2,68],"90":[2,68],"99":[2,68],"101":[2,68],"102":[2,68],"103":[2,68],"110":[2,68],"114":[2,68],"115":[2,68],"126":[2,68],"127":[2,68],"129":[2,68],"130":[2,68],"131":[2,68],"132":[2,68],"133":[2,68],"134":[2,68],"135":[2,68],"136":[2,68],"137":[2,68],"138":[2,68],"139":[2,68]},{"8":190,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,191],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,110],"4":[2,110],"28":[2,110],"29":[2,110],"50":[2,110],"55":[2,110],"58":[2,110],"65":[2,110],"66":[2,110],"67":[2,110],"69":[2,110],"70":[2,110],"71":[2,110],"72":[2,110],"75":[2,110],"83":[2,110],"84":[2,110],"85":[2,110],"90":[2,110],"99":[2,110],"101":[2,110],"102":[2,110],"103":[2,110],"110":[2,110],"114":[2,110],"115":[2,110],"126":[2,110],"127":[2,110],"129":[2,110],"130":[2,110],"133":[2,110],"134":[2,110],"135":[2,110],"136":[2,110],"137":[2,110],"138":[2,110]},{"8":159,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,158],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":160,"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"85":[1,192],"86":193,"87":[1,57],"88":[1,58],"89":[1,69],"91":157,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"50":[1,194],"55":[1,195]},{"50":[2,58],"55":[2,58]},{"40":[1,197],"50":[2,60],"55":[2,60],"58":[1,196]},{"40":[2,63],"50":[2,63],"55":[2,63],"58":[2,63]},{"40":[2,64],"50":[2,64],"55":[2,64],"58":[2,64]},{"30":143,"31":[1,73]},{"1":[2,52],"4":[2,52],"28":[2,52],"29":[2,52],"50":[2,52],"55":[2,52],"58":[2,52],"70":[2,52],"75":[2,52],"85":[2,52],"90":[2,52],"99":[2,52],"101":[2,52],"102":[2,52],"103":[2,52],"110":[2,52],"114":[2,52],"115":[2,52],"126":[2,52],"127":[2,52],"129":[2,52],"130":[2,52],"133":[2,52],"134":[2,52],"135":[2,52],"136":[2,52],"137":[2,52],"138":[2,52]},{"27":74,"47":[1,47]},{"1":[2,186],"4":[2,186],"28":[2,186],"29":[2,186],"50":[2,186],"55":[2,186],"58":[2,186],"70":[2,186],"75":[2,186],"85":[2,186],"90":[2,186],"99":[2,186],"100":89,"101":[2,186],"102":[2,186],"103":[2,186],"106":90,"110":[2,186],"114":[2,186],"115":[2,186],"126":[2,186],"127":[2,186],"129":[2,186],"130":[2,186],"133":[1,79],"134":[2,186],"135":[2,186],"136":[2,186],"137":[2,186],"138":[2,186]},{"100":93,"101":[1,65],"103":[1,66],"106":94,"115":[1,68],"126":[1,91],"127":[1,92]},{"1":[2,187],"4":[2,187],"28":[2,187],"29":[2,187],"50":[2,187],"55":[2,187],"58":[2,187],"70":[2,187],"75":[2,187],"85":[2,187],"90":[2,187],"99":[2,187],"100":89,"101":[2,187],"102":[2,187],"103":[2,187],"106":90,"110":[2,187],"114":[2,187],"115":[2,187],"126":[2,187],"127":[2,187],"129":[2,187],"130":[2,187],"133":[1,79],"134":[2,187],"135":[2,187],"136":[2,187],"137":[2,187],"138":[2,187]},{"1":[2,188],"4":[2,188],"28":[2,188],"29":[2,188],"50":[2,188],"55":[2,188],"58":[2,188],"70":[2,188],"75":[2,188],"85":[2,188],"90":[2,188],"99":[2,188],"100":89,"101":[2,188],"102":[2,188],"103":[2,188],"106":90,"110":[2,188],"114":[2,188],"115":[2,188],"126":[2,188],"127":[2,188],"129":[2,188],"130":[2,188],"133":[1,79],"134":[2,188],"135":[2,188],"136":[2,188],"137":[2,188],"138":[2,188]},{"1":[2,189],"4":[2,189],"28":[2,189],"29":[2,189],"50":[2,189],"55":[2,189],"58":[2,189],"65":[2,70],"66":[2,70],"67":[2,70],"69":[2,70],"70":[2,189],"71":[2,70],"72":[2,70],"75":[2,189],"83":[2,70],"84":[2,70],"85":[2,189],"90":[2,189],"99":[2,189],"101":[2,189],"102":[2,189],"103":[2,189],"110":[2,189],"114":[2,189],"115":[2,189],"126":[2,189],"127":[2,189],"129":[2,189],"130":[2,189],"133":[2,189],"134":[2,189],"135":[2,189],"136":[2,189],"137":[2,189],"138":[2,189]},{"61":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"71":[1,103],"72":[1,104],"80":95,"83":[1,97],"84":[2,111]},{"61":106,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"71":[1,103],"72":[1,104],"80":105,"83":[1,97],"84":[2,111]},{"1":[2,73],"4":[2,73],"28":[2,73],"29":[2,73],"50":[2,73],"55":[2,73],"58":[2,73],"65":[2,73],"66":[2,73],"67":[2,73],"69":[2,73],"70":[2,73],"71":[2,73],"72":[2,73],"75":[2,73],"83":[2,73],"84":[2,73],"85":[2,73],"90":[2,73],"99":[2,73],"101":[2,73],"102":[2,73],"103":[2,73],"110":[2,73],"114":[2,73],"115":[2,73],"126":[2,73],"127":[2,73],"129":[2,73],"130":[2,73],"133":[2,73],"134":[2,73],"135":[2,73],"136":[2,73],"137":[2,73],"138":[2,73]},{"1":[2,190],"4":[2,190],"28":[2,190],"29":[2,190],"50":[2,190],"55":[2,190],"58":[2,190],"65":[2,70],"66":[2,70],"67":[2,70],"69":[2,70],"70":[2,190],"71":[2,70],"72":[2,70],"75":[2,190],"83":[2,70],"84":[2,70],"85":[2,190],"90":[2,190],"99":[2,190],"101":[2,190],"102":[2,190],"103":[2,190],"110":[2,190],"114":[2,190],"115":[2,190],"126":[2,190],"127":[2,190],"129":[2,190],"130":[2,190],"133":[2,190],"134":[2,190],"135":[2,190],"136":[2,190],"137":[2,190],"138":[2,190]},{"1":[2,191],"4":[2,191],"28":[2,191],"29":[2,191],"50":[2,191],"55":[2,191],"58":[2,191],"70":[2,191],"75":[2,191],"85":[2,191],"90":[2,191],"99":[2,191],"101":[2,191],"102":[2,191],"103":[2,191],"110":[2,191],"114":[2,191],"115":[2,191],"126":[2,191],"127":[2,191],"129":[2,191],"130":[2,191],"133":[2,191],"134":[2,191],"135":[2,191],"136":[2,191],"137":[2,191],"138":[2,191]},{"1":[2,192],"4":[2,192],"28":[2,192],"29":[2,192],"50":[2,192],"55":[2,192],"58":[2,192],"70":[2,192],"75":[2,192],"85":[2,192],"90":[2,192],"99":[2,192],"101":[2,192],"102":[2,192],"103":[2,192],"110":[2,192],"114":[2,192],"115":[2,192],"126":[2,192],"127":[2,192],"129":[2,192],"130":[2,192],"133":[2,192],"134":[2,192],"135":[2,192],"136":[2,192],"137":[2,192],"138":[2,192]},{"8":198,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,199],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"15":200,"16":124,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":125,"44":62,"45":29,"60":201,"62":50,"63":51,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"4":[1,117],"6":203,"28":[1,6],"124":[1,202]},{"1":[2,129],"4":[2,129],"28":[2,129],"29":[2,129],"50":[2,129],"55":[2,129],"58":[2,129],"70":[2,129],"75":[2,129],"85":[2,129],"90":[2,129],"94":204,"95":[1,205],"96":[1,206],"99":[2,129],"101":[2,129],"102":[2,129],"103":[2,129],"110":[2,129],"114":[2,129],"115":[2,129],"126":[2,129],"127":[2,129],"129":[2,129],"130":[2,129],"133":[2,129],"134":[2,129],"135":[2,129],"136":[2,129],"137":[2,129],"138":[2,129]},{"1":[2,140],"4":[2,140],"28":[2,140],"29":[2,140],"50":[2,140],"55":[2,140],"58":[2,140],"70":[2,140],"75":[2,140],"85":[2,140],"90":[2,140],"99":[2,140],"101":[2,140],"102":[2,140],"103":[2,140],"110":[2,140],"114":[2,140],"115":[2,140],"126":[2,140],"127":[2,140],"129":[2,140],"130":[2,140],"133":[2,140],"134":[2,140],"135":[2,140],"136":[2,140],"137":[2,140],"138":[2,140]},{"1":[2,148],"4":[2,148],"28":[2,148],"29":[2,148],"50":[2,148],"55":[2,148],"58":[2,148],"70":[2,148],"75":[2,148],"85":[2,148],"90":[2,148],"99":[2,148],"101":[2,148],"102":[2,148],"103":[2,148],"110":[2,148],"114":[2,148],"115":[2,148],"126":[2,148],"127":[2,148],"129":[2,148],"130":[2,148],"133":[2,148],"134":[2,148],"135":[2,148],"136":[2,148],"137":[2,148],"138":[2,148]},{"28":[1,207],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"119":208,"121":209,"122":[1,210]},{"1":[2,91],"4":[2,91],"28":[1,212],"29":[2,91],"50":[2,91],"55":[2,91],"58":[2,91],"65":[2,70],"66":[2,70],"67":[2,70],"69":[2,70],"70":[2,91],"71":[2,70],"72":[2,70],"75":[2,91],"77":[1,211],"83":[2,70],"84":[2,70],"85":[2,91],"90":[2,91],"99":[2,91],"101":[2,91],"102":[2,91],"103":[2,91],"110":[2,91],"114":[2,91],"115":[2,91],"126":[2,91],"127":[2,91],"129":[2,91],"130":[2,91],"133":[2,91],"134":[2,91],"135":[2,91],"136":[2,91],"137":[2,91],"138":[2,91]},{"4":[2,102],"27":165,"29":[2,102],"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":216,"42":163,"44":217,"45":168,"47":[1,47],"73":[1,215],"78":213,"79":214,"88":[1,115],"98":[1,56]},{"15":218,"16":124,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":125,"44":62,"45":29,"60":201,"62":50,"63":51,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"1":[2,48],"4":[2,48],"29":[2,48],"100":89,"101":[2,48],"103":[2,48],"106":90,"115":[2,48],"126":[2,48],"127":[2,48],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,134],"4":[2,134],"29":[2,134],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[2,134],"127":[2,134],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"99":[1,219],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,117],"4":[2,117],"28":[2,117],"29":[2,117],"40":[2,117],"43":[2,117],"50":[2,117],"55":[2,117],"58":[2,117],"65":[2,117],"66":[2,117],"67":[2,117],"69":[2,117],"70":[2,117],"71":[2,117],"72":[2,117],"75":[2,117],"77":[2,117],"83":[2,117],"84":[2,117],"85":[2,117],"90":[2,117],"99":[2,117],"101":[2,117],"102":[2,117],"103":[2,117],"110":[2,117],"114":[2,117],"115":[2,117],"126":[2,117],"127":[2,117],"129":[2,117],"130":[2,117],"131":[2,117],"132":[2,117],"133":[2,117],"134":[2,117],"135":[2,117],"136":[2,117],"137":[2,117],"138":[2,117],"139":[2,117]},{"4":[1,117],"6":220,"28":[1,6],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,117],"6":221,"28":[1,6],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,136],"4":[2,136],"28":[2,136],"29":[2,136],"50":[2,136],"55":[2,136],"58":[2,136],"70":[2,136],"75":[2,136],"85":[2,136],"90":[2,136],"99":[2,136],"100":89,"101":[1,65],"102":[1,222],"103":[1,66],"106":90,"110":[2,136],"114":[2,136],"115":[1,68],"126":[2,136],"127":[2,136],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,138],"4":[2,138],"28":[2,138],"29":[2,138],"50":[2,138],"55":[2,138],"58":[2,138],"70":[2,138],"75":[2,138],"85":[2,138],"90":[2,138],"99":[2,138],"100":89,"101":[1,65],"102":[1,223],"103":[1,66],"106":90,"110":[2,138],"114":[2,138],"115":[1,68],"126":[2,138],"127":[2,138],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,144],"4":[2,144],"28":[2,144],"29":[2,144],"50":[2,144],"55":[2,144],"58":[2,144],"70":[2,144],"75":[2,144],"85":[2,144],"90":[2,144],"99":[2,144],"101":[2,144],"102":[2,144],"103":[2,144],"110":[2,144],"114":[2,144],"115":[2,144],"126":[2,144],"127":[2,144],"129":[2,144],"130":[2,144],"133":[2,144],"134":[2,144],"135":[2,144],"136":[2,144],"137":[2,144],"138":[2,144]},{"1":[2,145],"4":[2,145],"28":[2,145],"29":[2,145],"50":[2,145],"55":[2,145],"58":[2,145],"70":[2,145],"75":[2,145],"85":[2,145],"90":[2,145],"99":[2,145],"100":89,"101":[1,65],"102":[2,145],"103":[1,66],"106":90,"110":[2,145],"114":[2,145],"115":[1,68],"126":[2,145],"127":[2,145],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"55":[1,225],"108":224,"109":[1,226]},{"55":[2,149],"109":[2,149],"111":227,"112":[1,229],"117":[1,228]},{"30":230,"31":[1,73]},{"55":[2,150],"109":[2,150],"112":[2,150]},{"55":[2,151],"109":[2,151],"112":[2,151]},{"1":[2,118],"4":[2,118],"28":[2,118],"29":[2,118],"40":[2,118],"50":[2,118],"55":[2,118],"58":[2,118],"65":[2,118],"66":[2,118],"67":[2,118],"69":[2,118],"70":[2,118],"71":[2,118],"72":[2,118],"75":[2,118],"83":[2,118],"84":[2,118],"85":[2,118],"90":[2,118],"99":[2,118],"101":[2,118],"102":[2,118],"103":[2,118],"109":[2,118],"110":[2,118],"112":[2,118],"114":[2,118],"115":[2,118],"126":[2,118],"127":[2,118],"129":[2,118],"130":[2,118],"133":[2,118],"134":[2,118],"135":[2,118],"136":[2,118],"137":[2,118],"138":[2,118]},{"4":[2,55],"28":[2,55],"54":231,"55":[1,232],"90":[2,55]},{"4":[2,120],"28":[2,120],"29":[2,120],"55":[2,120],"85":[2,120],"90":[2,120]},{"8":159,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,158],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":160,"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"86":233,"87":[1,57],"88":[1,58],"89":[1,69],"91":157,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,125],"28":[2,125],"29":[2,125],"55":[2,125],"58":[1,234],"85":[2,125],"90":[2,125],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[2,126],"28":[2,126],"29":[2,126],"55":[2,126],"85":[2,126],"90":[2,126]},{"4":[2,55],"28":[2,55],"54":235,"55":[1,236],"75":[2,55]},{"4":[2,87],"28":[2,87],"29":[2,87],"55":[2,87],"75":[2,87]},{"4":[2,40],"28":[2,40],"29":[2,40],"43":[1,237],"55":[2,40],"75":[2,40]},{"4":[2,43],"28":[2,43],"29":[2,43],"55":[2,43],"75":[2,43]},{"4":[2,44],"28":[2,44],"29":[2,44],"55":[2,44],"75":[2,44]},{"4":[2,45],"28":[2,45],"29":[2,45],"43":[2,45],"55":[2,45],"75":[2,45]},{"4":[2,46],"28":[2,46],"29":[2,46],"43":[2,46],"55":[2,46],"75":[2,46]},{"4":[2,47],"28":[2,47],"29":[2,47],"43":[2,47],"55":[2,47],"75":[2,47]},{"1":[2,6],"4":[2,6],"29":[2,6]},{"1":[2,28],"4":[2,28],"28":[2,28],"29":[2,28],"50":[2,28],"55":[2,28],"58":[2,28],"70":[2,28],"75":[2,28],"85":[2,28],"90":[2,28],"95":[2,28],"96":[2,28],"99":[2,28],"101":[2,28],"102":[2,28],"103":[2,28],"110":[2,28],"114":[2,28],"115":[2,28],"120":[2,28],"122":[2,28],"126":[2,28],"127":[2,28],"129":[2,28],"130":[2,28],"133":[2,28],"134":[2,28],"135":[2,28],"136":[2,28],"137":[2,28],"138":[2,28]},{"1":[2,194],"4":[2,194],"28":[2,194],"29":[2,194],"50":[2,194],"55":[2,194],"58":[2,194],"70":[2,194],"75":[2,194],"85":[2,194],"90":[2,194],"99":[2,194],"100":89,"101":[2,194],"102":[2,194],"103":[2,194],"106":90,"110":[2,194],"114":[2,194],"115":[2,194],"126":[2,194],"127":[2,194],"129":[2,194],"130":[2,194],"133":[1,79],"134":[1,82],"135":[2,194],"136":[2,194],"137":[2,194],"138":[2,194]},{"1":[2,195],"4":[2,195],"28":[2,195],"29":[2,195],"50":[2,195],"55":[2,195],"58":[2,195],"70":[2,195],"75":[2,195],"85":[2,195],"90":[2,195],"99":[2,195],"100":89,"101":[2,195],"102":[2,195],"103":[2,195],"106":90,"110":[2,195],"114":[2,195],"115":[2,195],"126":[2,195],"127":[2,195],"129":[2,195],"130":[2,195],"133":[1,79],"134":[1,82],"135":[2,195],"136":[2,195],"137":[2,195],"138":[2,195]},{"1":[2,196],"4":[2,196],"28":[2,196],"29":[2,196],"50":[2,196],"55":[2,196],"58":[2,196],"70":[2,196],"75":[2,196],"85":[2,196],"90":[2,196],"99":[2,196],"100":89,"101":[2,196],"102":[2,196],"103":[2,196],"106":90,"110":[2,196],"114":[2,196],"115":[2,196],"126":[2,196],"127":[2,196],"129":[2,196],"130":[2,196],"133":[1,79],"134":[2,196],"135":[2,196],"136":[2,196],"137":[2,196],"138":[2,196]},{"1":[2,197],"4":[2,197],"28":[2,197],"29":[2,197],"50":[2,197],"55":[2,197],"58":[2,197],"70":[2,197],"75":[2,197],"85":[2,197],"90":[2,197],"99":[2,197],"100":89,"101":[2,197],"102":[2,197],"103":[2,197],"106":90,"110":[2,197],"114":[2,197],"115":[2,197],"126":[2,197],"127":[2,197],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[2,197],"136":[2,197],"137":[2,197],"138":[2,197]},{"1":[2,198],"4":[2,198],"28":[2,198],"29":[2,198],"50":[2,198],"55":[2,198],"58":[2,198],"70":[2,198],"75":[2,198],"85":[2,198],"90":[2,198],"99":[2,198],"100":89,"101":[2,198],"102":[2,198],"103":[2,198],"106":90,"110":[2,198],"114":[2,198],"115":[2,198],"126":[2,198],"127":[2,198],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[2,198],"137":[2,198],"138":[1,86]},{"1":[2,199],"4":[2,199],"28":[2,199],"29":[2,199],"50":[2,199],"55":[2,199],"58":[2,199],"70":[2,199],"75":[2,199],"85":[2,199],"90":[2,199],"99":[2,199],"100":89,"101":[2,199],"102":[2,199],"103":[2,199],"106":90,"110":[2,199],"114":[2,199],"115":[2,199],"126":[2,199],"127":[2,199],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[2,199],"138":[1,86]},{"1":[2,200],"4":[2,200],"28":[2,200],"29":[2,200],"50":[2,200],"55":[2,200],"58":[2,200],"70":[2,200],"75":[2,200],"85":[2,200],"90":[2,200],"99":[2,200],"100":89,"101":[2,200],"102":[2,200],"103":[2,200],"106":90,"110":[2,200],"114":[2,200],"115":[2,200],"126":[2,200],"127":[2,200],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[2,200],"137":[2,200],"138":[2,200]},{"1":[2,183],"4":[2,183],"28":[2,183],"29":[2,183],"50":[2,183],"55":[2,183],"58":[2,183],"70":[2,183],"75":[2,183],"85":[2,183],"90":[2,183],"99":[2,183],"100":89,"101":[1,65],"102":[2,183],"103":[1,66],"106":90,"110":[2,183],"114":[2,183],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,185],"4":[2,185],"28":[2,185],"29":[2,185],"50":[2,185],"55":[2,185],"58":[2,185],"70":[2,185],"75":[2,185],"85":[2,185],"90":[2,185],"99":[2,185],"100":89,"101":[1,65],"102":[2,185],"103":[1,66],"106":90,"110":[2,185],"114":[2,185],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,182],"4":[2,182],"28":[2,182],"29":[2,182],"50":[2,182],"55":[2,182],"58":[2,182],"70":[2,182],"75":[2,182],"85":[2,182],"90":[2,182],"99":[2,182],"100":89,"101":[1,65],"102":[2,182],"103":[1,66],"106":90,"110":[2,182],"114":[2,182],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,184],"4":[2,184],"28":[2,184],"29":[2,184],"50":[2,184],"55":[2,184],"58":[2,184],"70":[2,184],"75":[2,184],"85":[2,184],"90":[2,184],"99":[2,184],"100":89,"101":[1,65],"102":[2,184],"103":[1,66],"106":90,"110":[2,184],"114":[2,184],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,107],"4":[2,107],"28":[2,107],"29":[2,107],"50":[2,107],"55":[2,107],"58":[2,107],"65":[2,107],"66":[2,107],"67":[2,107],"69":[2,107],"70":[2,107],"71":[2,107],"72":[2,107],"75":[2,107],"83":[2,107],"84":[2,107],"85":[2,107],"90":[2,107],"99":[2,107],"101":[2,107],"102":[2,107],"103":[2,107],"110":[2,107],"114":[2,107],"115":[2,107],"126":[2,107],"127":[2,107],"129":[2,107],"130":[2,107],"133":[2,107],"134":[2,107],"135":[2,107],"136":[2,107],"137":[2,107],"138":[2,107]},{"1":[2,77],"4":[2,77],"28":[2,77],"29":[2,77],"40":[2,77],"50":[2,77],"55":[2,77],"58":[2,77],"65":[2,77],"66":[2,77],"67":[2,77],"69":[2,77],"70":[2,77],"71":[2,77],"72":[2,77],"75":[2,77],"77":[2,77],"83":[2,77],"84":[2,77],"85":[2,77],"90":[2,77],"99":[2,77],"101":[2,77],"102":[2,77],"103":[2,77],"110":[2,77],"114":[2,77],"115":[2,77],"126":[2,77],"127":[2,77],"129":[2,77],"130":[2,77],"131":[2,77],"132":[2,77],"133":[2,77],"134":[2,77],"135":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77]},{"1":[2,78],"4":[2,78],"28":[2,78],"29":[2,78],"40":[2,78],"50":[2,78],"55":[2,78],"58":[2,78],"65":[2,78],"66":[2,78],"67":[2,78],"69":[2,78],"70":[2,78],"71":[2,78],"72":[2,78],"75":[2,78],"77":[2,78],"83":[2,78],"84":[2,78],"85":[2,78],"90":[2,78],"99":[2,78],"101":[2,78],"102":[2,78],"103":[2,78],"110":[2,78],"114":[2,78],"115":[2,78],"126":[2,78],"127":[2,78],"129":[2,78],"130":[2,78],"131":[2,78],"132":[2,78],"133":[2,78],"134":[2,78],"135":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78]},{"1":[2,79],"4":[2,79],"28":[2,79],"29":[2,79],"40":[2,79],"50":[2,79],"55":[2,79],"58":[2,79],"65":[2,79],"66":[2,79],"67":[2,79],"69":[2,79],"70":[2,79],"71":[2,79],"72":[2,79],"75":[2,79],"77":[2,79],"83":[2,79],"84":[2,79],"85":[2,79],"90":[2,79],"99":[2,79],"101":[2,79],"102":[2,79],"103":[2,79],"110":[2,79],"114":[2,79],"115":[2,79],"126":[2,79],"127":[2,79],"129":[2,79],"130":[2,79],"131":[2,79],"132":[2,79],"133":[2,79],"134":[2,79],"135":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79]},{"70":[1,238],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,83],"4":[2,83],"28":[2,83],"29":[2,83],"40":[2,83],"50":[2,83],"55":[2,83],"58":[2,83],"65":[2,83],"66":[2,83],"67":[2,83],"69":[2,83],"70":[2,83],"71":[2,83],"72":[2,83],"75":[2,83],"77":[2,83],"83":[2,83],"84":[2,83],"85":[2,83],"90":[2,83],"99":[2,83],"101":[2,83],"102":[2,83],"103":[2,83],"110":[2,83],"114":[2,83],"115":[2,83],"126":[2,83],"127":[2,83],"129":[2,83],"130":[2,83],"131":[2,83],"132":[2,83],"133":[2,83],"134":[2,83],"135":[2,83],"136":[2,83],"137":[2,83],"138":[2,83],"139":[2,83]},{"1":[2,84],"4":[2,84],"28":[2,84],"29":[2,84],"40":[2,84],"50":[2,84],"55":[2,84],"58":[2,84],"65":[2,84],"66":[2,84],"67":[2,84],"69":[2,84],"70":[2,84],"71":[2,84],"72":[2,84],"75":[2,84],"77":[2,84],"83":[2,84],"84":[2,84],"85":[2,84],"90":[2,84],"99":[2,84],"101":[2,84],"102":[2,84],"103":[2,84],"110":[2,84],"114":[2,84],"115":[2,84],"126":[2,84],"127":[2,84],"129":[2,84],"130":[2,84],"131":[2,84],"132":[2,84],"133":[2,84],"134":[2,84],"135":[2,84],"136":[2,84],"137":[2,84],"138":[2,84],"139":[2,84]},{"1":[2,108],"4":[2,108],"28":[2,108],"29":[2,108],"50":[2,108],"55":[2,108],"58":[2,108],"65":[2,108],"66":[2,108],"67":[2,108],"69":[2,108],"70":[2,108],"71":[2,108],"72":[2,108],"75":[2,108],"83":[2,108],"84":[2,108],"85":[2,108],"90":[2,108],"99":[2,108],"101":[2,108],"102":[2,108],"103":[2,108],"110":[2,108],"114":[2,108],"115":[2,108],"126":[2,108],"127":[2,108],"129":[2,108],"130":[2,108],"133":[2,108],"134":[2,108],"135":[2,108],"136":[2,108],"137":[2,108],"138":[2,108]},{"1":[2,38],"4":[2,38],"28":[2,38],"29":[2,38],"50":[2,38],"55":[2,38],"58":[2,38],"70":[2,38],"75":[2,38],"85":[2,38],"90":[2,38],"99":[2,38],"100":89,"101":[2,38],"102":[2,38],"103":[2,38],"106":90,"110":[2,38],"114":[2,38],"115":[2,38],"126":[2,38],"127":[2,38],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":239,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,113],"4":[2,113],"28":[2,113],"29":[2,113],"50":[2,113],"55":[2,113],"58":[2,113],"65":[2,113],"66":[2,113],"67":[2,113],"69":[2,113],"70":[2,113],"71":[2,113],"72":[2,113],"75":[2,113],"83":[2,113],"84":[2,113],"85":[2,113],"90":[2,113],"99":[2,113],"101":[2,113],"102":[2,113],"103":[2,113],"110":[2,113],"114":[2,113],"115":[2,113],"126":[2,113],"127":[2,113],"129":[2,113],"130":[2,113],"133":[2,113],"134":[2,113],"135":[2,113],"136":[2,113],"137":[2,113],"138":[2,113]},{"4":[2,55],"28":[2,55],"54":240,"55":[1,232],"85":[2,55]},{"51":241,"52":[1,59],"53":[1,60]},{"30":113,"31":[1,73],"44":114,"56":242,"57":112,"88":[1,115]},{"50":[2,61],"55":[2,61]},{"8":243,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,201],"4":[2,201],"28":[2,201],"29":[2,201],"50":[2,201],"55":[2,201],"58":[2,201],"70":[2,201],"75":[2,201],"85":[2,201],"90":[2,201],"99":[2,201],"100":89,"101":[2,201],"102":[2,201],"103":[2,201],"106":90,"110":[2,201],"114":[2,201],"115":[2,201],"126":[2,201],"127":[2,201],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":244,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,106],"4":[2,106],"28":[2,106],"29":[2,106],"50":[2,106],"55":[2,106],"58":[2,106],"61":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,106],"71":[1,103],"72":[1,104],"75":[2,106],"80":95,"83":[1,97],"84":[2,111],"85":[2,106],"90":[2,106],"99":[2,106],"101":[2,106],"102":[2,106],"103":[2,106],"110":[2,106],"114":[2,106],"115":[2,106],"126":[2,106],"127":[2,106],"129":[2,106],"130":[2,106],"133":[2,106],"134":[2,106],"135":[2,106],"136":[2,106],"137":[2,106],"138":[2,106]},{"1":[2,70],"4":[2,70],"28":[2,70],"29":[2,70],"50":[2,70],"55":[2,70],"58":[2,70],"65":[2,70],"66":[2,70],"67":[2,70],"69":[2,70],"70":[2,70],"71":[2,70],"72":[2,70],"75":[2,70],"83":[2,70],"84":[2,70],"85":[2,70],"90":[2,70],"99":[2,70],"101":[2,70],"102":[2,70],"103":[2,70],"110":[2,70],"114":[2,70],"115":[2,70],"126":[2,70],"127":[2,70],"129":[2,70],"130":[2,70],"133":[2,70],"134":[2,70],"135":[2,70],"136":[2,70],"137":[2,70],"138":[2,70]},{"8":245,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,180],"4":[2,180],"28":[2,180],"29":[2,180],"50":[2,180],"55":[2,180],"58":[2,180],"70":[2,180],"75":[2,180],"85":[2,180],"90":[2,180],"99":[2,180],"101":[2,180],"102":[2,180],"103":[2,180],"110":[2,180],"114":[2,180],"115":[2,180],"120":[2,180],"126":[2,180],"127":[2,180],"129":[2,180],"130":[2,180],"133":[2,180],"134":[2,180],"135":[2,180],"136":[2,180],"137":[2,180],"138":[2,180]},{"1":[2,130],"4":[2,130],"28":[2,130],"29":[2,130],"50":[2,130],"55":[2,130],"58":[2,130],"70":[2,130],"75":[2,130],"85":[2,130],"90":[2,130],"95":[1,246],"99":[2,130],"101":[2,130],"102":[2,130],"103":[2,130],"110":[2,130],"114":[2,130],"115":[2,130],"126":[2,130],"127":[2,130],"129":[2,130],"130":[2,130],"133":[2,130],"134":[2,130],"135":[2,130],"136":[2,130],"137":[2,130],"138":[2,130]},{"4":[1,117],"6":247,"28":[1,6]},{"30":248,"31":[1,73]},{"119":249,"121":209,"122":[1,210]},{"29":[1,250],"120":[1,251],"121":252,"122":[1,210]},{"29":[2,173],"120":[2,173],"122":[2,173]},{"8":254,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"92":253,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"15":255,"16":124,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":125,"44":62,"45":29,"60":201,"62":50,"63":51,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"4":[2,102],"27":165,"29":[2,102],"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":216,"42":163,"44":217,"45":168,"47":[1,47],"73":[1,215],"78":256,"79":214,"88":[1,115],"98":[1,56]},{"4":[1,258],"29":[1,257]},{"4":[2,103],"29":[2,103],"75":[2,103]},{"4":[2,102],"27":165,"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":216,"42":163,"44":217,"45":168,"47":[1,47],"73":[1,215],"75":[2,102],"78":259,"79":214,"88":[1,115],"98":[1,56]},{"4":[2,99],"29":[2,99],"75":[2,99]},{"4":[2,43],"29":[2,43],"43":[1,260],"75":[2,43]},{"1":[2,97],"4":[2,97],"28":[1,261],"29":[2,97],"50":[2,97],"55":[2,97],"58":[2,97],"61":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,97],"71":[1,103],"72":[1,104],"75":[2,97],"80":95,"83":[1,97],"84":[2,111],"85":[2,97],"90":[2,97],"99":[2,97],"101":[2,97],"102":[2,97],"103":[2,97],"110":[2,97],"114":[2,97],"115":[2,97],"126":[2,97],"127":[2,97],"129":[2,97],"130":[2,97],"133":[2,97],"134":[2,97],"135":[2,97],"136":[2,97],"137":[2,97],"138":[2,97]},{"1":[2,135],"4":[2,135],"28":[2,135],"29":[2,135],"43":[2,135],"50":[2,135],"55":[2,135],"58":[2,135],"65":[2,135],"66":[2,135],"67":[2,135],"69":[2,135],"70":[2,135],"71":[2,135],"72":[2,135],"75":[2,135],"83":[2,135],"84":[2,135],"85":[2,135],"90":[2,135],"99":[2,135],"101":[2,135],"102":[2,135],"103":[2,135],"110":[2,135],"114":[2,135],"115":[2,135],"126":[2,135],"127":[2,135],"129":[2,135],"130":[2,135],"133":[2,135],"134":[2,135],"135":[2,135],"136":[2,135],"137":[2,135],"138":[2,135]},{"1":[2,177],"4":[2,177],"28":[2,177],"29":[2,177],"50":[2,177],"55":[2,177],"58":[2,177],"70":[2,177],"75":[2,177],"85":[2,177],"90":[2,177],"99":[2,177],"101":[2,177],"102":[2,177],"103":[2,177],"110":[2,177],"114":[2,177],"115":[2,177],"120":[2,177],"126":[2,177],"127":[2,177],"129":[2,177],"130":[2,177],"133":[2,177],"134":[2,177],"135":[2,177],"136":[2,177],"137":[2,177],"138":[2,177]},{"1":[2,178],"4":[2,178],"28":[2,178],"29":[2,178],"50":[2,178],"55":[2,178],"58":[2,178],"70":[2,178],"75":[2,178],"85":[2,178],"90":[2,178],"99":[2,178],"101":[2,178],"102":[2,178],"103":[2,178],"110":[2,178],"114":[2,178],"115":[2,178],"120":[2,178],"126":[2,178],"127":[2,178],"129":[2,178],"130":[2,178],"133":[2,178],"134":[2,178],"135":[2,178],"136":[2,178],"137":[2,178],"138":[2,178]},{"8":262,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":263,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,162],"4":[2,162],"28":[2,162],"29":[2,162],"50":[2,162],"55":[2,162],"58":[2,162],"70":[2,162],"75":[2,162],"85":[2,162],"90":[2,162],"99":[2,162],"101":[2,162],"102":[2,162],"103":[2,162],"110":[2,162],"114":[2,162],"115":[2,162],"126":[2,162],"127":[2,162],"129":[2,162],"130":[2,162],"133":[2,162],"134":[2,162],"135":[2,162],"136":[2,162],"137":[2,162],"138":[2,162]},{"30":264,"31":[1,73],"62":153,"63":154,"73":[1,70],"89":[1,69],"107":265},{"8":266,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,164],"4":[2,164],"28":[2,164],"29":[2,164],"50":[2,164],"55":[2,164],"58":[2,164],"70":[2,164],"75":[2,164],"85":[2,164],"90":[2,164],"99":[2,164],"101":[2,164],"102":[2,164],"103":[2,164],"110":[2,164],"114":[2,164],"115":[2,164],"126":[2,164],"127":[2,164],"129":[2,164],"130":[2,164],"133":[2,164],"134":[2,164],"135":[2,164],"136":[2,164],"137":[2,164],"138":[2,164]},{"8":267,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":268,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"55":[1,270],"111":269,"112":[1,229]},{"4":[1,272],"28":[1,273],"90":[1,271]},{"4":[2,56],"8":159,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[2,56],"29":[2,56],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":160,"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"85":[2,56],"87":[1,57],"88":[1,58],"89":[1,69],"90":[2,56],"91":274,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":275,"55":[1,232]},{"4":[2,65],"28":[2,65],"29":[2,65],"55":[2,65],"85":[2,65],"90":[2,65]},{"4":[1,277],"28":[1,278],"75":[1,276]},{"4":[2,56],"27":165,"28":[2,56],"29":[2,56],"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":279,"42":163,"44":164,"45":168,"47":[1,47],"75":[2,56],"88":[1,115],"98":[1,56]},{"8":280,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,281],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,82],"4":[2,82],"28":[2,82],"29":[2,82],"40":[2,82],"50":[2,82],"55":[2,82],"58":[2,82],"65":[2,82],"66":[2,82],"67":[2,82],"69":[2,82],"70":[2,82],"71":[2,82],"72":[2,82],"75":[2,82],"77":[2,82],"83":[2,82],"84":[2,82],"85":[2,82],"90":[2,82],"99":[2,82],"101":[2,82],"102":[2,82],"103":[2,82],"110":[2,82],"114":[2,82],"115":[2,82],"126":[2,82],"127":[2,82],"129":[2,82],"130":[2,82],"131":[2,82],"132":[2,82],"133":[2,82],"134":[2,82],"135":[2,82],"136":[2,82],"137":[2,82],"138":[2,82],"139":[2,82]},{"29":[1,282],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,272],"28":[1,273],"85":[1,283]},{"4":[1,117],"6":284,"28":[1,6]},{"50":[2,59],"55":[2,59]},{"50":[2,62],"55":[2,62],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"29":[1,285],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,117],"6":286,"28":[1,6],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,117],"6":287,"28":[1,6]},{"1":[2,131],"4":[2,131],"28":[2,131],"29":[2,131],"50":[2,131],"55":[2,131],"58":[2,131],"70":[2,131],"75":[2,131],"85":[2,131],"90":[2,131],"99":[2,131],"101":[2,131],"102":[2,131],"103":[2,131],"110":[2,131],"114":[2,131],"115":[2,131],"126":[2,131],"127":[2,131],"129":[2,131],"130":[2,131],"133":[2,131],"134":[2,131],"135":[2,131],"136":[2,131],"137":[2,131],"138":[2,131]},{"4":[1,117],"6":288,"28":[1,6]},{"29":[1,289],"120":[1,290],"121":252,"122":[1,210]},{"1":[2,171],"4":[2,171],"28":[2,171],"29":[2,171],"50":[2,171],"55":[2,171],"58":[2,171],"70":[2,171],"75":[2,171],"85":[2,171],"90":[2,171],"99":[2,171],"101":[2,171],"102":[2,171],"103":[2,171],"110":[2,171],"114":[2,171],"115":[2,171],"126":[2,171],"127":[2,171],"129":[2,171],"130":[2,171],"133":[2,171],"134":[2,171],"135":[2,171],"136":[2,171],"137":[2,171],"138":[2,171]},{"4":[1,117],"6":291,"28":[1,6]},{"29":[2,174],"120":[2,174],"122":[2,174]},{"4":[1,117],"6":292,"28":[1,6],"55":[1,293]},{"4":[2,127],"28":[2,127],"55":[2,127],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,92],"4":[2,92],"28":[1,294],"29":[2,92],"50":[2,92],"55":[2,92],"58":[2,92],"61":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,92],"71":[1,103],"72":[1,104],"75":[2,92],"80":95,"83":[1,97],"84":[2,111],"85":[2,92],"90":[2,92],"99":[2,92],"101":[2,92],"102":[2,92],"103":[2,92],"110":[2,92],"114":[2,92],"115":[2,92],"126":[2,92],"127":[2,92],"129":[2,92],"130":[2,92],"133":[2,92],"134":[2,92],"135":[2,92],"136":[2,92],"137":[2,92],"138":[2,92]},{"4":[1,258],"29":[1,295]},{"1":[2,95],"4":[2,95],"28":[2,95],"29":[2,95],"50":[2,95],"55":[2,95],"58":[2,95],"70":[2,95],"75":[2,95],"85":[2,95],"90":[2,95],"99":[2,95],"101":[2,95],"102":[2,95],"103":[2,95],"110":[2,95],"114":[2,95],"115":[2,95],"126":[2,95],"127":[2,95],"129":[2,95],"130":[2,95],"133":[2,95],"134":[2,95],"135":[2,95],"136":[2,95],"137":[2,95],"138":[2,95]},{"27":165,"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":216,"42":163,"44":217,"45":168,"47":[1,47],"79":296,"88":[1,115],"98":[1,56]},{"4":[1,258],"75":[1,297]},{"8":298,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,299],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,102],"27":165,"29":[2,102],"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":216,"42":163,"44":217,"45":168,"47":[1,47],"73":[1,215],"78":300,"79":214,"88":[1,115],"98":[1,56]},{"1":[2,137],"4":[2,137],"28":[2,137],"29":[2,137],"50":[2,137],"55":[2,137],"58":[2,137],"70":[2,137],"75":[2,137],"85":[2,137],"90":[2,137],"99":[2,137],"100":89,"101":[1,65],"102":[2,137],"103":[1,66],"106":90,"110":[2,137],"114":[2,137],"115":[1,68],"126":[2,137],"127":[2,137],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,139],"4":[2,139],"28":[2,139],"29":[2,139],"50":[2,139],"55":[2,139],"58":[2,139],"70":[2,139],"75":[2,139],"85":[2,139],"90":[2,139],"99":[2,139],"100":89,"101":[1,65],"102":[2,139],"103":[1,66],"106":90,"110":[2,139],"114":[2,139],"115":[1,68],"126":[2,139],"127":[2,139],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"108":301,"109":[1,226],"112":[2,149]},{"111":302,"112":[1,229]},{"1":[2,152],"4":[2,152],"28":[2,152],"29":[2,152],"50":[2,152],"55":[2,152],"58":[2,152],"70":[2,152],"75":[2,152],"85":[2,152],"90":[2,152],"99":[2,152],"100":89,"101":[1,65],"102":[1,303],"103":[1,66],"106":90,"110":[1,304],"114":[2,152],"115":[1,68],"126":[2,152],"127":[2,152],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"100":89,"101":[1,65],"103":[1,66],"106":90,"113":305,"114":[1,306],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,156],"4":[2,156],"28":[2,156],"29":[2,156],"50":[2,156],"55":[2,156],"58":[2,156],"70":[2,156],"75":[2,156],"85":[2,156],"90":[2,156],"99":[2,156],"100":89,"101":[1,65],"102":[1,307],"103":[1,66],"106":90,"110":[2,156],"114":[2,156],"115":[1,68],"126":[2,156],"127":[2,156],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,166],"4":[2,166],"28":[2,166],"29":[2,166],"50":[2,166],"55":[2,166],"58":[2,166],"70":[2,166],"75":[2,166],"85":[2,166],"90":[2,166],"99":[2,166],"101":[2,166],"102":[2,166],"103":[2,166],"110":[2,166],"114":[2,166],"115":[2,166],"126":[2,166],"127":[2,166],"129":[2,166],"130":[2,166],"133":[2,166],"134":[2,166],"135":[2,166],"136":[2,166],"137":[2,166],"138":[2,166]},{"30":309,"31":[1,73],"62":153,"63":154,"73":[1,70],"89":[1,69],"107":308},{"1":[2,119],"4":[2,119],"28":[2,119],"29":[2,119],"40":[2,119],"50":[2,119],"55":[2,119],"58":[2,119],"65":[2,119],"66":[2,119],"67":[2,119],"69":[2,119],"70":[2,119],"71":[2,119],"72":[2,119],"75":[2,119],"83":[2,119],"84":[2,119],"85":[2,119],"90":[2,119],"99":[2,119],"101":[2,119],"102":[2,119],"103":[2,119],"109":[2,119],"110":[2,119],"112":[2,119],"114":[2,119],"115":[2,119],"126":[2,119],"127":[2,119],"129":[2,119],"130":[2,119],"133":[2,119],"134":[2,119],"135":[2,119],"136":[2,119],"137":[2,119],"138":[2,119]},{"8":159,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":160,"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"91":310,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":159,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,158],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":160,"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"86":311,"87":[1,57],"88":[1,58],"89":[1,69],"91":157,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,121],"28":[2,121],"29":[2,121],"55":[2,121],"85":[2,121],"90":[2,121]},{"4":[1,272],"28":[1,273],"29":[1,312]},{"1":[2,85],"4":[2,85],"28":[2,85],"29":[2,85],"40":[2,85],"50":[2,85],"55":[2,85],"58":[2,85],"65":[2,85],"66":[2,85],"67":[2,85],"69":[2,85],"70":[2,85],"71":[2,85],"72":[2,85],"75":[2,85],"83":[2,85],"84":[2,85],"85":[2,85],"90":[2,85],"99":[2,85],"101":[2,85],"102":[2,85],"103":[2,85],"109":[2,85],"110":[2,85],"112":[2,85],"114":[2,85],"115":[2,85],"126":[2,85],"127":[2,85],"129":[2,85],"130":[2,85],"133":[2,85],"134":[2,85],"135":[2,85],"136":[2,85],"137":[2,85],"138":[2,85]},{"27":165,"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":313,"42":163,"44":164,"45":168,"47":[1,47],"88":[1,115],"98":[1,56]},{"4":[2,86],"27":165,"28":[2,86],"29":[2,86],"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":162,"42":163,"44":164,"45":168,"47":[1,47],"55":[2,86],"74":314,"88":[1,115],"98":[1,56]},{"4":[2,88],"28":[2,88],"29":[2,88],"55":[2,88],"75":[2,88]},{"4":[2,41],"28":[2,41],"29":[2,41],"55":[2,41],"75":[2,41],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":315,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,39],"4":[2,39],"28":[2,39],"29":[2,39],"50":[2,39],"55":[2,39],"58":[2,39],"70":[2,39],"75":[2,39],"85":[2,39],"90":[2,39],"99":[2,39],"101":[2,39],"102":[2,39],"103":[2,39],"110":[2,39],"114":[2,39],"115":[2,39],"126":[2,39],"127":[2,39],"129":[2,39],"130":[2,39],"133":[2,39],"134":[2,39],"135":[2,39],"136":[2,39],"137":[2,39],"138":[2,39]},{"1":[2,114],"4":[2,114],"28":[2,114],"29":[2,114],"50":[2,114],"55":[2,114],"58":[2,114],"65":[2,114],"66":[2,114],"67":[2,114],"69":[2,114],"70":[2,114],"71":[2,114],"72":[2,114],"75":[2,114],"83":[2,114],"84":[2,114],"85":[2,114],"90":[2,114],"99":[2,114],"101":[2,114],"102":[2,114],"103":[2,114],"110":[2,114],"114":[2,114],"115":[2,114],"126":[2,114],"127":[2,114],"129":[2,114],"130":[2,114],"133":[2,114],"134":[2,114],"135":[2,114],"136":[2,114],"137":[2,114],"138":[2,114]},{"1":[2,51],"4":[2,51],"28":[2,51],"29":[2,51],"50":[2,51],"55":[2,51],"58":[2,51],"70":[2,51],"75":[2,51],"85":[2,51],"90":[2,51],"99":[2,51],"101":[2,51],"102":[2,51],"103":[2,51],"110":[2,51],"114":[2,51],"115":[2,51],"126":[2,51],"127":[2,51],"129":[2,51],"130":[2,51],"133":[2,51],"134":[2,51],"135":[2,51],"136":[2,51],"137":[2,51],"138":[2,51]},{"1":[2,202],"4":[2,202],"28":[2,202],"29":[2,202],"50":[2,202],"55":[2,202],"58":[2,202],"70":[2,202],"75":[2,202],"85":[2,202],"90":[2,202],"99":[2,202],"101":[2,202],"102":[2,202],"103":[2,202],"110":[2,202],"114":[2,202],"115":[2,202],"126":[2,202],"127":[2,202],"129":[2,202],"130":[2,202],"133":[2,202],"134":[2,202],"135":[2,202],"136":[2,202],"137":[2,202],"138":[2,202]},{"1":[2,179],"4":[2,179],"28":[2,179],"29":[2,179],"50":[2,179],"55":[2,179],"58":[2,179],"70":[2,179],"75":[2,179],"85":[2,179],"90":[2,179],"99":[2,179],"101":[2,179],"102":[2,179],"103":[2,179],"110":[2,179],"114":[2,179],"115":[2,179],"120":[2,179],"126":[2,179],"127":[2,179],"129":[2,179],"130":[2,179],"133":[2,179],"134":[2,179],"135":[2,179],"136":[2,179],"137":[2,179],"138":[2,179]},{"1":[2,132],"4":[2,132],"28":[2,132],"29":[2,132],"50":[2,132],"55":[2,132],"58":[2,132],"70":[2,132],"75":[2,132],"85":[2,132],"90":[2,132],"99":[2,132],"101":[2,132],"102":[2,132],"103":[2,132],"110":[2,132],"114":[2,132],"115":[2,132],"126":[2,132],"127":[2,132],"129":[2,132],"130":[2,132],"133":[2,132],"134":[2,132],"135":[2,132],"136":[2,132],"137":[2,132],"138":[2,132]},{"1":[2,133],"4":[2,133],"28":[2,133],"29":[2,133],"50":[2,133],"55":[2,133],"58":[2,133],"70":[2,133],"75":[2,133],"85":[2,133],"90":[2,133],"95":[2,133],"99":[2,133],"101":[2,133],"102":[2,133],"103":[2,133],"110":[2,133],"114":[2,133],"115":[2,133],"126":[2,133],"127":[2,133],"129":[2,133],"130":[2,133],"133":[2,133],"134":[2,133],"135":[2,133],"136":[2,133],"137":[2,133],"138":[2,133]},{"1":[2,169],"4":[2,169],"28":[2,169],"29":[2,169],"50":[2,169],"55":[2,169],"58":[2,169],"70":[2,169],"75":[2,169],"85":[2,169],"90":[2,169],"99":[2,169],"101":[2,169],"102":[2,169],"103":[2,169],"110":[2,169],"114":[2,169],"115":[2,169],"126":[2,169],"127":[2,169],"129":[2,169],"130":[2,169],"133":[2,169],"134":[2,169],"135":[2,169],"136":[2,169],"137":[2,169],"138":[2,169]},{"4":[1,117],"6":316,"28":[1,6]},{"29":[1,317]},{"4":[1,318],"29":[2,175],"120":[2,175],"122":[2,175]},{"8":319,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,102],"27":165,"29":[2,102],"30":166,"31":[1,73],"32":167,"33":[1,71],"34":[1,72],"41":216,"42":163,"44":217,"45":168,"47":[1,47],"73":[1,215],"78":320,"79":214,"88":[1,115],"98":[1,56]},{"1":[2,93],"4":[2,93],"28":[2,93],"29":[2,93],"50":[2,93],"55":[2,93],"58":[2,93],"70":[2,93],"75":[2,93],"85":[2,93],"90":[2,93],"99":[2,93],"101":[2,93],"102":[2,93],"103":[2,93],"110":[2,93],"114":[2,93],"115":[2,93],"126":[2,93],"127":[2,93],"129":[2,93],"130":[2,93],"133":[2,93],"134":[2,93],"135":[2,93],"136":[2,93],"137":[2,93],"138":[2,93]},{"4":[2,104],"29":[2,104],"75":[2,104]},{"4":[2,105],"29":[2,105],"75":[2,105]},{"4":[2,100],"29":[2,100],"75":[2,100],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":321,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[1,258],"29":[1,322]},{"1":[2,163],"4":[2,163],"28":[2,163],"29":[2,163],"50":[2,163],"55":[2,163],"58":[2,163],"70":[2,163],"75":[2,163],"85":[2,163],"90":[2,163],"99":[2,163],"101":[2,163],"102":[2,163],"103":[2,163],"110":[2,163],"114":[2,163],"115":[2,163],"126":[2,163],"127":[2,163],"129":[2,163],"130":[2,163],"133":[2,163],"134":[2,163],"135":[2,163],"136":[2,163],"137":[2,163],"138":[2,163]},{"1":[2,165],"4":[2,165],"28":[2,165],"29":[2,165],"50":[2,165],"55":[2,165],"58":[2,165],"70":[2,165],"75":[2,165],"85":[2,165],"90":[2,165],"99":[2,165],"101":[2,165],"102":[2,165],"103":[2,165],"110":[2,165],"114":[2,165],"115":[2,165],"126":[2,165],"127":[2,165],"129":[2,165],"130":[2,165],"133":[2,165],"134":[2,165],"135":[2,165],"136":[2,165],"137":[2,165],"138":[2,165]},{"8":323,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":324,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,168],"4":[2,168],"28":[2,168],"29":[2,168],"50":[2,168],"55":[2,168],"58":[2,168],"70":[2,168],"75":[2,168],"85":[2,168],"90":[2,168],"99":[2,168],"101":[2,168],"102":[2,168],"103":[2,168],"110":[2,168],"114":[2,168],"115":[2,168],"126":[2,168],"127":[2,168],"129":[2,168],"130":[2,168],"133":[2,168],"134":[2,168],"135":[2,168],"136":[2,168],"137":[2,168],"138":[2,168]},{"8":325,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":326,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"111":327,"112":[1,229]},{"112":[2,149]},{"4":[2,122],"28":[2,122],"29":[2,122],"55":[2,122],"85":[2,122],"90":[2,122]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":328,"55":[1,232]},{"4":[2,123],"28":[2,123],"29":[2,123],"55":[2,123],"85":[2,123],"90":[2,123]},{"4":[2,89],"28":[2,89],"29":[2,89],"55":[2,89],"75":[2,89]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":329,"55":[1,236]},{"29":[1,330],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"29":[1,331]},{"1":[2,172],"4":[2,172],"28":[2,172],"29":[2,172],"50":[2,172],"55":[2,172],"58":[2,172],"70":[2,172],"75":[2,172],"85":[2,172],"90":[2,172],"99":[2,172],"101":[2,172],"102":[2,172],"103":[2,172],"110":[2,172],"114":[2,172],"115":[2,172],"126":[2,172],"127":[2,172],"129":[2,172],"130":[2,172],"133":[2,172],"134":[2,172],"135":[2,172],"136":[2,172],"137":[2,172],"138":[2,172]},{"29":[2,176],"120":[2,176],"122":[2,176]},{"4":[2,128],"28":[2,128],"55":[2,128],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,258],"29":[1,332]},{"29":[1,333],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,98],"4":[2,98],"28":[2,98],"29":[2,98],"50":[2,98],"55":[2,98],"58":[2,98],"70":[2,98],"75":[2,98],"85":[2,98],"90":[2,98],"99":[2,98],"101":[2,98],"102":[2,98],"103":[2,98],"110":[2,98],"114":[2,98],"115":[2,98],"126":[2,98],"127":[2,98],"129":[2,98],"130":[2,98],"133":[2,98],"134":[2,98],"135":[2,98],"136":[2,98],"137":[2,98],"138":[2,98]},{"1":[2,153],"4":[2,153],"28":[2,153],"29":[2,153],"50":[2,153],"55":[2,153],"58":[2,153],"70":[2,153],"75":[2,153],"85":[2,153],"90":[2,153],"99":[2,153],"100":89,"101":[1,65],"102":[2,153],"103":[1,66],"106":90,"110":[2,153],"114":[2,153],"115":[1,68],"126":[2,153],"127":[2,153],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,154],"4":[2,154],"28":[2,154],"29":[2,154],"50":[2,154],"55":[2,154],"58":[2,154],"70":[2,154],"75":[2,154],"85":[2,154],"90":[2,154],"99":[2,154],"100":89,"101":[1,65],"102":[1,334],"103":[1,66],"106":90,"110":[2,154],"114":[2,154],"115":[1,68],"126":[2,154],"127":[2,154],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,158],"4":[2,158],"28":[2,158],"29":[2,158],"50":[2,158],"55":[2,158],"58":[2,158],"70":[2,158],"75":[2,158],"85":[2,158],"90":[2,158],"99":[2,158],"100":89,"101":[1,65],"102":[1,335],"103":[1,66],"106":90,"110":[1,336],"114":[2,158],"115":[1,68],"126":[2,158],"127":[2,158],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,157],"4":[2,157],"28":[2,157],"29":[2,157],"50":[2,157],"55":[2,157],"58":[2,157],"70":[2,157],"75":[2,157],"85":[2,157],"90":[2,157],"99":[2,157],"100":89,"101":[1,65],"102":[2,157],"103":[1,66],"106":90,"110":[2,157],"114":[2,157],"115":[1,68],"126":[2,157],"127":[2,157],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,167],"4":[2,167],"28":[2,167],"29":[2,167],"50":[2,167],"55":[2,167],"58":[2,167],"70":[2,167],"75":[2,167],"85":[2,167],"90":[2,167],"99":[2,167],"101":[2,167],"102":[2,167],"103":[2,167],"110":[2,167],"114":[2,167],"115":[2,167],"126":[2,167],"127":[2,167],"129":[2,167],"130":[2,167],"133":[2,167],"134":[2,167],"135":[2,167],"136":[2,167],"137":[2,167],"138":[2,167]},{"4":[1,272],"28":[1,273],"29":[1,337]},{"4":[1,277],"28":[1,278],"29":[1,338]},{"4":[2,42],"28":[2,42],"29":[2,42],"55":[2,42],"75":[2,42]},{"1":[2,170],"4":[2,170],"28":[2,170],"29":[2,170],"50":[2,170],"55":[2,170],"58":[2,170],"70":[2,170],"75":[2,170],"85":[2,170],"90":[2,170],"99":[2,170],"101":[2,170],"102":[2,170],"103":[2,170],"110":[2,170],"114":[2,170],"115":[2,170],"126":[2,170],"127":[2,170],"129":[2,170],"130":[2,170],"133":[2,170],"134":[2,170],"135":[2,170],"136":[2,170],"137":[2,170],"138":[2,170]},{"1":[2,94],"4":[2,94],"28":[2,94],"29":[2,94],"50":[2,94],"55":[2,94],"58":[2,94],"70":[2,94],"75":[2,94],"85":[2,94],"90":[2,94],"99":[2,94],"101":[2,94],"102":[2,94],"103":[2,94],"110":[2,94],"114":[2,94],"115":[2,94],"126":[2,94],"127":[2,94],"129":[2,94],"130":[2,94],"133":[2,94],"134":[2,94],"135":[2,94],"136":[2,94],"137":[2,94],"138":[2,94]},{"4":[2,101],"29":[2,101],"75":[2,101]},{"8":339,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":340,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":341,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,124],"28":[2,124],"29":[2,124],"55":[2,124],"85":[2,124],"90":[2,124]},{"4":[2,90],"28":[2,90],"29":[2,90],"55":[2,90],"75":[2,90]},{"1":[2,155],"4":[2,155],"28":[2,155],"29":[2,155],"50":[2,155],"55":[2,155],"58":[2,155],"70":[2,155],"75":[2,155],"85":[2,155],"90":[2,155],"99":[2,155],"100":89,"101":[1,65],"102":[2,155],"103":[1,66],"106":90,"110":[2,155],"114":[2,155],"115":[1,68],"126":[2,155],"127":[2,155],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,159],"4":[2,159],"28":[2,159],"29":[2,159],"50":[2,159],"55":[2,159],"58":[2,159],"70":[2,159],"75":[2,159],"85":[2,159],"90":[2,159],"99":[2,159],"100":89,"101":[1,65],"102":[2,159],"103":[1,66],"106":90,"110":[2,159],"114":[2,159],"115":[1,68],"126":[2,159],"127":[2,159],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,160],"4":[2,160],"28":[2,160],"29":[2,160],"50":[2,160],"55":[2,160],"58":[2,160],"70":[2,160],"75":[2,160],"85":[2,160],"90":[2,160],"99":[2,160],"100":89,"101":[1,65],"102":[1,342],"103":[1,66],"106":90,"110":[2,160],"114":[2,160],"115":[1,68],"126":[2,160],"127":[2,160],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":343,"9":119,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"60":39,"62":50,"63":51,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,161],"4":[2,161],"28":[2,161],"29":[2,161],"50":[2,161],"55":[2,161],"58":[2,161],"70":[2,161],"75":[2,161],"85":[2,161],"90":[2,161],"99":[2,161],"100":89,"101":[1,65],"102":[2,161],"103":[1,66],"106":90,"110":[2,161],"114":[2,161],"115":[1,68],"126":[2,161],"127":[2,161],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]}], -defaultActions: {"76":[2,4],"97":[2,112],"309":[2,149]}, +table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[3]},{"1":[2,2],"27":74,"47":[1,47]},{"1":[2,3],"4":[1,75]},{"4":[1,76]},{"1":[2,5],"4":[2,5],"29":[2,5]},{"5":77,"7":5,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[1,78],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,8],"4":[2,8],"29":[2,8],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,9],"4":[2,9],"29":[2,9],"100":93,"101":[1,65],"103":[1,66],"106":94,"115":[1,68],"126":[1,91],"127":[1,92]},{"1":[2,15],"4":[2,15],"28":[2,15],"29":[2,15],"50":[2,15],"55":[2,15],"58":[2,15],"63":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,15],"71":[1,103],"72":[1,104],"75":[2,15],"80":95,"83":[1,97],"84":[2,113],"85":[2,15],"90":[2,15],"99":[2,15],"101":[2,15],"102":[2,15],"103":[2,15],"110":[2,15],"114":[2,15],"115":[2,15],"126":[2,15],"127":[2,15],"129":[2,15],"130":[2,15],"133":[2,15],"134":[2,15],"135":[2,15],"136":[2,15],"137":[2,15],"138":[2,15]},{"1":[2,16],"4":[2,16],"28":[2,16],"29":[2,16],"50":[2,16],"55":[2,16],"58":[2,16],"63":106,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,16],"71":[1,103],"72":[1,104],"75":[2,16],"80":105,"83":[1,97],"84":[2,113],"85":[2,16],"90":[2,16],"99":[2,16],"101":[2,16],"102":[2,16],"103":[2,16],"110":[2,16],"114":[2,16],"115":[2,16],"126":[2,16],"127":[2,16],"129":[2,16],"130":[2,16],"133":[2,16],"134":[2,16],"135":[2,16],"136":[2,16],"137":[2,16],"138":[2,16]},{"1":[2,17],"4":[2,17],"28":[2,17],"29":[2,17],"50":[2,17],"55":[2,17],"58":[2,17],"70":[2,17],"75":[2,17],"85":[2,17],"90":[2,17],"99":[2,17],"101":[2,17],"102":[2,17],"103":[2,17],"110":[2,17],"114":[2,17],"115":[2,17],"126":[2,17],"127":[2,17],"129":[2,17],"130":[2,17],"133":[2,17],"134":[2,17],"135":[2,17],"136":[2,17],"137":[2,17],"138":[2,17]},{"1":[2,18],"4":[2,18],"28":[2,18],"29":[2,18],"50":[2,18],"55":[2,18],"58":[2,18],"70":[2,18],"75":[2,18],"85":[2,18],"90":[2,18],"99":[2,18],"101":[2,18],"102":[2,18],"103":[2,18],"110":[2,18],"114":[2,18],"115":[2,18],"126":[2,18],"127":[2,18],"129":[2,18],"130":[2,18],"133":[2,18],"134":[2,18],"135":[2,18],"136":[2,18],"137":[2,18],"138":[2,18]},{"1":[2,19],"4":[2,19],"28":[2,19],"29":[2,19],"50":[2,19],"55":[2,19],"58":[2,19],"70":[2,19],"75":[2,19],"85":[2,19],"90":[2,19],"99":[2,19],"101":[2,19],"102":[2,19],"103":[2,19],"110":[2,19],"114":[2,19],"115":[2,19],"126":[2,19],"127":[2,19],"129":[2,19],"130":[2,19],"133":[2,19],"134":[2,19],"135":[2,19],"136":[2,19],"137":[2,19],"138":[2,19]},{"1":[2,20],"4":[2,20],"28":[2,20],"29":[2,20],"50":[2,20],"55":[2,20],"58":[2,20],"70":[2,20],"75":[2,20],"85":[2,20],"90":[2,20],"99":[2,20],"101":[2,20],"102":[2,20],"103":[2,20],"110":[2,20],"114":[2,20],"115":[2,20],"126":[2,20],"127":[2,20],"129":[2,20],"130":[2,20],"133":[2,20],"134":[2,20],"135":[2,20],"136":[2,20],"137":[2,20],"138":[2,20]},{"1":[2,21],"4":[2,21],"28":[2,21],"29":[2,21],"50":[2,21],"55":[2,21],"58":[2,21],"70":[2,21],"75":[2,21],"85":[2,21],"90":[2,21],"99":[2,21],"101":[2,21],"102":[2,21],"103":[2,21],"110":[2,21],"114":[2,21],"115":[2,21],"126":[2,21],"127":[2,21],"129":[2,21],"130":[2,21],"133":[2,21],"134":[2,21],"135":[2,21],"136":[2,21],"137":[2,21],"138":[2,21]},{"1":[2,22],"4":[2,22],"28":[2,22],"29":[2,22],"50":[2,22],"55":[2,22],"58":[2,22],"70":[2,22],"75":[2,22],"85":[2,22],"90":[2,22],"99":[2,22],"101":[2,22],"102":[2,22],"103":[2,22],"110":[2,22],"114":[2,22],"115":[2,22],"126":[2,22],"127":[2,22],"129":[2,22],"130":[2,22],"133":[2,22],"134":[2,22],"135":[2,22],"136":[2,22],"137":[2,22],"138":[2,22]},{"1":[2,23],"4":[2,23],"28":[2,23],"29":[2,23],"50":[2,23],"55":[2,23],"58":[2,23],"70":[2,23],"75":[2,23],"85":[2,23],"90":[2,23],"99":[2,23],"101":[2,23],"102":[2,23],"103":[2,23],"110":[2,23],"114":[2,23],"115":[2,23],"126":[2,23],"127":[2,23],"129":[2,23],"130":[2,23],"133":[2,23],"134":[2,23],"135":[2,23],"136":[2,23],"137":[2,23],"138":[2,23]},{"1":[2,24],"4":[2,24],"28":[2,24],"29":[2,24],"50":[2,24],"55":[2,24],"58":[2,24],"70":[2,24],"75":[2,24],"85":[2,24],"90":[2,24],"99":[2,24],"101":[2,24],"102":[2,24],"103":[2,24],"110":[2,24],"114":[2,24],"115":[2,24],"126":[2,24],"127":[2,24],"129":[2,24],"130":[2,24],"133":[2,24],"134":[2,24],"135":[2,24],"136":[2,24],"137":[2,24],"138":[2,24]},{"1":[2,25],"4":[2,25],"28":[2,25],"29":[2,25],"50":[2,25],"55":[2,25],"58":[2,25],"70":[2,25],"75":[2,25],"85":[2,25],"90":[2,25],"99":[2,25],"101":[2,25],"102":[2,25],"103":[2,25],"110":[2,25],"114":[2,25],"115":[2,25],"126":[2,25],"127":[2,25],"129":[2,25],"130":[2,25],"133":[2,25],"134":[2,25],"135":[2,25],"136":[2,25],"137":[2,25],"138":[2,25]},{"1":[2,26],"4":[2,26],"28":[2,26],"29":[2,26],"50":[2,26],"55":[2,26],"58":[2,26],"70":[2,26],"75":[2,26],"85":[2,26],"90":[2,26],"99":[2,26],"101":[2,26],"102":[2,26],"103":[2,26],"110":[2,26],"114":[2,26],"115":[2,26],"126":[2,26],"127":[2,26],"129":[2,26],"130":[2,26],"133":[2,26],"134":[2,26],"135":[2,26],"136":[2,26],"137":[2,26],"138":[2,26]},{"1":[2,27],"4":[2,27],"28":[2,27],"29":[2,27],"50":[2,27],"55":[2,27],"58":[2,27],"70":[2,27],"75":[2,27],"85":[2,27],"90":[2,27],"99":[2,27],"101":[2,27],"102":[2,27],"103":[2,27],"110":[2,27],"114":[2,27],"115":[2,27],"126":[2,27],"127":[2,27],"129":[2,27],"130":[2,27],"133":[2,27],"134":[2,27],"135":[2,27],"136":[2,27],"137":[2,27],"138":[2,27]},{"1":[2,10],"4":[2,10],"29":[2,10],"101":[2,10],"103":[2,10],"115":[2,10],"126":[2,10],"127":[2,10]},{"1":[2,11],"4":[2,11],"29":[2,11],"101":[2,11],"103":[2,11],"115":[2,11],"126":[2,11],"127":[2,11]},{"1":[2,12],"4":[2,12],"29":[2,12],"101":[2,12],"103":[2,12],"115":[2,12],"126":[2,12],"127":[2,12]},{"1":[2,13],"4":[2,13],"29":[2,13],"101":[2,13],"103":[2,13],"115":[2,13],"126":[2,13],"127":[2,13]},{"1":[2,14],"4":[2,14],"29":[2,14],"101":[2,14],"103":[2,14],"115":[2,14],"126":[2,14],"127":[2,14]},{"1":[2,75],"4":[2,75],"28":[2,75],"29":[2,75],"40":[1,107],"50":[2,75],"55":[2,75],"58":[2,75],"65":[2,75],"66":[2,75],"67":[2,75],"69":[2,75],"70":[2,75],"71":[2,75],"72":[2,75],"75":[2,75],"83":[2,75],"84":[2,75],"85":[2,75],"90":[2,75],"99":[2,75],"101":[2,75],"102":[2,75],"103":[2,75],"110":[2,75],"114":[2,75],"115":[2,75],"126":[2,75],"127":[2,75],"129":[2,75],"130":[2,75],"133":[2,75],"134":[2,75],"135":[2,75],"136":[2,75],"137":[2,75],"138":[2,75]},{"1":[2,76],"4":[2,76],"28":[2,76],"29":[2,76],"50":[2,76],"55":[2,76],"58":[2,76],"65":[2,76],"66":[2,76],"67":[2,76],"69":[2,76],"70":[2,76],"71":[2,76],"72":[2,76],"75":[2,76],"83":[2,76],"84":[2,76],"85":[2,76],"90":[2,76],"99":[2,76],"101":[2,76],"102":[2,76],"103":[2,76],"110":[2,76],"114":[2,76],"115":[2,76],"126":[2,76],"127":[2,76],"129":[2,76],"130":[2,76],"133":[2,76],"134":[2,76],"135":[2,76],"136":[2,76],"137":[2,76],"138":[2,76]},{"1":[2,77],"4":[2,77],"28":[2,77],"29":[2,77],"50":[2,77],"55":[2,77],"58":[2,77],"65":[2,77],"66":[2,77],"67":[2,77],"69":[2,77],"70":[2,77],"71":[2,77],"72":[2,77],"75":[2,77],"83":[2,77],"84":[2,77],"85":[2,77],"90":[2,77],"99":[2,77],"101":[2,77],"102":[2,77],"103":[2,77],"110":[2,77],"114":[2,77],"115":[2,77],"126":[2,77],"127":[2,77],"129":[2,77],"130":[2,77],"133":[2,77],"134":[2,77],"135":[2,77],"136":[2,77],"137":[2,77],"138":[2,77]},{"1":[2,78],"4":[2,78],"28":[2,78],"29":[2,78],"50":[2,78],"55":[2,78],"58":[2,78],"65":[2,78],"66":[2,78],"67":[2,78],"69":[2,78],"70":[2,78],"71":[2,78],"72":[2,78],"75":[2,78],"83":[2,78],"84":[2,78],"85":[2,78],"90":[2,78],"99":[2,78],"101":[2,78],"102":[2,78],"103":[2,78],"110":[2,78],"114":[2,78],"115":[2,78],"126":[2,78],"127":[2,78],"129":[2,78],"130":[2,78],"133":[2,78],"134":[2,78],"135":[2,78],"136":[2,78],"137":[2,78],"138":[2,78]},{"1":[2,111],"4":[2,111],"28":[2,111],"29":[2,111],"50":[2,111],"55":[2,111],"58":[2,111],"65":[2,111],"66":[2,111],"67":[2,111],"69":[2,111],"70":[2,111],"71":[2,111],"72":[2,111],"75":[2,111],"81":108,"83":[2,111],"84":[1,109],"85":[2,111],"90":[2,111],"99":[2,111],"101":[2,111],"102":[2,111],"103":[2,111],"110":[2,111],"114":[2,111],"115":[2,111],"126":[2,111],"127":[2,111],"129":[2,111],"130":[2,111],"133":[2,111],"134":[2,111],"135":[2,111],"136":[2,111],"137":[2,111],"138":[2,111]},{"30":113,"31":[1,73],"44":114,"49":110,"50":[2,57],"55":[2,57],"56":111,"57":112,"59":115,"60":116,"73":[1,70],"88":[1,117],"89":[1,69]},{"4":[1,119],"6":118,"28":[1,6]},{"8":120,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":122,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":123,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"15":125,"16":126,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":127,"44":62,"45":29,"59":50,"60":51,"62":124,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"15":125,"16":126,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":127,"44":62,"45":29,"59":50,"60":51,"62":128,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"40":[2,72],"50":[2,72],"55":[2,72],"58":[2,72],"65":[2,72],"66":[2,72],"67":[2,72],"69":[2,72],"70":[2,72],"71":[2,72],"72":[2,72],"75":[2,72],"77":[1,132],"83":[2,72],"84":[2,72],"85":[2,72],"90":[2,72],"99":[2,72],"101":[2,72],"102":[2,72],"103":[2,72],"110":[2,72],"114":[2,72],"115":[2,72],"126":[2,72],"127":[2,72],"129":[2,72],"130":[2,72],"131":[1,129],"132":[1,130],"133":[2,72],"134":[2,72],"135":[2,72],"136":[2,72],"137":[2,72],"138":[2,72],"139":[1,131]},{"1":[2,183],"4":[2,183],"28":[2,183],"29":[2,183],"50":[2,183],"55":[2,183],"58":[2,183],"70":[2,183],"75":[2,183],"85":[2,183],"90":[2,183],"99":[2,183],"101":[2,183],"102":[2,183],"103":[2,183],"110":[2,183],"114":[2,183],"115":[2,183],"120":[1,133],"126":[2,183],"127":[2,183],"129":[2,183],"130":[2,183],"133":[2,183],"134":[2,183],"135":[2,183],"136":[2,183],"137":[2,183],"138":[2,183]},{"4":[1,119],"6":134,"28":[1,6]},{"4":[1,119],"6":135,"28":[1,6]},{"1":[2,145],"4":[2,145],"28":[2,145],"29":[2,145],"50":[2,145],"55":[2,145],"58":[2,145],"70":[2,145],"75":[2,145],"85":[2,145],"90":[2,145],"99":[2,145],"101":[2,145],"102":[2,145],"103":[2,145],"110":[2,145],"114":[2,145],"115":[2,145],"126":[2,145],"127":[2,145],"129":[2,145],"130":[2,145],"133":[2,145],"134":[2,145],"135":[2,145],"136":[2,145],"137":[2,145],"138":[2,145]},{"4":[1,119],"6":136,"28":[1,6]},{"8":137,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,138],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,98],"4":[2,98],"15":125,"16":126,"28":[1,140],"29":[2,98],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":127,"44":62,"45":29,"50":[2,98],"55":[2,98],"58":[2,98],"59":50,"60":51,"62":139,"64":30,"70":[2,98],"73":[1,70],"75":[2,98],"77":[1,141],"82":[1,31],"85":[2,98],"87":[1,57],"88":[1,58],"89":[1,69],"90":[2,98],"98":[1,56],"99":[2,98],"101":[2,98],"102":[2,98],"103":[2,98],"110":[2,98],"114":[2,98],"115":[2,98],"126":[2,98],"127":[2,98],"129":[2,98],"130":[2,98],"133":[2,98],"134":[2,98],"135":[2,98],"136":[2,98],"137":[2,98],"138":[2,98]},{"1":[2,50],"4":[2,50],"28":[2,50],"29":[2,50],"50":[2,50],"55":[2,50],"58":[2,50],"70":[2,50],"75":[2,50],"85":[2,50],"90":[2,50],"95":[2,50],"96":[2,50],"99":[2,50],"101":[2,50],"102":[2,50],"103":[2,50],"110":[2,50],"114":[2,50],"115":[2,50],"120":[2,50],"122":[2,50],"126":[2,50],"127":[2,50],"129":[2,50],"130":[2,50],"133":[2,50],"134":[2,50],"135":[2,50],"136":[2,50],"137":[2,50],"138":[2,50]},{"1":[2,49],"4":[2,49],"8":142,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[2,49],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[2,49],"103":[2,49],"104":43,"105":[1,67],"106":44,"115":[2,49],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"126":[2,49],"127":[2,49],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":143,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,73],"4":[2,73],"28":[2,73],"29":[2,73],"40":[2,73],"50":[2,73],"55":[2,73],"58":[2,73],"65":[2,73],"66":[2,73],"67":[2,73],"69":[2,73],"70":[2,73],"71":[2,73],"72":[2,73],"75":[2,73],"83":[2,73],"84":[2,73],"85":[2,73],"90":[2,73],"99":[2,73],"101":[2,73],"102":[2,73],"103":[2,73],"110":[2,73],"114":[2,73],"115":[2,73],"126":[2,73],"127":[2,73],"129":[2,73],"130":[2,73],"133":[2,73],"134":[2,73],"135":[2,73],"136":[2,73],"137":[2,73],"138":[2,73]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"40":[2,74],"50":[2,74],"55":[2,74],"58":[2,74],"65":[2,74],"66":[2,74],"67":[2,74],"69":[2,74],"70":[2,74],"71":[2,74],"72":[2,74],"75":[2,74],"83":[2,74],"84":[2,74],"85":[2,74],"90":[2,74],"99":[2,74],"101":[2,74],"102":[2,74],"103":[2,74],"110":[2,74],"114":[2,74],"115":[2,74],"126":[2,74],"127":[2,74],"129":[2,74],"130":[2,74],"133":[2,74],"134":[2,74],"135":[2,74],"136":[2,74],"137":[2,74],"138":[2,74]},{"1":[2,34],"4":[2,34],"28":[2,34],"29":[2,34],"50":[2,34],"55":[2,34],"58":[2,34],"65":[2,34],"66":[2,34],"67":[2,34],"69":[2,34],"70":[2,34],"71":[2,34],"72":[2,34],"75":[2,34],"83":[2,34],"84":[2,34],"85":[2,34],"90":[2,34],"99":[2,34],"101":[2,34],"102":[2,34],"103":[2,34],"110":[2,34],"114":[2,34],"115":[2,34],"126":[2,34],"127":[2,34],"129":[2,34],"130":[2,34],"133":[2,34],"134":[2,34],"135":[2,34],"136":[2,34],"137":[2,34],"138":[2,34]},{"1":[2,35],"4":[2,35],"28":[2,35],"29":[2,35],"50":[2,35],"55":[2,35],"58":[2,35],"65":[2,35],"66":[2,35],"67":[2,35],"69":[2,35],"70":[2,35],"71":[2,35],"72":[2,35],"75":[2,35],"83":[2,35],"84":[2,35],"85":[2,35],"90":[2,35],"99":[2,35],"101":[2,35],"102":[2,35],"103":[2,35],"110":[2,35],"114":[2,35],"115":[2,35],"126":[2,35],"127":[2,35],"129":[2,35],"130":[2,35],"133":[2,35],"134":[2,35],"135":[2,35],"136":[2,35],"137":[2,35],"138":[2,35]},{"1":[2,36],"4":[2,36],"28":[2,36],"29":[2,36],"50":[2,36],"55":[2,36],"58":[2,36],"65":[2,36],"66":[2,36],"67":[2,36],"69":[2,36],"70":[2,36],"71":[2,36],"72":[2,36],"75":[2,36],"83":[2,36],"84":[2,36],"85":[2,36],"90":[2,36],"99":[2,36],"101":[2,36],"102":[2,36],"103":[2,36],"110":[2,36],"114":[2,36],"115":[2,36],"126":[2,36],"127":[2,36],"129":[2,36],"130":[2,36],"133":[2,36],"134":[2,36],"135":[2,36],"136":[2,36],"137":[2,36],"138":[2,36]},{"1":[2,37],"4":[2,37],"28":[2,37],"29":[2,37],"50":[2,37],"55":[2,37],"58":[2,37],"65":[2,37],"66":[2,37],"67":[2,37],"69":[2,37],"70":[2,37],"71":[2,37],"72":[2,37],"75":[2,37],"83":[2,37],"84":[2,37],"85":[2,37],"90":[2,37],"99":[2,37],"101":[2,37],"102":[2,37],"103":[2,37],"110":[2,37],"114":[2,37],"115":[2,37],"126":[2,37],"127":[2,37],"129":[2,37],"130":[2,37],"133":[2,37],"134":[2,37],"135":[2,37],"136":[2,37],"137":[2,37],"138":[2,37]},{"8":144,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,117],"4":[2,117],"28":[2,117],"29":[2,117],"50":[2,117],"55":[2,117],"58":[2,117],"65":[2,117],"66":[2,117],"67":[2,117],"69":[2,117],"70":[2,117],"71":[2,117],"72":[2,117],"75":[2,117],"83":[2,117],"84":[2,117],"85":[2,117],"90":[2,117],"99":[2,117],"101":[2,117],"102":[2,117],"103":[2,117],"110":[2,117],"114":[2,117],"115":[2,117],"126":[2,117],"127":[2,117],"129":[2,117],"130":[2,117],"133":[2,117],"134":[2,117],"135":[2,117],"136":[2,117],"137":[2,117],"138":[2,117]},{"1":[2,118],"4":[2,118],"28":[2,118],"29":[2,118],"30":145,"31":[1,73],"50":[2,118],"55":[2,118],"58":[2,118],"65":[2,118],"66":[2,118],"67":[2,118],"69":[2,118],"70":[2,118],"71":[2,118],"72":[2,118],"75":[2,118],"83":[2,118],"84":[2,118],"85":[2,118],"90":[2,118],"99":[2,118],"101":[2,118],"102":[2,118],"103":[2,118],"110":[2,118],"114":[2,118],"115":[2,118],"126":[2,118],"127":[2,118],"129":[2,118],"130":[2,118],"133":[2,118],"134":[2,118],"135":[2,118],"136":[2,118],"137":[2,118],"138":[2,118]},{"4":[2,53],"28":[2,53]},{"4":[2,54],"28":[2,54]},{"1":[2,68],"4":[2,68],"28":[2,68],"29":[2,68],"40":[2,68],"50":[2,68],"55":[2,68],"58":[2,68],"65":[2,68],"66":[2,68],"67":[2,68],"69":[2,68],"70":[2,68],"71":[2,68],"72":[2,68],"75":[2,68],"77":[2,68],"83":[2,68],"84":[2,68],"85":[2,68],"90":[2,68],"99":[2,68],"101":[2,68],"102":[2,68],"103":[2,68],"110":[2,68],"114":[2,68],"115":[2,68],"126":[2,68],"127":[2,68],"129":[2,68],"130":[2,68],"131":[2,68],"132":[2,68],"133":[2,68],"134":[2,68],"135":[2,68],"136":[2,68],"137":[2,68],"138":[2,68],"139":[2,68]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"40":[2,71],"50":[2,71],"55":[2,71],"58":[2,71],"65":[2,71],"66":[2,71],"67":[2,71],"69":[2,71],"70":[2,71],"71":[2,71],"72":[2,71],"75":[2,71],"77":[2,71],"83":[2,71],"84":[2,71],"85":[2,71],"90":[2,71],"99":[2,71],"101":[2,71],"102":[2,71],"103":[2,71],"110":[2,71],"114":[2,71],"115":[2,71],"126":[2,71],"127":[2,71],"129":[2,71],"130":[2,71],"131":[2,71],"132":[2,71],"133":[2,71],"134":[2,71],"135":[2,71],"136":[2,71],"137":[2,71],"138":[2,71],"139":[2,71]},{"8":146,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":147,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":148,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":149,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[1,119],"6":150,"8":151,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,6],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"30":153,"31":[1,73],"59":155,"60":156,"73":[1,70],"89":[1,69],"107":152,"116":[1,154]},{"8":161,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,160],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"61":162,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"86":158,"87":[1,57],"88":[1,58],"89":[1,69],"90":[1,157],"91":159,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,88],"27":167,"28":[2,88],"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":164,"42":165,"44":166,"45":170,"47":[1,47],"55":[2,88],"74":163,"75":[2,88],"88":[1,117],"98":[1,56]},{"1":[2,32],"4":[2,32],"28":[2,32],"29":[2,32],"43":[2,32],"50":[2,32],"55":[2,32],"58":[2,32],"65":[2,32],"66":[2,32],"67":[2,32],"69":[2,32],"70":[2,32],"71":[2,32],"72":[2,32],"75":[2,32],"83":[2,32],"84":[2,32],"85":[2,32],"90":[2,32],"99":[2,32],"101":[2,32],"102":[2,32],"103":[2,32],"110":[2,32],"114":[2,32],"115":[2,32],"126":[2,32],"127":[2,32],"129":[2,32],"130":[2,32],"133":[2,32],"134":[2,32],"135":[2,32],"136":[2,32],"137":[2,32],"138":[2,32]},{"1":[2,33],"4":[2,33],"28":[2,33],"29":[2,33],"43":[2,33],"50":[2,33],"55":[2,33],"58":[2,33],"65":[2,33],"66":[2,33],"67":[2,33],"69":[2,33],"70":[2,33],"71":[2,33],"72":[2,33],"75":[2,33],"83":[2,33],"84":[2,33],"85":[2,33],"90":[2,33],"99":[2,33],"101":[2,33],"102":[2,33],"103":[2,33],"110":[2,33],"114":[2,33],"115":[2,33],"126":[2,33],"127":[2,33],"129":[2,33],"130":[2,33],"133":[2,33],"134":[2,33],"135":[2,33],"136":[2,33],"137":[2,33],"138":[2,33]},{"1":[2,31],"4":[2,31],"28":[2,31],"29":[2,31],"40":[2,31],"43":[2,31],"50":[2,31],"55":[2,31],"58":[2,31],"65":[2,31],"66":[2,31],"67":[2,31],"69":[2,31],"70":[2,31],"71":[2,31],"72":[2,31],"75":[2,31],"77":[2,31],"83":[2,31],"84":[2,31],"85":[2,31],"90":[2,31],"99":[2,31],"101":[2,31],"102":[2,31],"103":[2,31],"109":[2,31],"110":[2,31],"112":[2,31],"114":[2,31],"115":[2,31],"117":[2,31],"126":[2,31],"127":[2,31],"129":[2,31],"130":[2,31],"131":[2,31],"132":[2,31],"133":[2,31],"134":[2,31],"135":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31]},{"1":[2,30],"4":[2,30],"28":[2,30],"29":[2,30],"50":[2,30],"55":[2,30],"58":[2,30],"70":[2,30],"75":[2,30],"85":[2,30],"90":[2,30],"95":[2,30],"96":[2,30],"99":[2,30],"101":[2,30],"102":[2,30],"103":[2,30],"110":[2,30],"114":[2,30],"115":[2,30],"120":[2,30],"122":[2,30],"126":[2,30],"127":[2,30],"129":[2,30],"130":[2,30],"133":[2,30],"134":[2,30],"135":[2,30],"136":[2,30],"137":[2,30],"138":[2,30]},{"1":[2,7],"4":[2,7],"7":171,"8":7,"9":8,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"29":[2,7],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,4]},{"4":[1,75],"29":[1,172]},{"1":[2,29],"4":[2,29],"28":[2,29],"29":[2,29],"50":[2,29],"55":[2,29],"58":[2,29],"70":[2,29],"75":[2,29],"85":[2,29],"90":[2,29],"95":[2,29],"96":[2,29],"99":[2,29],"101":[2,29],"102":[2,29],"103":[2,29],"110":[2,29],"114":[2,29],"115":[2,29],"120":[2,29],"122":[2,29],"126":[2,29],"127":[2,29],"129":[2,29],"130":[2,29],"133":[2,29],"134":[2,29],"135":[2,29],"136":[2,29],"137":[2,29],"138":[2,29]},{"1":[2,195],"4":[2,195],"28":[2,195],"29":[2,195],"50":[2,195],"55":[2,195],"58":[2,195],"70":[2,195],"75":[2,195],"85":[2,195],"90":[2,195],"99":[2,195],"101":[2,195],"102":[2,195],"103":[2,195],"110":[2,195],"114":[2,195],"115":[2,195],"126":[2,195],"127":[2,195],"129":[2,195],"130":[2,195],"133":[2,195],"134":[2,195],"135":[2,195],"136":[2,195],"137":[2,195],"138":[2,195]},{"8":173,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":174,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":175,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":176,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":177,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":178,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":179,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":180,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":181,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,144],"4":[2,144],"28":[2,144],"29":[2,144],"50":[2,144],"55":[2,144],"58":[2,144],"70":[2,144],"75":[2,144],"85":[2,144],"90":[2,144],"99":[2,144],"101":[2,144],"102":[2,144],"103":[2,144],"110":[2,144],"114":[2,144],"115":[2,144],"126":[2,144],"127":[2,144],"129":[2,144],"130":[2,144],"133":[2,144],"134":[2,144],"135":[2,144],"136":[2,144],"137":[2,144],"138":[2,144]},{"1":[2,149],"4":[2,149],"28":[2,149],"29":[2,149],"50":[2,149],"55":[2,149],"58":[2,149],"70":[2,149],"75":[2,149],"85":[2,149],"90":[2,149],"99":[2,149],"101":[2,149],"102":[2,149],"103":[2,149],"110":[2,149],"114":[2,149],"115":[2,149],"126":[2,149],"127":[2,149],"129":[2,149],"130":[2,149],"133":[2,149],"134":[2,149],"135":[2,149],"136":[2,149],"137":[2,149],"138":[2,149]},{"8":182,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":183,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,143],"4":[2,143],"28":[2,143],"29":[2,143],"50":[2,143],"55":[2,143],"58":[2,143],"70":[2,143],"75":[2,143],"85":[2,143],"90":[2,143],"99":[2,143],"101":[2,143],"102":[2,143],"103":[2,143],"110":[2,143],"114":[2,143],"115":[2,143],"126":[2,143],"127":[2,143],"129":[2,143],"130":[2,143],"133":[2,143],"134":[2,143],"135":[2,143],"136":[2,143],"137":[2,143],"138":[2,143]},{"1":[2,148],"4":[2,148],"28":[2,148],"29":[2,148],"50":[2,148],"55":[2,148],"58":[2,148],"70":[2,148],"75":[2,148],"85":[2,148],"90":[2,148],"99":[2,148],"101":[2,148],"102":[2,148],"103":[2,148],"110":[2,148],"114":[2,148],"115":[2,148],"126":[2,148],"127":[2,148],"129":[2,148],"130":[2,148],"133":[2,148],"134":[2,148],"135":[2,148],"136":[2,148],"137":[2,148],"138":[2,148]},{"81":184,"84":[1,109]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"40":[2,69],"50":[2,69],"55":[2,69],"58":[2,69],"65":[2,69],"66":[2,69],"67":[2,69],"69":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"75":[2,69],"77":[2,69],"83":[2,69],"84":[2,69],"85":[2,69],"90":[2,69],"99":[2,69],"101":[2,69],"102":[2,69],"103":[2,69],"110":[2,69],"114":[2,69],"115":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"131":[2,69],"132":[2,69],"133":[2,69],"134":[2,69],"135":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69]},{"84":[2,114]},{"30":185,"31":[1,73]},{"30":186,"31":[1,73]},{"1":[2,82],"4":[2,82],"28":[2,82],"29":[2,82],"30":187,"31":[1,73],"40":[2,82],"50":[2,82],"55":[2,82],"58":[2,82],"65":[2,82],"66":[2,82],"67":[2,82],"69":[2,82],"70":[2,82],"71":[2,82],"72":[2,82],"75":[2,82],"77":[2,82],"83":[2,82],"84":[2,82],"85":[2,82],"90":[2,82],"99":[2,82],"101":[2,82],"102":[2,82],"103":[2,82],"110":[2,82],"114":[2,82],"115":[2,82],"126":[2,82],"127":[2,82],"129":[2,82],"130":[2,82],"131":[2,82],"132":[2,82],"133":[2,82],"134":[2,82],"135":[2,82],"136":[2,82],"137":[2,82],"138":[2,82],"139":[2,82]},{"1":[2,83],"4":[2,83],"28":[2,83],"29":[2,83],"40":[2,83],"50":[2,83],"55":[2,83],"58":[2,83],"65":[2,83],"66":[2,83],"67":[2,83],"69":[2,83],"70":[2,83],"71":[2,83],"72":[2,83],"75":[2,83],"77":[2,83],"83":[2,83],"84":[2,83],"85":[2,83],"90":[2,83],"99":[2,83],"101":[2,83],"102":[2,83],"103":[2,83],"110":[2,83],"114":[2,83],"115":[2,83],"126":[2,83],"127":[2,83],"129":[2,83],"130":[2,83],"131":[2,83],"132":[2,83],"133":[2,83],"134":[2,83],"135":[2,83],"136":[2,83],"137":[2,83],"138":[2,83],"139":[2,83]},{"8":188,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"68":189,"69":[1,102],"71":[1,103],"72":[1,104]},{"68":190,"69":[1,102],"71":[1,103],"72":[1,104]},{"81":191,"84":[1,109]},{"1":[2,70],"4":[2,70],"28":[2,70],"29":[2,70],"40":[2,70],"50":[2,70],"55":[2,70],"58":[2,70],"65":[2,70],"66":[2,70],"67":[2,70],"69":[2,70],"70":[2,70],"71":[2,70],"72":[2,70],"75":[2,70],"77":[2,70],"83":[2,70],"84":[2,70],"85":[2,70],"90":[2,70],"99":[2,70],"101":[2,70],"102":[2,70],"103":[2,70],"110":[2,70],"114":[2,70],"115":[2,70],"126":[2,70],"127":[2,70],"129":[2,70],"130":[2,70],"131":[2,70],"132":[2,70],"133":[2,70],"134":[2,70],"135":[2,70],"136":[2,70],"137":[2,70],"138":[2,70],"139":[2,70]},{"8":192,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,193],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,112],"4":[2,112],"28":[2,112],"29":[2,112],"50":[2,112],"55":[2,112],"58":[2,112],"65":[2,112],"66":[2,112],"67":[2,112],"69":[2,112],"70":[2,112],"71":[2,112],"72":[2,112],"75":[2,112],"83":[2,112],"84":[2,112],"85":[2,112],"90":[2,112],"99":[2,112],"101":[2,112],"102":[2,112],"103":[2,112],"110":[2,112],"114":[2,112],"115":[2,112],"126":[2,112],"127":[2,112],"129":[2,112],"130":[2,112],"133":[2,112],"134":[2,112],"135":[2,112],"136":[2,112],"137":[2,112],"138":[2,112]},{"8":161,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,160],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"61":162,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"85":[1,194],"86":195,"87":[1,57],"88":[1,58],"89":[1,69],"91":159,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"50":[1,196],"55":[1,197]},{"50":[2,58],"55":[2,58]},{"40":[1,199],"50":[2,60],"55":[2,60],"58":[1,198]},{"40":[2,63],"50":[2,63],"55":[2,63],"58":[2,63]},{"40":[2,64],"50":[2,64],"55":[2,64],"58":[2,64]},{"40":[2,65],"50":[2,65],"55":[2,65],"58":[2,65]},{"40":[2,66],"50":[2,66],"55":[2,66],"58":[2,66]},{"30":145,"31":[1,73]},{"1":[2,52],"4":[2,52],"28":[2,52],"29":[2,52],"50":[2,52],"55":[2,52],"58":[2,52],"70":[2,52],"75":[2,52],"85":[2,52],"90":[2,52],"99":[2,52],"101":[2,52],"102":[2,52],"103":[2,52],"110":[2,52],"114":[2,52],"115":[2,52],"126":[2,52],"127":[2,52],"129":[2,52],"130":[2,52],"133":[2,52],"134":[2,52],"135":[2,52],"136":[2,52],"137":[2,52],"138":[2,52]},{"27":74,"47":[1,47]},{"1":[2,188],"4":[2,188],"28":[2,188],"29":[2,188],"50":[2,188],"55":[2,188],"58":[2,188],"70":[2,188],"75":[2,188],"85":[2,188],"90":[2,188],"99":[2,188],"100":89,"101":[2,188],"102":[2,188],"103":[2,188],"106":90,"110":[2,188],"114":[2,188],"115":[2,188],"126":[2,188],"127":[2,188],"129":[2,188],"130":[2,188],"133":[1,79],"134":[2,188],"135":[2,188],"136":[2,188],"137":[2,188],"138":[2,188]},{"100":93,"101":[1,65],"103":[1,66],"106":94,"115":[1,68],"126":[1,91],"127":[1,92]},{"1":[2,189],"4":[2,189],"28":[2,189],"29":[2,189],"50":[2,189],"55":[2,189],"58":[2,189],"70":[2,189],"75":[2,189],"85":[2,189],"90":[2,189],"99":[2,189],"100":89,"101":[2,189],"102":[2,189],"103":[2,189],"106":90,"110":[2,189],"114":[2,189],"115":[2,189],"126":[2,189],"127":[2,189],"129":[2,189],"130":[2,189],"133":[1,79],"134":[2,189],"135":[2,189],"136":[2,189],"137":[2,189],"138":[2,189]},{"1":[2,190],"4":[2,190],"28":[2,190],"29":[2,190],"50":[2,190],"55":[2,190],"58":[2,190],"70":[2,190],"75":[2,190],"85":[2,190],"90":[2,190],"99":[2,190],"100":89,"101":[2,190],"102":[2,190],"103":[2,190],"106":90,"110":[2,190],"114":[2,190],"115":[2,190],"126":[2,190],"127":[2,190],"129":[2,190],"130":[2,190],"133":[1,79],"134":[2,190],"135":[2,190],"136":[2,190],"137":[2,190],"138":[2,190]},{"1":[2,191],"4":[2,191],"28":[2,191],"29":[2,191],"50":[2,191],"55":[2,191],"58":[2,191],"65":[2,72],"66":[2,72],"67":[2,72],"69":[2,72],"70":[2,191],"71":[2,72],"72":[2,72],"75":[2,191],"83":[2,72],"84":[2,72],"85":[2,191],"90":[2,191],"99":[2,191],"101":[2,191],"102":[2,191],"103":[2,191],"110":[2,191],"114":[2,191],"115":[2,191],"126":[2,191],"127":[2,191],"129":[2,191],"130":[2,191],"133":[2,191],"134":[2,191],"135":[2,191],"136":[2,191],"137":[2,191],"138":[2,191]},{"63":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"71":[1,103],"72":[1,104],"80":95,"83":[1,97],"84":[2,113]},{"63":106,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"71":[1,103],"72":[1,104],"80":105,"83":[1,97],"84":[2,113]},{"1":[2,75],"4":[2,75],"28":[2,75],"29":[2,75],"50":[2,75],"55":[2,75],"58":[2,75],"65":[2,75],"66":[2,75],"67":[2,75],"69":[2,75],"70":[2,75],"71":[2,75],"72":[2,75],"75":[2,75],"83":[2,75],"84":[2,75],"85":[2,75],"90":[2,75],"99":[2,75],"101":[2,75],"102":[2,75],"103":[2,75],"110":[2,75],"114":[2,75],"115":[2,75],"126":[2,75],"127":[2,75],"129":[2,75],"130":[2,75],"133":[2,75],"134":[2,75],"135":[2,75],"136":[2,75],"137":[2,75],"138":[2,75]},{"1":[2,192],"4":[2,192],"28":[2,192],"29":[2,192],"50":[2,192],"55":[2,192],"58":[2,192],"65":[2,72],"66":[2,72],"67":[2,72],"69":[2,72],"70":[2,192],"71":[2,72],"72":[2,72],"75":[2,192],"83":[2,72],"84":[2,72],"85":[2,192],"90":[2,192],"99":[2,192],"101":[2,192],"102":[2,192],"103":[2,192],"110":[2,192],"114":[2,192],"115":[2,192],"126":[2,192],"127":[2,192],"129":[2,192],"130":[2,192],"133":[2,192],"134":[2,192],"135":[2,192],"136":[2,192],"137":[2,192],"138":[2,192]},{"1":[2,193],"4":[2,193],"28":[2,193],"29":[2,193],"50":[2,193],"55":[2,193],"58":[2,193],"70":[2,193],"75":[2,193],"85":[2,193],"90":[2,193],"99":[2,193],"101":[2,193],"102":[2,193],"103":[2,193],"110":[2,193],"114":[2,193],"115":[2,193],"126":[2,193],"127":[2,193],"129":[2,193],"130":[2,193],"133":[2,193],"134":[2,193],"135":[2,193],"136":[2,193],"137":[2,193],"138":[2,193]},{"1":[2,194],"4":[2,194],"28":[2,194],"29":[2,194],"50":[2,194],"55":[2,194],"58":[2,194],"70":[2,194],"75":[2,194],"85":[2,194],"90":[2,194],"99":[2,194],"101":[2,194],"102":[2,194],"103":[2,194],"110":[2,194],"114":[2,194],"115":[2,194],"126":[2,194],"127":[2,194],"129":[2,194],"130":[2,194],"133":[2,194],"134":[2,194],"135":[2,194],"136":[2,194],"137":[2,194],"138":[2,194]},{"8":200,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,201],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"15":202,"16":126,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":127,"44":62,"45":29,"59":50,"60":51,"62":203,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"4":[1,119],"6":205,"28":[1,6],"124":[1,204]},{"1":[2,131],"4":[2,131],"28":[2,131],"29":[2,131],"50":[2,131],"55":[2,131],"58":[2,131],"70":[2,131],"75":[2,131],"85":[2,131],"90":[2,131],"94":206,"95":[1,207],"96":[1,208],"99":[2,131],"101":[2,131],"102":[2,131],"103":[2,131],"110":[2,131],"114":[2,131],"115":[2,131],"126":[2,131],"127":[2,131],"129":[2,131],"130":[2,131],"133":[2,131],"134":[2,131],"135":[2,131],"136":[2,131],"137":[2,131],"138":[2,131]},{"1":[2,142],"4":[2,142],"28":[2,142],"29":[2,142],"50":[2,142],"55":[2,142],"58":[2,142],"70":[2,142],"75":[2,142],"85":[2,142],"90":[2,142],"99":[2,142],"101":[2,142],"102":[2,142],"103":[2,142],"110":[2,142],"114":[2,142],"115":[2,142],"126":[2,142],"127":[2,142],"129":[2,142],"130":[2,142],"133":[2,142],"134":[2,142],"135":[2,142],"136":[2,142],"137":[2,142],"138":[2,142]},{"1":[2,150],"4":[2,150],"28":[2,150],"29":[2,150],"50":[2,150],"55":[2,150],"58":[2,150],"70":[2,150],"75":[2,150],"85":[2,150],"90":[2,150],"99":[2,150],"101":[2,150],"102":[2,150],"103":[2,150],"110":[2,150],"114":[2,150],"115":[2,150],"126":[2,150],"127":[2,150],"129":[2,150],"130":[2,150],"133":[2,150],"134":[2,150],"135":[2,150],"136":[2,150],"137":[2,150],"138":[2,150]},{"28":[1,209],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"119":210,"121":211,"122":[1,212]},{"1":[2,93],"4":[2,93],"28":[1,214],"29":[2,93],"50":[2,93],"55":[2,93],"58":[2,93],"65":[2,72],"66":[2,72],"67":[2,72],"69":[2,72],"70":[2,93],"71":[2,72],"72":[2,72],"75":[2,93],"77":[1,213],"83":[2,72],"84":[2,72],"85":[2,93],"90":[2,93],"99":[2,93],"101":[2,93],"102":[2,93],"103":[2,93],"110":[2,93],"114":[2,93],"115":[2,93],"126":[2,93],"127":[2,93],"129":[2,93],"130":[2,93],"133":[2,93],"134":[2,93],"135":[2,93],"136":[2,93],"137":[2,93],"138":[2,93]},{"4":[2,104],"27":167,"29":[2,104],"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":218,"42":165,"44":219,"45":170,"47":[1,47],"73":[1,217],"78":215,"79":216,"88":[1,117],"98":[1,56]},{"15":220,"16":126,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":127,"44":62,"45":29,"59":50,"60":51,"62":203,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"1":[2,48],"4":[2,48],"29":[2,48],"100":89,"101":[2,48],"103":[2,48],"106":90,"115":[2,48],"126":[2,48],"127":[2,48],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,136],"4":[2,136],"29":[2,136],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[2,136],"127":[2,136],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"99":[1,221],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,119],"4":[2,119],"28":[2,119],"29":[2,119],"40":[2,119],"43":[2,119],"50":[2,119],"55":[2,119],"58":[2,119],"65":[2,119],"66":[2,119],"67":[2,119],"69":[2,119],"70":[2,119],"71":[2,119],"72":[2,119],"75":[2,119],"77":[2,119],"83":[2,119],"84":[2,119],"85":[2,119],"90":[2,119],"99":[2,119],"101":[2,119],"102":[2,119],"103":[2,119],"110":[2,119],"114":[2,119],"115":[2,119],"126":[2,119],"127":[2,119],"129":[2,119],"130":[2,119],"131":[2,119],"132":[2,119],"133":[2,119],"134":[2,119],"135":[2,119],"136":[2,119],"137":[2,119],"138":[2,119],"139":[2,119]},{"4":[1,119],"6":222,"28":[1,6],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,119],"6":223,"28":[1,6],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,138],"4":[2,138],"28":[2,138],"29":[2,138],"50":[2,138],"55":[2,138],"58":[2,138],"70":[2,138],"75":[2,138],"85":[2,138],"90":[2,138],"99":[2,138],"100":89,"101":[1,65],"102":[1,224],"103":[1,66],"106":90,"110":[2,138],"114":[2,138],"115":[1,68],"126":[2,138],"127":[2,138],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,140],"4":[2,140],"28":[2,140],"29":[2,140],"50":[2,140],"55":[2,140],"58":[2,140],"70":[2,140],"75":[2,140],"85":[2,140],"90":[2,140],"99":[2,140],"100":89,"101":[1,65],"102":[1,225],"103":[1,66],"106":90,"110":[2,140],"114":[2,140],"115":[1,68],"126":[2,140],"127":[2,140],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,146],"4":[2,146],"28":[2,146],"29":[2,146],"50":[2,146],"55":[2,146],"58":[2,146],"70":[2,146],"75":[2,146],"85":[2,146],"90":[2,146],"99":[2,146],"101":[2,146],"102":[2,146],"103":[2,146],"110":[2,146],"114":[2,146],"115":[2,146],"126":[2,146],"127":[2,146],"129":[2,146],"130":[2,146],"133":[2,146],"134":[2,146],"135":[2,146],"136":[2,146],"137":[2,146],"138":[2,146]},{"1":[2,147],"4":[2,147],"28":[2,147],"29":[2,147],"50":[2,147],"55":[2,147],"58":[2,147],"70":[2,147],"75":[2,147],"85":[2,147],"90":[2,147],"99":[2,147],"100":89,"101":[1,65],"102":[2,147],"103":[1,66],"106":90,"110":[2,147],"114":[2,147],"115":[1,68],"126":[2,147],"127":[2,147],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"55":[1,227],"108":226,"109":[1,228]},{"55":[2,151],"109":[2,151],"111":229,"112":[1,231],"117":[1,230]},{"30":232,"31":[1,73]},{"55":[2,152],"109":[2,152],"112":[2,152]},{"55":[2,153],"109":[2,153],"112":[2,153]},{"1":[2,120],"4":[2,120],"28":[2,120],"29":[2,120],"40":[2,120],"50":[2,120],"55":[2,120],"58":[2,120],"65":[2,120],"66":[2,120],"67":[2,120],"69":[2,120],"70":[2,120],"71":[2,120],"72":[2,120],"75":[2,120],"83":[2,120],"84":[2,120],"85":[2,120],"90":[2,120],"99":[2,120],"101":[2,120],"102":[2,120],"103":[2,120],"109":[2,120],"110":[2,120],"112":[2,120],"114":[2,120],"115":[2,120],"126":[2,120],"127":[2,120],"129":[2,120],"130":[2,120],"133":[2,120],"134":[2,120],"135":[2,120],"136":[2,120],"137":[2,120],"138":[2,120]},{"4":[2,55],"28":[2,55],"54":233,"55":[1,234],"90":[2,55]},{"4":[2,122],"28":[2,122],"29":[2,122],"55":[2,122],"85":[2,122],"90":[2,122]},{"8":161,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,160],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"61":162,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"86":235,"87":[1,57],"88":[1,58],"89":[1,69],"91":159,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,127],"28":[2,127],"29":[2,127],"55":[2,127],"58":[1,236],"85":[2,127],"90":[2,127],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[2,128],"28":[2,128],"29":[2,128],"55":[2,128],"85":[2,128],"90":[2,128]},{"4":[2,55],"28":[2,55],"54":237,"55":[1,238],"75":[2,55]},{"4":[2,89],"28":[2,89],"29":[2,89],"55":[2,89],"75":[2,89]},{"4":[2,40],"28":[2,40],"29":[2,40],"43":[1,239],"55":[2,40],"75":[2,40]},{"4":[2,43],"28":[2,43],"29":[2,43],"55":[2,43],"75":[2,43]},{"4":[2,44],"28":[2,44],"29":[2,44],"55":[2,44],"75":[2,44]},{"4":[2,45],"28":[2,45],"29":[2,45],"43":[2,45],"55":[2,45],"75":[2,45]},{"4":[2,46],"28":[2,46],"29":[2,46],"43":[2,46],"55":[2,46],"75":[2,46]},{"4":[2,47],"28":[2,47],"29":[2,47],"43":[2,47],"55":[2,47],"75":[2,47]},{"1":[2,6],"4":[2,6],"29":[2,6]},{"1":[2,28],"4":[2,28],"28":[2,28],"29":[2,28],"50":[2,28],"55":[2,28],"58":[2,28],"70":[2,28],"75":[2,28],"85":[2,28],"90":[2,28],"95":[2,28],"96":[2,28],"99":[2,28],"101":[2,28],"102":[2,28],"103":[2,28],"110":[2,28],"114":[2,28],"115":[2,28],"120":[2,28],"122":[2,28],"126":[2,28],"127":[2,28],"129":[2,28],"130":[2,28],"133":[2,28],"134":[2,28],"135":[2,28],"136":[2,28],"137":[2,28],"138":[2,28]},{"1":[2,196],"4":[2,196],"28":[2,196],"29":[2,196],"50":[2,196],"55":[2,196],"58":[2,196],"70":[2,196],"75":[2,196],"85":[2,196],"90":[2,196],"99":[2,196],"100":89,"101":[2,196],"102":[2,196],"103":[2,196],"106":90,"110":[2,196],"114":[2,196],"115":[2,196],"126":[2,196],"127":[2,196],"129":[2,196],"130":[2,196],"133":[1,79],"134":[1,82],"135":[2,196],"136":[2,196],"137":[2,196],"138":[2,196]},{"1":[2,197],"4":[2,197],"28":[2,197],"29":[2,197],"50":[2,197],"55":[2,197],"58":[2,197],"70":[2,197],"75":[2,197],"85":[2,197],"90":[2,197],"99":[2,197],"100":89,"101":[2,197],"102":[2,197],"103":[2,197],"106":90,"110":[2,197],"114":[2,197],"115":[2,197],"126":[2,197],"127":[2,197],"129":[2,197],"130":[2,197],"133":[1,79],"134":[1,82],"135":[2,197],"136":[2,197],"137":[2,197],"138":[2,197]},{"1":[2,198],"4":[2,198],"28":[2,198],"29":[2,198],"50":[2,198],"55":[2,198],"58":[2,198],"70":[2,198],"75":[2,198],"85":[2,198],"90":[2,198],"99":[2,198],"100":89,"101":[2,198],"102":[2,198],"103":[2,198],"106":90,"110":[2,198],"114":[2,198],"115":[2,198],"126":[2,198],"127":[2,198],"129":[2,198],"130":[2,198],"133":[1,79],"134":[2,198],"135":[2,198],"136":[2,198],"137":[2,198],"138":[2,198]},{"1":[2,199],"4":[2,199],"28":[2,199],"29":[2,199],"50":[2,199],"55":[2,199],"58":[2,199],"70":[2,199],"75":[2,199],"85":[2,199],"90":[2,199],"99":[2,199],"100":89,"101":[2,199],"102":[2,199],"103":[2,199],"106":90,"110":[2,199],"114":[2,199],"115":[2,199],"126":[2,199],"127":[2,199],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[2,199],"136":[2,199],"137":[2,199],"138":[2,199]},{"1":[2,200],"4":[2,200],"28":[2,200],"29":[2,200],"50":[2,200],"55":[2,200],"58":[2,200],"70":[2,200],"75":[2,200],"85":[2,200],"90":[2,200],"99":[2,200],"100":89,"101":[2,200],"102":[2,200],"103":[2,200],"106":90,"110":[2,200],"114":[2,200],"115":[2,200],"126":[2,200],"127":[2,200],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[2,200],"137":[2,200],"138":[1,86]},{"1":[2,201],"4":[2,201],"28":[2,201],"29":[2,201],"50":[2,201],"55":[2,201],"58":[2,201],"70":[2,201],"75":[2,201],"85":[2,201],"90":[2,201],"99":[2,201],"100":89,"101":[2,201],"102":[2,201],"103":[2,201],"106":90,"110":[2,201],"114":[2,201],"115":[2,201],"126":[2,201],"127":[2,201],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[2,201],"138":[1,86]},{"1":[2,202],"4":[2,202],"28":[2,202],"29":[2,202],"50":[2,202],"55":[2,202],"58":[2,202],"70":[2,202],"75":[2,202],"85":[2,202],"90":[2,202],"99":[2,202],"100":89,"101":[2,202],"102":[2,202],"103":[2,202],"106":90,"110":[2,202],"114":[2,202],"115":[2,202],"126":[2,202],"127":[2,202],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[2,202],"137":[2,202],"138":[2,202]},{"1":[2,185],"4":[2,185],"28":[2,185],"29":[2,185],"50":[2,185],"55":[2,185],"58":[2,185],"70":[2,185],"75":[2,185],"85":[2,185],"90":[2,185],"99":[2,185],"100":89,"101":[1,65],"102":[2,185],"103":[1,66],"106":90,"110":[2,185],"114":[2,185],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,187],"4":[2,187],"28":[2,187],"29":[2,187],"50":[2,187],"55":[2,187],"58":[2,187],"70":[2,187],"75":[2,187],"85":[2,187],"90":[2,187],"99":[2,187],"100":89,"101":[1,65],"102":[2,187],"103":[1,66],"106":90,"110":[2,187],"114":[2,187],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,184],"4":[2,184],"28":[2,184],"29":[2,184],"50":[2,184],"55":[2,184],"58":[2,184],"70":[2,184],"75":[2,184],"85":[2,184],"90":[2,184],"99":[2,184],"100":89,"101":[1,65],"102":[2,184],"103":[1,66],"106":90,"110":[2,184],"114":[2,184],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,186],"4":[2,186],"28":[2,186],"29":[2,186],"50":[2,186],"55":[2,186],"58":[2,186],"70":[2,186],"75":[2,186],"85":[2,186],"90":[2,186],"99":[2,186],"100":89,"101":[1,65],"102":[2,186],"103":[1,66],"106":90,"110":[2,186],"114":[2,186],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,109],"4":[2,109],"28":[2,109],"29":[2,109],"50":[2,109],"55":[2,109],"58":[2,109],"65":[2,109],"66":[2,109],"67":[2,109],"69":[2,109],"70":[2,109],"71":[2,109],"72":[2,109],"75":[2,109],"83":[2,109],"84":[2,109],"85":[2,109],"90":[2,109],"99":[2,109],"101":[2,109],"102":[2,109],"103":[2,109],"110":[2,109],"114":[2,109],"115":[2,109],"126":[2,109],"127":[2,109],"129":[2,109],"130":[2,109],"133":[2,109],"134":[2,109],"135":[2,109],"136":[2,109],"137":[2,109],"138":[2,109]},{"1":[2,79],"4":[2,79],"28":[2,79],"29":[2,79],"40":[2,79],"50":[2,79],"55":[2,79],"58":[2,79],"65":[2,79],"66":[2,79],"67":[2,79],"69":[2,79],"70":[2,79],"71":[2,79],"72":[2,79],"75":[2,79],"77":[2,79],"83":[2,79],"84":[2,79],"85":[2,79],"90":[2,79],"99":[2,79],"101":[2,79],"102":[2,79],"103":[2,79],"110":[2,79],"114":[2,79],"115":[2,79],"126":[2,79],"127":[2,79],"129":[2,79],"130":[2,79],"131":[2,79],"132":[2,79],"133":[2,79],"134":[2,79],"135":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79]},{"1":[2,80],"4":[2,80],"28":[2,80],"29":[2,80],"40":[2,80],"50":[2,80],"55":[2,80],"58":[2,80],"65":[2,80],"66":[2,80],"67":[2,80],"69":[2,80],"70":[2,80],"71":[2,80],"72":[2,80],"75":[2,80],"77":[2,80],"83":[2,80],"84":[2,80],"85":[2,80],"90":[2,80],"99":[2,80],"101":[2,80],"102":[2,80],"103":[2,80],"110":[2,80],"114":[2,80],"115":[2,80],"126":[2,80],"127":[2,80],"129":[2,80],"130":[2,80],"131":[2,80],"132":[2,80],"133":[2,80],"134":[2,80],"135":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80]},{"1":[2,81],"4":[2,81],"28":[2,81],"29":[2,81],"40":[2,81],"50":[2,81],"55":[2,81],"58":[2,81],"65":[2,81],"66":[2,81],"67":[2,81],"69":[2,81],"70":[2,81],"71":[2,81],"72":[2,81],"75":[2,81],"77":[2,81],"83":[2,81],"84":[2,81],"85":[2,81],"90":[2,81],"99":[2,81],"101":[2,81],"102":[2,81],"103":[2,81],"110":[2,81],"114":[2,81],"115":[2,81],"126":[2,81],"127":[2,81],"129":[2,81],"130":[2,81],"131":[2,81],"132":[2,81],"133":[2,81],"134":[2,81],"135":[2,81],"136":[2,81],"137":[2,81],"138":[2,81],"139":[2,81]},{"70":[1,240],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,85],"4":[2,85],"28":[2,85],"29":[2,85],"40":[2,85],"50":[2,85],"55":[2,85],"58":[2,85],"65":[2,85],"66":[2,85],"67":[2,85],"69":[2,85],"70":[2,85],"71":[2,85],"72":[2,85],"75":[2,85],"77":[2,85],"83":[2,85],"84":[2,85],"85":[2,85],"90":[2,85],"99":[2,85],"101":[2,85],"102":[2,85],"103":[2,85],"110":[2,85],"114":[2,85],"115":[2,85],"126":[2,85],"127":[2,85],"129":[2,85],"130":[2,85],"131":[2,85],"132":[2,85],"133":[2,85],"134":[2,85],"135":[2,85],"136":[2,85],"137":[2,85],"138":[2,85],"139":[2,85]},{"1":[2,86],"4":[2,86],"28":[2,86],"29":[2,86],"40":[2,86],"50":[2,86],"55":[2,86],"58":[2,86],"65":[2,86],"66":[2,86],"67":[2,86],"69":[2,86],"70":[2,86],"71":[2,86],"72":[2,86],"75":[2,86],"77":[2,86],"83":[2,86],"84":[2,86],"85":[2,86],"90":[2,86],"99":[2,86],"101":[2,86],"102":[2,86],"103":[2,86],"110":[2,86],"114":[2,86],"115":[2,86],"126":[2,86],"127":[2,86],"129":[2,86],"130":[2,86],"131":[2,86],"132":[2,86],"133":[2,86],"134":[2,86],"135":[2,86],"136":[2,86],"137":[2,86],"138":[2,86],"139":[2,86]},{"1":[2,110],"4":[2,110],"28":[2,110],"29":[2,110],"50":[2,110],"55":[2,110],"58":[2,110],"65":[2,110],"66":[2,110],"67":[2,110],"69":[2,110],"70":[2,110],"71":[2,110],"72":[2,110],"75":[2,110],"83":[2,110],"84":[2,110],"85":[2,110],"90":[2,110],"99":[2,110],"101":[2,110],"102":[2,110],"103":[2,110],"110":[2,110],"114":[2,110],"115":[2,110],"126":[2,110],"127":[2,110],"129":[2,110],"130":[2,110],"133":[2,110],"134":[2,110],"135":[2,110],"136":[2,110],"137":[2,110],"138":[2,110]},{"1":[2,38],"4":[2,38],"28":[2,38],"29":[2,38],"50":[2,38],"55":[2,38],"58":[2,38],"70":[2,38],"75":[2,38],"85":[2,38],"90":[2,38],"99":[2,38],"100":89,"101":[2,38],"102":[2,38],"103":[2,38],"106":90,"110":[2,38],"114":[2,38],"115":[2,38],"126":[2,38],"127":[2,38],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":241,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,115],"4":[2,115],"28":[2,115],"29":[2,115],"50":[2,115],"55":[2,115],"58":[2,115],"65":[2,115],"66":[2,115],"67":[2,115],"69":[2,115],"70":[2,115],"71":[2,115],"72":[2,115],"75":[2,115],"83":[2,115],"84":[2,115],"85":[2,115],"90":[2,115],"99":[2,115],"101":[2,115],"102":[2,115],"103":[2,115],"110":[2,115],"114":[2,115],"115":[2,115],"126":[2,115],"127":[2,115],"129":[2,115],"130":[2,115],"133":[2,115],"134":[2,115],"135":[2,115],"136":[2,115],"137":[2,115],"138":[2,115]},{"4":[2,55],"28":[2,55],"54":242,"55":[1,234],"85":[2,55]},{"51":243,"52":[1,59],"53":[1,60]},{"30":113,"31":[1,73],"44":114,"56":244,"57":112,"59":115,"60":116,"73":[1,70],"88":[1,117],"89":[1,69]},{"50":[2,61],"55":[2,61]},{"8":245,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,203],"4":[2,203],"28":[2,203],"29":[2,203],"50":[2,203],"55":[2,203],"58":[2,203],"70":[2,203],"75":[2,203],"85":[2,203],"90":[2,203],"99":[2,203],"100":89,"101":[2,203],"102":[2,203],"103":[2,203],"106":90,"110":[2,203],"114":[2,203],"115":[2,203],"126":[2,203],"127":[2,203],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":246,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,108],"4":[2,108],"28":[2,108],"29":[2,108],"50":[2,108],"55":[2,108],"58":[2,108],"63":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,108],"71":[1,103],"72":[1,104],"75":[2,108],"80":95,"83":[1,97],"84":[2,113],"85":[2,108],"90":[2,108],"99":[2,108],"101":[2,108],"102":[2,108],"103":[2,108],"110":[2,108],"114":[2,108],"115":[2,108],"126":[2,108],"127":[2,108],"129":[2,108],"130":[2,108],"133":[2,108],"134":[2,108],"135":[2,108],"136":[2,108],"137":[2,108],"138":[2,108]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"50":[2,72],"55":[2,72],"58":[2,72],"65":[2,72],"66":[2,72],"67":[2,72],"69":[2,72],"70":[2,72],"71":[2,72],"72":[2,72],"75":[2,72],"83":[2,72],"84":[2,72],"85":[2,72],"90":[2,72],"99":[2,72],"101":[2,72],"102":[2,72],"103":[2,72],"110":[2,72],"114":[2,72],"115":[2,72],"126":[2,72],"127":[2,72],"129":[2,72],"130":[2,72],"133":[2,72],"134":[2,72],"135":[2,72],"136":[2,72],"137":[2,72],"138":[2,72]},{"8":247,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,182],"4":[2,182],"28":[2,182],"29":[2,182],"50":[2,182],"55":[2,182],"58":[2,182],"70":[2,182],"75":[2,182],"85":[2,182],"90":[2,182],"99":[2,182],"101":[2,182],"102":[2,182],"103":[2,182],"110":[2,182],"114":[2,182],"115":[2,182],"120":[2,182],"126":[2,182],"127":[2,182],"129":[2,182],"130":[2,182],"133":[2,182],"134":[2,182],"135":[2,182],"136":[2,182],"137":[2,182],"138":[2,182]},{"1":[2,132],"4":[2,132],"28":[2,132],"29":[2,132],"50":[2,132],"55":[2,132],"58":[2,132],"70":[2,132],"75":[2,132],"85":[2,132],"90":[2,132],"95":[1,248],"99":[2,132],"101":[2,132],"102":[2,132],"103":[2,132],"110":[2,132],"114":[2,132],"115":[2,132],"126":[2,132],"127":[2,132],"129":[2,132],"130":[2,132],"133":[2,132],"134":[2,132],"135":[2,132],"136":[2,132],"137":[2,132],"138":[2,132]},{"4":[1,119],"6":249,"28":[1,6]},{"30":250,"31":[1,73]},{"119":251,"121":211,"122":[1,212]},{"29":[1,252],"120":[1,253],"121":254,"122":[1,212]},{"29":[2,175],"120":[2,175],"122":[2,175]},{"8":256,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"92":255,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"15":257,"16":126,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":127,"44":62,"45":29,"59":50,"60":51,"62":203,"64":30,"73":[1,70],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"98":[1,56]},{"4":[2,104],"27":167,"29":[2,104],"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":218,"42":165,"44":219,"45":170,"47":[1,47],"73":[1,217],"78":258,"79":216,"88":[1,117],"98":[1,56]},{"4":[1,260],"29":[1,259]},{"4":[2,105],"29":[2,105],"75":[2,105]},{"4":[2,104],"27":167,"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":218,"42":165,"44":219,"45":170,"47":[1,47],"73":[1,217],"75":[2,104],"78":261,"79":216,"88":[1,117],"98":[1,56]},{"4":[2,101],"29":[2,101],"75":[2,101]},{"4":[2,43],"29":[2,43],"43":[1,262],"75":[2,43]},{"1":[2,99],"4":[2,99],"28":[1,263],"29":[2,99],"50":[2,99],"55":[2,99],"58":[2,99],"63":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,99],"71":[1,103],"72":[1,104],"75":[2,99],"80":95,"83":[1,97],"84":[2,113],"85":[2,99],"90":[2,99],"99":[2,99],"101":[2,99],"102":[2,99],"103":[2,99],"110":[2,99],"114":[2,99],"115":[2,99],"126":[2,99],"127":[2,99],"129":[2,99],"130":[2,99],"133":[2,99],"134":[2,99],"135":[2,99],"136":[2,99],"137":[2,99],"138":[2,99]},{"1":[2,137],"4":[2,137],"28":[2,137],"29":[2,137],"43":[2,137],"50":[2,137],"55":[2,137],"58":[2,137],"65":[2,137],"66":[2,137],"67":[2,137],"69":[2,137],"70":[2,137],"71":[2,137],"72":[2,137],"75":[2,137],"83":[2,137],"84":[2,137],"85":[2,137],"90":[2,137],"99":[2,137],"101":[2,137],"102":[2,137],"103":[2,137],"110":[2,137],"114":[2,137],"115":[2,137],"126":[2,137],"127":[2,137],"129":[2,137],"130":[2,137],"133":[2,137],"134":[2,137],"135":[2,137],"136":[2,137],"137":[2,137],"138":[2,137]},{"1":[2,179],"4":[2,179],"28":[2,179],"29":[2,179],"50":[2,179],"55":[2,179],"58":[2,179],"70":[2,179],"75":[2,179],"85":[2,179],"90":[2,179],"99":[2,179],"101":[2,179],"102":[2,179],"103":[2,179],"110":[2,179],"114":[2,179],"115":[2,179],"120":[2,179],"126":[2,179],"127":[2,179],"129":[2,179],"130":[2,179],"133":[2,179],"134":[2,179],"135":[2,179],"136":[2,179],"137":[2,179],"138":[2,179]},{"1":[2,180],"4":[2,180],"28":[2,180],"29":[2,180],"50":[2,180],"55":[2,180],"58":[2,180],"70":[2,180],"75":[2,180],"85":[2,180],"90":[2,180],"99":[2,180],"101":[2,180],"102":[2,180],"103":[2,180],"110":[2,180],"114":[2,180],"115":[2,180],"120":[2,180],"126":[2,180],"127":[2,180],"129":[2,180],"130":[2,180],"133":[2,180],"134":[2,180],"135":[2,180],"136":[2,180],"137":[2,180],"138":[2,180]},{"8":264,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":265,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,164],"4":[2,164],"28":[2,164],"29":[2,164],"50":[2,164],"55":[2,164],"58":[2,164],"70":[2,164],"75":[2,164],"85":[2,164],"90":[2,164],"99":[2,164],"101":[2,164],"102":[2,164],"103":[2,164],"110":[2,164],"114":[2,164],"115":[2,164],"126":[2,164],"127":[2,164],"129":[2,164],"130":[2,164],"133":[2,164],"134":[2,164],"135":[2,164],"136":[2,164],"137":[2,164],"138":[2,164]},{"30":266,"31":[1,73],"59":155,"60":156,"73":[1,70],"89":[1,69],"107":267},{"8":268,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,166],"4":[2,166],"28":[2,166],"29":[2,166],"50":[2,166],"55":[2,166],"58":[2,166],"70":[2,166],"75":[2,166],"85":[2,166],"90":[2,166],"99":[2,166],"101":[2,166],"102":[2,166],"103":[2,166],"110":[2,166],"114":[2,166],"115":[2,166],"126":[2,166],"127":[2,166],"129":[2,166],"130":[2,166],"133":[2,166],"134":[2,166],"135":[2,166],"136":[2,166],"137":[2,166],"138":[2,166]},{"8":269,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":270,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"55":[1,272],"111":271,"112":[1,231]},{"4":[1,274],"28":[1,275],"90":[1,273]},{"4":[2,56],"8":161,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[2,56],"29":[2,56],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"61":162,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"85":[2,56],"87":[1,57],"88":[1,58],"89":[1,69],"90":[2,56],"91":276,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":277,"55":[1,234]},{"4":[2,67],"28":[2,67],"29":[2,67],"55":[2,67],"85":[2,67],"90":[2,67]},{"4":[1,279],"28":[1,280],"75":[1,278]},{"4":[2,56],"27":167,"28":[2,56],"29":[2,56],"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":281,"42":165,"44":166,"45":170,"47":[1,47],"75":[2,56],"88":[1,117],"98":[1,56]},{"8":282,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,283],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,84],"4":[2,84],"28":[2,84],"29":[2,84],"40":[2,84],"50":[2,84],"55":[2,84],"58":[2,84],"65":[2,84],"66":[2,84],"67":[2,84],"69":[2,84],"70":[2,84],"71":[2,84],"72":[2,84],"75":[2,84],"77":[2,84],"83":[2,84],"84":[2,84],"85":[2,84],"90":[2,84],"99":[2,84],"101":[2,84],"102":[2,84],"103":[2,84],"110":[2,84],"114":[2,84],"115":[2,84],"126":[2,84],"127":[2,84],"129":[2,84],"130":[2,84],"131":[2,84],"132":[2,84],"133":[2,84],"134":[2,84],"135":[2,84],"136":[2,84],"137":[2,84],"138":[2,84],"139":[2,84]},{"29":[1,284],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,274],"28":[1,275],"85":[1,285]},{"4":[1,119],"6":286,"28":[1,6]},{"50":[2,59],"55":[2,59]},{"50":[2,62],"55":[2,62],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"29":[1,287],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,119],"6":288,"28":[1,6],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,119],"6":289,"28":[1,6]},{"1":[2,133],"4":[2,133],"28":[2,133],"29":[2,133],"50":[2,133],"55":[2,133],"58":[2,133],"70":[2,133],"75":[2,133],"85":[2,133],"90":[2,133],"99":[2,133],"101":[2,133],"102":[2,133],"103":[2,133],"110":[2,133],"114":[2,133],"115":[2,133],"126":[2,133],"127":[2,133],"129":[2,133],"130":[2,133],"133":[2,133],"134":[2,133],"135":[2,133],"136":[2,133],"137":[2,133],"138":[2,133]},{"4":[1,119],"6":290,"28":[1,6]},{"29":[1,291],"120":[1,292],"121":254,"122":[1,212]},{"1":[2,173],"4":[2,173],"28":[2,173],"29":[2,173],"50":[2,173],"55":[2,173],"58":[2,173],"70":[2,173],"75":[2,173],"85":[2,173],"90":[2,173],"99":[2,173],"101":[2,173],"102":[2,173],"103":[2,173],"110":[2,173],"114":[2,173],"115":[2,173],"126":[2,173],"127":[2,173],"129":[2,173],"130":[2,173],"133":[2,173],"134":[2,173],"135":[2,173],"136":[2,173],"137":[2,173],"138":[2,173]},{"4":[1,119],"6":293,"28":[1,6]},{"29":[2,176],"120":[2,176],"122":[2,176]},{"4":[1,119],"6":294,"28":[1,6],"55":[1,295]},{"4":[2,129],"28":[2,129],"55":[2,129],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,94],"4":[2,94],"28":[1,296],"29":[2,94],"50":[2,94],"55":[2,94],"58":[2,94],"63":96,"65":[1,98],"66":[1,99],"67":[1,100],"68":101,"69":[1,102],"70":[2,94],"71":[1,103],"72":[1,104],"75":[2,94],"80":95,"83":[1,97],"84":[2,113],"85":[2,94],"90":[2,94],"99":[2,94],"101":[2,94],"102":[2,94],"103":[2,94],"110":[2,94],"114":[2,94],"115":[2,94],"126":[2,94],"127":[2,94],"129":[2,94],"130":[2,94],"133":[2,94],"134":[2,94],"135":[2,94],"136":[2,94],"137":[2,94],"138":[2,94]},{"4":[1,260],"29":[1,297]},{"1":[2,97],"4":[2,97],"28":[2,97],"29":[2,97],"50":[2,97],"55":[2,97],"58":[2,97],"70":[2,97],"75":[2,97],"85":[2,97],"90":[2,97],"99":[2,97],"101":[2,97],"102":[2,97],"103":[2,97],"110":[2,97],"114":[2,97],"115":[2,97],"126":[2,97],"127":[2,97],"129":[2,97],"130":[2,97],"133":[2,97],"134":[2,97],"135":[2,97],"136":[2,97],"137":[2,97],"138":[2,97]},{"27":167,"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":218,"42":165,"44":219,"45":170,"47":[1,47],"79":298,"88":[1,117],"98":[1,56]},{"4":[1,260],"75":[1,299]},{"8":300,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,301],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,104],"27":167,"29":[2,104],"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":218,"42":165,"44":219,"45":170,"47":[1,47],"73":[1,217],"78":302,"79":216,"88":[1,117],"98":[1,56]},{"1":[2,139],"4":[2,139],"28":[2,139],"29":[2,139],"50":[2,139],"55":[2,139],"58":[2,139],"70":[2,139],"75":[2,139],"85":[2,139],"90":[2,139],"99":[2,139],"100":89,"101":[1,65],"102":[2,139],"103":[1,66],"106":90,"110":[2,139],"114":[2,139],"115":[1,68],"126":[2,139],"127":[2,139],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,141],"4":[2,141],"28":[2,141],"29":[2,141],"50":[2,141],"55":[2,141],"58":[2,141],"70":[2,141],"75":[2,141],"85":[2,141],"90":[2,141],"99":[2,141],"100":89,"101":[1,65],"102":[2,141],"103":[1,66],"106":90,"110":[2,141],"114":[2,141],"115":[1,68],"126":[2,141],"127":[2,141],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"108":303,"109":[1,228],"112":[2,151]},{"111":304,"112":[1,231]},{"1":[2,154],"4":[2,154],"28":[2,154],"29":[2,154],"50":[2,154],"55":[2,154],"58":[2,154],"70":[2,154],"75":[2,154],"85":[2,154],"90":[2,154],"99":[2,154],"100":89,"101":[1,65],"102":[1,305],"103":[1,66],"106":90,"110":[1,306],"114":[2,154],"115":[1,68],"126":[2,154],"127":[2,154],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"100":89,"101":[1,65],"103":[1,66],"106":90,"113":307,"114":[1,308],"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,158],"4":[2,158],"28":[2,158],"29":[2,158],"50":[2,158],"55":[2,158],"58":[2,158],"70":[2,158],"75":[2,158],"85":[2,158],"90":[2,158],"99":[2,158],"100":89,"101":[1,65],"102":[1,309],"103":[1,66],"106":90,"110":[2,158],"114":[2,158],"115":[1,68],"126":[2,158],"127":[2,158],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,168],"4":[2,168],"28":[2,168],"29":[2,168],"50":[2,168],"55":[2,168],"58":[2,168],"70":[2,168],"75":[2,168],"85":[2,168],"90":[2,168],"99":[2,168],"101":[2,168],"102":[2,168],"103":[2,168],"110":[2,168],"114":[2,168],"115":[2,168],"126":[2,168],"127":[2,168],"129":[2,168],"130":[2,168],"133":[2,168],"134":[2,168],"135":[2,168],"136":[2,168],"137":[2,168],"138":[2,168]},{"30":311,"31":[1,73],"59":155,"60":156,"73":[1,70],"89":[1,69],"107":310},{"1":[2,121],"4":[2,121],"28":[2,121],"29":[2,121],"40":[2,121],"50":[2,121],"55":[2,121],"58":[2,121],"65":[2,121],"66":[2,121],"67":[2,121],"69":[2,121],"70":[2,121],"71":[2,121],"72":[2,121],"75":[2,121],"83":[2,121],"84":[2,121],"85":[2,121],"90":[2,121],"99":[2,121],"101":[2,121],"102":[2,121],"103":[2,121],"109":[2,121],"110":[2,121],"112":[2,121],"114":[2,121],"115":[2,121],"126":[2,121],"127":[2,121],"129":[2,121],"130":[2,121],"133":[2,121],"134":[2,121],"135":[2,121],"136":[2,121],"137":[2,121],"138":[2,121]},{"8":161,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"61":162,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"91":312,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":161,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"28":[1,160],"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"61":162,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"86":313,"87":[1,57],"88":[1,58],"89":[1,69],"91":159,"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,123],"28":[2,123],"29":[2,123],"55":[2,123],"85":[2,123],"90":[2,123]},{"4":[1,274],"28":[1,275],"29":[1,314]},{"1":[2,87],"4":[2,87],"28":[2,87],"29":[2,87],"40":[2,87],"50":[2,87],"55":[2,87],"58":[2,87],"65":[2,87],"66":[2,87],"67":[2,87],"69":[2,87],"70":[2,87],"71":[2,87],"72":[2,87],"75":[2,87],"83":[2,87],"84":[2,87],"85":[2,87],"90":[2,87],"99":[2,87],"101":[2,87],"102":[2,87],"103":[2,87],"109":[2,87],"110":[2,87],"112":[2,87],"114":[2,87],"115":[2,87],"126":[2,87],"127":[2,87],"129":[2,87],"130":[2,87],"133":[2,87],"134":[2,87],"135":[2,87],"136":[2,87],"137":[2,87],"138":[2,87]},{"27":167,"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":315,"42":165,"44":166,"45":170,"47":[1,47],"88":[1,117],"98":[1,56]},{"4":[2,88],"27":167,"28":[2,88],"29":[2,88],"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":164,"42":165,"44":166,"45":170,"47":[1,47],"55":[2,88],"74":316,"88":[1,117],"98":[1,56]},{"4":[2,90],"28":[2,90],"29":[2,90],"55":[2,90],"75":[2,90]},{"4":[2,41],"28":[2,41],"29":[2,41],"55":[2,41],"75":[2,41],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":317,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,39],"4":[2,39],"28":[2,39],"29":[2,39],"50":[2,39],"55":[2,39],"58":[2,39],"70":[2,39],"75":[2,39],"85":[2,39],"90":[2,39],"99":[2,39],"101":[2,39],"102":[2,39],"103":[2,39],"110":[2,39],"114":[2,39],"115":[2,39],"126":[2,39],"127":[2,39],"129":[2,39],"130":[2,39],"133":[2,39],"134":[2,39],"135":[2,39],"136":[2,39],"137":[2,39],"138":[2,39]},{"1":[2,116],"4":[2,116],"28":[2,116],"29":[2,116],"50":[2,116],"55":[2,116],"58":[2,116],"65":[2,116],"66":[2,116],"67":[2,116],"69":[2,116],"70":[2,116],"71":[2,116],"72":[2,116],"75":[2,116],"83":[2,116],"84":[2,116],"85":[2,116],"90":[2,116],"99":[2,116],"101":[2,116],"102":[2,116],"103":[2,116],"110":[2,116],"114":[2,116],"115":[2,116],"126":[2,116],"127":[2,116],"129":[2,116],"130":[2,116],"133":[2,116],"134":[2,116],"135":[2,116],"136":[2,116],"137":[2,116],"138":[2,116]},{"1":[2,51],"4":[2,51],"28":[2,51],"29":[2,51],"50":[2,51],"55":[2,51],"58":[2,51],"70":[2,51],"75":[2,51],"85":[2,51],"90":[2,51],"99":[2,51],"101":[2,51],"102":[2,51],"103":[2,51],"110":[2,51],"114":[2,51],"115":[2,51],"126":[2,51],"127":[2,51],"129":[2,51],"130":[2,51],"133":[2,51],"134":[2,51],"135":[2,51],"136":[2,51],"137":[2,51],"138":[2,51]},{"1":[2,204],"4":[2,204],"28":[2,204],"29":[2,204],"50":[2,204],"55":[2,204],"58":[2,204],"70":[2,204],"75":[2,204],"85":[2,204],"90":[2,204],"99":[2,204],"101":[2,204],"102":[2,204],"103":[2,204],"110":[2,204],"114":[2,204],"115":[2,204],"126":[2,204],"127":[2,204],"129":[2,204],"130":[2,204],"133":[2,204],"134":[2,204],"135":[2,204],"136":[2,204],"137":[2,204],"138":[2,204]},{"1":[2,181],"4":[2,181],"28":[2,181],"29":[2,181],"50":[2,181],"55":[2,181],"58":[2,181],"70":[2,181],"75":[2,181],"85":[2,181],"90":[2,181],"99":[2,181],"101":[2,181],"102":[2,181],"103":[2,181],"110":[2,181],"114":[2,181],"115":[2,181],"120":[2,181],"126":[2,181],"127":[2,181],"129":[2,181],"130":[2,181],"133":[2,181],"134":[2,181],"135":[2,181],"136":[2,181],"137":[2,181],"138":[2,181]},{"1":[2,134],"4":[2,134],"28":[2,134],"29":[2,134],"50":[2,134],"55":[2,134],"58":[2,134],"70":[2,134],"75":[2,134],"85":[2,134],"90":[2,134],"99":[2,134],"101":[2,134],"102":[2,134],"103":[2,134],"110":[2,134],"114":[2,134],"115":[2,134],"126":[2,134],"127":[2,134],"129":[2,134],"130":[2,134],"133":[2,134],"134":[2,134],"135":[2,134],"136":[2,134],"137":[2,134],"138":[2,134]},{"1":[2,135],"4":[2,135],"28":[2,135],"29":[2,135],"50":[2,135],"55":[2,135],"58":[2,135],"70":[2,135],"75":[2,135],"85":[2,135],"90":[2,135],"95":[2,135],"99":[2,135],"101":[2,135],"102":[2,135],"103":[2,135],"110":[2,135],"114":[2,135],"115":[2,135],"126":[2,135],"127":[2,135],"129":[2,135],"130":[2,135],"133":[2,135],"134":[2,135],"135":[2,135],"136":[2,135],"137":[2,135],"138":[2,135]},{"1":[2,171],"4":[2,171],"28":[2,171],"29":[2,171],"50":[2,171],"55":[2,171],"58":[2,171],"70":[2,171],"75":[2,171],"85":[2,171],"90":[2,171],"99":[2,171],"101":[2,171],"102":[2,171],"103":[2,171],"110":[2,171],"114":[2,171],"115":[2,171],"126":[2,171],"127":[2,171],"129":[2,171],"130":[2,171],"133":[2,171],"134":[2,171],"135":[2,171],"136":[2,171],"137":[2,171],"138":[2,171]},{"4":[1,119],"6":318,"28":[1,6]},{"29":[1,319]},{"4":[1,320],"29":[2,177],"120":[2,177],"122":[2,177]},{"8":321,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,104],"27":167,"29":[2,104],"30":168,"31":[1,73],"32":169,"33":[1,71],"34":[1,72],"41":218,"42":165,"44":219,"45":170,"47":[1,47],"73":[1,217],"78":322,"79":216,"88":[1,117],"98":[1,56]},{"1":[2,95],"4":[2,95],"28":[2,95],"29":[2,95],"50":[2,95],"55":[2,95],"58":[2,95],"70":[2,95],"75":[2,95],"85":[2,95],"90":[2,95],"99":[2,95],"101":[2,95],"102":[2,95],"103":[2,95],"110":[2,95],"114":[2,95],"115":[2,95],"126":[2,95],"127":[2,95],"129":[2,95],"130":[2,95],"133":[2,95],"134":[2,95],"135":[2,95],"136":[2,95],"137":[2,95],"138":[2,95]},{"4":[2,106],"29":[2,106],"75":[2,106]},{"4":[2,107],"29":[2,107],"75":[2,107]},{"4":[2,102],"29":[2,102],"75":[2,102],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":323,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[1,260],"29":[1,324]},{"1":[2,165],"4":[2,165],"28":[2,165],"29":[2,165],"50":[2,165],"55":[2,165],"58":[2,165],"70":[2,165],"75":[2,165],"85":[2,165],"90":[2,165],"99":[2,165],"101":[2,165],"102":[2,165],"103":[2,165],"110":[2,165],"114":[2,165],"115":[2,165],"126":[2,165],"127":[2,165],"129":[2,165],"130":[2,165],"133":[2,165],"134":[2,165],"135":[2,165],"136":[2,165],"137":[2,165],"138":[2,165]},{"1":[2,167],"4":[2,167],"28":[2,167],"29":[2,167],"50":[2,167],"55":[2,167],"58":[2,167],"70":[2,167],"75":[2,167],"85":[2,167],"90":[2,167],"99":[2,167],"101":[2,167],"102":[2,167],"103":[2,167],"110":[2,167],"114":[2,167],"115":[2,167],"126":[2,167],"127":[2,167],"129":[2,167],"130":[2,167],"133":[2,167],"134":[2,167],"135":[2,167],"136":[2,167],"137":[2,167],"138":[2,167]},{"8":325,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":326,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,170],"4":[2,170],"28":[2,170],"29":[2,170],"50":[2,170],"55":[2,170],"58":[2,170],"70":[2,170],"75":[2,170],"85":[2,170],"90":[2,170],"99":[2,170],"101":[2,170],"102":[2,170],"103":[2,170],"110":[2,170],"114":[2,170],"115":[2,170],"126":[2,170],"127":[2,170],"129":[2,170],"130":[2,170],"133":[2,170],"134":[2,170],"135":[2,170],"136":[2,170],"137":[2,170],"138":[2,170]},{"8":327,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":328,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"111":329,"112":[1,231]},{"112":[2,151]},{"4":[2,124],"28":[2,124],"29":[2,124],"55":[2,124],"85":[2,124],"90":[2,124]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":330,"55":[1,234]},{"4":[2,125],"28":[2,125],"29":[2,125],"55":[2,125],"85":[2,125],"90":[2,125]},{"4":[2,91],"28":[2,91],"29":[2,91],"55":[2,91],"75":[2,91]},{"4":[2,55],"28":[2,55],"29":[2,55],"54":331,"55":[1,238]},{"29":[1,332],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"29":[1,333]},{"1":[2,174],"4":[2,174],"28":[2,174],"29":[2,174],"50":[2,174],"55":[2,174],"58":[2,174],"70":[2,174],"75":[2,174],"85":[2,174],"90":[2,174],"99":[2,174],"101":[2,174],"102":[2,174],"103":[2,174],"110":[2,174],"114":[2,174],"115":[2,174],"126":[2,174],"127":[2,174],"129":[2,174],"130":[2,174],"133":[2,174],"134":[2,174],"135":[2,174],"136":[2,174],"137":[2,174],"138":[2,174]},{"29":[2,178],"120":[2,178],"122":[2,178]},{"4":[2,130],"28":[2,130],"55":[2,130],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"4":[1,260],"29":[1,334]},{"29":[1,335],"100":89,"101":[1,65],"103":[1,66],"106":90,"115":[1,68],"126":[1,87],"127":[1,88],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,100],"4":[2,100],"28":[2,100],"29":[2,100],"50":[2,100],"55":[2,100],"58":[2,100],"70":[2,100],"75":[2,100],"85":[2,100],"90":[2,100],"99":[2,100],"101":[2,100],"102":[2,100],"103":[2,100],"110":[2,100],"114":[2,100],"115":[2,100],"126":[2,100],"127":[2,100],"129":[2,100],"130":[2,100],"133":[2,100],"134":[2,100],"135":[2,100],"136":[2,100],"137":[2,100],"138":[2,100]},{"1":[2,155],"4":[2,155],"28":[2,155],"29":[2,155],"50":[2,155],"55":[2,155],"58":[2,155],"70":[2,155],"75":[2,155],"85":[2,155],"90":[2,155],"99":[2,155],"100":89,"101":[1,65],"102":[2,155],"103":[1,66],"106":90,"110":[2,155],"114":[2,155],"115":[1,68],"126":[2,155],"127":[2,155],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,156],"4":[2,156],"28":[2,156],"29":[2,156],"50":[2,156],"55":[2,156],"58":[2,156],"70":[2,156],"75":[2,156],"85":[2,156],"90":[2,156],"99":[2,156],"100":89,"101":[1,65],"102":[1,336],"103":[1,66],"106":90,"110":[2,156],"114":[2,156],"115":[1,68],"126":[2,156],"127":[2,156],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,160],"4":[2,160],"28":[2,160],"29":[2,160],"50":[2,160],"55":[2,160],"58":[2,160],"70":[2,160],"75":[2,160],"85":[2,160],"90":[2,160],"99":[2,160],"100":89,"101":[1,65],"102":[1,337],"103":[1,66],"106":90,"110":[1,338],"114":[2,160],"115":[1,68],"126":[2,160],"127":[2,160],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,159],"4":[2,159],"28":[2,159],"29":[2,159],"50":[2,159],"55":[2,159],"58":[2,159],"70":[2,159],"75":[2,159],"85":[2,159],"90":[2,159],"99":[2,159],"100":89,"101":[1,65],"102":[2,159],"103":[1,66],"106":90,"110":[2,159],"114":[2,159],"115":[1,68],"126":[2,159],"127":[2,159],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,169],"4":[2,169],"28":[2,169],"29":[2,169],"50":[2,169],"55":[2,169],"58":[2,169],"70":[2,169],"75":[2,169],"85":[2,169],"90":[2,169],"99":[2,169],"101":[2,169],"102":[2,169],"103":[2,169],"110":[2,169],"114":[2,169],"115":[2,169],"126":[2,169],"127":[2,169],"129":[2,169],"130":[2,169],"133":[2,169],"134":[2,169],"135":[2,169],"136":[2,169],"137":[2,169],"138":[2,169]},{"4":[1,274],"28":[1,275],"29":[1,339]},{"4":[1,279],"28":[1,280],"29":[1,340]},{"4":[2,42],"28":[2,42],"29":[2,42],"55":[2,42],"75":[2,42]},{"1":[2,172],"4":[2,172],"28":[2,172],"29":[2,172],"50":[2,172],"55":[2,172],"58":[2,172],"70":[2,172],"75":[2,172],"85":[2,172],"90":[2,172],"99":[2,172],"101":[2,172],"102":[2,172],"103":[2,172],"110":[2,172],"114":[2,172],"115":[2,172],"126":[2,172],"127":[2,172],"129":[2,172],"130":[2,172],"133":[2,172],"134":[2,172],"135":[2,172],"136":[2,172],"137":[2,172],"138":[2,172]},{"1":[2,96],"4":[2,96],"28":[2,96],"29":[2,96],"50":[2,96],"55":[2,96],"58":[2,96],"70":[2,96],"75":[2,96],"85":[2,96],"90":[2,96],"99":[2,96],"101":[2,96],"102":[2,96],"103":[2,96],"110":[2,96],"114":[2,96],"115":[2,96],"126":[2,96],"127":[2,96],"129":[2,96],"130":[2,96],"133":[2,96],"134":[2,96],"135":[2,96],"136":[2,96],"137":[2,96],"138":[2,96]},{"4":[2,103],"29":[2,103],"75":[2,103]},{"8":341,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":342,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"8":343,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"4":[2,126],"28":[2,126],"29":[2,126],"55":[2,126],"85":[2,126],"90":[2,126]},{"4":[2,92],"28":[2,92],"29":[2,92],"55":[2,92],"75":[2,92]},{"1":[2,157],"4":[2,157],"28":[2,157],"29":[2,157],"50":[2,157],"55":[2,157],"58":[2,157],"70":[2,157],"75":[2,157],"85":[2,157],"90":[2,157],"99":[2,157],"100":89,"101":[1,65],"102":[2,157],"103":[1,66],"106":90,"110":[2,157],"114":[2,157],"115":[1,68],"126":[2,157],"127":[2,157],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,161],"4":[2,161],"28":[2,161],"29":[2,161],"50":[2,161],"55":[2,161],"58":[2,161],"70":[2,161],"75":[2,161],"85":[2,161],"90":[2,161],"99":[2,161],"100":89,"101":[1,65],"102":[2,161],"103":[1,66],"106":90,"110":[2,161],"114":[2,161],"115":[1,68],"126":[2,161],"127":[2,161],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"1":[2,162],"4":[2,162],"28":[2,162],"29":[2,162],"50":[2,162],"55":[2,162],"58":[2,162],"70":[2,162],"75":[2,162],"85":[2,162],"90":[2,162],"99":[2,162],"100":89,"101":[1,65],"102":[1,344],"103":[1,66],"106":90,"110":[2,162],"114":[2,162],"115":[1,68],"126":[2,162],"127":[2,162],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]},{"8":345,"9":121,"10":22,"11":23,"12":[1,24],"13":[1,25],"14":[1,26],"15":9,"16":10,"17":11,"18":12,"19":13,"20":14,"21":15,"22":16,"23":17,"24":18,"25":19,"26":20,"27":21,"30":61,"31":[1,73],"32":52,"33":[1,71],"34":[1,72],"35":28,"36":[1,53],"37":[1,54],"38":[1,55],"39":27,"44":62,"45":29,"46":[1,48],"47":[1,47],"48":[1,32],"51":33,"52":[1,59],"53":[1,60],"59":50,"60":51,"62":39,"64":30,"73":[1,70],"76":[1,46],"82":[1,31],"87":[1,57],"88":[1,58],"89":[1,69],"93":[1,41],"97":[1,49],"98":[1,56],"100":42,"101":[1,65],"103":[1,66],"104":43,"105":[1,67],"106":44,"115":[1,68],"118":[1,45],"123":40,"124":[1,63],"125":[1,64],"128":[1,34],"129":[1,35],"130":[1,36],"131":[1,37],"132":[1,38]},{"1":[2,163],"4":[2,163],"28":[2,163],"29":[2,163],"50":[2,163],"55":[2,163],"58":[2,163],"70":[2,163],"75":[2,163],"85":[2,163],"90":[2,163],"99":[2,163],"100":89,"101":[1,65],"102":[2,163],"103":[1,66],"106":90,"110":[2,163],"114":[2,163],"115":[1,68],"126":[2,163],"127":[2,163],"129":[1,81],"130":[1,80],"133":[1,79],"134":[1,82],"135":[1,83],"136":[1,84],"137":[1,85],"138":[1,86]}], +defaultActions: {"76":[2,4],"97":[2,114],"311":[2,151]}, parseError: function parseError(str, hash) { throw new Error(str); }, diff --git a/src/grammar.coffee b/src/grammar.coffee index b64299aa..c6c789d1 100644 --- a/src/grammar.coffee +++ b/src/grammar.coffee @@ -207,6 +207,8 @@ grammar = ParamVar: [ o 'Identifier' o 'ThisProperty' + o 'Array' + o 'Object' ] # A splat that occurs outside of a parameter list. diff --git a/src/nodes.coffee b/src/nodes.coffee index d4bb78b5..ee457531 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -863,9 +863,9 @@ exports.Code = class Code extends Base new Value new Literal 'arguments' break for param in @params - if param.attach + if param.isComplex() ref = param.asReference o - exprs.push new Assign param.name, + exprs.push new Assign new Value(param.name), if param.value then new Op '?', ref, param.value else ref else ref = param @@ -908,17 +908,18 @@ exports.Param = class Param extends Base constructor: (@name, @value, @splat) -> super() - @attach = @name instanceof Value compile: (o) -> @name.compile o, LEVEL_LIST asReference: (o) -> return @reference if @reference - node = if @attach then new Literal o.scope.freeVariable 'arg' else this.name + node = if @isComplex() then new Literal o.scope.freeVariable 'arg' else @name node = new Value node node = new Splat node if @splat @reference = node + isComplex: -> @name.isComplex() + #### Splat # A splat, either as a parameter to a function, an argument to a call, diff --git a/test/test_arguments.coffee b/test/test_arguments.coffee index 159ec74f..198332de 100644 --- a/test/test_arguments.coffee +++ b/test/test_arguments.coffee @@ -43,7 +43,14 @@ eq obj.one, 1 eq obj.two, 2 -# Default arguments. +# Destructuring. +(([{a: [b], c}]...) -> + eq b, 123 + eq c, 456 +) {a: [123], c: 456} + + +# Default values. obj = f: (q = 123, @p = 456) -> q eq obj.f(), 123 eq obj.p , 456