From 4ad9e82f5051d2010c705941fc7b594af5283399 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Mon, 28 Jun 2010 01:06:53 -0400 Subject: [PATCH 01/33] docs for the NPM install --- documentation/index.html.erb | 11 ++++++++++- index.html | 11 ++++++++++- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/documentation/index.html.erb b/documentation/index.html.erb index 1f369170ec..ac98b51a88 100644 --- a/documentation/index.html.erb +++ b/documentation/index.html.erb @@ -184,7 +184,16 @@ alert reverse '.eeffoC yrT' sudo bin/cake install

- This provides the coffee command, which will execute CoffeeScripts + Alternatively, if you already have the + Node Package Manager installed, + you can use that to grab the latest CoffeeScript: +

+ +
+sudo npm install coffee-script
+ +

+ Both of these provide the coffee command, which will execute CoffeeScripts under Node.js by default, but is also used to compile CoffeeScript .coffee files into JavaScript, or to run an an interactive REPL. When compiling to JavaScript, coffee writes the output diff --git a/index.html b/index.html index 38ba3b33b1..a99483dd0b 100644 --- a/index.html +++ b/index.html @@ -269,7 +269,16 @@

sudo bin/cake install

- This provides the coffee command, which will execute CoffeeScripts + Alternatively, if you already have the + Node Package Manager installed, + you can use that to grab the latest CoffeeScript: +

+ +
+sudo npm install coffee-script
+ +

+ Both of these provide the coffee command, which will execute CoffeeScripts under Node.js by default, but is also used to compile CoffeeScript .coffee files into JavaScript, or to run an an interactive REPL. When compiling to JavaScript, coffee writes the output From d83bbfb1d5ce9396282fba508bed661717aa7cd6 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Mon, 28 Jun 2010 01:19:04 -0400 Subject: [PATCH 02/33] updating readme with NPM install. --- README | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README b/README index 758d0bc06c..c35a01743b 100644 --- a/README +++ b/README @@ -25,6 +25,9 @@ Install Node.js, and then the CoffeeScript compiler: sudo bin/cake install + Or, if you have the Node Package Manager installed: + sudo npm install coffee-script + Compile a script: coffee /path/to/script.coffee From 9bc7cd790449eb27f8f6c60cdbbe20e1761f75bd Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Mon, 28 Jun 2010 08:50:44 -0400 Subject: [PATCH 03/33] adding a one-line exception test. --- test/test_exceptions.coffee | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/test_exceptions.coffee b/test/test_exceptions.coffee index 5759480412..ab9dd71008 100644 --- a/test/test_exceptions.coffee +++ b/test/test_exceptions.coffee @@ -16,4 +16,9 @@ result: try catch err err.length -ok result is 2 \ No newline at end of file +ok result is 2 + + +result: try throw 'longer' catch err then err.length + +ok result is 6 \ No newline at end of file From 744638ed08516da3fe0645dc0342d90a1dcee6b5 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Mon, 28 Jun 2010 08:52:13 -0400 Subject: [PATCH 04/33] adding a one-line exception test. --- test/test_exceptions.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_exceptions.coffee b/test/test_exceptions.coffee index ab9dd71008..99bb7afb58 100644 --- a/test/test_exceptions.coffee +++ b/test/test_exceptions.coffee @@ -19,6 +19,6 @@ catch err ok result is 2 -result: try throw 'longer' catch err then err.length +result: try throw 'error' catch err then err.length -ok result is 6 \ No newline at end of file +ok result is 5 \ No newline at end of file From 7c426db36a1e15d61b56a87739571909033c7d62 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Mon, 28 Jun 2010 20:26:31 -0400 Subject: [PATCH 05/33] fixing range literals (which had gone untested) oops. --- lib/nodes.js | 12 +++++++----- src/nodes.coffee | 10 ++++++---- test/test_ranges_slices_and_splices.coffee | 11 ++++++++++- 3 files changed, 23 insertions(+), 10 deletions(-) diff --git a/lib/nodes.js b/lib/nodes.js index 65cc16fd36..f339997414 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -597,7 +597,7 @@ return "" + vars + "; " + (idx) + " " + op + " " + (this.toVar.compile(o)) + "; " + idx + " += " + step; }; RangeNode.prototype.compileArray = function(o) { - var body, clause, equals, from, idt, post, pre, to, vars; + var body, clause, equals, from, i, idt, post, pre, result, to, vars; idt = this.idt(1); vars = this.compileVariables(merge(o, { indent: idt @@ -605,11 +605,13 @@ equals = this.exclusive ? '' : '='; from = this.fromVar.compile(o); to = this.toVar.compile(o); + result = o.scope.freeVariable(); + i = o.scope.freeVariable(); clause = ("" + from + " <= " + to + " ?"); - pre = ("\n" + (idt) + "a = [];" + (vars)); - body = ("var i = " + from + "; (" + clause + " i <" + equals + " " + to + " : i >" + equals + " " + to + "); (" + clause + " i += 1 : i -= 1)"); - post = ("a.push(i);\n" + (idt) + "return a;\n" + o.indent); - return "(function(){" + (pre) + "for (" + body + ") " + post + "}).call(this)"; + pre = ("\n" + (idt) + (result) + " = [];" + (vars)); + body = ("var " + i + " = " + from + "; " + clause + " " + i + " <" + equals + " " + to + " : " + i + " >" + equals + " " + to + "; " + clause + " " + i + " += 1 : " + i + " -= 1"); + post = ("{ " + (result) + ".push(" + i + ") };\n" + (idt) + "return " + result + ";\n" + o.indent); + return "(function(){" + (pre) + ";\n" + (idt) + "for (" + body + ")" + post + "}).call(this)"; }; return RangeNode; })(); diff --git a/src/nodes.coffee b/src/nodes.coffee index a6a8f1fff6..045a1daa9a 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -525,11 +525,13 @@ exports.RangeNode: class RangeNode extends BaseNode equals: if @exclusive then '' else '=' from: @fromVar.compile o to: @toVar.compile o + result: o.scope.freeVariable() + i: o.scope.freeVariable() clause: "$from <= $to ?" - pre: "\n${idt}a = [];${vars}" - body: "var i = $from; ($clause i <$equals $to : i >$equals $to); ($clause i += 1 : i -= 1)" - post: "a.push(i);\n${idt}return a;\n$o.indent" - "(function(){${pre}for ($body) $post}).call(this)" + pre: "\n${idt}${result} = [];${vars}" + body: "var $i = $from; $clause $i <$equals $to : $i >$equals $to; $clause $i += 1 : $i -= 1" + post: "{ ${result}.push($i) };\n${idt}return $result;\n$o.indent" + "(function(){${pre};\n${idt}for ($body)$post}).call(this)" #### SliceNode diff --git a/test/test_ranges_slices_and_splices.coffee b/test/test_ranges_slices_and_splices.coffee index 71d19cde8e..7b74c1c7d5 100644 --- a/test/test_ranges_slices_and_splices.coffee +++ b/test/test_ranges_slices_and_splices.coffee @@ -12,10 +12,19 @@ a: [0, 1, 2, 3, 4, 5, 6, 7] deepEqual a[2...6], [2, 3, 4, 5] -# Range. +# Ranges. countdown: [10..1].join(' ') ok countdown is "10 9 8 7 6 5 4 3 2 1" +a: 1 +b: 5 +nums: [a...b] +ok nums.join(' ') is '1 2 3 4' + +b: -5 +nums: [a..b] +ok nums.join(' ') is '1 0 -1 -2 -3 -4 -5' + # Expression-based range. array: [(1+5)..1+9] From 7d79d73b58576658c88ff59df8fc45cab5cff6dc Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Tue, 29 Jun 2010 21:03:50 -0400 Subject: [PATCH 06/33] allowing paren-less instance creation, a la 'new Class' --- examples/code.coffee | 2 +- examples/computer_science/linked_list.coffee | 4 +- examples/potion.coffee | 10 +- lib/grammar.js | 6 +- lib/parser.js | 230 ++++++++++--------- src/coffee-script.coffee | 2 +- src/grammar.coffee | 9 +- src/lexer.coffee | 4 +- src/nodes.coffee | 6 +- test/test_classes.coffee | 14 +- test/test_splats.coffee | 2 +- 11 files changed, 147 insertions(+), 142 deletions(-) diff --git a/examples/code.coffee b/examples/code.coffee index 7c0e845cba..e87fd267c4 100644 --- a/examples/code.coffee +++ b/examples/code.coffee @@ -19,7 +19,7 @@ spaced_out_multiline_object: { pi: 3.14159 list: [1, 2, 3, 4] regex: /match[ing](every|thing|\/)/gi - three: new Idea() + three: new Idea inner_obj: { freedom: -> _.freedom() diff --git a/examples/computer_science/linked_list.coffee b/examples/computer_science/linked_list.coffee index d5aea43fe2..c64bccb104 100644 --- a/examples/computer_science/linked_list.coffee +++ b/examples/computer_science/linked_list.coffee @@ -90,14 +90,14 @@ class LinkedList # Tests. -list: new LinkedList() +list: new LinkedList list.add("Hi") puts(list.size() is 1) puts(list.item(0) is "Hi") puts(list.item(1) is null) -list: new LinkedList() +list: new LinkedList list.add("zero").add("one").add("two") puts(list.size() is 3) puts(list.item(2) is "two") diff --git a/examples/potion.coffee b/examples/potion.coffee index c4f3e5d970..df8ae99041 100644 --- a/examples/potion.coffee +++ b/examples/potion.coffee @@ -60,7 +60,7 @@ class Person # p = Person () # p /name string print -p: new Person() +p: new Person print p.name @@ -188,9 +188,9 @@ HomePage::get: (url) -> # b /right = BTree () BTree: -> -b: new BTree() -b.left: new BTree() -b.right: new BTree() +b: new BTree +b.left: new BTree +b.right: new BTree # BTree = class: /left, /right. @@ -200,6 +200,6 @@ b.right: new BTree() # 'left path found!' print. BTree: -> -b: new BTree() +b: new BTree print('left path found!') if b.left? diff --git a/lib/grammar.js b/lib/grammar.js index 300a1dc2e9..0e5e2afcf4 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -232,9 +232,11 @@ }) ], Call: [ - o("Invocation"), o("NEW Invocation", function() { + o("Invocation"), o("Super"), o("NEW Invocation", function() { return $2.newInstance(); - }), o("Super") + }), o("NEW Value", function() { + return (new CallNode($2, [])).newInstance(); + }) ], Extends: [ o("SimpleAssignable EXTENDS Value", function() { diff --git a/lib/parser.js b/lib/parser.js index 655009aa25..9fcc5f21d4 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,"Value":14,"Call":15,"Code":16,"Operation":17,"Assign":18,"If":19,"Try":20,"While":21,"For":22,"Switch":23,"Extends":24,"Class":25,"Splat":26,"Existence":27,"INDENT":28,"OUTDENT":29,"Identifier":30,"IDENTIFIER":31,"AlphaNumeric":32,"NUMBER":33,"STRING":34,"Literal":35,"JS":36,"REGEX":37,"TRUE":38,"FALSE":39,"YES":40,"NO":41,"ON":42,"OFF":43,"Assignable":44,"ASSIGN":45,"AssignObj":46,"RETURN":47,"?":48,"PARAM_START":49,"ParamList":50,"PARAM_END":51,"FuncGlyph":52,"->":53,"=>":54,"OptComma":55,",":56,"Param":57,"PARAM":58,".":59,"SimpleAssignable":60,"Accessor":61,"Invocation":62,"ThisProperty":63,"Array":64,"Object":65,"Parenthetical":66,"Range":67,"This":68,"NULL":69,"PROPERTY_ACCESS":70,"PROTOTYPE_ACCESS":71,"::":72,"SOAK_ACCESS":73,"Index":74,"Slice":75,"INDEX_START":76,"INDEX_END":77,"INDEX_SOAK":78,"INDEX_PROTO":79,"{":80,"AssignList":81,"}":82,"CLASS":83,"EXTENDS":84,"ClassBody":85,"ClassAssign":86,"NEW":87,"Super":88,"Arguments":89,"CALL_START":90,"ArgList":91,"CALL_END":92,"SUPER":93,"THIS":94,"@":95,"[":96,"]":97,"SimpleArgs":98,"TRY":99,"Catch":100,"FINALLY":101,"CATCH":102,"THROW":103,"(":104,")":105,"WhileSource":106,"WHILE":107,"WHEN":108,"UNTIL":109,"Loop":110,"LOOP":111,"FOR":112,"ForVariables":113,"ForSource":114,"ForValue":115,"IN":116,"OF":117,"BY":118,"SWITCH":119,"Whens":120,"ELSE":121,"When":122,"LEADING_WHEN":123,"IfBlock":124,"IF":125,"UNLESS":126,"!":127,"!!":128,"-":129,"+":130,"~":131,"--":132,"++":133,"DELETE":134,"TYPEOF":135,"*":136,"/":137,"%":138,"<<":139,">>":140,">>>":141,"&":142,"|":143,"^":144,"<=":145,"<":146,">":147,">=":148,"==":149,"!=":150,"&&":151,"||":152,"-=":153,"+=":154,"/=":155,"*=":156,"%=":157,"||=":158,"&&=":159,"?=":160,"INSTANCEOF":161,"$accept":0,"$end":1}, -terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","28":"INDENT","29":"OUTDENT","31":"IDENTIFIER","33":"NUMBER","34":"STRING","36":"JS","37":"REGEX","38":"TRUE","39":"FALSE","40":"YES","41":"NO","42":"ON","43":"OFF","45":"ASSIGN","47":"RETURN","48":"?","49":"PARAM_START","51":"PARAM_END","53":"->","54":"=>","56":",","58":"PARAM","59":".","69":"NULL","70":"PROPERTY_ACCESS","71":"PROTOTYPE_ACCESS","72":"::","73":"SOAK_ACCESS","76":"INDEX_START","77":"INDEX_END","78":"INDEX_SOAK","79":"INDEX_PROTO","80":"{","82":"}","83":"CLASS","84":"EXTENDS","87":"NEW","90":"CALL_START","92":"CALL_END","93":"SUPER","94":"THIS","95":"@","96":"[","97":"]","99":"TRY","101":"FINALLY","102":"CATCH","103":"THROW","104":"(","105":")","107":"WHILE","108":"WHEN","109":"UNTIL","111":"LOOP","112":"FOR","116":"IN","117":"OF","118":"BY","119":"SWITCH","121":"ELSE","123":"LEADING_WHEN","125":"IF","126":"UNLESS","127":"!","128":"!!","129":"-","130":"+","131":"~","132":"--","133":"++","134":"DELETE","135":"TYPEOF","136":"*","137":"/","138":"%","139":"<<","140":">>","141":">>>","142":"&","143":"|","144":"^","145":"<=","146":"<","147":">","148":">=","149":"==","150":"!=","151":"&&","152":"||","153":"-=","154":"+=","155":"/=","156":"*=","157":"%=","158":"||=","159":"&&=","160":"?=","161":"INSTANCEOF"}, -productions_: [0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[30,1],[32,1],[32,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[18,3],[46,1],[46,1],[46,3],[46,3],[10,2],[10,1],[27,2],[16,5],[16,2],[52,1],[52,1],[55,0],[55,1],[50,0],[50,1],[50,3],[57,1],[57,4],[26,4],[60,1],[60,2],[60,2],[60,1],[44,1],[44,1],[44,1],[14,1],[14,1],[14,1],[14,1],[14,1],[14,1],[61,2],[61,2],[61,1],[61,2],[61,1],[61,1],[74,3],[74,2],[74,2],[65,4],[81,0],[81,1],[81,3],[81,4],[81,6],[25,2],[25,4],[25,5],[25,7],[86,1],[86,3],[85,0],[85,1],[85,3],[15,1],[15,2],[15,1],[24,3],[62,2],[62,2],[89,4],[88,2],[68,1],[68,1],[63,2],[67,6],[67,7],[75,6],[75,7],[64,4],[91,0],[91,1],[91,3],[91,4],[91,6],[98,1],[98,3],[20,3],[20,4],[20,5],[100,3],[11,2],[66,3],[106,2],[106,4],[106,2],[106,4],[21,2],[21,2],[21,2],[21,1],[110,2],[110,2],[22,4],[22,4],[22,4],[115,1],[115,1],[115,1],[113,1],[113,3],[114,2],[114,2],[114,4],[114,4],[114,4],[114,6],[114,6],[23,5],[23,7],[23,4],[23,6],[120,1],[120,2],[122,3],[122,4],[124,3],[124,3],[124,5],[124,3],[19,1],[19,3],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,4],[17,4]], +symbols_: {"error":2,"Root":3,"TERMINATOR":4,"Body":5,"Block":6,"Line":7,"Expression":8,"Statement":9,"Return":10,"Throw":11,"BREAK":12,"CONTINUE":13,"Value":14,"Call":15,"Code":16,"Operation":17,"Assign":18,"If":19,"Try":20,"While":21,"For":22,"Switch":23,"Extends":24,"Class":25,"Splat":26,"Existence":27,"INDENT":28,"OUTDENT":29,"Identifier":30,"IDENTIFIER":31,"AlphaNumeric":32,"NUMBER":33,"STRING":34,"Literal":35,"JS":36,"REGEX":37,"TRUE":38,"FALSE":39,"YES":40,"NO":41,"ON":42,"OFF":43,"Assignable":44,"ASSIGN":45,"AssignObj":46,"RETURN":47,"?":48,"PARAM_START":49,"ParamList":50,"PARAM_END":51,"FuncGlyph":52,"->":53,"=>":54,"OptComma":55,",":56,"Param":57,"PARAM":58,".":59,"SimpleAssignable":60,"Accessor":61,"Invocation":62,"ThisProperty":63,"Array":64,"Object":65,"Parenthetical":66,"Range":67,"This":68,"NULL":69,"PROPERTY_ACCESS":70,"PROTOTYPE_ACCESS":71,"::":72,"SOAK_ACCESS":73,"Index":74,"Slice":75,"INDEX_START":76,"INDEX_END":77,"INDEX_SOAK":78,"INDEX_PROTO":79,"{":80,"AssignList":81,"}":82,"CLASS":83,"EXTENDS":84,"ClassBody":85,"ClassAssign":86,"Super":87,"NEW":88,"Arguments":89,"CALL_START":90,"ArgList":91,"CALL_END":92,"SUPER":93,"THIS":94,"@":95,"[":96,"]":97,"SimpleArgs":98,"TRY":99,"Catch":100,"FINALLY":101,"CATCH":102,"THROW":103,"(":104,")":105,"WhileSource":106,"WHILE":107,"WHEN":108,"UNTIL":109,"Loop":110,"LOOP":111,"FOR":112,"ForVariables":113,"ForSource":114,"ForValue":115,"IN":116,"OF":117,"BY":118,"SWITCH":119,"Whens":120,"ELSE":121,"When":122,"LEADING_WHEN":123,"IfBlock":124,"IF":125,"UNLESS":126,"!":127,"!!":128,"-":129,"+":130,"~":131,"--":132,"++":133,"DELETE":134,"TYPEOF":135,"*":136,"/":137,"%":138,"<<":139,">>":140,">>>":141,"&":142,"|":143,"^":144,"<=":145,"<":146,">":147,">=":148,"==":149,"!=":150,"&&":151,"||":152,"-=":153,"+=":154,"/=":155,"*=":156,"%=":157,"||=":158,"&&=":159,"?=":160,"INSTANCEOF":161,"$accept":0,"$end":1}, +terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","28":"INDENT","29":"OUTDENT","31":"IDENTIFIER","33":"NUMBER","34":"STRING","36":"JS","37":"REGEX","38":"TRUE","39":"FALSE","40":"YES","41":"NO","42":"ON","43":"OFF","45":"ASSIGN","47":"RETURN","48":"?","49":"PARAM_START","51":"PARAM_END","53":"->","54":"=>","56":",","58":"PARAM","59":".","69":"NULL","70":"PROPERTY_ACCESS","71":"PROTOTYPE_ACCESS","72":"::","73":"SOAK_ACCESS","76":"INDEX_START","77":"INDEX_END","78":"INDEX_SOAK","79":"INDEX_PROTO","80":"{","82":"}","83":"CLASS","84":"EXTENDS","88":"NEW","90":"CALL_START","92":"CALL_END","93":"SUPER","94":"THIS","95":"@","96":"[","97":"]","99":"TRY","101":"FINALLY","102":"CATCH","103":"THROW","104":"(","105":")","107":"WHILE","108":"WHEN","109":"UNTIL","111":"LOOP","112":"FOR","116":"IN","117":"OF","118":"BY","119":"SWITCH","121":"ELSE","123":"LEADING_WHEN","125":"IF","126":"UNLESS","127":"!","128":"!!","129":"-","130":"+","131":"~","132":"--","133":"++","134":"DELETE","135":"TYPEOF","136":"*","137":"/","138":"%","139":"<<","140":">>","141":">>>","142":"&","143":"|","144":"^","145":"<=","146":"<","147":">","148":">=","149":"==","150":"!=","151":"&&","152":"||","153":"-=","154":"+=","155":"/=","156":"*=","157":"%=","158":"||=","159":"&&=","160":"?=","161":"INSTANCEOF"}, +productions_: [0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[30,1],[32,1],[32,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[18,3],[46,1],[46,1],[46,3],[46,3],[10,2],[10,1],[27,2],[16,5],[16,2],[52,1],[52,1],[55,0],[55,1],[50,0],[50,1],[50,3],[57,1],[57,4],[26,4],[60,1],[60,2],[60,2],[60,1],[44,1],[44,1],[44,1],[14,1],[14,1],[14,1],[14,1],[14,1],[14,1],[61,2],[61,2],[61,1],[61,2],[61,1],[61,1],[74,3],[74,2],[74,2],[65,4],[81,0],[81,1],[81,3],[81,4],[81,6],[25,2],[25,4],[25,5],[25,7],[86,1],[86,3],[85,0],[85,1],[85,3],[15,1],[15,1],[15,2],[15,2],[24,3],[62,2],[62,2],[89,4],[87,2],[68,1],[68,1],[63,2],[67,6],[67,7],[75,6],[75,7],[64,4],[91,0],[91,1],[91,3],[91,4],[91,6],[98,1],[98,3],[20,3],[20,4],[20,5],[100,3],[11,2],[66,3],[106,2],[106,4],[106,2],[106,4],[21,2],[21,2],[21,2],[21,1],[110,2],[110,2],[22,4],[22,4],[22,4],[115,1],[115,1],[115,1],[113,1],[113,3],[114,2],[114,2],[114,4],[114,4],[114,4],[114,6],[114,6],[23,5],[23,7],[23,4],[23,6],[120,1],[120,2],[122,3],[122,4],[124,3],[124,3],[124,5],[124,3],[19,1],[19,3],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,4],[17,4]], performAction: function anonymous(yytext,yyleng,yylineno,yy) { var $$ = arguments[5],$0=arguments[5].length; @@ -213,49 +213,51 @@ case 98:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; case 99:this.$ = $$[$0-1+1-1]; break; -case 100:this.$ = $$[$0-2+2-1].newInstance(); +case 100:this.$ = $$[$0-1+1-1]; break; -case 101:this.$ = $$[$0-1+1-1]; +case 101:this.$ = $$[$0-2+2-1].newInstance(); break; -case 102:this.$ = new ExtendsNode($$[$0-3+1-1], $$[$0-3+3-1]); +case 102:this.$ = (new CallNode($$[$0-2+2-1], [])).newInstance(); break; -case 103:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); +case 103:this.$ = new ExtendsNode($$[$0-3+1-1], $$[$0-3+3-1]); break; case 104:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 105:this.$ = $$[$0-4+2-1]; +case 105:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 106:this.$ = new CallNode('super', $$[$0-2+2-1]); +case 106:this.$ = $$[$0-4+2-1]; break; -case 107:this.$ = new ValueNode(new LiteralNode('this')); +case 107:this.$ = new CallNode('super', $$[$0-2+2-1]); break; case 108:this.$ = new ValueNode(new LiteralNode('this')); break; -case 109:this.$ = new ValueNode(new LiteralNode('this'), [new AccessorNode($$[$0-2+2-1])]); +case 109:this.$ = new ValueNode(new LiteralNode('this')); break; -case 110:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); +case 110:this.$ = new ValueNode(new LiteralNode('this'), [new AccessorNode($$[$0-2+2-1])]); break; -case 111:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); +case 111:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); break; -case 112:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); +case 112:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); break; -case 113:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); +case 113:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); break; -case 114:this.$ = new ArrayNode($$[$0-4+2-1]); +case 114:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); break; -case 115:this.$ = []; +case 115:this.$ = new ArrayNode($$[$0-4+2-1]); break; -case 116:this.$ = [$$[$0-1+1-1]]; +case 116:this.$ = []; break; -case 117:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); +case 117:this.$ = [$$[$0-1+1-1]]; break; -case 118:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); +case 118:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); break; -case 119:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); +case 119:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); break; -case 120:this.$ = $$[$0-1+1-1]; +case 120:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); break; -case 121:this.$ = (function () { +case 121:this.$ = $$[$0-1+1-1]; +break; +case 122:this.$ = (function () { if ($$[$0-3+1-1] instanceof Array) { return $$[$0-3+1-1].concat([$$[$0-3+3-1]]); } else { @@ -263,239 +265,239 @@ case 121:this.$ = (function () { } }()); break; -case 122:this.$ = new TryNode($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); +case 123:this.$ = new TryNode($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); break; -case 123:this.$ = new TryNode($$[$0-4+2-1], null, null, $$[$0-4+4-1]); +case 124:this.$ = new TryNode($$[$0-4+2-1], null, null, $$[$0-4+4-1]); break; -case 124:this.$ = new TryNode($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); +case 125:this.$ = new TryNode($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); break; -case 125:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; +case 126:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; break; -case 126:this.$ = new ThrowNode($$[$0-2+2-1]); +case 127:this.$ = new ThrowNode($$[$0-2+2-1]); break; -case 127:this.$ = new ParentheticalNode($$[$0-3+2-1]); +case 128:this.$ = new ParentheticalNode($$[$0-3+2-1]); break; -case 128:this.$ = new WhileNode($$[$0-2+2-1]); +case 129:this.$ = new WhileNode($$[$0-2+2-1]); break; -case 129:this.$ = new WhileNode($$[$0-4+2-1], { +case 130:this.$ = new WhileNode($$[$0-4+2-1], { guard: $$[$0-4+4-1] }); break; -case 130:this.$ = new WhileNode($$[$0-2+2-1], { +case 131:this.$ = new WhileNode($$[$0-2+2-1], { invert: true }); break; -case 131:this.$ = new WhileNode($$[$0-4+2-1], { +case 132:this.$ = new WhileNode($$[$0-4+2-1], { invert: true, guard: $$[$0-4+4-1] }); break; -case 132:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); -break; -case 133:this.$ = $$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]])); +case 133:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); break; case 134:this.$ = $$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]])); break; -case 135:this.$ = $$[$0-1+1-1]; +case 135:this.$ = $$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]])); break; -case 136:this.$ = new WhileNode(new LiteralNode('true')).addBody($$[$0-2+2-1]); +case 136:this.$ = $$[$0-1+1-1]; break; -case 137:this.$ = new WhileNode(new LiteralNode('true')).addBody(Expressions.wrap([$$[$0-2+2-1]])); +case 137:this.$ = new WhileNode(new LiteralNode('true')).addBody($$[$0-2+2-1]); break; -case 138:this.$ = new ForNode($$[$0-4+1-1], $$[$0-4+4-1], $$[$0-4+3-1][0], $$[$0-4+3-1][1]); +case 138:this.$ = new WhileNode(new LiteralNode('true')).addBody(Expressions.wrap([$$[$0-2+2-1]])); break; case 139:this.$ = new ForNode($$[$0-4+1-1], $$[$0-4+4-1], $$[$0-4+3-1][0], $$[$0-4+3-1][1]); break; -case 140:this.$ = new ForNode($$[$0-4+4-1], $$[$0-4+3-1], $$[$0-4+2-1][0], $$[$0-4+2-1][1]); +case 140:this.$ = new ForNode($$[$0-4+1-1], $$[$0-4+4-1], $$[$0-4+3-1][0], $$[$0-4+3-1][1]); break; -case 141:this.$ = $$[$0-1+1-1]; +case 141:this.$ = new ForNode($$[$0-4+4-1], $$[$0-4+3-1], $$[$0-4+2-1][0], $$[$0-4+2-1][1]); break; -case 142:this.$ = new ValueNode($$[$0-1+1-1]); +case 142:this.$ = $$[$0-1+1-1]; break; case 143:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 144:this.$ = [$$[$0-1+1-1]]; +case 144:this.$ = new ValueNode($$[$0-1+1-1]); +break; +case 145:this.$ = [$$[$0-1+1-1]]; break; -case 145:this.$ = [$$[$0-3+1-1], $$[$0-3+3-1]]; +case 146:this.$ = [$$[$0-3+1-1], $$[$0-3+3-1]]; break; -case 146:this.$ = { +case 147:this.$ = { source: $$[$0-2+2-1] }; break; -case 147:this.$ = { +case 148:this.$ = { source: $$[$0-2+2-1], object: true }; break; -case 148:this.$ = { +case 149:this.$ = { source: $$[$0-4+2-1], guard: $$[$0-4+4-1] }; break; -case 149:this.$ = { +case 150:this.$ = { source: $$[$0-4+2-1], guard: $$[$0-4+4-1], object: true }; break; -case 150:this.$ = { +case 151:this.$ = { source: $$[$0-4+2-1], step: $$[$0-4+4-1] }; break; -case 151:this.$ = { +case 152:this.$ = { source: $$[$0-6+2-1], guard: $$[$0-6+4-1], step: $$[$0-6+6-1] }; break; -case 152:this.$ = { +case 153:this.$ = { source: $$[$0-6+2-1], step: $$[$0-6+4-1], guard: $$[$0-6+6-1] }; break; -case 153:this.$ = $$[$0-5+4-1].switchesOver($$[$0-5+2-1]); +case 154:this.$ = $$[$0-5+4-1].switchesOver($$[$0-5+2-1]); break; -case 154:this.$ = $$[$0-7+4-1].switchesOver($$[$0-7+2-1]).addElse($$[$0-7+6-1], true); +case 155:this.$ = $$[$0-7+4-1].switchesOver($$[$0-7+2-1]).addElse($$[$0-7+6-1], true); break; -case 155:this.$ = $$[$0-4+3-1]; +case 156:this.$ = $$[$0-4+3-1]; break; -case 156:this.$ = $$[$0-6+3-1].addElse($$[$0-6+5-1], true); +case 157:this.$ = $$[$0-6+3-1].addElse($$[$0-6+5-1], true); break; -case 157:this.$ = $$[$0-1+1-1]; +case 158:this.$ = $$[$0-1+1-1]; break; -case 158:this.$ = $$[$0-2+1-1].addElse($$[$0-2+2-1]); +case 159:this.$ = $$[$0-2+1-1].addElse($$[$0-2+2-1]); break; -case 159:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { +case 160:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { statement: true }); break; -case 160:this.$ = new IfNode($$[$0-4+2-1], $$[$0-4+3-1], { +case 161:this.$ = new IfNode($$[$0-4+2-1], $$[$0-4+3-1], { statement: true }); break; -case 161:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1]); +case 162:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1]); break; -case 162:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { +case 163:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { invert: true }); break; -case 163:this.$ = $$[$0-5+1-1].addElse((new IfNode($$[$0-5+4-1], $$[$0-5+5-1])).forceStatement()); +case 164:this.$ = $$[$0-5+1-1].addElse((new IfNode($$[$0-5+4-1], $$[$0-5+5-1])).forceStatement()); break; -case 164:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); +case 165:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); break; -case 165:this.$ = $$[$0-1+1-1]; +case 166:this.$ = $$[$0-1+1-1]; break; -case 166:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { +case 167:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { statement: true }); break; -case 167:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { +case 168:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { statement: true }); break; -case 168:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { +case 169:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { statement: true, invert: true }); break; -case 169:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { +case 170:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { statement: true, invert: true }); break; -case 170:this.$ = new OpNode('!', $$[$0-2+2-1]); +case 171:this.$ = new OpNode('!', $$[$0-2+2-1]); break; -case 171:this.$ = new OpNode('!!', $$[$0-2+2-1]); +case 172:this.$ = new OpNode('!!', $$[$0-2+2-1]); break; -case 172:this.$ = new OpNode('-', $$[$0-2+2-1]); +case 173:this.$ = new OpNode('-', $$[$0-2+2-1]); break; -case 173:this.$ = new OpNode('+', $$[$0-2+2-1]); +case 174:this.$ = new OpNode('+', $$[$0-2+2-1]); break; -case 174:this.$ = new OpNode('~', $$[$0-2+2-1]); +case 175:this.$ = new OpNode('~', $$[$0-2+2-1]); break; -case 175:this.$ = new OpNode('--', $$[$0-2+2-1]); +case 176:this.$ = new OpNode('--', $$[$0-2+2-1]); break; -case 176:this.$ = new OpNode('++', $$[$0-2+2-1]); +case 177:this.$ = new OpNode('++', $$[$0-2+2-1]); break; -case 177:this.$ = new OpNode('delete', $$[$0-2+2-1]); +case 178:this.$ = new OpNode('delete', $$[$0-2+2-1]); break; -case 178:this.$ = new OpNode('typeof', $$[$0-2+2-1]); +case 179:this.$ = new OpNode('typeof', $$[$0-2+2-1]); break; -case 179:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); +case 180:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); break; -case 180:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); +case 181:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); break; -case 181:this.$ = new OpNode('*', $$[$0-3+1-1], $$[$0-3+3-1]); +case 182:this.$ = new OpNode('*', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 182:this.$ = new OpNode('/', $$[$0-3+1-1], $$[$0-3+3-1]); +case 183:this.$ = new OpNode('/', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 183:this.$ = new OpNode('%', $$[$0-3+1-1], $$[$0-3+3-1]); +case 184:this.$ = new OpNode('%', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 184:this.$ = new OpNode('+', $$[$0-3+1-1], $$[$0-3+3-1]); +case 185:this.$ = new OpNode('+', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 185:this.$ = new OpNode('-', $$[$0-3+1-1], $$[$0-3+3-1]); +case 186:this.$ = new OpNode('-', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 186:this.$ = new OpNode('<<', $$[$0-3+1-1], $$[$0-3+3-1]); +case 187:this.$ = new OpNode('<<', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 187:this.$ = new OpNode('>>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 188:this.$ = new OpNode('>>', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 188:this.$ = new OpNode('>>>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 189:this.$ = new OpNode('>>>', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 189:this.$ = new OpNode('&', $$[$0-3+1-1], $$[$0-3+3-1]); +case 190:this.$ = new OpNode('&', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 190:this.$ = new OpNode('|', $$[$0-3+1-1], $$[$0-3+3-1]); +case 191:this.$ = new OpNode('|', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 191:this.$ = new OpNode('^', $$[$0-3+1-1], $$[$0-3+3-1]); +case 192:this.$ = new OpNode('^', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 192:this.$ = new OpNode('<=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 193:this.$ = new OpNode('<=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 193:this.$ = new OpNode('<', $$[$0-3+1-1], $$[$0-3+3-1]); +case 194:this.$ = new OpNode('<', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 194:this.$ = new OpNode('>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 195:this.$ = new OpNode('>', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 195:this.$ = new OpNode('>=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 196:this.$ = new OpNode('>=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 196:this.$ = new OpNode('==', $$[$0-3+1-1], $$[$0-3+3-1]); +case 197:this.$ = new OpNode('==', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 197:this.$ = new OpNode('!=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 198:this.$ = new OpNode('!=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 198:this.$ = new OpNode('&&', $$[$0-3+1-1], $$[$0-3+3-1]); +case 199:this.$ = new OpNode('&&', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 199:this.$ = new OpNode('||', $$[$0-3+1-1], $$[$0-3+3-1]); +case 200:this.$ = new OpNode('||', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 200:this.$ = new OpNode('?', $$[$0-3+1-1], $$[$0-3+3-1]); +case 201:this.$ = new OpNode('?', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 201:this.$ = new OpNode('-=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 202:this.$ = new OpNode('-=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 202:this.$ = new OpNode('+=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 203:this.$ = new OpNode('+=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 203:this.$ = new OpNode('/=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 204:this.$ = new OpNode('/=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 204:this.$ = new OpNode('*=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 205:this.$ = new OpNode('*=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 205:this.$ = new OpNode('%=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 206:this.$ = new OpNode('%=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 206:this.$ = new OpNode('||=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 207:this.$ = new OpNode('||=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 207:this.$ = new OpNode('&&=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 208:this.$ = new OpNode('&&=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 208:this.$ = new OpNode('?=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 209:this.$ = new OpNode('?=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 209:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); +case 210:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 210:this.$ = new InNode($$[$0-3+1-1], $$[$0-3+3-1]); +case 211:this.$ = new InNode($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 211:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); +case 212:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 212:this.$ = new OpNode('!', new InNode($$[$0-4+1-1], $$[$0-4+4-1])); +case 213:this.$ = new OpNode('!', new InNode($$[$0-4+1-1], $$[$0-4+4-1])); break; -case 213:this.$ = new OpNode('!', new ParentheticalNode(new OpNode('in', $$[$0-4+1-1], $$[$0-4+4-1]))); +case 214:this.$ = new OpNode('!', new ParentheticalNode(new OpNode('in', $$[$0-4+1-1], $$[$0-4+4-1]))); break; } }, -table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,6],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[3]},{"1":[2,2]},{"1":[2,3],"4":[1,86]},{"4":[1,87]},{"1":[2,5],"4":[2,5],"29":[2,5]},{"5":88,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[1,89],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,8],"4":[2,8],"29":[2,8],"48":[1,111],"59":[1,128],"105":[2,8],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,9],"4":[2,9],"29":[2,9],"105":[2,9],"106":131,"107":[1,77],"109":[1,78],"112":[1,132],"125":[1,129],"126":[1,130]},{"1":[2,14],"4":[2,14],"28":[2,14],"29":[2,14],"48":[2,14],"56":[2,14],"59":[2,14],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,14],"78":[1,143],"79":[1,144],"82":[2,14],"89":133,"90":[1,135],"92":[2,14],"97":[2,14],"105":[2,14],"107":[2,14],"108":[2,14],"109":[2,14],"112":[2,14],"116":[2,14],"117":[2,14],"118":[2,14],"125":[2,14],"126":[2,14],"127":[2,14],"129":[2,14],"130":[2,14],"132":[2,14],"133":[2,14],"136":[2,14],"137":[2,14],"138":[2,14],"139":[2,14],"140":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[2,14],"148":[2,14],"149":[2,14],"150":[2,14],"151":[2,14],"152":[2,14],"153":[2,14],"154":[2,14],"155":[2,14],"156":[2,14],"157":[2,14],"158":[2,14],"159":[2,14],"160":[2,14],"161":[2,14]},{"1":[2,15],"4":[2,15],"28":[2,15],"29":[2,15],"48":[2,15],"56":[2,15],"59":[2,15],"77":[2,15],"82":[2,15],"92":[2,15],"97":[2,15],"105":[2,15],"107":[2,15],"108":[2,15],"109":[2,15],"112":[2,15],"116":[2,15],"117":[2,15],"118":[2,15],"125":[2,15],"126":[2,15],"127":[2,15],"129":[2,15],"130":[2,15],"132":[2,15],"133":[2,15],"136":[2,15],"137":[2,15],"138":[2,15],"139":[2,15],"140":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[2,15],"149":[2,15],"150":[2,15],"151":[2,15],"152":[2,15],"153":[2,15],"154":[2,15],"155":[2,15],"156":[2,15],"157":[2,15],"158":[2,15],"159":[2,15],"160":[2,15],"161":[2,15]},{"1":[2,16],"4":[2,16],"28":[2,16],"29":[2,16],"48":[2,16],"56":[2,16],"59":[2,16],"77":[2,16],"82":[2,16],"92":[2,16],"97":[2,16],"105":[2,16],"107":[2,16],"108":[2,16],"109":[2,16],"112":[2,16],"116":[2,16],"117":[2,16],"118":[2,16],"125":[2,16],"126":[2,16],"127":[2,16],"129":[2,16],"130":[2,16],"132":[2,16],"133":[2,16],"136":[2,16],"137":[2,16],"138":[2,16],"139":[2,16],"140":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"148":[2,16],"149":[2,16],"150":[2,16],"151":[2,16],"152":[2,16],"153":[2,16],"154":[2,16],"155":[2,16],"156":[2,16],"157":[2,16],"158":[2,16],"159":[2,16],"160":[2,16],"161":[2,16]},{"1":[2,17],"4":[2,17],"28":[2,17],"29":[2,17],"48":[2,17],"56":[2,17],"59":[2,17],"77":[2,17],"82":[2,17],"92":[2,17],"97":[2,17],"105":[2,17],"107":[2,17],"108":[2,17],"109":[2,17],"112":[2,17],"116":[2,17],"117":[2,17],"118":[2,17],"125":[2,17],"126":[2,17],"127":[2,17],"129":[2,17],"130":[2,17],"132":[2,17],"133":[2,17],"136":[2,17],"137":[2,17],"138":[2,17],"139":[2,17],"140":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"148":[2,17],"149":[2,17],"150":[2,17],"151":[2,17],"152":[2,17],"153":[2,17],"154":[2,17],"155":[2,17],"156":[2,17],"157":[2,17],"158":[2,17],"159":[2,17],"160":[2,17],"161":[2,17]},{"1":[2,18],"4":[2,18],"28":[2,18],"29":[2,18],"48":[2,18],"56":[2,18],"59":[2,18],"77":[2,18],"82":[2,18],"92":[2,18],"97":[2,18],"105":[2,18],"107":[2,18],"108":[2,18],"109":[2,18],"112":[2,18],"116":[2,18],"117":[2,18],"118":[2,18],"125":[2,18],"126":[2,18],"127":[2,18],"129":[2,18],"130":[2,18],"132":[2,18],"133":[2,18],"136":[2,18],"137":[2,18],"138":[2,18],"139":[2,18],"140":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"148":[2,18],"149":[2,18],"150":[2,18],"151":[2,18],"152":[2,18],"153":[2,18],"154":[2,18],"155":[2,18],"156":[2,18],"157":[2,18],"158":[2,18],"159":[2,18],"160":[2,18],"161":[2,18]},{"1":[2,19],"4":[2,19],"28":[2,19],"29":[2,19],"48":[2,19],"56":[2,19],"59":[2,19],"77":[2,19],"82":[2,19],"92":[2,19],"97":[2,19],"105":[2,19],"107":[2,19],"108":[2,19],"109":[2,19],"112":[2,19],"116":[2,19],"117":[2,19],"118":[2,19],"125":[2,19],"126":[2,19],"127":[2,19],"129":[2,19],"130":[2,19],"132":[2,19],"133":[2,19],"136":[2,19],"137":[2,19],"138":[2,19],"139":[2,19],"140":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"148":[2,19],"149":[2,19],"150":[2,19],"151":[2,19],"152":[2,19],"153":[2,19],"154":[2,19],"155":[2,19],"156":[2,19],"157":[2,19],"158":[2,19],"159":[2,19],"160":[2,19],"161":[2,19]},{"1":[2,20],"4":[2,20],"28":[2,20],"29":[2,20],"48":[2,20],"56":[2,20],"59":[2,20],"77":[2,20],"82":[2,20],"92":[2,20],"97":[2,20],"105":[2,20],"107":[2,20],"108":[2,20],"109":[2,20],"112":[2,20],"116":[2,20],"117":[2,20],"118":[2,20],"125":[2,20],"126":[2,20],"127":[2,20],"129":[2,20],"130":[2,20],"132":[2,20],"133":[2,20],"136":[2,20],"137":[2,20],"138":[2,20],"139":[2,20],"140":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"148":[2,20],"149":[2,20],"150":[2,20],"151":[2,20],"152":[2,20],"153":[2,20],"154":[2,20],"155":[2,20],"156":[2,20],"157":[2,20],"158":[2,20],"159":[2,20],"160":[2,20],"161":[2,20]},{"1":[2,21],"4":[2,21],"28":[2,21],"29":[2,21],"48":[2,21],"56":[2,21],"59":[2,21],"77":[2,21],"82":[2,21],"92":[2,21],"97":[2,21],"105":[2,21],"107":[2,21],"108":[2,21],"109":[2,21],"112":[2,21],"116":[2,21],"117":[2,21],"118":[2,21],"125":[2,21],"126":[2,21],"127":[2,21],"129":[2,21],"130":[2,21],"132":[2,21],"133":[2,21],"136":[2,21],"137":[2,21],"138":[2,21],"139":[2,21],"140":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"148":[2,21],"149":[2,21],"150":[2,21],"151":[2,21],"152":[2,21],"153":[2,21],"154":[2,21],"155":[2,21],"156":[2,21],"157":[2,21],"158":[2,21],"159":[2,21],"160":[2,21],"161":[2,21]},{"1":[2,22],"4":[2,22],"28":[2,22],"29":[2,22],"48":[2,22],"56":[2,22],"59":[2,22],"77":[2,22],"82":[2,22],"92":[2,22],"97":[2,22],"105":[2,22],"107":[2,22],"108":[2,22],"109":[2,22],"112":[2,22],"116":[2,22],"117":[2,22],"118":[2,22],"125":[2,22],"126":[2,22],"127":[2,22],"129":[2,22],"130":[2,22],"132":[2,22],"133":[2,22],"136":[2,22],"137":[2,22],"138":[2,22],"139":[2,22],"140":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"148":[2,22],"149":[2,22],"150":[2,22],"151":[2,22],"152":[2,22],"153":[2,22],"154":[2,22],"155":[2,22],"156":[2,22],"157":[2,22],"158":[2,22],"159":[2,22],"160":[2,22],"161":[2,22]},{"1":[2,23],"4":[2,23],"28":[2,23],"29":[2,23],"48":[2,23],"56":[2,23],"59":[2,23],"77":[2,23],"82":[2,23],"92":[2,23],"97":[2,23],"105":[2,23],"107":[2,23],"108":[2,23],"109":[2,23],"112":[2,23],"116":[2,23],"117":[2,23],"118":[2,23],"125":[2,23],"126":[2,23],"127":[2,23],"129":[2,23],"130":[2,23],"132":[2,23],"133":[2,23],"136":[2,23],"137":[2,23],"138":[2,23],"139":[2,23],"140":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"148":[2,23],"149":[2,23],"150":[2,23],"151":[2,23],"152":[2,23],"153":[2,23],"154":[2,23],"155":[2,23],"156":[2,23],"157":[2,23],"158":[2,23],"159":[2,23],"160":[2,23],"161":[2,23]},{"1":[2,24],"4":[2,24],"28":[2,24],"29":[2,24],"48":[2,24],"56":[2,24],"59":[2,24],"77":[2,24],"82":[2,24],"92":[2,24],"97":[2,24],"105":[2,24],"107":[2,24],"108":[2,24],"109":[2,24],"112":[2,24],"116":[2,24],"117":[2,24],"118":[2,24],"125":[2,24],"126":[2,24],"127":[2,24],"129":[2,24],"130":[2,24],"132":[2,24],"133":[2,24],"136":[2,24],"137":[2,24],"138":[2,24],"139":[2,24],"140":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"148":[2,24],"149":[2,24],"150":[2,24],"151":[2,24],"152":[2,24],"153":[2,24],"154":[2,24],"155":[2,24],"156":[2,24],"157":[2,24],"158":[2,24],"159":[2,24],"160":[2,24],"161":[2,24]},{"1":[2,25],"4":[2,25],"28":[2,25],"29":[2,25],"48":[2,25],"56":[2,25],"59":[2,25],"77":[2,25],"82":[2,25],"92":[2,25],"97":[2,25],"105":[2,25],"107":[2,25],"108":[2,25],"109":[2,25],"112":[2,25],"116":[2,25],"117":[2,25],"118":[2,25],"125":[2,25],"126":[2,25],"127":[2,25],"129":[2,25],"130":[2,25],"132":[2,25],"133":[2,25],"136":[2,25],"137":[2,25],"138":[2,25],"139":[2,25],"140":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"148":[2,25],"149":[2,25],"150":[2,25],"151":[2,25],"152":[2,25],"153":[2,25],"154":[2,25],"155":[2,25],"156":[2,25],"157":[2,25],"158":[2,25],"159":[2,25],"160":[2,25],"161":[2,25]},{"1":[2,26],"4":[2,26],"28":[2,26],"29":[2,26],"48":[2,26],"56":[2,26],"59":[2,26],"77":[2,26],"82":[2,26],"92":[2,26],"97":[2,26],"105":[2,26],"107":[2,26],"108":[2,26],"109":[2,26],"112":[2,26],"116":[2,26],"117":[2,26],"118":[2,26],"125":[2,26],"126":[2,26],"127":[2,26],"129":[2,26],"130":[2,26],"132":[2,26],"133":[2,26],"136":[2,26],"137":[2,26],"138":[2,26],"139":[2,26],"140":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"148":[2,26],"149":[2,26],"150":[2,26],"151":[2,26],"152":[2,26],"153":[2,26],"154":[2,26],"155":[2,26],"156":[2,26],"157":[2,26],"158":[2,26],"159":[2,26],"160":[2,26],"161":[2,26]},{"1":[2,27],"4":[2,27],"28":[2,27],"29":[2,27],"48":[2,27],"56":[2,27],"59":[2,27],"77":[2,27],"82":[2,27],"92":[2,27],"97":[2,27],"105":[2,27],"107":[2,27],"108":[2,27],"109":[2,27],"112":[2,27],"116":[2,27],"117":[2,27],"118":[2,27],"125":[2,27],"126":[2,27],"127":[2,27],"129":[2,27],"130":[2,27],"132":[2,27],"133":[2,27],"136":[2,27],"137":[2,27],"138":[2,27],"139":[2,27],"140":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"148":[2,27],"149":[2,27],"150":[2,27],"151":[2,27],"152":[2,27],"153":[2,27],"154":[2,27],"155":[2,27],"156":[2,27],"157":[2,27],"158":[2,27],"159":[2,27],"160":[2,27],"161":[2,27]},{"1":[2,10],"4":[2,10],"29":[2,10],"105":[2,10],"107":[2,10],"109":[2,10],"112":[2,10],"125":[2,10],"126":[2,10]},{"1":[2,11],"4":[2,11],"29":[2,11],"105":[2,11],"107":[2,11],"109":[2,11],"112":[2,11],"125":[2,11],"126":[2,11]},{"1":[2,12],"4":[2,12],"29":[2,12],"105":[2,12],"107":[2,12],"109":[2,12],"112":[2,12],"125":[2,12],"126":[2,12]},{"1":[2,13],"4":[2,13],"29":[2,13],"105":[2,13],"107":[2,13],"109":[2,13],"112":[2,13],"125":[2,13],"126":[2,13]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"45":[1,145],"48":[2,69],"56":[2,69],"59":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"77":[2,69],"78":[2,69],"79":[2,69],"82":[2,69],"90":[2,69],"92":[2,69],"97":[2,69],"105":[2,69],"107":[2,69],"108":[2,69],"109":[2,69],"112":[2,69],"116":[2,69],"117":[2,69],"118":[2,69],"125":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"132":[2,69],"133":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69],"140":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69]},{"1":[2,70],"4":[2,70],"28":[2,70],"29":[2,70],"48":[2,70],"56":[2,70],"59":[2,70],"70":[2,70],"71":[2,70],"72":[2,70],"73":[2,70],"76":[2,70],"77":[2,70],"78":[2,70],"79":[2,70],"82":[2,70],"90":[2,70],"92":[2,70],"97":[2,70],"105":[2,70],"107":[2,70],"108":[2,70],"109":[2,70],"112":[2,70],"116":[2,70],"117":[2,70],"118":[2,70],"125":[2,70],"126":[2,70],"127":[2,70],"129":[2,70],"130":[2,70],"132":[2,70],"133":[2,70],"136":[2,70],"137":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"48":[2,71],"56":[2,71],"59":[2,71],"70":[2,71],"71":[2,71],"72":[2,71],"73":[2,71],"76":[2,71],"77":[2,71],"78":[2,71],"79":[2,71],"82":[2,71],"90":[2,71],"92":[2,71],"97":[2,71],"105":[2,71],"107":[2,71],"108":[2,71],"109":[2,71],"112":[2,71],"116":[2,71],"117":[2,71],"118":[2,71],"125":[2,71],"126":[2,71],"127":[2,71],"129":[2,71],"130":[2,71],"132":[2,71],"133":[2,71],"136":[2,71],"137":[2,71],"138":[2,71],"139":[2,71],"140":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"48":[2,72],"56":[2,72],"59":[2,72],"70":[2,72],"71":[2,72],"72":[2,72],"73":[2,72],"76":[2,72],"77":[2,72],"78":[2,72],"79":[2,72],"82":[2,72],"90":[2,72],"92":[2,72],"97":[2,72],"105":[2,72],"107":[2,72],"108":[2,72],"109":[2,72],"112":[2,72],"116":[2,72],"117":[2,72],"118":[2,72],"125":[2,72],"126":[2,72],"127":[2,72],"129":[2,72],"130":[2,72],"132":[2,72],"133":[2,72],"136":[2,72],"137":[2,72],"138":[2,72],"139":[2,72],"140":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72]},{"1":[2,73],"4":[2,73],"28":[2,73],"29":[2,73],"48":[2,73],"56":[2,73],"59":[2,73],"70":[2,73],"71":[2,73],"72":[2,73],"73":[2,73],"76":[2,73],"77":[2,73],"78":[2,73],"79":[2,73],"82":[2,73],"90":[2,73],"92":[2,73],"97":[2,73],"105":[2,73],"107":[2,73],"108":[2,73],"109":[2,73],"112":[2,73],"116":[2,73],"117":[2,73],"118":[2,73],"125":[2,73],"126":[2,73],"127":[2,73],"129":[2,73],"130":[2,73],"132":[2,73],"133":[2,73],"136":[2,73],"137":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"48":[2,74],"56":[2,74],"59":[2,74],"70":[2,74],"71":[2,74],"72":[2,74],"73":[2,74],"76":[2,74],"77":[2,74],"78":[2,74],"79":[2,74],"82":[2,74],"90":[2,74],"92":[2,74],"97":[2,74],"105":[2,74],"107":[2,74],"108":[2,74],"109":[2,74],"112":[2,74],"116":[2,74],"117":[2,74],"118":[2,74],"125":[2,74],"126":[2,74],"127":[2,74],"129":[2,74],"130":[2,74],"132":[2,74],"133":[2,74],"136":[2,74],"137":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74],"151":[2,74],"152":[2,74],"153":[2,74],"154":[2,74],"155":[2,74],"156":[2,74],"157":[2,74],"158":[2,74],"159":[2,74],"160":[2,74],"161":[2,74]},{"1":[2,99],"4":[2,99],"28":[2,99],"29":[2,99],"48":[2,99],"56":[2,99],"59":[2,99],"61":147,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,99],"78":[1,143],"79":[1,144],"82":[2,99],"89":146,"90":[1,135],"92":[2,99],"97":[2,99],"105":[2,99],"107":[2,99],"108":[2,99],"109":[2,99],"112":[2,99],"116":[2,99],"117":[2,99],"118":[2,99],"125":[2,99],"126":[2,99],"127":[2,99],"129":[2,99],"130":[2,99],"132":[2,99],"133":[2,99],"136":[2,99],"137":[2,99],"138":[2,99],"139":[2,99],"140":[2,99],"141":[2,99],"142":[2,99],"143":[2,99],"144":[2,99],"145":[2,99],"146":[2,99],"147":[2,99],"148":[2,99],"149":[2,99],"150":[2,99],"151":[2,99],"152":[2,99],"153":[2,99],"154":[2,99],"155":[2,99],"156":[2,99],"157":[2,99],"158":[2,99],"159":[2,99],"160":[2,99],"161":[2,99]},{"14":149,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":151,"62":148,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"1":[2,101],"4":[2,101],"28":[2,101],"29":[2,101],"48":[2,101],"56":[2,101],"59":[2,101],"77":[2,101],"82":[2,101],"92":[2,101],"97":[2,101],"105":[2,101],"107":[2,101],"108":[2,101],"109":[2,101],"112":[2,101],"116":[2,101],"117":[2,101],"118":[2,101],"125":[2,101],"126":[2,101],"127":[2,101],"129":[2,101],"130":[2,101],"132":[2,101],"133":[2,101],"136":[2,101],"137":[2,101],"138":[2,101],"139":[2,101],"140":[2,101],"141":[2,101],"142":[2,101],"143":[2,101],"144":[2,101],"145":[2,101],"146":[2,101],"147":[2,101],"148":[2,101],"149":[2,101],"150":[2,101],"151":[2,101],"152":[2,101],"153":[2,101],"154":[2,101],"155":[2,101],"156":[2,101],"157":[2,101],"158":[2,101],"159":[2,101],"160":[2,101],"161":[2,101]},{"50":152,"51":[2,56],"56":[2,56],"57":153,"58":[1,154]},{"6":155,"28":[1,6]},{"8":156,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":158,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":159,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":160,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":161,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":162,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":163,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":164,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":165,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,165],"4":[2,165],"28":[2,165],"29":[2,165],"48":[2,165],"56":[2,165],"59":[2,165],"77":[2,165],"82":[2,165],"92":[2,165],"97":[2,165],"105":[2,165],"107":[2,165],"108":[2,165],"109":[2,165],"112":[2,165],"116":[2,165],"117":[2,165],"118":[2,165],"121":[1,166],"125":[2,165],"126":[2,165],"127":[2,165],"129":[2,165],"130":[2,165],"132":[2,165],"133":[2,165],"136":[2,165],"137":[2,165],"138":[2,165],"139":[2,165],"140":[2,165],"141":[2,165],"142":[2,165],"143":[2,165],"144":[2,165],"145":[2,165],"146":[2,165],"147":[2,165],"148":[2,165],"149":[2,165],"150":[2,165],"151":[2,165],"152":[2,165],"153":[2,165],"154":[2,165],"155":[2,165],"156":[2,165],"157":[2,165],"158":[2,165],"159":[2,165],"160":[2,165],"161":[2,165]},{"6":167,"28":[1,6]},{"6":168,"28":[1,6]},{"1":[2,135],"4":[2,135],"28":[2,135],"29":[2,135],"48":[2,135],"56":[2,135],"59":[2,135],"77":[2,135],"82":[2,135],"92":[2,135],"97":[2,135],"105":[2,135],"107":[2,135],"108":[2,135],"109":[2,135],"112":[2,135],"116":[2,135],"117":[2,135],"118":[2,135],"125":[2,135],"126":[2,135],"127":[2,135],"129":[2,135],"130":[2,135],"132":[2,135],"133":[2,135],"136":[2,135],"137":[2,135],"138":[2,135],"139":[2,135],"140":[2,135],"141":[2,135],"142":[2,135],"143":[2,135],"144":[2,135],"145":[2,135],"146":[2,135],"147":[2,135],"148":[2,135],"149":[2,135],"150":[2,135],"151":[2,135],"152":[2,135],"153":[2,135],"154":[2,135],"155":[2,135],"156":[2,135],"157":[2,135],"158":[2,135],"159":[2,135],"160":[2,135],"161":[2,135]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"113":169,"115":170},{"8":175,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,176],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,66],"4":[2,66],"28":[2,66],"29":[2,66],"45":[2,66],"48":[2,66],"56":[2,66],"59":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,66],"78":[2,66],"79":[2,66],"82":[2,66],"84":[1,177],"90":[2,66],"92":[2,66],"97":[2,66],"105":[2,66],"107":[2,66],"108":[2,66],"109":[2,66],"112":[2,66],"116":[2,66],"117":[2,66],"118":[2,66],"125":[2,66],"126":[2,66],"127":[2,66],"129":[2,66],"130":[2,66],"132":[2,66],"133":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66]},{"14":149,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":178,"62":179,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"1":[2,48],"4":[2,48],"8":180,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[2,48],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"105":[2,48],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[2,48],"126":[2,48],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":181,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,67],"4":[2,67],"28":[2,67],"29":[2,67],"45":[2,67],"48":[2,67],"56":[2,67],"59":[2,67],"70":[2,67],"71":[2,67],"72":[2,67],"73":[2,67],"76":[2,67],"77":[2,67],"78":[2,67],"79":[2,67],"82":[2,67],"90":[2,67],"92":[2,67],"97":[2,67],"105":[2,67],"107":[2,67],"108":[2,67],"109":[2,67],"112":[2,67],"116":[2,67],"117":[2,67],"118":[2,67],"125":[2,67],"126":[2,67],"127":[2,67],"129":[2,67],"130":[2,67],"132":[2,67],"133":[2,67],"136":[2,67],"137":[2,67],"138":[2,67],"139":[2,67],"140":[2,67],"141":[2,67],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67]},{"1":[2,68],"4":[2,68],"28":[2,68],"29":[2,68],"45":[2,68],"48":[2,68],"56":[2,68],"59":[2,68],"70":[2,68],"71":[2,68],"72":[2,68],"73":[2,68],"76":[2,68],"77":[2,68],"78":[2,68],"79":[2,68],"82":[2,68],"90":[2,68],"92":[2,68],"97":[2,68],"105":[2,68],"107":[2,68],"108":[2,68],"109":[2,68],"112":[2,68],"116":[2,68],"117":[2,68],"118":[2,68],"125":[2,68],"126":[2,68],"127":[2,68],"129":[2,68],"130":[2,68],"132":[2,68],"133":[2,68],"136":[2,68],"137":[2,68],"138":[2,68],"139":[2,68],"140":[2,68],"141":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68]},{"1":[2,33],"4":[2,33],"28":[2,33],"29":[2,33],"48":[2,33],"56":[2,33],"59":[2,33],"70":[2,33],"71":[2,33],"72":[2,33],"73":[2,33],"76":[2,33],"77":[2,33],"78":[2,33],"79":[2,33],"82":[2,33],"90":[2,33],"92":[2,33],"97":[2,33],"105":[2,33],"107":[2,33],"108":[2,33],"109":[2,33],"112":[2,33],"116":[2,33],"117":[2,33],"118":[2,33],"125":[2,33],"126":[2,33],"127":[2,33],"129":[2,33],"130":[2,33],"132":[2,33],"133":[2,33],"136":[2,33],"137":[2,33],"138":[2,33],"139":[2,33],"140":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33],"151":[2,33],"152":[2,33],"153":[2,33],"154":[2,33],"155":[2,33],"156":[2,33],"157":[2,33],"158":[2,33],"159":[2,33],"160":[2,33],"161":[2,33]},{"1":[2,34],"4":[2,34],"28":[2,34],"29":[2,34],"48":[2,34],"56":[2,34],"59":[2,34],"70":[2,34],"71":[2,34],"72":[2,34],"73":[2,34],"76":[2,34],"77":[2,34],"78":[2,34],"79":[2,34],"82":[2,34],"90":[2,34],"92":[2,34],"97":[2,34],"105":[2,34],"107":[2,34],"108":[2,34],"109":[2,34],"112":[2,34],"116":[2,34],"117":[2,34],"118":[2,34],"125":[2,34],"126":[2,34],"127":[2,34],"129":[2,34],"130":[2,34],"132":[2,34],"133":[2,34],"136":[2,34],"137":[2,34],"138":[2,34],"139":[2,34],"140":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34],"151":[2,34],"152":[2,34],"153":[2,34],"154":[2,34],"155":[2,34],"156":[2,34],"157":[2,34],"158":[2,34],"159":[2,34],"160":[2,34],"161":[2,34]},{"1":[2,35],"4":[2,35],"28":[2,35],"29":[2,35],"48":[2,35],"56":[2,35],"59":[2,35],"70":[2,35],"71":[2,35],"72":[2,35],"73":[2,35],"76":[2,35],"77":[2,35],"78":[2,35],"79":[2,35],"82":[2,35],"90":[2,35],"92":[2,35],"97":[2,35],"105":[2,35],"107":[2,35],"108":[2,35],"109":[2,35],"112":[2,35],"116":[2,35],"117":[2,35],"118":[2,35],"125":[2,35],"126":[2,35],"127":[2,35],"129":[2,35],"130":[2,35],"132":[2,35],"133":[2,35],"136":[2,35],"137":[2,35],"138":[2,35],"139":[2,35],"140":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35],"151":[2,35],"152":[2,35],"153":[2,35],"154":[2,35],"155":[2,35],"156":[2,35],"157":[2,35],"158":[2,35],"159":[2,35],"160":[2,35],"161":[2,35]},{"1":[2,36],"4":[2,36],"28":[2,36],"29":[2,36],"48":[2,36],"56":[2,36],"59":[2,36],"70":[2,36],"71":[2,36],"72":[2,36],"73":[2,36],"76":[2,36],"77":[2,36],"78":[2,36],"79":[2,36],"82":[2,36],"90":[2,36],"92":[2,36],"97":[2,36],"105":[2,36],"107":[2,36],"108":[2,36],"109":[2,36],"112":[2,36],"116":[2,36],"117":[2,36],"118":[2,36],"125":[2,36],"126":[2,36],"127":[2,36],"129":[2,36],"130":[2,36],"132":[2,36],"133":[2,36],"136":[2,36],"137":[2,36],"138":[2,36],"139":[2,36],"140":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36],"151":[2,36],"152":[2,36],"153":[2,36],"154":[2,36],"155":[2,36],"156":[2,36],"157":[2,36],"158":[2,36],"159":[2,36],"160":[2,36],"161":[2,36]},{"1":[2,37],"4":[2,37],"28":[2,37],"29":[2,37],"48":[2,37],"56":[2,37],"59":[2,37],"70":[2,37],"71":[2,37],"72":[2,37],"73":[2,37],"76":[2,37],"77":[2,37],"78":[2,37],"79":[2,37],"82":[2,37],"90":[2,37],"92":[2,37],"97":[2,37],"105":[2,37],"107":[2,37],"108":[2,37],"109":[2,37],"112":[2,37],"116":[2,37],"117":[2,37],"118":[2,37],"125":[2,37],"126":[2,37],"127":[2,37],"129":[2,37],"130":[2,37],"132":[2,37],"133":[2,37],"136":[2,37],"137":[2,37],"138":[2,37],"139":[2,37],"140":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37],"151":[2,37],"152":[2,37],"153":[2,37],"154":[2,37],"155":[2,37],"156":[2,37],"157":[2,37],"158":[2,37],"159":[2,37],"160":[2,37],"161":[2,37]},{"1":[2,38],"4":[2,38],"28":[2,38],"29":[2,38],"48":[2,38],"56":[2,38],"59":[2,38],"70":[2,38],"71":[2,38],"72":[2,38],"73":[2,38],"76":[2,38],"77":[2,38],"78":[2,38],"79":[2,38],"82":[2,38],"90":[2,38],"92":[2,38],"97":[2,38],"105":[2,38],"107":[2,38],"108":[2,38],"109":[2,38],"112":[2,38],"116":[2,38],"117":[2,38],"118":[2,38],"125":[2,38],"126":[2,38],"127":[2,38],"129":[2,38],"130":[2,38],"132":[2,38],"133":[2,38],"136":[2,38],"137":[2,38],"138":[2,38],"139":[2,38],"140":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38],"151":[2,38],"152":[2,38],"153":[2,38],"154":[2,38],"155":[2,38],"156":[2,38],"157":[2,38],"158":[2,38],"159":[2,38],"160":[2,38],"161":[2,38]},{"1":[2,39],"4":[2,39],"28":[2,39],"29":[2,39],"48":[2,39],"56":[2,39],"59":[2,39],"70":[2,39],"71":[2,39],"72":[2,39],"73":[2,39],"76":[2,39],"77":[2,39],"78":[2,39],"79":[2,39],"82":[2,39],"90":[2,39],"92":[2,39],"97":[2,39],"105":[2,39],"107":[2,39],"108":[2,39],"109":[2,39],"112":[2,39],"116":[2,39],"117":[2,39],"118":[2,39],"125":[2,39],"126":[2,39],"127":[2,39],"129":[2,39],"130":[2,39],"132":[2,39],"133":[2,39],"136":[2,39],"137":[2,39],"138":[2,39],"139":[2,39],"140":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39],"151":[2,39],"152":[2,39],"153":[2,39],"154":[2,39],"155":[2,39],"156":[2,39],"157":[2,39],"158":[2,39],"159":[2,39],"160":[2,39],"161":[2,39]},{"1":[2,40],"4":[2,40],"28":[2,40],"29":[2,40],"48":[2,40],"56":[2,40],"59":[2,40],"70":[2,40],"71":[2,40],"72":[2,40],"73":[2,40],"76":[2,40],"77":[2,40],"78":[2,40],"79":[2,40],"82":[2,40],"90":[2,40],"92":[2,40],"97":[2,40],"105":[2,40],"107":[2,40],"108":[2,40],"109":[2,40],"112":[2,40],"116":[2,40],"117":[2,40],"118":[2,40],"125":[2,40],"126":[2,40],"127":[2,40],"129":[2,40],"130":[2,40],"132":[2,40],"133":[2,40],"136":[2,40],"137":[2,40],"138":[2,40],"139":[2,40],"140":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40],"151":[2,40],"152":[2,40],"153":[2,40],"154":[2,40],"155":[2,40],"156":[2,40],"157":[2,40],"158":[2,40],"159":[2,40],"160":[2,40],"161":[2,40]},{"1":[2,41],"4":[2,41],"28":[2,41],"29":[2,41],"48":[2,41],"56":[2,41],"59":[2,41],"70":[2,41],"71":[2,41],"72":[2,41],"73":[2,41],"76":[2,41],"77":[2,41],"78":[2,41],"79":[2,41],"82":[2,41],"90":[2,41],"92":[2,41],"97":[2,41],"105":[2,41],"107":[2,41],"108":[2,41],"109":[2,41],"112":[2,41],"116":[2,41],"117":[2,41],"118":[2,41],"125":[2,41],"126":[2,41],"127":[2,41],"129":[2,41],"130":[2,41],"132":[2,41],"133":[2,41],"136":[2,41],"137":[2,41],"138":[2,41],"139":[2,41],"140":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41],"151":[2,41],"152":[2,41],"153":[2,41],"154":[2,41],"155":[2,41],"156":[2,41],"157":[2,41],"158":[2,41],"159":[2,41],"160":[2,41],"161":[2,41]},{"7":182,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,115],"8":183,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,115],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,115],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"91":184,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,115],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,107],"4":[2,107],"28":[2,107],"29":[2,107],"48":[2,107],"56":[2,107],"59":[2,107],"70":[2,107],"71":[2,107],"72":[2,107],"73":[2,107],"76":[2,107],"77":[2,107],"78":[2,107],"79":[2,107],"82":[2,107],"90":[2,107],"92":[2,107],"97":[2,107],"105":[2,107],"107":[2,107],"108":[2,107],"109":[2,107],"112":[2,107],"116":[2,107],"117":[2,107],"118":[2,107],"125":[2,107],"126":[2,107],"127":[2,107],"129":[2,107],"130":[2,107],"132":[2,107],"133":[2,107],"136":[2,107],"137":[2,107],"138":[2,107],"139":[2,107],"140":[2,107],"141":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"148":[2,107],"149":[2,107],"150":[2,107],"151":[2,107],"152":[2,107],"153":[2,107],"154":[2,107],"155":[2,107],"156":[2,107],"157":[2,107],"158":[2,107],"159":[2,107],"160":[2,107],"161":[2,107]},{"1":[2,108],"4":[2,108],"28":[2,108],"29":[2,108],"30":185,"31":[1,85],"48":[2,108],"56":[2,108],"59":[2,108],"70":[2,108],"71":[2,108],"72":[2,108],"73":[2,108],"76":[2,108],"77":[2,108],"78":[2,108],"79":[2,108],"82":[2,108],"90":[2,108],"92":[2,108],"97":[2,108],"105":[2,108],"107":[2,108],"108":[2,108],"109":[2,108],"112":[2,108],"116":[2,108],"117":[2,108],"118":[2,108],"125":[2,108],"126":[2,108],"127":[2,108],"129":[2,108],"130":[2,108],"132":[2,108],"133":[2,108],"136":[2,108],"137":[2,108],"138":[2,108],"139":[2,108],"140":[2,108],"141":[2,108],"142":[2,108],"143":[2,108],"144":[2,108],"145":[2,108],"146":[2,108],"147":[2,108],"148":[2,108],"149":[2,108],"150":[2,108],"151":[2,108],"152":[2,108],"153":[2,108],"154":[2,108],"155":[2,108],"156":[2,108],"157":[2,108],"158":[2,108],"159":[2,108],"160":[2,108],"161":[2,108]},{"89":186,"90":[1,135]},{"28":[2,52]},{"28":[2,53]},{"8":187,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":188,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":189,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":190,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"6":191,"8":192,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,6],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,62],"4":[2,62],"28":[2,62],"29":[2,62],"45":[2,62],"48":[2,62],"56":[2,62],"59":[2,62],"70":[2,62],"71":[2,62],"72":[2,62],"73":[2,62],"76":[2,62],"77":[2,62],"78":[2,62],"79":[2,62],"82":[2,62],"84":[2,62],"90":[2,62],"92":[2,62],"97":[2,62],"105":[2,62],"107":[2,62],"108":[2,62],"109":[2,62],"112":[2,62],"116":[2,62],"117":[2,62],"118":[2,62],"125":[2,62],"126":[2,62],"127":[2,62],"129":[2,62],"130":[2,62],"132":[2,62],"133":[2,62],"136":[2,62],"137":[2,62],"138":[2,62],"139":[2,62],"140":[2,62],"141":[2,62],"142":[2,62],"143":[2,62],"144":[2,62],"145":[2,62],"146":[2,62],"147":[2,62],"148":[2,62],"149":[2,62],"150":[2,62],"151":[2,62],"152":[2,62],"153":[2,62],"154":[2,62],"155":[2,62],"156":[2,62],"157":[2,62],"158":[2,62],"159":[2,62],"160":[2,62],"161":[2,62]},{"1":[2,65],"4":[2,65],"28":[2,65],"29":[2,65],"45":[2,65],"48":[2,65],"56":[2,65],"59":[2,65],"70":[2,65],"71":[2,65],"72":[2,65],"73":[2,65],"76":[2,65],"77":[2,65],"78":[2,65],"79":[2,65],"82":[2,65],"84":[2,65],"90":[2,65],"92":[2,65],"97":[2,65],"105":[2,65],"107":[2,65],"108":[2,65],"109":[2,65],"112":[2,65],"116":[2,65],"117":[2,65],"118":[2,65],"125":[2,65],"126":[2,65],"127":[2,65],"129":[2,65],"130":[2,65],"132":[2,65],"133":[2,65],"136":[2,65],"137":[2,65],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65]},{"4":[2,85],"28":[2,85],"30":195,"31":[1,85],"32":196,"33":[1,83],"34":[1,84],"46":194,"56":[2,85],"81":193,"82":[2,85]},{"1":[2,31],"4":[2,31],"28":[2,31],"29":[2,31],"45":[2,31],"48":[2,31],"56":[2,31],"59":[2,31],"70":[2,31],"71":[2,31],"72":[2,31],"73":[2,31],"76":[2,31],"77":[2,31],"78":[2,31],"79":[2,31],"82":[2,31],"90":[2,31],"92":[2,31],"97":[2,31],"105":[2,31],"107":[2,31],"108":[2,31],"109":[2,31],"112":[2,31],"116":[2,31],"117":[2,31],"118":[2,31],"125":[2,31],"126":[2,31],"127":[2,31],"129":[2,31],"130":[2,31],"132":[2,31],"133":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31],"140":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31],"149":[2,31],"150":[2,31],"151":[2,31],"152":[2,31],"153":[2,31],"154":[2,31],"155":[2,31],"156":[2,31],"157":[2,31],"158":[2,31],"159":[2,31],"160":[2,31],"161":[2,31]},{"1":[2,32],"4":[2,32],"28":[2,32],"29":[2,32],"45":[2,32],"48":[2,32],"56":[2,32],"59":[2,32],"70":[2,32],"71":[2,32],"72":[2,32],"73":[2,32],"76":[2,32],"77":[2,32],"78":[2,32],"79":[2,32],"82":[2,32],"90":[2,32],"92":[2,32],"97":[2,32],"105":[2,32],"107":[2,32],"108":[2,32],"109":[2,32],"112":[2,32],"116":[2,32],"117":[2,32],"118":[2,32],"125":[2,32],"126":[2,32],"127":[2,32],"129":[2,32],"130":[2,32],"132":[2,32],"133":[2,32],"136":[2,32],"137":[2,32],"138":[2,32],"139":[2,32],"140":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32],"151":[2,32],"152":[2,32],"153":[2,32],"154":[2,32],"155":[2,32],"156":[2,32],"157":[2,32],"158":[2,32],"159":[2,32],"160":[2,32],"161":[2,32]},{"1":[2,30],"4":[2,30],"28":[2,30],"29":[2,30],"45":[2,30],"48":[2,30],"56":[2,30],"59":[2,30],"70":[2,30],"71":[2,30],"72":[2,30],"73":[2,30],"76":[2,30],"77":[2,30],"78":[2,30],"79":[2,30],"82":[2,30],"84":[2,30],"90":[2,30],"92":[2,30],"97":[2,30],"105":[2,30],"107":[2,30],"108":[2,30],"109":[2,30],"112":[2,30],"116":[2,30],"117":[2,30],"118":[2,30],"125":[2,30],"126":[2,30],"127":[2,30],"129":[2,30],"130":[2,30],"132":[2,30],"133":[2,30],"136":[2,30],"137":[2,30],"138":[2,30],"139":[2,30],"140":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"148":[2,30],"149":[2,30],"150":[2,30],"151":[2,30],"152":[2,30],"153":[2,30],"154":[2,30],"155":[2,30],"156":[2,30],"157":[2,30],"158":[2,30],"159":[2,30],"160":[2,30],"161":[2,30]},{"1":[2,7],"4":[2,7],"7":197,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[2,7],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,4]},{"4":[1,86],"29":[1,198]},{"1":[2,29],"4":[2,29],"28":[2,29],"29":[2,29],"48":[2,29],"56":[2,29],"59":[2,29],"77":[2,29],"82":[2,29],"92":[2,29],"97":[2,29],"101":[2,29],"102":[2,29],"105":[2,29],"107":[2,29],"108":[2,29],"109":[2,29],"112":[2,29],"116":[2,29],"117":[2,29],"118":[2,29],"121":[2,29],"123":[2,29],"125":[2,29],"126":[2,29],"127":[2,29],"129":[2,29],"130":[2,29],"132":[2,29],"133":[2,29],"136":[2,29],"137":[2,29],"138":[2,29],"139":[2,29],"140":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"148":[2,29],"149":[2,29],"150":[2,29],"151":[2,29],"152":[2,29],"153":[2,29],"154":[2,29],"155":[2,29],"156":[2,29],"157":[2,29],"158":[2,29],"159":[2,29],"160":[2,29],"161":[2,29]},{"1":[2,179],"4":[2,179],"28":[2,179],"29":[2,179],"48":[2,179],"56":[2,179],"59":[2,179],"77":[2,179],"82":[2,179],"92":[2,179],"97":[2,179],"105":[2,179],"107":[2,179],"108":[2,179],"109":[2,179],"112":[2,179],"116":[2,179],"117":[2,179],"118":[2,179],"125":[2,179],"126":[2,179],"127":[2,179],"129":[2,179],"130":[2,179],"132":[2,179],"133":[2,179],"136":[2,179],"137":[2,179],"138":[2,179],"139":[2,179],"140":[2,179],"141":[2,179],"142":[2,179],"143":[2,179],"144":[2,179],"145":[2,179],"146":[2,179],"147":[2,179],"148":[2,179],"149":[2,179],"150":[2,179],"151":[2,179],"152":[2,179],"153":[2,179],"154":[2,179],"155":[2,179],"156":[2,179],"157":[2,179],"158":[2,179],"159":[2,179],"160":[2,179],"161":[2,179]},{"1":[2,180],"4":[2,180],"28":[2,180],"29":[2,180],"48":[2,180],"56":[2,180],"59":[2,180],"77":[2,180],"82":[2,180],"92":[2,180],"97":[2,180],"105":[2,180],"107":[2,180],"108":[2,180],"109":[2,180],"112":[2,180],"116":[2,180],"117":[2,180],"118":[2,180],"125":[2,180],"126":[2,180],"127":[2,180],"129":[2,180],"130":[2,180],"132":[2,180],"133":[2,180],"136":[2,180],"137":[2,180],"138":[2,180],"139":[2,180],"140":[2,180],"141":[2,180],"142":[2,180],"143":[2,180],"144":[2,180],"145":[2,180],"146":[2,180],"147":[2,180],"148":[2,180],"149":[2,180],"150":[2,180],"151":[2,180],"152":[2,180],"153":[2,180],"154":[2,180],"155":[2,180],"156":[2,180],"157":[2,180],"158":[2,180],"159":[2,180],"160":[2,180],"161":[2,180]},{"8":199,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":200,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":201,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":202,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":203,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":204,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":205,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":206,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":207,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":208,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":209,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":210,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":211,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":212,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":213,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":214,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":215,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":216,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":217,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,49],"4":[2,49],"8":218,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,49],"29":[2,49],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"48":[2,49],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,49],"59":[2,49],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"77":[2,49],"80":[1,82],"82":[2,49],"83":[1,54],"87":[1,34],"88":35,"92":[2,49],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,49],"99":[1,48],"103":[1,56],"104":[1,68],"105":[2,49],"106":49,"107":[2,49],"108":[2,49],"109":[2,49],"110":50,"111":[1,79],"112":[2,49],"116":[2,49],"117":[2,49],"118":[2,49],"119":[1,52],"124":47,"125":[2,49],"126":[2,49],"127":[2,49],"128":[1,39],"129":[2,49],"130":[2,49],"131":[1,42],"132":[2,49],"133":[2,49],"134":[1,45],"135":[1,46],"136":[2,49],"137":[2,49],"138":[2,49],"139":[2,49],"140":[2,49],"141":[2,49],"142":[2,49],"143":[2,49],"144":[2,49],"145":[2,49],"146":[2,49],"147":[2,49],"148":[2,49],"149":[2,49],"150":[2,49],"151":[2,49],"152":[2,49],"153":[2,49],"154":[2,49],"155":[2,49],"156":[2,49],"157":[2,49],"158":[2,49],"159":[2,49],"160":[2,49],"161":[2,49]},{"8":219,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":220,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":221,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":222,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":223,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":224,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":225,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":226,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":227,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":228,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":229,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"116":[1,230],"117":[1,231]},{"8":232,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":233,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,134],"4":[2,134],"28":[2,134],"29":[2,134],"48":[2,134],"56":[2,134],"59":[2,134],"77":[2,134],"82":[2,134],"92":[2,134],"97":[2,134],"105":[2,134],"107":[2,134],"108":[2,134],"109":[2,134],"112":[2,134],"116":[2,134],"117":[2,134],"118":[2,134],"125":[2,134],"126":[2,134],"127":[2,134],"129":[2,134],"130":[2,134],"132":[2,134],"133":[2,134],"136":[2,134],"137":[2,134],"138":[2,134],"139":[2,134],"140":[2,134],"141":[2,134],"142":[2,134],"143":[2,134],"144":[2,134],"145":[2,134],"146":[2,134],"147":[2,134],"148":[2,134],"149":[2,134],"150":[2,134],"151":[2,134],"152":[2,134],"153":[2,134],"154":[2,134],"155":[2,134],"156":[2,134],"157":[2,134],"158":[2,134],"159":[2,134],"160":[2,134],"161":[2,134]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"113":234,"115":170},{"59":[1,235]},{"8":236,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":237,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,133],"4":[2,133],"28":[2,133],"29":[2,133],"48":[2,133],"56":[2,133],"59":[2,133],"77":[2,133],"82":[2,133],"92":[2,133],"97":[2,133],"105":[2,133],"107":[2,133],"108":[2,133],"109":[2,133],"112":[2,133],"116":[2,133],"117":[2,133],"118":[2,133],"125":[2,133],"126":[2,133],"127":[2,133],"129":[2,133],"130":[2,133],"132":[2,133],"133":[2,133],"136":[2,133],"137":[2,133],"138":[2,133],"139":[2,133],"140":[2,133],"141":[2,133],"142":[2,133],"143":[2,133],"144":[2,133],"145":[2,133],"146":[2,133],"147":[2,133],"148":[2,133],"149":[2,133],"150":[2,133],"151":[2,133],"152":[2,133],"153":[2,133],"154":[2,133],"155":[2,133],"156":[2,133],"157":[2,133],"158":[2,133],"159":[2,133],"160":[2,133],"161":[2,133]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"113":238,"115":170},{"1":[2,103],"4":[2,103],"28":[2,103],"29":[2,103],"48":[2,103],"56":[2,103],"59":[2,103],"70":[2,103],"71":[2,103],"72":[2,103],"73":[2,103],"76":[2,103],"77":[2,103],"78":[2,103],"79":[2,103],"82":[2,103],"90":[2,103],"92":[2,103],"97":[2,103],"105":[2,103],"107":[2,103],"108":[2,103],"109":[2,103],"112":[2,103],"116":[2,103],"117":[2,103],"118":[2,103],"125":[2,103],"126":[2,103],"127":[2,103],"129":[2,103],"130":[2,103],"132":[2,103],"133":[2,103],"136":[2,103],"137":[2,103],"138":[2,103],"139":[2,103],"140":[2,103],"141":[2,103],"142":[2,103],"143":[2,103],"144":[2,103],"145":[2,103],"146":[2,103],"147":[2,103],"148":[2,103],"149":[2,103],"150":[2,103],"151":[2,103],"152":[2,103],"153":[2,103],"154":[2,103],"155":[2,103],"156":[2,103],"157":[2,103],"158":[2,103],"159":[2,103],"160":[2,103],"161":[2,103]},{"1":[2,63],"4":[2,63],"28":[2,63],"29":[2,63],"45":[2,63],"48":[2,63],"56":[2,63],"59":[2,63],"70":[2,63],"71":[2,63],"72":[2,63],"73":[2,63],"76":[2,63],"77":[2,63],"78":[2,63],"79":[2,63],"82":[2,63],"84":[2,63],"90":[2,63],"92":[2,63],"97":[2,63],"105":[2,63],"107":[2,63],"108":[2,63],"109":[2,63],"112":[2,63],"116":[2,63],"117":[2,63],"118":[2,63],"125":[2,63],"126":[2,63],"127":[2,63],"129":[2,63],"130":[2,63],"132":[2,63],"133":[2,63],"136":[2,63],"137":[2,63],"138":[2,63],"139":[2,63],"140":[2,63],"141":[2,63],"142":[2,63],"143":[2,63],"144":[2,63],"145":[2,63],"146":[2,63],"147":[2,63],"148":[2,63],"149":[2,63],"150":[2,63],"151":[2,63],"152":[2,63],"153":[2,63],"154":[2,63],"155":[2,63],"156":[2,63],"157":[2,63],"158":[2,63],"159":[2,63],"160":[2,63],"161":[2,63]},{"4":[2,115],"8":240,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,115],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,115],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"91":239,"92":[2,115],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"30":241,"31":[1,85]},{"30":242,"31":[1,85]},{"1":[2,77],"4":[2,77],"28":[2,77],"29":[2,77],"45":[2,77],"48":[2,77],"56":[2,77],"59":[2,77],"70":[2,77],"71":[2,77],"72":[2,77],"73":[2,77],"76":[2,77],"77":[2,77],"78":[2,77],"79":[2,77],"82":[2,77],"84":[2,77],"90":[2,77],"92":[2,77],"97":[2,77],"105":[2,77],"107":[2,77],"108":[2,77],"109":[2,77],"112":[2,77],"116":[2,77],"117":[2,77],"118":[2,77],"125":[2,77],"126":[2,77],"127":[2,77],"129":[2,77],"130":[2,77],"132":[2,77],"133":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77],"151":[2,77],"152":[2,77],"153":[2,77],"154":[2,77],"155":[2,77],"156":[2,77],"157":[2,77],"158":[2,77],"159":[2,77],"160":[2,77],"161":[2,77]},{"30":243,"31":[1,85]},{"1":[2,79],"4":[2,79],"28":[2,79],"29":[2,79],"45":[2,79],"48":[2,79],"56":[2,79],"59":[2,79],"70":[2,79],"71":[2,79],"72":[2,79],"73":[2,79],"76":[2,79],"77":[2,79],"78":[2,79],"79":[2,79],"82":[2,79],"84":[2,79],"90":[2,79],"92":[2,79],"97":[2,79],"105":[2,79],"107":[2,79],"108":[2,79],"109":[2,79],"112":[2,79],"116":[2,79],"117":[2,79],"118":[2,79],"125":[2,79],"126":[2,79],"127":[2,79],"129":[2,79],"130":[2,79],"132":[2,79],"133":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79],"151":[2,79],"152":[2,79],"153":[2,79],"154":[2,79],"155":[2,79],"156":[2,79],"157":[2,79],"158":[2,79],"159":[2,79],"160":[2,79],"161":[2,79]},{"1":[2,80],"4":[2,80],"28":[2,80],"29":[2,80],"45":[2,80],"48":[2,80],"56":[2,80],"59":[2,80],"70":[2,80],"71":[2,80],"72":[2,80],"73":[2,80],"76":[2,80],"77":[2,80],"78":[2,80],"79":[2,80],"82":[2,80],"84":[2,80],"90":[2,80],"92":[2,80],"97":[2,80],"105":[2,80],"107":[2,80],"108":[2,80],"109":[2,80],"112":[2,80],"116":[2,80],"117":[2,80],"118":[2,80],"125":[2,80],"126":[2,80],"127":[2,80],"129":[2,80],"130":[2,80],"132":[2,80],"133":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80],"140":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80],"151":[2,80],"152":[2,80],"153":[2,80],"154":[2,80],"155":[2,80],"156":[2,80],"157":[2,80],"158":[2,80],"159":[2,80],"160":[2,80],"161":[2,80]},{"8":244,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"74":245,"76":[1,246],"78":[1,143],"79":[1,144]},{"74":247,"76":[1,246],"78":[1,143],"79":[1,144]},{"8":248,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,104],"4":[2,104],"28":[2,104],"29":[2,104],"48":[2,104],"56":[2,104],"59":[2,104],"70":[2,104],"71":[2,104],"72":[2,104],"73":[2,104],"76":[2,104],"77":[2,104],"78":[2,104],"79":[2,104],"82":[2,104],"90":[2,104],"92":[2,104],"97":[2,104],"105":[2,104],"107":[2,104],"108":[2,104],"109":[2,104],"112":[2,104],"116":[2,104],"117":[2,104],"118":[2,104],"125":[2,104],"126":[2,104],"127":[2,104],"129":[2,104],"130":[2,104],"132":[2,104],"133":[2,104],"136":[2,104],"137":[2,104],"138":[2,104],"139":[2,104],"140":[2,104],"141":[2,104],"142":[2,104],"143":[2,104],"144":[2,104],"145":[2,104],"146":[2,104],"147":[2,104],"148":[2,104],"149":[2,104],"150":[2,104],"151":[2,104],"152":[2,104],"153":[2,104],"154":[2,104],"155":[2,104],"156":[2,104],"157":[2,104],"158":[2,104],"159":[2,104],"160":[2,104],"161":[2,104]},{"1":[2,64],"4":[2,64],"28":[2,64],"29":[2,64],"45":[2,64],"48":[2,64],"56":[2,64],"59":[2,64],"70":[2,64],"71":[2,64],"72":[2,64],"73":[2,64],"76":[2,64],"77":[2,64],"78":[2,64],"79":[2,64],"82":[2,64],"84":[2,64],"90":[2,64],"92":[2,64],"97":[2,64],"105":[2,64],"107":[2,64],"108":[2,64],"109":[2,64],"112":[2,64],"116":[2,64],"117":[2,64],"118":[2,64],"125":[2,64],"126":[2,64],"127":[2,64],"129":[2,64],"130":[2,64],"132":[2,64],"133":[2,64],"136":[2,64],"137":[2,64],"138":[2,64],"139":[2,64],"140":[2,64],"141":[2,64],"142":[2,64],"143":[2,64],"144":[2,64],"145":[2,64],"146":[2,64],"147":[2,64],"148":[2,64],"149":[2,64],"150":[2,64],"151":[2,64],"152":[2,64],"153":[2,64],"154":[2,64],"155":[2,64],"156":[2,64],"157":[2,64],"158":[2,64],"159":[2,64],"160":[2,64],"161":[2,64]},{"1":[2,100],"4":[2,100],"28":[2,100],"29":[2,100],"48":[2,100],"56":[2,100],"59":[2,100],"61":147,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,100],"78":[1,143],"79":[1,144],"82":[2,100],"89":146,"90":[1,135],"92":[2,100],"97":[2,100],"105":[2,100],"107":[2,100],"108":[2,100],"109":[2,100],"112":[2,100],"116":[2,100],"117":[2,100],"118":[2,100],"125":[2,100],"126":[2,100],"127":[2,100],"129":[2,100],"130":[2,100],"132":[2,100],"133":[2,100],"136":[2,100],"137":[2,100],"138":[2,100],"139":[2,100],"140":[2,100],"141":[2,100],"142":[2,100],"143":[2,100],"144":[2,100],"145":[2,100],"146":[2,100],"147":[2,100],"148":[2,100],"149":[2,100],"150":[2,100],"151":[2,100],"152":[2,100],"153":[2,100],"154":[2,100],"155":[2,100],"156":[2,100],"157":[2,100],"158":[2,100],"159":[2,100],"160":[2,100],"161":[2,100]},{"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"78":[1,143],"79":[1,144],"89":133,"90":[1,135]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"48":[2,69],"56":[2,69],"59":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"77":[2,69],"78":[2,69],"79":[2,69],"82":[2,69],"90":[2,69],"92":[2,69],"97":[2,69],"105":[2,69],"107":[2,69],"108":[2,69],"109":[2,69],"112":[2,69],"116":[2,69],"117":[2,69],"118":[2,69],"125":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"132":[2,69],"133":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69],"140":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69]},{"1":[2,66],"4":[2,66],"28":[2,66],"29":[2,66],"48":[2,66],"56":[2,66],"59":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,66],"78":[2,66],"79":[2,66],"82":[2,66],"90":[2,66],"92":[2,66],"97":[2,66],"105":[2,66],"107":[2,66],"108":[2,66],"109":[2,66],"112":[2,66],"116":[2,66],"117":[2,66],"118":[2,66],"125":[2,66],"126":[2,66],"127":[2,66],"129":[2,66],"130":[2,66],"132":[2,66],"133":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66]},{"51":[1,249],"56":[1,250]},{"51":[2,57],"56":[2,57],"59":[1,251]},{"51":[2,59],"56":[2,59],"59":[2,59]},{"1":[2,51],"4":[2,51],"28":[2,51],"29":[2,51],"48":[2,51],"56":[2,51],"59":[2,51],"77":[2,51],"82":[2,51],"92":[2,51],"97":[2,51],"105":[2,51],"107":[2,51],"108":[2,51],"109":[2,51],"112":[2,51],"116":[2,51],"117":[2,51],"118":[2,51],"125":[2,51],"126":[2,51],"127":[2,51],"129":[2,51],"130":[2,51],"132":[2,51],"133":[2,51],"136":[2,51],"137":[2,51],"138":[2,51],"139":[2,51],"140":[2,51],"141":[2,51],"142":[2,51],"143":[2,51],"144":[2,51],"145":[2,51],"146":[2,51],"147":[2,51],"148":[2,51],"149":[2,51],"150":[2,51],"151":[2,51],"152":[2,51],"153":[2,51],"154":[2,51],"155":[2,51],"156":[2,51],"157":[2,51],"158":[2,51],"159":[2,51],"160":[2,51],"161":[2,51]},{"1":[2,170],"4":[2,170],"28":[2,170],"29":[2,170],"48":[1,111],"56":[2,170],"59":[2,170],"77":[2,170],"82":[2,170],"92":[2,170],"97":[2,170],"105":[2,170],"106":126,"107":[2,170],"108":[2,170],"109":[2,170],"112":[2,170],"116":[2,170],"117":[2,170],"118":[2,170],"125":[2,170],"126":[2,170],"129":[2,170],"130":[2,170],"136":[2,170],"137":[2,170],"138":[2,170],"139":[2,170],"140":[2,170],"141":[2,170],"142":[2,170],"143":[2,170],"144":[2,170],"145":[2,170],"146":[2,170],"147":[2,170],"148":[2,170],"149":[2,170],"150":[2,170],"151":[2,170],"152":[2,170],"153":[2,170],"154":[2,170],"155":[2,170],"156":[2,170],"157":[2,170],"158":[2,170],"159":[2,170],"160":[2,170],"161":[2,170]},{"106":131,"107":[1,77],"109":[1,78],"112":[1,132],"125":[1,129],"126":[1,130]},{"1":[2,171],"4":[2,171],"28":[2,171],"29":[2,171],"48":[1,111],"56":[2,171],"59":[2,171],"77":[2,171],"82":[2,171],"92":[2,171],"97":[2,171],"105":[2,171],"106":126,"107":[2,171],"108":[2,171],"109":[2,171],"112":[2,171],"116":[2,171],"117":[2,171],"118":[2,171],"125":[2,171],"126":[2,171],"129":[2,171],"130":[2,171],"136":[2,171],"137":[2,171],"138":[2,171],"139":[2,171],"140":[2,171],"141":[2,171],"142":[2,171],"143":[2,171],"144":[2,171],"145":[2,171],"146":[2,171],"147":[2,171],"148":[2,171],"149":[2,171],"150":[2,171],"151":[2,171],"152":[2,171],"153":[2,171],"154":[2,171],"155":[2,171],"156":[2,171],"157":[2,171],"158":[2,171],"159":[2,171],"160":[2,171],"161":[2,171]},{"1":[2,172],"4":[2,172],"28":[2,172],"29":[2,172],"48":[1,111],"56":[2,172],"59":[2,172],"77":[2,172],"82":[2,172],"92":[2,172],"97":[2,172],"105":[2,172],"106":126,"107":[2,172],"108":[2,172],"109":[2,172],"112":[2,172],"116":[2,172],"117":[2,172],"118":[2,172],"125":[2,172],"126":[2,172],"129":[2,172],"130":[2,172],"136":[2,172],"137":[2,172],"138":[2,172],"139":[2,172],"140":[2,172],"141":[2,172],"142":[2,172],"143":[2,172],"144":[2,172],"145":[2,172],"146":[2,172],"147":[2,172],"148":[2,172],"149":[2,172],"150":[2,172],"151":[2,172],"152":[2,172],"153":[2,172],"154":[2,172],"155":[2,172],"156":[2,172],"157":[2,172],"158":[2,172],"159":[2,172],"160":[2,172],"161":[2,172]},{"1":[2,173],"4":[2,173],"28":[2,173],"29":[2,173],"48":[1,111],"56":[2,173],"59":[2,173],"77":[2,173],"82":[2,173],"92":[2,173],"97":[2,173],"105":[2,173],"106":126,"107":[2,173],"108":[2,173],"109":[2,173],"112":[2,173],"116":[2,173],"117":[2,173],"118":[2,173],"125":[2,173],"126":[2,173],"129":[2,173],"130":[2,173],"136":[2,173],"137":[2,173],"138":[2,173],"139":[2,173],"140":[2,173],"141":[2,173],"142":[2,173],"143":[2,173],"144":[2,173],"145":[2,173],"146":[2,173],"147":[2,173],"148":[2,173],"149":[2,173],"150":[2,173],"151":[2,173],"152":[2,173],"153":[2,173],"154":[2,173],"155":[2,173],"156":[2,173],"157":[2,173],"158":[2,173],"159":[2,173],"160":[2,173],"161":[2,173]},{"1":[2,174],"4":[2,174],"28":[2,174],"29":[2,174],"48":[1,111],"56":[2,174],"59":[2,174],"77":[2,174],"82":[2,174],"92":[2,174],"97":[2,174],"105":[2,174],"106":126,"107":[2,174],"108":[2,174],"109":[2,174],"112":[2,174],"116":[2,174],"117":[2,174],"118":[2,174],"125":[2,174],"126":[2,174],"129":[2,174],"130":[2,174],"136":[2,174],"137":[2,174],"138":[2,174],"139":[2,174],"140":[2,174],"141":[2,174],"142":[2,174],"143":[2,174],"144":[2,174],"145":[2,174],"146":[2,174],"147":[2,174],"148":[2,174],"149":[2,174],"150":[2,174],"151":[2,174],"152":[2,174],"153":[2,174],"154":[2,174],"155":[2,174],"156":[2,174],"157":[2,174],"158":[2,174],"159":[2,174],"160":[2,174],"161":[2,174]},{"1":[2,175],"4":[2,175],"28":[2,175],"29":[2,175],"48":[1,111],"56":[2,175],"59":[2,175],"77":[2,175],"82":[2,175],"92":[2,175],"97":[2,175],"105":[2,175],"106":126,"107":[2,175],"108":[2,175],"109":[2,175],"112":[2,175],"116":[2,175],"117":[2,175],"118":[2,175],"125":[2,175],"126":[2,175],"129":[2,175],"130":[2,175],"136":[2,175],"137":[2,175],"138":[2,175],"139":[2,175],"140":[2,175],"141":[2,175],"142":[2,175],"143":[2,175],"144":[2,175],"145":[2,175],"146":[2,175],"147":[2,175],"148":[2,175],"149":[2,175],"150":[2,175],"151":[2,175],"152":[2,175],"153":[2,175],"154":[2,175],"155":[2,175],"156":[2,175],"157":[2,175],"158":[2,175],"159":[2,175],"160":[2,175],"161":[2,175]},{"1":[2,176],"4":[2,176],"28":[2,176],"29":[2,176],"48":[1,111],"56":[2,176],"59":[2,176],"77":[2,176],"82":[2,176],"92":[2,176],"97":[2,176],"105":[2,176],"106":126,"107":[2,176],"108":[2,176],"109":[2,176],"112":[2,176],"116":[2,176],"117":[2,176],"118":[2,176],"125":[2,176],"126":[2,176],"129":[2,176],"130":[2,176],"136":[2,176],"137":[2,176],"138":[2,176],"139":[2,176],"140":[2,176],"141":[2,176],"142":[2,176],"143":[2,176],"144":[2,176],"145":[2,176],"146":[2,176],"147":[2,176],"148":[2,176],"149":[2,176],"150":[2,176],"151":[2,176],"152":[2,176],"153":[2,176],"154":[2,176],"155":[2,176],"156":[2,176],"157":[2,176],"158":[2,176],"159":[2,176],"160":[2,176],"161":[2,176]},{"1":[2,177],"4":[2,177],"28":[2,177],"29":[2,177],"48":[1,111],"56":[2,177],"59":[2,177],"77":[2,177],"82":[2,177],"92":[2,177],"97":[2,177],"105":[2,177],"106":126,"107":[2,177],"108":[2,177],"109":[2,177],"112":[2,177],"116":[2,177],"117":[2,177],"118":[2,177],"125":[2,177],"126":[2,177],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,177],"150":[2,177],"151":[2,177],"152":[2,177],"153":[2,177],"154":[2,177],"155":[2,177],"156":[2,177],"157":[2,177],"158":[2,177],"159":[2,177],"160":[2,177],"161":[1,120]},{"1":[2,178],"4":[2,178],"28":[2,178],"29":[2,178],"48":[1,111],"56":[2,178],"59":[2,178],"77":[2,178],"82":[2,178],"92":[2,178],"97":[2,178],"105":[2,178],"106":126,"107":[2,178],"108":[2,178],"109":[2,178],"112":[2,178],"116":[2,178],"117":[2,178],"118":[2,178],"125":[2,178],"126":[2,178],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,178],"150":[2,178],"151":[2,178],"152":[2,178],"153":[2,178],"154":[2,178],"155":[2,178],"156":[2,178],"157":[2,178],"158":[2,178],"159":[2,178],"160":[2,178],"161":[1,120]},{"6":253,"28":[1,6],"125":[1,252]},{"100":254,"101":[1,255],"102":[1,256]},{"1":[2,132],"4":[2,132],"28":[2,132],"29":[2,132],"48":[2,132],"56":[2,132],"59":[2,132],"77":[2,132],"82":[2,132],"92":[2,132],"97":[2,132],"105":[2,132],"107":[2,132],"108":[2,132],"109":[2,132],"112":[2,132],"116":[2,132],"117":[2,132],"118":[2,132],"125":[2,132],"126":[2,132],"127":[2,132],"129":[2,132],"130":[2,132],"132":[2,132],"133":[2,132],"136":[2,132],"137":[2,132],"138":[2,132],"139":[2,132],"140":[2,132],"141":[2,132],"142":[2,132],"143":[2,132],"144":[2,132],"145":[2,132],"146":[2,132],"147":[2,132],"148":[2,132],"149":[2,132],"150":[2,132],"151":[2,132],"152":[2,132],"153":[2,132],"154":[2,132],"155":[2,132],"156":[2,132],"157":[2,132],"158":[2,132],"159":[2,132],"160":[2,132],"161":[2,132]},{"114":257,"116":[1,258],"117":[1,259]},{"56":[1,260],"116":[2,144],"117":[2,144]},{"56":[2,141],"116":[2,141],"117":[2,141]},{"56":[2,142],"116":[2,142],"117":[2,142]},{"56":[2,143],"116":[2,143],"117":[2,143]},{"4":[2,115],"8":240,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,115],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,115],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"91":184,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,115],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"28":[1,261],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"120":262,"122":263,"123":[1,264]},{"14":265,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":151,"62":179,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"1":[2,90],"4":[2,90],"28":[1,267],"29":[2,90],"48":[2,90],"56":[2,90],"59":[2,90],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,90],"78":[2,66],"79":[2,66],"82":[2,90],"84":[1,266],"90":[2,66],"92":[2,90],"97":[2,90],"105":[2,90],"107":[2,90],"108":[2,90],"109":[2,90],"112":[2,90],"116":[2,90],"117":[2,90],"118":[2,90],"125":[2,90],"126":[2,90],"127":[2,90],"129":[2,90],"130":[2,90],"132":[2,90],"133":[2,90],"136":[2,90],"137":[2,90],"138":[2,90],"139":[2,90],"140":[2,90],"141":[2,90],"142":[2,90],"143":[2,90],"144":[2,90],"145":[2,90],"146":[2,90],"147":[2,90],"148":[2,90],"149":[2,90],"150":[2,90],"151":[2,90],"152":[2,90],"153":[2,90],"154":[2,90],"155":[2,90],"156":[2,90],"157":[2,90],"158":[2,90],"159":[2,90],"160":[2,90],"161":[2,90]},{"61":147,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"78":[1,143],"79":[1,144],"89":146,"90":[1,135]},{"1":[2,47],"4":[2,47],"29":[2,47],"48":[1,111],"59":[1,128],"105":[2,47],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[2,47],"126":[2,47],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,126],"4":[2,126],"29":[2,126],"48":[1,111],"59":[1,128],"105":[2,126],"106":126,"107":[2,126],"109":[2,126],"112":[2,126],"116":[1,121],"117":[1,122],"125":[2,126],"126":[2,126],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"105":[1,268]},{"4":[2,116],"28":[2,116],"48":[1,111],"56":[2,116],"59":[1,269],"97":[2,116],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,54],"28":[2,54],"55":270,"56":[1,271],"97":[2,54]},{"1":[2,109],"4":[2,109],"28":[2,109],"29":[2,109],"45":[2,109],"48":[2,109],"56":[2,109],"59":[2,109],"70":[2,109],"71":[2,109],"72":[2,109],"73":[2,109],"76":[2,109],"77":[2,109],"78":[2,109],"79":[2,109],"82":[2,109],"84":[2,109],"90":[2,109],"92":[2,109],"97":[2,109],"105":[2,109],"107":[2,109],"108":[2,109],"109":[2,109],"112":[2,109],"116":[2,109],"117":[2,109],"118":[2,109],"125":[2,109],"126":[2,109],"127":[2,109],"129":[2,109],"130":[2,109],"132":[2,109],"133":[2,109],"136":[2,109],"137":[2,109],"138":[2,109],"139":[2,109],"140":[2,109],"141":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"147":[2,109],"148":[2,109],"149":[2,109],"150":[2,109],"151":[2,109],"152":[2,109],"153":[2,109],"154":[2,109],"155":[2,109],"156":[2,109],"157":[2,109],"158":[2,109],"159":[2,109],"160":[2,109],"161":[2,109]},{"1":[2,106],"4":[2,106],"28":[2,106],"29":[2,106],"48":[2,106],"56":[2,106],"59":[2,106],"77":[2,106],"82":[2,106],"92":[2,106],"97":[2,106],"105":[2,106],"107":[2,106],"108":[2,106],"109":[2,106],"112":[2,106],"116":[2,106],"117":[2,106],"118":[2,106],"125":[2,106],"126":[2,106],"127":[2,106],"129":[2,106],"130":[2,106],"132":[2,106],"133":[2,106],"136":[2,106],"137":[2,106],"138":[2,106],"139":[2,106],"140":[2,106],"141":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"148":[2,106],"149":[2,106],"150":[2,106],"151":[2,106],"152":[2,106],"153":[2,106],"154":[2,106],"155":[2,106],"156":[2,106],"157":[2,106],"158":[2,106],"159":[2,106],"160":[2,106],"161":[2,106]},{"6":272,"28":[1,6],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"6":273,"28":[1,6],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,128],"4":[2,128],"28":[2,128],"29":[2,128],"48":[1,111],"56":[2,128],"59":[1,128],"77":[2,128],"82":[2,128],"92":[2,128],"97":[2,128],"105":[2,128],"106":126,"107":[1,77],"108":[1,274],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,128],"125":[2,128],"126":[2,128],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,130],"4":[2,130],"28":[2,130],"29":[2,130],"48":[1,111],"56":[2,130],"59":[1,128],"77":[2,130],"82":[2,130],"92":[2,130],"97":[2,130],"105":[2,130],"106":126,"107":[1,77],"108":[1,275],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,130],"125":[2,130],"126":[2,130],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,136],"4":[2,136],"28":[2,136],"29":[2,136],"48":[2,136],"56":[2,136],"59":[2,136],"77":[2,136],"82":[2,136],"92":[2,136],"97":[2,136],"105":[2,136],"107":[2,136],"108":[2,136],"109":[2,136],"112":[2,136],"116":[2,136],"117":[2,136],"118":[2,136],"125":[2,136],"126":[2,136],"127":[2,136],"129":[2,136],"130":[2,136],"132":[2,136],"133":[2,136],"136":[2,136],"137":[2,136],"138":[2,136],"139":[2,136],"140":[2,136],"141":[2,136],"142":[2,136],"143":[2,136],"144":[2,136],"145":[2,136],"146":[2,136],"147":[2,136],"148":[2,136],"149":[2,136],"150":[2,136],"151":[2,136],"152":[2,136],"153":[2,136],"154":[2,136],"155":[2,136],"156":[2,136],"157":[2,136],"158":[2,136],"159":[2,136],"160":[2,136],"161":[2,136]},{"1":[2,137],"4":[2,137],"28":[2,137],"29":[2,137],"48":[1,111],"56":[2,137],"59":[1,128],"77":[2,137],"82":[2,137],"92":[2,137],"97":[2,137],"105":[2,137],"106":126,"107":[1,77],"108":[2,137],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,137],"125":[2,137],"126":[2,137],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,54],"28":[2,54],"55":276,"56":[1,277],"82":[2,54]},{"4":[2,86],"28":[2,86],"29":[2,86],"56":[2,86],"82":[2,86]},{"4":[2,43],"28":[2,43],"29":[2,43],"45":[1,278],"56":[2,43],"82":[2,43]},{"4":[2,44],"28":[2,44],"29":[2,44],"45":[1,279],"56":[2,44],"82":[2,44]},{"1":[2,6],"4":[2,6],"29":[2,6]},{"1":[2,28],"4":[2,28],"28":[2,28],"29":[2,28],"48":[2,28],"56":[2,28],"59":[2,28],"77":[2,28],"82":[2,28],"92":[2,28],"97":[2,28],"101":[2,28],"102":[2,28],"105":[2,28],"107":[2,28],"108":[2,28],"109":[2,28],"112":[2,28],"116":[2,28],"117":[2,28],"118":[2,28],"121":[2,28],"123":[2,28],"125":[2,28],"126":[2,28],"127":[2,28],"129":[2,28],"130":[2,28],"132":[2,28],"133":[2,28],"136":[2,28],"137":[2,28],"138":[2,28],"139":[2,28],"140":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"148":[2,28],"149":[2,28],"150":[2,28],"151":[2,28],"152":[2,28],"153":[2,28],"154":[2,28],"155":[2,28],"156":[2,28],"157":[2,28],"158":[2,28],"159":[2,28],"160":[2,28],"161":[2,28]},{"1":[2,181],"4":[2,181],"28":[2,181],"29":[2,181],"48":[1,111],"56":[2,181],"59":[2,181],"77":[2,181],"82":[2,181],"92":[2,181],"97":[2,181],"105":[2,181],"106":126,"107":[2,181],"108":[2,181],"109":[2,181],"112":[2,181],"116":[2,181],"117":[2,181],"118":[2,181],"125":[2,181],"126":[2,181],"127":[1,123],"129":[2,181],"130":[2,181],"132":[1,90],"133":[1,91],"136":[2,181],"137":[2,181],"138":[2,181],"139":[2,181],"140":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"148":[2,181],"149":[2,181],"150":[2,181],"151":[2,181],"152":[2,181],"153":[2,181],"154":[2,181],"155":[2,181],"156":[2,181],"157":[2,181],"158":[2,181],"159":[2,181],"160":[2,181],"161":[2,181]},{"1":[2,182],"4":[2,182],"28":[2,182],"29":[2,182],"48":[1,111],"56":[2,182],"59":[2,182],"77":[2,182],"82":[2,182],"92":[2,182],"97":[2,182],"105":[2,182],"106":126,"107":[2,182],"108":[2,182],"109":[2,182],"112":[2,182],"116":[2,182],"117":[2,182],"118":[2,182],"125":[2,182],"126":[2,182],"127":[1,123],"129":[2,182],"130":[2,182],"132":[1,90],"133":[1,91],"136":[2,182],"137":[2,182],"138":[2,182],"139":[2,182],"140":[2,182],"141":[2,182],"142":[2,182],"143":[2,182],"144":[2,182],"145":[2,182],"146":[2,182],"147":[2,182],"148":[2,182],"149":[2,182],"150":[2,182],"151":[2,182],"152":[2,182],"153":[2,182],"154":[2,182],"155":[2,182],"156":[2,182],"157":[2,182],"158":[2,182],"159":[2,182],"160":[2,182],"161":[2,182]},{"1":[2,183],"4":[2,183],"28":[2,183],"29":[2,183],"48":[1,111],"56":[2,183],"59":[2,183],"77":[2,183],"82":[2,183],"92":[2,183],"97":[2,183],"105":[2,183],"106":126,"107":[2,183],"108":[2,183],"109":[2,183],"112":[2,183],"116":[2,183],"117":[2,183],"118":[2,183],"125":[2,183],"126":[2,183],"127":[1,123],"129":[2,183],"130":[2,183],"132":[1,90],"133":[1,91],"136":[2,183],"137":[2,183],"138":[2,183],"139":[2,183],"140":[2,183],"141":[2,183],"142":[2,183],"143":[2,183],"144":[2,183],"145":[2,183],"146":[2,183],"147":[2,183],"148":[2,183],"149":[2,183],"150":[2,183],"151":[2,183],"152":[2,183],"153":[2,183],"154":[2,183],"155":[2,183],"156":[2,183],"157":[2,183],"158":[2,183],"159":[2,183],"160":[2,183],"161":[2,183]},{"1":[2,184],"4":[2,184],"28":[2,184],"29":[2,184],"48":[1,111],"56":[2,184],"59":[2,184],"77":[2,184],"82":[2,184],"92":[2,184],"97":[2,184],"105":[2,184],"106":126,"107":[2,184],"108":[2,184],"109":[2,184],"112":[2,184],"116":[2,184],"117":[2,184],"118":[2,184],"125":[2,184],"126":[2,184],"127":[1,123],"129":[2,184],"130":[2,184],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,184],"140":[2,184],"141":[2,184],"142":[2,184],"143":[2,184],"144":[2,184],"145":[2,184],"146":[2,184],"147":[2,184],"148":[2,184],"149":[2,184],"150":[2,184],"151":[2,184],"152":[2,184],"153":[2,184],"154":[2,184],"155":[2,184],"156":[2,184],"157":[2,184],"158":[2,184],"159":[2,184],"160":[2,184],"161":[2,184]},{"1":[2,185],"4":[2,185],"28":[2,185],"29":[2,185],"48":[1,111],"56":[2,185],"59":[2,185],"77":[2,185],"82":[2,185],"92":[2,185],"97":[2,185],"105":[2,185],"106":126,"107":[2,185],"108":[2,185],"109":[2,185],"112":[2,185],"116":[2,185],"117":[2,185],"118":[2,185],"125":[2,185],"126":[2,185],"127":[1,123],"129":[2,185],"130":[2,185],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,185],"140":[2,185],"141":[2,185],"142":[2,185],"143":[2,185],"144":[2,185],"145":[2,185],"146":[2,185],"147":[2,185],"148":[2,185],"149":[2,185],"150":[2,185],"151":[2,185],"152":[2,185],"153":[2,185],"154":[2,185],"155":[2,185],"156":[2,185],"157":[2,185],"158":[2,185],"159":[2,185],"160":[2,185],"161":[2,185]},{"1":[2,186],"4":[2,186],"28":[2,186],"29":[2,186],"48":[1,111],"56":[2,186],"59":[2,186],"77":[2,186],"82":[2,186],"92":[2,186],"97":[2,186],"105":[2,186],"106":126,"107":[2,186],"108":[2,186],"109":[2,186],"112":[2,186],"116":[2,186],"117":[2,186],"118":[2,186],"125":[2,186],"126":[2,186],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,186],"140":[2,186],"141":[2,186],"142":[2,186],"143":[2,186],"144":[2,186],"145":[2,186],"146":[2,186],"147":[2,186],"148":[2,186],"149":[2,186],"150":[2,186],"151":[2,186],"152":[2,186],"153":[2,186],"154":[2,186],"155":[2,186],"156":[2,186],"157":[2,186],"158":[2,186],"159":[2,186],"160":[2,186],"161":[2,186]},{"1":[2,187],"4":[2,187],"28":[2,187],"29":[2,187],"48":[1,111],"56":[2,187],"59":[2,187],"77":[2,187],"82":[2,187],"92":[2,187],"97":[2,187],"105":[2,187],"106":126,"107":[2,187],"108":[2,187],"109":[2,187],"112":[2,187],"116":[2,187],"117":[2,187],"118":[2,187],"125":[2,187],"126":[2,187],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,187],"140":[2,187],"141":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"146":[2,187],"147":[2,187],"148":[2,187],"149":[2,187],"150":[2,187],"151":[2,187],"152":[2,187],"153":[2,187],"154":[2,187],"155":[2,187],"156":[2,187],"157":[2,187],"158":[2,187],"159":[2,187],"160":[2,187],"161":[2,187]},{"1":[2,188],"4":[2,188],"28":[2,188],"29":[2,188],"48":[1,111],"56":[2,188],"59":[2,188],"77":[2,188],"82":[2,188],"92":[2,188],"97":[2,188],"105":[2,188],"106":126,"107":[2,188],"108":[2,188],"109":[2,188],"112":[2,188],"116":[2,188],"117":[2,188],"118":[2,188],"125":[2,188],"126":[2,188],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,188],"140":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"147":[2,188],"148":[2,188],"149":[2,188],"150":[2,188],"151":[2,188],"152":[2,188],"153":[2,188],"154":[2,188],"155":[2,188],"156":[2,188],"157":[2,188],"158":[2,188],"159":[2,188],"160":[2,188],"161":[2,188]},{"1":[2,189],"4":[2,189],"28":[2,189],"29":[2,189],"48":[1,111],"56":[2,189],"59":[2,189],"77":[2,189],"82":[2,189],"92":[2,189],"97":[2,189],"105":[2,189],"106":126,"107":[2,189],"108":[2,189],"109":[2,189],"112":[2,189],"116":[2,189],"117":[2,189],"118":[2,189],"125":[2,189],"126":[2,189],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"148":[2,189],"149":[2,189],"150":[2,189],"151":[2,189],"152":[2,189],"153":[2,189],"154":[2,189],"155":[2,189],"156":[2,189],"157":[2,189],"158":[2,189],"159":[2,189],"160":[2,189],"161":[2,189]},{"1":[2,190],"4":[2,190],"28":[2,190],"29":[2,190],"48":[1,111],"56":[2,190],"59":[2,190],"77":[2,190],"82":[2,190],"92":[2,190],"97":[2,190],"105":[2,190],"106":126,"107":[2,190],"108":[2,190],"109":[2,190],"112":[2,190],"116":[2,190],"117":[2,190],"118":[2,190],"125":[2,190],"126":[2,190],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"148":[2,190],"149":[2,190],"150":[2,190],"151":[2,190],"152":[2,190],"153":[2,190],"154":[2,190],"155":[2,190],"156":[2,190],"157":[2,190],"158":[2,190],"159":[2,190],"160":[2,190],"161":[2,190]},{"1":[2,191],"4":[2,191],"28":[2,191],"29":[2,191],"48":[1,111],"56":[2,191],"59":[2,191],"77":[2,191],"82":[2,191],"92":[2,191],"97":[2,191],"105":[2,191],"106":126,"107":[2,191],"108":[2,191],"109":[2,191],"112":[2,191],"116":[2,191],"117":[2,191],"118":[2,191],"125":[2,191],"126":[2,191],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"148":[2,191],"149":[2,191],"150":[2,191],"151":[2,191],"152":[2,191],"153":[2,191],"154":[2,191],"155":[2,191],"156":[2,191],"157":[2,191],"158":[2,191],"159":[2,191],"160":[2,191],"161":[2,191]},{"1":[2,192],"4":[2,192],"28":[2,192],"29":[2,192],"48":[1,111],"56":[2,192],"59":[2,192],"77":[2,192],"82":[2,192],"92":[2,192],"97":[2,192],"105":[2,192],"106":126,"107":[2,192],"108":[2,192],"109":[2,192],"112":[2,192],"116":[2,192],"117":[2,192],"118":[2,192],"125":[2,192],"126":[2,192],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,192],"146":[2,192],"147":[2,192],"148":[2,192],"149":[2,192],"150":[2,192],"151":[2,192],"152":[2,192],"153":[2,192],"154":[2,192],"155":[2,192],"156":[2,192],"157":[2,192],"158":[2,192],"159":[2,192],"160":[2,192],"161":[2,192]},{"1":[2,193],"4":[2,193],"28":[2,193],"29":[2,193],"48":[1,111],"56":[2,193],"59":[2,193],"77":[2,193],"82":[2,193],"92":[2,193],"97":[2,193],"105":[2,193],"106":126,"107":[2,193],"108":[2,193],"109":[2,193],"112":[2,193],"116":[2,193],"117":[2,193],"118":[2,193],"125":[2,193],"126":[2,193],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,193],"146":[2,193],"147":[2,193],"148":[2,193],"149":[2,193],"150":[2,193],"151":[2,193],"152":[2,193],"153":[2,193],"154":[2,193],"155":[2,193],"156":[2,193],"157":[2,193],"158":[2,193],"159":[2,193],"160":[2,193],"161":[2,193]},{"1":[2,194],"4":[2,194],"28":[2,194],"29":[2,194],"48":[1,111],"56":[2,194],"59":[2,194],"77":[2,194],"82":[2,194],"92":[2,194],"97":[2,194],"105":[2,194],"106":126,"107":[2,194],"108":[2,194],"109":[2,194],"112":[2,194],"116":[2,194],"117":[2,194],"118":[2,194],"125":[2,194],"126":[2,194],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,194],"146":[2,194],"147":[2,194],"148":[2,194],"149":[2,194],"150":[2,194],"151":[2,194],"152":[2,194],"153":[2,194],"154":[2,194],"155":[2,194],"156":[2,194],"157":[2,194],"158":[2,194],"159":[2,194],"160":[2,194],"161":[2,194]},{"1":[2,195],"4":[2,195],"28":[2,195],"29":[2,195],"48":[1,111],"56":[2,195],"59":[2,195],"77":[2,195],"82":[2,195],"92":[2,195],"97":[2,195],"105":[2,195],"106":126,"107":[2,195],"108":[2,195],"109":[2,195],"112":[2,195],"116":[2,195],"117":[2,195],"118":[2,195],"125":[2,195],"126":[2,195],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,195],"146":[2,195],"147":[2,195],"148":[2,195],"149":[2,195],"150":[2,195],"151":[2,195],"152":[2,195],"153":[2,195],"154":[2,195],"155":[2,195],"156":[2,195],"157":[2,195],"158":[2,195],"159":[2,195],"160":[2,195],"161":[2,195]},{"1":[2,196],"4":[2,196],"28":[2,196],"29":[2,196],"48":[1,111],"56":[2,196],"59":[2,196],"77":[2,196],"82":[2,196],"92":[2,196],"97":[2,196],"105":[2,196],"106":126,"107":[2,196],"108":[2,196],"109":[2,196],"112":[2,196],"116":[2,196],"117":[2,196],"118":[2,196],"125":[2,196],"126":[2,196],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,196],"150":[2,196],"151":[2,196],"152":[2,196],"153":[2,196],"154":[2,196],"155":[2,196],"156":[2,196],"157":[2,196],"158":[2,196],"159":[2,196],"160":[2,196],"161":[1,120]},{"1":[2,197],"4":[2,197],"28":[2,197],"29":[2,197],"48":[1,111],"56":[2,197],"59":[2,197],"77":[2,197],"82":[2,197],"92":[2,197],"97":[2,197],"105":[2,197],"106":126,"107":[2,197],"108":[2,197],"109":[2,197],"112":[2,197],"116":[2,197],"117":[2,197],"118":[2,197],"125":[2,197],"126":[2,197],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,197],"150":[2,197],"151":[2,197],"152":[2,197],"153":[2,197],"154":[2,197],"155":[2,197],"156":[2,197],"157":[2,197],"158":[2,197],"159":[2,197],"160":[2,197],"161":[1,120]},{"1":[2,198],"4":[2,198],"28":[2,198],"29":[2,198],"48":[1,111],"56":[2,198],"59":[2,198],"77":[2,198],"82":[2,198],"92":[2,198],"97":[2,198],"105":[2,198],"106":126,"107":[2,198],"108":[2,198],"109":[2,198],"112":[2,198],"116":[2,198],"117":[2,198],"118":[2,198],"125":[2,198],"126":[2,198],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[2,198],"152":[2,198],"153":[2,198],"154":[2,198],"155":[2,198],"156":[2,198],"157":[2,198],"158":[2,198],"159":[2,198],"160":[2,198],"161":[1,120]},{"1":[2,199],"4":[2,199],"28":[2,199],"29":[2,199],"48":[1,111],"56":[2,199],"59":[2,199],"77":[2,199],"82":[2,199],"92":[2,199],"97":[2,199],"105":[2,199],"106":126,"107":[2,199],"108":[2,199],"109":[2,199],"112":[2,199],"116":[2,199],"117":[2,199],"118":[2,199],"125":[2,199],"126":[2,199],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[2,199],"152":[2,199],"153":[2,199],"154":[2,199],"155":[2,199],"156":[2,199],"157":[2,199],"158":[2,199],"159":[2,199],"160":[2,199],"161":[1,120]},{"1":[2,200],"4":[2,200],"28":[2,200],"29":[2,200],"48":[2,200],"56":[2,200],"59":[2,200],"77":[2,200],"82":[2,200],"92":[2,200],"97":[2,200],"105":[2,200],"106":126,"107":[2,200],"108":[2,200],"109":[2,200],"112":[2,200],"116":[2,200],"117":[2,200],"118":[2,200],"125":[2,200],"126":[2,200],"127":[2,200],"129":[2,200],"130":[2,200],"132":[2,200],"133":[2,200],"136":[2,200],"137":[2,200],"138":[2,200],"139":[2,200],"140":[2,200],"141":[2,200],"142":[2,200],"143":[2,200],"144":[2,200],"145":[2,200],"146":[2,200],"147":[2,200],"148":[2,200],"149":[2,200],"150":[2,200],"151":[2,200],"152":[2,200],"153":[2,200],"154":[2,200],"155":[2,200],"156":[2,200],"157":[2,200],"158":[2,200],"159":[2,200],"160":[2,200],"161":[2,200]},{"1":[2,201],"4":[2,201],"28":[2,201],"29":[2,201],"48":[1,111],"56":[2,201],"59":[2,201],"77":[2,201],"82":[2,201],"92":[2,201],"97":[2,201],"105":[2,201],"106":126,"107":[2,201],"108":[2,201],"109":[2,201],"112":[2,201],"116":[2,201],"117":[2,201],"118":[2,201],"125":[2,201],"126":[2,201],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,202],"4":[2,202],"28":[2,202],"29":[2,202],"48":[1,111],"56":[2,202],"59":[2,202],"77":[2,202],"82":[2,202],"92":[2,202],"97":[2,202],"105":[2,202],"106":126,"107":[2,202],"108":[2,202],"109":[2,202],"112":[2,202],"116":[2,202],"117":[2,202],"118":[2,202],"125":[2,202],"126":[2,202],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,203],"4":[2,203],"28":[2,203],"29":[2,203],"48":[1,111],"56":[2,203],"59":[2,203],"77":[2,203],"82":[2,203],"92":[2,203],"97":[2,203],"105":[2,203],"106":126,"107":[2,203],"108":[2,203],"109":[2,203],"112":[2,203],"116":[2,203],"117":[2,203],"118":[2,203],"125":[2,203],"126":[2,203],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,204],"4":[2,204],"28":[2,204],"29":[2,204],"48":[1,111],"56":[2,204],"59":[2,204],"77":[2,204],"82":[2,204],"92":[2,204],"97":[2,204],"105":[2,204],"106":126,"107":[2,204],"108":[2,204],"109":[2,204],"112":[2,204],"116":[2,204],"117":[2,204],"118":[2,204],"125":[2,204],"126":[2,204],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,205],"4":[2,205],"28":[2,205],"29":[2,205],"48":[1,111],"56":[2,205],"59":[2,205],"77":[2,205],"82":[2,205],"92":[2,205],"97":[2,205],"105":[2,205],"106":126,"107":[2,205],"108":[2,205],"109":[2,205],"112":[2,205],"116":[2,205],"117":[2,205],"118":[2,205],"125":[2,205],"126":[2,205],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,206],"4":[2,206],"28":[2,206],"29":[2,206],"48":[1,111],"56":[2,206],"59":[2,206],"77":[2,206],"82":[2,206],"92":[2,206],"97":[2,206],"105":[2,206],"106":126,"107":[2,206],"108":[2,206],"109":[2,206],"112":[2,206],"116":[2,206],"117":[2,206],"118":[2,206],"125":[2,206],"126":[2,206],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,207],"4":[2,207],"28":[2,207],"29":[2,207],"48":[1,111],"56":[2,207],"59":[2,207],"77":[2,207],"82":[2,207],"92":[2,207],"97":[2,207],"105":[2,207],"106":126,"107":[2,207],"108":[2,207],"109":[2,207],"112":[2,207],"116":[2,207],"117":[2,207],"118":[2,207],"125":[2,207],"126":[2,207],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,208],"4":[2,208],"28":[2,208],"29":[2,208],"48":[1,111],"56":[2,208],"59":[2,208],"77":[2,208],"82":[2,208],"92":[2,208],"97":[2,208],"105":[2,208],"106":126,"107":[2,208],"108":[2,208],"109":[2,208],"112":[2,208],"116":[2,208],"117":[2,208],"118":[2,208],"125":[2,208],"126":[2,208],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,209],"4":[2,209],"28":[2,209],"29":[2,209],"48":[1,111],"56":[2,209],"59":[2,209],"77":[2,209],"82":[2,209],"92":[2,209],"97":[2,209],"105":[2,209],"106":126,"107":[2,209],"108":[2,209],"109":[2,209],"112":[2,209],"116":[2,209],"117":[2,209],"118":[2,209],"125":[2,209],"126":[2,209],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,209],"150":[2,209],"151":[2,209],"152":[2,209],"153":[2,209],"154":[2,209],"155":[2,209],"156":[2,209],"157":[2,209],"158":[2,209],"159":[2,209],"160":[2,209],"161":[1,120]},{"1":[2,210],"4":[2,210],"28":[2,210],"29":[2,210],"48":[1,111],"56":[2,210],"59":[1,128],"77":[2,210],"82":[2,210],"92":[2,210],"97":[2,210],"105":[2,210],"106":126,"107":[2,210],"108":[2,210],"109":[2,210],"112":[2,210],"116":[1,121],"117":[1,122],"118":[2,210],"125":[2,210],"126":[2,210],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,211],"4":[2,211],"28":[2,211],"29":[2,211],"48":[1,111],"56":[2,211],"59":[1,128],"77":[2,211],"82":[2,211],"92":[2,211],"97":[2,211],"105":[2,211],"106":126,"107":[2,211],"108":[2,211],"109":[2,211],"112":[2,211],"116":[1,121],"117":[1,122],"118":[2,211],"125":[2,211],"126":[2,211],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"8":280,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":281,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,167],"4":[2,167],"28":[2,167],"29":[2,167],"48":[1,111],"56":[2,167],"59":[1,128],"77":[2,167],"82":[2,167],"92":[2,167],"97":[2,167],"105":[2,167],"106":126,"107":[1,77],"108":[2,167],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,167],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,169],"4":[2,169],"28":[2,169],"29":[2,169],"48":[1,111],"56":[2,169],"59":[1,128],"77":[2,169],"82":[2,169],"92":[2,169],"97":[2,169],"105":[2,169],"106":126,"107":[1,77],"108":[2,169],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,169],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"114":282,"116":[1,258],"117":[1,259]},{"59":[1,283]},{"1":[2,166],"4":[2,166],"28":[2,166],"29":[2,166],"48":[1,111],"56":[2,166],"59":[1,128],"77":[2,166],"82":[2,166],"92":[2,166],"97":[2,166],"105":[2,166],"106":126,"107":[1,77],"108":[2,166],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,166],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,168],"4":[2,168],"28":[2,168],"29":[2,168],"48":[1,111],"56":[2,168],"59":[1,128],"77":[2,168],"82":[2,168],"92":[2,168],"97":[2,168],"105":[2,168],"106":126,"107":[1,77],"108":[2,168],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,168],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"114":284,"116":[1,258],"117":[1,259]},{"4":[2,54],"28":[2,54],"55":285,"56":[1,271],"92":[2,54]},{"4":[2,116],"28":[2,116],"29":[2,116],"48":[1,111],"56":[2,116],"59":[1,128],"92":[2,116],"97":[2,116],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,75],"4":[2,75],"28":[2,75],"29":[2,75],"45":[2,75],"48":[2,75],"56":[2,75],"59":[2,75],"70":[2,75],"71":[2,75],"72":[2,75],"73":[2,75],"76":[2,75],"77":[2,75],"78":[2,75],"79":[2,75],"82":[2,75],"84":[2,75],"90":[2,75],"92":[2,75],"97":[2,75],"105":[2,75],"107":[2,75],"108":[2,75],"109":[2,75],"112":[2,75],"116":[2,75],"117":[2,75],"118":[2,75],"125":[2,75],"126":[2,75],"127":[2,75],"129":[2,75],"130":[2,75],"132":[2,75],"133":[2,75],"136":[2,75],"137":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75]},{"1":[2,76],"4":[2,76],"28":[2,76],"29":[2,76],"45":[2,76],"48":[2,76],"56":[2,76],"59":[2,76],"70":[2,76],"71":[2,76],"72":[2,76],"73":[2,76],"76":[2,76],"77":[2,76],"78":[2,76],"79":[2,76],"82":[2,76],"84":[2,76],"90":[2,76],"92":[2,76],"97":[2,76],"105":[2,76],"107":[2,76],"108":[2,76],"109":[2,76],"112":[2,76],"116":[2,76],"117":[2,76],"118":[2,76],"125":[2,76],"126":[2,76],"127":[2,76],"129":[2,76],"130":[2,76],"132":[2,76],"133":[2,76],"136":[2,76],"137":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76]},{"1":[2,78],"4":[2,78],"28":[2,78],"29":[2,78],"45":[2,78],"48":[2,78],"56":[2,78],"59":[2,78],"70":[2,78],"71":[2,78],"72":[2,78],"73":[2,78],"76":[2,78],"77":[2,78],"78":[2,78],"79":[2,78],"82":[2,78],"84":[2,78],"90":[2,78],"92":[2,78],"97":[2,78],"105":[2,78],"107":[2,78],"108":[2,78],"109":[2,78],"112":[2,78],"116":[2,78],"117":[2,78],"118":[2,78],"125":[2,78],"126":[2,78],"127":[2,78],"129":[2,78],"130":[2,78],"132":[2,78],"133":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78],"151":[2,78],"152":[2,78],"153":[2,78],"154":[2,78],"155":[2,78],"156":[2,78],"157":[2,78],"158":[2,78],"159":[2,78],"160":[2,78],"161":[2,78]},{"48":[1,111],"59":[1,287],"77":[1,286],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,82],"4":[2,82],"28":[2,82],"29":[2,82],"45":[2,82],"48":[2,82],"56":[2,82],"59":[2,82],"70":[2,82],"71":[2,82],"72":[2,82],"73":[2,82],"76":[2,82],"77":[2,82],"78":[2,82],"79":[2,82],"82":[2,82],"84":[2,82],"90":[2,82],"92":[2,82],"97":[2,82],"105":[2,82],"107":[2,82],"108":[2,82],"109":[2,82],"112":[2,82],"116":[2,82],"117":[2,82],"118":[2,82],"125":[2,82],"126":[2,82],"127":[2,82],"129":[2,82],"130":[2,82],"132":[2,82],"133":[2,82],"136":[2,82],"137":[2,82],"138":[2,82],"139":[2,82],"140":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82],"151":[2,82],"152":[2,82],"153":[2,82],"154":[2,82],"155":[2,82],"156":[2,82],"157":[2,82],"158":[2,82],"159":[2,82],"160":[2,82],"161":[2,82]},{"8":288,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,83],"4":[2,83],"28":[2,83],"29":[2,83],"45":[2,83],"48":[2,83],"56":[2,83],"59":[2,83],"70":[2,83],"71":[2,83],"72":[2,83],"73":[2,83],"76":[2,83],"77":[2,83],"78":[2,83],"79":[2,83],"82":[2,83],"84":[2,83],"90":[2,83],"92":[2,83],"97":[2,83],"105":[2,83],"107":[2,83],"108":[2,83],"109":[2,83],"112":[2,83],"116":[2,83],"117":[2,83],"118":[2,83],"125":[2,83],"126":[2,83],"127":[2,83],"129":[2,83],"130":[2,83],"132":[2,83],"133":[2,83],"136":[2,83],"137":[2,83],"138":[2,83],"139":[2,83],"140":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83],"151":[2,83],"152":[2,83],"153":[2,83],"154":[2,83],"155":[2,83],"156":[2,83],"157":[2,83],"158":[2,83],"159":[2,83],"160":[2,83],"161":[2,83]},{"1":[2,42],"4":[2,42],"28":[2,42],"29":[2,42],"48":[1,111],"56":[2,42],"59":[1,128],"77":[2,42],"82":[2,42],"92":[2,42],"97":[2,42],"105":[2,42],"106":126,"107":[1,77],"108":[2,42],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,42],"125":[2,42],"126":[2,42],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"52":289,"53":[1,73],"54":[1,74]},{"57":290,"58":[1,154]},{"59":[1,291]},{"8":292,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,164],"4":[2,164],"28":[2,164],"29":[2,164],"48":[2,164],"56":[2,164],"59":[2,164],"77":[2,164],"82":[2,164],"92":[2,164],"97":[2,164],"105":[2,164],"107":[2,164],"108":[2,164],"109":[2,164],"112":[2,164],"116":[2,164],"117":[2,164],"118":[2,164],"121":[2,164],"125":[2,164],"126":[2,164],"127":[2,164],"129":[2,164],"130":[2,164],"132":[2,164],"133":[2,164],"136":[2,164],"137":[2,164],"138":[2,164],"139":[2,164],"140":[2,164],"141":[2,164],"142":[2,164],"143":[2,164],"144":[2,164],"145":[2,164],"146":[2,164],"147":[2,164],"148":[2,164],"149":[2,164],"150":[2,164],"151":[2,164],"152":[2,164],"153":[2,164],"154":[2,164],"155":[2,164],"156":[2,164],"157":[2,164],"158":[2,164],"159":[2,164],"160":[2,164],"161":[2,164]},{"1":[2,122],"4":[2,122],"28":[2,122],"29":[2,122],"48":[2,122],"56":[2,122],"59":[2,122],"77":[2,122],"82":[2,122],"92":[2,122],"97":[2,122],"101":[1,293],"105":[2,122],"107":[2,122],"108":[2,122],"109":[2,122],"112":[2,122],"116":[2,122],"117":[2,122],"118":[2,122],"125":[2,122],"126":[2,122],"127":[2,122],"129":[2,122],"130":[2,122],"132":[2,122],"133":[2,122],"136":[2,122],"137":[2,122],"138":[2,122],"139":[2,122],"140":[2,122],"141":[2,122],"142":[2,122],"143":[2,122],"144":[2,122],"145":[2,122],"146":[2,122],"147":[2,122],"148":[2,122],"149":[2,122],"150":[2,122],"151":[2,122],"152":[2,122],"153":[2,122],"154":[2,122],"155":[2,122],"156":[2,122],"157":[2,122],"158":[2,122],"159":[2,122],"160":[2,122],"161":[2,122]},{"6":294,"28":[1,6]},{"30":295,"31":[1,85]},{"6":296,"28":[1,6]},{"8":297,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":298,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"115":299},{"120":300,"122":263,"123":[1,264]},{"29":[1,301],"121":[1,302],"122":303,"123":[1,264]},{"29":[2,157],"121":[2,157],"123":[2,157]},{"8":305,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"98":304,"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,102],"4":[2,102],"28":[2,102],"29":[2,102],"48":[2,102],"56":[2,102],"59":[2,102],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,102],"78":[1,143],"79":[1,144],"82":[2,102],"89":133,"90":[1,135],"92":[2,102],"97":[2,102],"105":[2,102],"107":[2,102],"108":[2,102],"109":[2,102],"112":[2,102],"116":[2,102],"117":[2,102],"118":[2,102],"125":[2,102],"126":[2,102],"127":[2,102],"129":[2,102],"130":[2,102],"132":[2,102],"133":[2,102],"136":[2,102],"137":[2,102],"138":[2,102],"139":[2,102],"140":[2,102],"141":[2,102],"142":[2,102],"143":[2,102],"144":[2,102],"145":[2,102],"146":[2,102],"147":[2,102],"148":[2,102],"149":[2,102],"150":[2,102],"151":[2,102],"152":[2,102],"153":[2,102],"154":[2,102],"155":[2,102],"156":[2,102],"157":[2,102],"158":[2,102],"159":[2,102],"160":[2,102],"161":[2,102]},{"14":306,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":151,"62":179,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"4":[2,96],"29":[2,96],"30":195,"31":[1,85],"32":196,"33":[1,83],"34":[1,84],"46":309,"63":310,"85":307,"86":308,"95":[1,311]},{"1":[2,127],"4":[2,127],"28":[2,127],"29":[2,127],"48":[2,127],"56":[2,127],"59":[2,127],"70":[2,127],"71":[2,127],"72":[2,127],"73":[2,127],"76":[2,127],"77":[2,127],"78":[2,127],"79":[2,127],"82":[2,127],"90":[2,127],"92":[2,127],"97":[2,127],"105":[2,127],"107":[2,127],"108":[2,127],"109":[2,127],"112":[2,127],"116":[2,127],"117":[2,127],"118":[2,127],"125":[2,127],"126":[2,127],"127":[2,127],"129":[2,127],"130":[2,127],"132":[2,127],"133":[2,127],"136":[2,127],"137":[2,127],"138":[2,127],"139":[2,127],"140":[2,127],"141":[2,127],"142":[2,127],"143":[2,127],"144":[2,127],"145":[2,127],"146":[2,127],"147":[2,127],"148":[2,127],"149":[2,127],"150":[2,127],"151":[2,127],"152":[2,127],"153":[2,127],"154":[2,127],"155":[2,127],"156":[2,127],"157":[2,127],"158":[2,127],"159":[2,127],"160":[2,127],"161":[2,127]},{"59":[1,312]},{"4":[1,314],"28":[1,315],"97":[1,313]},{"4":[2,55],"8":316,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,55],"29":[2,55],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"92":[2,55],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,55],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,161],"4":[2,161],"28":[2,161],"29":[2,161],"48":[2,161],"56":[2,161],"59":[2,161],"77":[2,161],"82":[2,161],"92":[2,161],"97":[2,161],"105":[2,161],"107":[2,161],"108":[2,161],"109":[2,161],"112":[2,161],"116":[2,161],"117":[2,161],"118":[2,161],"121":[2,161],"125":[2,161],"126":[2,161],"127":[2,161],"129":[2,161],"130":[2,161],"132":[2,161],"133":[2,161],"136":[2,161],"137":[2,161],"138":[2,161],"139":[2,161],"140":[2,161],"141":[2,161],"142":[2,161],"143":[2,161],"144":[2,161],"145":[2,161],"146":[2,161],"147":[2,161],"148":[2,161],"149":[2,161],"150":[2,161],"151":[2,161],"152":[2,161],"153":[2,161],"154":[2,161],"155":[2,161],"156":[2,161],"157":[2,161],"158":[2,161],"159":[2,161],"160":[2,161],"161":[2,161]},{"1":[2,162],"4":[2,162],"28":[2,162],"29":[2,162],"48":[2,162],"56":[2,162],"59":[2,162],"77":[2,162],"82":[2,162],"92":[2,162],"97":[2,162],"105":[2,162],"107":[2,162],"108":[2,162],"109":[2,162],"112":[2,162],"116":[2,162],"117":[2,162],"118":[2,162],"121":[2,162],"125":[2,162],"126":[2,162],"127":[2,162],"129":[2,162],"130":[2,162],"132":[2,162],"133":[2,162],"136":[2,162],"137":[2,162],"138":[2,162],"139":[2,162],"140":[2,162],"141":[2,162],"142":[2,162],"143":[2,162],"144":[2,162],"145":[2,162],"146":[2,162],"147":[2,162],"148":[2,162],"149":[2,162],"150":[2,162],"151":[2,162],"152":[2,162],"153":[2,162],"154":[2,162],"155":[2,162],"156":[2,162],"157":[2,162],"158":[2,162],"159":[2,162],"160":[2,162],"161":[2,162]},{"8":317,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":318,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[1,320],"28":[1,321],"82":[1,319]},{"4":[2,55],"28":[2,55],"29":[2,55],"30":195,"31":[1,85],"32":196,"33":[1,83],"34":[1,84],"46":322,"82":[2,55]},{"8":323,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":324,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,212],"4":[2,212],"28":[2,212],"29":[2,212],"48":[1,111],"56":[2,212],"59":[2,212],"77":[2,212],"82":[2,212],"92":[2,212],"97":[2,212],"105":[2,212],"106":126,"107":[2,212],"108":[2,212],"109":[2,212],"112":[2,212],"116":[2,212],"117":[2,212],"118":[2,212],"125":[2,212],"126":[2,212],"129":[2,212],"130":[2,212],"136":[2,212],"137":[2,212],"138":[2,212],"139":[2,212],"140":[2,212],"141":[2,212],"142":[2,212],"143":[2,212],"144":[2,212],"145":[2,212],"146":[2,212],"147":[2,212],"148":[2,212],"149":[2,212],"150":[2,212],"151":[2,212],"152":[2,212],"153":[2,212],"154":[2,212],"155":[2,212],"156":[2,212],"157":[2,212],"158":[2,212],"159":[2,212],"160":[2,212],"161":[2,212]},{"1":[2,213],"4":[2,213],"28":[2,213],"29":[2,213],"48":[1,111],"56":[2,213],"59":[2,213],"77":[2,213],"82":[2,213],"92":[2,213],"97":[2,213],"105":[2,213],"106":126,"107":[2,213],"108":[2,213],"109":[2,213],"112":[2,213],"116":[2,213],"117":[2,213],"118":[2,213],"125":[2,213],"126":[2,213],"129":[2,213],"130":[2,213],"136":[2,213],"137":[2,213],"138":[2,213],"139":[2,213],"140":[2,213],"141":[2,213],"142":[2,213],"143":[2,213],"144":[2,213],"145":[2,213],"146":[2,213],"147":[2,213],"148":[2,213],"149":[2,213],"150":[2,213],"151":[2,213],"152":[2,213],"153":[2,213],"154":[2,213],"155":[2,213],"156":[2,213],"157":[2,213],"158":[2,213],"159":[2,213],"160":[2,213],"161":[2,213]},{"1":[2,139],"4":[2,139],"28":[2,139],"29":[2,139],"48":[2,139],"56":[2,139],"59":[2,139],"77":[2,139],"82":[2,139],"92":[2,139],"97":[2,139],"105":[2,139],"107":[2,139],"108":[2,139],"109":[2,139],"112":[2,139],"116":[2,139],"117":[2,139],"118":[2,139],"125":[2,139],"126":[2,139],"127":[2,139],"129":[2,139],"130":[2,139],"132":[2,139],"133":[2,139],"136":[2,139],"137":[2,139],"138":[2,139],"139":[2,139],"140":[2,139],"141":[2,139],"142":[2,139],"143":[2,139],"144":[2,139],"145":[2,139],"146":[2,139],"147":[2,139],"148":[2,139],"149":[2,139],"150":[2,139],"151":[2,139],"152":[2,139],"153":[2,139],"154":[2,139],"155":[2,139],"156":[2,139],"157":[2,139],"158":[2,139],"159":[2,139],"160":[2,139],"161":[2,139]},{"1":[2,61],"4":[2,61],"28":[2,61],"29":[2,61],"48":[2,61],"56":[2,61],"59":[2,61],"77":[2,61],"82":[2,61],"92":[2,61],"97":[2,61],"105":[2,61],"107":[2,61],"108":[2,61],"109":[2,61],"112":[2,61],"116":[2,61],"117":[2,61],"118":[2,61],"125":[2,61],"126":[2,61],"127":[2,61],"129":[2,61],"130":[2,61],"132":[2,61],"133":[2,61],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61],"161":[2,61]},{"1":[2,138],"4":[2,138],"28":[2,138],"29":[2,138],"48":[2,138],"56":[2,138],"59":[2,138],"77":[2,138],"82":[2,138],"92":[2,138],"97":[2,138],"105":[2,138],"107":[2,138],"108":[2,138],"109":[2,138],"112":[2,138],"116":[2,138],"117":[2,138],"118":[2,138],"125":[2,138],"126":[2,138],"127":[2,138],"129":[2,138],"130":[2,138],"132":[2,138],"133":[2,138],"136":[2,138],"137":[2,138],"138":[2,138],"139":[2,138],"140":[2,138],"141":[2,138],"142":[2,138],"143":[2,138],"144":[2,138],"145":[2,138],"146":[2,138],"147":[2,138],"148":[2,138],"149":[2,138],"150":[2,138],"151":[2,138],"152":[2,138],"153":[2,138],"154":[2,138],"155":[2,138],"156":[2,138],"157":[2,138],"158":[2,138],"159":[2,138],"160":[2,138],"161":[2,138]},{"4":[1,314],"28":[1,315],"92":[1,325]},{"1":[2,81],"4":[2,81],"28":[2,81],"29":[2,81],"45":[2,81],"48":[2,81],"56":[2,81],"59":[2,81],"70":[2,81],"71":[2,81],"72":[2,81],"73":[2,81],"76":[2,81],"77":[2,81],"78":[2,81],"79":[2,81],"82":[2,81],"84":[2,81],"90":[2,81],"92":[2,81],"97":[2,81],"105":[2,81],"107":[2,81],"108":[2,81],"109":[2,81],"112":[2,81],"116":[2,81],"117":[2,81],"118":[2,81],"125":[2,81],"126":[2,81],"127":[2,81],"129":[2,81],"130":[2,81],"132":[2,81],"133":[2,81],"136":[2,81],"137":[2,81],"138":[2,81],"139":[2,81],"140":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81],"151":[2,81],"152":[2,81],"153":[2,81],"154":[2,81],"155":[2,81],"156":[2,81],"157":[2,81],"158":[2,81],"159":[2,81],"160":[2,81],"161":[2,81]},{"59":[1,326]},{"48":[1,111],"59":[1,128],"77":[1,286],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"6":327,"28":[1,6]},{"51":[2,58],"56":[2,58],"59":[1,251]},{"59":[1,328]},{"6":329,"28":[1,6],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"6":330,"28":[1,6]},{"1":[2,123],"4":[2,123],"28":[2,123],"29":[2,123],"48":[2,123],"56":[2,123],"59":[2,123],"77":[2,123],"82":[2,123],"92":[2,123],"97":[2,123],"105":[2,123],"107":[2,123],"108":[2,123],"109":[2,123],"112":[2,123],"116":[2,123],"117":[2,123],"118":[2,123],"125":[2,123],"126":[2,123],"127":[2,123],"129":[2,123],"130":[2,123],"132":[2,123],"133":[2,123],"136":[2,123],"137":[2,123],"138":[2,123],"139":[2,123],"140":[2,123],"141":[2,123],"142":[2,123],"143":[2,123],"144":[2,123],"145":[2,123],"146":[2,123],"147":[2,123],"148":[2,123],"149":[2,123],"150":[2,123],"151":[2,123],"152":[2,123],"153":[2,123],"154":[2,123],"155":[2,123],"156":[2,123],"157":[2,123],"158":[2,123],"159":[2,123],"160":[2,123],"161":[2,123]},{"6":331,"28":[1,6]},{"1":[2,140],"4":[2,140],"28":[2,140],"29":[2,140],"48":[2,140],"56":[2,140],"59":[2,140],"77":[2,140],"82":[2,140],"92":[2,140],"97":[2,140],"105":[2,140],"107":[2,140],"108":[2,140],"109":[2,140],"112":[2,140],"116":[2,140],"117":[2,140],"118":[2,140],"125":[2,140],"126":[2,140],"127":[2,140],"129":[2,140],"130":[2,140],"132":[2,140],"133":[2,140],"136":[2,140],"137":[2,140],"138":[2,140],"139":[2,140],"140":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140],"148":[2,140],"149":[2,140],"150":[2,140],"151":[2,140],"152":[2,140],"153":[2,140],"154":[2,140],"155":[2,140],"156":[2,140],"157":[2,140],"158":[2,140],"159":[2,140],"160":[2,140],"161":[2,140]},{"1":[2,146],"4":[2,146],"28":[2,146],"29":[2,146],"48":[1,111],"56":[2,146],"59":[1,128],"77":[2,146],"82":[2,146],"92":[2,146],"97":[2,146],"105":[2,146],"106":126,"107":[2,146],"108":[1,332],"109":[2,146],"112":[2,146],"116":[1,121],"117":[1,122],"118":[1,333],"125":[2,146],"126":[2,146],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,147],"4":[2,147],"28":[2,147],"29":[2,147],"48":[1,111],"56":[2,147],"59":[1,128],"77":[2,147],"82":[2,147],"92":[2,147],"97":[2,147],"105":[2,147],"106":126,"107":[2,147],"108":[1,334],"109":[2,147],"112":[2,147],"116":[1,121],"117":[1,122],"118":[2,147],"125":[2,147],"126":[2,147],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"116":[2,145],"117":[2,145]},{"29":[1,335],"121":[1,336],"122":303,"123":[1,264]},{"1":[2,155],"4":[2,155],"28":[2,155],"29":[2,155],"48":[2,155],"56":[2,155],"59":[2,155],"77":[2,155],"82":[2,155],"92":[2,155],"97":[2,155],"105":[2,155],"107":[2,155],"108":[2,155],"109":[2,155],"112":[2,155],"116":[2,155],"117":[2,155],"118":[2,155],"125":[2,155],"126":[2,155],"127":[2,155],"129":[2,155],"130":[2,155],"132":[2,155],"133":[2,155],"136":[2,155],"137":[2,155],"138":[2,155],"139":[2,155],"140":[2,155],"141":[2,155],"142":[2,155],"143":[2,155],"144":[2,155],"145":[2,155],"146":[2,155],"147":[2,155],"148":[2,155],"149":[2,155],"150":[2,155],"151":[2,155],"152":[2,155],"153":[2,155],"154":[2,155],"155":[2,155],"156":[2,155],"157":[2,155],"158":[2,155],"159":[2,155],"160":[2,155],"161":[2,155]},{"6":337,"28":[1,6]},{"29":[2,158],"121":[2,158],"123":[2,158]},{"6":338,"28":[1,6],"56":[1,339]},{"28":[2,120],"48":[1,111],"56":[2,120],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,91],"4":[2,91],"28":[1,340],"29":[2,91],"48":[2,91],"56":[2,91],"59":[2,91],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,91],"78":[1,143],"79":[1,144],"82":[2,91],"89":133,"90":[1,135],"92":[2,91],"97":[2,91],"105":[2,91],"107":[2,91],"108":[2,91],"109":[2,91],"112":[2,91],"116":[2,91],"117":[2,91],"118":[2,91],"125":[2,91],"126":[2,91],"127":[2,91],"129":[2,91],"130":[2,91],"132":[2,91],"133":[2,91],"136":[2,91],"137":[2,91],"138":[2,91],"139":[2,91],"140":[2,91],"141":[2,91],"142":[2,91],"143":[2,91],"144":[2,91],"145":[2,91],"146":[2,91],"147":[2,91],"148":[2,91],"149":[2,91],"150":[2,91],"151":[2,91],"152":[2,91],"153":[2,91],"154":[2,91],"155":[2,91],"156":[2,91],"157":[2,91],"158":[2,91],"159":[2,91],"160":[2,91],"161":[2,91]},{"4":[1,342],"29":[1,341]},{"4":[2,97],"29":[2,97]},{"4":[2,94],"29":[2,94]},{"45":[1,343]},{"30":185,"31":[1,85]},{"8":344,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"59":[1,345],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,114],"4":[2,114],"28":[2,114],"29":[2,114],"45":[2,114],"48":[2,114],"56":[2,114],"59":[2,114],"70":[2,114],"71":[2,114],"72":[2,114],"73":[2,114],"76":[2,114],"77":[2,114],"78":[2,114],"79":[2,114],"82":[2,114],"90":[2,114],"92":[2,114],"97":[2,114],"105":[2,114],"107":[2,114],"108":[2,114],"109":[2,114],"112":[2,114],"116":[2,114],"117":[2,114],"118":[2,114],"125":[2,114],"126":[2,114],"127":[2,114],"129":[2,114],"130":[2,114],"132":[2,114],"133":[2,114],"136":[2,114],"137":[2,114],"138":[2,114],"139":[2,114],"140":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"147":[2,114],"148":[2,114],"149":[2,114],"150":[2,114],"151":[2,114],"152":[2,114],"153":[2,114],"154":[2,114],"155":[2,114],"156":[2,114],"157":[2,114],"158":[2,114],"159":[2,114],"160":[2,114],"161":[2,114]},{"8":346,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,115],"8":240,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,115],"29":[2,115],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,115],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"91":347,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,117],"28":[2,117],"29":[2,117],"48":[1,111],"56":[2,117],"59":[1,128],"92":[2,117],"97":[2,117],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,129],"4":[2,129],"28":[2,129],"29":[2,129],"48":[1,111],"56":[2,129],"59":[1,128],"77":[2,129],"82":[2,129],"92":[2,129],"97":[2,129],"105":[2,129],"106":126,"107":[1,77],"108":[2,129],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,129],"125":[2,129],"126":[2,129],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,131],"4":[2,131],"28":[2,131],"29":[2,131],"48":[1,111],"56":[2,131],"59":[1,128],"77":[2,131],"82":[2,131],"92":[2,131],"97":[2,131],"105":[2,131],"106":126,"107":[1,77],"108":[2,131],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,131],"125":[2,131],"126":[2,131],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,84],"4":[2,84],"28":[2,84],"29":[2,84],"45":[2,84],"48":[2,84],"56":[2,84],"59":[2,84],"70":[2,84],"71":[2,84],"72":[2,84],"73":[2,84],"76":[2,84],"77":[2,84],"78":[2,84],"79":[2,84],"82":[2,84],"90":[2,84],"92":[2,84],"97":[2,84],"105":[2,84],"107":[2,84],"108":[2,84],"109":[2,84],"112":[2,84],"116":[2,84],"117":[2,84],"118":[2,84],"125":[2,84],"126":[2,84],"127":[2,84],"129":[2,84],"130":[2,84],"132":[2,84],"133":[2,84],"136":[2,84],"137":[2,84],"138":[2,84],"139":[2,84],"140":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84],"151":[2,84],"152":[2,84],"153":[2,84],"154":[2,84],"155":[2,84],"156":[2,84],"157":[2,84],"158":[2,84],"159":[2,84],"160":[2,84],"161":[2,84]},{"30":195,"31":[1,85],"32":196,"33":[1,83],"34":[1,84],"46":348},{"4":[2,85],"28":[2,85],"29":[2,85],"30":195,"31":[1,85],"32":196,"33":[1,83],"34":[1,84],"46":194,"56":[2,85],"81":349},{"4":[2,87],"28":[2,87],"29":[2,87],"56":[2,87],"82":[2,87]},{"4":[2,45],"28":[2,45],"29":[2,45],"48":[1,111],"56":[2,45],"59":[1,128],"82":[2,45],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,46],"28":[2,46],"29":[2,46],"48":[1,111],"56":[2,46],"59":[1,128],"82":[2,46],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,105],"4":[2,105],"28":[2,105],"29":[2,105],"48":[2,105],"56":[2,105],"59":[2,105],"70":[2,105],"71":[2,105],"72":[2,105],"73":[2,105],"76":[2,105],"77":[2,105],"78":[2,105],"79":[2,105],"82":[2,105],"90":[2,105],"92":[2,105],"97":[2,105],"105":[2,105],"107":[2,105],"108":[2,105],"109":[2,105],"112":[2,105],"116":[2,105],"117":[2,105],"118":[2,105],"125":[2,105],"126":[2,105],"127":[2,105],"129":[2,105],"130":[2,105],"132":[2,105],"133":[2,105],"136":[2,105],"137":[2,105],"138":[2,105],"139":[2,105],"140":[2,105],"141":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"148":[2,105],"149":[2,105],"150":[2,105],"151":[2,105],"152":[2,105],"153":[2,105],"154":[2,105],"155":[2,105],"156":[2,105],"157":[2,105],"158":[2,105],"159":[2,105],"160":[2,105],"161":[2,105]},{"8":350,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"59":[1,351],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,50],"4":[2,50],"28":[2,50],"29":[2,50],"48":[2,50],"56":[2,50],"59":[2,50],"77":[2,50],"82":[2,50],"92":[2,50],"97":[2,50],"105":[2,50],"107":[2,50],"108":[2,50],"109":[2,50],"112":[2,50],"116":[2,50],"117":[2,50],"118":[2,50],"125":[2,50],"126":[2,50],"127":[2,50],"129":[2,50],"130":[2,50],"132":[2,50],"133":[2,50],"136":[2,50],"137":[2,50],"138":[2,50],"139":[2,50],"140":[2,50],"141":[2,50],"142":[2,50],"143":[2,50],"144":[2,50],"145":[2,50],"146":[2,50],"147":[2,50],"148":[2,50],"149":[2,50],"150":[2,50],"151":[2,50],"152":[2,50],"153":[2,50],"154":[2,50],"155":[2,50],"156":[2,50],"157":[2,50],"158":[2,50],"159":[2,50],"160":[2,50],"161":[2,50]},{"51":[2,60],"56":[2,60],"59":[2,60]},{"1":[2,163],"4":[2,163],"28":[2,163],"29":[2,163],"48":[2,163],"56":[2,163],"59":[2,163],"77":[2,163],"82":[2,163],"92":[2,163],"97":[2,163],"105":[2,163],"107":[2,163],"108":[2,163],"109":[2,163],"112":[2,163],"116":[2,163],"117":[2,163],"118":[2,163],"121":[2,163],"125":[2,163],"126":[2,163],"127":[2,163],"129":[2,163],"130":[2,163],"132":[2,163],"133":[2,163],"136":[2,163],"137":[2,163],"138":[2,163],"139":[2,163],"140":[2,163],"141":[2,163],"142":[2,163],"143":[2,163],"144":[2,163],"145":[2,163],"146":[2,163],"147":[2,163],"148":[2,163],"149":[2,163],"150":[2,163],"151":[2,163],"152":[2,163],"153":[2,163],"154":[2,163],"155":[2,163],"156":[2,163],"157":[2,163],"158":[2,163],"159":[2,163],"160":[2,163],"161":[2,163]},{"1":[2,124],"4":[2,124],"28":[2,124],"29":[2,124],"48":[2,124],"56":[2,124],"59":[2,124],"77":[2,124],"82":[2,124],"92":[2,124],"97":[2,124],"105":[2,124],"107":[2,124],"108":[2,124],"109":[2,124],"112":[2,124],"116":[2,124],"117":[2,124],"118":[2,124],"125":[2,124],"126":[2,124],"127":[2,124],"129":[2,124],"130":[2,124],"132":[2,124],"133":[2,124],"136":[2,124],"137":[2,124],"138":[2,124],"139":[2,124],"140":[2,124],"141":[2,124],"142":[2,124],"143":[2,124],"144":[2,124],"145":[2,124],"146":[2,124],"147":[2,124],"148":[2,124],"149":[2,124],"150":[2,124],"151":[2,124],"152":[2,124],"153":[2,124],"154":[2,124],"155":[2,124],"156":[2,124],"157":[2,124],"158":[2,124],"159":[2,124],"160":[2,124],"161":[2,124]},{"1":[2,125],"4":[2,125],"28":[2,125],"29":[2,125],"48":[2,125],"56":[2,125],"59":[2,125],"77":[2,125],"82":[2,125],"92":[2,125],"97":[2,125],"101":[2,125],"105":[2,125],"107":[2,125],"108":[2,125],"109":[2,125],"112":[2,125],"116":[2,125],"117":[2,125],"118":[2,125],"125":[2,125],"126":[2,125],"127":[2,125],"129":[2,125],"130":[2,125],"132":[2,125],"133":[2,125],"136":[2,125],"137":[2,125],"138":[2,125],"139":[2,125],"140":[2,125],"141":[2,125],"142":[2,125],"143":[2,125],"144":[2,125],"145":[2,125],"146":[2,125],"147":[2,125],"148":[2,125],"149":[2,125],"150":[2,125],"151":[2,125],"152":[2,125],"153":[2,125],"154":[2,125],"155":[2,125],"156":[2,125],"157":[2,125],"158":[2,125],"159":[2,125],"160":[2,125],"161":[2,125]},{"8":352,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":353,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":354,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,153],"4":[2,153],"28":[2,153],"29":[2,153],"48":[2,153],"56":[2,153],"59":[2,153],"77":[2,153],"82":[2,153],"92":[2,153],"97":[2,153],"105":[2,153],"107":[2,153],"108":[2,153],"109":[2,153],"112":[2,153],"116":[2,153],"117":[2,153],"118":[2,153],"125":[2,153],"126":[2,153],"127":[2,153],"129":[2,153],"130":[2,153],"132":[2,153],"133":[2,153],"136":[2,153],"137":[2,153],"138":[2,153],"139":[2,153],"140":[2,153],"141":[2,153],"142":[2,153],"143":[2,153],"144":[2,153],"145":[2,153],"146":[2,153],"147":[2,153],"148":[2,153],"149":[2,153],"150":[2,153],"151":[2,153],"152":[2,153],"153":[2,153],"154":[2,153],"155":[2,153],"156":[2,153],"157":[2,153],"158":[2,153],"159":[2,153],"160":[2,153],"161":[2,153]},{"6":355,"28":[1,6]},{"29":[1,356]},{"4":[1,357],"29":[2,159],"121":[2,159],"123":[2,159]},{"8":358,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,96],"29":[2,96],"30":195,"31":[1,85],"32":196,"33":[1,83],"34":[1,84],"46":309,"63":310,"85":359,"86":308,"95":[1,311]},{"1":[2,92],"4":[2,92],"28":[2,92],"29":[2,92],"48":[2,92],"56":[2,92],"59":[2,92],"77":[2,92],"82":[2,92],"92":[2,92],"97":[2,92],"105":[2,92],"107":[2,92],"108":[2,92],"109":[2,92],"112":[2,92],"116":[2,92],"117":[2,92],"118":[2,92],"125":[2,92],"126":[2,92],"127":[2,92],"129":[2,92],"130":[2,92],"132":[2,92],"133":[2,92],"136":[2,92],"137":[2,92],"138":[2,92],"139":[2,92],"140":[2,92],"141":[2,92],"142":[2,92],"143":[2,92],"144":[2,92],"145":[2,92],"146":[2,92],"147":[2,92],"148":[2,92],"149":[2,92],"150":[2,92],"151":[2,92],"152":[2,92],"153":[2,92],"154":[2,92],"155":[2,92],"156":[2,92],"157":[2,92],"158":[2,92],"159":[2,92],"160":[2,92],"161":[2,92]},{"30":195,"31":[1,85],"32":196,"33":[1,83],"34":[1,84],"46":309,"63":310,"86":360,"95":[1,311]},{"8":361,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"48":[1,111],"59":[1,128],"97":[1,362],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,61],"8":363,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,61],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"48":[2,61],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,61],"59":[2,61],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,61],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[2,61],"109":[2,61],"110":50,"111":[1,79],"112":[2,61],"116":[2,61],"117":[2,61],"119":[1,52],"124":47,"125":[2,61],"126":[2,61],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61],"161":[2,61]},{"4":[2,118],"28":[2,118],"29":[2,118],"48":[1,111],"56":[2,118],"59":[1,128],"92":[2,118],"97":[2,118],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,54],"28":[2,54],"29":[2,54],"55":364,"56":[1,271]},{"4":[2,88],"28":[2,88],"29":[2,88],"56":[2,88],"82":[2,88]},{"4":[2,54],"28":[2,54],"29":[2,54],"55":365,"56":[1,277]},{"48":[1,111],"59":[1,128],"77":[1,366],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"8":367,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"48":[2,61],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"59":[2,61],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"77":[2,61],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[2,61],"109":[2,61],"110":50,"111":[1,79],"112":[2,61],"116":[2,61],"117":[2,61],"119":[1,52],"124":47,"125":[2,61],"126":[2,61],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61],"161":[2,61]},{"1":[2,148],"4":[2,148],"28":[2,148],"29":[2,148],"48":[1,111],"56":[2,148],"59":[1,128],"77":[2,148],"82":[2,148],"92":[2,148],"97":[2,148],"105":[2,148],"106":126,"107":[2,148],"108":[2,148],"109":[2,148],"112":[2,148],"116":[1,121],"117":[1,122],"118":[1,368],"125":[2,148],"126":[2,148],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,150],"4":[2,150],"28":[2,150],"29":[2,150],"48":[1,111],"56":[2,150],"59":[1,128],"77":[2,150],"82":[2,150],"92":[2,150],"97":[2,150],"105":[2,150],"106":126,"107":[2,150],"108":[1,369],"109":[2,150],"112":[2,150],"116":[1,121],"117":[1,122],"118":[2,150],"125":[2,150],"126":[2,150],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,149],"4":[2,149],"28":[2,149],"29":[2,149],"48":[1,111],"56":[2,149],"59":[1,128],"77":[2,149],"82":[2,149],"92":[2,149],"97":[2,149],"105":[2,149],"106":126,"107":[2,149],"108":[2,149],"109":[2,149],"112":[2,149],"116":[1,121],"117":[1,122],"118":[2,149],"125":[2,149],"126":[2,149],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"29":[1,370]},{"1":[2,156],"4":[2,156],"28":[2,156],"29":[2,156],"48":[2,156],"56":[2,156],"59":[2,156],"77":[2,156],"82":[2,156],"92":[2,156],"97":[2,156],"105":[2,156],"107":[2,156],"108":[2,156],"109":[2,156],"112":[2,156],"116":[2,156],"117":[2,156],"118":[2,156],"125":[2,156],"126":[2,156],"127":[2,156],"129":[2,156],"130":[2,156],"132":[2,156],"133":[2,156],"136":[2,156],"137":[2,156],"138":[2,156],"139":[2,156],"140":[2,156],"141":[2,156],"142":[2,156],"143":[2,156],"144":[2,156],"145":[2,156],"146":[2,156],"147":[2,156],"148":[2,156],"149":[2,156],"150":[2,156],"151":[2,156],"152":[2,156],"153":[2,156],"154":[2,156],"155":[2,156],"156":[2,156],"157":[2,156],"158":[2,156],"159":[2,156],"160":[2,156],"161":[2,156]},{"29":[2,160],"121":[2,160],"123":[2,160]},{"28":[2,121],"48":[1,111],"56":[2,121],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[1,342],"29":[1,371]},{"4":[2,98],"29":[2,98]},{"4":[2,95],"29":[2,95],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,110],"4":[2,110],"28":[2,110],"29":[2,110],"48":[2,110],"56":[2,110],"59":[2,110],"70":[2,110],"71":[2,110],"72":[2,110],"73":[2,110],"76":[2,110],"77":[2,110],"78":[2,110],"79":[2,110],"82":[2,110],"90":[2,110],"92":[2,110],"97":[2,110],"105":[2,110],"107":[2,110],"108":[2,110],"109":[2,110],"112":[2,110],"116":[2,110],"117":[2,110],"118":[2,110],"125":[2,110],"126":[2,110],"127":[2,110],"129":[2,110],"130":[2,110],"132":[2,110],"133":[2,110],"136":[2,110],"137":[2,110],"138":[2,110],"139":[2,110],"140":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"147":[2,110],"148":[2,110],"149":[2,110],"150":[2,110],"151":[2,110],"152":[2,110],"153":[2,110],"154":[2,110],"155":[2,110],"156":[2,110],"157":[2,110],"158":[2,110],"159":[2,110],"160":[2,110],"161":[2,110]},{"48":[1,111],"59":[1,128],"97":[1,372],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[1,314],"28":[1,315],"29":[1,373]},{"4":[1,320],"28":[1,321],"29":[1,374]},{"1":[2,112],"4":[2,112],"28":[2,112],"29":[2,112],"45":[2,112],"48":[2,112],"56":[2,112],"59":[2,112],"70":[2,112],"71":[2,112],"72":[2,112],"73":[2,112],"76":[2,112],"77":[2,112],"78":[2,112],"79":[2,112],"82":[2,112],"84":[2,112],"90":[2,112],"92":[2,112],"97":[2,112],"105":[2,112],"107":[2,112],"108":[2,112],"109":[2,112],"112":[2,112],"116":[2,112],"117":[2,112],"118":[2,112],"125":[2,112],"126":[2,112],"127":[2,112],"129":[2,112],"130":[2,112],"132":[2,112],"133":[2,112],"136":[2,112],"137":[2,112],"138":[2,112],"139":[2,112],"140":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"147":[2,112],"148":[2,112],"149":[2,112],"150":[2,112],"151":[2,112],"152":[2,112],"153":[2,112],"154":[2,112],"155":[2,112],"156":[2,112],"157":[2,112],"158":[2,112],"159":[2,112],"160":[2,112],"161":[2,112]},{"48":[1,111],"59":[1,128],"77":[1,375],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"8":376,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":377,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,154],"4":[2,154],"28":[2,154],"29":[2,154],"48":[2,154],"56":[2,154],"59":[2,154],"77":[2,154],"82":[2,154],"92":[2,154],"97":[2,154],"105":[2,154],"107":[2,154],"108":[2,154],"109":[2,154],"112":[2,154],"116":[2,154],"117":[2,154],"118":[2,154],"125":[2,154],"126":[2,154],"127":[2,154],"129":[2,154],"130":[2,154],"132":[2,154],"133":[2,154],"136":[2,154],"137":[2,154],"138":[2,154],"139":[2,154],"140":[2,154],"141":[2,154],"142":[2,154],"143":[2,154],"144":[2,154],"145":[2,154],"146":[2,154],"147":[2,154],"148":[2,154],"149":[2,154],"150":[2,154],"151":[2,154],"152":[2,154],"153":[2,154],"154":[2,154],"155":[2,154],"156":[2,154],"157":[2,154],"158":[2,154],"159":[2,154],"160":[2,154],"161":[2,154]},{"1":[2,93],"4":[2,93],"28":[2,93],"29":[2,93],"48":[2,93],"56":[2,93],"59":[2,93],"77":[2,93],"82":[2,93],"92":[2,93],"97":[2,93],"105":[2,93],"107":[2,93],"108":[2,93],"109":[2,93],"112":[2,93],"116":[2,93],"117":[2,93],"118":[2,93],"125":[2,93],"126":[2,93],"127":[2,93],"129":[2,93],"130":[2,93],"132":[2,93],"133":[2,93],"136":[2,93],"137":[2,93],"138":[2,93],"139":[2,93],"140":[2,93],"141":[2,93],"142":[2,93],"143":[2,93],"144":[2,93],"145":[2,93],"146":[2,93],"147":[2,93],"148":[2,93],"149":[2,93],"150":[2,93],"151":[2,93],"152":[2,93],"153":[2,93],"154":[2,93],"155":[2,93],"156":[2,93],"157":[2,93],"158":[2,93],"159":[2,93],"160":[2,93],"161":[2,93]},{"1":[2,111],"4":[2,111],"28":[2,111],"29":[2,111],"48":[2,111],"56":[2,111],"59":[2,111],"70":[2,111],"71":[2,111],"72":[2,111],"73":[2,111],"76":[2,111],"77":[2,111],"78":[2,111],"79":[2,111],"82":[2,111],"90":[2,111],"92":[2,111],"97":[2,111],"105":[2,111],"107":[2,111],"108":[2,111],"109":[2,111],"112":[2,111],"116":[2,111],"117":[2,111],"118":[2,111],"125":[2,111],"126":[2,111],"127":[2,111],"129":[2,111],"130":[2,111],"132":[2,111],"133":[2,111],"136":[2,111],"137":[2,111],"138":[2,111],"139":[2,111],"140":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"147":[2,111],"148":[2,111],"149":[2,111],"150":[2,111],"151":[2,111],"152":[2,111],"153":[2,111],"154":[2,111],"155":[2,111],"156":[2,111],"157":[2,111],"158":[2,111],"159":[2,111],"160":[2,111],"161":[2,111]},{"4":[2,119],"28":[2,119],"29":[2,119],"56":[2,119],"92":[2,119],"97":[2,119]},{"4":[2,89],"28":[2,89],"29":[2,89],"56":[2,89],"82":[2,89]},{"1":[2,113],"4":[2,113],"28":[2,113],"29":[2,113],"45":[2,113],"48":[2,113],"56":[2,113],"59":[2,113],"70":[2,113],"71":[2,113],"72":[2,113],"73":[2,113],"76":[2,113],"77":[2,113],"78":[2,113],"79":[2,113],"82":[2,113],"84":[2,113],"90":[2,113],"92":[2,113],"97":[2,113],"105":[2,113],"107":[2,113],"108":[2,113],"109":[2,113],"112":[2,113],"116":[2,113],"117":[2,113],"118":[2,113],"125":[2,113],"126":[2,113],"127":[2,113],"129":[2,113],"130":[2,113],"132":[2,113],"133":[2,113],"136":[2,113],"137":[2,113],"138":[2,113],"139":[2,113],"140":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"147":[2,113],"148":[2,113],"149":[2,113],"150":[2,113],"151":[2,113],"152":[2,113],"153":[2,113],"154":[2,113],"155":[2,113],"156":[2,113],"157":[2,113],"158":[2,113],"159":[2,113],"160":[2,113],"161":[2,113]},{"1":[2,151],"4":[2,151],"28":[2,151],"29":[2,151],"48":[1,111],"56":[2,151],"59":[1,128],"77":[2,151],"82":[2,151],"92":[2,151],"97":[2,151],"105":[2,151],"106":126,"107":[2,151],"108":[2,151],"109":[2,151],"112":[2,151],"116":[1,121],"117":[1,122],"118":[2,151],"125":[2,151],"126":[2,151],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,152],"4":[2,152],"28":[2,152],"29":[2,152],"48":[1,111],"56":[2,152],"59":[1,128],"77":[2,152],"82":[2,152],"92":[2,152],"97":[2,152],"105":[2,152],"106":126,"107":[2,152],"108":[2,152],"109":[2,152],"112":[2,152],"116":[1,121],"117":[1,122],"118":[2,152],"125":[2,152],"126":[2,152],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]}], +table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,6],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[3]},{"1":[2,2]},{"1":[2,3],"4":[1,86]},{"4":[1,87]},{"1":[2,5],"4":[2,5],"29":[2,5]},{"5":88,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[1,89],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,8],"4":[2,8],"29":[2,8],"48":[1,111],"59":[1,128],"105":[2,8],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,9],"4":[2,9],"29":[2,9],"105":[2,9],"106":131,"107":[1,77],"109":[1,78],"112":[1,132],"125":[1,129],"126":[1,130]},{"1":[2,14],"4":[2,14],"28":[2,14],"29":[2,14],"48":[2,14],"56":[2,14],"59":[2,14],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,14],"78":[1,143],"79":[1,144],"82":[2,14],"89":133,"90":[1,135],"92":[2,14],"97":[2,14],"105":[2,14],"107":[2,14],"108":[2,14],"109":[2,14],"112":[2,14],"116":[2,14],"117":[2,14],"118":[2,14],"125":[2,14],"126":[2,14],"127":[2,14],"129":[2,14],"130":[2,14],"132":[2,14],"133":[2,14],"136":[2,14],"137":[2,14],"138":[2,14],"139":[2,14],"140":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[2,14],"148":[2,14],"149":[2,14],"150":[2,14],"151":[2,14],"152":[2,14],"153":[2,14],"154":[2,14],"155":[2,14],"156":[2,14],"157":[2,14],"158":[2,14],"159":[2,14],"160":[2,14],"161":[2,14]},{"1":[2,15],"4":[2,15],"28":[2,15],"29":[2,15],"48":[2,15],"56":[2,15],"59":[2,15],"77":[2,15],"82":[2,15],"92":[2,15],"97":[2,15],"105":[2,15],"107":[2,15],"108":[2,15],"109":[2,15],"112":[2,15],"116":[2,15],"117":[2,15],"118":[2,15],"125":[2,15],"126":[2,15],"127":[2,15],"129":[2,15],"130":[2,15],"132":[2,15],"133":[2,15],"136":[2,15],"137":[2,15],"138":[2,15],"139":[2,15],"140":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[2,15],"149":[2,15],"150":[2,15],"151":[2,15],"152":[2,15],"153":[2,15],"154":[2,15],"155":[2,15],"156":[2,15],"157":[2,15],"158":[2,15],"159":[2,15],"160":[2,15],"161":[2,15]},{"1":[2,16],"4":[2,16],"28":[2,16],"29":[2,16],"48":[2,16],"56":[2,16],"59":[2,16],"77":[2,16],"82":[2,16],"92":[2,16],"97":[2,16],"105":[2,16],"107":[2,16],"108":[2,16],"109":[2,16],"112":[2,16],"116":[2,16],"117":[2,16],"118":[2,16],"125":[2,16],"126":[2,16],"127":[2,16],"129":[2,16],"130":[2,16],"132":[2,16],"133":[2,16],"136":[2,16],"137":[2,16],"138":[2,16],"139":[2,16],"140":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"148":[2,16],"149":[2,16],"150":[2,16],"151":[2,16],"152":[2,16],"153":[2,16],"154":[2,16],"155":[2,16],"156":[2,16],"157":[2,16],"158":[2,16],"159":[2,16],"160":[2,16],"161":[2,16]},{"1":[2,17],"4":[2,17],"28":[2,17],"29":[2,17],"48":[2,17],"56":[2,17],"59":[2,17],"77":[2,17],"82":[2,17],"92":[2,17],"97":[2,17],"105":[2,17],"107":[2,17],"108":[2,17],"109":[2,17],"112":[2,17],"116":[2,17],"117":[2,17],"118":[2,17],"125":[2,17],"126":[2,17],"127":[2,17],"129":[2,17],"130":[2,17],"132":[2,17],"133":[2,17],"136":[2,17],"137":[2,17],"138":[2,17],"139":[2,17],"140":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"148":[2,17],"149":[2,17],"150":[2,17],"151":[2,17],"152":[2,17],"153":[2,17],"154":[2,17],"155":[2,17],"156":[2,17],"157":[2,17],"158":[2,17],"159":[2,17],"160":[2,17],"161":[2,17]},{"1":[2,18],"4":[2,18],"28":[2,18],"29":[2,18],"48":[2,18],"56":[2,18],"59":[2,18],"77":[2,18],"82":[2,18],"92":[2,18],"97":[2,18],"105":[2,18],"107":[2,18],"108":[2,18],"109":[2,18],"112":[2,18],"116":[2,18],"117":[2,18],"118":[2,18],"125":[2,18],"126":[2,18],"127":[2,18],"129":[2,18],"130":[2,18],"132":[2,18],"133":[2,18],"136":[2,18],"137":[2,18],"138":[2,18],"139":[2,18],"140":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"148":[2,18],"149":[2,18],"150":[2,18],"151":[2,18],"152":[2,18],"153":[2,18],"154":[2,18],"155":[2,18],"156":[2,18],"157":[2,18],"158":[2,18],"159":[2,18],"160":[2,18],"161":[2,18]},{"1":[2,19],"4":[2,19],"28":[2,19],"29":[2,19],"48":[2,19],"56":[2,19],"59":[2,19],"77":[2,19],"82":[2,19],"92":[2,19],"97":[2,19],"105":[2,19],"107":[2,19],"108":[2,19],"109":[2,19],"112":[2,19],"116":[2,19],"117":[2,19],"118":[2,19],"125":[2,19],"126":[2,19],"127":[2,19],"129":[2,19],"130":[2,19],"132":[2,19],"133":[2,19],"136":[2,19],"137":[2,19],"138":[2,19],"139":[2,19],"140":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"148":[2,19],"149":[2,19],"150":[2,19],"151":[2,19],"152":[2,19],"153":[2,19],"154":[2,19],"155":[2,19],"156":[2,19],"157":[2,19],"158":[2,19],"159":[2,19],"160":[2,19],"161":[2,19]},{"1":[2,20],"4":[2,20],"28":[2,20],"29":[2,20],"48":[2,20],"56":[2,20],"59":[2,20],"77":[2,20],"82":[2,20],"92":[2,20],"97":[2,20],"105":[2,20],"107":[2,20],"108":[2,20],"109":[2,20],"112":[2,20],"116":[2,20],"117":[2,20],"118":[2,20],"125":[2,20],"126":[2,20],"127":[2,20],"129":[2,20],"130":[2,20],"132":[2,20],"133":[2,20],"136":[2,20],"137":[2,20],"138":[2,20],"139":[2,20],"140":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"148":[2,20],"149":[2,20],"150":[2,20],"151":[2,20],"152":[2,20],"153":[2,20],"154":[2,20],"155":[2,20],"156":[2,20],"157":[2,20],"158":[2,20],"159":[2,20],"160":[2,20],"161":[2,20]},{"1":[2,21],"4":[2,21],"28":[2,21],"29":[2,21],"48":[2,21],"56":[2,21],"59":[2,21],"77":[2,21],"82":[2,21],"92":[2,21],"97":[2,21],"105":[2,21],"107":[2,21],"108":[2,21],"109":[2,21],"112":[2,21],"116":[2,21],"117":[2,21],"118":[2,21],"125":[2,21],"126":[2,21],"127":[2,21],"129":[2,21],"130":[2,21],"132":[2,21],"133":[2,21],"136":[2,21],"137":[2,21],"138":[2,21],"139":[2,21],"140":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"148":[2,21],"149":[2,21],"150":[2,21],"151":[2,21],"152":[2,21],"153":[2,21],"154":[2,21],"155":[2,21],"156":[2,21],"157":[2,21],"158":[2,21],"159":[2,21],"160":[2,21],"161":[2,21]},{"1":[2,22],"4":[2,22],"28":[2,22],"29":[2,22],"48":[2,22],"56":[2,22],"59":[2,22],"77":[2,22],"82":[2,22],"92":[2,22],"97":[2,22],"105":[2,22],"107":[2,22],"108":[2,22],"109":[2,22],"112":[2,22],"116":[2,22],"117":[2,22],"118":[2,22],"125":[2,22],"126":[2,22],"127":[2,22],"129":[2,22],"130":[2,22],"132":[2,22],"133":[2,22],"136":[2,22],"137":[2,22],"138":[2,22],"139":[2,22],"140":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"148":[2,22],"149":[2,22],"150":[2,22],"151":[2,22],"152":[2,22],"153":[2,22],"154":[2,22],"155":[2,22],"156":[2,22],"157":[2,22],"158":[2,22],"159":[2,22],"160":[2,22],"161":[2,22]},{"1":[2,23],"4":[2,23],"28":[2,23],"29":[2,23],"48":[2,23],"56":[2,23],"59":[2,23],"77":[2,23],"82":[2,23],"92":[2,23],"97":[2,23],"105":[2,23],"107":[2,23],"108":[2,23],"109":[2,23],"112":[2,23],"116":[2,23],"117":[2,23],"118":[2,23],"125":[2,23],"126":[2,23],"127":[2,23],"129":[2,23],"130":[2,23],"132":[2,23],"133":[2,23],"136":[2,23],"137":[2,23],"138":[2,23],"139":[2,23],"140":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"148":[2,23],"149":[2,23],"150":[2,23],"151":[2,23],"152":[2,23],"153":[2,23],"154":[2,23],"155":[2,23],"156":[2,23],"157":[2,23],"158":[2,23],"159":[2,23],"160":[2,23],"161":[2,23]},{"1":[2,24],"4":[2,24],"28":[2,24],"29":[2,24],"48":[2,24],"56":[2,24],"59":[2,24],"77":[2,24],"82":[2,24],"92":[2,24],"97":[2,24],"105":[2,24],"107":[2,24],"108":[2,24],"109":[2,24],"112":[2,24],"116":[2,24],"117":[2,24],"118":[2,24],"125":[2,24],"126":[2,24],"127":[2,24],"129":[2,24],"130":[2,24],"132":[2,24],"133":[2,24],"136":[2,24],"137":[2,24],"138":[2,24],"139":[2,24],"140":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"148":[2,24],"149":[2,24],"150":[2,24],"151":[2,24],"152":[2,24],"153":[2,24],"154":[2,24],"155":[2,24],"156":[2,24],"157":[2,24],"158":[2,24],"159":[2,24],"160":[2,24],"161":[2,24]},{"1":[2,25],"4":[2,25],"28":[2,25],"29":[2,25],"48":[2,25],"56":[2,25],"59":[2,25],"77":[2,25],"82":[2,25],"92":[2,25],"97":[2,25],"105":[2,25],"107":[2,25],"108":[2,25],"109":[2,25],"112":[2,25],"116":[2,25],"117":[2,25],"118":[2,25],"125":[2,25],"126":[2,25],"127":[2,25],"129":[2,25],"130":[2,25],"132":[2,25],"133":[2,25],"136":[2,25],"137":[2,25],"138":[2,25],"139":[2,25],"140":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"148":[2,25],"149":[2,25],"150":[2,25],"151":[2,25],"152":[2,25],"153":[2,25],"154":[2,25],"155":[2,25],"156":[2,25],"157":[2,25],"158":[2,25],"159":[2,25],"160":[2,25],"161":[2,25]},{"1":[2,26],"4":[2,26],"28":[2,26],"29":[2,26],"48":[2,26],"56":[2,26],"59":[2,26],"77":[2,26],"82":[2,26],"92":[2,26],"97":[2,26],"105":[2,26],"107":[2,26],"108":[2,26],"109":[2,26],"112":[2,26],"116":[2,26],"117":[2,26],"118":[2,26],"125":[2,26],"126":[2,26],"127":[2,26],"129":[2,26],"130":[2,26],"132":[2,26],"133":[2,26],"136":[2,26],"137":[2,26],"138":[2,26],"139":[2,26],"140":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"148":[2,26],"149":[2,26],"150":[2,26],"151":[2,26],"152":[2,26],"153":[2,26],"154":[2,26],"155":[2,26],"156":[2,26],"157":[2,26],"158":[2,26],"159":[2,26],"160":[2,26],"161":[2,26]},{"1":[2,27],"4":[2,27],"28":[2,27],"29":[2,27],"48":[2,27],"56":[2,27],"59":[2,27],"77":[2,27],"82":[2,27],"92":[2,27],"97":[2,27],"105":[2,27],"107":[2,27],"108":[2,27],"109":[2,27],"112":[2,27],"116":[2,27],"117":[2,27],"118":[2,27],"125":[2,27],"126":[2,27],"127":[2,27],"129":[2,27],"130":[2,27],"132":[2,27],"133":[2,27],"136":[2,27],"137":[2,27],"138":[2,27],"139":[2,27],"140":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"148":[2,27],"149":[2,27],"150":[2,27],"151":[2,27],"152":[2,27],"153":[2,27],"154":[2,27],"155":[2,27],"156":[2,27],"157":[2,27],"158":[2,27],"159":[2,27],"160":[2,27],"161":[2,27]},{"1":[2,10],"4":[2,10],"29":[2,10],"105":[2,10],"107":[2,10],"109":[2,10],"112":[2,10],"125":[2,10],"126":[2,10]},{"1":[2,11],"4":[2,11],"29":[2,11],"105":[2,11],"107":[2,11],"109":[2,11],"112":[2,11],"125":[2,11],"126":[2,11]},{"1":[2,12],"4":[2,12],"29":[2,12],"105":[2,12],"107":[2,12],"109":[2,12],"112":[2,12],"125":[2,12],"126":[2,12]},{"1":[2,13],"4":[2,13],"29":[2,13],"105":[2,13],"107":[2,13],"109":[2,13],"112":[2,13],"125":[2,13],"126":[2,13]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"45":[1,145],"48":[2,69],"56":[2,69],"59":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"77":[2,69],"78":[2,69],"79":[2,69],"82":[2,69],"90":[2,69],"92":[2,69],"97":[2,69],"105":[2,69],"107":[2,69],"108":[2,69],"109":[2,69],"112":[2,69],"116":[2,69],"117":[2,69],"118":[2,69],"125":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"132":[2,69],"133":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69],"140":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69]},{"1":[2,70],"4":[2,70],"28":[2,70],"29":[2,70],"48":[2,70],"56":[2,70],"59":[2,70],"70":[2,70],"71":[2,70],"72":[2,70],"73":[2,70],"76":[2,70],"77":[2,70],"78":[2,70],"79":[2,70],"82":[2,70],"90":[2,70],"92":[2,70],"97":[2,70],"105":[2,70],"107":[2,70],"108":[2,70],"109":[2,70],"112":[2,70],"116":[2,70],"117":[2,70],"118":[2,70],"125":[2,70],"126":[2,70],"127":[2,70],"129":[2,70],"130":[2,70],"132":[2,70],"133":[2,70],"136":[2,70],"137":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"48":[2,71],"56":[2,71],"59":[2,71],"70":[2,71],"71":[2,71],"72":[2,71],"73":[2,71],"76":[2,71],"77":[2,71],"78":[2,71],"79":[2,71],"82":[2,71],"90":[2,71],"92":[2,71],"97":[2,71],"105":[2,71],"107":[2,71],"108":[2,71],"109":[2,71],"112":[2,71],"116":[2,71],"117":[2,71],"118":[2,71],"125":[2,71],"126":[2,71],"127":[2,71],"129":[2,71],"130":[2,71],"132":[2,71],"133":[2,71],"136":[2,71],"137":[2,71],"138":[2,71],"139":[2,71],"140":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"48":[2,72],"56":[2,72],"59":[2,72],"70":[2,72],"71":[2,72],"72":[2,72],"73":[2,72],"76":[2,72],"77":[2,72],"78":[2,72],"79":[2,72],"82":[2,72],"90":[2,72],"92":[2,72],"97":[2,72],"105":[2,72],"107":[2,72],"108":[2,72],"109":[2,72],"112":[2,72],"116":[2,72],"117":[2,72],"118":[2,72],"125":[2,72],"126":[2,72],"127":[2,72],"129":[2,72],"130":[2,72],"132":[2,72],"133":[2,72],"136":[2,72],"137":[2,72],"138":[2,72],"139":[2,72],"140":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72]},{"1":[2,73],"4":[2,73],"28":[2,73],"29":[2,73],"48":[2,73],"56":[2,73],"59":[2,73],"70":[2,73],"71":[2,73],"72":[2,73],"73":[2,73],"76":[2,73],"77":[2,73],"78":[2,73],"79":[2,73],"82":[2,73],"90":[2,73],"92":[2,73],"97":[2,73],"105":[2,73],"107":[2,73],"108":[2,73],"109":[2,73],"112":[2,73],"116":[2,73],"117":[2,73],"118":[2,73],"125":[2,73],"126":[2,73],"127":[2,73],"129":[2,73],"130":[2,73],"132":[2,73],"133":[2,73],"136":[2,73],"137":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"48":[2,74],"56":[2,74],"59":[2,74],"70":[2,74],"71":[2,74],"72":[2,74],"73":[2,74],"76":[2,74],"77":[2,74],"78":[2,74],"79":[2,74],"82":[2,74],"90":[2,74],"92":[2,74],"97":[2,74],"105":[2,74],"107":[2,74],"108":[2,74],"109":[2,74],"112":[2,74],"116":[2,74],"117":[2,74],"118":[2,74],"125":[2,74],"126":[2,74],"127":[2,74],"129":[2,74],"130":[2,74],"132":[2,74],"133":[2,74],"136":[2,74],"137":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74],"151":[2,74],"152":[2,74],"153":[2,74],"154":[2,74],"155":[2,74],"156":[2,74],"157":[2,74],"158":[2,74],"159":[2,74],"160":[2,74],"161":[2,74]},{"1":[2,99],"4":[2,99],"28":[2,99],"29":[2,99],"48":[2,99],"56":[2,99],"59":[2,99],"61":147,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,99],"78":[1,143],"79":[1,144],"82":[2,99],"89":146,"90":[1,135],"92":[2,99],"97":[2,99],"105":[2,99],"107":[2,99],"108":[2,99],"109":[2,99],"112":[2,99],"116":[2,99],"117":[2,99],"118":[2,99],"125":[2,99],"126":[2,99],"127":[2,99],"129":[2,99],"130":[2,99],"132":[2,99],"133":[2,99],"136":[2,99],"137":[2,99],"138":[2,99],"139":[2,99],"140":[2,99],"141":[2,99],"142":[2,99],"143":[2,99],"144":[2,99],"145":[2,99],"146":[2,99],"147":[2,99],"148":[2,99],"149":[2,99],"150":[2,99],"151":[2,99],"152":[2,99],"153":[2,99],"154":[2,99],"155":[2,99],"156":[2,99],"157":[2,99],"158":[2,99],"159":[2,99],"160":[2,99],"161":[2,99]},{"1":[2,100],"4":[2,100],"28":[2,100],"29":[2,100],"48":[2,100],"56":[2,100],"59":[2,100],"77":[2,100],"82":[2,100],"92":[2,100],"97":[2,100],"105":[2,100],"107":[2,100],"108":[2,100],"109":[2,100],"112":[2,100],"116":[2,100],"117":[2,100],"118":[2,100],"125":[2,100],"126":[2,100],"127":[2,100],"129":[2,100],"130":[2,100],"132":[2,100],"133":[2,100],"136":[2,100],"137":[2,100],"138":[2,100],"139":[2,100],"140":[2,100],"141":[2,100],"142":[2,100],"143":[2,100],"144":[2,100],"145":[2,100],"146":[2,100],"147":[2,100],"148":[2,100],"149":[2,100],"150":[2,100],"151":[2,100],"152":[2,100],"153":[2,100],"154":[2,100],"155":[2,100],"156":[2,100],"157":[2,100],"158":[2,100],"159":[2,100],"160":[2,100],"161":[2,100]},{"14":149,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":151,"62":148,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"50":152,"51":[2,56],"56":[2,56],"57":153,"58":[1,154]},{"6":155,"28":[1,6]},{"8":156,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":158,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":159,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":160,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":161,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":162,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":163,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":164,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":165,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,166],"4":[2,166],"28":[2,166],"29":[2,166],"48":[2,166],"56":[2,166],"59":[2,166],"77":[2,166],"82":[2,166],"92":[2,166],"97":[2,166],"105":[2,166],"107":[2,166],"108":[2,166],"109":[2,166],"112":[2,166],"116":[2,166],"117":[2,166],"118":[2,166],"121":[1,166],"125":[2,166],"126":[2,166],"127":[2,166],"129":[2,166],"130":[2,166],"132":[2,166],"133":[2,166],"136":[2,166],"137":[2,166],"138":[2,166],"139":[2,166],"140":[2,166],"141":[2,166],"142":[2,166],"143":[2,166],"144":[2,166],"145":[2,166],"146":[2,166],"147":[2,166],"148":[2,166],"149":[2,166],"150":[2,166],"151":[2,166],"152":[2,166],"153":[2,166],"154":[2,166],"155":[2,166],"156":[2,166],"157":[2,166],"158":[2,166],"159":[2,166],"160":[2,166],"161":[2,166]},{"6":167,"28":[1,6]},{"6":168,"28":[1,6]},{"1":[2,136],"4":[2,136],"28":[2,136],"29":[2,136],"48":[2,136],"56":[2,136],"59":[2,136],"77":[2,136],"82":[2,136],"92":[2,136],"97":[2,136],"105":[2,136],"107":[2,136],"108":[2,136],"109":[2,136],"112":[2,136],"116":[2,136],"117":[2,136],"118":[2,136],"125":[2,136],"126":[2,136],"127":[2,136],"129":[2,136],"130":[2,136],"132":[2,136],"133":[2,136],"136":[2,136],"137":[2,136],"138":[2,136],"139":[2,136],"140":[2,136],"141":[2,136],"142":[2,136],"143":[2,136],"144":[2,136],"145":[2,136],"146":[2,136],"147":[2,136],"148":[2,136],"149":[2,136],"150":[2,136],"151":[2,136],"152":[2,136],"153":[2,136],"154":[2,136],"155":[2,136],"156":[2,136],"157":[2,136],"158":[2,136],"159":[2,136],"160":[2,136],"161":[2,136]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"113":169,"115":170},{"8":175,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,176],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,66],"4":[2,66],"28":[2,66],"29":[2,66],"45":[2,66],"48":[2,66],"56":[2,66],"59":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,66],"78":[2,66],"79":[2,66],"82":[2,66],"84":[1,177],"90":[2,66],"92":[2,66],"97":[2,66],"105":[2,66],"107":[2,66],"108":[2,66],"109":[2,66],"112":[2,66],"116":[2,66],"117":[2,66],"118":[2,66],"125":[2,66],"126":[2,66],"127":[2,66],"129":[2,66],"130":[2,66],"132":[2,66],"133":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66]},{"14":179,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":178,"62":180,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"1":[2,48],"4":[2,48],"8":181,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[2,48],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"105":[2,48],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[2,48],"126":[2,48],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":182,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,67],"4":[2,67],"28":[2,67],"29":[2,67],"45":[2,67],"48":[2,67],"56":[2,67],"59":[2,67],"70":[2,67],"71":[2,67],"72":[2,67],"73":[2,67],"76":[2,67],"77":[2,67],"78":[2,67],"79":[2,67],"82":[2,67],"90":[2,67],"92":[2,67],"97":[2,67],"105":[2,67],"107":[2,67],"108":[2,67],"109":[2,67],"112":[2,67],"116":[2,67],"117":[2,67],"118":[2,67],"125":[2,67],"126":[2,67],"127":[2,67],"129":[2,67],"130":[2,67],"132":[2,67],"133":[2,67],"136":[2,67],"137":[2,67],"138":[2,67],"139":[2,67],"140":[2,67],"141":[2,67],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67]},{"1":[2,68],"4":[2,68],"28":[2,68],"29":[2,68],"45":[2,68],"48":[2,68],"56":[2,68],"59":[2,68],"70":[2,68],"71":[2,68],"72":[2,68],"73":[2,68],"76":[2,68],"77":[2,68],"78":[2,68],"79":[2,68],"82":[2,68],"90":[2,68],"92":[2,68],"97":[2,68],"105":[2,68],"107":[2,68],"108":[2,68],"109":[2,68],"112":[2,68],"116":[2,68],"117":[2,68],"118":[2,68],"125":[2,68],"126":[2,68],"127":[2,68],"129":[2,68],"130":[2,68],"132":[2,68],"133":[2,68],"136":[2,68],"137":[2,68],"138":[2,68],"139":[2,68],"140":[2,68],"141":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68]},{"1":[2,33],"4":[2,33],"28":[2,33],"29":[2,33],"48":[2,33],"56":[2,33],"59":[2,33],"70":[2,33],"71":[2,33],"72":[2,33],"73":[2,33],"76":[2,33],"77":[2,33],"78":[2,33],"79":[2,33],"82":[2,33],"90":[2,33],"92":[2,33],"97":[2,33],"105":[2,33],"107":[2,33],"108":[2,33],"109":[2,33],"112":[2,33],"116":[2,33],"117":[2,33],"118":[2,33],"125":[2,33],"126":[2,33],"127":[2,33],"129":[2,33],"130":[2,33],"132":[2,33],"133":[2,33],"136":[2,33],"137":[2,33],"138":[2,33],"139":[2,33],"140":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33],"151":[2,33],"152":[2,33],"153":[2,33],"154":[2,33],"155":[2,33],"156":[2,33],"157":[2,33],"158":[2,33],"159":[2,33],"160":[2,33],"161":[2,33]},{"1":[2,34],"4":[2,34],"28":[2,34],"29":[2,34],"48":[2,34],"56":[2,34],"59":[2,34],"70":[2,34],"71":[2,34],"72":[2,34],"73":[2,34],"76":[2,34],"77":[2,34],"78":[2,34],"79":[2,34],"82":[2,34],"90":[2,34],"92":[2,34],"97":[2,34],"105":[2,34],"107":[2,34],"108":[2,34],"109":[2,34],"112":[2,34],"116":[2,34],"117":[2,34],"118":[2,34],"125":[2,34],"126":[2,34],"127":[2,34],"129":[2,34],"130":[2,34],"132":[2,34],"133":[2,34],"136":[2,34],"137":[2,34],"138":[2,34],"139":[2,34],"140":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34],"151":[2,34],"152":[2,34],"153":[2,34],"154":[2,34],"155":[2,34],"156":[2,34],"157":[2,34],"158":[2,34],"159":[2,34],"160":[2,34],"161":[2,34]},{"1":[2,35],"4":[2,35],"28":[2,35],"29":[2,35],"48":[2,35],"56":[2,35],"59":[2,35],"70":[2,35],"71":[2,35],"72":[2,35],"73":[2,35],"76":[2,35],"77":[2,35],"78":[2,35],"79":[2,35],"82":[2,35],"90":[2,35],"92":[2,35],"97":[2,35],"105":[2,35],"107":[2,35],"108":[2,35],"109":[2,35],"112":[2,35],"116":[2,35],"117":[2,35],"118":[2,35],"125":[2,35],"126":[2,35],"127":[2,35],"129":[2,35],"130":[2,35],"132":[2,35],"133":[2,35],"136":[2,35],"137":[2,35],"138":[2,35],"139":[2,35],"140":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35],"151":[2,35],"152":[2,35],"153":[2,35],"154":[2,35],"155":[2,35],"156":[2,35],"157":[2,35],"158":[2,35],"159":[2,35],"160":[2,35],"161":[2,35]},{"1":[2,36],"4":[2,36],"28":[2,36],"29":[2,36],"48":[2,36],"56":[2,36],"59":[2,36],"70":[2,36],"71":[2,36],"72":[2,36],"73":[2,36],"76":[2,36],"77":[2,36],"78":[2,36],"79":[2,36],"82":[2,36],"90":[2,36],"92":[2,36],"97":[2,36],"105":[2,36],"107":[2,36],"108":[2,36],"109":[2,36],"112":[2,36],"116":[2,36],"117":[2,36],"118":[2,36],"125":[2,36],"126":[2,36],"127":[2,36],"129":[2,36],"130":[2,36],"132":[2,36],"133":[2,36],"136":[2,36],"137":[2,36],"138":[2,36],"139":[2,36],"140":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36],"151":[2,36],"152":[2,36],"153":[2,36],"154":[2,36],"155":[2,36],"156":[2,36],"157":[2,36],"158":[2,36],"159":[2,36],"160":[2,36],"161":[2,36]},{"1":[2,37],"4":[2,37],"28":[2,37],"29":[2,37],"48":[2,37],"56":[2,37],"59":[2,37],"70":[2,37],"71":[2,37],"72":[2,37],"73":[2,37],"76":[2,37],"77":[2,37],"78":[2,37],"79":[2,37],"82":[2,37],"90":[2,37],"92":[2,37],"97":[2,37],"105":[2,37],"107":[2,37],"108":[2,37],"109":[2,37],"112":[2,37],"116":[2,37],"117":[2,37],"118":[2,37],"125":[2,37],"126":[2,37],"127":[2,37],"129":[2,37],"130":[2,37],"132":[2,37],"133":[2,37],"136":[2,37],"137":[2,37],"138":[2,37],"139":[2,37],"140":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37],"151":[2,37],"152":[2,37],"153":[2,37],"154":[2,37],"155":[2,37],"156":[2,37],"157":[2,37],"158":[2,37],"159":[2,37],"160":[2,37],"161":[2,37]},{"1":[2,38],"4":[2,38],"28":[2,38],"29":[2,38],"48":[2,38],"56":[2,38],"59":[2,38],"70":[2,38],"71":[2,38],"72":[2,38],"73":[2,38],"76":[2,38],"77":[2,38],"78":[2,38],"79":[2,38],"82":[2,38],"90":[2,38],"92":[2,38],"97":[2,38],"105":[2,38],"107":[2,38],"108":[2,38],"109":[2,38],"112":[2,38],"116":[2,38],"117":[2,38],"118":[2,38],"125":[2,38],"126":[2,38],"127":[2,38],"129":[2,38],"130":[2,38],"132":[2,38],"133":[2,38],"136":[2,38],"137":[2,38],"138":[2,38],"139":[2,38],"140":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38],"151":[2,38],"152":[2,38],"153":[2,38],"154":[2,38],"155":[2,38],"156":[2,38],"157":[2,38],"158":[2,38],"159":[2,38],"160":[2,38],"161":[2,38]},{"1":[2,39],"4":[2,39],"28":[2,39],"29":[2,39],"48":[2,39],"56":[2,39],"59":[2,39],"70":[2,39],"71":[2,39],"72":[2,39],"73":[2,39],"76":[2,39],"77":[2,39],"78":[2,39],"79":[2,39],"82":[2,39],"90":[2,39],"92":[2,39],"97":[2,39],"105":[2,39],"107":[2,39],"108":[2,39],"109":[2,39],"112":[2,39],"116":[2,39],"117":[2,39],"118":[2,39],"125":[2,39],"126":[2,39],"127":[2,39],"129":[2,39],"130":[2,39],"132":[2,39],"133":[2,39],"136":[2,39],"137":[2,39],"138":[2,39],"139":[2,39],"140":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39],"151":[2,39],"152":[2,39],"153":[2,39],"154":[2,39],"155":[2,39],"156":[2,39],"157":[2,39],"158":[2,39],"159":[2,39],"160":[2,39],"161":[2,39]},{"1":[2,40],"4":[2,40],"28":[2,40],"29":[2,40],"48":[2,40],"56":[2,40],"59":[2,40],"70":[2,40],"71":[2,40],"72":[2,40],"73":[2,40],"76":[2,40],"77":[2,40],"78":[2,40],"79":[2,40],"82":[2,40],"90":[2,40],"92":[2,40],"97":[2,40],"105":[2,40],"107":[2,40],"108":[2,40],"109":[2,40],"112":[2,40],"116":[2,40],"117":[2,40],"118":[2,40],"125":[2,40],"126":[2,40],"127":[2,40],"129":[2,40],"130":[2,40],"132":[2,40],"133":[2,40],"136":[2,40],"137":[2,40],"138":[2,40],"139":[2,40],"140":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40],"151":[2,40],"152":[2,40],"153":[2,40],"154":[2,40],"155":[2,40],"156":[2,40],"157":[2,40],"158":[2,40],"159":[2,40],"160":[2,40],"161":[2,40]},{"1":[2,41],"4":[2,41],"28":[2,41],"29":[2,41],"48":[2,41],"56":[2,41],"59":[2,41],"70":[2,41],"71":[2,41],"72":[2,41],"73":[2,41],"76":[2,41],"77":[2,41],"78":[2,41],"79":[2,41],"82":[2,41],"90":[2,41],"92":[2,41],"97":[2,41],"105":[2,41],"107":[2,41],"108":[2,41],"109":[2,41],"112":[2,41],"116":[2,41],"117":[2,41],"118":[2,41],"125":[2,41],"126":[2,41],"127":[2,41],"129":[2,41],"130":[2,41],"132":[2,41],"133":[2,41],"136":[2,41],"137":[2,41],"138":[2,41],"139":[2,41],"140":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41],"151":[2,41],"152":[2,41],"153":[2,41],"154":[2,41],"155":[2,41],"156":[2,41],"157":[2,41],"158":[2,41],"159":[2,41],"160":[2,41],"161":[2,41]},{"7":183,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,116],"8":184,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,116],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,116],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"91":185,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,116],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,108],"4":[2,108],"28":[2,108],"29":[2,108],"48":[2,108],"56":[2,108],"59":[2,108],"70":[2,108],"71":[2,108],"72":[2,108],"73":[2,108],"76":[2,108],"77":[2,108],"78":[2,108],"79":[2,108],"82":[2,108],"90":[2,108],"92":[2,108],"97":[2,108],"105":[2,108],"107":[2,108],"108":[2,108],"109":[2,108],"112":[2,108],"116":[2,108],"117":[2,108],"118":[2,108],"125":[2,108],"126":[2,108],"127":[2,108],"129":[2,108],"130":[2,108],"132":[2,108],"133":[2,108],"136":[2,108],"137":[2,108],"138":[2,108],"139":[2,108],"140":[2,108],"141":[2,108],"142":[2,108],"143":[2,108],"144":[2,108],"145":[2,108],"146":[2,108],"147":[2,108],"148":[2,108],"149":[2,108],"150":[2,108],"151":[2,108],"152":[2,108],"153":[2,108],"154":[2,108],"155":[2,108],"156":[2,108],"157":[2,108],"158":[2,108],"159":[2,108],"160":[2,108],"161":[2,108]},{"1":[2,109],"4":[2,109],"28":[2,109],"29":[2,109],"30":186,"31":[1,85],"48":[2,109],"56":[2,109],"59":[2,109],"70":[2,109],"71":[2,109],"72":[2,109],"73":[2,109],"76":[2,109],"77":[2,109],"78":[2,109],"79":[2,109],"82":[2,109],"90":[2,109],"92":[2,109],"97":[2,109],"105":[2,109],"107":[2,109],"108":[2,109],"109":[2,109],"112":[2,109],"116":[2,109],"117":[2,109],"118":[2,109],"125":[2,109],"126":[2,109],"127":[2,109],"129":[2,109],"130":[2,109],"132":[2,109],"133":[2,109],"136":[2,109],"137":[2,109],"138":[2,109],"139":[2,109],"140":[2,109],"141":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"147":[2,109],"148":[2,109],"149":[2,109],"150":[2,109],"151":[2,109],"152":[2,109],"153":[2,109],"154":[2,109],"155":[2,109],"156":[2,109],"157":[2,109],"158":[2,109],"159":[2,109],"160":[2,109],"161":[2,109]},{"89":187,"90":[1,135]},{"28":[2,52]},{"28":[2,53]},{"8":188,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":189,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":190,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":191,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"6":192,"8":193,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,6],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,62],"4":[2,62],"28":[2,62],"29":[2,62],"45":[2,62],"48":[2,62],"56":[2,62],"59":[2,62],"70":[2,62],"71":[2,62],"72":[2,62],"73":[2,62],"76":[2,62],"77":[2,62],"78":[2,62],"79":[2,62],"82":[2,62],"84":[2,62],"90":[2,62],"92":[2,62],"97":[2,62],"105":[2,62],"107":[2,62],"108":[2,62],"109":[2,62],"112":[2,62],"116":[2,62],"117":[2,62],"118":[2,62],"125":[2,62],"126":[2,62],"127":[2,62],"129":[2,62],"130":[2,62],"132":[2,62],"133":[2,62],"136":[2,62],"137":[2,62],"138":[2,62],"139":[2,62],"140":[2,62],"141":[2,62],"142":[2,62],"143":[2,62],"144":[2,62],"145":[2,62],"146":[2,62],"147":[2,62],"148":[2,62],"149":[2,62],"150":[2,62],"151":[2,62],"152":[2,62],"153":[2,62],"154":[2,62],"155":[2,62],"156":[2,62],"157":[2,62],"158":[2,62],"159":[2,62],"160":[2,62],"161":[2,62]},{"1":[2,65],"4":[2,65],"28":[2,65],"29":[2,65],"45":[2,65],"48":[2,65],"56":[2,65],"59":[2,65],"70":[2,65],"71":[2,65],"72":[2,65],"73":[2,65],"76":[2,65],"77":[2,65],"78":[2,65],"79":[2,65],"82":[2,65],"84":[2,65],"90":[2,65],"92":[2,65],"97":[2,65],"105":[2,65],"107":[2,65],"108":[2,65],"109":[2,65],"112":[2,65],"116":[2,65],"117":[2,65],"118":[2,65],"125":[2,65],"126":[2,65],"127":[2,65],"129":[2,65],"130":[2,65],"132":[2,65],"133":[2,65],"136":[2,65],"137":[2,65],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65]},{"4":[2,85],"28":[2,85],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":195,"56":[2,85],"81":194,"82":[2,85]},{"1":[2,31],"4":[2,31],"28":[2,31],"29":[2,31],"45":[2,31],"48":[2,31],"56":[2,31],"59":[2,31],"70":[2,31],"71":[2,31],"72":[2,31],"73":[2,31],"76":[2,31],"77":[2,31],"78":[2,31],"79":[2,31],"82":[2,31],"90":[2,31],"92":[2,31],"97":[2,31],"105":[2,31],"107":[2,31],"108":[2,31],"109":[2,31],"112":[2,31],"116":[2,31],"117":[2,31],"118":[2,31],"125":[2,31],"126":[2,31],"127":[2,31],"129":[2,31],"130":[2,31],"132":[2,31],"133":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31],"140":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31],"149":[2,31],"150":[2,31],"151":[2,31],"152":[2,31],"153":[2,31],"154":[2,31],"155":[2,31],"156":[2,31],"157":[2,31],"158":[2,31],"159":[2,31],"160":[2,31],"161":[2,31]},{"1":[2,32],"4":[2,32],"28":[2,32],"29":[2,32],"45":[2,32],"48":[2,32],"56":[2,32],"59":[2,32],"70":[2,32],"71":[2,32],"72":[2,32],"73":[2,32],"76":[2,32],"77":[2,32],"78":[2,32],"79":[2,32],"82":[2,32],"90":[2,32],"92":[2,32],"97":[2,32],"105":[2,32],"107":[2,32],"108":[2,32],"109":[2,32],"112":[2,32],"116":[2,32],"117":[2,32],"118":[2,32],"125":[2,32],"126":[2,32],"127":[2,32],"129":[2,32],"130":[2,32],"132":[2,32],"133":[2,32],"136":[2,32],"137":[2,32],"138":[2,32],"139":[2,32],"140":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32],"151":[2,32],"152":[2,32],"153":[2,32],"154":[2,32],"155":[2,32],"156":[2,32],"157":[2,32],"158":[2,32],"159":[2,32],"160":[2,32],"161":[2,32]},{"1":[2,30],"4":[2,30],"28":[2,30],"29":[2,30],"45":[2,30],"48":[2,30],"56":[2,30],"59":[2,30],"70":[2,30],"71":[2,30],"72":[2,30],"73":[2,30],"76":[2,30],"77":[2,30],"78":[2,30],"79":[2,30],"82":[2,30],"84":[2,30],"90":[2,30],"92":[2,30],"97":[2,30],"105":[2,30],"107":[2,30],"108":[2,30],"109":[2,30],"112":[2,30],"116":[2,30],"117":[2,30],"118":[2,30],"125":[2,30],"126":[2,30],"127":[2,30],"129":[2,30],"130":[2,30],"132":[2,30],"133":[2,30],"136":[2,30],"137":[2,30],"138":[2,30],"139":[2,30],"140":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"148":[2,30],"149":[2,30],"150":[2,30],"151":[2,30],"152":[2,30],"153":[2,30],"154":[2,30],"155":[2,30],"156":[2,30],"157":[2,30],"158":[2,30],"159":[2,30],"160":[2,30],"161":[2,30]},{"1":[2,7],"4":[2,7],"7":198,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[2,7],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,4]},{"4":[1,86],"29":[1,199]},{"1":[2,29],"4":[2,29],"28":[2,29],"29":[2,29],"48":[2,29],"56":[2,29],"59":[2,29],"77":[2,29],"82":[2,29],"92":[2,29],"97":[2,29],"101":[2,29],"102":[2,29],"105":[2,29],"107":[2,29],"108":[2,29],"109":[2,29],"112":[2,29],"116":[2,29],"117":[2,29],"118":[2,29],"121":[2,29],"123":[2,29],"125":[2,29],"126":[2,29],"127":[2,29],"129":[2,29],"130":[2,29],"132":[2,29],"133":[2,29],"136":[2,29],"137":[2,29],"138":[2,29],"139":[2,29],"140":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"148":[2,29],"149":[2,29],"150":[2,29],"151":[2,29],"152":[2,29],"153":[2,29],"154":[2,29],"155":[2,29],"156":[2,29],"157":[2,29],"158":[2,29],"159":[2,29],"160":[2,29],"161":[2,29]},{"1":[2,180],"4":[2,180],"28":[2,180],"29":[2,180],"48":[2,180],"56":[2,180],"59":[2,180],"77":[2,180],"82":[2,180],"92":[2,180],"97":[2,180],"105":[2,180],"107":[2,180],"108":[2,180],"109":[2,180],"112":[2,180],"116":[2,180],"117":[2,180],"118":[2,180],"125":[2,180],"126":[2,180],"127":[2,180],"129":[2,180],"130":[2,180],"132":[2,180],"133":[2,180],"136":[2,180],"137":[2,180],"138":[2,180],"139":[2,180],"140":[2,180],"141":[2,180],"142":[2,180],"143":[2,180],"144":[2,180],"145":[2,180],"146":[2,180],"147":[2,180],"148":[2,180],"149":[2,180],"150":[2,180],"151":[2,180],"152":[2,180],"153":[2,180],"154":[2,180],"155":[2,180],"156":[2,180],"157":[2,180],"158":[2,180],"159":[2,180],"160":[2,180],"161":[2,180]},{"1":[2,181],"4":[2,181],"28":[2,181],"29":[2,181],"48":[2,181],"56":[2,181],"59":[2,181],"77":[2,181],"82":[2,181],"92":[2,181],"97":[2,181],"105":[2,181],"107":[2,181],"108":[2,181],"109":[2,181],"112":[2,181],"116":[2,181],"117":[2,181],"118":[2,181],"125":[2,181],"126":[2,181],"127":[2,181],"129":[2,181],"130":[2,181],"132":[2,181],"133":[2,181],"136":[2,181],"137":[2,181],"138":[2,181],"139":[2,181],"140":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"148":[2,181],"149":[2,181],"150":[2,181],"151":[2,181],"152":[2,181],"153":[2,181],"154":[2,181],"155":[2,181],"156":[2,181],"157":[2,181],"158":[2,181],"159":[2,181],"160":[2,181],"161":[2,181]},{"8":200,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":201,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":202,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":203,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":204,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":205,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":206,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":207,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":208,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":209,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":210,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":211,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":212,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":213,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":214,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":215,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":216,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":217,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":218,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,49],"4":[2,49],"8":219,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,49],"29":[2,49],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"48":[2,49],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,49],"59":[2,49],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"77":[2,49],"80":[1,82],"82":[2,49],"83":[1,54],"87":34,"88":[1,35],"92":[2,49],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,49],"99":[1,48],"103":[1,56],"104":[1,68],"105":[2,49],"106":49,"107":[2,49],"108":[2,49],"109":[2,49],"110":50,"111":[1,79],"112":[2,49],"116":[2,49],"117":[2,49],"118":[2,49],"119":[1,52],"124":47,"125":[2,49],"126":[2,49],"127":[2,49],"128":[1,39],"129":[2,49],"130":[2,49],"131":[1,42],"132":[2,49],"133":[2,49],"134":[1,45],"135":[1,46],"136":[2,49],"137":[2,49],"138":[2,49],"139":[2,49],"140":[2,49],"141":[2,49],"142":[2,49],"143":[2,49],"144":[2,49],"145":[2,49],"146":[2,49],"147":[2,49],"148":[2,49],"149":[2,49],"150":[2,49],"151":[2,49],"152":[2,49],"153":[2,49],"154":[2,49],"155":[2,49],"156":[2,49],"157":[2,49],"158":[2,49],"159":[2,49],"160":[2,49],"161":[2,49]},{"8":220,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":221,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":222,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":223,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":224,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":225,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":226,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":227,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":228,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":229,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":230,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"116":[1,231],"117":[1,232]},{"8":233,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":234,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,135],"4":[2,135],"28":[2,135],"29":[2,135],"48":[2,135],"56":[2,135],"59":[2,135],"77":[2,135],"82":[2,135],"92":[2,135],"97":[2,135],"105":[2,135],"107":[2,135],"108":[2,135],"109":[2,135],"112":[2,135],"116":[2,135],"117":[2,135],"118":[2,135],"125":[2,135],"126":[2,135],"127":[2,135],"129":[2,135],"130":[2,135],"132":[2,135],"133":[2,135],"136":[2,135],"137":[2,135],"138":[2,135],"139":[2,135],"140":[2,135],"141":[2,135],"142":[2,135],"143":[2,135],"144":[2,135],"145":[2,135],"146":[2,135],"147":[2,135],"148":[2,135],"149":[2,135],"150":[2,135],"151":[2,135],"152":[2,135],"153":[2,135],"154":[2,135],"155":[2,135],"156":[2,135],"157":[2,135],"158":[2,135],"159":[2,135],"160":[2,135],"161":[2,135]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"113":235,"115":170},{"59":[1,236]},{"8":237,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":238,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,134],"4":[2,134],"28":[2,134],"29":[2,134],"48":[2,134],"56":[2,134],"59":[2,134],"77":[2,134],"82":[2,134],"92":[2,134],"97":[2,134],"105":[2,134],"107":[2,134],"108":[2,134],"109":[2,134],"112":[2,134],"116":[2,134],"117":[2,134],"118":[2,134],"125":[2,134],"126":[2,134],"127":[2,134],"129":[2,134],"130":[2,134],"132":[2,134],"133":[2,134],"136":[2,134],"137":[2,134],"138":[2,134],"139":[2,134],"140":[2,134],"141":[2,134],"142":[2,134],"143":[2,134],"144":[2,134],"145":[2,134],"146":[2,134],"147":[2,134],"148":[2,134],"149":[2,134],"150":[2,134],"151":[2,134],"152":[2,134],"153":[2,134],"154":[2,134],"155":[2,134],"156":[2,134],"157":[2,134],"158":[2,134],"159":[2,134],"160":[2,134],"161":[2,134]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"113":239,"115":170},{"1":[2,104],"4":[2,104],"28":[2,104],"29":[2,104],"48":[2,104],"56":[2,104],"59":[2,104],"70":[2,104],"71":[2,104],"72":[2,104],"73":[2,104],"76":[2,104],"77":[2,104],"78":[2,104],"79":[2,104],"82":[2,104],"90":[2,104],"92":[2,104],"97":[2,104],"105":[2,104],"107":[2,104],"108":[2,104],"109":[2,104],"112":[2,104],"116":[2,104],"117":[2,104],"118":[2,104],"125":[2,104],"126":[2,104],"127":[2,104],"129":[2,104],"130":[2,104],"132":[2,104],"133":[2,104],"136":[2,104],"137":[2,104],"138":[2,104],"139":[2,104],"140":[2,104],"141":[2,104],"142":[2,104],"143":[2,104],"144":[2,104],"145":[2,104],"146":[2,104],"147":[2,104],"148":[2,104],"149":[2,104],"150":[2,104],"151":[2,104],"152":[2,104],"153":[2,104],"154":[2,104],"155":[2,104],"156":[2,104],"157":[2,104],"158":[2,104],"159":[2,104],"160":[2,104],"161":[2,104]},{"1":[2,63],"4":[2,63],"28":[2,63],"29":[2,63],"45":[2,63],"48":[2,63],"56":[2,63],"59":[2,63],"70":[2,63],"71":[2,63],"72":[2,63],"73":[2,63],"76":[2,63],"77":[2,63],"78":[2,63],"79":[2,63],"82":[2,63],"84":[2,63],"90":[2,63],"92":[2,63],"97":[2,63],"105":[2,63],"107":[2,63],"108":[2,63],"109":[2,63],"112":[2,63],"116":[2,63],"117":[2,63],"118":[2,63],"125":[2,63],"126":[2,63],"127":[2,63],"129":[2,63],"130":[2,63],"132":[2,63],"133":[2,63],"136":[2,63],"137":[2,63],"138":[2,63],"139":[2,63],"140":[2,63],"141":[2,63],"142":[2,63],"143":[2,63],"144":[2,63],"145":[2,63],"146":[2,63],"147":[2,63],"148":[2,63],"149":[2,63],"150":[2,63],"151":[2,63],"152":[2,63],"153":[2,63],"154":[2,63],"155":[2,63],"156":[2,63],"157":[2,63],"158":[2,63],"159":[2,63],"160":[2,63],"161":[2,63]},{"4":[2,116],"8":241,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,116],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,116],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"91":240,"92":[2,116],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"30":242,"31":[1,85]},{"30":243,"31":[1,85]},{"1":[2,77],"4":[2,77],"28":[2,77],"29":[2,77],"45":[2,77],"48":[2,77],"56":[2,77],"59":[2,77],"70":[2,77],"71":[2,77],"72":[2,77],"73":[2,77],"76":[2,77],"77":[2,77],"78":[2,77],"79":[2,77],"82":[2,77],"84":[2,77],"90":[2,77],"92":[2,77],"97":[2,77],"105":[2,77],"107":[2,77],"108":[2,77],"109":[2,77],"112":[2,77],"116":[2,77],"117":[2,77],"118":[2,77],"125":[2,77],"126":[2,77],"127":[2,77],"129":[2,77],"130":[2,77],"132":[2,77],"133":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77],"151":[2,77],"152":[2,77],"153":[2,77],"154":[2,77],"155":[2,77],"156":[2,77],"157":[2,77],"158":[2,77],"159":[2,77],"160":[2,77],"161":[2,77]},{"30":244,"31":[1,85]},{"1":[2,79],"4":[2,79],"28":[2,79],"29":[2,79],"45":[2,79],"48":[2,79],"56":[2,79],"59":[2,79],"70":[2,79],"71":[2,79],"72":[2,79],"73":[2,79],"76":[2,79],"77":[2,79],"78":[2,79],"79":[2,79],"82":[2,79],"84":[2,79],"90":[2,79],"92":[2,79],"97":[2,79],"105":[2,79],"107":[2,79],"108":[2,79],"109":[2,79],"112":[2,79],"116":[2,79],"117":[2,79],"118":[2,79],"125":[2,79],"126":[2,79],"127":[2,79],"129":[2,79],"130":[2,79],"132":[2,79],"133":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79],"151":[2,79],"152":[2,79],"153":[2,79],"154":[2,79],"155":[2,79],"156":[2,79],"157":[2,79],"158":[2,79],"159":[2,79],"160":[2,79],"161":[2,79]},{"1":[2,80],"4":[2,80],"28":[2,80],"29":[2,80],"45":[2,80],"48":[2,80],"56":[2,80],"59":[2,80],"70":[2,80],"71":[2,80],"72":[2,80],"73":[2,80],"76":[2,80],"77":[2,80],"78":[2,80],"79":[2,80],"82":[2,80],"84":[2,80],"90":[2,80],"92":[2,80],"97":[2,80],"105":[2,80],"107":[2,80],"108":[2,80],"109":[2,80],"112":[2,80],"116":[2,80],"117":[2,80],"118":[2,80],"125":[2,80],"126":[2,80],"127":[2,80],"129":[2,80],"130":[2,80],"132":[2,80],"133":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80],"140":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80],"151":[2,80],"152":[2,80],"153":[2,80],"154":[2,80],"155":[2,80],"156":[2,80],"157":[2,80],"158":[2,80],"159":[2,80],"160":[2,80],"161":[2,80]},{"8":245,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"74":246,"76":[1,247],"78":[1,143],"79":[1,144]},{"74":248,"76":[1,247],"78":[1,143],"79":[1,144]},{"8":249,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,105],"4":[2,105],"28":[2,105],"29":[2,105],"48":[2,105],"56":[2,105],"59":[2,105],"70":[2,105],"71":[2,105],"72":[2,105],"73":[2,105],"76":[2,105],"77":[2,105],"78":[2,105],"79":[2,105],"82":[2,105],"90":[2,105],"92":[2,105],"97":[2,105],"105":[2,105],"107":[2,105],"108":[2,105],"109":[2,105],"112":[2,105],"116":[2,105],"117":[2,105],"118":[2,105],"125":[2,105],"126":[2,105],"127":[2,105],"129":[2,105],"130":[2,105],"132":[2,105],"133":[2,105],"136":[2,105],"137":[2,105],"138":[2,105],"139":[2,105],"140":[2,105],"141":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"148":[2,105],"149":[2,105],"150":[2,105],"151":[2,105],"152":[2,105],"153":[2,105],"154":[2,105],"155":[2,105],"156":[2,105],"157":[2,105],"158":[2,105],"159":[2,105],"160":[2,105],"161":[2,105]},{"1":[2,64],"4":[2,64],"28":[2,64],"29":[2,64],"45":[2,64],"48":[2,64],"56":[2,64],"59":[2,64],"70":[2,64],"71":[2,64],"72":[2,64],"73":[2,64],"76":[2,64],"77":[2,64],"78":[2,64],"79":[2,64],"82":[2,64],"84":[2,64],"90":[2,64],"92":[2,64],"97":[2,64],"105":[2,64],"107":[2,64],"108":[2,64],"109":[2,64],"112":[2,64],"116":[2,64],"117":[2,64],"118":[2,64],"125":[2,64],"126":[2,64],"127":[2,64],"129":[2,64],"130":[2,64],"132":[2,64],"133":[2,64],"136":[2,64],"137":[2,64],"138":[2,64],"139":[2,64],"140":[2,64],"141":[2,64],"142":[2,64],"143":[2,64],"144":[2,64],"145":[2,64],"146":[2,64],"147":[2,64],"148":[2,64],"149":[2,64],"150":[2,64],"151":[2,64],"152":[2,64],"153":[2,64],"154":[2,64],"155":[2,64],"156":[2,64],"157":[2,64],"158":[2,64],"159":[2,64],"160":[2,64],"161":[2,64]},{"1":[2,101],"4":[2,101],"28":[2,101],"29":[2,101],"48":[2,101],"56":[2,101],"59":[2,101],"61":147,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,101],"78":[1,143],"79":[1,144],"82":[2,101],"89":146,"90":[1,135],"92":[2,101],"97":[2,101],"105":[2,101],"107":[2,101],"108":[2,101],"109":[2,101],"112":[2,101],"116":[2,101],"117":[2,101],"118":[2,101],"125":[2,101],"126":[2,101],"127":[2,101],"129":[2,101],"130":[2,101],"132":[2,101],"133":[2,101],"136":[2,101],"137":[2,101],"138":[2,101],"139":[2,101],"140":[2,101],"141":[2,101],"142":[2,101],"143":[2,101],"144":[2,101],"145":[2,101],"146":[2,101],"147":[2,101],"148":[2,101],"149":[2,101],"150":[2,101],"151":[2,101],"152":[2,101],"153":[2,101],"154":[2,101],"155":[2,101],"156":[2,101],"157":[2,101],"158":[2,101],"159":[2,101],"160":[2,101],"161":[2,101]},{"1":[2,102],"4":[2,102],"28":[2,102],"29":[2,102],"48":[2,102],"56":[2,102],"59":[2,102],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,102],"78":[1,143],"79":[1,144],"82":[2,102],"89":133,"90":[1,135],"92":[2,102],"97":[2,102],"105":[2,102],"107":[2,102],"108":[2,102],"109":[2,102],"112":[2,102],"116":[2,102],"117":[2,102],"118":[2,102],"125":[2,102],"126":[2,102],"127":[2,102],"129":[2,102],"130":[2,102],"132":[2,102],"133":[2,102],"136":[2,102],"137":[2,102],"138":[2,102],"139":[2,102],"140":[2,102],"141":[2,102],"142":[2,102],"143":[2,102],"144":[2,102],"145":[2,102],"146":[2,102],"147":[2,102],"148":[2,102],"149":[2,102],"150":[2,102],"151":[2,102],"152":[2,102],"153":[2,102],"154":[2,102],"155":[2,102],"156":[2,102],"157":[2,102],"158":[2,102],"159":[2,102],"160":[2,102],"161":[2,102]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"48":[2,69],"56":[2,69],"59":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"77":[2,69],"78":[2,69],"79":[2,69],"82":[2,69],"90":[2,69],"92":[2,69],"97":[2,69],"105":[2,69],"107":[2,69],"108":[2,69],"109":[2,69],"112":[2,69],"116":[2,69],"117":[2,69],"118":[2,69],"125":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"132":[2,69],"133":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69],"140":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69]},{"1":[2,66],"4":[2,66],"28":[2,66],"29":[2,66],"48":[2,66],"56":[2,66],"59":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,66],"78":[2,66],"79":[2,66],"82":[2,66],"90":[2,66],"92":[2,66],"97":[2,66],"105":[2,66],"107":[2,66],"108":[2,66],"109":[2,66],"112":[2,66],"116":[2,66],"117":[2,66],"118":[2,66],"125":[2,66],"126":[2,66],"127":[2,66],"129":[2,66],"130":[2,66],"132":[2,66],"133":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66]},{"51":[1,250],"56":[1,251]},{"51":[2,57],"56":[2,57],"59":[1,252]},{"51":[2,59],"56":[2,59],"59":[2,59]},{"1":[2,51],"4":[2,51],"28":[2,51],"29":[2,51],"48":[2,51],"56":[2,51],"59":[2,51],"77":[2,51],"82":[2,51],"92":[2,51],"97":[2,51],"105":[2,51],"107":[2,51],"108":[2,51],"109":[2,51],"112":[2,51],"116":[2,51],"117":[2,51],"118":[2,51],"125":[2,51],"126":[2,51],"127":[2,51],"129":[2,51],"130":[2,51],"132":[2,51],"133":[2,51],"136":[2,51],"137":[2,51],"138":[2,51],"139":[2,51],"140":[2,51],"141":[2,51],"142":[2,51],"143":[2,51],"144":[2,51],"145":[2,51],"146":[2,51],"147":[2,51],"148":[2,51],"149":[2,51],"150":[2,51],"151":[2,51],"152":[2,51],"153":[2,51],"154":[2,51],"155":[2,51],"156":[2,51],"157":[2,51],"158":[2,51],"159":[2,51],"160":[2,51],"161":[2,51]},{"1":[2,171],"4":[2,171],"28":[2,171],"29":[2,171],"48":[1,111],"56":[2,171],"59":[2,171],"77":[2,171],"82":[2,171],"92":[2,171],"97":[2,171],"105":[2,171],"106":126,"107":[2,171],"108":[2,171],"109":[2,171],"112":[2,171],"116":[2,171],"117":[2,171],"118":[2,171],"125":[2,171],"126":[2,171],"129":[2,171],"130":[2,171],"136":[2,171],"137":[2,171],"138":[2,171],"139":[2,171],"140":[2,171],"141":[2,171],"142":[2,171],"143":[2,171],"144":[2,171],"145":[2,171],"146":[2,171],"147":[2,171],"148":[2,171],"149":[2,171],"150":[2,171],"151":[2,171],"152":[2,171],"153":[2,171],"154":[2,171],"155":[2,171],"156":[2,171],"157":[2,171],"158":[2,171],"159":[2,171],"160":[2,171],"161":[2,171]},{"106":131,"107":[1,77],"109":[1,78],"112":[1,132],"125":[1,129],"126":[1,130]},{"1":[2,172],"4":[2,172],"28":[2,172],"29":[2,172],"48":[1,111],"56":[2,172],"59":[2,172],"77":[2,172],"82":[2,172],"92":[2,172],"97":[2,172],"105":[2,172],"106":126,"107":[2,172],"108":[2,172],"109":[2,172],"112":[2,172],"116":[2,172],"117":[2,172],"118":[2,172],"125":[2,172],"126":[2,172],"129":[2,172],"130":[2,172],"136":[2,172],"137":[2,172],"138":[2,172],"139":[2,172],"140":[2,172],"141":[2,172],"142":[2,172],"143":[2,172],"144":[2,172],"145":[2,172],"146":[2,172],"147":[2,172],"148":[2,172],"149":[2,172],"150":[2,172],"151":[2,172],"152":[2,172],"153":[2,172],"154":[2,172],"155":[2,172],"156":[2,172],"157":[2,172],"158":[2,172],"159":[2,172],"160":[2,172],"161":[2,172]},{"1":[2,173],"4":[2,173],"28":[2,173],"29":[2,173],"48":[1,111],"56":[2,173],"59":[2,173],"77":[2,173],"82":[2,173],"92":[2,173],"97":[2,173],"105":[2,173],"106":126,"107":[2,173],"108":[2,173],"109":[2,173],"112":[2,173],"116":[2,173],"117":[2,173],"118":[2,173],"125":[2,173],"126":[2,173],"129":[2,173],"130":[2,173],"136":[2,173],"137":[2,173],"138":[2,173],"139":[2,173],"140":[2,173],"141":[2,173],"142":[2,173],"143":[2,173],"144":[2,173],"145":[2,173],"146":[2,173],"147":[2,173],"148":[2,173],"149":[2,173],"150":[2,173],"151":[2,173],"152":[2,173],"153":[2,173],"154":[2,173],"155":[2,173],"156":[2,173],"157":[2,173],"158":[2,173],"159":[2,173],"160":[2,173],"161":[2,173]},{"1":[2,174],"4":[2,174],"28":[2,174],"29":[2,174],"48":[1,111],"56":[2,174],"59":[2,174],"77":[2,174],"82":[2,174],"92":[2,174],"97":[2,174],"105":[2,174],"106":126,"107":[2,174],"108":[2,174],"109":[2,174],"112":[2,174],"116":[2,174],"117":[2,174],"118":[2,174],"125":[2,174],"126":[2,174],"129":[2,174],"130":[2,174],"136":[2,174],"137":[2,174],"138":[2,174],"139":[2,174],"140":[2,174],"141":[2,174],"142":[2,174],"143":[2,174],"144":[2,174],"145":[2,174],"146":[2,174],"147":[2,174],"148":[2,174],"149":[2,174],"150":[2,174],"151":[2,174],"152":[2,174],"153":[2,174],"154":[2,174],"155":[2,174],"156":[2,174],"157":[2,174],"158":[2,174],"159":[2,174],"160":[2,174],"161":[2,174]},{"1":[2,175],"4":[2,175],"28":[2,175],"29":[2,175],"48":[1,111],"56":[2,175],"59":[2,175],"77":[2,175],"82":[2,175],"92":[2,175],"97":[2,175],"105":[2,175],"106":126,"107":[2,175],"108":[2,175],"109":[2,175],"112":[2,175],"116":[2,175],"117":[2,175],"118":[2,175],"125":[2,175],"126":[2,175],"129":[2,175],"130":[2,175],"136":[2,175],"137":[2,175],"138":[2,175],"139":[2,175],"140":[2,175],"141":[2,175],"142":[2,175],"143":[2,175],"144":[2,175],"145":[2,175],"146":[2,175],"147":[2,175],"148":[2,175],"149":[2,175],"150":[2,175],"151":[2,175],"152":[2,175],"153":[2,175],"154":[2,175],"155":[2,175],"156":[2,175],"157":[2,175],"158":[2,175],"159":[2,175],"160":[2,175],"161":[2,175]},{"1":[2,176],"4":[2,176],"28":[2,176],"29":[2,176],"48":[1,111],"56":[2,176],"59":[2,176],"77":[2,176],"82":[2,176],"92":[2,176],"97":[2,176],"105":[2,176],"106":126,"107":[2,176],"108":[2,176],"109":[2,176],"112":[2,176],"116":[2,176],"117":[2,176],"118":[2,176],"125":[2,176],"126":[2,176],"129":[2,176],"130":[2,176],"136":[2,176],"137":[2,176],"138":[2,176],"139":[2,176],"140":[2,176],"141":[2,176],"142":[2,176],"143":[2,176],"144":[2,176],"145":[2,176],"146":[2,176],"147":[2,176],"148":[2,176],"149":[2,176],"150":[2,176],"151":[2,176],"152":[2,176],"153":[2,176],"154":[2,176],"155":[2,176],"156":[2,176],"157":[2,176],"158":[2,176],"159":[2,176],"160":[2,176],"161":[2,176]},{"1":[2,177],"4":[2,177],"28":[2,177],"29":[2,177],"48":[1,111],"56":[2,177],"59":[2,177],"77":[2,177],"82":[2,177],"92":[2,177],"97":[2,177],"105":[2,177],"106":126,"107":[2,177],"108":[2,177],"109":[2,177],"112":[2,177],"116":[2,177],"117":[2,177],"118":[2,177],"125":[2,177],"126":[2,177],"129":[2,177],"130":[2,177],"136":[2,177],"137":[2,177],"138":[2,177],"139":[2,177],"140":[2,177],"141":[2,177],"142":[2,177],"143":[2,177],"144":[2,177],"145":[2,177],"146":[2,177],"147":[2,177],"148":[2,177],"149":[2,177],"150":[2,177],"151":[2,177],"152":[2,177],"153":[2,177],"154":[2,177],"155":[2,177],"156":[2,177],"157":[2,177],"158":[2,177],"159":[2,177],"160":[2,177],"161":[2,177]},{"1":[2,178],"4":[2,178],"28":[2,178],"29":[2,178],"48":[1,111],"56":[2,178],"59":[2,178],"77":[2,178],"82":[2,178],"92":[2,178],"97":[2,178],"105":[2,178],"106":126,"107":[2,178],"108":[2,178],"109":[2,178],"112":[2,178],"116":[2,178],"117":[2,178],"118":[2,178],"125":[2,178],"126":[2,178],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,178],"150":[2,178],"151":[2,178],"152":[2,178],"153":[2,178],"154":[2,178],"155":[2,178],"156":[2,178],"157":[2,178],"158":[2,178],"159":[2,178],"160":[2,178],"161":[1,120]},{"1":[2,179],"4":[2,179],"28":[2,179],"29":[2,179],"48":[1,111],"56":[2,179],"59":[2,179],"77":[2,179],"82":[2,179],"92":[2,179],"97":[2,179],"105":[2,179],"106":126,"107":[2,179],"108":[2,179],"109":[2,179],"112":[2,179],"116":[2,179],"117":[2,179],"118":[2,179],"125":[2,179],"126":[2,179],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,179],"150":[2,179],"151":[2,179],"152":[2,179],"153":[2,179],"154":[2,179],"155":[2,179],"156":[2,179],"157":[2,179],"158":[2,179],"159":[2,179],"160":[2,179],"161":[1,120]},{"6":254,"28":[1,6],"125":[1,253]},{"100":255,"101":[1,256],"102":[1,257]},{"1":[2,133],"4":[2,133],"28":[2,133],"29":[2,133],"48":[2,133],"56":[2,133],"59":[2,133],"77":[2,133],"82":[2,133],"92":[2,133],"97":[2,133],"105":[2,133],"107":[2,133],"108":[2,133],"109":[2,133],"112":[2,133],"116":[2,133],"117":[2,133],"118":[2,133],"125":[2,133],"126":[2,133],"127":[2,133],"129":[2,133],"130":[2,133],"132":[2,133],"133":[2,133],"136":[2,133],"137":[2,133],"138":[2,133],"139":[2,133],"140":[2,133],"141":[2,133],"142":[2,133],"143":[2,133],"144":[2,133],"145":[2,133],"146":[2,133],"147":[2,133],"148":[2,133],"149":[2,133],"150":[2,133],"151":[2,133],"152":[2,133],"153":[2,133],"154":[2,133],"155":[2,133],"156":[2,133],"157":[2,133],"158":[2,133],"159":[2,133],"160":[2,133],"161":[2,133]},{"114":258,"116":[1,259],"117":[1,260]},{"56":[1,261],"116":[2,145],"117":[2,145]},{"56":[2,142],"116":[2,142],"117":[2,142]},{"56":[2,143],"116":[2,143],"117":[2,143]},{"56":[2,144],"116":[2,144],"117":[2,144]},{"4":[2,116],"8":241,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,116],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,116],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"91":185,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,116],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"28":[1,262],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"120":263,"122":264,"123":[1,265]},{"14":266,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":151,"62":180,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"1":[2,90],"4":[2,90],"28":[1,268],"29":[2,90],"48":[2,90],"56":[2,90],"59":[2,90],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,90],"78":[2,66],"79":[2,66],"82":[2,90],"84":[1,267],"90":[2,66],"92":[2,90],"97":[2,90],"105":[2,90],"107":[2,90],"108":[2,90],"109":[2,90],"112":[2,90],"116":[2,90],"117":[2,90],"118":[2,90],"125":[2,90],"126":[2,90],"127":[2,90],"129":[2,90],"130":[2,90],"132":[2,90],"133":[2,90],"136":[2,90],"137":[2,90],"138":[2,90],"139":[2,90],"140":[2,90],"141":[2,90],"142":[2,90],"143":[2,90],"144":[2,90],"145":[2,90],"146":[2,90],"147":[2,90],"148":[2,90],"149":[2,90],"150":[2,90],"151":[2,90],"152":[2,90],"153":[2,90],"154":[2,90],"155":[2,90],"156":[2,90],"157":[2,90],"158":[2,90],"159":[2,90],"160":[2,90],"161":[2,90]},{"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"78":[1,143],"79":[1,144],"89":133,"90":[1,135]},{"61":147,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"78":[1,143],"79":[1,144],"89":146,"90":[1,135]},{"1":[2,47],"4":[2,47],"29":[2,47],"48":[1,111],"59":[1,128],"105":[2,47],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[2,47],"126":[2,47],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,127],"4":[2,127],"29":[2,127],"48":[1,111],"59":[1,128],"105":[2,127],"106":126,"107":[2,127],"109":[2,127],"112":[2,127],"116":[1,121],"117":[1,122],"125":[2,127],"126":[2,127],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"105":[1,269]},{"4":[2,117],"28":[2,117],"48":[1,111],"56":[2,117],"59":[1,270],"97":[2,117],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,54],"28":[2,54],"55":271,"56":[1,272],"97":[2,54]},{"1":[2,110],"4":[2,110],"28":[2,110],"29":[2,110],"45":[2,110],"48":[2,110],"56":[2,110],"59":[2,110],"70":[2,110],"71":[2,110],"72":[2,110],"73":[2,110],"76":[2,110],"77":[2,110],"78":[2,110],"79":[2,110],"82":[2,110],"84":[2,110],"90":[2,110],"92":[2,110],"97":[2,110],"105":[2,110],"107":[2,110],"108":[2,110],"109":[2,110],"112":[2,110],"116":[2,110],"117":[2,110],"118":[2,110],"125":[2,110],"126":[2,110],"127":[2,110],"129":[2,110],"130":[2,110],"132":[2,110],"133":[2,110],"136":[2,110],"137":[2,110],"138":[2,110],"139":[2,110],"140":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"147":[2,110],"148":[2,110],"149":[2,110],"150":[2,110],"151":[2,110],"152":[2,110],"153":[2,110],"154":[2,110],"155":[2,110],"156":[2,110],"157":[2,110],"158":[2,110],"159":[2,110],"160":[2,110],"161":[2,110]},{"1":[2,107],"4":[2,107],"28":[2,107],"29":[2,107],"48":[2,107],"56":[2,107],"59":[2,107],"77":[2,107],"82":[2,107],"92":[2,107],"97":[2,107],"105":[2,107],"107":[2,107],"108":[2,107],"109":[2,107],"112":[2,107],"116":[2,107],"117":[2,107],"118":[2,107],"125":[2,107],"126":[2,107],"127":[2,107],"129":[2,107],"130":[2,107],"132":[2,107],"133":[2,107],"136":[2,107],"137":[2,107],"138":[2,107],"139":[2,107],"140":[2,107],"141":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"148":[2,107],"149":[2,107],"150":[2,107],"151":[2,107],"152":[2,107],"153":[2,107],"154":[2,107],"155":[2,107],"156":[2,107],"157":[2,107],"158":[2,107],"159":[2,107],"160":[2,107],"161":[2,107]},{"6":273,"28":[1,6],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"6":274,"28":[1,6],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,129],"4":[2,129],"28":[2,129],"29":[2,129],"48":[1,111],"56":[2,129],"59":[1,128],"77":[2,129],"82":[2,129],"92":[2,129],"97":[2,129],"105":[2,129],"106":126,"107":[1,77],"108":[1,275],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,129],"125":[2,129],"126":[2,129],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,131],"4":[2,131],"28":[2,131],"29":[2,131],"48":[1,111],"56":[2,131],"59":[1,128],"77":[2,131],"82":[2,131],"92":[2,131],"97":[2,131],"105":[2,131],"106":126,"107":[1,77],"108":[1,276],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,131],"125":[2,131],"126":[2,131],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,137],"4":[2,137],"28":[2,137],"29":[2,137],"48":[2,137],"56":[2,137],"59":[2,137],"77":[2,137],"82":[2,137],"92":[2,137],"97":[2,137],"105":[2,137],"107":[2,137],"108":[2,137],"109":[2,137],"112":[2,137],"116":[2,137],"117":[2,137],"118":[2,137],"125":[2,137],"126":[2,137],"127":[2,137],"129":[2,137],"130":[2,137],"132":[2,137],"133":[2,137],"136":[2,137],"137":[2,137],"138":[2,137],"139":[2,137],"140":[2,137],"141":[2,137],"142":[2,137],"143":[2,137],"144":[2,137],"145":[2,137],"146":[2,137],"147":[2,137],"148":[2,137],"149":[2,137],"150":[2,137],"151":[2,137],"152":[2,137],"153":[2,137],"154":[2,137],"155":[2,137],"156":[2,137],"157":[2,137],"158":[2,137],"159":[2,137],"160":[2,137],"161":[2,137]},{"1":[2,138],"4":[2,138],"28":[2,138],"29":[2,138],"48":[1,111],"56":[2,138],"59":[1,128],"77":[2,138],"82":[2,138],"92":[2,138],"97":[2,138],"105":[2,138],"106":126,"107":[1,77],"108":[2,138],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,138],"125":[2,138],"126":[2,138],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,54],"28":[2,54],"55":277,"56":[1,278],"82":[2,54]},{"4":[2,86],"28":[2,86],"29":[2,86],"56":[2,86],"82":[2,86]},{"4":[2,43],"28":[2,43],"29":[2,43],"45":[1,279],"56":[2,43],"82":[2,43]},{"4":[2,44],"28":[2,44],"29":[2,44],"45":[1,280],"56":[2,44],"82":[2,44]},{"1":[2,6],"4":[2,6],"29":[2,6]},{"1":[2,28],"4":[2,28],"28":[2,28],"29":[2,28],"48":[2,28],"56":[2,28],"59":[2,28],"77":[2,28],"82":[2,28],"92":[2,28],"97":[2,28],"101":[2,28],"102":[2,28],"105":[2,28],"107":[2,28],"108":[2,28],"109":[2,28],"112":[2,28],"116":[2,28],"117":[2,28],"118":[2,28],"121":[2,28],"123":[2,28],"125":[2,28],"126":[2,28],"127":[2,28],"129":[2,28],"130":[2,28],"132":[2,28],"133":[2,28],"136":[2,28],"137":[2,28],"138":[2,28],"139":[2,28],"140":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"148":[2,28],"149":[2,28],"150":[2,28],"151":[2,28],"152":[2,28],"153":[2,28],"154":[2,28],"155":[2,28],"156":[2,28],"157":[2,28],"158":[2,28],"159":[2,28],"160":[2,28],"161":[2,28]},{"1":[2,182],"4":[2,182],"28":[2,182],"29":[2,182],"48":[1,111],"56":[2,182],"59":[2,182],"77":[2,182],"82":[2,182],"92":[2,182],"97":[2,182],"105":[2,182],"106":126,"107":[2,182],"108":[2,182],"109":[2,182],"112":[2,182],"116":[2,182],"117":[2,182],"118":[2,182],"125":[2,182],"126":[2,182],"127":[1,123],"129":[2,182],"130":[2,182],"132":[1,90],"133":[1,91],"136":[2,182],"137":[2,182],"138":[2,182],"139":[2,182],"140":[2,182],"141":[2,182],"142":[2,182],"143":[2,182],"144":[2,182],"145":[2,182],"146":[2,182],"147":[2,182],"148":[2,182],"149":[2,182],"150":[2,182],"151":[2,182],"152":[2,182],"153":[2,182],"154":[2,182],"155":[2,182],"156":[2,182],"157":[2,182],"158":[2,182],"159":[2,182],"160":[2,182],"161":[2,182]},{"1":[2,183],"4":[2,183],"28":[2,183],"29":[2,183],"48":[1,111],"56":[2,183],"59":[2,183],"77":[2,183],"82":[2,183],"92":[2,183],"97":[2,183],"105":[2,183],"106":126,"107":[2,183],"108":[2,183],"109":[2,183],"112":[2,183],"116":[2,183],"117":[2,183],"118":[2,183],"125":[2,183],"126":[2,183],"127":[1,123],"129":[2,183],"130":[2,183],"132":[1,90],"133":[1,91],"136":[2,183],"137":[2,183],"138":[2,183],"139":[2,183],"140":[2,183],"141":[2,183],"142":[2,183],"143":[2,183],"144":[2,183],"145":[2,183],"146":[2,183],"147":[2,183],"148":[2,183],"149":[2,183],"150":[2,183],"151":[2,183],"152":[2,183],"153":[2,183],"154":[2,183],"155":[2,183],"156":[2,183],"157":[2,183],"158":[2,183],"159":[2,183],"160":[2,183],"161":[2,183]},{"1":[2,184],"4":[2,184],"28":[2,184],"29":[2,184],"48":[1,111],"56":[2,184],"59":[2,184],"77":[2,184],"82":[2,184],"92":[2,184],"97":[2,184],"105":[2,184],"106":126,"107":[2,184],"108":[2,184],"109":[2,184],"112":[2,184],"116":[2,184],"117":[2,184],"118":[2,184],"125":[2,184],"126":[2,184],"127":[1,123],"129":[2,184],"130":[2,184],"132":[1,90],"133":[1,91],"136":[2,184],"137":[2,184],"138":[2,184],"139":[2,184],"140":[2,184],"141":[2,184],"142":[2,184],"143":[2,184],"144":[2,184],"145":[2,184],"146":[2,184],"147":[2,184],"148":[2,184],"149":[2,184],"150":[2,184],"151":[2,184],"152":[2,184],"153":[2,184],"154":[2,184],"155":[2,184],"156":[2,184],"157":[2,184],"158":[2,184],"159":[2,184],"160":[2,184],"161":[2,184]},{"1":[2,185],"4":[2,185],"28":[2,185],"29":[2,185],"48":[1,111],"56":[2,185],"59":[2,185],"77":[2,185],"82":[2,185],"92":[2,185],"97":[2,185],"105":[2,185],"106":126,"107":[2,185],"108":[2,185],"109":[2,185],"112":[2,185],"116":[2,185],"117":[2,185],"118":[2,185],"125":[2,185],"126":[2,185],"127":[1,123],"129":[2,185],"130":[2,185],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,185],"140":[2,185],"141":[2,185],"142":[2,185],"143":[2,185],"144":[2,185],"145":[2,185],"146":[2,185],"147":[2,185],"148":[2,185],"149":[2,185],"150":[2,185],"151":[2,185],"152":[2,185],"153":[2,185],"154":[2,185],"155":[2,185],"156":[2,185],"157":[2,185],"158":[2,185],"159":[2,185],"160":[2,185],"161":[2,185]},{"1":[2,186],"4":[2,186],"28":[2,186],"29":[2,186],"48":[1,111],"56":[2,186],"59":[2,186],"77":[2,186],"82":[2,186],"92":[2,186],"97":[2,186],"105":[2,186],"106":126,"107":[2,186],"108":[2,186],"109":[2,186],"112":[2,186],"116":[2,186],"117":[2,186],"118":[2,186],"125":[2,186],"126":[2,186],"127":[1,123],"129":[2,186],"130":[2,186],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,186],"140":[2,186],"141":[2,186],"142":[2,186],"143":[2,186],"144":[2,186],"145":[2,186],"146":[2,186],"147":[2,186],"148":[2,186],"149":[2,186],"150":[2,186],"151":[2,186],"152":[2,186],"153":[2,186],"154":[2,186],"155":[2,186],"156":[2,186],"157":[2,186],"158":[2,186],"159":[2,186],"160":[2,186],"161":[2,186]},{"1":[2,187],"4":[2,187],"28":[2,187],"29":[2,187],"48":[1,111],"56":[2,187],"59":[2,187],"77":[2,187],"82":[2,187],"92":[2,187],"97":[2,187],"105":[2,187],"106":126,"107":[2,187],"108":[2,187],"109":[2,187],"112":[2,187],"116":[2,187],"117":[2,187],"118":[2,187],"125":[2,187],"126":[2,187],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,187],"140":[2,187],"141":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"146":[2,187],"147":[2,187],"148":[2,187],"149":[2,187],"150":[2,187],"151":[2,187],"152":[2,187],"153":[2,187],"154":[2,187],"155":[2,187],"156":[2,187],"157":[2,187],"158":[2,187],"159":[2,187],"160":[2,187],"161":[2,187]},{"1":[2,188],"4":[2,188],"28":[2,188],"29":[2,188],"48":[1,111],"56":[2,188],"59":[2,188],"77":[2,188],"82":[2,188],"92":[2,188],"97":[2,188],"105":[2,188],"106":126,"107":[2,188],"108":[2,188],"109":[2,188],"112":[2,188],"116":[2,188],"117":[2,188],"118":[2,188],"125":[2,188],"126":[2,188],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,188],"140":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"147":[2,188],"148":[2,188],"149":[2,188],"150":[2,188],"151":[2,188],"152":[2,188],"153":[2,188],"154":[2,188],"155":[2,188],"156":[2,188],"157":[2,188],"158":[2,188],"159":[2,188],"160":[2,188],"161":[2,188]},{"1":[2,189],"4":[2,189],"28":[2,189],"29":[2,189],"48":[1,111],"56":[2,189],"59":[2,189],"77":[2,189],"82":[2,189],"92":[2,189],"97":[2,189],"105":[2,189],"106":126,"107":[2,189],"108":[2,189],"109":[2,189],"112":[2,189],"116":[2,189],"117":[2,189],"118":[2,189],"125":[2,189],"126":[2,189],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,189],"140":[2,189],"141":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"148":[2,189],"149":[2,189],"150":[2,189],"151":[2,189],"152":[2,189],"153":[2,189],"154":[2,189],"155":[2,189],"156":[2,189],"157":[2,189],"158":[2,189],"159":[2,189],"160":[2,189],"161":[2,189]},{"1":[2,190],"4":[2,190],"28":[2,190],"29":[2,190],"48":[1,111],"56":[2,190],"59":[2,190],"77":[2,190],"82":[2,190],"92":[2,190],"97":[2,190],"105":[2,190],"106":126,"107":[2,190],"108":[2,190],"109":[2,190],"112":[2,190],"116":[2,190],"117":[2,190],"118":[2,190],"125":[2,190],"126":[2,190],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"148":[2,190],"149":[2,190],"150":[2,190],"151":[2,190],"152":[2,190],"153":[2,190],"154":[2,190],"155":[2,190],"156":[2,190],"157":[2,190],"158":[2,190],"159":[2,190],"160":[2,190],"161":[2,190]},{"1":[2,191],"4":[2,191],"28":[2,191],"29":[2,191],"48":[1,111],"56":[2,191],"59":[2,191],"77":[2,191],"82":[2,191],"92":[2,191],"97":[2,191],"105":[2,191],"106":126,"107":[2,191],"108":[2,191],"109":[2,191],"112":[2,191],"116":[2,191],"117":[2,191],"118":[2,191],"125":[2,191],"126":[2,191],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"148":[2,191],"149":[2,191],"150":[2,191],"151":[2,191],"152":[2,191],"153":[2,191],"154":[2,191],"155":[2,191],"156":[2,191],"157":[2,191],"158":[2,191],"159":[2,191],"160":[2,191],"161":[2,191]},{"1":[2,192],"4":[2,192],"28":[2,192],"29":[2,192],"48":[1,111],"56":[2,192],"59":[2,192],"77":[2,192],"82":[2,192],"92":[2,192],"97":[2,192],"105":[2,192],"106":126,"107":[2,192],"108":[2,192],"109":[2,192],"112":[2,192],"116":[2,192],"117":[2,192],"118":[2,192],"125":[2,192],"126":[2,192],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[2,192],"143":[2,192],"144":[2,192],"145":[2,192],"146":[2,192],"147":[2,192],"148":[2,192],"149":[2,192],"150":[2,192],"151":[2,192],"152":[2,192],"153":[2,192],"154":[2,192],"155":[2,192],"156":[2,192],"157":[2,192],"158":[2,192],"159":[2,192],"160":[2,192],"161":[2,192]},{"1":[2,193],"4":[2,193],"28":[2,193],"29":[2,193],"48":[1,111],"56":[2,193],"59":[2,193],"77":[2,193],"82":[2,193],"92":[2,193],"97":[2,193],"105":[2,193],"106":126,"107":[2,193],"108":[2,193],"109":[2,193],"112":[2,193],"116":[2,193],"117":[2,193],"118":[2,193],"125":[2,193],"126":[2,193],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,193],"146":[2,193],"147":[2,193],"148":[2,193],"149":[2,193],"150":[2,193],"151":[2,193],"152":[2,193],"153":[2,193],"154":[2,193],"155":[2,193],"156":[2,193],"157":[2,193],"158":[2,193],"159":[2,193],"160":[2,193],"161":[2,193]},{"1":[2,194],"4":[2,194],"28":[2,194],"29":[2,194],"48":[1,111],"56":[2,194],"59":[2,194],"77":[2,194],"82":[2,194],"92":[2,194],"97":[2,194],"105":[2,194],"106":126,"107":[2,194],"108":[2,194],"109":[2,194],"112":[2,194],"116":[2,194],"117":[2,194],"118":[2,194],"125":[2,194],"126":[2,194],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,194],"146":[2,194],"147":[2,194],"148":[2,194],"149":[2,194],"150":[2,194],"151":[2,194],"152":[2,194],"153":[2,194],"154":[2,194],"155":[2,194],"156":[2,194],"157":[2,194],"158":[2,194],"159":[2,194],"160":[2,194],"161":[2,194]},{"1":[2,195],"4":[2,195],"28":[2,195],"29":[2,195],"48":[1,111],"56":[2,195],"59":[2,195],"77":[2,195],"82":[2,195],"92":[2,195],"97":[2,195],"105":[2,195],"106":126,"107":[2,195],"108":[2,195],"109":[2,195],"112":[2,195],"116":[2,195],"117":[2,195],"118":[2,195],"125":[2,195],"126":[2,195],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,195],"146":[2,195],"147":[2,195],"148":[2,195],"149":[2,195],"150":[2,195],"151":[2,195],"152":[2,195],"153":[2,195],"154":[2,195],"155":[2,195],"156":[2,195],"157":[2,195],"158":[2,195],"159":[2,195],"160":[2,195],"161":[2,195]},{"1":[2,196],"4":[2,196],"28":[2,196],"29":[2,196],"48":[1,111],"56":[2,196],"59":[2,196],"77":[2,196],"82":[2,196],"92":[2,196],"97":[2,196],"105":[2,196],"106":126,"107":[2,196],"108":[2,196],"109":[2,196],"112":[2,196],"116":[2,196],"117":[2,196],"118":[2,196],"125":[2,196],"126":[2,196],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,196],"146":[2,196],"147":[2,196],"148":[2,196],"149":[2,196],"150":[2,196],"151":[2,196],"152":[2,196],"153":[2,196],"154":[2,196],"155":[2,196],"156":[2,196],"157":[2,196],"158":[2,196],"159":[2,196],"160":[2,196],"161":[2,196]},{"1":[2,197],"4":[2,197],"28":[2,197],"29":[2,197],"48":[1,111],"56":[2,197],"59":[2,197],"77":[2,197],"82":[2,197],"92":[2,197],"97":[2,197],"105":[2,197],"106":126,"107":[2,197],"108":[2,197],"109":[2,197],"112":[2,197],"116":[2,197],"117":[2,197],"118":[2,197],"125":[2,197],"126":[2,197],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,197],"150":[2,197],"151":[2,197],"152":[2,197],"153":[2,197],"154":[2,197],"155":[2,197],"156":[2,197],"157":[2,197],"158":[2,197],"159":[2,197],"160":[2,197],"161":[1,120]},{"1":[2,198],"4":[2,198],"28":[2,198],"29":[2,198],"48":[1,111],"56":[2,198],"59":[2,198],"77":[2,198],"82":[2,198],"92":[2,198],"97":[2,198],"105":[2,198],"106":126,"107":[2,198],"108":[2,198],"109":[2,198],"112":[2,198],"116":[2,198],"117":[2,198],"118":[2,198],"125":[2,198],"126":[2,198],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,198],"150":[2,198],"151":[2,198],"152":[2,198],"153":[2,198],"154":[2,198],"155":[2,198],"156":[2,198],"157":[2,198],"158":[2,198],"159":[2,198],"160":[2,198],"161":[1,120]},{"1":[2,199],"4":[2,199],"28":[2,199],"29":[2,199],"48":[1,111],"56":[2,199],"59":[2,199],"77":[2,199],"82":[2,199],"92":[2,199],"97":[2,199],"105":[2,199],"106":126,"107":[2,199],"108":[2,199],"109":[2,199],"112":[2,199],"116":[2,199],"117":[2,199],"118":[2,199],"125":[2,199],"126":[2,199],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[2,199],"152":[2,199],"153":[2,199],"154":[2,199],"155":[2,199],"156":[2,199],"157":[2,199],"158":[2,199],"159":[2,199],"160":[2,199],"161":[1,120]},{"1":[2,200],"4":[2,200],"28":[2,200],"29":[2,200],"48":[1,111],"56":[2,200],"59":[2,200],"77":[2,200],"82":[2,200],"92":[2,200],"97":[2,200],"105":[2,200],"106":126,"107":[2,200],"108":[2,200],"109":[2,200],"112":[2,200],"116":[2,200],"117":[2,200],"118":[2,200],"125":[2,200],"126":[2,200],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[2,200],"152":[2,200],"153":[2,200],"154":[2,200],"155":[2,200],"156":[2,200],"157":[2,200],"158":[2,200],"159":[2,200],"160":[2,200],"161":[1,120]},{"1":[2,201],"4":[2,201],"28":[2,201],"29":[2,201],"48":[2,201],"56":[2,201],"59":[2,201],"77":[2,201],"82":[2,201],"92":[2,201],"97":[2,201],"105":[2,201],"106":126,"107":[2,201],"108":[2,201],"109":[2,201],"112":[2,201],"116":[2,201],"117":[2,201],"118":[2,201],"125":[2,201],"126":[2,201],"127":[2,201],"129":[2,201],"130":[2,201],"132":[2,201],"133":[2,201],"136":[2,201],"137":[2,201],"138":[2,201],"139":[2,201],"140":[2,201],"141":[2,201],"142":[2,201],"143":[2,201],"144":[2,201],"145":[2,201],"146":[2,201],"147":[2,201],"148":[2,201],"149":[2,201],"150":[2,201],"151":[2,201],"152":[2,201],"153":[2,201],"154":[2,201],"155":[2,201],"156":[2,201],"157":[2,201],"158":[2,201],"159":[2,201],"160":[2,201],"161":[2,201]},{"1":[2,202],"4":[2,202],"28":[2,202],"29":[2,202],"48":[1,111],"56":[2,202],"59":[2,202],"77":[2,202],"82":[2,202],"92":[2,202],"97":[2,202],"105":[2,202],"106":126,"107":[2,202],"108":[2,202],"109":[2,202],"112":[2,202],"116":[2,202],"117":[2,202],"118":[2,202],"125":[2,202],"126":[2,202],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,203],"4":[2,203],"28":[2,203],"29":[2,203],"48":[1,111],"56":[2,203],"59":[2,203],"77":[2,203],"82":[2,203],"92":[2,203],"97":[2,203],"105":[2,203],"106":126,"107":[2,203],"108":[2,203],"109":[2,203],"112":[2,203],"116":[2,203],"117":[2,203],"118":[2,203],"125":[2,203],"126":[2,203],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,204],"4":[2,204],"28":[2,204],"29":[2,204],"48":[1,111],"56":[2,204],"59":[2,204],"77":[2,204],"82":[2,204],"92":[2,204],"97":[2,204],"105":[2,204],"106":126,"107":[2,204],"108":[2,204],"109":[2,204],"112":[2,204],"116":[2,204],"117":[2,204],"118":[2,204],"125":[2,204],"126":[2,204],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,205],"4":[2,205],"28":[2,205],"29":[2,205],"48":[1,111],"56":[2,205],"59":[2,205],"77":[2,205],"82":[2,205],"92":[2,205],"97":[2,205],"105":[2,205],"106":126,"107":[2,205],"108":[2,205],"109":[2,205],"112":[2,205],"116":[2,205],"117":[2,205],"118":[2,205],"125":[2,205],"126":[2,205],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,206],"4":[2,206],"28":[2,206],"29":[2,206],"48":[1,111],"56":[2,206],"59":[2,206],"77":[2,206],"82":[2,206],"92":[2,206],"97":[2,206],"105":[2,206],"106":126,"107":[2,206],"108":[2,206],"109":[2,206],"112":[2,206],"116":[2,206],"117":[2,206],"118":[2,206],"125":[2,206],"126":[2,206],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,207],"4":[2,207],"28":[2,207],"29":[2,207],"48":[1,111],"56":[2,207],"59":[2,207],"77":[2,207],"82":[2,207],"92":[2,207],"97":[2,207],"105":[2,207],"106":126,"107":[2,207],"108":[2,207],"109":[2,207],"112":[2,207],"116":[2,207],"117":[2,207],"118":[2,207],"125":[2,207],"126":[2,207],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,208],"4":[2,208],"28":[2,208],"29":[2,208],"48":[1,111],"56":[2,208],"59":[2,208],"77":[2,208],"82":[2,208],"92":[2,208],"97":[2,208],"105":[2,208],"106":126,"107":[2,208],"108":[2,208],"109":[2,208],"112":[2,208],"116":[2,208],"117":[2,208],"118":[2,208],"125":[2,208],"126":[2,208],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,209],"4":[2,209],"28":[2,209],"29":[2,209],"48":[1,111],"56":[2,209],"59":[2,209],"77":[2,209],"82":[2,209],"92":[2,209],"97":[2,209],"105":[2,209],"106":126,"107":[2,209],"108":[2,209],"109":[2,209],"112":[2,209],"116":[2,209],"117":[2,209],"118":[2,209],"125":[2,209],"126":[2,209],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,210],"4":[2,210],"28":[2,210],"29":[2,210],"48":[1,111],"56":[2,210],"59":[2,210],"77":[2,210],"82":[2,210],"92":[2,210],"97":[2,210],"105":[2,210],"106":126,"107":[2,210],"108":[2,210],"109":[2,210],"112":[2,210],"116":[2,210],"117":[2,210],"118":[2,210],"125":[2,210],"126":[2,210],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,210],"150":[2,210],"151":[2,210],"152":[2,210],"153":[2,210],"154":[2,210],"155":[2,210],"156":[2,210],"157":[2,210],"158":[2,210],"159":[2,210],"160":[2,210],"161":[1,120]},{"1":[2,211],"4":[2,211],"28":[2,211],"29":[2,211],"48":[1,111],"56":[2,211],"59":[1,128],"77":[2,211],"82":[2,211],"92":[2,211],"97":[2,211],"105":[2,211],"106":126,"107":[2,211],"108":[2,211],"109":[2,211],"112":[2,211],"116":[1,121],"117":[1,122],"118":[2,211],"125":[2,211],"126":[2,211],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,212],"4":[2,212],"28":[2,212],"29":[2,212],"48":[1,111],"56":[2,212],"59":[1,128],"77":[2,212],"82":[2,212],"92":[2,212],"97":[2,212],"105":[2,212],"106":126,"107":[2,212],"108":[2,212],"109":[2,212],"112":[2,212],"116":[1,121],"117":[1,122],"118":[2,212],"125":[2,212],"126":[2,212],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"8":281,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":282,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,168],"4":[2,168],"28":[2,168],"29":[2,168],"48":[1,111],"56":[2,168],"59":[1,128],"77":[2,168],"82":[2,168],"92":[2,168],"97":[2,168],"105":[2,168],"106":126,"107":[1,77],"108":[2,168],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,168],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,170],"4":[2,170],"28":[2,170],"29":[2,170],"48":[1,111],"56":[2,170],"59":[1,128],"77":[2,170],"82":[2,170],"92":[2,170],"97":[2,170],"105":[2,170],"106":126,"107":[1,77],"108":[2,170],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,170],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"114":283,"116":[1,259],"117":[1,260]},{"59":[1,284]},{"1":[2,167],"4":[2,167],"28":[2,167],"29":[2,167],"48":[1,111],"56":[2,167],"59":[1,128],"77":[2,167],"82":[2,167],"92":[2,167],"97":[2,167],"105":[2,167],"106":126,"107":[1,77],"108":[2,167],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,167],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,169],"4":[2,169],"28":[2,169],"29":[2,169],"48":[1,111],"56":[2,169],"59":[1,128],"77":[2,169],"82":[2,169],"92":[2,169],"97":[2,169],"105":[2,169],"106":126,"107":[1,77],"108":[2,169],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,169],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"114":285,"116":[1,259],"117":[1,260]},{"4":[2,54],"28":[2,54],"55":286,"56":[1,272],"92":[2,54]},{"4":[2,117],"28":[2,117],"29":[2,117],"48":[1,111],"56":[2,117],"59":[1,128],"92":[2,117],"97":[2,117],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,75],"4":[2,75],"28":[2,75],"29":[2,75],"45":[2,75],"48":[2,75],"56":[2,75],"59":[2,75],"70":[2,75],"71":[2,75],"72":[2,75],"73":[2,75],"76":[2,75],"77":[2,75],"78":[2,75],"79":[2,75],"82":[2,75],"84":[2,75],"90":[2,75],"92":[2,75],"97":[2,75],"105":[2,75],"107":[2,75],"108":[2,75],"109":[2,75],"112":[2,75],"116":[2,75],"117":[2,75],"118":[2,75],"125":[2,75],"126":[2,75],"127":[2,75],"129":[2,75],"130":[2,75],"132":[2,75],"133":[2,75],"136":[2,75],"137":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75]},{"1":[2,76],"4":[2,76],"28":[2,76],"29":[2,76],"45":[2,76],"48":[2,76],"56":[2,76],"59":[2,76],"70":[2,76],"71":[2,76],"72":[2,76],"73":[2,76],"76":[2,76],"77":[2,76],"78":[2,76],"79":[2,76],"82":[2,76],"84":[2,76],"90":[2,76],"92":[2,76],"97":[2,76],"105":[2,76],"107":[2,76],"108":[2,76],"109":[2,76],"112":[2,76],"116":[2,76],"117":[2,76],"118":[2,76],"125":[2,76],"126":[2,76],"127":[2,76],"129":[2,76],"130":[2,76],"132":[2,76],"133":[2,76],"136":[2,76],"137":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76]},{"1":[2,78],"4":[2,78],"28":[2,78],"29":[2,78],"45":[2,78],"48":[2,78],"56":[2,78],"59":[2,78],"70":[2,78],"71":[2,78],"72":[2,78],"73":[2,78],"76":[2,78],"77":[2,78],"78":[2,78],"79":[2,78],"82":[2,78],"84":[2,78],"90":[2,78],"92":[2,78],"97":[2,78],"105":[2,78],"107":[2,78],"108":[2,78],"109":[2,78],"112":[2,78],"116":[2,78],"117":[2,78],"118":[2,78],"125":[2,78],"126":[2,78],"127":[2,78],"129":[2,78],"130":[2,78],"132":[2,78],"133":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78],"151":[2,78],"152":[2,78],"153":[2,78],"154":[2,78],"155":[2,78],"156":[2,78],"157":[2,78],"158":[2,78],"159":[2,78],"160":[2,78],"161":[2,78]},{"48":[1,111],"59":[1,288],"77":[1,287],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,82],"4":[2,82],"28":[2,82],"29":[2,82],"45":[2,82],"48":[2,82],"56":[2,82],"59":[2,82],"70":[2,82],"71":[2,82],"72":[2,82],"73":[2,82],"76":[2,82],"77":[2,82],"78":[2,82],"79":[2,82],"82":[2,82],"84":[2,82],"90":[2,82],"92":[2,82],"97":[2,82],"105":[2,82],"107":[2,82],"108":[2,82],"109":[2,82],"112":[2,82],"116":[2,82],"117":[2,82],"118":[2,82],"125":[2,82],"126":[2,82],"127":[2,82],"129":[2,82],"130":[2,82],"132":[2,82],"133":[2,82],"136":[2,82],"137":[2,82],"138":[2,82],"139":[2,82],"140":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82],"151":[2,82],"152":[2,82],"153":[2,82],"154":[2,82],"155":[2,82],"156":[2,82],"157":[2,82],"158":[2,82],"159":[2,82],"160":[2,82],"161":[2,82]},{"8":289,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,83],"4":[2,83],"28":[2,83],"29":[2,83],"45":[2,83],"48":[2,83],"56":[2,83],"59":[2,83],"70":[2,83],"71":[2,83],"72":[2,83],"73":[2,83],"76":[2,83],"77":[2,83],"78":[2,83],"79":[2,83],"82":[2,83],"84":[2,83],"90":[2,83],"92":[2,83],"97":[2,83],"105":[2,83],"107":[2,83],"108":[2,83],"109":[2,83],"112":[2,83],"116":[2,83],"117":[2,83],"118":[2,83],"125":[2,83],"126":[2,83],"127":[2,83],"129":[2,83],"130":[2,83],"132":[2,83],"133":[2,83],"136":[2,83],"137":[2,83],"138":[2,83],"139":[2,83],"140":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83],"151":[2,83],"152":[2,83],"153":[2,83],"154":[2,83],"155":[2,83],"156":[2,83],"157":[2,83],"158":[2,83],"159":[2,83],"160":[2,83],"161":[2,83]},{"1":[2,42],"4":[2,42],"28":[2,42],"29":[2,42],"48":[1,111],"56":[2,42],"59":[1,128],"77":[2,42],"82":[2,42],"92":[2,42],"97":[2,42],"105":[2,42],"106":126,"107":[1,77],"108":[2,42],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,42],"125":[2,42],"126":[2,42],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"52":290,"53":[1,73],"54":[1,74]},{"57":291,"58":[1,154]},{"59":[1,292]},{"8":293,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,165],"4":[2,165],"28":[2,165],"29":[2,165],"48":[2,165],"56":[2,165],"59":[2,165],"77":[2,165],"82":[2,165],"92":[2,165],"97":[2,165],"105":[2,165],"107":[2,165],"108":[2,165],"109":[2,165],"112":[2,165],"116":[2,165],"117":[2,165],"118":[2,165],"121":[2,165],"125":[2,165],"126":[2,165],"127":[2,165],"129":[2,165],"130":[2,165],"132":[2,165],"133":[2,165],"136":[2,165],"137":[2,165],"138":[2,165],"139":[2,165],"140":[2,165],"141":[2,165],"142":[2,165],"143":[2,165],"144":[2,165],"145":[2,165],"146":[2,165],"147":[2,165],"148":[2,165],"149":[2,165],"150":[2,165],"151":[2,165],"152":[2,165],"153":[2,165],"154":[2,165],"155":[2,165],"156":[2,165],"157":[2,165],"158":[2,165],"159":[2,165],"160":[2,165],"161":[2,165]},{"1":[2,123],"4":[2,123],"28":[2,123],"29":[2,123],"48":[2,123],"56":[2,123],"59":[2,123],"77":[2,123],"82":[2,123],"92":[2,123],"97":[2,123],"101":[1,294],"105":[2,123],"107":[2,123],"108":[2,123],"109":[2,123],"112":[2,123],"116":[2,123],"117":[2,123],"118":[2,123],"125":[2,123],"126":[2,123],"127":[2,123],"129":[2,123],"130":[2,123],"132":[2,123],"133":[2,123],"136":[2,123],"137":[2,123],"138":[2,123],"139":[2,123],"140":[2,123],"141":[2,123],"142":[2,123],"143":[2,123],"144":[2,123],"145":[2,123],"146":[2,123],"147":[2,123],"148":[2,123],"149":[2,123],"150":[2,123],"151":[2,123],"152":[2,123],"153":[2,123],"154":[2,123],"155":[2,123],"156":[2,123],"157":[2,123],"158":[2,123],"159":[2,123],"160":[2,123],"161":[2,123]},{"6":295,"28":[1,6]},{"30":296,"31":[1,85]},{"6":297,"28":[1,6]},{"8":298,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":299,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"115":300},{"120":301,"122":264,"123":[1,265]},{"29":[1,302],"121":[1,303],"122":304,"123":[1,265]},{"29":[2,158],"121":[2,158],"123":[2,158]},{"8":306,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"98":305,"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,103],"4":[2,103],"28":[2,103],"29":[2,103],"48":[2,103],"56":[2,103],"59":[2,103],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,103],"78":[1,143],"79":[1,144],"82":[2,103],"89":133,"90":[1,135],"92":[2,103],"97":[2,103],"105":[2,103],"107":[2,103],"108":[2,103],"109":[2,103],"112":[2,103],"116":[2,103],"117":[2,103],"118":[2,103],"125":[2,103],"126":[2,103],"127":[2,103],"129":[2,103],"130":[2,103],"132":[2,103],"133":[2,103],"136":[2,103],"137":[2,103],"138":[2,103],"139":[2,103],"140":[2,103],"141":[2,103],"142":[2,103],"143":[2,103],"144":[2,103],"145":[2,103],"146":[2,103],"147":[2,103],"148":[2,103],"149":[2,103],"150":[2,103],"151":[2,103],"152":[2,103],"153":[2,103],"154":[2,103],"155":[2,103],"156":[2,103],"157":[2,103],"158":[2,103],"159":[2,103],"160":[2,103],"161":[2,103]},{"14":307,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":151,"62":180,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"4":[2,96],"29":[2,96],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":310,"63":311,"85":308,"86":309,"95":[1,312]},{"1":[2,128],"4":[2,128],"28":[2,128],"29":[2,128],"48":[2,128],"56":[2,128],"59":[2,128],"70":[2,128],"71":[2,128],"72":[2,128],"73":[2,128],"76":[2,128],"77":[2,128],"78":[2,128],"79":[2,128],"82":[2,128],"90":[2,128],"92":[2,128],"97":[2,128],"105":[2,128],"107":[2,128],"108":[2,128],"109":[2,128],"112":[2,128],"116":[2,128],"117":[2,128],"118":[2,128],"125":[2,128],"126":[2,128],"127":[2,128],"129":[2,128],"130":[2,128],"132":[2,128],"133":[2,128],"136":[2,128],"137":[2,128],"138":[2,128],"139":[2,128],"140":[2,128],"141":[2,128],"142":[2,128],"143":[2,128],"144":[2,128],"145":[2,128],"146":[2,128],"147":[2,128],"148":[2,128],"149":[2,128],"150":[2,128],"151":[2,128],"152":[2,128],"153":[2,128],"154":[2,128],"155":[2,128],"156":[2,128],"157":[2,128],"158":[2,128],"159":[2,128],"160":[2,128],"161":[2,128]},{"59":[1,313]},{"4":[1,315],"28":[1,316],"97":[1,314]},{"4":[2,55],"8":317,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,55],"29":[2,55],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"92":[2,55],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,55],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,162],"4":[2,162],"28":[2,162],"29":[2,162],"48":[2,162],"56":[2,162],"59":[2,162],"77":[2,162],"82":[2,162],"92":[2,162],"97":[2,162],"105":[2,162],"107":[2,162],"108":[2,162],"109":[2,162],"112":[2,162],"116":[2,162],"117":[2,162],"118":[2,162],"121":[2,162],"125":[2,162],"126":[2,162],"127":[2,162],"129":[2,162],"130":[2,162],"132":[2,162],"133":[2,162],"136":[2,162],"137":[2,162],"138":[2,162],"139":[2,162],"140":[2,162],"141":[2,162],"142":[2,162],"143":[2,162],"144":[2,162],"145":[2,162],"146":[2,162],"147":[2,162],"148":[2,162],"149":[2,162],"150":[2,162],"151":[2,162],"152":[2,162],"153":[2,162],"154":[2,162],"155":[2,162],"156":[2,162],"157":[2,162],"158":[2,162],"159":[2,162],"160":[2,162],"161":[2,162]},{"1":[2,163],"4":[2,163],"28":[2,163],"29":[2,163],"48":[2,163],"56":[2,163],"59":[2,163],"77":[2,163],"82":[2,163],"92":[2,163],"97":[2,163],"105":[2,163],"107":[2,163],"108":[2,163],"109":[2,163],"112":[2,163],"116":[2,163],"117":[2,163],"118":[2,163],"121":[2,163],"125":[2,163],"126":[2,163],"127":[2,163],"129":[2,163],"130":[2,163],"132":[2,163],"133":[2,163],"136":[2,163],"137":[2,163],"138":[2,163],"139":[2,163],"140":[2,163],"141":[2,163],"142":[2,163],"143":[2,163],"144":[2,163],"145":[2,163],"146":[2,163],"147":[2,163],"148":[2,163],"149":[2,163],"150":[2,163],"151":[2,163],"152":[2,163],"153":[2,163],"154":[2,163],"155":[2,163],"156":[2,163],"157":[2,163],"158":[2,163],"159":[2,163],"160":[2,163],"161":[2,163]},{"8":318,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":319,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[1,321],"28":[1,322],"82":[1,320]},{"4":[2,55],"28":[2,55],"29":[2,55],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":323,"82":[2,55]},{"8":324,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":325,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,213],"4":[2,213],"28":[2,213],"29":[2,213],"48":[1,111],"56":[2,213],"59":[2,213],"77":[2,213],"82":[2,213],"92":[2,213],"97":[2,213],"105":[2,213],"106":126,"107":[2,213],"108":[2,213],"109":[2,213],"112":[2,213],"116":[2,213],"117":[2,213],"118":[2,213],"125":[2,213],"126":[2,213],"129":[2,213],"130":[2,213],"136":[2,213],"137":[2,213],"138":[2,213],"139":[2,213],"140":[2,213],"141":[2,213],"142":[2,213],"143":[2,213],"144":[2,213],"145":[2,213],"146":[2,213],"147":[2,213],"148":[2,213],"149":[2,213],"150":[2,213],"151":[2,213],"152":[2,213],"153":[2,213],"154":[2,213],"155":[2,213],"156":[2,213],"157":[2,213],"158":[2,213],"159":[2,213],"160":[2,213],"161":[2,213]},{"1":[2,214],"4":[2,214],"28":[2,214],"29":[2,214],"48":[1,111],"56":[2,214],"59":[2,214],"77":[2,214],"82":[2,214],"92":[2,214],"97":[2,214],"105":[2,214],"106":126,"107":[2,214],"108":[2,214],"109":[2,214],"112":[2,214],"116":[2,214],"117":[2,214],"118":[2,214],"125":[2,214],"126":[2,214],"129":[2,214],"130":[2,214],"136":[2,214],"137":[2,214],"138":[2,214],"139":[2,214],"140":[2,214],"141":[2,214],"142":[2,214],"143":[2,214],"144":[2,214],"145":[2,214],"146":[2,214],"147":[2,214],"148":[2,214],"149":[2,214],"150":[2,214],"151":[2,214],"152":[2,214],"153":[2,214],"154":[2,214],"155":[2,214],"156":[2,214],"157":[2,214],"158":[2,214],"159":[2,214],"160":[2,214],"161":[2,214]},{"1":[2,140],"4":[2,140],"28":[2,140],"29":[2,140],"48":[2,140],"56":[2,140],"59":[2,140],"77":[2,140],"82":[2,140],"92":[2,140],"97":[2,140],"105":[2,140],"107":[2,140],"108":[2,140],"109":[2,140],"112":[2,140],"116":[2,140],"117":[2,140],"118":[2,140],"125":[2,140],"126":[2,140],"127":[2,140],"129":[2,140],"130":[2,140],"132":[2,140],"133":[2,140],"136":[2,140],"137":[2,140],"138":[2,140],"139":[2,140],"140":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140],"148":[2,140],"149":[2,140],"150":[2,140],"151":[2,140],"152":[2,140],"153":[2,140],"154":[2,140],"155":[2,140],"156":[2,140],"157":[2,140],"158":[2,140],"159":[2,140],"160":[2,140],"161":[2,140]},{"1":[2,61],"4":[2,61],"28":[2,61],"29":[2,61],"48":[2,61],"56":[2,61],"59":[2,61],"77":[2,61],"82":[2,61],"92":[2,61],"97":[2,61],"105":[2,61],"107":[2,61],"108":[2,61],"109":[2,61],"112":[2,61],"116":[2,61],"117":[2,61],"118":[2,61],"125":[2,61],"126":[2,61],"127":[2,61],"129":[2,61],"130":[2,61],"132":[2,61],"133":[2,61],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61],"161":[2,61]},{"1":[2,139],"4":[2,139],"28":[2,139],"29":[2,139],"48":[2,139],"56":[2,139],"59":[2,139],"77":[2,139],"82":[2,139],"92":[2,139],"97":[2,139],"105":[2,139],"107":[2,139],"108":[2,139],"109":[2,139],"112":[2,139],"116":[2,139],"117":[2,139],"118":[2,139],"125":[2,139],"126":[2,139],"127":[2,139],"129":[2,139],"130":[2,139],"132":[2,139],"133":[2,139],"136":[2,139],"137":[2,139],"138":[2,139],"139":[2,139],"140":[2,139],"141":[2,139],"142":[2,139],"143":[2,139],"144":[2,139],"145":[2,139],"146":[2,139],"147":[2,139],"148":[2,139],"149":[2,139],"150":[2,139],"151":[2,139],"152":[2,139],"153":[2,139],"154":[2,139],"155":[2,139],"156":[2,139],"157":[2,139],"158":[2,139],"159":[2,139],"160":[2,139],"161":[2,139]},{"4":[1,315],"28":[1,316],"92":[1,326]},{"1":[2,81],"4":[2,81],"28":[2,81],"29":[2,81],"45":[2,81],"48":[2,81],"56":[2,81],"59":[2,81],"70":[2,81],"71":[2,81],"72":[2,81],"73":[2,81],"76":[2,81],"77":[2,81],"78":[2,81],"79":[2,81],"82":[2,81],"84":[2,81],"90":[2,81],"92":[2,81],"97":[2,81],"105":[2,81],"107":[2,81],"108":[2,81],"109":[2,81],"112":[2,81],"116":[2,81],"117":[2,81],"118":[2,81],"125":[2,81],"126":[2,81],"127":[2,81],"129":[2,81],"130":[2,81],"132":[2,81],"133":[2,81],"136":[2,81],"137":[2,81],"138":[2,81],"139":[2,81],"140":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81],"151":[2,81],"152":[2,81],"153":[2,81],"154":[2,81],"155":[2,81],"156":[2,81],"157":[2,81],"158":[2,81],"159":[2,81],"160":[2,81],"161":[2,81]},{"59":[1,327]},{"48":[1,111],"59":[1,128],"77":[1,287],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"6":328,"28":[1,6]},{"51":[2,58],"56":[2,58],"59":[1,252]},{"59":[1,329]},{"6":330,"28":[1,6],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"6":331,"28":[1,6]},{"1":[2,124],"4":[2,124],"28":[2,124],"29":[2,124],"48":[2,124],"56":[2,124],"59":[2,124],"77":[2,124],"82":[2,124],"92":[2,124],"97":[2,124],"105":[2,124],"107":[2,124],"108":[2,124],"109":[2,124],"112":[2,124],"116":[2,124],"117":[2,124],"118":[2,124],"125":[2,124],"126":[2,124],"127":[2,124],"129":[2,124],"130":[2,124],"132":[2,124],"133":[2,124],"136":[2,124],"137":[2,124],"138":[2,124],"139":[2,124],"140":[2,124],"141":[2,124],"142":[2,124],"143":[2,124],"144":[2,124],"145":[2,124],"146":[2,124],"147":[2,124],"148":[2,124],"149":[2,124],"150":[2,124],"151":[2,124],"152":[2,124],"153":[2,124],"154":[2,124],"155":[2,124],"156":[2,124],"157":[2,124],"158":[2,124],"159":[2,124],"160":[2,124],"161":[2,124]},{"6":332,"28":[1,6]},{"1":[2,141],"4":[2,141],"28":[2,141],"29":[2,141],"48":[2,141],"56":[2,141],"59":[2,141],"77":[2,141],"82":[2,141],"92":[2,141],"97":[2,141],"105":[2,141],"107":[2,141],"108":[2,141],"109":[2,141],"112":[2,141],"116":[2,141],"117":[2,141],"118":[2,141],"125":[2,141],"126":[2,141],"127":[2,141],"129":[2,141],"130":[2,141],"132":[2,141],"133":[2,141],"136":[2,141],"137":[2,141],"138":[2,141],"139":[2,141],"140":[2,141],"141":[2,141],"142":[2,141],"143":[2,141],"144":[2,141],"145":[2,141],"146":[2,141],"147":[2,141],"148":[2,141],"149":[2,141],"150":[2,141],"151":[2,141],"152":[2,141],"153":[2,141],"154":[2,141],"155":[2,141],"156":[2,141],"157":[2,141],"158":[2,141],"159":[2,141],"160":[2,141],"161":[2,141]},{"1":[2,147],"4":[2,147],"28":[2,147],"29":[2,147],"48":[1,111],"56":[2,147],"59":[1,128],"77":[2,147],"82":[2,147],"92":[2,147],"97":[2,147],"105":[2,147],"106":126,"107":[2,147],"108":[1,333],"109":[2,147],"112":[2,147],"116":[1,121],"117":[1,122],"118":[1,334],"125":[2,147],"126":[2,147],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,148],"4":[2,148],"28":[2,148],"29":[2,148],"48":[1,111],"56":[2,148],"59":[1,128],"77":[2,148],"82":[2,148],"92":[2,148],"97":[2,148],"105":[2,148],"106":126,"107":[2,148],"108":[1,335],"109":[2,148],"112":[2,148],"116":[1,121],"117":[1,122],"118":[2,148],"125":[2,148],"126":[2,148],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"116":[2,146],"117":[2,146]},{"29":[1,336],"121":[1,337],"122":304,"123":[1,265]},{"1":[2,156],"4":[2,156],"28":[2,156],"29":[2,156],"48":[2,156],"56":[2,156],"59":[2,156],"77":[2,156],"82":[2,156],"92":[2,156],"97":[2,156],"105":[2,156],"107":[2,156],"108":[2,156],"109":[2,156],"112":[2,156],"116":[2,156],"117":[2,156],"118":[2,156],"125":[2,156],"126":[2,156],"127":[2,156],"129":[2,156],"130":[2,156],"132":[2,156],"133":[2,156],"136":[2,156],"137":[2,156],"138":[2,156],"139":[2,156],"140":[2,156],"141":[2,156],"142":[2,156],"143":[2,156],"144":[2,156],"145":[2,156],"146":[2,156],"147":[2,156],"148":[2,156],"149":[2,156],"150":[2,156],"151":[2,156],"152":[2,156],"153":[2,156],"154":[2,156],"155":[2,156],"156":[2,156],"157":[2,156],"158":[2,156],"159":[2,156],"160":[2,156],"161":[2,156]},{"6":338,"28":[1,6]},{"29":[2,159],"121":[2,159],"123":[2,159]},{"6":339,"28":[1,6],"56":[1,340]},{"28":[2,121],"48":[1,111],"56":[2,121],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,91],"4":[2,91],"28":[1,341],"29":[2,91],"48":[2,91],"56":[2,91],"59":[2,91],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,91],"78":[1,143],"79":[1,144],"82":[2,91],"89":133,"90":[1,135],"92":[2,91],"97":[2,91],"105":[2,91],"107":[2,91],"108":[2,91],"109":[2,91],"112":[2,91],"116":[2,91],"117":[2,91],"118":[2,91],"125":[2,91],"126":[2,91],"127":[2,91],"129":[2,91],"130":[2,91],"132":[2,91],"133":[2,91],"136":[2,91],"137":[2,91],"138":[2,91],"139":[2,91],"140":[2,91],"141":[2,91],"142":[2,91],"143":[2,91],"144":[2,91],"145":[2,91],"146":[2,91],"147":[2,91],"148":[2,91],"149":[2,91],"150":[2,91],"151":[2,91],"152":[2,91],"153":[2,91],"154":[2,91],"155":[2,91],"156":[2,91],"157":[2,91],"158":[2,91],"159":[2,91],"160":[2,91],"161":[2,91]},{"4":[1,343],"29":[1,342]},{"4":[2,97],"29":[2,97]},{"4":[2,94],"29":[2,94]},{"45":[1,344]},{"30":186,"31":[1,85]},{"8":345,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"59":[1,346],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,115],"4":[2,115],"28":[2,115],"29":[2,115],"45":[2,115],"48":[2,115],"56":[2,115],"59":[2,115],"70":[2,115],"71":[2,115],"72":[2,115],"73":[2,115],"76":[2,115],"77":[2,115],"78":[2,115],"79":[2,115],"82":[2,115],"90":[2,115],"92":[2,115],"97":[2,115],"105":[2,115],"107":[2,115],"108":[2,115],"109":[2,115],"112":[2,115],"116":[2,115],"117":[2,115],"118":[2,115],"125":[2,115],"126":[2,115],"127":[2,115],"129":[2,115],"130":[2,115],"132":[2,115],"133":[2,115],"136":[2,115],"137":[2,115],"138":[2,115],"139":[2,115],"140":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"147":[2,115],"148":[2,115],"149":[2,115],"150":[2,115],"151":[2,115],"152":[2,115],"153":[2,115],"154":[2,115],"155":[2,115],"156":[2,115],"157":[2,115],"158":[2,115],"159":[2,115],"160":[2,115],"161":[2,115]},{"8":347,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,116],"8":241,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,116],"29":[2,116],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,116],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"91":348,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,118],"28":[2,118],"29":[2,118],"48":[1,111],"56":[2,118],"59":[1,128],"92":[2,118],"97":[2,118],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,130],"4":[2,130],"28":[2,130],"29":[2,130],"48":[1,111],"56":[2,130],"59":[1,128],"77":[2,130],"82":[2,130],"92":[2,130],"97":[2,130],"105":[2,130],"106":126,"107":[1,77],"108":[2,130],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,130],"125":[2,130],"126":[2,130],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,132],"4":[2,132],"28":[2,132],"29":[2,132],"48":[1,111],"56":[2,132],"59":[1,128],"77":[2,132],"82":[2,132],"92":[2,132],"97":[2,132],"105":[2,132],"106":126,"107":[1,77],"108":[2,132],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,132],"125":[2,132],"126":[2,132],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,84],"4":[2,84],"28":[2,84],"29":[2,84],"45":[2,84],"48":[2,84],"56":[2,84],"59":[2,84],"70":[2,84],"71":[2,84],"72":[2,84],"73":[2,84],"76":[2,84],"77":[2,84],"78":[2,84],"79":[2,84],"82":[2,84],"90":[2,84],"92":[2,84],"97":[2,84],"105":[2,84],"107":[2,84],"108":[2,84],"109":[2,84],"112":[2,84],"116":[2,84],"117":[2,84],"118":[2,84],"125":[2,84],"126":[2,84],"127":[2,84],"129":[2,84],"130":[2,84],"132":[2,84],"133":[2,84],"136":[2,84],"137":[2,84],"138":[2,84],"139":[2,84],"140":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84],"151":[2,84],"152":[2,84],"153":[2,84],"154":[2,84],"155":[2,84],"156":[2,84],"157":[2,84],"158":[2,84],"159":[2,84],"160":[2,84],"161":[2,84]},{"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":349},{"4":[2,85],"28":[2,85],"29":[2,85],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":195,"56":[2,85],"81":350},{"4":[2,87],"28":[2,87],"29":[2,87],"56":[2,87],"82":[2,87]},{"4":[2,45],"28":[2,45],"29":[2,45],"48":[1,111],"56":[2,45],"59":[1,128],"82":[2,45],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,46],"28":[2,46],"29":[2,46],"48":[1,111],"56":[2,46],"59":[1,128],"82":[2,46],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,106],"4":[2,106],"28":[2,106],"29":[2,106],"48":[2,106],"56":[2,106],"59":[2,106],"70":[2,106],"71":[2,106],"72":[2,106],"73":[2,106],"76":[2,106],"77":[2,106],"78":[2,106],"79":[2,106],"82":[2,106],"90":[2,106],"92":[2,106],"97":[2,106],"105":[2,106],"107":[2,106],"108":[2,106],"109":[2,106],"112":[2,106],"116":[2,106],"117":[2,106],"118":[2,106],"125":[2,106],"126":[2,106],"127":[2,106],"129":[2,106],"130":[2,106],"132":[2,106],"133":[2,106],"136":[2,106],"137":[2,106],"138":[2,106],"139":[2,106],"140":[2,106],"141":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"148":[2,106],"149":[2,106],"150":[2,106],"151":[2,106],"152":[2,106],"153":[2,106],"154":[2,106],"155":[2,106],"156":[2,106],"157":[2,106],"158":[2,106],"159":[2,106],"160":[2,106],"161":[2,106]},{"8":351,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"59":[1,352],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,50],"4":[2,50],"28":[2,50],"29":[2,50],"48":[2,50],"56":[2,50],"59":[2,50],"77":[2,50],"82":[2,50],"92":[2,50],"97":[2,50],"105":[2,50],"107":[2,50],"108":[2,50],"109":[2,50],"112":[2,50],"116":[2,50],"117":[2,50],"118":[2,50],"125":[2,50],"126":[2,50],"127":[2,50],"129":[2,50],"130":[2,50],"132":[2,50],"133":[2,50],"136":[2,50],"137":[2,50],"138":[2,50],"139":[2,50],"140":[2,50],"141":[2,50],"142":[2,50],"143":[2,50],"144":[2,50],"145":[2,50],"146":[2,50],"147":[2,50],"148":[2,50],"149":[2,50],"150":[2,50],"151":[2,50],"152":[2,50],"153":[2,50],"154":[2,50],"155":[2,50],"156":[2,50],"157":[2,50],"158":[2,50],"159":[2,50],"160":[2,50],"161":[2,50]},{"51":[2,60],"56":[2,60],"59":[2,60]},{"1":[2,164],"4":[2,164],"28":[2,164],"29":[2,164],"48":[2,164],"56":[2,164],"59":[2,164],"77":[2,164],"82":[2,164],"92":[2,164],"97":[2,164],"105":[2,164],"107":[2,164],"108":[2,164],"109":[2,164],"112":[2,164],"116":[2,164],"117":[2,164],"118":[2,164],"121":[2,164],"125":[2,164],"126":[2,164],"127":[2,164],"129":[2,164],"130":[2,164],"132":[2,164],"133":[2,164],"136":[2,164],"137":[2,164],"138":[2,164],"139":[2,164],"140":[2,164],"141":[2,164],"142":[2,164],"143":[2,164],"144":[2,164],"145":[2,164],"146":[2,164],"147":[2,164],"148":[2,164],"149":[2,164],"150":[2,164],"151":[2,164],"152":[2,164],"153":[2,164],"154":[2,164],"155":[2,164],"156":[2,164],"157":[2,164],"158":[2,164],"159":[2,164],"160":[2,164],"161":[2,164]},{"1":[2,125],"4":[2,125],"28":[2,125],"29":[2,125],"48":[2,125],"56":[2,125],"59":[2,125],"77":[2,125],"82":[2,125],"92":[2,125],"97":[2,125],"105":[2,125],"107":[2,125],"108":[2,125],"109":[2,125],"112":[2,125],"116":[2,125],"117":[2,125],"118":[2,125],"125":[2,125],"126":[2,125],"127":[2,125],"129":[2,125],"130":[2,125],"132":[2,125],"133":[2,125],"136":[2,125],"137":[2,125],"138":[2,125],"139":[2,125],"140":[2,125],"141":[2,125],"142":[2,125],"143":[2,125],"144":[2,125],"145":[2,125],"146":[2,125],"147":[2,125],"148":[2,125],"149":[2,125],"150":[2,125],"151":[2,125],"152":[2,125],"153":[2,125],"154":[2,125],"155":[2,125],"156":[2,125],"157":[2,125],"158":[2,125],"159":[2,125],"160":[2,125],"161":[2,125]},{"1":[2,126],"4":[2,126],"28":[2,126],"29":[2,126],"48":[2,126],"56":[2,126],"59":[2,126],"77":[2,126],"82":[2,126],"92":[2,126],"97":[2,126],"101":[2,126],"105":[2,126],"107":[2,126],"108":[2,126],"109":[2,126],"112":[2,126],"116":[2,126],"117":[2,126],"118":[2,126],"125":[2,126],"126":[2,126],"127":[2,126],"129":[2,126],"130":[2,126],"132":[2,126],"133":[2,126],"136":[2,126],"137":[2,126],"138":[2,126],"139":[2,126],"140":[2,126],"141":[2,126],"142":[2,126],"143":[2,126],"144":[2,126],"145":[2,126],"146":[2,126],"147":[2,126],"148":[2,126],"149":[2,126],"150":[2,126],"151":[2,126],"152":[2,126],"153":[2,126],"154":[2,126],"155":[2,126],"156":[2,126],"157":[2,126],"158":[2,126],"159":[2,126],"160":[2,126],"161":[2,126]},{"8":353,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":354,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":355,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,154],"4":[2,154],"28":[2,154],"29":[2,154],"48":[2,154],"56":[2,154],"59":[2,154],"77":[2,154],"82":[2,154],"92":[2,154],"97":[2,154],"105":[2,154],"107":[2,154],"108":[2,154],"109":[2,154],"112":[2,154],"116":[2,154],"117":[2,154],"118":[2,154],"125":[2,154],"126":[2,154],"127":[2,154],"129":[2,154],"130":[2,154],"132":[2,154],"133":[2,154],"136":[2,154],"137":[2,154],"138":[2,154],"139":[2,154],"140":[2,154],"141":[2,154],"142":[2,154],"143":[2,154],"144":[2,154],"145":[2,154],"146":[2,154],"147":[2,154],"148":[2,154],"149":[2,154],"150":[2,154],"151":[2,154],"152":[2,154],"153":[2,154],"154":[2,154],"155":[2,154],"156":[2,154],"157":[2,154],"158":[2,154],"159":[2,154],"160":[2,154],"161":[2,154]},{"6":356,"28":[1,6]},{"29":[1,357]},{"4":[1,358],"29":[2,160],"121":[2,160],"123":[2,160]},{"8":359,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,96],"29":[2,96],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":310,"63":311,"85":360,"86":309,"95":[1,312]},{"1":[2,92],"4":[2,92],"28":[2,92],"29":[2,92],"48":[2,92],"56":[2,92],"59":[2,92],"77":[2,92],"82":[2,92],"92":[2,92],"97":[2,92],"105":[2,92],"107":[2,92],"108":[2,92],"109":[2,92],"112":[2,92],"116":[2,92],"117":[2,92],"118":[2,92],"125":[2,92],"126":[2,92],"127":[2,92],"129":[2,92],"130":[2,92],"132":[2,92],"133":[2,92],"136":[2,92],"137":[2,92],"138":[2,92],"139":[2,92],"140":[2,92],"141":[2,92],"142":[2,92],"143":[2,92],"144":[2,92],"145":[2,92],"146":[2,92],"147":[2,92],"148":[2,92],"149":[2,92],"150":[2,92],"151":[2,92],"152":[2,92],"153":[2,92],"154":[2,92],"155":[2,92],"156":[2,92],"157":[2,92],"158":[2,92],"159":[2,92],"160":[2,92],"161":[2,92]},{"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":310,"63":311,"86":361,"95":[1,312]},{"8":362,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"48":[1,111],"59":[1,128],"97":[1,363],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,61],"8":364,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,61],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"48":[2,61],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,61],"59":[2,61],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,61],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[2,61],"109":[2,61],"110":50,"111":[1,79],"112":[2,61],"116":[2,61],"117":[2,61],"119":[1,52],"124":47,"125":[2,61],"126":[2,61],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61],"161":[2,61]},{"4":[2,119],"28":[2,119],"29":[2,119],"48":[1,111],"56":[2,119],"59":[1,128],"92":[2,119],"97":[2,119],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,54],"28":[2,54],"29":[2,54],"55":365,"56":[1,272]},{"4":[2,88],"28":[2,88],"29":[2,88],"56":[2,88],"82":[2,88]},{"4":[2,54],"28":[2,54],"29":[2,54],"55":366,"56":[1,278]},{"48":[1,111],"59":[1,128],"77":[1,367],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"8":368,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"48":[2,61],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"59":[2,61],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"77":[2,61],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[2,61],"109":[2,61],"110":50,"111":[1,79],"112":[2,61],"116":[2,61],"117":[2,61],"119":[1,52],"124":47,"125":[2,61],"126":[2,61],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61],"161":[2,61]},{"1":[2,149],"4":[2,149],"28":[2,149],"29":[2,149],"48":[1,111],"56":[2,149],"59":[1,128],"77":[2,149],"82":[2,149],"92":[2,149],"97":[2,149],"105":[2,149],"106":126,"107":[2,149],"108":[2,149],"109":[2,149],"112":[2,149],"116":[1,121],"117":[1,122],"118":[1,369],"125":[2,149],"126":[2,149],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,151],"4":[2,151],"28":[2,151],"29":[2,151],"48":[1,111],"56":[2,151],"59":[1,128],"77":[2,151],"82":[2,151],"92":[2,151],"97":[2,151],"105":[2,151],"106":126,"107":[2,151],"108":[1,370],"109":[2,151],"112":[2,151],"116":[1,121],"117":[1,122],"118":[2,151],"125":[2,151],"126":[2,151],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,150],"4":[2,150],"28":[2,150],"29":[2,150],"48":[1,111],"56":[2,150],"59":[1,128],"77":[2,150],"82":[2,150],"92":[2,150],"97":[2,150],"105":[2,150],"106":126,"107":[2,150],"108":[2,150],"109":[2,150],"112":[2,150],"116":[1,121],"117":[1,122],"118":[2,150],"125":[2,150],"126":[2,150],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"29":[1,371]},{"1":[2,157],"4":[2,157],"28":[2,157],"29":[2,157],"48":[2,157],"56":[2,157],"59":[2,157],"77":[2,157],"82":[2,157],"92":[2,157],"97":[2,157],"105":[2,157],"107":[2,157],"108":[2,157],"109":[2,157],"112":[2,157],"116":[2,157],"117":[2,157],"118":[2,157],"125":[2,157],"126":[2,157],"127":[2,157],"129":[2,157],"130":[2,157],"132":[2,157],"133":[2,157],"136":[2,157],"137":[2,157],"138":[2,157],"139":[2,157],"140":[2,157],"141":[2,157],"142":[2,157],"143":[2,157],"144":[2,157],"145":[2,157],"146":[2,157],"147":[2,157],"148":[2,157],"149":[2,157],"150":[2,157],"151":[2,157],"152":[2,157],"153":[2,157],"154":[2,157],"155":[2,157],"156":[2,157],"157":[2,157],"158":[2,157],"159":[2,157],"160":[2,157],"161":[2,157]},{"29":[2,161],"121":[2,161],"123":[2,161]},{"28":[2,122],"48":[1,111],"56":[2,122],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[1,343],"29":[1,372]},{"4":[2,98],"29":[2,98]},{"4":[2,95],"29":[2,95],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,111],"4":[2,111],"28":[2,111],"29":[2,111],"48":[2,111],"56":[2,111],"59":[2,111],"70":[2,111],"71":[2,111],"72":[2,111],"73":[2,111],"76":[2,111],"77":[2,111],"78":[2,111],"79":[2,111],"82":[2,111],"90":[2,111],"92":[2,111],"97":[2,111],"105":[2,111],"107":[2,111],"108":[2,111],"109":[2,111],"112":[2,111],"116":[2,111],"117":[2,111],"118":[2,111],"125":[2,111],"126":[2,111],"127":[2,111],"129":[2,111],"130":[2,111],"132":[2,111],"133":[2,111],"136":[2,111],"137":[2,111],"138":[2,111],"139":[2,111],"140":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"147":[2,111],"148":[2,111],"149":[2,111],"150":[2,111],"151":[2,111],"152":[2,111],"153":[2,111],"154":[2,111],"155":[2,111],"156":[2,111],"157":[2,111],"158":[2,111],"159":[2,111],"160":[2,111],"161":[2,111]},{"48":[1,111],"59":[1,128],"97":[1,373],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[1,315],"28":[1,316],"29":[1,374]},{"4":[1,321],"28":[1,322],"29":[1,375]},{"1":[2,113],"4":[2,113],"28":[2,113],"29":[2,113],"45":[2,113],"48":[2,113],"56":[2,113],"59":[2,113],"70":[2,113],"71":[2,113],"72":[2,113],"73":[2,113],"76":[2,113],"77":[2,113],"78":[2,113],"79":[2,113],"82":[2,113],"84":[2,113],"90":[2,113],"92":[2,113],"97":[2,113],"105":[2,113],"107":[2,113],"108":[2,113],"109":[2,113],"112":[2,113],"116":[2,113],"117":[2,113],"118":[2,113],"125":[2,113],"126":[2,113],"127":[2,113],"129":[2,113],"130":[2,113],"132":[2,113],"133":[2,113],"136":[2,113],"137":[2,113],"138":[2,113],"139":[2,113],"140":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"147":[2,113],"148":[2,113],"149":[2,113],"150":[2,113],"151":[2,113],"152":[2,113],"153":[2,113],"154":[2,113],"155":[2,113],"156":[2,113],"157":[2,113],"158":[2,113],"159":[2,113],"160":[2,113],"161":[2,113]},{"48":[1,111],"59":[1,128],"77":[1,376],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"8":377,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":378,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,155],"4":[2,155],"28":[2,155],"29":[2,155],"48":[2,155],"56":[2,155],"59":[2,155],"77":[2,155],"82":[2,155],"92":[2,155],"97":[2,155],"105":[2,155],"107":[2,155],"108":[2,155],"109":[2,155],"112":[2,155],"116":[2,155],"117":[2,155],"118":[2,155],"125":[2,155],"126":[2,155],"127":[2,155],"129":[2,155],"130":[2,155],"132":[2,155],"133":[2,155],"136":[2,155],"137":[2,155],"138":[2,155],"139":[2,155],"140":[2,155],"141":[2,155],"142":[2,155],"143":[2,155],"144":[2,155],"145":[2,155],"146":[2,155],"147":[2,155],"148":[2,155],"149":[2,155],"150":[2,155],"151":[2,155],"152":[2,155],"153":[2,155],"154":[2,155],"155":[2,155],"156":[2,155],"157":[2,155],"158":[2,155],"159":[2,155],"160":[2,155],"161":[2,155]},{"1":[2,93],"4":[2,93],"28":[2,93],"29":[2,93],"48":[2,93],"56":[2,93],"59":[2,93],"77":[2,93],"82":[2,93],"92":[2,93],"97":[2,93],"105":[2,93],"107":[2,93],"108":[2,93],"109":[2,93],"112":[2,93],"116":[2,93],"117":[2,93],"118":[2,93],"125":[2,93],"126":[2,93],"127":[2,93],"129":[2,93],"130":[2,93],"132":[2,93],"133":[2,93],"136":[2,93],"137":[2,93],"138":[2,93],"139":[2,93],"140":[2,93],"141":[2,93],"142":[2,93],"143":[2,93],"144":[2,93],"145":[2,93],"146":[2,93],"147":[2,93],"148":[2,93],"149":[2,93],"150":[2,93],"151":[2,93],"152":[2,93],"153":[2,93],"154":[2,93],"155":[2,93],"156":[2,93],"157":[2,93],"158":[2,93],"159":[2,93],"160":[2,93],"161":[2,93]},{"1":[2,112],"4":[2,112],"28":[2,112],"29":[2,112],"48":[2,112],"56":[2,112],"59":[2,112],"70":[2,112],"71":[2,112],"72":[2,112],"73":[2,112],"76":[2,112],"77":[2,112],"78":[2,112],"79":[2,112],"82":[2,112],"90":[2,112],"92":[2,112],"97":[2,112],"105":[2,112],"107":[2,112],"108":[2,112],"109":[2,112],"112":[2,112],"116":[2,112],"117":[2,112],"118":[2,112],"125":[2,112],"126":[2,112],"127":[2,112],"129":[2,112],"130":[2,112],"132":[2,112],"133":[2,112],"136":[2,112],"137":[2,112],"138":[2,112],"139":[2,112],"140":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"147":[2,112],"148":[2,112],"149":[2,112],"150":[2,112],"151":[2,112],"152":[2,112],"153":[2,112],"154":[2,112],"155":[2,112],"156":[2,112],"157":[2,112],"158":[2,112],"159":[2,112],"160":[2,112],"161":[2,112]},{"4":[2,120],"28":[2,120],"29":[2,120],"56":[2,120],"92":[2,120],"97":[2,120]},{"4":[2,89],"28":[2,89],"29":[2,89],"56":[2,89],"82":[2,89]},{"1":[2,114],"4":[2,114],"28":[2,114],"29":[2,114],"45":[2,114],"48":[2,114],"56":[2,114],"59":[2,114],"70":[2,114],"71":[2,114],"72":[2,114],"73":[2,114],"76":[2,114],"77":[2,114],"78":[2,114],"79":[2,114],"82":[2,114],"84":[2,114],"90":[2,114],"92":[2,114],"97":[2,114],"105":[2,114],"107":[2,114],"108":[2,114],"109":[2,114],"112":[2,114],"116":[2,114],"117":[2,114],"118":[2,114],"125":[2,114],"126":[2,114],"127":[2,114],"129":[2,114],"130":[2,114],"132":[2,114],"133":[2,114],"136":[2,114],"137":[2,114],"138":[2,114],"139":[2,114],"140":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"147":[2,114],"148":[2,114],"149":[2,114],"150":[2,114],"151":[2,114],"152":[2,114],"153":[2,114],"154":[2,114],"155":[2,114],"156":[2,114],"157":[2,114],"158":[2,114],"159":[2,114],"160":[2,114],"161":[2,114]},{"1":[2,152],"4":[2,152],"28":[2,152],"29":[2,152],"48":[1,111],"56":[2,152],"59":[1,128],"77":[2,152],"82":[2,152],"92":[2,152],"97":[2,152],"105":[2,152],"106":126,"107":[2,152],"108":[2,152],"109":[2,152],"112":[2,152],"116":[1,121],"117":[1,122],"118":[2,152],"125":[2,152],"126":[2,152],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,153],"4":[2,153],"28":[2,153],"29":[2,153],"48":[1,111],"56":[2,153],"59":[1,128],"77":[2,153],"82":[2,153],"92":[2,153],"97":[2,153],"105":[2,153],"106":126,"107":[2,153],"108":[2,153],"109":[2,153],"112":[2,153],"116":[1,121],"117":[1,122],"118":[2,153],"125":[2,153],"126":[2,153],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]}], defaultActions: {"2":[2,2],"73":[2,52],"74":[2,53],"87":[2,4]}, parseError: function parseError(str, hash) { throw new Error(str); diff --git a/src/coffee-script.coffee b/src/coffee-script.coffee index 576acc7abb..16cc3a2186 100644 --- a/src/coffee-script.coffee +++ b/src/coffee-script.coffee @@ -25,7 +25,7 @@ else exports.VERSION: '0.7.0' # Instantiate a Lexer for our use here. -lexer: new Lexer() +lexer: new Lexer # Compile a string of CoffeeScript code to JavaScript, using the Coffee/Jison # compiler. diff --git a/src/grammar.coffee b/src/grammar.coffee index bde2180b35..43f71bfa65 100644 --- a/src/grammar.coffee +++ b/src/grammar.coffee @@ -53,8 +53,8 @@ grammar: { # The **Root** is the top-level node in the syntax tree. Since we parse bottom-up, # all parsing must end here. Root: [ - o "", -> new Expressions() - o "TERMINATOR", -> new Expressions() + o "", -> new Expressions + o "TERMINATOR", -> new Expressions o "Body" o "Block TERMINATOR" ] @@ -106,7 +106,7 @@ grammar: { # token stream. Block: [ o "INDENT Body OUTDENT", -> $2 - o "INDENT OUTDENT", -> new Expressions() + o "INDENT OUTDENT", -> new Expressions ] # A literal identifier, a variable name or property. @@ -285,8 +285,9 @@ grammar: { # and calling `super()` Call: [ o "Invocation" - o "NEW Invocation", -> $2.newInstance() o "Super" + o "NEW Invocation", -> $2.newInstance() + o "NEW Value", -> (new CallNode($2, [])).newInstance() ] # Extending an object by setting its prototype chain to reference a parent diff --git a/src/lexer.coffee b/src/lexer.coffee index 7423a08281..0f646dc20d 100644 --- a/src/lexer.coffee +++ b/src/lexer.coffee @@ -54,7 +54,7 @@ exports.Lexer: class Lexer @extractNextToken() @closeIndentation() return @tokens if o.rewrite is off - (new Rewriter()).rewrite @tokens + (new Rewriter).rewrite @tokens # At every position, run through this list of attempted matches, # short-circuiting if any of them succeed. Their order determines precedence: @@ -383,7 +383,7 @@ exports.Lexer: class Lexer if str.length < 3 or not starts str, '"' @token 'STRING', str else - lexer: new Lexer() + lexer: new Lexer tokens: [] quote: str.substring 0, 1 [i, pi]: [1, 1] diff --git a/src/nodes.coffee b/src/nodes.coffee index 045a1daa9a..42a272fbc7 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -630,7 +630,7 @@ exports.ClassNode: class ClassNode extends BaseNode # constructor, property assignments, and inheritance getting built out below. compileNode: (o) -> extension: @parent and new ExtendsNode(@variable, @parent) - props: new Expressions() + props: new Expressions o.top: true me: null className: @variable.compile o @@ -642,7 +642,7 @@ exports.ClassNode: class ClassNode extends BaseNode new CallNode(applied, [literal('this'), literal('arguments')]) ])) else - constructor: new CodeNode() + constructor: new CodeNode for prop in @properties [pvar, func]: [prop.variable, prop.value] @@ -787,7 +787,7 @@ exports.CodeNode: class CodeNode extends BaseNode constructor: (params, body, tag) -> @params: params or [] - @body: body or new Expressions() + @body: body or new Expressions @bound: tag is 'boundfunc' # Compilation creates a new scope unless explicitly asked to share with the diff --git a/test/test_classes.coffee b/test/test_classes.coffee index 0560ecb4a7..bd3ad87011 100644 --- a/test/test_classes.coffee +++ b/test/test_classes.coffee @@ -22,7 +22,7 @@ class ThirdChild extends SecondChild func: (string) -> super('three/') + string -result: (new ThirdChild()).func 'four' +result: (new ThirdChild).func 'four' ok result is 'zero/one/two/three/four' ok Base.static('word') is 'static/word' @@ -40,7 +40,7 @@ class SubClass extends SuperClass constructor: -> super 'sub' -ok (new SubClass()).prop is 'top-super-sub' +ok (new SubClass).prop is 'top-super-sub' class OneClass @@ -75,11 +75,11 @@ ThirdChild extends SecondChild ThirdChild::func: (string) -> super('three/') + string -result: (new ThirdChild()).func 'four' +result: (new ThirdChild).func 'four' ok result is 'zero/one/two/three/four' -ok (new ThirdChild())['func-func']('thing') is 'dynamic-thing' +ok (new ThirdChild)['func-func']('thing') is 'dynamic-thing' TopClass: (arg) -> @@ -97,7 +97,7 @@ SubClass: -> SuperClass extends TopClass SubClass extends SuperClass -ok (new SubClass()).prop is 'top-super-sub' +ok (new SubClass).prop is 'top-super-sub' # '@' referring to the current instance, and not being coerced into a call. @@ -105,7 +105,7 @@ class ClassName amI: -> @ instanceof ClassName -obj: new ClassName() +obj: new ClassName ok obj.amI() @@ -125,7 +125,7 @@ class Class class: 'class' name: -> @class -instance: new Class() +instance: new Class ok instance.class is 'class' ok instance.name() is 'class' diff --git a/test/test_splats.coffee b/test/test_splats.coffee index d4073704fe..93d6dcc3ac 100644 --- a/test/test_splats.coffee +++ b/test/test_splats.coffee @@ -89,7 +89,7 @@ class Child extends Parent nums: [3, 2, 1] super nums... -ok (new Child()).meth().join(' ') is '3 2 1' +ok (new Child).meth().join(' ') is '3 2 1' # Functions with splats being called with too few arguments. From cb45c8feace3905d2b694806df221033dc1fca68 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Wed, 30 Jun 2010 19:51:49 -0400 Subject: [PATCH 07/33] fixing html entity in the changelog --- documentation/index.html.erb | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/index.html.erb b/documentation/index.html.erb index ac98b51a88..18dfdcc7e0 100644 --- a/documentation/index.html.erb +++ b/documentation/index.html.erb @@ -946,7 +946,7 @@ coffee --print app/scripts/*.coffee > concatenation.js Range comprehensions now generate cleaner code, but you have to specify by -1 if you'd like to iterate downward. Reporting of syntax errors is greatly improved from the previous release. Running coffee with no arguments - now launches the REPL, with Readline support. The &- bind operator + now launches the REPL, with Readline support. The <- bind operator has been removed from CoffeeScript. The loop keyword was added, which is equivalent to a while true loop. Comprehensions that contain closures will now close over their variables, like the semantics of a forEach. diff --git a/index.html b/index.html index a99483dd0b..0fc7c122fa 100644 --- a/index.html +++ b/index.html @@ -1862,7 +1862,7 @@

Range comprehensions now generate cleaner code, but you have to specify by -1 if you'd like to iterate downward. Reporting of syntax errors is greatly improved from the previous release. Running coffee with no arguments - now launches the REPL, with Readline support. The &- bind operator + now launches the REPL, with Readline support. The <- bind operator has been removed from CoffeeScript. The loop keyword was added, which is equivalent to a while true loop. Comprehensions that contain closures will now close over their variables, like the semantics of a forEach. From 5ca5a504a4ee90214f7ef6cc34f30e1a21b4a1ba Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Wed, 30 Jun 2010 20:53:09 -0400 Subject: [PATCH 08/33] allowing empty bodies in try blocks and in catch blocks --- lib/grammar.js | 2 + lib/parser.js | 178 ++++++++++++++++++------------------ src/grammar.coffee | 1 + test/test_exceptions.coffee | 9 +- 4 files changed, 101 insertions(+), 89 deletions(-) diff --git a/lib/grammar.js b/lib/grammar.js index 0e5e2afcf4..d8e0f44a01 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -325,6 +325,8 @@ Catch: [ o("CATCH Identifier Block", function() { return [$2, $3]; + }), o("CATCH Identifier TERMINATOR", function() { + return [$2, new Expressions()]; }) ], Throw: [ diff --git a/lib/parser.js b/lib/parser.js index 9fcc5f21d4..6c2bd91a5c 100755 --- a/lib/parser.js +++ b/lib/parser.js @@ -4,7 +4,7 @@ var parser = {trace: function trace() { }, yy: {}, symbols_: {"error":2,"Root":3,"TERMINATOR":4,"Body":5,"Block":6,"Line":7,"Expression":8,"Statement":9,"Return":10,"Throw":11,"BREAK":12,"CONTINUE":13,"Value":14,"Call":15,"Code":16,"Operation":17,"Assign":18,"If":19,"Try":20,"While":21,"For":22,"Switch":23,"Extends":24,"Class":25,"Splat":26,"Existence":27,"INDENT":28,"OUTDENT":29,"Identifier":30,"IDENTIFIER":31,"AlphaNumeric":32,"NUMBER":33,"STRING":34,"Literal":35,"JS":36,"REGEX":37,"TRUE":38,"FALSE":39,"YES":40,"NO":41,"ON":42,"OFF":43,"Assignable":44,"ASSIGN":45,"AssignObj":46,"RETURN":47,"?":48,"PARAM_START":49,"ParamList":50,"PARAM_END":51,"FuncGlyph":52,"->":53,"=>":54,"OptComma":55,",":56,"Param":57,"PARAM":58,".":59,"SimpleAssignable":60,"Accessor":61,"Invocation":62,"ThisProperty":63,"Array":64,"Object":65,"Parenthetical":66,"Range":67,"This":68,"NULL":69,"PROPERTY_ACCESS":70,"PROTOTYPE_ACCESS":71,"::":72,"SOAK_ACCESS":73,"Index":74,"Slice":75,"INDEX_START":76,"INDEX_END":77,"INDEX_SOAK":78,"INDEX_PROTO":79,"{":80,"AssignList":81,"}":82,"CLASS":83,"EXTENDS":84,"ClassBody":85,"ClassAssign":86,"Super":87,"NEW":88,"Arguments":89,"CALL_START":90,"ArgList":91,"CALL_END":92,"SUPER":93,"THIS":94,"@":95,"[":96,"]":97,"SimpleArgs":98,"TRY":99,"Catch":100,"FINALLY":101,"CATCH":102,"THROW":103,"(":104,")":105,"WhileSource":106,"WHILE":107,"WHEN":108,"UNTIL":109,"Loop":110,"LOOP":111,"FOR":112,"ForVariables":113,"ForSource":114,"ForValue":115,"IN":116,"OF":117,"BY":118,"SWITCH":119,"Whens":120,"ELSE":121,"When":122,"LEADING_WHEN":123,"IfBlock":124,"IF":125,"UNLESS":126,"!":127,"!!":128,"-":129,"+":130,"~":131,"--":132,"++":133,"DELETE":134,"TYPEOF":135,"*":136,"/":137,"%":138,"<<":139,">>":140,">>>":141,"&":142,"|":143,"^":144,"<=":145,"<":146,">":147,">=":148,"==":149,"!=":150,"&&":151,"||":152,"-=":153,"+=":154,"/=":155,"*=":156,"%=":157,"||=":158,"&&=":159,"?=":160,"INSTANCEOF":161,"$accept":0,"$end":1}, terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","28":"INDENT","29":"OUTDENT","31":"IDENTIFIER","33":"NUMBER","34":"STRING","36":"JS","37":"REGEX","38":"TRUE","39":"FALSE","40":"YES","41":"NO","42":"ON","43":"OFF","45":"ASSIGN","47":"RETURN","48":"?","49":"PARAM_START","51":"PARAM_END","53":"->","54":"=>","56":",","58":"PARAM","59":".","69":"NULL","70":"PROPERTY_ACCESS","71":"PROTOTYPE_ACCESS","72":"::","73":"SOAK_ACCESS","76":"INDEX_START","77":"INDEX_END","78":"INDEX_SOAK","79":"INDEX_PROTO","80":"{","82":"}","83":"CLASS","84":"EXTENDS","88":"NEW","90":"CALL_START","92":"CALL_END","93":"SUPER","94":"THIS","95":"@","96":"[","97":"]","99":"TRY","101":"FINALLY","102":"CATCH","103":"THROW","104":"(","105":")","107":"WHILE","108":"WHEN","109":"UNTIL","111":"LOOP","112":"FOR","116":"IN","117":"OF","118":"BY","119":"SWITCH","121":"ELSE","123":"LEADING_WHEN","125":"IF","126":"UNLESS","127":"!","128":"!!","129":"-","130":"+","131":"~","132":"--","133":"++","134":"DELETE","135":"TYPEOF","136":"*","137":"/","138":"%","139":"<<","140":">>","141":">>>","142":"&","143":"|","144":"^","145":"<=","146":"<","147":">","148":">=","149":"==","150":"!=","151":"&&","152":"||","153":"-=","154":"+=","155":"/=","156":"*=","157":"%=","158":"||=","159":"&&=","160":"?=","161":"INSTANCEOF"}, -productions_: [0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[30,1],[32,1],[32,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[18,3],[46,1],[46,1],[46,3],[46,3],[10,2],[10,1],[27,2],[16,5],[16,2],[52,1],[52,1],[55,0],[55,1],[50,0],[50,1],[50,3],[57,1],[57,4],[26,4],[60,1],[60,2],[60,2],[60,1],[44,1],[44,1],[44,1],[14,1],[14,1],[14,1],[14,1],[14,1],[14,1],[61,2],[61,2],[61,1],[61,2],[61,1],[61,1],[74,3],[74,2],[74,2],[65,4],[81,0],[81,1],[81,3],[81,4],[81,6],[25,2],[25,4],[25,5],[25,7],[86,1],[86,3],[85,0],[85,1],[85,3],[15,1],[15,1],[15,2],[15,2],[24,3],[62,2],[62,2],[89,4],[87,2],[68,1],[68,1],[63,2],[67,6],[67,7],[75,6],[75,7],[64,4],[91,0],[91,1],[91,3],[91,4],[91,6],[98,1],[98,3],[20,3],[20,4],[20,5],[100,3],[11,2],[66,3],[106,2],[106,4],[106,2],[106,4],[21,2],[21,2],[21,2],[21,1],[110,2],[110,2],[22,4],[22,4],[22,4],[115,1],[115,1],[115,1],[113,1],[113,3],[114,2],[114,2],[114,4],[114,4],[114,4],[114,6],[114,6],[23,5],[23,7],[23,4],[23,6],[120,1],[120,2],[122,3],[122,4],[124,3],[124,3],[124,5],[124,3],[19,1],[19,3],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,4],[17,4]], +productions_: [0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[30,1],[32,1],[32,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[18,3],[46,1],[46,1],[46,3],[46,3],[10,2],[10,1],[27,2],[16,5],[16,2],[52,1],[52,1],[55,0],[55,1],[50,0],[50,1],[50,3],[57,1],[57,4],[26,4],[60,1],[60,2],[60,2],[60,1],[44,1],[44,1],[44,1],[14,1],[14,1],[14,1],[14,1],[14,1],[14,1],[61,2],[61,2],[61,1],[61,2],[61,1],[61,1],[74,3],[74,2],[74,2],[65,4],[81,0],[81,1],[81,3],[81,4],[81,6],[25,2],[25,4],[25,5],[25,7],[86,1],[86,3],[85,0],[85,1],[85,3],[15,1],[15,1],[15,2],[15,2],[24,3],[62,2],[62,2],[89,4],[87,2],[68,1],[68,1],[63,2],[67,6],[67,7],[75,6],[75,7],[64,4],[91,0],[91,1],[91,3],[91,4],[91,6],[98,1],[98,3],[20,3],[20,4],[20,5],[100,3],[100,3],[11,2],[66,3],[106,2],[106,4],[106,2],[106,4],[21,2],[21,2],[21,2],[21,1],[110,2],[110,2],[22,4],[22,4],[22,4],[115,1],[115,1],[115,1],[113,1],[113,3],[114,2],[114,2],[114,4],[114,4],[114,4],[114,6],[114,6],[23,5],[23,7],[23,4],[23,6],[120,1],[120,2],[122,3],[122,4],[124,3],[124,3],[124,5],[124,3],[19,1],[19,3],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,4],[17,4]], performAction: function anonymous(yytext,yyleng,yylineno,yy) { var $$ = arguments[5],$0=arguments[5].length; @@ -273,231 +273,233 @@ case 125:this.$ = new TryNode($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$ break; case 126:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; break; -case 127:this.$ = new ThrowNode($$[$0-2+2-1]); +case 127:this.$ = [$$[$0-3+2-1], new Expressions()]; break; -case 128:this.$ = new ParentheticalNode($$[$0-3+2-1]); +case 128:this.$ = new ThrowNode($$[$0-2+2-1]); break; -case 129:this.$ = new WhileNode($$[$0-2+2-1]); +case 129:this.$ = new ParentheticalNode($$[$0-3+2-1]); break; -case 130:this.$ = new WhileNode($$[$0-4+2-1], { +case 130:this.$ = new WhileNode($$[$0-2+2-1]); +break; +case 131:this.$ = new WhileNode($$[$0-4+2-1], { guard: $$[$0-4+4-1] }); break; -case 131:this.$ = new WhileNode($$[$0-2+2-1], { +case 132:this.$ = new WhileNode($$[$0-2+2-1], { invert: true }); break; -case 132:this.$ = new WhileNode($$[$0-4+2-1], { +case 133:this.$ = new WhileNode($$[$0-4+2-1], { invert: true, guard: $$[$0-4+4-1] }); break; -case 133:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); -break; -case 134:this.$ = $$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]])); +case 134:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); break; case 135:this.$ = $$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]])); break; -case 136:this.$ = $$[$0-1+1-1]; +case 136:this.$ = $$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]])); break; -case 137:this.$ = new WhileNode(new LiteralNode('true')).addBody($$[$0-2+2-1]); +case 137:this.$ = $$[$0-1+1-1]; break; -case 138:this.$ = new WhileNode(new LiteralNode('true')).addBody(Expressions.wrap([$$[$0-2+2-1]])); +case 138:this.$ = new WhileNode(new LiteralNode('true')).addBody($$[$0-2+2-1]); break; -case 139:this.$ = new ForNode($$[$0-4+1-1], $$[$0-4+4-1], $$[$0-4+3-1][0], $$[$0-4+3-1][1]); +case 139:this.$ = new WhileNode(new LiteralNode('true')).addBody(Expressions.wrap([$$[$0-2+2-1]])); break; case 140:this.$ = new ForNode($$[$0-4+1-1], $$[$0-4+4-1], $$[$0-4+3-1][0], $$[$0-4+3-1][1]); break; -case 141:this.$ = new ForNode($$[$0-4+4-1], $$[$0-4+3-1], $$[$0-4+2-1][0], $$[$0-4+2-1][1]); +case 141:this.$ = new ForNode($$[$0-4+1-1], $$[$0-4+4-1], $$[$0-4+3-1][0], $$[$0-4+3-1][1]); break; -case 142:this.$ = $$[$0-1+1-1]; +case 142:this.$ = new ForNode($$[$0-4+4-1], $$[$0-4+3-1], $$[$0-4+2-1][0], $$[$0-4+2-1][1]); break; -case 143:this.$ = new ValueNode($$[$0-1+1-1]); +case 143:this.$ = $$[$0-1+1-1]; break; case 144:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 145:this.$ = [$$[$0-1+1-1]]; +case 145:this.$ = new ValueNode($$[$0-1+1-1]); +break; +case 146:this.$ = [$$[$0-1+1-1]]; break; -case 146:this.$ = [$$[$0-3+1-1], $$[$0-3+3-1]]; +case 147:this.$ = [$$[$0-3+1-1], $$[$0-3+3-1]]; break; -case 147:this.$ = { +case 148:this.$ = { source: $$[$0-2+2-1] }; break; -case 148:this.$ = { +case 149:this.$ = { source: $$[$0-2+2-1], object: true }; break; -case 149:this.$ = { +case 150:this.$ = { source: $$[$0-4+2-1], guard: $$[$0-4+4-1] }; break; -case 150:this.$ = { +case 151:this.$ = { source: $$[$0-4+2-1], guard: $$[$0-4+4-1], object: true }; break; -case 151:this.$ = { +case 152:this.$ = { source: $$[$0-4+2-1], step: $$[$0-4+4-1] }; break; -case 152:this.$ = { +case 153:this.$ = { source: $$[$0-6+2-1], guard: $$[$0-6+4-1], step: $$[$0-6+6-1] }; break; -case 153:this.$ = { +case 154:this.$ = { source: $$[$0-6+2-1], step: $$[$0-6+4-1], guard: $$[$0-6+6-1] }; break; -case 154:this.$ = $$[$0-5+4-1].switchesOver($$[$0-5+2-1]); +case 155:this.$ = $$[$0-5+4-1].switchesOver($$[$0-5+2-1]); break; -case 155:this.$ = $$[$0-7+4-1].switchesOver($$[$0-7+2-1]).addElse($$[$0-7+6-1], true); +case 156:this.$ = $$[$0-7+4-1].switchesOver($$[$0-7+2-1]).addElse($$[$0-7+6-1], true); break; -case 156:this.$ = $$[$0-4+3-1]; +case 157:this.$ = $$[$0-4+3-1]; break; -case 157:this.$ = $$[$0-6+3-1].addElse($$[$0-6+5-1], true); +case 158:this.$ = $$[$0-6+3-1].addElse($$[$0-6+5-1], true); break; -case 158:this.$ = $$[$0-1+1-1]; +case 159:this.$ = $$[$0-1+1-1]; break; -case 159:this.$ = $$[$0-2+1-1].addElse($$[$0-2+2-1]); +case 160:this.$ = $$[$0-2+1-1].addElse($$[$0-2+2-1]); break; -case 160:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { +case 161:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { statement: true }); break; -case 161:this.$ = new IfNode($$[$0-4+2-1], $$[$0-4+3-1], { +case 162:this.$ = new IfNode($$[$0-4+2-1], $$[$0-4+3-1], { statement: true }); break; -case 162:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1]); +case 163:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1]); break; -case 163:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { +case 164:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { invert: true }); break; -case 164:this.$ = $$[$0-5+1-1].addElse((new IfNode($$[$0-5+4-1], $$[$0-5+5-1])).forceStatement()); +case 165:this.$ = $$[$0-5+1-1].addElse((new IfNode($$[$0-5+4-1], $$[$0-5+5-1])).forceStatement()); break; -case 165:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); +case 166:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); break; -case 166:this.$ = $$[$0-1+1-1]; +case 167:this.$ = $$[$0-1+1-1]; break; -case 167:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { +case 168:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { statement: true }); break; -case 168:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { +case 169:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { statement: true }); break; -case 169:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { +case 170:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { statement: true, invert: true }); break; -case 170:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { +case 171:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { statement: true, invert: true }); break; -case 171:this.$ = new OpNode('!', $$[$0-2+2-1]); +case 172:this.$ = new OpNode('!', $$[$0-2+2-1]); break; -case 172:this.$ = new OpNode('!!', $$[$0-2+2-1]); +case 173:this.$ = new OpNode('!!', $$[$0-2+2-1]); break; -case 173:this.$ = new OpNode('-', $$[$0-2+2-1]); +case 174:this.$ = new OpNode('-', $$[$0-2+2-1]); break; -case 174:this.$ = new OpNode('+', $$[$0-2+2-1]); +case 175:this.$ = new OpNode('+', $$[$0-2+2-1]); break; -case 175:this.$ = new OpNode('~', $$[$0-2+2-1]); +case 176:this.$ = new OpNode('~', $$[$0-2+2-1]); break; -case 176:this.$ = new OpNode('--', $$[$0-2+2-1]); +case 177:this.$ = new OpNode('--', $$[$0-2+2-1]); break; -case 177:this.$ = new OpNode('++', $$[$0-2+2-1]); +case 178:this.$ = new OpNode('++', $$[$0-2+2-1]); break; -case 178:this.$ = new OpNode('delete', $$[$0-2+2-1]); +case 179:this.$ = new OpNode('delete', $$[$0-2+2-1]); break; -case 179:this.$ = new OpNode('typeof', $$[$0-2+2-1]); +case 180:this.$ = new OpNode('typeof', $$[$0-2+2-1]); break; -case 180:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); +case 181:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); break; -case 181:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); +case 182:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); break; -case 182:this.$ = new OpNode('*', $$[$0-3+1-1], $$[$0-3+3-1]); +case 183:this.$ = new OpNode('*', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 183:this.$ = new OpNode('/', $$[$0-3+1-1], $$[$0-3+3-1]); +case 184:this.$ = new OpNode('/', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 184:this.$ = new OpNode('%', $$[$0-3+1-1], $$[$0-3+3-1]); +case 185:this.$ = new OpNode('%', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 185:this.$ = new OpNode('+', $$[$0-3+1-1], $$[$0-3+3-1]); +case 186:this.$ = new OpNode('+', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 186:this.$ = new OpNode('-', $$[$0-3+1-1], $$[$0-3+3-1]); +case 187:this.$ = new OpNode('-', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 187:this.$ = new OpNode('<<', $$[$0-3+1-1], $$[$0-3+3-1]); +case 188:this.$ = new OpNode('<<', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 188:this.$ = new OpNode('>>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 189:this.$ = new OpNode('>>', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 189:this.$ = new OpNode('>>>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 190:this.$ = new OpNode('>>>', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 190:this.$ = new OpNode('&', $$[$0-3+1-1], $$[$0-3+3-1]); +case 191:this.$ = new OpNode('&', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 191:this.$ = new OpNode('|', $$[$0-3+1-1], $$[$0-3+3-1]); +case 192:this.$ = new OpNode('|', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 192:this.$ = new OpNode('^', $$[$0-3+1-1], $$[$0-3+3-1]); +case 193:this.$ = new OpNode('^', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 193:this.$ = new OpNode('<=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 194:this.$ = new OpNode('<=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 194:this.$ = new OpNode('<', $$[$0-3+1-1], $$[$0-3+3-1]); +case 195:this.$ = new OpNode('<', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 195:this.$ = new OpNode('>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 196:this.$ = new OpNode('>', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 196:this.$ = new OpNode('>=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 197:this.$ = new OpNode('>=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 197:this.$ = new OpNode('==', $$[$0-3+1-1], $$[$0-3+3-1]); +case 198:this.$ = new OpNode('==', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 198:this.$ = new OpNode('!=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 199:this.$ = new OpNode('!=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 199:this.$ = new OpNode('&&', $$[$0-3+1-1], $$[$0-3+3-1]); +case 200:this.$ = new OpNode('&&', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 200:this.$ = new OpNode('||', $$[$0-3+1-1], $$[$0-3+3-1]); +case 201:this.$ = new OpNode('||', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 201:this.$ = new OpNode('?', $$[$0-3+1-1], $$[$0-3+3-1]); +case 202:this.$ = new OpNode('?', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 202:this.$ = new OpNode('-=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 203:this.$ = new OpNode('-=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 203:this.$ = new OpNode('+=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 204:this.$ = new OpNode('+=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 204:this.$ = new OpNode('/=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 205:this.$ = new OpNode('/=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 205:this.$ = new OpNode('*=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 206:this.$ = new OpNode('*=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 206:this.$ = new OpNode('%=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 207:this.$ = new OpNode('%=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 207:this.$ = new OpNode('||=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 208:this.$ = new OpNode('||=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 208:this.$ = new OpNode('&&=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 209:this.$ = new OpNode('&&=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 209:this.$ = new OpNode('?=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 210:this.$ = new OpNode('?=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 210:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); +case 211:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 211:this.$ = new InNode($$[$0-3+1-1], $$[$0-3+3-1]); +case 212:this.$ = new InNode($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 212:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); +case 213:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 213:this.$ = new OpNode('!', new InNode($$[$0-4+1-1], $$[$0-4+4-1])); +case 214:this.$ = new OpNode('!', new InNode($$[$0-4+1-1], $$[$0-4+4-1])); break; -case 214:this.$ = new OpNode('!', new ParentheticalNode(new OpNode('in', $$[$0-4+1-1], $$[$0-4+4-1]))); +case 215:this.$ = new OpNode('!', new ParentheticalNode(new OpNode('in', $$[$0-4+1-1], $$[$0-4+4-1]))); break; } }, -table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,6],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[3]},{"1":[2,2]},{"1":[2,3],"4":[1,86]},{"4":[1,87]},{"1":[2,5],"4":[2,5],"29":[2,5]},{"5":88,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[1,89],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,8],"4":[2,8],"29":[2,8],"48":[1,111],"59":[1,128],"105":[2,8],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,9],"4":[2,9],"29":[2,9],"105":[2,9],"106":131,"107":[1,77],"109":[1,78],"112":[1,132],"125":[1,129],"126":[1,130]},{"1":[2,14],"4":[2,14],"28":[2,14],"29":[2,14],"48":[2,14],"56":[2,14],"59":[2,14],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,14],"78":[1,143],"79":[1,144],"82":[2,14],"89":133,"90":[1,135],"92":[2,14],"97":[2,14],"105":[2,14],"107":[2,14],"108":[2,14],"109":[2,14],"112":[2,14],"116":[2,14],"117":[2,14],"118":[2,14],"125":[2,14],"126":[2,14],"127":[2,14],"129":[2,14],"130":[2,14],"132":[2,14],"133":[2,14],"136":[2,14],"137":[2,14],"138":[2,14],"139":[2,14],"140":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[2,14],"148":[2,14],"149":[2,14],"150":[2,14],"151":[2,14],"152":[2,14],"153":[2,14],"154":[2,14],"155":[2,14],"156":[2,14],"157":[2,14],"158":[2,14],"159":[2,14],"160":[2,14],"161":[2,14]},{"1":[2,15],"4":[2,15],"28":[2,15],"29":[2,15],"48":[2,15],"56":[2,15],"59":[2,15],"77":[2,15],"82":[2,15],"92":[2,15],"97":[2,15],"105":[2,15],"107":[2,15],"108":[2,15],"109":[2,15],"112":[2,15],"116":[2,15],"117":[2,15],"118":[2,15],"125":[2,15],"126":[2,15],"127":[2,15],"129":[2,15],"130":[2,15],"132":[2,15],"133":[2,15],"136":[2,15],"137":[2,15],"138":[2,15],"139":[2,15],"140":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[2,15],"149":[2,15],"150":[2,15],"151":[2,15],"152":[2,15],"153":[2,15],"154":[2,15],"155":[2,15],"156":[2,15],"157":[2,15],"158":[2,15],"159":[2,15],"160":[2,15],"161":[2,15]},{"1":[2,16],"4":[2,16],"28":[2,16],"29":[2,16],"48":[2,16],"56":[2,16],"59":[2,16],"77":[2,16],"82":[2,16],"92":[2,16],"97":[2,16],"105":[2,16],"107":[2,16],"108":[2,16],"109":[2,16],"112":[2,16],"116":[2,16],"117":[2,16],"118":[2,16],"125":[2,16],"126":[2,16],"127":[2,16],"129":[2,16],"130":[2,16],"132":[2,16],"133":[2,16],"136":[2,16],"137":[2,16],"138":[2,16],"139":[2,16],"140":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"148":[2,16],"149":[2,16],"150":[2,16],"151":[2,16],"152":[2,16],"153":[2,16],"154":[2,16],"155":[2,16],"156":[2,16],"157":[2,16],"158":[2,16],"159":[2,16],"160":[2,16],"161":[2,16]},{"1":[2,17],"4":[2,17],"28":[2,17],"29":[2,17],"48":[2,17],"56":[2,17],"59":[2,17],"77":[2,17],"82":[2,17],"92":[2,17],"97":[2,17],"105":[2,17],"107":[2,17],"108":[2,17],"109":[2,17],"112":[2,17],"116":[2,17],"117":[2,17],"118":[2,17],"125":[2,17],"126":[2,17],"127":[2,17],"129":[2,17],"130":[2,17],"132":[2,17],"133":[2,17],"136":[2,17],"137":[2,17],"138":[2,17],"139":[2,17],"140":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"148":[2,17],"149":[2,17],"150":[2,17],"151":[2,17],"152":[2,17],"153":[2,17],"154":[2,17],"155":[2,17],"156":[2,17],"157":[2,17],"158":[2,17],"159":[2,17],"160":[2,17],"161":[2,17]},{"1":[2,18],"4":[2,18],"28":[2,18],"29":[2,18],"48":[2,18],"56":[2,18],"59":[2,18],"77":[2,18],"82":[2,18],"92":[2,18],"97":[2,18],"105":[2,18],"107":[2,18],"108":[2,18],"109":[2,18],"112":[2,18],"116":[2,18],"117":[2,18],"118":[2,18],"125":[2,18],"126":[2,18],"127":[2,18],"129":[2,18],"130":[2,18],"132":[2,18],"133":[2,18],"136":[2,18],"137":[2,18],"138":[2,18],"139":[2,18],"140":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"148":[2,18],"149":[2,18],"150":[2,18],"151":[2,18],"152":[2,18],"153":[2,18],"154":[2,18],"155":[2,18],"156":[2,18],"157":[2,18],"158":[2,18],"159":[2,18],"160":[2,18],"161":[2,18]},{"1":[2,19],"4":[2,19],"28":[2,19],"29":[2,19],"48":[2,19],"56":[2,19],"59":[2,19],"77":[2,19],"82":[2,19],"92":[2,19],"97":[2,19],"105":[2,19],"107":[2,19],"108":[2,19],"109":[2,19],"112":[2,19],"116":[2,19],"117":[2,19],"118":[2,19],"125":[2,19],"126":[2,19],"127":[2,19],"129":[2,19],"130":[2,19],"132":[2,19],"133":[2,19],"136":[2,19],"137":[2,19],"138":[2,19],"139":[2,19],"140":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"148":[2,19],"149":[2,19],"150":[2,19],"151":[2,19],"152":[2,19],"153":[2,19],"154":[2,19],"155":[2,19],"156":[2,19],"157":[2,19],"158":[2,19],"159":[2,19],"160":[2,19],"161":[2,19]},{"1":[2,20],"4":[2,20],"28":[2,20],"29":[2,20],"48":[2,20],"56":[2,20],"59":[2,20],"77":[2,20],"82":[2,20],"92":[2,20],"97":[2,20],"105":[2,20],"107":[2,20],"108":[2,20],"109":[2,20],"112":[2,20],"116":[2,20],"117":[2,20],"118":[2,20],"125":[2,20],"126":[2,20],"127":[2,20],"129":[2,20],"130":[2,20],"132":[2,20],"133":[2,20],"136":[2,20],"137":[2,20],"138":[2,20],"139":[2,20],"140":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"148":[2,20],"149":[2,20],"150":[2,20],"151":[2,20],"152":[2,20],"153":[2,20],"154":[2,20],"155":[2,20],"156":[2,20],"157":[2,20],"158":[2,20],"159":[2,20],"160":[2,20],"161":[2,20]},{"1":[2,21],"4":[2,21],"28":[2,21],"29":[2,21],"48":[2,21],"56":[2,21],"59":[2,21],"77":[2,21],"82":[2,21],"92":[2,21],"97":[2,21],"105":[2,21],"107":[2,21],"108":[2,21],"109":[2,21],"112":[2,21],"116":[2,21],"117":[2,21],"118":[2,21],"125":[2,21],"126":[2,21],"127":[2,21],"129":[2,21],"130":[2,21],"132":[2,21],"133":[2,21],"136":[2,21],"137":[2,21],"138":[2,21],"139":[2,21],"140":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"148":[2,21],"149":[2,21],"150":[2,21],"151":[2,21],"152":[2,21],"153":[2,21],"154":[2,21],"155":[2,21],"156":[2,21],"157":[2,21],"158":[2,21],"159":[2,21],"160":[2,21],"161":[2,21]},{"1":[2,22],"4":[2,22],"28":[2,22],"29":[2,22],"48":[2,22],"56":[2,22],"59":[2,22],"77":[2,22],"82":[2,22],"92":[2,22],"97":[2,22],"105":[2,22],"107":[2,22],"108":[2,22],"109":[2,22],"112":[2,22],"116":[2,22],"117":[2,22],"118":[2,22],"125":[2,22],"126":[2,22],"127":[2,22],"129":[2,22],"130":[2,22],"132":[2,22],"133":[2,22],"136":[2,22],"137":[2,22],"138":[2,22],"139":[2,22],"140":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"148":[2,22],"149":[2,22],"150":[2,22],"151":[2,22],"152":[2,22],"153":[2,22],"154":[2,22],"155":[2,22],"156":[2,22],"157":[2,22],"158":[2,22],"159":[2,22],"160":[2,22],"161":[2,22]},{"1":[2,23],"4":[2,23],"28":[2,23],"29":[2,23],"48":[2,23],"56":[2,23],"59":[2,23],"77":[2,23],"82":[2,23],"92":[2,23],"97":[2,23],"105":[2,23],"107":[2,23],"108":[2,23],"109":[2,23],"112":[2,23],"116":[2,23],"117":[2,23],"118":[2,23],"125":[2,23],"126":[2,23],"127":[2,23],"129":[2,23],"130":[2,23],"132":[2,23],"133":[2,23],"136":[2,23],"137":[2,23],"138":[2,23],"139":[2,23],"140":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"148":[2,23],"149":[2,23],"150":[2,23],"151":[2,23],"152":[2,23],"153":[2,23],"154":[2,23],"155":[2,23],"156":[2,23],"157":[2,23],"158":[2,23],"159":[2,23],"160":[2,23],"161":[2,23]},{"1":[2,24],"4":[2,24],"28":[2,24],"29":[2,24],"48":[2,24],"56":[2,24],"59":[2,24],"77":[2,24],"82":[2,24],"92":[2,24],"97":[2,24],"105":[2,24],"107":[2,24],"108":[2,24],"109":[2,24],"112":[2,24],"116":[2,24],"117":[2,24],"118":[2,24],"125":[2,24],"126":[2,24],"127":[2,24],"129":[2,24],"130":[2,24],"132":[2,24],"133":[2,24],"136":[2,24],"137":[2,24],"138":[2,24],"139":[2,24],"140":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"148":[2,24],"149":[2,24],"150":[2,24],"151":[2,24],"152":[2,24],"153":[2,24],"154":[2,24],"155":[2,24],"156":[2,24],"157":[2,24],"158":[2,24],"159":[2,24],"160":[2,24],"161":[2,24]},{"1":[2,25],"4":[2,25],"28":[2,25],"29":[2,25],"48":[2,25],"56":[2,25],"59":[2,25],"77":[2,25],"82":[2,25],"92":[2,25],"97":[2,25],"105":[2,25],"107":[2,25],"108":[2,25],"109":[2,25],"112":[2,25],"116":[2,25],"117":[2,25],"118":[2,25],"125":[2,25],"126":[2,25],"127":[2,25],"129":[2,25],"130":[2,25],"132":[2,25],"133":[2,25],"136":[2,25],"137":[2,25],"138":[2,25],"139":[2,25],"140":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"148":[2,25],"149":[2,25],"150":[2,25],"151":[2,25],"152":[2,25],"153":[2,25],"154":[2,25],"155":[2,25],"156":[2,25],"157":[2,25],"158":[2,25],"159":[2,25],"160":[2,25],"161":[2,25]},{"1":[2,26],"4":[2,26],"28":[2,26],"29":[2,26],"48":[2,26],"56":[2,26],"59":[2,26],"77":[2,26],"82":[2,26],"92":[2,26],"97":[2,26],"105":[2,26],"107":[2,26],"108":[2,26],"109":[2,26],"112":[2,26],"116":[2,26],"117":[2,26],"118":[2,26],"125":[2,26],"126":[2,26],"127":[2,26],"129":[2,26],"130":[2,26],"132":[2,26],"133":[2,26],"136":[2,26],"137":[2,26],"138":[2,26],"139":[2,26],"140":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"148":[2,26],"149":[2,26],"150":[2,26],"151":[2,26],"152":[2,26],"153":[2,26],"154":[2,26],"155":[2,26],"156":[2,26],"157":[2,26],"158":[2,26],"159":[2,26],"160":[2,26],"161":[2,26]},{"1":[2,27],"4":[2,27],"28":[2,27],"29":[2,27],"48":[2,27],"56":[2,27],"59":[2,27],"77":[2,27],"82":[2,27],"92":[2,27],"97":[2,27],"105":[2,27],"107":[2,27],"108":[2,27],"109":[2,27],"112":[2,27],"116":[2,27],"117":[2,27],"118":[2,27],"125":[2,27],"126":[2,27],"127":[2,27],"129":[2,27],"130":[2,27],"132":[2,27],"133":[2,27],"136":[2,27],"137":[2,27],"138":[2,27],"139":[2,27],"140":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"148":[2,27],"149":[2,27],"150":[2,27],"151":[2,27],"152":[2,27],"153":[2,27],"154":[2,27],"155":[2,27],"156":[2,27],"157":[2,27],"158":[2,27],"159":[2,27],"160":[2,27],"161":[2,27]},{"1":[2,10],"4":[2,10],"29":[2,10],"105":[2,10],"107":[2,10],"109":[2,10],"112":[2,10],"125":[2,10],"126":[2,10]},{"1":[2,11],"4":[2,11],"29":[2,11],"105":[2,11],"107":[2,11],"109":[2,11],"112":[2,11],"125":[2,11],"126":[2,11]},{"1":[2,12],"4":[2,12],"29":[2,12],"105":[2,12],"107":[2,12],"109":[2,12],"112":[2,12],"125":[2,12],"126":[2,12]},{"1":[2,13],"4":[2,13],"29":[2,13],"105":[2,13],"107":[2,13],"109":[2,13],"112":[2,13],"125":[2,13],"126":[2,13]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"45":[1,145],"48":[2,69],"56":[2,69],"59":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"77":[2,69],"78":[2,69],"79":[2,69],"82":[2,69],"90":[2,69],"92":[2,69],"97":[2,69],"105":[2,69],"107":[2,69],"108":[2,69],"109":[2,69],"112":[2,69],"116":[2,69],"117":[2,69],"118":[2,69],"125":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"132":[2,69],"133":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69],"140":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69]},{"1":[2,70],"4":[2,70],"28":[2,70],"29":[2,70],"48":[2,70],"56":[2,70],"59":[2,70],"70":[2,70],"71":[2,70],"72":[2,70],"73":[2,70],"76":[2,70],"77":[2,70],"78":[2,70],"79":[2,70],"82":[2,70],"90":[2,70],"92":[2,70],"97":[2,70],"105":[2,70],"107":[2,70],"108":[2,70],"109":[2,70],"112":[2,70],"116":[2,70],"117":[2,70],"118":[2,70],"125":[2,70],"126":[2,70],"127":[2,70],"129":[2,70],"130":[2,70],"132":[2,70],"133":[2,70],"136":[2,70],"137":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"48":[2,71],"56":[2,71],"59":[2,71],"70":[2,71],"71":[2,71],"72":[2,71],"73":[2,71],"76":[2,71],"77":[2,71],"78":[2,71],"79":[2,71],"82":[2,71],"90":[2,71],"92":[2,71],"97":[2,71],"105":[2,71],"107":[2,71],"108":[2,71],"109":[2,71],"112":[2,71],"116":[2,71],"117":[2,71],"118":[2,71],"125":[2,71],"126":[2,71],"127":[2,71],"129":[2,71],"130":[2,71],"132":[2,71],"133":[2,71],"136":[2,71],"137":[2,71],"138":[2,71],"139":[2,71],"140":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"48":[2,72],"56":[2,72],"59":[2,72],"70":[2,72],"71":[2,72],"72":[2,72],"73":[2,72],"76":[2,72],"77":[2,72],"78":[2,72],"79":[2,72],"82":[2,72],"90":[2,72],"92":[2,72],"97":[2,72],"105":[2,72],"107":[2,72],"108":[2,72],"109":[2,72],"112":[2,72],"116":[2,72],"117":[2,72],"118":[2,72],"125":[2,72],"126":[2,72],"127":[2,72],"129":[2,72],"130":[2,72],"132":[2,72],"133":[2,72],"136":[2,72],"137":[2,72],"138":[2,72],"139":[2,72],"140":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72]},{"1":[2,73],"4":[2,73],"28":[2,73],"29":[2,73],"48":[2,73],"56":[2,73],"59":[2,73],"70":[2,73],"71":[2,73],"72":[2,73],"73":[2,73],"76":[2,73],"77":[2,73],"78":[2,73],"79":[2,73],"82":[2,73],"90":[2,73],"92":[2,73],"97":[2,73],"105":[2,73],"107":[2,73],"108":[2,73],"109":[2,73],"112":[2,73],"116":[2,73],"117":[2,73],"118":[2,73],"125":[2,73],"126":[2,73],"127":[2,73],"129":[2,73],"130":[2,73],"132":[2,73],"133":[2,73],"136":[2,73],"137":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"48":[2,74],"56":[2,74],"59":[2,74],"70":[2,74],"71":[2,74],"72":[2,74],"73":[2,74],"76":[2,74],"77":[2,74],"78":[2,74],"79":[2,74],"82":[2,74],"90":[2,74],"92":[2,74],"97":[2,74],"105":[2,74],"107":[2,74],"108":[2,74],"109":[2,74],"112":[2,74],"116":[2,74],"117":[2,74],"118":[2,74],"125":[2,74],"126":[2,74],"127":[2,74],"129":[2,74],"130":[2,74],"132":[2,74],"133":[2,74],"136":[2,74],"137":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74],"151":[2,74],"152":[2,74],"153":[2,74],"154":[2,74],"155":[2,74],"156":[2,74],"157":[2,74],"158":[2,74],"159":[2,74],"160":[2,74],"161":[2,74]},{"1":[2,99],"4":[2,99],"28":[2,99],"29":[2,99],"48":[2,99],"56":[2,99],"59":[2,99],"61":147,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,99],"78":[1,143],"79":[1,144],"82":[2,99],"89":146,"90":[1,135],"92":[2,99],"97":[2,99],"105":[2,99],"107":[2,99],"108":[2,99],"109":[2,99],"112":[2,99],"116":[2,99],"117":[2,99],"118":[2,99],"125":[2,99],"126":[2,99],"127":[2,99],"129":[2,99],"130":[2,99],"132":[2,99],"133":[2,99],"136":[2,99],"137":[2,99],"138":[2,99],"139":[2,99],"140":[2,99],"141":[2,99],"142":[2,99],"143":[2,99],"144":[2,99],"145":[2,99],"146":[2,99],"147":[2,99],"148":[2,99],"149":[2,99],"150":[2,99],"151":[2,99],"152":[2,99],"153":[2,99],"154":[2,99],"155":[2,99],"156":[2,99],"157":[2,99],"158":[2,99],"159":[2,99],"160":[2,99],"161":[2,99]},{"1":[2,100],"4":[2,100],"28":[2,100],"29":[2,100],"48":[2,100],"56":[2,100],"59":[2,100],"77":[2,100],"82":[2,100],"92":[2,100],"97":[2,100],"105":[2,100],"107":[2,100],"108":[2,100],"109":[2,100],"112":[2,100],"116":[2,100],"117":[2,100],"118":[2,100],"125":[2,100],"126":[2,100],"127":[2,100],"129":[2,100],"130":[2,100],"132":[2,100],"133":[2,100],"136":[2,100],"137":[2,100],"138":[2,100],"139":[2,100],"140":[2,100],"141":[2,100],"142":[2,100],"143":[2,100],"144":[2,100],"145":[2,100],"146":[2,100],"147":[2,100],"148":[2,100],"149":[2,100],"150":[2,100],"151":[2,100],"152":[2,100],"153":[2,100],"154":[2,100],"155":[2,100],"156":[2,100],"157":[2,100],"158":[2,100],"159":[2,100],"160":[2,100],"161":[2,100]},{"14":149,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":151,"62":148,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"50":152,"51":[2,56],"56":[2,56],"57":153,"58":[1,154]},{"6":155,"28":[1,6]},{"8":156,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":158,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":159,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":160,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":161,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":162,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":163,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":164,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":165,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,166],"4":[2,166],"28":[2,166],"29":[2,166],"48":[2,166],"56":[2,166],"59":[2,166],"77":[2,166],"82":[2,166],"92":[2,166],"97":[2,166],"105":[2,166],"107":[2,166],"108":[2,166],"109":[2,166],"112":[2,166],"116":[2,166],"117":[2,166],"118":[2,166],"121":[1,166],"125":[2,166],"126":[2,166],"127":[2,166],"129":[2,166],"130":[2,166],"132":[2,166],"133":[2,166],"136":[2,166],"137":[2,166],"138":[2,166],"139":[2,166],"140":[2,166],"141":[2,166],"142":[2,166],"143":[2,166],"144":[2,166],"145":[2,166],"146":[2,166],"147":[2,166],"148":[2,166],"149":[2,166],"150":[2,166],"151":[2,166],"152":[2,166],"153":[2,166],"154":[2,166],"155":[2,166],"156":[2,166],"157":[2,166],"158":[2,166],"159":[2,166],"160":[2,166],"161":[2,166]},{"6":167,"28":[1,6]},{"6":168,"28":[1,6]},{"1":[2,136],"4":[2,136],"28":[2,136],"29":[2,136],"48":[2,136],"56":[2,136],"59":[2,136],"77":[2,136],"82":[2,136],"92":[2,136],"97":[2,136],"105":[2,136],"107":[2,136],"108":[2,136],"109":[2,136],"112":[2,136],"116":[2,136],"117":[2,136],"118":[2,136],"125":[2,136],"126":[2,136],"127":[2,136],"129":[2,136],"130":[2,136],"132":[2,136],"133":[2,136],"136":[2,136],"137":[2,136],"138":[2,136],"139":[2,136],"140":[2,136],"141":[2,136],"142":[2,136],"143":[2,136],"144":[2,136],"145":[2,136],"146":[2,136],"147":[2,136],"148":[2,136],"149":[2,136],"150":[2,136],"151":[2,136],"152":[2,136],"153":[2,136],"154":[2,136],"155":[2,136],"156":[2,136],"157":[2,136],"158":[2,136],"159":[2,136],"160":[2,136],"161":[2,136]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"113":169,"115":170},{"8":175,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,176],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,66],"4":[2,66],"28":[2,66],"29":[2,66],"45":[2,66],"48":[2,66],"56":[2,66],"59":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,66],"78":[2,66],"79":[2,66],"82":[2,66],"84":[1,177],"90":[2,66],"92":[2,66],"97":[2,66],"105":[2,66],"107":[2,66],"108":[2,66],"109":[2,66],"112":[2,66],"116":[2,66],"117":[2,66],"118":[2,66],"125":[2,66],"126":[2,66],"127":[2,66],"129":[2,66],"130":[2,66],"132":[2,66],"133":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66]},{"14":179,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":178,"62":180,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"1":[2,48],"4":[2,48],"8":181,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[2,48],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"105":[2,48],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[2,48],"126":[2,48],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":182,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,67],"4":[2,67],"28":[2,67],"29":[2,67],"45":[2,67],"48":[2,67],"56":[2,67],"59":[2,67],"70":[2,67],"71":[2,67],"72":[2,67],"73":[2,67],"76":[2,67],"77":[2,67],"78":[2,67],"79":[2,67],"82":[2,67],"90":[2,67],"92":[2,67],"97":[2,67],"105":[2,67],"107":[2,67],"108":[2,67],"109":[2,67],"112":[2,67],"116":[2,67],"117":[2,67],"118":[2,67],"125":[2,67],"126":[2,67],"127":[2,67],"129":[2,67],"130":[2,67],"132":[2,67],"133":[2,67],"136":[2,67],"137":[2,67],"138":[2,67],"139":[2,67],"140":[2,67],"141":[2,67],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67]},{"1":[2,68],"4":[2,68],"28":[2,68],"29":[2,68],"45":[2,68],"48":[2,68],"56":[2,68],"59":[2,68],"70":[2,68],"71":[2,68],"72":[2,68],"73":[2,68],"76":[2,68],"77":[2,68],"78":[2,68],"79":[2,68],"82":[2,68],"90":[2,68],"92":[2,68],"97":[2,68],"105":[2,68],"107":[2,68],"108":[2,68],"109":[2,68],"112":[2,68],"116":[2,68],"117":[2,68],"118":[2,68],"125":[2,68],"126":[2,68],"127":[2,68],"129":[2,68],"130":[2,68],"132":[2,68],"133":[2,68],"136":[2,68],"137":[2,68],"138":[2,68],"139":[2,68],"140":[2,68],"141":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68]},{"1":[2,33],"4":[2,33],"28":[2,33],"29":[2,33],"48":[2,33],"56":[2,33],"59":[2,33],"70":[2,33],"71":[2,33],"72":[2,33],"73":[2,33],"76":[2,33],"77":[2,33],"78":[2,33],"79":[2,33],"82":[2,33],"90":[2,33],"92":[2,33],"97":[2,33],"105":[2,33],"107":[2,33],"108":[2,33],"109":[2,33],"112":[2,33],"116":[2,33],"117":[2,33],"118":[2,33],"125":[2,33],"126":[2,33],"127":[2,33],"129":[2,33],"130":[2,33],"132":[2,33],"133":[2,33],"136":[2,33],"137":[2,33],"138":[2,33],"139":[2,33],"140":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33],"151":[2,33],"152":[2,33],"153":[2,33],"154":[2,33],"155":[2,33],"156":[2,33],"157":[2,33],"158":[2,33],"159":[2,33],"160":[2,33],"161":[2,33]},{"1":[2,34],"4":[2,34],"28":[2,34],"29":[2,34],"48":[2,34],"56":[2,34],"59":[2,34],"70":[2,34],"71":[2,34],"72":[2,34],"73":[2,34],"76":[2,34],"77":[2,34],"78":[2,34],"79":[2,34],"82":[2,34],"90":[2,34],"92":[2,34],"97":[2,34],"105":[2,34],"107":[2,34],"108":[2,34],"109":[2,34],"112":[2,34],"116":[2,34],"117":[2,34],"118":[2,34],"125":[2,34],"126":[2,34],"127":[2,34],"129":[2,34],"130":[2,34],"132":[2,34],"133":[2,34],"136":[2,34],"137":[2,34],"138":[2,34],"139":[2,34],"140":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34],"151":[2,34],"152":[2,34],"153":[2,34],"154":[2,34],"155":[2,34],"156":[2,34],"157":[2,34],"158":[2,34],"159":[2,34],"160":[2,34],"161":[2,34]},{"1":[2,35],"4":[2,35],"28":[2,35],"29":[2,35],"48":[2,35],"56":[2,35],"59":[2,35],"70":[2,35],"71":[2,35],"72":[2,35],"73":[2,35],"76":[2,35],"77":[2,35],"78":[2,35],"79":[2,35],"82":[2,35],"90":[2,35],"92":[2,35],"97":[2,35],"105":[2,35],"107":[2,35],"108":[2,35],"109":[2,35],"112":[2,35],"116":[2,35],"117":[2,35],"118":[2,35],"125":[2,35],"126":[2,35],"127":[2,35],"129":[2,35],"130":[2,35],"132":[2,35],"133":[2,35],"136":[2,35],"137":[2,35],"138":[2,35],"139":[2,35],"140":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35],"151":[2,35],"152":[2,35],"153":[2,35],"154":[2,35],"155":[2,35],"156":[2,35],"157":[2,35],"158":[2,35],"159":[2,35],"160":[2,35],"161":[2,35]},{"1":[2,36],"4":[2,36],"28":[2,36],"29":[2,36],"48":[2,36],"56":[2,36],"59":[2,36],"70":[2,36],"71":[2,36],"72":[2,36],"73":[2,36],"76":[2,36],"77":[2,36],"78":[2,36],"79":[2,36],"82":[2,36],"90":[2,36],"92":[2,36],"97":[2,36],"105":[2,36],"107":[2,36],"108":[2,36],"109":[2,36],"112":[2,36],"116":[2,36],"117":[2,36],"118":[2,36],"125":[2,36],"126":[2,36],"127":[2,36],"129":[2,36],"130":[2,36],"132":[2,36],"133":[2,36],"136":[2,36],"137":[2,36],"138":[2,36],"139":[2,36],"140":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36],"151":[2,36],"152":[2,36],"153":[2,36],"154":[2,36],"155":[2,36],"156":[2,36],"157":[2,36],"158":[2,36],"159":[2,36],"160":[2,36],"161":[2,36]},{"1":[2,37],"4":[2,37],"28":[2,37],"29":[2,37],"48":[2,37],"56":[2,37],"59":[2,37],"70":[2,37],"71":[2,37],"72":[2,37],"73":[2,37],"76":[2,37],"77":[2,37],"78":[2,37],"79":[2,37],"82":[2,37],"90":[2,37],"92":[2,37],"97":[2,37],"105":[2,37],"107":[2,37],"108":[2,37],"109":[2,37],"112":[2,37],"116":[2,37],"117":[2,37],"118":[2,37],"125":[2,37],"126":[2,37],"127":[2,37],"129":[2,37],"130":[2,37],"132":[2,37],"133":[2,37],"136":[2,37],"137":[2,37],"138":[2,37],"139":[2,37],"140":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37],"151":[2,37],"152":[2,37],"153":[2,37],"154":[2,37],"155":[2,37],"156":[2,37],"157":[2,37],"158":[2,37],"159":[2,37],"160":[2,37],"161":[2,37]},{"1":[2,38],"4":[2,38],"28":[2,38],"29":[2,38],"48":[2,38],"56":[2,38],"59":[2,38],"70":[2,38],"71":[2,38],"72":[2,38],"73":[2,38],"76":[2,38],"77":[2,38],"78":[2,38],"79":[2,38],"82":[2,38],"90":[2,38],"92":[2,38],"97":[2,38],"105":[2,38],"107":[2,38],"108":[2,38],"109":[2,38],"112":[2,38],"116":[2,38],"117":[2,38],"118":[2,38],"125":[2,38],"126":[2,38],"127":[2,38],"129":[2,38],"130":[2,38],"132":[2,38],"133":[2,38],"136":[2,38],"137":[2,38],"138":[2,38],"139":[2,38],"140":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38],"151":[2,38],"152":[2,38],"153":[2,38],"154":[2,38],"155":[2,38],"156":[2,38],"157":[2,38],"158":[2,38],"159":[2,38],"160":[2,38],"161":[2,38]},{"1":[2,39],"4":[2,39],"28":[2,39],"29":[2,39],"48":[2,39],"56":[2,39],"59":[2,39],"70":[2,39],"71":[2,39],"72":[2,39],"73":[2,39],"76":[2,39],"77":[2,39],"78":[2,39],"79":[2,39],"82":[2,39],"90":[2,39],"92":[2,39],"97":[2,39],"105":[2,39],"107":[2,39],"108":[2,39],"109":[2,39],"112":[2,39],"116":[2,39],"117":[2,39],"118":[2,39],"125":[2,39],"126":[2,39],"127":[2,39],"129":[2,39],"130":[2,39],"132":[2,39],"133":[2,39],"136":[2,39],"137":[2,39],"138":[2,39],"139":[2,39],"140":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39],"151":[2,39],"152":[2,39],"153":[2,39],"154":[2,39],"155":[2,39],"156":[2,39],"157":[2,39],"158":[2,39],"159":[2,39],"160":[2,39],"161":[2,39]},{"1":[2,40],"4":[2,40],"28":[2,40],"29":[2,40],"48":[2,40],"56":[2,40],"59":[2,40],"70":[2,40],"71":[2,40],"72":[2,40],"73":[2,40],"76":[2,40],"77":[2,40],"78":[2,40],"79":[2,40],"82":[2,40],"90":[2,40],"92":[2,40],"97":[2,40],"105":[2,40],"107":[2,40],"108":[2,40],"109":[2,40],"112":[2,40],"116":[2,40],"117":[2,40],"118":[2,40],"125":[2,40],"126":[2,40],"127":[2,40],"129":[2,40],"130":[2,40],"132":[2,40],"133":[2,40],"136":[2,40],"137":[2,40],"138":[2,40],"139":[2,40],"140":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40],"151":[2,40],"152":[2,40],"153":[2,40],"154":[2,40],"155":[2,40],"156":[2,40],"157":[2,40],"158":[2,40],"159":[2,40],"160":[2,40],"161":[2,40]},{"1":[2,41],"4":[2,41],"28":[2,41],"29":[2,41],"48":[2,41],"56":[2,41],"59":[2,41],"70":[2,41],"71":[2,41],"72":[2,41],"73":[2,41],"76":[2,41],"77":[2,41],"78":[2,41],"79":[2,41],"82":[2,41],"90":[2,41],"92":[2,41],"97":[2,41],"105":[2,41],"107":[2,41],"108":[2,41],"109":[2,41],"112":[2,41],"116":[2,41],"117":[2,41],"118":[2,41],"125":[2,41],"126":[2,41],"127":[2,41],"129":[2,41],"130":[2,41],"132":[2,41],"133":[2,41],"136":[2,41],"137":[2,41],"138":[2,41],"139":[2,41],"140":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41],"151":[2,41],"152":[2,41],"153":[2,41],"154":[2,41],"155":[2,41],"156":[2,41],"157":[2,41],"158":[2,41],"159":[2,41],"160":[2,41],"161":[2,41]},{"7":183,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,116],"8":184,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,116],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,116],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"91":185,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,116],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,108],"4":[2,108],"28":[2,108],"29":[2,108],"48":[2,108],"56":[2,108],"59":[2,108],"70":[2,108],"71":[2,108],"72":[2,108],"73":[2,108],"76":[2,108],"77":[2,108],"78":[2,108],"79":[2,108],"82":[2,108],"90":[2,108],"92":[2,108],"97":[2,108],"105":[2,108],"107":[2,108],"108":[2,108],"109":[2,108],"112":[2,108],"116":[2,108],"117":[2,108],"118":[2,108],"125":[2,108],"126":[2,108],"127":[2,108],"129":[2,108],"130":[2,108],"132":[2,108],"133":[2,108],"136":[2,108],"137":[2,108],"138":[2,108],"139":[2,108],"140":[2,108],"141":[2,108],"142":[2,108],"143":[2,108],"144":[2,108],"145":[2,108],"146":[2,108],"147":[2,108],"148":[2,108],"149":[2,108],"150":[2,108],"151":[2,108],"152":[2,108],"153":[2,108],"154":[2,108],"155":[2,108],"156":[2,108],"157":[2,108],"158":[2,108],"159":[2,108],"160":[2,108],"161":[2,108]},{"1":[2,109],"4":[2,109],"28":[2,109],"29":[2,109],"30":186,"31":[1,85],"48":[2,109],"56":[2,109],"59":[2,109],"70":[2,109],"71":[2,109],"72":[2,109],"73":[2,109],"76":[2,109],"77":[2,109],"78":[2,109],"79":[2,109],"82":[2,109],"90":[2,109],"92":[2,109],"97":[2,109],"105":[2,109],"107":[2,109],"108":[2,109],"109":[2,109],"112":[2,109],"116":[2,109],"117":[2,109],"118":[2,109],"125":[2,109],"126":[2,109],"127":[2,109],"129":[2,109],"130":[2,109],"132":[2,109],"133":[2,109],"136":[2,109],"137":[2,109],"138":[2,109],"139":[2,109],"140":[2,109],"141":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"147":[2,109],"148":[2,109],"149":[2,109],"150":[2,109],"151":[2,109],"152":[2,109],"153":[2,109],"154":[2,109],"155":[2,109],"156":[2,109],"157":[2,109],"158":[2,109],"159":[2,109],"160":[2,109],"161":[2,109]},{"89":187,"90":[1,135]},{"28":[2,52]},{"28":[2,53]},{"8":188,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":189,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":190,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":191,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"6":192,"8":193,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,6],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,62],"4":[2,62],"28":[2,62],"29":[2,62],"45":[2,62],"48":[2,62],"56":[2,62],"59":[2,62],"70":[2,62],"71":[2,62],"72":[2,62],"73":[2,62],"76":[2,62],"77":[2,62],"78":[2,62],"79":[2,62],"82":[2,62],"84":[2,62],"90":[2,62],"92":[2,62],"97":[2,62],"105":[2,62],"107":[2,62],"108":[2,62],"109":[2,62],"112":[2,62],"116":[2,62],"117":[2,62],"118":[2,62],"125":[2,62],"126":[2,62],"127":[2,62],"129":[2,62],"130":[2,62],"132":[2,62],"133":[2,62],"136":[2,62],"137":[2,62],"138":[2,62],"139":[2,62],"140":[2,62],"141":[2,62],"142":[2,62],"143":[2,62],"144":[2,62],"145":[2,62],"146":[2,62],"147":[2,62],"148":[2,62],"149":[2,62],"150":[2,62],"151":[2,62],"152":[2,62],"153":[2,62],"154":[2,62],"155":[2,62],"156":[2,62],"157":[2,62],"158":[2,62],"159":[2,62],"160":[2,62],"161":[2,62]},{"1":[2,65],"4":[2,65],"28":[2,65],"29":[2,65],"45":[2,65],"48":[2,65],"56":[2,65],"59":[2,65],"70":[2,65],"71":[2,65],"72":[2,65],"73":[2,65],"76":[2,65],"77":[2,65],"78":[2,65],"79":[2,65],"82":[2,65],"84":[2,65],"90":[2,65],"92":[2,65],"97":[2,65],"105":[2,65],"107":[2,65],"108":[2,65],"109":[2,65],"112":[2,65],"116":[2,65],"117":[2,65],"118":[2,65],"125":[2,65],"126":[2,65],"127":[2,65],"129":[2,65],"130":[2,65],"132":[2,65],"133":[2,65],"136":[2,65],"137":[2,65],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65]},{"4":[2,85],"28":[2,85],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":195,"56":[2,85],"81":194,"82":[2,85]},{"1":[2,31],"4":[2,31],"28":[2,31],"29":[2,31],"45":[2,31],"48":[2,31],"56":[2,31],"59":[2,31],"70":[2,31],"71":[2,31],"72":[2,31],"73":[2,31],"76":[2,31],"77":[2,31],"78":[2,31],"79":[2,31],"82":[2,31],"90":[2,31],"92":[2,31],"97":[2,31],"105":[2,31],"107":[2,31],"108":[2,31],"109":[2,31],"112":[2,31],"116":[2,31],"117":[2,31],"118":[2,31],"125":[2,31],"126":[2,31],"127":[2,31],"129":[2,31],"130":[2,31],"132":[2,31],"133":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31],"140":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31],"149":[2,31],"150":[2,31],"151":[2,31],"152":[2,31],"153":[2,31],"154":[2,31],"155":[2,31],"156":[2,31],"157":[2,31],"158":[2,31],"159":[2,31],"160":[2,31],"161":[2,31]},{"1":[2,32],"4":[2,32],"28":[2,32],"29":[2,32],"45":[2,32],"48":[2,32],"56":[2,32],"59":[2,32],"70":[2,32],"71":[2,32],"72":[2,32],"73":[2,32],"76":[2,32],"77":[2,32],"78":[2,32],"79":[2,32],"82":[2,32],"90":[2,32],"92":[2,32],"97":[2,32],"105":[2,32],"107":[2,32],"108":[2,32],"109":[2,32],"112":[2,32],"116":[2,32],"117":[2,32],"118":[2,32],"125":[2,32],"126":[2,32],"127":[2,32],"129":[2,32],"130":[2,32],"132":[2,32],"133":[2,32],"136":[2,32],"137":[2,32],"138":[2,32],"139":[2,32],"140":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32],"151":[2,32],"152":[2,32],"153":[2,32],"154":[2,32],"155":[2,32],"156":[2,32],"157":[2,32],"158":[2,32],"159":[2,32],"160":[2,32],"161":[2,32]},{"1":[2,30],"4":[2,30],"28":[2,30],"29":[2,30],"45":[2,30],"48":[2,30],"56":[2,30],"59":[2,30],"70":[2,30],"71":[2,30],"72":[2,30],"73":[2,30],"76":[2,30],"77":[2,30],"78":[2,30],"79":[2,30],"82":[2,30],"84":[2,30],"90":[2,30],"92":[2,30],"97":[2,30],"105":[2,30],"107":[2,30],"108":[2,30],"109":[2,30],"112":[2,30],"116":[2,30],"117":[2,30],"118":[2,30],"125":[2,30],"126":[2,30],"127":[2,30],"129":[2,30],"130":[2,30],"132":[2,30],"133":[2,30],"136":[2,30],"137":[2,30],"138":[2,30],"139":[2,30],"140":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"148":[2,30],"149":[2,30],"150":[2,30],"151":[2,30],"152":[2,30],"153":[2,30],"154":[2,30],"155":[2,30],"156":[2,30],"157":[2,30],"158":[2,30],"159":[2,30],"160":[2,30],"161":[2,30]},{"1":[2,7],"4":[2,7],"7":198,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[2,7],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,4]},{"4":[1,86],"29":[1,199]},{"1":[2,29],"4":[2,29],"28":[2,29],"29":[2,29],"48":[2,29],"56":[2,29],"59":[2,29],"77":[2,29],"82":[2,29],"92":[2,29],"97":[2,29],"101":[2,29],"102":[2,29],"105":[2,29],"107":[2,29],"108":[2,29],"109":[2,29],"112":[2,29],"116":[2,29],"117":[2,29],"118":[2,29],"121":[2,29],"123":[2,29],"125":[2,29],"126":[2,29],"127":[2,29],"129":[2,29],"130":[2,29],"132":[2,29],"133":[2,29],"136":[2,29],"137":[2,29],"138":[2,29],"139":[2,29],"140":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"148":[2,29],"149":[2,29],"150":[2,29],"151":[2,29],"152":[2,29],"153":[2,29],"154":[2,29],"155":[2,29],"156":[2,29],"157":[2,29],"158":[2,29],"159":[2,29],"160":[2,29],"161":[2,29]},{"1":[2,180],"4":[2,180],"28":[2,180],"29":[2,180],"48":[2,180],"56":[2,180],"59":[2,180],"77":[2,180],"82":[2,180],"92":[2,180],"97":[2,180],"105":[2,180],"107":[2,180],"108":[2,180],"109":[2,180],"112":[2,180],"116":[2,180],"117":[2,180],"118":[2,180],"125":[2,180],"126":[2,180],"127":[2,180],"129":[2,180],"130":[2,180],"132":[2,180],"133":[2,180],"136":[2,180],"137":[2,180],"138":[2,180],"139":[2,180],"140":[2,180],"141":[2,180],"142":[2,180],"143":[2,180],"144":[2,180],"145":[2,180],"146":[2,180],"147":[2,180],"148":[2,180],"149":[2,180],"150":[2,180],"151":[2,180],"152":[2,180],"153":[2,180],"154":[2,180],"155":[2,180],"156":[2,180],"157":[2,180],"158":[2,180],"159":[2,180],"160":[2,180],"161":[2,180]},{"1":[2,181],"4":[2,181],"28":[2,181],"29":[2,181],"48":[2,181],"56":[2,181],"59":[2,181],"77":[2,181],"82":[2,181],"92":[2,181],"97":[2,181],"105":[2,181],"107":[2,181],"108":[2,181],"109":[2,181],"112":[2,181],"116":[2,181],"117":[2,181],"118":[2,181],"125":[2,181],"126":[2,181],"127":[2,181],"129":[2,181],"130":[2,181],"132":[2,181],"133":[2,181],"136":[2,181],"137":[2,181],"138":[2,181],"139":[2,181],"140":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"148":[2,181],"149":[2,181],"150":[2,181],"151":[2,181],"152":[2,181],"153":[2,181],"154":[2,181],"155":[2,181],"156":[2,181],"157":[2,181],"158":[2,181],"159":[2,181],"160":[2,181],"161":[2,181]},{"8":200,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":201,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":202,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":203,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":204,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":205,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":206,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":207,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":208,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":209,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":210,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":211,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":212,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":213,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":214,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":215,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":216,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":217,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":218,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,49],"4":[2,49],"8":219,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,49],"29":[2,49],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"48":[2,49],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,49],"59":[2,49],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"77":[2,49],"80":[1,82],"82":[2,49],"83":[1,54],"87":34,"88":[1,35],"92":[2,49],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,49],"99":[1,48],"103":[1,56],"104":[1,68],"105":[2,49],"106":49,"107":[2,49],"108":[2,49],"109":[2,49],"110":50,"111":[1,79],"112":[2,49],"116":[2,49],"117":[2,49],"118":[2,49],"119":[1,52],"124":47,"125":[2,49],"126":[2,49],"127":[2,49],"128":[1,39],"129":[2,49],"130":[2,49],"131":[1,42],"132":[2,49],"133":[2,49],"134":[1,45],"135":[1,46],"136":[2,49],"137":[2,49],"138":[2,49],"139":[2,49],"140":[2,49],"141":[2,49],"142":[2,49],"143":[2,49],"144":[2,49],"145":[2,49],"146":[2,49],"147":[2,49],"148":[2,49],"149":[2,49],"150":[2,49],"151":[2,49],"152":[2,49],"153":[2,49],"154":[2,49],"155":[2,49],"156":[2,49],"157":[2,49],"158":[2,49],"159":[2,49],"160":[2,49],"161":[2,49]},{"8":220,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":221,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":222,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":223,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":224,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":225,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":226,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":227,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":228,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":229,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":230,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"116":[1,231],"117":[1,232]},{"8":233,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":234,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,135],"4":[2,135],"28":[2,135],"29":[2,135],"48":[2,135],"56":[2,135],"59":[2,135],"77":[2,135],"82":[2,135],"92":[2,135],"97":[2,135],"105":[2,135],"107":[2,135],"108":[2,135],"109":[2,135],"112":[2,135],"116":[2,135],"117":[2,135],"118":[2,135],"125":[2,135],"126":[2,135],"127":[2,135],"129":[2,135],"130":[2,135],"132":[2,135],"133":[2,135],"136":[2,135],"137":[2,135],"138":[2,135],"139":[2,135],"140":[2,135],"141":[2,135],"142":[2,135],"143":[2,135],"144":[2,135],"145":[2,135],"146":[2,135],"147":[2,135],"148":[2,135],"149":[2,135],"150":[2,135],"151":[2,135],"152":[2,135],"153":[2,135],"154":[2,135],"155":[2,135],"156":[2,135],"157":[2,135],"158":[2,135],"159":[2,135],"160":[2,135],"161":[2,135]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"113":235,"115":170},{"59":[1,236]},{"8":237,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":238,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,134],"4":[2,134],"28":[2,134],"29":[2,134],"48":[2,134],"56":[2,134],"59":[2,134],"77":[2,134],"82":[2,134],"92":[2,134],"97":[2,134],"105":[2,134],"107":[2,134],"108":[2,134],"109":[2,134],"112":[2,134],"116":[2,134],"117":[2,134],"118":[2,134],"125":[2,134],"126":[2,134],"127":[2,134],"129":[2,134],"130":[2,134],"132":[2,134],"133":[2,134],"136":[2,134],"137":[2,134],"138":[2,134],"139":[2,134],"140":[2,134],"141":[2,134],"142":[2,134],"143":[2,134],"144":[2,134],"145":[2,134],"146":[2,134],"147":[2,134],"148":[2,134],"149":[2,134],"150":[2,134],"151":[2,134],"152":[2,134],"153":[2,134],"154":[2,134],"155":[2,134],"156":[2,134],"157":[2,134],"158":[2,134],"159":[2,134],"160":[2,134],"161":[2,134]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"113":239,"115":170},{"1":[2,104],"4":[2,104],"28":[2,104],"29":[2,104],"48":[2,104],"56":[2,104],"59":[2,104],"70":[2,104],"71":[2,104],"72":[2,104],"73":[2,104],"76":[2,104],"77":[2,104],"78":[2,104],"79":[2,104],"82":[2,104],"90":[2,104],"92":[2,104],"97":[2,104],"105":[2,104],"107":[2,104],"108":[2,104],"109":[2,104],"112":[2,104],"116":[2,104],"117":[2,104],"118":[2,104],"125":[2,104],"126":[2,104],"127":[2,104],"129":[2,104],"130":[2,104],"132":[2,104],"133":[2,104],"136":[2,104],"137":[2,104],"138":[2,104],"139":[2,104],"140":[2,104],"141":[2,104],"142":[2,104],"143":[2,104],"144":[2,104],"145":[2,104],"146":[2,104],"147":[2,104],"148":[2,104],"149":[2,104],"150":[2,104],"151":[2,104],"152":[2,104],"153":[2,104],"154":[2,104],"155":[2,104],"156":[2,104],"157":[2,104],"158":[2,104],"159":[2,104],"160":[2,104],"161":[2,104]},{"1":[2,63],"4":[2,63],"28":[2,63],"29":[2,63],"45":[2,63],"48":[2,63],"56":[2,63],"59":[2,63],"70":[2,63],"71":[2,63],"72":[2,63],"73":[2,63],"76":[2,63],"77":[2,63],"78":[2,63],"79":[2,63],"82":[2,63],"84":[2,63],"90":[2,63],"92":[2,63],"97":[2,63],"105":[2,63],"107":[2,63],"108":[2,63],"109":[2,63],"112":[2,63],"116":[2,63],"117":[2,63],"118":[2,63],"125":[2,63],"126":[2,63],"127":[2,63],"129":[2,63],"130":[2,63],"132":[2,63],"133":[2,63],"136":[2,63],"137":[2,63],"138":[2,63],"139":[2,63],"140":[2,63],"141":[2,63],"142":[2,63],"143":[2,63],"144":[2,63],"145":[2,63],"146":[2,63],"147":[2,63],"148":[2,63],"149":[2,63],"150":[2,63],"151":[2,63],"152":[2,63],"153":[2,63],"154":[2,63],"155":[2,63],"156":[2,63],"157":[2,63],"158":[2,63],"159":[2,63],"160":[2,63],"161":[2,63]},{"4":[2,116],"8":241,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,116],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,116],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"91":240,"92":[2,116],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"30":242,"31":[1,85]},{"30":243,"31":[1,85]},{"1":[2,77],"4":[2,77],"28":[2,77],"29":[2,77],"45":[2,77],"48":[2,77],"56":[2,77],"59":[2,77],"70":[2,77],"71":[2,77],"72":[2,77],"73":[2,77],"76":[2,77],"77":[2,77],"78":[2,77],"79":[2,77],"82":[2,77],"84":[2,77],"90":[2,77],"92":[2,77],"97":[2,77],"105":[2,77],"107":[2,77],"108":[2,77],"109":[2,77],"112":[2,77],"116":[2,77],"117":[2,77],"118":[2,77],"125":[2,77],"126":[2,77],"127":[2,77],"129":[2,77],"130":[2,77],"132":[2,77],"133":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77],"151":[2,77],"152":[2,77],"153":[2,77],"154":[2,77],"155":[2,77],"156":[2,77],"157":[2,77],"158":[2,77],"159":[2,77],"160":[2,77],"161":[2,77]},{"30":244,"31":[1,85]},{"1":[2,79],"4":[2,79],"28":[2,79],"29":[2,79],"45":[2,79],"48":[2,79],"56":[2,79],"59":[2,79],"70":[2,79],"71":[2,79],"72":[2,79],"73":[2,79],"76":[2,79],"77":[2,79],"78":[2,79],"79":[2,79],"82":[2,79],"84":[2,79],"90":[2,79],"92":[2,79],"97":[2,79],"105":[2,79],"107":[2,79],"108":[2,79],"109":[2,79],"112":[2,79],"116":[2,79],"117":[2,79],"118":[2,79],"125":[2,79],"126":[2,79],"127":[2,79],"129":[2,79],"130":[2,79],"132":[2,79],"133":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79],"151":[2,79],"152":[2,79],"153":[2,79],"154":[2,79],"155":[2,79],"156":[2,79],"157":[2,79],"158":[2,79],"159":[2,79],"160":[2,79],"161":[2,79]},{"1":[2,80],"4":[2,80],"28":[2,80],"29":[2,80],"45":[2,80],"48":[2,80],"56":[2,80],"59":[2,80],"70":[2,80],"71":[2,80],"72":[2,80],"73":[2,80],"76":[2,80],"77":[2,80],"78":[2,80],"79":[2,80],"82":[2,80],"84":[2,80],"90":[2,80],"92":[2,80],"97":[2,80],"105":[2,80],"107":[2,80],"108":[2,80],"109":[2,80],"112":[2,80],"116":[2,80],"117":[2,80],"118":[2,80],"125":[2,80],"126":[2,80],"127":[2,80],"129":[2,80],"130":[2,80],"132":[2,80],"133":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80],"140":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80],"151":[2,80],"152":[2,80],"153":[2,80],"154":[2,80],"155":[2,80],"156":[2,80],"157":[2,80],"158":[2,80],"159":[2,80],"160":[2,80],"161":[2,80]},{"8":245,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"74":246,"76":[1,247],"78":[1,143],"79":[1,144]},{"74":248,"76":[1,247],"78":[1,143],"79":[1,144]},{"8":249,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,105],"4":[2,105],"28":[2,105],"29":[2,105],"48":[2,105],"56":[2,105],"59":[2,105],"70":[2,105],"71":[2,105],"72":[2,105],"73":[2,105],"76":[2,105],"77":[2,105],"78":[2,105],"79":[2,105],"82":[2,105],"90":[2,105],"92":[2,105],"97":[2,105],"105":[2,105],"107":[2,105],"108":[2,105],"109":[2,105],"112":[2,105],"116":[2,105],"117":[2,105],"118":[2,105],"125":[2,105],"126":[2,105],"127":[2,105],"129":[2,105],"130":[2,105],"132":[2,105],"133":[2,105],"136":[2,105],"137":[2,105],"138":[2,105],"139":[2,105],"140":[2,105],"141":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"148":[2,105],"149":[2,105],"150":[2,105],"151":[2,105],"152":[2,105],"153":[2,105],"154":[2,105],"155":[2,105],"156":[2,105],"157":[2,105],"158":[2,105],"159":[2,105],"160":[2,105],"161":[2,105]},{"1":[2,64],"4":[2,64],"28":[2,64],"29":[2,64],"45":[2,64],"48":[2,64],"56":[2,64],"59":[2,64],"70":[2,64],"71":[2,64],"72":[2,64],"73":[2,64],"76":[2,64],"77":[2,64],"78":[2,64],"79":[2,64],"82":[2,64],"84":[2,64],"90":[2,64],"92":[2,64],"97":[2,64],"105":[2,64],"107":[2,64],"108":[2,64],"109":[2,64],"112":[2,64],"116":[2,64],"117":[2,64],"118":[2,64],"125":[2,64],"126":[2,64],"127":[2,64],"129":[2,64],"130":[2,64],"132":[2,64],"133":[2,64],"136":[2,64],"137":[2,64],"138":[2,64],"139":[2,64],"140":[2,64],"141":[2,64],"142":[2,64],"143":[2,64],"144":[2,64],"145":[2,64],"146":[2,64],"147":[2,64],"148":[2,64],"149":[2,64],"150":[2,64],"151":[2,64],"152":[2,64],"153":[2,64],"154":[2,64],"155":[2,64],"156":[2,64],"157":[2,64],"158":[2,64],"159":[2,64],"160":[2,64],"161":[2,64]},{"1":[2,101],"4":[2,101],"28":[2,101],"29":[2,101],"48":[2,101],"56":[2,101],"59":[2,101],"61":147,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,101],"78":[1,143],"79":[1,144],"82":[2,101],"89":146,"90":[1,135],"92":[2,101],"97":[2,101],"105":[2,101],"107":[2,101],"108":[2,101],"109":[2,101],"112":[2,101],"116":[2,101],"117":[2,101],"118":[2,101],"125":[2,101],"126":[2,101],"127":[2,101],"129":[2,101],"130":[2,101],"132":[2,101],"133":[2,101],"136":[2,101],"137":[2,101],"138":[2,101],"139":[2,101],"140":[2,101],"141":[2,101],"142":[2,101],"143":[2,101],"144":[2,101],"145":[2,101],"146":[2,101],"147":[2,101],"148":[2,101],"149":[2,101],"150":[2,101],"151":[2,101],"152":[2,101],"153":[2,101],"154":[2,101],"155":[2,101],"156":[2,101],"157":[2,101],"158":[2,101],"159":[2,101],"160":[2,101],"161":[2,101]},{"1":[2,102],"4":[2,102],"28":[2,102],"29":[2,102],"48":[2,102],"56":[2,102],"59":[2,102],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,102],"78":[1,143],"79":[1,144],"82":[2,102],"89":133,"90":[1,135],"92":[2,102],"97":[2,102],"105":[2,102],"107":[2,102],"108":[2,102],"109":[2,102],"112":[2,102],"116":[2,102],"117":[2,102],"118":[2,102],"125":[2,102],"126":[2,102],"127":[2,102],"129":[2,102],"130":[2,102],"132":[2,102],"133":[2,102],"136":[2,102],"137":[2,102],"138":[2,102],"139":[2,102],"140":[2,102],"141":[2,102],"142":[2,102],"143":[2,102],"144":[2,102],"145":[2,102],"146":[2,102],"147":[2,102],"148":[2,102],"149":[2,102],"150":[2,102],"151":[2,102],"152":[2,102],"153":[2,102],"154":[2,102],"155":[2,102],"156":[2,102],"157":[2,102],"158":[2,102],"159":[2,102],"160":[2,102],"161":[2,102]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"48":[2,69],"56":[2,69],"59":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"77":[2,69],"78":[2,69],"79":[2,69],"82":[2,69],"90":[2,69],"92":[2,69],"97":[2,69],"105":[2,69],"107":[2,69],"108":[2,69],"109":[2,69],"112":[2,69],"116":[2,69],"117":[2,69],"118":[2,69],"125":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"132":[2,69],"133":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69],"140":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69]},{"1":[2,66],"4":[2,66],"28":[2,66],"29":[2,66],"48":[2,66],"56":[2,66],"59":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,66],"78":[2,66],"79":[2,66],"82":[2,66],"90":[2,66],"92":[2,66],"97":[2,66],"105":[2,66],"107":[2,66],"108":[2,66],"109":[2,66],"112":[2,66],"116":[2,66],"117":[2,66],"118":[2,66],"125":[2,66],"126":[2,66],"127":[2,66],"129":[2,66],"130":[2,66],"132":[2,66],"133":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66]},{"51":[1,250],"56":[1,251]},{"51":[2,57],"56":[2,57],"59":[1,252]},{"51":[2,59],"56":[2,59],"59":[2,59]},{"1":[2,51],"4":[2,51],"28":[2,51],"29":[2,51],"48":[2,51],"56":[2,51],"59":[2,51],"77":[2,51],"82":[2,51],"92":[2,51],"97":[2,51],"105":[2,51],"107":[2,51],"108":[2,51],"109":[2,51],"112":[2,51],"116":[2,51],"117":[2,51],"118":[2,51],"125":[2,51],"126":[2,51],"127":[2,51],"129":[2,51],"130":[2,51],"132":[2,51],"133":[2,51],"136":[2,51],"137":[2,51],"138":[2,51],"139":[2,51],"140":[2,51],"141":[2,51],"142":[2,51],"143":[2,51],"144":[2,51],"145":[2,51],"146":[2,51],"147":[2,51],"148":[2,51],"149":[2,51],"150":[2,51],"151":[2,51],"152":[2,51],"153":[2,51],"154":[2,51],"155":[2,51],"156":[2,51],"157":[2,51],"158":[2,51],"159":[2,51],"160":[2,51],"161":[2,51]},{"1":[2,171],"4":[2,171],"28":[2,171],"29":[2,171],"48":[1,111],"56":[2,171],"59":[2,171],"77":[2,171],"82":[2,171],"92":[2,171],"97":[2,171],"105":[2,171],"106":126,"107":[2,171],"108":[2,171],"109":[2,171],"112":[2,171],"116":[2,171],"117":[2,171],"118":[2,171],"125":[2,171],"126":[2,171],"129":[2,171],"130":[2,171],"136":[2,171],"137":[2,171],"138":[2,171],"139":[2,171],"140":[2,171],"141":[2,171],"142":[2,171],"143":[2,171],"144":[2,171],"145":[2,171],"146":[2,171],"147":[2,171],"148":[2,171],"149":[2,171],"150":[2,171],"151":[2,171],"152":[2,171],"153":[2,171],"154":[2,171],"155":[2,171],"156":[2,171],"157":[2,171],"158":[2,171],"159":[2,171],"160":[2,171],"161":[2,171]},{"106":131,"107":[1,77],"109":[1,78],"112":[1,132],"125":[1,129],"126":[1,130]},{"1":[2,172],"4":[2,172],"28":[2,172],"29":[2,172],"48":[1,111],"56":[2,172],"59":[2,172],"77":[2,172],"82":[2,172],"92":[2,172],"97":[2,172],"105":[2,172],"106":126,"107":[2,172],"108":[2,172],"109":[2,172],"112":[2,172],"116":[2,172],"117":[2,172],"118":[2,172],"125":[2,172],"126":[2,172],"129":[2,172],"130":[2,172],"136":[2,172],"137":[2,172],"138":[2,172],"139":[2,172],"140":[2,172],"141":[2,172],"142":[2,172],"143":[2,172],"144":[2,172],"145":[2,172],"146":[2,172],"147":[2,172],"148":[2,172],"149":[2,172],"150":[2,172],"151":[2,172],"152":[2,172],"153":[2,172],"154":[2,172],"155":[2,172],"156":[2,172],"157":[2,172],"158":[2,172],"159":[2,172],"160":[2,172],"161":[2,172]},{"1":[2,173],"4":[2,173],"28":[2,173],"29":[2,173],"48":[1,111],"56":[2,173],"59":[2,173],"77":[2,173],"82":[2,173],"92":[2,173],"97":[2,173],"105":[2,173],"106":126,"107":[2,173],"108":[2,173],"109":[2,173],"112":[2,173],"116":[2,173],"117":[2,173],"118":[2,173],"125":[2,173],"126":[2,173],"129":[2,173],"130":[2,173],"136":[2,173],"137":[2,173],"138":[2,173],"139":[2,173],"140":[2,173],"141":[2,173],"142":[2,173],"143":[2,173],"144":[2,173],"145":[2,173],"146":[2,173],"147":[2,173],"148":[2,173],"149":[2,173],"150":[2,173],"151":[2,173],"152":[2,173],"153":[2,173],"154":[2,173],"155":[2,173],"156":[2,173],"157":[2,173],"158":[2,173],"159":[2,173],"160":[2,173],"161":[2,173]},{"1":[2,174],"4":[2,174],"28":[2,174],"29":[2,174],"48":[1,111],"56":[2,174],"59":[2,174],"77":[2,174],"82":[2,174],"92":[2,174],"97":[2,174],"105":[2,174],"106":126,"107":[2,174],"108":[2,174],"109":[2,174],"112":[2,174],"116":[2,174],"117":[2,174],"118":[2,174],"125":[2,174],"126":[2,174],"129":[2,174],"130":[2,174],"136":[2,174],"137":[2,174],"138":[2,174],"139":[2,174],"140":[2,174],"141":[2,174],"142":[2,174],"143":[2,174],"144":[2,174],"145":[2,174],"146":[2,174],"147":[2,174],"148":[2,174],"149":[2,174],"150":[2,174],"151":[2,174],"152":[2,174],"153":[2,174],"154":[2,174],"155":[2,174],"156":[2,174],"157":[2,174],"158":[2,174],"159":[2,174],"160":[2,174],"161":[2,174]},{"1":[2,175],"4":[2,175],"28":[2,175],"29":[2,175],"48":[1,111],"56":[2,175],"59":[2,175],"77":[2,175],"82":[2,175],"92":[2,175],"97":[2,175],"105":[2,175],"106":126,"107":[2,175],"108":[2,175],"109":[2,175],"112":[2,175],"116":[2,175],"117":[2,175],"118":[2,175],"125":[2,175],"126":[2,175],"129":[2,175],"130":[2,175],"136":[2,175],"137":[2,175],"138":[2,175],"139":[2,175],"140":[2,175],"141":[2,175],"142":[2,175],"143":[2,175],"144":[2,175],"145":[2,175],"146":[2,175],"147":[2,175],"148":[2,175],"149":[2,175],"150":[2,175],"151":[2,175],"152":[2,175],"153":[2,175],"154":[2,175],"155":[2,175],"156":[2,175],"157":[2,175],"158":[2,175],"159":[2,175],"160":[2,175],"161":[2,175]},{"1":[2,176],"4":[2,176],"28":[2,176],"29":[2,176],"48":[1,111],"56":[2,176],"59":[2,176],"77":[2,176],"82":[2,176],"92":[2,176],"97":[2,176],"105":[2,176],"106":126,"107":[2,176],"108":[2,176],"109":[2,176],"112":[2,176],"116":[2,176],"117":[2,176],"118":[2,176],"125":[2,176],"126":[2,176],"129":[2,176],"130":[2,176],"136":[2,176],"137":[2,176],"138":[2,176],"139":[2,176],"140":[2,176],"141":[2,176],"142":[2,176],"143":[2,176],"144":[2,176],"145":[2,176],"146":[2,176],"147":[2,176],"148":[2,176],"149":[2,176],"150":[2,176],"151":[2,176],"152":[2,176],"153":[2,176],"154":[2,176],"155":[2,176],"156":[2,176],"157":[2,176],"158":[2,176],"159":[2,176],"160":[2,176],"161":[2,176]},{"1":[2,177],"4":[2,177],"28":[2,177],"29":[2,177],"48":[1,111],"56":[2,177],"59":[2,177],"77":[2,177],"82":[2,177],"92":[2,177],"97":[2,177],"105":[2,177],"106":126,"107":[2,177],"108":[2,177],"109":[2,177],"112":[2,177],"116":[2,177],"117":[2,177],"118":[2,177],"125":[2,177],"126":[2,177],"129":[2,177],"130":[2,177],"136":[2,177],"137":[2,177],"138":[2,177],"139":[2,177],"140":[2,177],"141":[2,177],"142":[2,177],"143":[2,177],"144":[2,177],"145":[2,177],"146":[2,177],"147":[2,177],"148":[2,177],"149":[2,177],"150":[2,177],"151":[2,177],"152":[2,177],"153":[2,177],"154":[2,177],"155":[2,177],"156":[2,177],"157":[2,177],"158":[2,177],"159":[2,177],"160":[2,177],"161":[2,177]},{"1":[2,178],"4":[2,178],"28":[2,178],"29":[2,178],"48":[1,111],"56":[2,178],"59":[2,178],"77":[2,178],"82":[2,178],"92":[2,178],"97":[2,178],"105":[2,178],"106":126,"107":[2,178],"108":[2,178],"109":[2,178],"112":[2,178],"116":[2,178],"117":[2,178],"118":[2,178],"125":[2,178],"126":[2,178],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,178],"150":[2,178],"151":[2,178],"152":[2,178],"153":[2,178],"154":[2,178],"155":[2,178],"156":[2,178],"157":[2,178],"158":[2,178],"159":[2,178],"160":[2,178],"161":[1,120]},{"1":[2,179],"4":[2,179],"28":[2,179],"29":[2,179],"48":[1,111],"56":[2,179],"59":[2,179],"77":[2,179],"82":[2,179],"92":[2,179],"97":[2,179],"105":[2,179],"106":126,"107":[2,179],"108":[2,179],"109":[2,179],"112":[2,179],"116":[2,179],"117":[2,179],"118":[2,179],"125":[2,179],"126":[2,179],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,179],"150":[2,179],"151":[2,179],"152":[2,179],"153":[2,179],"154":[2,179],"155":[2,179],"156":[2,179],"157":[2,179],"158":[2,179],"159":[2,179],"160":[2,179],"161":[1,120]},{"6":254,"28":[1,6],"125":[1,253]},{"100":255,"101":[1,256],"102":[1,257]},{"1":[2,133],"4":[2,133],"28":[2,133],"29":[2,133],"48":[2,133],"56":[2,133],"59":[2,133],"77":[2,133],"82":[2,133],"92":[2,133],"97":[2,133],"105":[2,133],"107":[2,133],"108":[2,133],"109":[2,133],"112":[2,133],"116":[2,133],"117":[2,133],"118":[2,133],"125":[2,133],"126":[2,133],"127":[2,133],"129":[2,133],"130":[2,133],"132":[2,133],"133":[2,133],"136":[2,133],"137":[2,133],"138":[2,133],"139":[2,133],"140":[2,133],"141":[2,133],"142":[2,133],"143":[2,133],"144":[2,133],"145":[2,133],"146":[2,133],"147":[2,133],"148":[2,133],"149":[2,133],"150":[2,133],"151":[2,133],"152":[2,133],"153":[2,133],"154":[2,133],"155":[2,133],"156":[2,133],"157":[2,133],"158":[2,133],"159":[2,133],"160":[2,133],"161":[2,133]},{"114":258,"116":[1,259],"117":[1,260]},{"56":[1,261],"116":[2,145],"117":[2,145]},{"56":[2,142],"116":[2,142],"117":[2,142]},{"56":[2,143],"116":[2,143],"117":[2,143]},{"56":[2,144],"116":[2,144],"117":[2,144]},{"4":[2,116],"8":241,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,116],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,116],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"91":185,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,116],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"28":[1,262],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"120":263,"122":264,"123":[1,265]},{"14":266,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":151,"62":180,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"1":[2,90],"4":[2,90],"28":[1,268],"29":[2,90],"48":[2,90],"56":[2,90],"59":[2,90],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,90],"78":[2,66],"79":[2,66],"82":[2,90],"84":[1,267],"90":[2,66],"92":[2,90],"97":[2,90],"105":[2,90],"107":[2,90],"108":[2,90],"109":[2,90],"112":[2,90],"116":[2,90],"117":[2,90],"118":[2,90],"125":[2,90],"126":[2,90],"127":[2,90],"129":[2,90],"130":[2,90],"132":[2,90],"133":[2,90],"136":[2,90],"137":[2,90],"138":[2,90],"139":[2,90],"140":[2,90],"141":[2,90],"142":[2,90],"143":[2,90],"144":[2,90],"145":[2,90],"146":[2,90],"147":[2,90],"148":[2,90],"149":[2,90],"150":[2,90],"151":[2,90],"152":[2,90],"153":[2,90],"154":[2,90],"155":[2,90],"156":[2,90],"157":[2,90],"158":[2,90],"159":[2,90],"160":[2,90],"161":[2,90]},{"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"78":[1,143],"79":[1,144],"89":133,"90":[1,135]},{"61":147,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"78":[1,143],"79":[1,144],"89":146,"90":[1,135]},{"1":[2,47],"4":[2,47],"29":[2,47],"48":[1,111],"59":[1,128],"105":[2,47],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[2,47],"126":[2,47],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,127],"4":[2,127],"29":[2,127],"48":[1,111],"59":[1,128],"105":[2,127],"106":126,"107":[2,127],"109":[2,127],"112":[2,127],"116":[1,121],"117":[1,122],"125":[2,127],"126":[2,127],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"105":[1,269]},{"4":[2,117],"28":[2,117],"48":[1,111],"56":[2,117],"59":[1,270],"97":[2,117],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,54],"28":[2,54],"55":271,"56":[1,272],"97":[2,54]},{"1":[2,110],"4":[2,110],"28":[2,110],"29":[2,110],"45":[2,110],"48":[2,110],"56":[2,110],"59":[2,110],"70":[2,110],"71":[2,110],"72":[2,110],"73":[2,110],"76":[2,110],"77":[2,110],"78":[2,110],"79":[2,110],"82":[2,110],"84":[2,110],"90":[2,110],"92":[2,110],"97":[2,110],"105":[2,110],"107":[2,110],"108":[2,110],"109":[2,110],"112":[2,110],"116":[2,110],"117":[2,110],"118":[2,110],"125":[2,110],"126":[2,110],"127":[2,110],"129":[2,110],"130":[2,110],"132":[2,110],"133":[2,110],"136":[2,110],"137":[2,110],"138":[2,110],"139":[2,110],"140":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"147":[2,110],"148":[2,110],"149":[2,110],"150":[2,110],"151":[2,110],"152":[2,110],"153":[2,110],"154":[2,110],"155":[2,110],"156":[2,110],"157":[2,110],"158":[2,110],"159":[2,110],"160":[2,110],"161":[2,110]},{"1":[2,107],"4":[2,107],"28":[2,107],"29":[2,107],"48":[2,107],"56":[2,107],"59":[2,107],"77":[2,107],"82":[2,107],"92":[2,107],"97":[2,107],"105":[2,107],"107":[2,107],"108":[2,107],"109":[2,107],"112":[2,107],"116":[2,107],"117":[2,107],"118":[2,107],"125":[2,107],"126":[2,107],"127":[2,107],"129":[2,107],"130":[2,107],"132":[2,107],"133":[2,107],"136":[2,107],"137":[2,107],"138":[2,107],"139":[2,107],"140":[2,107],"141":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"148":[2,107],"149":[2,107],"150":[2,107],"151":[2,107],"152":[2,107],"153":[2,107],"154":[2,107],"155":[2,107],"156":[2,107],"157":[2,107],"158":[2,107],"159":[2,107],"160":[2,107],"161":[2,107]},{"6":273,"28":[1,6],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"6":274,"28":[1,6],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,129],"4":[2,129],"28":[2,129],"29":[2,129],"48":[1,111],"56":[2,129],"59":[1,128],"77":[2,129],"82":[2,129],"92":[2,129],"97":[2,129],"105":[2,129],"106":126,"107":[1,77],"108":[1,275],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,129],"125":[2,129],"126":[2,129],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,131],"4":[2,131],"28":[2,131],"29":[2,131],"48":[1,111],"56":[2,131],"59":[1,128],"77":[2,131],"82":[2,131],"92":[2,131],"97":[2,131],"105":[2,131],"106":126,"107":[1,77],"108":[1,276],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,131],"125":[2,131],"126":[2,131],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,137],"4":[2,137],"28":[2,137],"29":[2,137],"48":[2,137],"56":[2,137],"59":[2,137],"77":[2,137],"82":[2,137],"92":[2,137],"97":[2,137],"105":[2,137],"107":[2,137],"108":[2,137],"109":[2,137],"112":[2,137],"116":[2,137],"117":[2,137],"118":[2,137],"125":[2,137],"126":[2,137],"127":[2,137],"129":[2,137],"130":[2,137],"132":[2,137],"133":[2,137],"136":[2,137],"137":[2,137],"138":[2,137],"139":[2,137],"140":[2,137],"141":[2,137],"142":[2,137],"143":[2,137],"144":[2,137],"145":[2,137],"146":[2,137],"147":[2,137],"148":[2,137],"149":[2,137],"150":[2,137],"151":[2,137],"152":[2,137],"153":[2,137],"154":[2,137],"155":[2,137],"156":[2,137],"157":[2,137],"158":[2,137],"159":[2,137],"160":[2,137],"161":[2,137]},{"1":[2,138],"4":[2,138],"28":[2,138],"29":[2,138],"48":[1,111],"56":[2,138],"59":[1,128],"77":[2,138],"82":[2,138],"92":[2,138],"97":[2,138],"105":[2,138],"106":126,"107":[1,77],"108":[2,138],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,138],"125":[2,138],"126":[2,138],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,54],"28":[2,54],"55":277,"56":[1,278],"82":[2,54]},{"4":[2,86],"28":[2,86],"29":[2,86],"56":[2,86],"82":[2,86]},{"4":[2,43],"28":[2,43],"29":[2,43],"45":[1,279],"56":[2,43],"82":[2,43]},{"4":[2,44],"28":[2,44],"29":[2,44],"45":[1,280],"56":[2,44],"82":[2,44]},{"1":[2,6],"4":[2,6],"29":[2,6]},{"1":[2,28],"4":[2,28],"28":[2,28],"29":[2,28],"48":[2,28],"56":[2,28],"59":[2,28],"77":[2,28],"82":[2,28],"92":[2,28],"97":[2,28],"101":[2,28],"102":[2,28],"105":[2,28],"107":[2,28],"108":[2,28],"109":[2,28],"112":[2,28],"116":[2,28],"117":[2,28],"118":[2,28],"121":[2,28],"123":[2,28],"125":[2,28],"126":[2,28],"127":[2,28],"129":[2,28],"130":[2,28],"132":[2,28],"133":[2,28],"136":[2,28],"137":[2,28],"138":[2,28],"139":[2,28],"140":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"148":[2,28],"149":[2,28],"150":[2,28],"151":[2,28],"152":[2,28],"153":[2,28],"154":[2,28],"155":[2,28],"156":[2,28],"157":[2,28],"158":[2,28],"159":[2,28],"160":[2,28],"161":[2,28]},{"1":[2,182],"4":[2,182],"28":[2,182],"29":[2,182],"48":[1,111],"56":[2,182],"59":[2,182],"77":[2,182],"82":[2,182],"92":[2,182],"97":[2,182],"105":[2,182],"106":126,"107":[2,182],"108":[2,182],"109":[2,182],"112":[2,182],"116":[2,182],"117":[2,182],"118":[2,182],"125":[2,182],"126":[2,182],"127":[1,123],"129":[2,182],"130":[2,182],"132":[1,90],"133":[1,91],"136":[2,182],"137":[2,182],"138":[2,182],"139":[2,182],"140":[2,182],"141":[2,182],"142":[2,182],"143":[2,182],"144":[2,182],"145":[2,182],"146":[2,182],"147":[2,182],"148":[2,182],"149":[2,182],"150":[2,182],"151":[2,182],"152":[2,182],"153":[2,182],"154":[2,182],"155":[2,182],"156":[2,182],"157":[2,182],"158":[2,182],"159":[2,182],"160":[2,182],"161":[2,182]},{"1":[2,183],"4":[2,183],"28":[2,183],"29":[2,183],"48":[1,111],"56":[2,183],"59":[2,183],"77":[2,183],"82":[2,183],"92":[2,183],"97":[2,183],"105":[2,183],"106":126,"107":[2,183],"108":[2,183],"109":[2,183],"112":[2,183],"116":[2,183],"117":[2,183],"118":[2,183],"125":[2,183],"126":[2,183],"127":[1,123],"129":[2,183],"130":[2,183],"132":[1,90],"133":[1,91],"136":[2,183],"137":[2,183],"138":[2,183],"139":[2,183],"140":[2,183],"141":[2,183],"142":[2,183],"143":[2,183],"144":[2,183],"145":[2,183],"146":[2,183],"147":[2,183],"148":[2,183],"149":[2,183],"150":[2,183],"151":[2,183],"152":[2,183],"153":[2,183],"154":[2,183],"155":[2,183],"156":[2,183],"157":[2,183],"158":[2,183],"159":[2,183],"160":[2,183],"161":[2,183]},{"1":[2,184],"4":[2,184],"28":[2,184],"29":[2,184],"48":[1,111],"56":[2,184],"59":[2,184],"77":[2,184],"82":[2,184],"92":[2,184],"97":[2,184],"105":[2,184],"106":126,"107":[2,184],"108":[2,184],"109":[2,184],"112":[2,184],"116":[2,184],"117":[2,184],"118":[2,184],"125":[2,184],"126":[2,184],"127":[1,123],"129":[2,184],"130":[2,184],"132":[1,90],"133":[1,91],"136":[2,184],"137":[2,184],"138":[2,184],"139":[2,184],"140":[2,184],"141":[2,184],"142":[2,184],"143":[2,184],"144":[2,184],"145":[2,184],"146":[2,184],"147":[2,184],"148":[2,184],"149":[2,184],"150":[2,184],"151":[2,184],"152":[2,184],"153":[2,184],"154":[2,184],"155":[2,184],"156":[2,184],"157":[2,184],"158":[2,184],"159":[2,184],"160":[2,184],"161":[2,184]},{"1":[2,185],"4":[2,185],"28":[2,185],"29":[2,185],"48":[1,111],"56":[2,185],"59":[2,185],"77":[2,185],"82":[2,185],"92":[2,185],"97":[2,185],"105":[2,185],"106":126,"107":[2,185],"108":[2,185],"109":[2,185],"112":[2,185],"116":[2,185],"117":[2,185],"118":[2,185],"125":[2,185],"126":[2,185],"127":[1,123],"129":[2,185],"130":[2,185],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,185],"140":[2,185],"141":[2,185],"142":[2,185],"143":[2,185],"144":[2,185],"145":[2,185],"146":[2,185],"147":[2,185],"148":[2,185],"149":[2,185],"150":[2,185],"151":[2,185],"152":[2,185],"153":[2,185],"154":[2,185],"155":[2,185],"156":[2,185],"157":[2,185],"158":[2,185],"159":[2,185],"160":[2,185],"161":[2,185]},{"1":[2,186],"4":[2,186],"28":[2,186],"29":[2,186],"48":[1,111],"56":[2,186],"59":[2,186],"77":[2,186],"82":[2,186],"92":[2,186],"97":[2,186],"105":[2,186],"106":126,"107":[2,186],"108":[2,186],"109":[2,186],"112":[2,186],"116":[2,186],"117":[2,186],"118":[2,186],"125":[2,186],"126":[2,186],"127":[1,123],"129":[2,186],"130":[2,186],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,186],"140":[2,186],"141":[2,186],"142":[2,186],"143":[2,186],"144":[2,186],"145":[2,186],"146":[2,186],"147":[2,186],"148":[2,186],"149":[2,186],"150":[2,186],"151":[2,186],"152":[2,186],"153":[2,186],"154":[2,186],"155":[2,186],"156":[2,186],"157":[2,186],"158":[2,186],"159":[2,186],"160":[2,186],"161":[2,186]},{"1":[2,187],"4":[2,187],"28":[2,187],"29":[2,187],"48":[1,111],"56":[2,187],"59":[2,187],"77":[2,187],"82":[2,187],"92":[2,187],"97":[2,187],"105":[2,187],"106":126,"107":[2,187],"108":[2,187],"109":[2,187],"112":[2,187],"116":[2,187],"117":[2,187],"118":[2,187],"125":[2,187],"126":[2,187],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,187],"140":[2,187],"141":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"146":[2,187],"147":[2,187],"148":[2,187],"149":[2,187],"150":[2,187],"151":[2,187],"152":[2,187],"153":[2,187],"154":[2,187],"155":[2,187],"156":[2,187],"157":[2,187],"158":[2,187],"159":[2,187],"160":[2,187],"161":[2,187]},{"1":[2,188],"4":[2,188],"28":[2,188],"29":[2,188],"48":[1,111],"56":[2,188],"59":[2,188],"77":[2,188],"82":[2,188],"92":[2,188],"97":[2,188],"105":[2,188],"106":126,"107":[2,188],"108":[2,188],"109":[2,188],"112":[2,188],"116":[2,188],"117":[2,188],"118":[2,188],"125":[2,188],"126":[2,188],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,188],"140":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"147":[2,188],"148":[2,188],"149":[2,188],"150":[2,188],"151":[2,188],"152":[2,188],"153":[2,188],"154":[2,188],"155":[2,188],"156":[2,188],"157":[2,188],"158":[2,188],"159":[2,188],"160":[2,188],"161":[2,188]},{"1":[2,189],"4":[2,189],"28":[2,189],"29":[2,189],"48":[1,111],"56":[2,189],"59":[2,189],"77":[2,189],"82":[2,189],"92":[2,189],"97":[2,189],"105":[2,189],"106":126,"107":[2,189],"108":[2,189],"109":[2,189],"112":[2,189],"116":[2,189],"117":[2,189],"118":[2,189],"125":[2,189],"126":[2,189],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,189],"140":[2,189],"141":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"148":[2,189],"149":[2,189],"150":[2,189],"151":[2,189],"152":[2,189],"153":[2,189],"154":[2,189],"155":[2,189],"156":[2,189],"157":[2,189],"158":[2,189],"159":[2,189],"160":[2,189],"161":[2,189]},{"1":[2,190],"4":[2,190],"28":[2,190],"29":[2,190],"48":[1,111],"56":[2,190],"59":[2,190],"77":[2,190],"82":[2,190],"92":[2,190],"97":[2,190],"105":[2,190],"106":126,"107":[2,190],"108":[2,190],"109":[2,190],"112":[2,190],"116":[2,190],"117":[2,190],"118":[2,190],"125":[2,190],"126":[2,190],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"148":[2,190],"149":[2,190],"150":[2,190],"151":[2,190],"152":[2,190],"153":[2,190],"154":[2,190],"155":[2,190],"156":[2,190],"157":[2,190],"158":[2,190],"159":[2,190],"160":[2,190],"161":[2,190]},{"1":[2,191],"4":[2,191],"28":[2,191],"29":[2,191],"48":[1,111],"56":[2,191],"59":[2,191],"77":[2,191],"82":[2,191],"92":[2,191],"97":[2,191],"105":[2,191],"106":126,"107":[2,191],"108":[2,191],"109":[2,191],"112":[2,191],"116":[2,191],"117":[2,191],"118":[2,191],"125":[2,191],"126":[2,191],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"148":[2,191],"149":[2,191],"150":[2,191],"151":[2,191],"152":[2,191],"153":[2,191],"154":[2,191],"155":[2,191],"156":[2,191],"157":[2,191],"158":[2,191],"159":[2,191],"160":[2,191],"161":[2,191]},{"1":[2,192],"4":[2,192],"28":[2,192],"29":[2,192],"48":[1,111],"56":[2,192],"59":[2,192],"77":[2,192],"82":[2,192],"92":[2,192],"97":[2,192],"105":[2,192],"106":126,"107":[2,192],"108":[2,192],"109":[2,192],"112":[2,192],"116":[2,192],"117":[2,192],"118":[2,192],"125":[2,192],"126":[2,192],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[2,192],"143":[2,192],"144":[2,192],"145":[2,192],"146":[2,192],"147":[2,192],"148":[2,192],"149":[2,192],"150":[2,192],"151":[2,192],"152":[2,192],"153":[2,192],"154":[2,192],"155":[2,192],"156":[2,192],"157":[2,192],"158":[2,192],"159":[2,192],"160":[2,192],"161":[2,192]},{"1":[2,193],"4":[2,193],"28":[2,193],"29":[2,193],"48":[1,111],"56":[2,193],"59":[2,193],"77":[2,193],"82":[2,193],"92":[2,193],"97":[2,193],"105":[2,193],"106":126,"107":[2,193],"108":[2,193],"109":[2,193],"112":[2,193],"116":[2,193],"117":[2,193],"118":[2,193],"125":[2,193],"126":[2,193],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,193],"146":[2,193],"147":[2,193],"148":[2,193],"149":[2,193],"150":[2,193],"151":[2,193],"152":[2,193],"153":[2,193],"154":[2,193],"155":[2,193],"156":[2,193],"157":[2,193],"158":[2,193],"159":[2,193],"160":[2,193],"161":[2,193]},{"1":[2,194],"4":[2,194],"28":[2,194],"29":[2,194],"48":[1,111],"56":[2,194],"59":[2,194],"77":[2,194],"82":[2,194],"92":[2,194],"97":[2,194],"105":[2,194],"106":126,"107":[2,194],"108":[2,194],"109":[2,194],"112":[2,194],"116":[2,194],"117":[2,194],"118":[2,194],"125":[2,194],"126":[2,194],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,194],"146":[2,194],"147":[2,194],"148":[2,194],"149":[2,194],"150":[2,194],"151":[2,194],"152":[2,194],"153":[2,194],"154":[2,194],"155":[2,194],"156":[2,194],"157":[2,194],"158":[2,194],"159":[2,194],"160":[2,194],"161":[2,194]},{"1":[2,195],"4":[2,195],"28":[2,195],"29":[2,195],"48":[1,111],"56":[2,195],"59":[2,195],"77":[2,195],"82":[2,195],"92":[2,195],"97":[2,195],"105":[2,195],"106":126,"107":[2,195],"108":[2,195],"109":[2,195],"112":[2,195],"116":[2,195],"117":[2,195],"118":[2,195],"125":[2,195],"126":[2,195],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,195],"146":[2,195],"147":[2,195],"148":[2,195],"149":[2,195],"150":[2,195],"151":[2,195],"152":[2,195],"153":[2,195],"154":[2,195],"155":[2,195],"156":[2,195],"157":[2,195],"158":[2,195],"159":[2,195],"160":[2,195],"161":[2,195]},{"1":[2,196],"4":[2,196],"28":[2,196],"29":[2,196],"48":[1,111],"56":[2,196],"59":[2,196],"77":[2,196],"82":[2,196],"92":[2,196],"97":[2,196],"105":[2,196],"106":126,"107":[2,196],"108":[2,196],"109":[2,196],"112":[2,196],"116":[2,196],"117":[2,196],"118":[2,196],"125":[2,196],"126":[2,196],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,196],"146":[2,196],"147":[2,196],"148":[2,196],"149":[2,196],"150":[2,196],"151":[2,196],"152":[2,196],"153":[2,196],"154":[2,196],"155":[2,196],"156":[2,196],"157":[2,196],"158":[2,196],"159":[2,196],"160":[2,196],"161":[2,196]},{"1":[2,197],"4":[2,197],"28":[2,197],"29":[2,197],"48":[1,111],"56":[2,197],"59":[2,197],"77":[2,197],"82":[2,197],"92":[2,197],"97":[2,197],"105":[2,197],"106":126,"107":[2,197],"108":[2,197],"109":[2,197],"112":[2,197],"116":[2,197],"117":[2,197],"118":[2,197],"125":[2,197],"126":[2,197],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,197],"150":[2,197],"151":[2,197],"152":[2,197],"153":[2,197],"154":[2,197],"155":[2,197],"156":[2,197],"157":[2,197],"158":[2,197],"159":[2,197],"160":[2,197],"161":[1,120]},{"1":[2,198],"4":[2,198],"28":[2,198],"29":[2,198],"48":[1,111],"56":[2,198],"59":[2,198],"77":[2,198],"82":[2,198],"92":[2,198],"97":[2,198],"105":[2,198],"106":126,"107":[2,198],"108":[2,198],"109":[2,198],"112":[2,198],"116":[2,198],"117":[2,198],"118":[2,198],"125":[2,198],"126":[2,198],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,198],"150":[2,198],"151":[2,198],"152":[2,198],"153":[2,198],"154":[2,198],"155":[2,198],"156":[2,198],"157":[2,198],"158":[2,198],"159":[2,198],"160":[2,198],"161":[1,120]},{"1":[2,199],"4":[2,199],"28":[2,199],"29":[2,199],"48":[1,111],"56":[2,199],"59":[2,199],"77":[2,199],"82":[2,199],"92":[2,199],"97":[2,199],"105":[2,199],"106":126,"107":[2,199],"108":[2,199],"109":[2,199],"112":[2,199],"116":[2,199],"117":[2,199],"118":[2,199],"125":[2,199],"126":[2,199],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[2,199],"152":[2,199],"153":[2,199],"154":[2,199],"155":[2,199],"156":[2,199],"157":[2,199],"158":[2,199],"159":[2,199],"160":[2,199],"161":[1,120]},{"1":[2,200],"4":[2,200],"28":[2,200],"29":[2,200],"48":[1,111],"56":[2,200],"59":[2,200],"77":[2,200],"82":[2,200],"92":[2,200],"97":[2,200],"105":[2,200],"106":126,"107":[2,200],"108":[2,200],"109":[2,200],"112":[2,200],"116":[2,200],"117":[2,200],"118":[2,200],"125":[2,200],"126":[2,200],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[2,200],"152":[2,200],"153":[2,200],"154":[2,200],"155":[2,200],"156":[2,200],"157":[2,200],"158":[2,200],"159":[2,200],"160":[2,200],"161":[1,120]},{"1":[2,201],"4":[2,201],"28":[2,201],"29":[2,201],"48":[2,201],"56":[2,201],"59":[2,201],"77":[2,201],"82":[2,201],"92":[2,201],"97":[2,201],"105":[2,201],"106":126,"107":[2,201],"108":[2,201],"109":[2,201],"112":[2,201],"116":[2,201],"117":[2,201],"118":[2,201],"125":[2,201],"126":[2,201],"127":[2,201],"129":[2,201],"130":[2,201],"132":[2,201],"133":[2,201],"136":[2,201],"137":[2,201],"138":[2,201],"139":[2,201],"140":[2,201],"141":[2,201],"142":[2,201],"143":[2,201],"144":[2,201],"145":[2,201],"146":[2,201],"147":[2,201],"148":[2,201],"149":[2,201],"150":[2,201],"151":[2,201],"152":[2,201],"153":[2,201],"154":[2,201],"155":[2,201],"156":[2,201],"157":[2,201],"158":[2,201],"159":[2,201],"160":[2,201],"161":[2,201]},{"1":[2,202],"4":[2,202],"28":[2,202],"29":[2,202],"48":[1,111],"56":[2,202],"59":[2,202],"77":[2,202],"82":[2,202],"92":[2,202],"97":[2,202],"105":[2,202],"106":126,"107":[2,202],"108":[2,202],"109":[2,202],"112":[2,202],"116":[2,202],"117":[2,202],"118":[2,202],"125":[2,202],"126":[2,202],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,203],"4":[2,203],"28":[2,203],"29":[2,203],"48":[1,111],"56":[2,203],"59":[2,203],"77":[2,203],"82":[2,203],"92":[2,203],"97":[2,203],"105":[2,203],"106":126,"107":[2,203],"108":[2,203],"109":[2,203],"112":[2,203],"116":[2,203],"117":[2,203],"118":[2,203],"125":[2,203],"126":[2,203],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,204],"4":[2,204],"28":[2,204],"29":[2,204],"48":[1,111],"56":[2,204],"59":[2,204],"77":[2,204],"82":[2,204],"92":[2,204],"97":[2,204],"105":[2,204],"106":126,"107":[2,204],"108":[2,204],"109":[2,204],"112":[2,204],"116":[2,204],"117":[2,204],"118":[2,204],"125":[2,204],"126":[2,204],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,205],"4":[2,205],"28":[2,205],"29":[2,205],"48":[1,111],"56":[2,205],"59":[2,205],"77":[2,205],"82":[2,205],"92":[2,205],"97":[2,205],"105":[2,205],"106":126,"107":[2,205],"108":[2,205],"109":[2,205],"112":[2,205],"116":[2,205],"117":[2,205],"118":[2,205],"125":[2,205],"126":[2,205],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,206],"4":[2,206],"28":[2,206],"29":[2,206],"48":[1,111],"56":[2,206],"59":[2,206],"77":[2,206],"82":[2,206],"92":[2,206],"97":[2,206],"105":[2,206],"106":126,"107":[2,206],"108":[2,206],"109":[2,206],"112":[2,206],"116":[2,206],"117":[2,206],"118":[2,206],"125":[2,206],"126":[2,206],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,207],"4":[2,207],"28":[2,207],"29":[2,207],"48":[1,111],"56":[2,207],"59":[2,207],"77":[2,207],"82":[2,207],"92":[2,207],"97":[2,207],"105":[2,207],"106":126,"107":[2,207],"108":[2,207],"109":[2,207],"112":[2,207],"116":[2,207],"117":[2,207],"118":[2,207],"125":[2,207],"126":[2,207],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,208],"4":[2,208],"28":[2,208],"29":[2,208],"48":[1,111],"56":[2,208],"59":[2,208],"77":[2,208],"82":[2,208],"92":[2,208],"97":[2,208],"105":[2,208],"106":126,"107":[2,208],"108":[2,208],"109":[2,208],"112":[2,208],"116":[2,208],"117":[2,208],"118":[2,208],"125":[2,208],"126":[2,208],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,209],"4":[2,209],"28":[2,209],"29":[2,209],"48":[1,111],"56":[2,209],"59":[2,209],"77":[2,209],"82":[2,209],"92":[2,209],"97":[2,209],"105":[2,209],"106":126,"107":[2,209],"108":[2,209],"109":[2,209],"112":[2,209],"116":[2,209],"117":[2,209],"118":[2,209],"125":[2,209],"126":[2,209],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,210],"4":[2,210],"28":[2,210],"29":[2,210],"48":[1,111],"56":[2,210],"59":[2,210],"77":[2,210],"82":[2,210],"92":[2,210],"97":[2,210],"105":[2,210],"106":126,"107":[2,210],"108":[2,210],"109":[2,210],"112":[2,210],"116":[2,210],"117":[2,210],"118":[2,210],"125":[2,210],"126":[2,210],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,210],"150":[2,210],"151":[2,210],"152":[2,210],"153":[2,210],"154":[2,210],"155":[2,210],"156":[2,210],"157":[2,210],"158":[2,210],"159":[2,210],"160":[2,210],"161":[1,120]},{"1":[2,211],"4":[2,211],"28":[2,211],"29":[2,211],"48":[1,111],"56":[2,211],"59":[1,128],"77":[2,211],"82":[2,211],"92":[2,211],"97":[2,211],"105":[2,211],"106":126,"107":[2,211],"108":[2,211],"109":[2,211],"112":[2,211],"116":[1,121],"117":[1,122],"118":[2,211],"125":[2,211],"126":[2,211],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,212],"4":[2,212],"28":[2,212],"29":[2,212],"48":[1,111],"56":[2,212],"59":[1,128],"77":[2,212],"82":[2,212],"92":[2,212],"97":[2,212],"105":[2,212],"106":126,"107":[2,212],"108":[2,212],"109":[2,212],"112":[2,212],"116":[1,121],"117":[1,122],"118":[2,212],"125":[2,212],"126":[2,212],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"8":281,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":282,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,168],"4":[2,168],"28":[2,168],"29":[2,168],"48":[1,111],"56":[2,168],"59":[1,128],"77":[2,168],"82":[2,168],"92":[2,168],"97":[2,168],"105":[2,168],"106":126,"107":[1,77],"108":[2,168],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,168],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,170],"4":[2,170],"28":[2,170],"29":[2,170],"48":[1,111],"56":[2,170],"59":[1,128],"77":[2,170],"82":[2,170],"92":[2,170],"97":[2,170],"105":[2,170],"106":126,"107":[1,77],"108":[2,170],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,170],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"114":283,"116":[1,259],"117":[1,260]},{"59":[1,284]},{"1":[2,167],"4":[2,167],"28":[2,167],"29":[2,167],"48":[1,111],"56":[2,167],"59":[1,128],"77":[2,167],"82":[2,167],"92":[2,167],"97":[2,167],"105":[2,167],"106":126,"107":[1,77],"108":[2,167],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,167],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,169],"4":[2,169],"28":[2,169],"29":[2,169],"48":[1,111],"56":[2,169],"59":[1,128],"77":[2,169],"82":[2,169],"92":[2,169],"97":[2,169],"105":[2,169],"106":126,"107":[1,77],"108":[2,169],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,169],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"114":285,"116":[1,259],"117":[1,260]},{"4":[2,54],"28":[2,54],"55":286,"56":[1,272],"92":[2,54]},{"4":[2,117],"28":[2,117],"29":[2,117],"48":[1,111],"56":[2,117],"59":[1,128],"92":[2,117],"97":[2,117],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,75],"4":[2,75],"28":[2,75],"29":[2,75],"45":[2,75],"48":[2,75],"56":[2,75],"59":[2,75],"70":[2,75],"71":[2,75],"72":[2,75],"73":[2,75],"76":[2,75],"77":[2,75],"78":[2,75],"79":[2,75],"82":[2,75],"84":[2,75],"90":[2,75],"92":[2,75],"97":[2,75],"105":[2,75],"107":[2,75],"108":[2,75],"109":[2,75],"112":[2,75],"116":[2,75],"117":[2,75],"118":[2,75],"125":[2,75],"126":[2,75],"127":[2,75],"129":[2,75],"130":[2,75],"132":[2,75],"133":[2,75],"136":[2,75],"137":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75]},{"1":[2,76],"4":[2,76],"28":[2,76],"29":[2,76],"45":[2,76],"48":[2,76],"56":[2,76],"59":[2,76],"70":[2,76],"71":[2,76],"72":[2,76],"73":[2,76],"76":[2,76],"77":[2,76],"78":[2,76],"79":[2,76],"82":[2,76],"84":[2,76],"90":[2,76],"92":[2,76],"97":[2,76],"105":[2,76],"107":[2,76],"108":[2,76],"109":[2,76],"112":[2,76],"116":[2,76],"117":[2,76],"118":[2,76],"125":[2,76],"126":[2,76],"127":[2,76],"129":[2,76],"130":[2,76],"132":[2,76],"133":[2,76],"136":[2,76],"137":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76]},{"1":[2,78],"4":[2,78],"28":[2,78],"29":[2,78],"45":[2,78],"48":[2,78],"56":[2,78],"59":[2,78],"70":[2,78],"71":[2,78],"72":[2,78],"73":[2,78],"76":[2,78],"77":[2,78],"78":[2,78],"79":[2,78],"82":[2,78],"84":[2,78],"90":[2,78],"92":[2,78],"97":[2,78],"105":[2,78],"107":[2,78],"108":[2,78],"109":[2,78],"112":[2,78],"116":[2,78],"117":[2,78],"118":[2,78],"125":[2,78],"126":[2,78],"127":[2,78],"129":[2,78],"130":[2,78],"132":[2,78],"133":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78],"151":[2,78],"152":[2,78],"153":[2,78],"154":[2,78],"155":[2,78],"156":[2,78],"157":[2,78],"158":[2,78],"159":[2,78],"160":[2,78],"161":[2,78]},{"48":[1,111],"59":[1,288],"77":[1,287],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,82],"4":[2,82],"28":[2,82],"29":[2,82],"45":[2,82],"48":[2,82],"56":[2,82],"59":[2,82],"70":[2,82],"71":[2,82],"72":[2,82],"73":[2,82],"76":[2,82],"77":[2,82],"78":[2,82],"79":[2,82],"82":[2,82],"84":[2,82],"90":[2,82],"92":[2,82],"97":[2,82],"105":[2,82],"107":[2,82],"108":[2,82],"109":[2,82],"112":[2,82],"116":[2,82],"117":[2,82],"118":[2,82],"125":[2,82],"126":[2,82],"127":[2,82],"129":[2,82],"130":[2,82],"132":[2,82],"133":[2,82],"136":[2,82],"137":[2,82],"138":[2,82],"139":[2,82],"140":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82],"151":[2,82],"152":[2,82],"153":[2,82],"154":[2,82],"155":[2,82],"156":[2,82],"157":[2,82],"158":[2,82],"159":[2,82],"160":[2,82],"161":[2,82]},{"8":289,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,83],"4":[2,83],"28":[2,83],"29":[2,83],"45":[2,83],"48":[2,83],"56":[2,83],"59":[2,83],"70":[2,83],"71":[2,83],"72":[2,83],"73":[2,83],"76":[2,83],"77":[2,83],"78":[2,83],"79":[2,83],"82":[2,83],"84":[2,83],"90":[2,83],"92":[2,83],"97":[2,83],"105":[2,83],"107":[2,83],"108":[2,83],"109":[2,83],"112":[2,83],"116":[2,83],"117":[2,83],"118":[2,83],"125":[2,83],"126":[2,83],"127":[2,83],"129":[2,83],"130":[2,83],"132":[2,83],"133":[2,83],"136":[2,83],"137":[2,83],"138":[2,83],"139":[2,83],"140":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83],"151":[2,83],"152":[2,83],"153":[2,83],"154":[2,83],"155":[2,83],"156":[2,83],"157":[2,83],"158":[2,83],"159":[2,83],"160":[2,83],"161":[2,83]},{"1":[2,42],"4":[2,42],"28":[2,42],"29":[2,42],"48":[1,111],"56":[2,42],"59":[1,128],"77":[2,42],"82":[2,42],"92":[2,42],"97":[2,42],"105":[2,42],"106":126,"107":[1,77],"108":[2,42],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,42],"125":[2,42],"126":[2,42],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"52":290,"53":[1,73],"54":[1,74]},{"57":291,"58":[1,154]},{"59":[1,292]},{"8":293,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,165],"4":[2,165],"28":[2,165],"29":[2,165],"48":[2,165],"56":[2,165],"59":[2,165],"77":[2,165],"82":[2,165],"92":[2,165],"97":[2,165],"105":[2,165],"107":[2,165],"108":[2,165],"109":[2,165],"112":[2,165],"116":[2,165],"117":[2,165],"118":[2,165],"121":[2,165],"125":[2,165],"126":[2,165],"127":[2,165],"129":[2,165],"130":[2,165],"132":[2,165],"133":[2,165],"136":[2,165],"137":[2,165],"138":[2,165],"139":[2,165],"140":[2,165],"141":[2,165],"142":[2,165],"143":[2,165],"144":[2,165],"145":[2,165],"146":[2,165],"147":[2,165],"148":[2,165],"149":[2,165],"150":[2,165],"151":[2,165],"152":[2,165],"153":[2,165],"154":[2,165],"155":[2,165],"156":[2,165],"157":[2,165],"158":[2,165],"159":[2,165],"160":[2,165],"161":[2,165]},{"1":[2,123],"4":[2,123],"28":[2,123],"29":[2,123],"48":[2,123],"56":[2,123],"59":[2,123],"77":[2,123],"82":[2,123],"92":[2,123],"97":[2,123],"101":[1,294],"105":[2,123],"107":[2,123],"108":[2,123],"109":[2,123],"112":[2,123],"116":[2,123],"117":[2,123],"118":[2,123],"125":[2,123],"126":[2,123],"127":[2,123],"129":[2,123],"130":[2,123],"132":[2,123],"133":[2,123],"136":[2,123],"137":[2,123],"138":[2,123],"139":[2,123],"140":[2,123],"141":[2,123],"142":[2,123],"143":[2,123],"144":[2,123],"145":[2,123],"146":[2,123],"147":[2,123],"148":[2,123],"149":[2,123],"150":[2,123],"151":[2,123],"152":[2,123],"153":[2,123],"154":[2,123],"155":[2,123],"156":[2,123],"157":[2,123],"158":[2,123],"159":[2,123],"160":[2,123],"161":[2,123]},{"6":295,"28":[1,6]},{"30":296,"31":[1,85]},{"6":297,"28":[1,6]},{"8":298,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":299,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"115":300},{"120":301,"122":264,"123":[1,265]},{"29":[1,302],"121":[1,303],"122":304,"123":[1,265]},{"29":[2,158],"121":[2,158],"123":[2,158]},{"8":306,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"98":305,"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,103],"4":[2,103],"28":[2,103],"29":[2,103],"48":[2,103],"56":[2,103],"59":[2,103],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,103],"78":[1,143],"79":[1,144],"82":[2,103],"89":133,"90":[1,135],"92":[2,103],"97":[2,103],"105":[2,103],"107":[2,103],"108":[2,103],"109":[2,103],"112":[2,103],"116":[2,103],"117":[2,103],"118":[2,103],"125":[2,103],"126":[2,103],"127":[2,103],"129":[2,103],"130":[2,103],"132":[2,103],"133":[2,103],"136":[2,103],"137":[2,103],"138":[2,103],"139":[2,103],"140":[2,103],"141":[2,103],"142":[2,103],"143":[2,103],"144":[2,103],"145":[2,103],"146":[2,103],"147":[2,103],"148":[2,103],"149":[2,103],"150":[2,103],"151":[2,103],"152":[2,103],"153":[2,103],"154":[2,103],"155":[2,103],"156":[2,103],"157":[2,103],"158":[2,103],"159":[2,103],"160":[2,103],"161":[2,103]},{"14":307,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":151,"62":180,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"4":[2,96],"29":[2,96],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":310,"63":311,"85":308,"86":309,"95":[1,312]},{"1":[2,128],"4":[2,128],"28":[2,128],"29":[2,128],"48":[2,128],"56":[2,128],"59":[2,128],"70":[2,128],"71":[2,128],"72":[2,128],"73":[2,128],"76":[2,128],"77":[2,128],"78":[2,128],"79":[2,128],"82":[2,128],"90":[2,128],"92":[2,128],"97":[2,128],"105":[2,128],"107":[2,128],"108":[2,128],"109":[2,128],"112":[2,128],"116":[2,128],"117":[2,128],"118":[2,128],"125":[2,128],"126":[2,128],"127":[2,128],"129":[2,128],"130":[2,128],"132":[2,128],"133":[2,128],"136":[2,128],"137":[2,128],"138":[2,128],"139":[2,128],"140":[2,128],"141":[2,128],"142":[2,128],"143":[2,128],"144":[2,128],"145":[2,128],"146":[2,128],"147":[2,128],"148":[2,128],"149":[2,128],"150":[2,128],"151":[2,128],"152":[2,128],"153":[2,128],"154":[2,128],"155":[2,128],"156":[2,128],"157":[2,128],"158":[2,128],"159":[2,128],"160":[2,128],"161":[2,128]},{"59":[1,313]},{"4":[1,315],"28":[1,316],"97":[1,314]},{"4":[2,55],"8":317,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,55],"29":[2,55],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"92":[2,55],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,55],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,162],"4":[2,162],"28":[2,162],"29":[2,162],"48":[2,162],"56":[2,162],"59":[2,162],"77":[2,162],"82":[2,162],"92":[2,162],"97":[2,162],"105":[2,162],"107":[2,162],"108":[2,162],"109":[2,162],"112":[2,162],"116":[2,162],"117":[2,162],"118":[2,162],"121":[2,162],"125":[2,162],"126":[2,162],"127":[2,162],"129":[2,162],"130":[2,162],"132":[2,162],"133":[2,162],"136":[2,162],"137":[2,162],"138":[2,162],"139":[2,162],"140":[2,162],"141":[2,162],"142":[2,162],"143":[2,162],"144":[2,162],"145":[2,162],"146":[2,162],"147":[2,162],"148":[2,162],"149":[2,162],"150":[2,162],"151":[2,162],"152":[2,162],"153":[2,162],"154":[2,162],"155":[2,162],"156":[2,162],"157":[2,162],"158":[2,162],"159":[2,162],"160":[2,162],"161":[2,162]},{"1":[2,163],"4":[2,163],"28":[2,163],"29":[2,163],"48":[2,163],"56":[2,163],"59":[2,163],"77":[2,163],"82":[2,163],"92":[2,163],"97":[2,163],"105":[2,163],"107":[2,163],"108":[2,163],"109":[2,163],"112":[2,163],"116":[2,163],"117":[2,163],"118":[2,163],"121":[2,163],"125":[2,163],"126":[2,163],"127":[2,163],"129":[2,163],"130":[2,163],"132":[2,163],"133":[2,163],"136":[2,163],"137":[2,163],"138":[2,163],"139":[2,163],"140":[2,163],"141":[2,163],"142":[2,163],"143":[2,163],"144":[2,163],"145":[2,163],"146":[2,163],"147":[2,163],"148":[2,163],"149":[2,163],"150":[2,163],"151":[2,163],"152":[2,163],"153":[2,163],"154":[2,163],"155":[2,163],"156":[2,163],"157":[2,163],"158":[2,163],"159":[2,163],"160":[2,163],"161":[2,163]},{"8":318,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":319,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[1,321],"28":[1,322],"82":[1,320]},{"4":[2,55],"28":[2,55],"29":[2,55],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":323,"82":[2,55]},{"8":324,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":325,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,213],"4":[2,213],"28":[2,213],"29":[2,213],"48":[1,111],"56":[2,213],"59":[2,213],"77":[2,213],"82":[2,213],"92":[2,213],"97":[2,213],"105":[2,213],"106":126,"107":[2,213],"108":[2,213],"109":[2,213],"112":[2,213],"116":[2,213],"117":[2,213],"118":[2,213],"125":[2,213],"126":[2,213],"129":[2,213],"130":[2,213],"136":[2,213],"137":[2,213],"138":[2,213],"139":[2,213],"140":[2,213],"141":[2,213],"142":[2,213],"143":[2,213],"144":[2,213],"145":[2,213],"146":[2,213],"147":[2,213],"148":[2,213],"149":[2,213],"150":[2,213],"151":[2,213],"152":[2,213],"153":[2,213],"154":[2,213],"155":[2,213],"156":[2,213],"157":[2,213],"158":[2,213],"159":[2,213],"160":[2,213],"161":[2,213]},{"1":[2,214],"4":[2,214],"28":[2,214],"29":[2,214],"48":[1,111],"56":[2,214],"59":[2,214],"77":[2,214],"82":[2,214],"92":[2,214],"97":[2,214],"105":[2,214],"106":126,"107":[2,214],"108":[2,214],"109":[2,214],"112":[2,214],"116":[2,214],"117":[2,214],"118":[2,214],"125":[2,214],"126":[2,214],"129":[2,214],"130":[2,214],"136":[2,214],"137":[2,214],"138":[2,214],"139":[2,214],"140":[2,214],"141":[2,214],"142":[2,214],"143":[2,214],"144":[2,214],"145":[2,214],"146":[2,214],"147":[2,214],"148":[2,214],"149":[2,214],"150":[2,214],"151":[2,214],"152":[2,214],"153":[2,214],"154":[2,214],"155":[2,214],"156":[2,214],"157":[2,214],"158":[2,214],"159":[2,214],"160":[2,214],"161":[2,214]},{"1":[2,140],"4":[2,140],"28":[2,140],"29":[2,140],"48":[2,140],"56":[2,140],"59":[2,140],"77":[2,140],"82":[2,140],"92":[2,140],"97":[2,140],"105":[2,140],"107":[2,140],"108":[2,140],"109":[2,140],"112":[2,140],"116":[2,140],"117":[2,140],"118":[2,140],"125":[2,140],"126":[2,140],"127":[2,140],"129":[2,140],"130":[2,140],"132":[2,140],"133":[2,140],"136":[2,140],"137":[2,140],"138":[2,140],"139":[2,140],"140":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140],"148":[2,140],"149":[2,140],"150":[2,140],"151":[2,140],"152":[2,140],"153":[2,140],"154":[2,140],"155":[2,140],"156":[2,140],"157":[2,140],"158":[2,140],"159":[2,140],"160":[2,140],"161":[2,140]},{"1":[2,61],"4":[2,61],"28":[2,61],"29":[2,61],"48":[2,61],"56":[2,61],"59":[2,61],"77":[2,61],"82":[2,61],"92":[2,61],"97":[2,61],"105":[2,61],"107":[2,61],"108":[2,61],"109":[2,61],"112":[2,61],"116":[2,61],"117":[2,61],"118":[2,61],"125":[2,61],"126":[2,61],"127":[2,61],"129":[2,61],"130":[2,61],"132":[2,61],"133":[2,61],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61],"161":[2,61]},{"1":[2,139],"4":[2,139],"28":[2,139],"29":[2,139],"48":[2,139],"56":[2,139],"59":[2,139],"77":[2,139],"82":[2,139],"92":[2,139],"97":[2,139],"105":[2,139],"107":[2,139],"108":[2,139],"109":[2,139],"112":[2,139],"116":[2,139],"117":[2,139],"118":[2,139],"125":[2,139],"126":[2,139],"127":[2,139],"129":[2,139],"130":[2,139],"132":[2,139],"133":[2,139],"136":[2,139],"137":[2,139],"138":[2,139],"139":[2,139],"140":[2,139],"141":[2,139],"142":[2,139],"143":[2,139],"144":[2,139],"145":[2,139],"146":[2,139],"147":[2,139],"148":[2,139],"149":[2,139],"150":[2,139],"151":[2,139],"152":[2,139],"153":[2,139],"154":[2,139],"155":[2,139],"156":[2,139],"157":[2,139],"158":[2,139],"159":[2,139],"160":[2,139],"161":[2,139]},{"4":[1,315],"28":[1,316],"92":[1,326]},{"1":[2,81],"4":[2,81],"28":[2,81],"29":[2,81],"45":[2,81],"48":[2,81],"56":[2,81],"59":[2,81],"70":[2,81],"71":[2,81],"72":[2,81],"73":[2,81],"76":[2,81],"77":[2,81],"78":[2,81],"79":[2,81],"82":[2,81],"84":[2,81],"90":[2,81],"92":[2,81],"97":[2,81],"105":[2,81],"107":[2,81],"108":[2,81],"109":[2,81],"112":[2,81],"116":[2,81],"117":[2,81],"118":[2,81],"125":[2,81],"126":[2,81],"127":[2,81],"129":[2,81],"130":[2,81],"132":[2,81],"133":[2,81],"136":[2,81],"137":[2,81],"138":[2,81],"139":[2,81],"140":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81],"151":[2,81],"152":[2,81],"153":[2,81],"154":[2,81],"155":[2,81],"156":[2,81],"157":[2,81],"158":[2,81],"159":[2,81],"160":[2,81],"161":[2,81]},{"59":[1,327]},{"48":[1,111],"59":[1,128],"77":[1,287],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"6":328,"28":[1,6]},{"51":[2,58],"56":[2,58],"59":[1,252]},{"59":[1,329]},{"6":330,"28":[1,6],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"6":331,"28":[1,6]},{"1":[2,124],"4":[2,124],"28":[2,124],"29":[2,124],"48":[2,124],"56":[2,124],"59":[2,124],"77":[2,124],"82":[2,124],"92":[2,124],"97":[2,124],"105":[2,124],"107":[2,124],"108":[2,124],"109":[2,124],"112":[2,124],"116":[2,124],"117":[2,124],"118":[2,124],"125":[2,124],"126":[2,124],"127":[2,124],"129":[2,124],"130":[2,124],"132":[2,124],"133":[2,124],"136":[2,124],"137":[2,124],"138":[2,124],"139":[2,124],"140":[2,124],"141":[2,124],"142":[2,124],"143":[2,124],"144":[2,124],"145":[2,124],"146":[2,124],"147":[2,124],"148":[2,124],"149":[2,124],"150":[2,124],"151":[2,124],"152":[2,124],"153":[2,124],"154":[2,124],"155":[2,124],"156":[2,124],"157":[2,124],"158":[2,124],"159":[2,124],"160":[2,124],"161":[2,124]},{"6":332,"28":[1,6]},{"1":[2,141],"4":[2,141],"28":[2,141],"29":[2,141],"48":[2,141],"56":[2,141],"59":[2,141],"77":[2,141],"82":[2,141],"92":[2,141],"97":[2,141],"105":[2,141],"107":[2,141],"108":[2,141],"109":[2,141],"112":[2,141],"116":[2,141],"117":[2,141],"118":[2,141],"125":[2,141],"126":[2,141],"127":[2,141],"129":[2,141],"130":[2,141],"132":[2,141],"133":[2,141],"136":[2,141],"137":[2,141],"138":[2,141],"139":[2,141],"140":[2,141],"141":[2,141],"142":[2,141],"143":[2,141],"144":[2,141],"145":[2,141],"146":[2,141],"147":[2,141],"148":[2,141],"149":[2,141],"150":[2,141],"151":[2,141],"152":[2,141],"153":[2,141],"154":[2,141],"155":[2,141],"156":[2,141],"157":[2,141],"158":[2,141],"159":[2,141],"160":[2,141],"161":[2,141]},{"1":[2,147],"4":[2,147],"28":[2,147],"29":[2,147],"48":[1,111],"56":[2,147],"59":[1,128],"77":[2,147],"82":[2,147],"92":[2,147],"97":[2,147],"105":[2,147],"106":126,"107":[2,147],"108":[1,333],"109":[2,147],"112":[2,147],"116":[1,121],"117":[1,122],"118":[1,334],"125":[2,147],"126":[2,147],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,148],"4":[2,148],"28":[2,148],"29":[2,148],"48":[1,111],"56":[2,148],"59":[1,128],"77":[2,148],"82":[2,148],"92":[2,148],"97":[2,148],"105":[2,148],"106":126,"107":[2,148],"108":[1,335],"109":[2,148],"112":[2,148],"116":[1,121],"117":[1,122],"118":[2,148],"125":[2,148],"126":[2,148],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"116":[2,146],"117":[2,146]},{"29":[1,336],"121":[1,337],"122":304,"123":[1,265]},{"1":[2,156],"4":[2,156],"28":[2,156],"29":[2,156],"48":[2,156],"56":[2,156],"59":[2,156],"77":[2,156],"82":[2,156],"92":[2,156],"97":[2,156],"105":[2,156],"107":[2,156],"108":[2,156],"109":[2,156],"112":[2,156],"116":[2,156],"117":[2,156],"118":[2,156],"125":[2,156],"126":[2,156],"127":[2,156],"129":[2,156],"130":[2,156],"132":[2,156],"133":[2,156],"136":[2,156],"137":[2,156],"138":[2,156],"139":[2,156],"140":[2,156],"141":[2,156],"142":[2,156],"143":[2,156],"144":[2,156],"145":[2,156],"146":[2,156],"147":[2,156],"148":[2,156],"149":[2,156],"150":[2,156],"151":[2,156],"152":[2,156],"153":[2,156],"154":[2,156],"155":[2,156],"156":[2,156],"157":[2,156],"158":[2,156],"159":[2,156],"160":[2,156],"161":[2,156]},{"6":338,"28":[1,6]},{"29":[2,159],"121":[2,159],"123":[2,159]},{"6":339,"28":[1,6],"56":[1,340]},{"28":[2,121],"48":[1,111],"56":[2,121],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,91],"4":[2,91],"28":[1,341],"29":[2,91],"48":[2,91],"56":[2,91],"59":[2,91],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,91],"78":[1,143],"79":[1,144],"82":[2,91],"89":133,"90":[1,135],"92":[2,91],"97":[2,91],"105":[2,91],"107":[2,91],"108":[2,91],"109":[2,91],"112":[2,91],"116":[2,91],"117":[2,91],"118":[2,91],"125":[2,91],"126":[2,91],"127":[2,91],"129":[2,91],"130":[2,91],"132":[2,91],"133":[2,91],"136":[2,91],"137":[2,91],"138":[2,91],"139":[2,91],"140":[2,91],"141":[2,91],"142":[2,91],"143":[2,91],"144":[2,91],"145":[2,91],"146":[2,91],"147":[2,91],"148":[2,91],"149":[2,91],"150":[2,91],"151":[2,91],"152":[2,91],"153":[2,91],"154":[2,91],"155":[2,91],"156":[2,91],"157":[2,91],"158":[2,91],"159":[2,91],"160":[2,91],"161":[2,91]},{"4":[1,343],"29":[1,342]},{"4":[2,97],"29":[2,97]},{"4":[2,94],"29":[2,94]},{"45":[1,344]},{"30":186,"31":[1,85]},{"8":345,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"59":[1,346],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,115],"4":[2,115],"28":[2,115],"29":[2,115],"45":[2,115],"48":[2,115],"56":[2,115],"59":[2,115],"70":[2,115],"71":[2,115],"72":[2,115],"73":[2,115],"76":[2,115],"77":[2,115],"78":[2,115],"79":[2,115],"82":[2,115],"90":[2,115],"92":[2,115],"97":[2,115],"105":[2,115],"107":[2,115],"108":[2,115],"109":[2,115],"112":[2,115],"116":[2,115],"117":[2,115],"118":[2,115],"125":[2,115],"126":[2,115],"127":[2,115],"129":[2,115],"130":[2,115],"132":[2,115],"133":[2,115],"136":[2,115],"137":[2,115],"138":[2,115],"139":[2,115],"140":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"147":[2,115],"148":[2,115],"149":[2,115],"150":[2,115],"151":[2,115],"152":[2,115],"153":[2,115],"154":[2,115],"155":[2,115],"156":[2,115],"157":[2,115],"158":[2,115],"159":[2,115],"160":[2,115],"161":[2,115]},{"8":347,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,116],"8":241,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,116],"29":[2,116],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,116],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"91":348,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,118],"28":[2,118],"29":[2,118],"48":[1,111],"56":[2,118],"59":[1,128],"92":[2,118],"97":[2,118],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,130],"4":[2,130],"28":[2,130],"29":[2,130],"48":[1,111],"56":[2,130],"59":[1,128],"77":[2,130],"82":[2,130],"92":[2,130],"97":[2,130],"105":[2,130],"106":126,"107":[1,77],"108":[2,130],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,130],"125":[2,130],"126":[2,130],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,132],"4":[2,132],"28":[2,132],"29":[2,132],"48":[1,111],"56":[2,132],"59":[1,128],"77":[2,132],"82":[2,132],"92":[2,132],"97":[2,132],"105":[2,132],"106":126,"107":[1,77],"108":[2,132],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,132],"125":[2,132],"126":[2,132],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,84],"4":[2,84],"28":[2,84],"29":[2,84],"45":[2,84],"48":[2,84],"56":[2,84],"59":[2,84],"70":[2,84],"71":[2,84],"72":[2,84],"73":[2,84],"76":[2,84],"77":[2,84],"78":[2,84],"79":[2,84],"82":[2,84],"90":[2,84],"92":[2,84],"97":[2,84],"105":[2,84],"107":[2,84],"108":[2,84],"109":[2,84],"112":[2,84],"116":[2,84],"117":[2,84],"118":[2,84],"125":[2,84],"126":[2,84],"127":[2,84],"129":[2,84],"130":[2,84],"132":[2,84],"133":[2,84],"136":[2,84],"137":[2,84],"138":[2,84],"139":[2,84],"140":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84],"151":[2,84],"152":[2,84],"153":[2,84],"154":[2,84],"155":[2,84],"156":[2,84],"157":[2,84],"158":[2,84],"159":[2,84],"160":[2,84],"161":[2,84]},{"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":349},{"4":[2,85],"28":[2,85],"29":[2,85],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":195,"56":[2,85],"81":350},{"4":[2,87],"28":[2,87],"29":[2,87],"56":[2,87],"82":[2,87]},{"4":[2,45],"28":[2,45],"29":[2,45],"48":[1,111],"56":[2,45],"59":[1,128],"82":[2,45],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,46],"28":[2,46],"29":[2,46],"48":[1,111],"56":[2,46],"59":[1,128],"82":[2,46],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,106],"4":[2,106],"28":[2,106],"29":[2,106],"48":[2,106],"56":[2,106],"59":[2,106],"70":[2,106],"71":[2,106],"72":[2,106],"73":[2,106],"76":[2,106],"77":[2,106],"78":[2,106],"79":[2,106],"82":[2,106],"90":[2,106],"92":[2,106],"97":[2,106],"105":[2,106],"107":[2,106],"108":[2,106],"109":[2,106],"112":[2,106],"116":[2,106],"117":[2,106],"118":[2,106],"125":[2,106],"126":[2,106],"127":[2,106],"129":[2,106],"130":[2,106],"132":[2,106],"133":[2,106],"136":[2,106],"137":[2,106],"138":[2,106],"139":[2,106],"140":[2,106],"141":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"148":[2,106],"149":[2,106],"150":[2,106],"151":[2,106],"152":[2,106],"153":[2,106],"154":[2,106],"155":[2,106],"156":[2,106],"157":[2,106],"158":[2,106],"159":[2,106],"160":[2,106],"161":[2,106]},{"8":351,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"59":[1,352],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,50],"4":[2,50],"28":[2,50],"29":[2,50],"48":[2,50],"56":[2,50],"59":[2,50],"77":[2,50],"82":[2,50],"92":[2,50],"97":[2,50],"105":[2,50],"107":[2,50],"108":[2,50],"109":[2,50],"112":[2,50],"116":[2,50],"117":[2,50],"118":[2,50],"125":[2,50],"126":[2,50],"127":[2,50],"129":[2,50],"130":[2,50],"132":[2,50],"133":[2,50],"136":[2,50],"137":[2,50],"138":[2,50],"139":[2,50],"140":[2,50],"141":[2,50],"142":[2,50],"143":[2,50],"144":[2,50],"145":[2,50],"146":[2,50],"147":[2,50],"148":[2,50],"149":[2,50],"150":[2,50],"151":[2,50],"152":[2,50],"153":[2,50],"154":[2,50],"155":[2,50],"156":[2,50],"157":[2,50],"158":[2,50],"159":[2,50],"160":[2,50],"161":[2,50]},{"51":[2,60],"56":[2,60],"59":[2,60]},{"1":[2,164],"4":[2,164],"28":[2,164],"29":[2,164],"48":[2,164],"56":[2,164],"59":[2,164],"77":[2,164],"82":[2,164],"92":[2,164],"97":[2,164],"105":[2,164],"107":[2,164],"108":[2,164],"109":[2,164],"112":[2,164],"116":[2,164],"117":[2,164],"118":[2,164],"121":[2,164],"125":[2,164],"126":[2,164],"127":[2,164],"129":[2,164],"130":[2,164],"132":[2,164],"133":[2,164],"136":[2,164],"137":[2,164],"138":[2,164],"139":[2,164],"140":[2,164],"141":[2,164],"142":[2,164],"143":[2,164],"144":[2,164],"145":[2,164],"146":[2,164],"147":[2,164],"148":[2,164],"149":[2,164],"150":[2,164],"151":[2,164],"152":[2,164],"153":[2,164],"154":[2,164],"155":[2,164],"156":[2,164],"157":[2,164],"158":[2,164],"159":[2,164],"160":[2,164],"161":[2,164]},{"1":[2,125],"4":[2,125],"28":[2,125],"29":[2,125],"48":[2,125],"56":[2,125],"59":[2,125],"77":[2,125],"82":[2,125],"92":[2,125],"97":[2,125],"105":[2,125],"107":[2,125],"108":[2,125],"109":[2,125],"112":[2,125],"116":[2,125],"117":[2,125],"118":[2,125],"125":[2,125],"126":[2,125],"127":[2,125],"129":[2,125],"130":[2,125],"132":[2,125],"133":[2,125],"136":[2,125],"137":[2,125],"138":[2,125],"139":[2,125],"140":[2,125],"141":[2,125],"142":[2,125],"143":[2,125],"144":[2,125],"145":[2,125],"146":[2,125],"147":[2,125],"148":[2,125],"149":[2,125],"150":[2,125],"151":[2,125],"152":[2,125],"153":[2,125],"154":[2,125],"155":[2,125],"156":[2,125],"157":[2,125],"158":[2,125],"159":[2,125],"160":[2,125],"161":[2,125]},{"1":[2,126],"4":[2,126],"28":[2,126],"29":[2,126],"48":[2,126],"56":[2,126],"59":[2,126],"77":[2,126],"82":[2,126],"92":[2,126],"97":[2,126],"101":[2,126],"105":[2,126],"107":[2,126],"108":[2,126],"109":[2,126],"112":[2,126],"116":[2,126],"117":[2,126],"118":[2,126],"125":[2,126],"126":[2,126],"127":[2,126],"129":[2,126],"130":[2,126],"132":[2,126],"133":[2,126],"136":[2,126],"137":[2,126],"138":[2,126],"139":[2,126],"140":[2,126],"141":[2,126],"142":[2,126],"143":[2,126],"144":[2,126],"145":[2,126],"146":[2,126],"147":[2,126],"148":[2,126],"149":[2,126],"150":[2,126],"151":[2,126],"152":[2,126],"153":[2,126],"154":[2,126],"155":[2,126],"156":[2,126],"157":[2,126],"158":[2,126],"159":[2,126],"160":[2,126],"161":[2,126]},{"8":353,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":354,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":355,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,154],"4":[2,154],"28":[2,154],"29":[2,154],"48":[2,154],"56":[2,154],"59":[2,154],"77":[2,154],"82":[2,154],"92":[2,154],"97":[2,154],"105":[2,154],"107":[2,154],"108":[2,154],"109":[2,154],"112":[2,154],"116":[2,154],"117":[2,154],"118":[2,154],"125":[2,154],"126":[2,154],"127":[2,154],"129":[2,154],"130":[2,154],"132":[2,154],"133":[2,154],"136":[2,154],"137":[2,154],"138":[2,154],"139":[2,154],"140":[2,154],"141":[2,154],"142":[2,154],"143":[2,154],"144":[2,154],"145":[2,154],"146":[2,154],"147":[2,154],"148":[2,154],"149":[2,154],"150":[2,154],"151":[2,154],"152":[2,154],"153":[2,154],"154":[2,154],"155":[2,154],"156":[2,154],"157":[2,154],"158":[2,154],"159":[2,154],"160":[2,154],"161":[2,154]},{"6":356,"28":[1,6]},{"29":[1,357]},{"4":[1,358],"29":[2,160],"121":[2,160],"123":[2,160]},{"8":359,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,96],"29":[2,96],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":310,"63":311,"85":360,"86":309,"95":[1,312]},{"1":[2,92],"4":[2,92],"28":[2,92],"29":[2,92],"48":[2,92],"56":[2,92],"59":[2,92],"77":[2,92],"82":[2,92],"92":[2,92],"97":[2,92],"105":[2,92],"107":[2,92],"108":[2,92],"109":[2,92],"112":[2,92],"116":[2,92],"117":[2,92],"118":[2,92],"125":[2,92],"126":[2,92],"127":[2,92],"129":[2,92],"130":[2,92],"132":[2,92],"133":[2,92],"136":[2,92],"137":[2,92],"138":[2,92],"139":[2,92],"140":[2,92],"141":[2,92],"142":[2,92],"143":[2,92],"144":[2,92],"145":[2,92],"146":[2,92],"147":[2,92],"148":[2,92],"149":[2,92],"150":[2,92],"151":[2,92],"152":[2,92],"153":[2,92],"154":[2,92],"155":[2,92],"156":[2,92],"157":[2,92],"158":[2,92],"159":[2,92],"160":[2,92],"161":[2,92]},{"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":310,"63":311,"86":361,"95":[1,312]},{"8":362,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"48":[1,111],"59":[1,128],"97":[1,363],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,61],"8":364,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,61],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"48":[2,61],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,61],"59":[2,61],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,61],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[2,61],"109":[2,61],"110":50,"111":[1,79],"112":[2,61],"116":[2,61],"117":[2,61],"119":[1,52],"124":47,"125":[2,61],"126":[2,61],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61],"161":[2,61]},{"4":[2,119],"28":[2,119],"29":[2,119],"48":[1,111],"56":[2,119],"59":[1,128],"92":[2,119],"97":[2,119],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,54],"28":[2,54],"29":[2,54],"55":365,"56":[1,272]},{"4":[2,88],"28":[2,88],"29":[2,88],"56":[2,88],"82":[2,88]},{"4":[2,54],"28":[2,54],"29":[2,54],"55":366,"56":[1,278]},{"48":[1,111],"59":[1,128],"77":[1,367],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"8":368,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"48":[2,61],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"59":[2,61],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"77":[2,61],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[2,61],"109":[2,61],"110":50,"111":[1,79],"112":[2,61],"116":[2,61],"117":[2,61],"119":[1,52],"124":47,"125":[2,61],"126":[2,61],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61],"161":[2,61]},{"1":[2,149],"4":[2,149],"28":[2,149],"29":[2,149],"48":[1,111],"56":[2,149],"59":[1,128],"77":[2,149],"82":[2,149],"92":[2,149],"97":[2,149],"105":[2,149],"106":126,"107":[2,149],"108":[2,149],"109":[2,149],"112":[2,149],"116":[1,121],"117":[1,122],"118":[1,369],"125":[2,149],"126":[2,149],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,151],"4":[2,151],"28":[2,151],"29":[2,151],"48":[1,111],"56":[2,151],"59":[1,128],"77":[2,151],"82":[2,151],"92":[2,151],"97":[2,151],"105":[2,151],"106":126,"107":[2,151],"108":[1,370],"109":[2,151],"112":[2,151],"116":[1,121],"117":[1,122],"118":[2,151],"125":[2,151],"126":[2,151],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,150],"4":[2,150],"28":[2,150],"29":[2,150],"48":[1,111],"56":[2,150],"59":[1,128],"77":[2,150],"82":[2,150],"92":[2,150],"97":[2,150],"105":[2,150],"106":126,"107":[2,150],"108":[2,150],"109":[2,150],"112":[2,150],"116":[1,121],"117":[1,122],"118":[2,150],"125":[2,150],"126":[2,150],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"29":[1,371]},{"1":[2,157],"4":[2,157],"28":[2,157],"29":[2,157],"48":[2,157],"56":[2,157],"59":[2,157],"77":[2,157],"82":[2,157],"92":[2,157],"97":[2,157],"105":[2,157],"107":[2,157],"108":[2,157],"109":[2,157],"112":[2,157],"116":[2,157],"117":[2,157],"118":[2,157],"125":[2,157],"126":[2,157],"127":[2,157],"129":[2,157],"130":[2,157],"132":[2,157],"133":[2,157],"136":[2,157],"137":[2,157],"138":[2,157],"139":[2,157],"140":[2,157],"141":[2,157],"142":[2,157],"143":[2,157],"144":[2,157],"145":[2,157],"146":[2,157],"147":[2,157],"148":[2,157],"149":[2,157],"150":[2,157],"151":[2,157],"152":[2,157],"153":[2,157],"154":[2,157],"155":[2,157],"156":[2,157],"157":[2,157],"158":[2,157],"159":[2,157],"160":[2,157],"161":[2,157]},{"29":[2,161],"121":[2,161],"123":[2,161]},{"28":[2,122],"48":[1,111],"56":[2,122],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[1,343],"29":[1,372]},{"4":[2,98],"29":[2,98]},{"4":[2,95],"29":[2,95],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,111],"4":[2,111],"28":[2,111],"29":[2,111],"48":[2,111],"56":[2,111],"59":[2,111],"70":[2,111],"71":[2,111],"72":[2,111],"73":[2,111],"76":[2,111],"77":[2,111],"78":[2,111],"79":[2,111],"82":[2,111],"90":[2,111],"92":[2,111],"97":[2,111],"105":[2,111],"107":[2,111],"108":[2,111],"109":[2,111],"112":[2,111],"116":[2,111],"117":[2,111],"118":[2,111],"125":[2,111],"126":[2,111],"127":[2,111],"129":[2,111],"130":[2,111],"132":[2,111],"133":[2,111],"136":[2,111],"137":[2,111],"138":[2,111],"139":[2,111],"140":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"147":[2,111],"148":[2,111],"149":[2,111],"150":[2,111],"151":[2,111],"152":[2,111],"153":[2,111],"154":[2,111],"155":[2,111],"156":[2,111],"157":[2,111],"158":[2,111],"159":[2,111],"160":[2,111],"161":[2,111]},{"48":[1,111],"59":[1,128],"97":[1,373],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[1,315],"28":[1,316],"29":[1,374]},{"4":[1,321],"28":[1,322],"29":[1,375]},{"1":[2,113],"4":[2,113],"28":[2,113],"29":[2,113],"45":[2,113],"48":[2,113],"56":[2,113],"59":[2,113],"70":[2,113],"71":[2,113],"72":[2,113],"73":[2,113],"76":[2,113],"77":[2,113],"78":[2,113],"79":[2,113],"82":[2,113],"84":[2,113],"90":[2,113],"92":[2,113],"97":[2,113],"105":[2,113],"107":[2,113],"108":[2,113],"109":[2,113],"112":[2,113],"116":[2,113],"117":[2,113],"118":[2,113],"125":[2,113],"126":[2,113],"127":[2,113],"129":[2,113],"130":[2,113],"132":[2,113],"133":[2,113],"136":[2,113],"137":[2,113],"138":[2,113],"139":[2,113],"140":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"147":[2,113],"148":[2,113],"149":[2,113],"150":[2,113],"151":[2,113],"152":[2,113],"153":[2,113],"154":[2,113],"155":[2,113],"156":[2,113],"157":[2,113],"158":[2,113],"159":[2,113],"160":[2,113],"161":[2,113]},{"48":[1,111],"59":[1,128],"77":[1,376],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"8":377,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":378,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,155],"4":[2,155],"28":[2,155],"29":[2,155],"48":[2,155],"56":[2,155],"59":[2,155],"77":[2,155],"82":[2,155],"92":[2,155],"97":[2,155],"105":[2,155],"107":[2,155],"108":[2,155],"109":[2,155],"112":[2,155],"116":[2,155],"117":[2,155],"118":[2,155],"125":[2,155],"126":[2,155],"127":[2,155],"129":[2,155],"130":[2,155],"132":[2,155],"133":[2,155],"136":[2,155],"137":[2,155],"138":[2,155],"139":[2,155],"140":[2,155],"141":[2,155],"142":[2,155],"143":[2,155],"144":[2,155],"145":[2,155],"146":[2,155],"147":[2,155],"148":[2,155],"149":[2,155],"150":[2,155],"151":[2,155],"152":[2,155],"153":[2,155],"154":[2,155],"155":[2,155],"156":[2,155],"157":[2,155],"158":[2,155],"159":[2,155],"160":[2,155],"161":[2,155]},{"1":[2,93],"4":[2,93],"28":[2,93],"29":[2,93],"48":[2,93],"56":[2,93],"59":[2,93],"77":[2,93],"82":[2,93],"92":[2,93],"97":[2,93],"105":[2,93],"107":[2,93],"108":[2,93],"109":[2,93],"112":[2,93],"116":[2,93],"117":[2,93],"118":[2,93],"125":[2,93],"126":[2,93],"127":[2,93],"129":[2,93],"130":[2,93],"132":[2,93],"133":[2,93],"136":[2,93],"137":[2,93],"138":[2,93],"139":[2,93],"140":[2,93],"141":[2,93],"142":[2,93],"143":[2,93],"144":[2,93],"145":[2,93],"146":[2,93],"147":[2,93],"148":[2,93],"149":[2,93],"150":[2,93],"151":[2,93],"152":[2,93],"153":[2,93],"154":[2,93],"155":[2,93],"156":[2,93],"157":[2,93],"158":[2,93],"159":[2,93],"160":[2,93],"161":[2,93]},{"1":[2,112],"4":[2,112],"28":[2,112],"29":[2,112],"48":[2,112],"56":[2,112],"59":[2,112],"70":[2,112],"71":[2,112],"72":[2,112],"73":[2,112],"76":[2,112],"77":[2,112],"78":[2,112],"79":[2,112],"82":[2,112],"90":[2,112],"92":[2,112],"97":[2,112],"105":[2,112],"107":[2,112],"108":[2,112],"109":[2,112],"112":[2,112],"116":[2,112],"117":[2,112],"118":[2,112],"125":[2,112],"126":[2,112],"127":[2,112],"129":[2,112],"130":[2,112],"132":[2,112],"133":[2,112],"136":[2,112],"137":[2,112],"138":[2,112],"139":[2,112],"140":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"147":[2,112],"148":[2,112],"149":[2,112],"150":[2,112],"151":[2,112],"152":[2,112],"153":[2,112],"154":[2,112],"155":[2,112],"156":[2,112],"157":[2,112],"158":[2,112],"159":[2,112],"160":[2,112],"161":[2,112]},{"4":[2,120],"28":[2,120],"29":[2,120],"56":[2,120],"92":[2,120],"97":[2,120]},{"4":[2,89],"28":[2,89],"29":[2,89],"56":[2,89],"82":[2,89]},{"1":[2,114],"4":[2,114],"28":[2,114],"29":[2,114],"45":[2,114],"48":[2,114],"56":[2,114],"59":[2,114],"70":[2,114],"71":[2,114],"72":[2,114],"73":[2,114],"76":[2,114],"77":[2,114],"78":[2,114],"79":[2,114],"82":[2,114],"84":[2,114],"90":[2,114],"92":[2,114],"97":[2,114],"105":[2,114],"107":[2,114],"108":[2,114],"109":[2,114],"112":[2,114],"116":[2,114],"117":[2,114],"118":[2,114],"125":[2,114],"126":[2,114],"127":[2,114],"129":[2,114],"130":[2,114],"132":[2,114],"133":[2,114],"136":[2,114],"137":[2,114],"138":[2,114],"139":[2,114],"140":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"147":[2,114],"148":[2,114],"149":[2,114],"150":[2,114],"151":[2,114],"152":[2,114],"153":[2,114],"154":[2,114],"155":[2,114],"156":[2,114],"157":[2,114],"158":[2,114],"159":[2,114],"160":[2,114],"161":[2,114]},{"1":[2,152],"4":[2,152],"28":[2,152],"29":[2,152],"48":[1,111],"56":[2,152],"59":[1,128],"77":[2,152],"82":[2,152],"92":[2,152],"97":[2,152],"105":[2,152],"106":126,"107":[2,152],"108":[2,152],"109":[2,152],"112":[2,152],"116":[1,121],"117":[1,122],"118":[2,152],"125":[2,152],"126":[2,152],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,153],"4":[2,153],"28":[2,153],"29":[2,153],"48":[1,111],"56":[2,153],"59":[1,128],"77":[2,153],"82":[2,153],"92":[2,153],"97":[2,153],"105":[2,153],"106":126,"107":[2,153],"108":[2,153],"109":[2,153],"112":[2,153],"116":[1,121],"117":[1,122],"118":[2,153],"125":[2,153],"126":[2,153],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]}], +table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,6],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[3]},{"1":[2,2]},{"1":[2,3],"4":[1,86]},{"4":[1,87]},{"1":[2,5],"4":[2,5],"29":[2,5]},{"5":88,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[1,89],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,8],"4":[2,8],"29":[2,8],"48":[1,111],"59":[1,128],"105":[2,8],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,9],"4":[2,9],"29":[2,9],"105":[2,9],"106":131,"107":[1,77],"109":[1,78],"112":[1,132],"125":[1,129],"126":[1,130]},{"1":[2,14],"4":[2,14],"28":[2,14],"29":[2,14],"48":[2,14],"56":[2,14],"59":[2,14],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,14],"78":[1,143],"79":[1,144],"82":[2,14],"89":133,"90":[1,135],"92":[2,14],"97":[2,14],"105":[2,14],"107":[2,14],"108":[2,14],"109":[2,14],"112":[2,14],"116":[2,14],"117":[2,14],"118":[2,14],"125":[2,14],"126":[2,14],"127":[2,14],"129":[2,14],"130":[2,14],"132":[2,14],"133":[2,14],"136":[2,14],"137":[2,14],"138":[2,14],"139":[2,14],"140":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[2,14],"148":[2,14],"149":[2,14],"150":[2,14],"151":[2,14],"152":[2,14],"153":[2,14],"154":[2,14],"155":[2,14],"156":[2,14],"157":[2,14],"158":[2,14],"159":[2,14],"160":[2,14],"161":[2,14]},{"1":[2,15],"4":[2,15],"28":[2,15],"29":[2,15],"48":[2,15],"56":[2,15],"59":[2,15],"77":[2,15],"82":[2,15],"92":[2,15],"97":[2,15],"105":[2,15],"107":[2,15],"108":[2,15],"109":[2,15],"112":[2,15],"116":[2,15],"117":[2,15],"118":[2,15],"125":[2,15],"126":[2,15],"127":[2,15],"129":[2,15],"130":[2,15],"132":[2,15],"133":[2,15],"136":[2,15],"137":[2,15],"138":[2,15],"139":[2,15],"140":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[2,15],"149":[2,15],"150":[2,15],"151":[2,15],"152":[2,15],"153":[2,15],"154":[2,15],"155":[2,15],"156":[2,15],"157":[2,15],"158":[2,15],"159":[2,15],"160":[2,15],"161":[2,15]},{"1":[2,16],"4":[2,16],"28":[2,16],"29":[2,16],"48":[2,16],"56":[2,16],"59":[2,16],"77":[2,16],"82":[2,16],"92":[2,16],"97":[2,16],"105":[2,16],"107":[2,16],"108":[2,16],"109":[2,16],"112":[2,16],"116":[2,16],"117":[2,16],"118":[2,16],"125":[2,16],"126":[2,16],"127":[2,16],"129":[2,16],"130":[2,16],"132":[2,16],"133":[2,16],"136":[2,16],"137":[2,16],"138":[2,16],"139":[2,16],"140":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"148":[2,16],"149":[2,16],"150":[2,16],"151":[2,16],"152":[2,16],"153":[2,16],"154":[2,16],"155":[2,16],"156":[2,16],"157":[2,16],"158":[2,16],"159":[2,16],"160":[2,16],"161":[2,16]},{"1":[2,17],"4":[2,17],"28":[2,17],"29":[2,17],"48":[2,17],"56":[2,17],"59":[2,17],"77":[2,17],"82":[2,17],"92":[2,17],"97":[2,17],"105":[2,17],"107":[2,17],"108":[2,17],"109":[2,17],"112":[2,17],"116":[2,17],"117":[2,17],"118":[2,17],"125":[2,17],"126":[2,17],"127":[2,17],"129":[2,17],"130":[2,17],"132":[2,17],"133":[2,17],"136":[2,17],"137":[2,17],"138":[2,17],"139":[2,17],"140":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"148":[2,17],"149":[2,17],"150":[2,17],"151":[2,17],"152":[2,17],"153":[2,17],"154":[2,17],"155":[2,17],"156":[2,17],"157":[2,17],"158":[2,17],"159":[2,17],"160":[2,17],"161":[2,17]},{"1":[2,18],"4":[2,18],"28":[2,18],"29":[2,18],"48":[2,18],"56":[2,18],"59":[2,18],"77":[2,18],"82":[2,18],"92":[2,18],"97":[2,18],"105":[2,18],"107":[2,18],"108":[2,18],"109":[2,18],"112":[2,18],"116":[2,18],"117":[2,18],"118":[2,18],"125":[2,18],"126":[2,18],"127":[2,18],"129":[2,18],"130":[2,18],"132":[2,18],"133":[2,18],"136":[2,18],"137":[2,18],"138":[2,18],"139":[2,18],"140":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"148":[2,18],"149":[2,18],"150":[2,18],"151":[2,18],"152":[2,18],"153":[2,18],"154":[2,18],"155":[2,18],"156":[2,18],"157":[2,18],"158":[2,18],"159":[2,18],"160":[2,18],"161":[2,18]},{"1":[2,19],"4":[2,19],"28":[2,19],"29":[2,19],"48":[2,19],"56":[2,19],"59":[2,19],"77":[2,19],"82":[2,19],"92":[2,19],"97":[2,19],"105":[2,19],"107":[2,19],"108":[2,19],"109":[2,19],"112":[2,19],"116":[2,19],"117":[2,19],"118":[2,19],"125":[2,19],"126":[2,19],"127":[2,19],"129":[2,19],"130":[2,19],"132":[2,19],"133":[2,19],"136":[2,19],"137":[2,19],"138":[2,19],"139":[2,19],"140":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"148":[2,19],"149":[2,19],"150":[2,19],"151":[2,19],"152":[2,19],"153":[2,19],"154":[2,19],"155":[2,19],"156":[2,19],"157":[2,19],"158":[2,19],"159":[2,19],"160":[2,19],"161":[2,19]},{"1":[2,20],"4":[2,20],"28":[2,20],"29":[2,20],"48":[2,20],"56":[2,20],"59":[2,20],"77":[2,20],"82":[2,20],"92":[2,20],"97":[2,20],"105":[2,20],"107":[2,20],"108":[2,20],"109":[2,20],"112":[2,20],"116":[2,20],"117":[2,20],"118":[2,20],"125":[2,20],"126":[2,20],"127":[2,20],"129":[2,20],"130":[2,20],"132":[2,20],"133":[2,20],"136":[2,20],"137":[2,20],"138":[2,20],"139":[2,20],"140":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"148":[2,20],"149":[2,20],"150":[2,20],"151":[2,20],"152":[2,20],"153":[2,20],"154":[2,20],"155":[2,20],"156":[2,20],"157":[2,20],"158":[2,20],"159":[2,20],"160":[2,20],"161":[2,20]},{"1":[2,21],"4":[2,21],"28":[2,21],"29":[2,21],"48":[2,21],"56":[2,21],"59":[2,21],"77":[2,21],"82":[2,21],"92":[2,21],"97":[2,21],"105":[2,21],"107":[2,21],"108":[2,21],"109":[2,21],"112":[2,21],"116":[2,21],"117":[2,21],"118":[2,21],"125":[2,21],"126":[2,21],"127":[2,21],"129":[2,21],"130":[2,21],"132":[2,21],"133":[2,21],"136":[2,21],"137":[2,21],"138":[2,21],"139":[2,21],"140":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"148":[2,21],"149":[2,21],"150":[2,21],"151":[2,21],"152":[2,21],"153":[2,21],"154":[2,21],"155":[2,21],"156":[2,21],"157":[2,21],"158":[2,21],"159":[2,21],"160":[2,21],"161":[2,21]},{"1":[2,22],"4":[2,22],"28":[2,22],"29":[2,22],"48":[2,22],"56":[2,22],"59":[2,22],"77":[2,22],"82":[2,22],"92":[2,22],"97":[2,22],"105":[2,22],"107":[2,22],"108":[2,22],"109":[2,22],"112":[2,22],"116":[2,22],"117":[2,22],"118":[2,22],"125":[2,22],"126":[2,22],"127":[2,22],"129":[2,22],"130":[2,22],"132":[2,22],"133":[2,22],"136":[2,22],"137":[2,22],"138":[2,22],"139":[2,22],"140":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"148":[2,22],"149":[2,22],"150":[2,22],"151":[2,22],"152":[2,22],"153":[2,22],"154":[2,22],"155":[2,22],"156":[2,22],"157":[2,22],"158":[2,22],"159":[2,22],"160":[2,22],"161":[2,22]},{"1":[2,23],"4":[2,23],"28":[2,23],"29":[2,23],"48":[2,23],"56":[2,23],"59":[2,23],"77":[2,23],"82":[2,23],"92":[2,23],"97":[2,23],"105":[2,23],"107":[2,23],"108":[2,23],"109":[2,23],"112":[2,23],"116":[2,23],"117":[2,23],"118":[2,23],"125":[2,23],"126":[2,23],"127":[2,23],"129":[2,23],"130":[2,23],"132":[2,23],"133":[2,23],"136":[2,23],"137":[2,23],"138":[2,23],"139":[2,23],"140":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"148":[2,23],"149":[2,23],"150":[2,23],"151":[2,23],"152":[2,23],"153":[2,23],"154":[2,23],"155":[2,23],"156":[2,23],"157":[2,23],"158":[2,23],"159":[2,23],"160":[2,23],"161":[2,23]},{"1":[2,24],"4":[2,24],"28":[2,24],"29":[2,24],"48":[2,24],"56":[2,24],"59":[2,24],"77":[2,24],"82":[2,24],"92":[2,24],"97":[2,24],"105":[2,24],"107":[2,24],"108":[2,24],"109":[2,24],"112":[2,24],"116":[2,24],"117":[2,24],"118":[2,24],"125":[2,24],"126":[2,24],"127":[2,24],"129":[2,24],"130":[2,24],"132":[2,24],"133":[2,24],"136":[2,24],"137":[2,24],"138":[2,24],"139":[2,24],"140":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"148":[2,24],"149":[2,24],"150":[2,24],"151":[2,24],"152":[2,24],"153":[2,24],"154":[2,24],"155":[2,24],"156":[2,24],"157":[2,24],"158":[2,24],"159":[2,24],"160":[2,24],"161":[2,24]},{"1":[2,25],"4":[2,25],"28":[2,25],"29":[2,25],"48":[2,25],"56":[2,25],"59":[2,25],"77":[2,25],"82":[2,25],"92":[2,25],"97":[2,25],"105":[2,25],"107":[2,25],"108":[2,25],"109":[2,25],"112":[2,25],"116":[2,25],"117":[2,25],"118":[2,25],"125":[2,25],"126":[2,25],"127":[2,25],"129":[2,25],"130":[2,25],"132":[2,25],"133":[2,25],"136":[2,25],"137":[2,25],"138":[2,25],"139":[2,25],"140":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"148":[2,25],"149":[2,25],"150":[2,25],"151":[2,25],"152":[2,25],"153":[2,25],"154":[2,25],"155":[2,25],"156":[2,25],"157":[2,25],"158":[2,25],"159":[2,25],"160":[2,25],"161":[2,25]},{"1":[2,26],"4":[2,26],"28":[2,26],"29":[2,26],"48":[2,26],"56":[2,26],"59":[2,26],"77":[2,26],"82":[2,26],"92":[2,26],"97":[2,26],"105":[2,26],"107":[2,26],"108":[2,26],"109":[2,26],"112":[2,26],"116":[2,26],"117":[2,26],"118":[2,26],"125":[2,26],"126":[2,26],"127":[2,26],"129":[2,26],"130":[2,26],"132":[2,26],"133":[2,26],"136":[2,26],"137":[2,26],"138":[2,26],"139":[2,26],"140":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"148":[2,26],"149":[2,26],"150":[2,26],"151":[2,26],"152":[2,26],"153":[2,26],"154":[2,26],"155":[2,26],"156":[2,26],"157":[2,26],"158":[2,26],"159":[2,26],"160":[2,26],"161":[2,26]},{"1":[2,27],"4":[2,27],"28":[2,27],"29":[2,27],"48":[2,27],"56":[2,27],"59":[2,27],"77":[2,27],"82":[2,27],"92":[2,27],"97":[2,27],"105":[2,27],"107":[2,27],"108":[2,27],"109":[2,27],"112":[2,27],"116":[2,27],"117":[2,27],"118":[2,27],"125":[2,27],"126":[2,27],"127":[2,27],"129":[2,27],"130":[2,27],"132":[2,27],"133":[2,27],"136":[2,27],"137":[2,27],"138":[2,27],"139":[2,27],"140":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"148":[2,27],"149":[2,27],"150":[2,27],"151":[2,27],"152":[2,27],"153":[2,27],"154":[2,27],"155":[2,27],"156":[2,27],"157":[2,27],"158":[2,27],"159":[2,27],"160":[2,27],"161":[2,27]},{"1":[2,10],"4":[2,10],"29":[2,10],"105":[2,10],"107":[2,10],"109":[2,10],"112":[2,10],"125":[2,10],"126":[2,10]},{"1":[2,11],"4":[2,11],"29":[2,11],"105":[2,11],"107":[2,11],"109":[2,11],"112":[2,11],"125":[2,11],"126":[2,11]},{"1":[2,12],"4":[2,12],"29":[2,12],"105":[2,12],"107":[2,12],"109":[2,12],"112":[2,12],"125":[2,12],"126":[2,12]},{"1":[2,13],"4":[2,13],"29":[2,13],"105":[2,13],"107":[2,13],"109":[2,13],"112":[2,13],"125":[2,13],"126":[2,13]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"45":[1,145],"48":[2,69],"56":[2,69],"59":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"77":[2,69],"78":[2,69],"79":[2,69],"82":[2,69],"90":[2,69],"92":[2,69],"97":[2,69],"105":[2,69],"107":[2,69],"108":[2,69],"109":[2,69],"112":[2,69],"116":[2,69],"117":[2,69],"118":[2,69],"125":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"132":[2,69],"133":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69],"140":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69]},{"1":[2,70],"4":[2,70],"28":[2,70],"29":[2,70],"48":[2,70],"56":[2,70],"59":[2,70],"70":[2,70],"71":[2,70],"72":[2,70],"73":[2,70],"76":[2,70],"77":[2,70],"78":[2,70],"79":[2,70],"82":[2,70],"90":[2,70],"92":[2,70],"97":[2,70],"105":[2,70],"107":[2,70],"108":[2,70],"109":[2,70],"112":[2,70],"116":[2,70],"117":[2,70],"118":[2,70],"125":[2,70],"126":[2,70],"127":[2,70],"129":[2,70],"130":[2,70],"132":[2,70],"133":[2,70],"136":[2,70],"137":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"48":[2,71],"56":[2,71],"59":[2,71],"70":[2,71],"71":[2,71],"72":[2,71],"73":[2,71],"76":[2,71],"77":[2,71],"78":[2,71],"79":[2,71],"82":[2,71],"90":[2,71],"92":[2,71],"97":[2,71],"105":[2,71],"107":[2,71],"108":[2,71],"109":[2,71],"112":[2,71],"116":[2,71],"117":[2,71],"118":[2,71],"125":[2,71],"126":[2,71],"127":[2,71],"129":[2,71],"130":[2,71],"132":[2,71],"133":[2,71],"136":[2,71],"137":[2,71],"138":[2,71],"139":[2,71],"140":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"48":[2,72],"56":[2,72],"59":[2,72],"70":[2,72],"71":[2,72],"72":[2,72],"73":[2,72],"76":[2,72],"77":[2,72],"78":[2,72],"79":[2,72],"82":[2,72],"90":[2,72],"92":[2,72],"97":[2,72],"105":[2,72],"107":[2,72],"108":[2,72],"109":[2,72],"112":[2,72],"116":[2,72],"117":[2,72],"118":[2,72],"125":[2,72],"126":[2,72],"127":[2,72],"129":[2,72],"130":[2,72],"132":[2,72],"133":[2,72],"136":[2,72],"137":[2,72],"138":[2,72],"139":[2,72],"140":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72]},{"1":[2,73],"4":[2,73],"28":[2,73],"29":[2,73],"48":[2,73],"56":[2,73],"59":[2,73],"70":[2,73],"71":[2,73],"72":[2,73],"73":[2,73],"76":[2,73],"77":[2,73],"78":[2,73],"79":[2,73],"82":[2,73],"90":[2,73],"92":[2,73],"97":[2,73],"105":[2,73],"107":[2,73],"108":[2,73],"109":[2,73],"112":[2,73],"116":[2,73],"117":[2,73],"118":[2,73],"125":[2,73],"126":[2,73],"127":[2,73],"129":[2,73],"130":[2,73],"132":[2,73],"133":[2,73],"136":[2,73],"137":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"48":[2,74],"56":[2,74],"59":[2,74],"70":[2,74],"71":[2,74],"72":[2,74],"73":[2,74],"76":[2,74],"77":[2,74],"78":[2,74],"79":[2,74],"82":[2,74],"90":[2,74],"92":[2,74],"97":[2,74],"105":[2,74],"107":[2,74],"108":[2,74],"109":[2,74],"112":[2,74],"116":[2,74],"117":[2,74],"118":[2,74],"125":[2,74],"126":[2,74],"127":[2,74],"129":[2,74],"130":[2,74],"132":[2,74],"133":[2,74],"136":[2,74],"137":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74],"151":[2,74],"152":[2,74],"153":[2,74],"154":[2,74],"155":[2,74],"156":[2,74],"157":[2,74],"158":[2,74],"159":[2,74],"160":[2,74],"161":[2,74]},{"1":[2,99],"4":[2,99],"28":[2,99],"29":[2,99],"48":[2,99],"56":[2,99],"59":[2,99],"61":147,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,99],"78":[1,143],"79":[1,144],"82":[2,99],"89":146,"90":[1,135],"92":[2,99],"97":[2,99],"105":[2,99],"107":[2,99],"108":[2,99],"109":[2,99],"112":[2,99],"116":[2,99],"117":[2,99],"118":[2,99],"125":[2,99],"126":[2,99],"127":[2,99],"129":[2,99],"130":[2,99],"132":[2,99],"133":[2,99],"136":[2,99],"137":[2,99],"138":[2,99],"139":[2,99],"140":[2,99],"141":[2,99],"142":[2,99],"143":[2,99],"144":[2,99],"145":[2,99],"146":[2,99],"147":[2,99],"148":[2,99],"149":[2,99],"150":[2,99],"151":[2,99],"152":[2,99],"153":[2,99],"154":[2,99],"155":[2,99],"156":[2,99],"157":[2,99],"158":[2,99],"159":[2,99],"160":[2,99],"161":[2,99]},{"1":[2,100],"4":[2,100],"28":[2,100],"29":[2,100],"48":[2,100],"56":[2,100],"59":[2,100],"77":[2,100],"82":[2,100],"92":[2,100],"97":[2,100],"105":[2,100],"107":[2,100],"108":[2,100],"109":[2,100],"112":[2,100],"116":[2,100],"117":[2,100],"118":[2,100],"125":[2,100],"126":[2,100],"127":[2,100],"129":[2,100],"130":[2,100],"132":[2,100],"133":[2,100],"136":[2,100],"137":[2,100],"138":[2,100],"139":[2,100],"140":[2,100],"141":[2,100],"142":[2,100],"143":[2,100],"144":[2,100],"145":[2,100],"146":[2,100],"147":[2,100],"148":[2,100],"149":[2,100],"150":[2,100],"151":[2,100],"152":[2,100],"153":[2,100],"154":[2,100],"155":[2,100],"156":[2,100],"157":[2,100],"158":[2,100],"159":[2,100],"160":[2,100],"161":[2,100]},{"14":149,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":151,"62":148,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"50":152,"51":[2,56],"56":[2,56],"57":153,"58":[1,154]},{"6":155,"28":[1,6]},{"8":156,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":158,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":159,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":160,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":161,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":162,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":163,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":164,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":165,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,167],"4":[2,167],"28":[2,167],"29":[2,167],"48":[2,167],"56":[2,167],"59":[2,167],"77":[2,167],"82":[2,167],"92":[2,167],"97":[2,167],"105":[2,167],"107":[2,167],"108":[2,167],"109":[2,167],"112":[2,167],"116":[2,167],"117":[2,167],"118":[2,167],"121":[1,166],"125":[2,167],"126":[2,167],"127":[2,167],"129":[2,167],"130":[2,167],"132":[2,167],"133":[2,167],"136":[2,167],"137":[2,167],"138":[2,167],"139":[2,167],"140":[2,167],"141":[2,167],"142":[2,167],"143":[2,167],"144":[2,167],"145":[2,167],"146":[2,167],"147":[2,167],"148":[2,167],"149":[2,167],"150":[2,167],"151":[2,167],"152":[2,167],"153":[2,167],"154":[2,167],"155":[2,167],"156":[2,167],"157":[2,167],"158":[2,167],"159":[2,167],"160":[2,167],"161":[2,167]},{"6":167,"28":[1,6]},{"6":168,"28":[1,6]},{"1":[2,137],"4":[2,137],"28":[2,137],"29":[2,137],"48":[2,137],"56":[2,137],"59":[2,137],"77":[2,137],"82":[2,137],"92":[2,137],"97":[2,137],"105":[2,137],"107":[2,137],"108":[2,137],"109":[2,137],"112":[2,137],"116":[2,137],"117":[2,137],"118":[2,137],"125":[2,137],"126":[2,137],"127":[2,137],"129":[2,137],"130":[2,137],"132":[2,137],"133":[2,137],"136":[2,137],"137":[2,137],"138":[2,137],"139":[2,137],"140":[2,137],"141":[2,137],"142":[2,137],"143":[2,137],"144":[2,137],"145":[2,137],"146":[2,137],"147":[2,137],"148":[2,137],"149":[2,137],"150":[2,137],"151":[2,137],"152":[2,137],"153":[2,137],"154":[2,137],"155":[2,137],"156":[2,137],"157":[2,137],"158":[2,137],"159":[2,137],"160":[2,137],"161":[2,137]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"113":169,"115":170},{"8":175,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,176],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,66],"4":[2,66],"28":[2,66],"29":[2,66],"45":[2,66],"48":[2,66],"56":[2,66],"59":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,66],"78":[2,66],"79":[2,66],"82":[2,66],"84":[1,177],"90":[2,66],"92":[2,66],"97":[2,66],"105":[2,66],"107":[2,66],"108":[2,66],"109":[2,66],"112":[2,66],"116":[2,66],"117":[2,66],"118":[2,66],"125":[2,66],"126":[2,66],"127":[2,66],"129":[2,66],"130":[2,66],"132":[2,66],"133":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66]},{"14":179,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":178,"62":180,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"1":[2,48],"4":[2,48],"8":181,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[2,48],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"105":[2,48],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[2,48],"126":[2,48],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":182,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,67],"4":[2,67],"28":[2,67],"29":[2,67],"45":[2,67],"48":[2,67],"56":[2,67],"59":[2,67],"70":[2,67],"71":[2,67],"72":[2,67],"73":[2,67],"76":[2,67],"77":[2,67],"78":[2,67],"79":[2,67],"82":[2,67],"90":[2,67],"92":[2,67],"97":[2,67],"105":[2,67],"107":[2,67],"108":[2,67],"109":[2,67],"112":[2,67],"116":[2,67],"117":[2,67],"118":[2,67],"125":[2,67],"126":[2,67],"127":[2,67],"129":[2,67],"130":[2,67],"132":[2,67],"133":[2,67],"136":[2,67],"137":[2,67],"138":[2,67],"139":[2,67],"140":[2,67],"141":[2,67],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67]},{"1":[2,68],"4":[2,68],"28":[2,68],"29":[2,68],"45":[2,68],"48":[2,68],"56":[2,68],"59":[2,68],"70":[2,68],"71":[2,68],"72":[2,68],"73":[2,68],"76":[2,68],"77":[2,68],"78":[2,68],"79":[2,68],"82":[2,68],"90":[2,68],"92":[2,68],"97":[2,68],"105":[2,68],"107":[2,68],"108":[2,68],"109":[2,68],"112":[2,68],"116":[2,68],"117":[2,68],"118":[2,68],"125":[2,68],"126":[2,68],"127":[2,68],"129":[2,68],"130":[2,68],"132":[2,68],"133":[2,68],"136":[2,68],"137":[2,68],"138":[2,68],"139":[2,68],"140":[2,68],"141":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68]},{"1":[2,33],"4":[2,33],"28":[2,33],"29":[2,33],"48":[2,33],"56":[2,33],"59":[2,33],"70":[2,33],"71":[2,33],"72":[2,33],"73":[2,33],"76":[2,33],"77":[2,33],"78":[2,33],"79":[2,33],"82":[2,33],"90":[2,33],"92":[2,33],"97":[2,33],"105":[2,33],"107":[2,33],"108":[2,33],"109":[2,33],"112":[2,33],"116":[2,33],"117":[2,33],"118":[2,33],"125":[2,33],"126":[2,33],"127":[2,33],"129":[2,33],"130":[2,33],"132":[2,33],"133":[2,33],"136":[2,33],"137":[2,33],"138":[2,33],"139":[2,33],"140":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33],"151":[2,33],"152":[2,33],"153":[2,33],"154":[2,33],"155":[2,33],"156":[2,33],"157":[2,33],"158":[2,33],"159":[2,33],"160":[2,33],"161":[2,33]},{"1":[2,34],"4":[2,34],"28":[2,34],"29":[2,34],"48":[2,34],"56":[2,34],"59":[2,34],"70":[2,34],"71":[2,34],"72":[2,34],"73":[2,34],"76":[2,34],"77":[2,34],"78":[2,34],"79":[2,34],"82":[2,34],"90":[2,34],"92":[2,34],"97":[2,34],"105":[2,34],"107":[2,34],"108":[2,34],"109":[2,34],"112":[2,34],"116":[2,34],"117":[2,34],"118":[2,34],"125":[2,34],"126":[2,34],"127":[2,34],"129":[2,34],"130":[2,34],"132":[2,34],"133":[2,34],"136":[2,34],"137":[2,34],"138":[2,34],"139":[2,34],"140":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34],"151":[2,34],"152":[2,34],"153":[2,34],"154":[2,34],"155":[2,34],"156":[2,34],"157":[2,34],"158":[2,34],"159":[2,34],"160":[2,34],"161":[2,34]},{"1":[2,35],"4":[2,35],"28":[2,35],"29":[2,35],"48":[2,35],"56":[2,35],"59":[2,35],"70":[2,35],"71":[2,35],"72":[2,35],"73":[2,35],"76":[2,35],"77":[2,35],"78":[2,35],"79":[2,35],"82":[2,35],"90":[2,35],"92":[2,35],"97":[2,35],"105":[2,35],"107":[2,35],"108":[2,35],"109":[2,35],"112":[2,35],"116":[2,35],"117":[2,35],"118":[2,35],"125":[2,35],"126":[2,35],"127":[2,35],"129":[2,35],"130":[2,35],"132":[2,35],"133":[2,35],"136":[2,35],"137":[2,35],"138":[2,35],"139":[2,35],"140":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35],"151":[2,35],"152":[2,35],"153":[2,35],"154":[2,35],"155":[2,35],"156":[2,35],"157":[2,35],"158":[2,35],"159":[2,35],"160":[2,35],"161":[2,35]},{"1":[2,36],"4":[2,36],"28":[2,36],"29":[2,36],"48":[2,36],"56":[2,36],"59":[2,36],"70":[2,36],"71":[2,36],"72":[2,36],"73":[2,36],"76":[2,36],"77":[2,36],"78":[2,36],"79":[2,36],"82":[2,36],"90":[2,36],"92":[2,36],"97":[2,36],"105":[2,36],"107":[2,36],"108":[2,36],"109":[2,36],"112":[2,36],"116":[2,36],"117":[2,36],"118":[2,36],"125":[2,36],"126":[2,36],"127":[2,36],"129":[2,36],"130":[2,36],"132":[2,36],"133":[2,36],"136":[2,36],"137":[2,36],"138":[2,36],"139":[2,36],"140":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36],"151":[2,36],"152":[2,36],"153":[2,36],"154":[2,36],"155":[2,36],"156":[2,36],"157":[2,36],"158":[2,36],"159":[2,36],"160":[2,36],"161":[2,36]},{"1":[2,37],"4":[2,37],"28":[2,37],"29":[2,37],"48":[2,37],"56":[2,37],"59":[2,37],"70":[2,37],"71":[2,37],"72":[2,37],"73":[2,37],"76":[2,37],"77":[2,37],"78":[2,37],"79":[2,37],"82":[2,37],"90":[2,37],"92":[2,37],"97":[2,37],"105":[2,37],"107":[2,37],"108":[2,37],"109":[2,37],"112":[2,37],"116":[2,37],"117":[2,37],"118":[2,37],"125":[2,37],"126":[2,37],"127":[2,37],"129":[2,37],"130":[2,37],"132":[2,37],"133":[2,37],"136":[2,37],"137":[2,37],"138":[2,37],"139":[2,37],"140":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37],"151":[2,37],"152":[2,37],"153":[2,37],"154":[2,37],"155":[2,37],"156":[2,37],"157":[2,37],"158":[2,37],"159":[2,37],"160":[2,37],"161":[2,37]},{"1":[2,38],"4":[2,38],"28":[2,38],"29":[2,38],"48":[2,38],"56":[2,38],"59":[2,38],"70":[2,38],"71":[2,38],"72":[2,38],"73":[2,38],"76":[2,38],"77":[2,38],"78":[2,38],"79":[2,38],"82":[2,38],"90":[2,38],"92":[2,38],"97":[2,38],"105":[2,38],"107":[2,38],"108":[2,38],"109":[2,38],"112":[2,38],"116":[2,38],"117":[2,38],"118":[2,38],"125":[2,38],"126":[2,38],"127":[2,38],"129":[2,38],"130":[2,38],"132":[2,38],"133":[2,38],"136":[2,38],"137":[2,38],"138":[2,38],"139":[2,38],"140":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38],"151":[2,38],"152":[2,38],"153":[2,38],"154":[2,38],"155":[2,38],"156":[2,38],"157":[2,38],"158":[2,38],"159":[2,38],"160":[2,38],"161":[2,38]},{"1":[2,39],"4":[2,39],"28":[2,39],"29":[2,39],"48":[2,39],"56":[2,39],"59":[2,39],"70":[2,39],"71":[2,39],"72":[2,39],"73":[2,39],"76":[2,39],"77":[2,39],"78":[2,39],"79":[2,39],"82":[2,39],"90":[2,39],"92":[2,39],"97":[2,39],"105":[2,39],"107":[2,39],"108":[2,39],"109":[2,39],"112":[2,39],"116":[2,39],"117":[2,39],"118":[2,39],"125":[2,39],"126":[2,39],"127":[2,39],"129":[2,39],"130":[2,39],"132":[2,39],"133":[2,39],"136":[2,39],"137":[2,39],"138":[2,39],"139":[2,39],"140":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39],"151":[2,39],"152":[2,39],"153":[2,39],"154":[2,39],"155":[2,39],"156":[2,39],"157":[2,39],"158":[2,39],"159":[2,39],"160":[2,39],"161":[2,39]},{"1":[2,40],"4":[2,40],"28":[2,40],"29":[2,40],"48":[2,40],"56":[2,40],"59":[2,40],"70":[2,40],"71":[2,40],"72":[2,40],"73":[2,40],"76":[2,40],"77":[2,40],"78":[2,40],"79":[2,40],"82":[2,40],"90":[2,40],"92":[2,40],"97":[2,40],"105":[2,40],"107":[2,40],"108":[2,40],"109":[2,40],"112":[2,40],"116":[2,40],"117":[2,40],"118":[2,40],"125":[2,40],"126":[2,40],"127":[2,40],"129":[2,40],"130":[2,40],"132":[2,40],"133":[2,40],"136":[2,40],"137":[2,40],"138":[2,40],"139":[2,40],"140":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40],"151":[2,40],"152":[2,40],"153":[2,40],"154":[2,40],"155":[2,40],"156":[2,40],"157":[2,40],"158":[2,40],"159":[2,40],"160":[2,40],"161":[2,40]},{"1":[2,41],"4":[2,41],"28":[2,41],"29":[2,41],"48":[2,41],"56":[2,41],"59":[2,41],"70":[2,41],"71":[2,41],"72":[2,41],"73":[2,41],"76":[2,41],"77":[2,41],"78":[2,41],"79":[2,41],"82":[2,41],"90":[2,41],"92":[2,41],"97":[2,41],"105":[2,41],"107":[2,41],"108":[2,41],"109":[2,41],"112":[2,41],"116":[2,41],"117":[2,41],"118":[2,41],"125":[2,41],"126":[2,41],"127":[2,41],"129":[2,41],"130":[2,41],"132":[2,41],"133":[2,41],"136":[2,41],"137":[2,41],"138":[2,41],"139":[2,41],"140":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41],"151":[2,41],"152":[2,41],"153":[2,41],"154":[2,41],"155":[2,41],"156":[2,41],"157":[2,41],"158":[2,41],"159":[2,41],"160":[2,41],"161":[2,41]},{"7":183,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,116],"8":184,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,116],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,116],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"91":185,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,116],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,108],"4":[2,108],"28":[2,108],"29":[2,108],"48":[2,108],"56":[2,108],"59":[2,108],"70":[2,108],"71":[2,108],"72":[2,108],"73":[2,108],"76":[2,108],"77":[2,108],"78":[2,108],"79":[2,108],"82":[2,108],"90":[2,108],"92":[2,108],"97":[2,108],"105":[2,108],"107":[2,108],"108":[2,108],"109":[2,108],"112":[2,108],"116":[2,108],"117":[2,108],"118":[2,108],"125":[2,108],"126":[2,108],"127":[2,108],"129":[2,108],"130":[2,108],"132":[2,108],"133":[2,108],"136":[2,108],"137":[2,108],"138":[2,108],"139":[2,108],"140":[2,108],"141":[2,108],"142":[2,108],"143":[2,108],"144":[2,108],"145":[2,108],"146":[2,108],"147":[2,108],"148":[2,108],"149":[2,108],"150":[2,108],"151":[2,108],"152":[2,108],"153":[2,108],"154":[2,108],"155":[2,108],"156":[2,108],"157":[2,108],"158":[2,108],"159":[2,108],"160":[2,108],"161":[2,108]},{"1":[2,109],"4":[2,109],"28":[2,109],"29":[2,109],"30":186,"31":[1,85],"48":[2,109],"56":[2,109],"59":[2,109],"70":[2,109],"71":[2,109],"72":[2,109],"73":[2,109],"76":[2,109],"77":[2,109],"78":[2,109],"79":[2,109],"82":[2,109],"90":[2,109],"92":[2,109],"97":[2,109],"105":[2,109],"107":[2,109],"108":[2,109],"109":[2,109],"112":[2,109],"116":[2,109],"117":[2,109],"118":[2,109],"125":[2,109],"126":[2,109],"127":[2,109],"129":[2,109],"130":[2,109],"132":[2,109],"133":[2,109],"136":[2,109],"137":[2,109],"138":[2,109],"139":[2,109],"140":[2,109],"141":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"147":[2,109],"148":[2,109],"149":[2,109],"150":[2,109],"151":[2,109],"152":[2,109],"153":[2,109],"154":[2,109],"155":[2,109],"156":[2,109],"157":[2,109],"158":[2,109],"159":[2,109],"160":[2,109],"161":[2,109]},{"89":187,"90":[1,135]},{"28":[2,52]},{"28":[2,53]},{"8":188,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":189,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":190,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":191,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"6":192,"8":193,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,6],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,62],"4":[2,62],"28":[2,62],"29":[2,62],"45":[2,62],"48":[2,62],"56":[2,62],"59":[2,62],"70":[2,62],"71":[2,62],"72":[2,62],"73":[2,62],"76":[2,62],"77":[2,62],"78":[2,62],"79":[2,62],"82":[2,62],"84":[2,62],"90":[2,62],"92":[2,62],"97":[2,62],"105":[2,62],"107":[2,62],"108":[2,62],"109":[2,62],"112":[2,62],"116":[2,62],"117":[2,62],"118":[2,62],"125":[2,62],"126":[2,62],"127":[2,62],"129":[2,62],"130":[2,62],"132":[2,62],"133":[2,62],"136":[2,62],"137":[2,62],"138":[2,62],"139":[2,62],"140":[2,62],"141":[2,62],"142":[2,62],"143":[2,62],"144":[2,62],"145":[2,62],"146":[2,62],"147":[2,62],"148":[2,62],"149":[2,62],"150":[2,62],"151":[2,62],"152":[2,62],"153":[2,62],"154":[2,62],"155":[2,62],"156":[2,62],"157":[2,62],"158":[2,62],"159":[2,62],"160":[2,62],"161":[2,62]},{"1":[2,65],"4":[2,65],"28":[2,65],"29":[2,65],"45":[2,65],"48":[2,65],"56":[2,65],"59":[2,65],"70":[2,65],"71":[2,65],"72":[2,65],"73":[2,65],"76":[2,65],"77":[2,65],"78":[2,65],"79":[2,65],"82":[2,65],"84":[2,65],"90":[2,65],"92":[2,65],"97":[2,65],"105":[2,65],"107":[2,65],"108":[2,65],"109":[2,65],"112":[2,65],"116":[2,65],"117":[2,65],"118":[2,65],"125":[2,65],"126":[2,65],"127":[2,65],"129":[2,65],"130":[2,65],"132":[2,65],"133":[2,65],"136":[2,65],"137":[2,65],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65]},{"4":[2,85],"28":[2,85],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":195,"56":[2,85],"81":194,"82":[2,85]},{"1":[2,31],"4":[2,31],"28":[2,31],"29":[2,31],"45":[2,31],"48":[2,31],"56":[2,31],"59":[2,31],"70":[2,31],"71":[2,31],"72":[2,31],"73":[2,31],"76":[2,31],"77":[2,31],"78":[2,31],"79":[2,31],"82":[2,31],"90":[2,31],"92":[2,31],"97":[2,31],"105":[2,31],"107":[2,31],"108":[2,31],"109":[2,31],"112":[2,31],"116":[2,31],"117":[2,31],"118":[2,31],"125":[2,31],"126":[2,31],"127":[2,31],"129":[2,31],"130":[2,31],"132":[2,31],"133":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31],"140":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31],"149":[2,31],"150":[2,31],"151":[2,31],"152":[2,31],"153":[2,31],"154":[2,31],"155":[2,31],"156":[2,31],"157":[2,31],"158":[2,31],"159":[2,31],"160":[2,31],"161":[2,31]},{"1":[2,32],"4":[2,32],"28":[2,32],"29":[2,32],"45":[2,32],"48":[2,32],"56":[2,32],"59":[2,32],"70":[2,32],"71":[2,32],"72":[2,32],"73":[2,32],"76":[2,32],"77":[2,32],"78":[2,32],"79":[2,32],"82":[2,32],"90":[2,32],"92":[2,32],"97":[2,32],"105":[2,32],"107":[2,32],"108":[2,32],"109":[2,32],"112":[2,32],"116":[2,32],"117":[2,32],"118":[2,32],"125":[2,32],"126":[2,32],"127":[2,32],"129":[2,32],"130":[2,32],"132":[2,32],"133":[2,32],"136":[2,32],"137":[2,32],"138":[2,32],"139":[2,32],"140":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32],"151":[2,32],"152":[2,32],"153":[2,32],"154":[2,32],"155":[2,32],"156":[2,32],"157":[2,32],"158":[2,32],"159":[2,32],"160":[2,32],"161":[2,32]},{"1":[2,30],"4":[2,30],"28":[2,30],"29":[2,30],"45":[2,30],"48":[2,30],"56":[2,30],"59":[2,30],"70":[2,30],"71":[2,30],"72":[2,30],"73":[2,30],"76":[2,30],"77":[2,30],"78":[2,30],"79":[2,30],"82":[2,30],"84":[2,30],"90":[2,30],"92":[2,30],"97":[2,30],"105":[2,30],"107":[2,30],"108":[2,30],"109":[2,30],"112":[2,30],"116":[2,30],"117":[2,30],"118":[2,30],"125":[2,30],"126":[2,30],"127":[2,30],"129":[2,30],"130":[2,30],"132":[2,30],"133":[2,30],"136":[2,30],"137":[2,30],"138":[2,30],"139":[2,30],"140":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"148":[2,30],"149":[2,30],"150":[2,30],"151":[2,30],"152":[2,30],"153":[2,30],"154":[2,30],"155":[2,30],"156":[2,30],"157":[2,30],"158":[2,30],"159":[2,30],"160":[2,30],"161":[2,30]},{"1":[2,7],"4":[2,7],"7":198,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[2,7],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,4]},{"4":[1,86],"29":[1,199]},{"1":[2,29],"4":[2,29],"28":[2,29],"29":[2,29],"48":[2,29],"56":[2,29],"59":[2,29],"77":[2,29],"82":[2,29],"92":[2,29],"97":[2,29],"101":[2,29],"102":[2,29],"105":[2,29],"107":[2,29],"108":[2,29],"109":[2,29],"112":[2,29],"116":[2,29],"117":[2,29],"118":[2,29],"121":[2,29],"123":[2,29],"125":[2,29],"126":[2,29],"127":[2,29],"129":[2,29],"130":[2,29],"132":[2,29],"133":[2,29],"136":[2,29],"137":[2,29],"138":[2,29],"139":[2,29],"140":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"148":[2,29],"149":[2,29],"150":[2,29],"151":[2,29],"152":[2,29],"153":[2,29],"154":[2,29],"155":[2,29],"156":[2,29],"157":[2,29],"158":[2,29],"159":[2,29],"160":[2,29],"161":[2,29]},{"1":[2,181],"4":[2,181],"28":[2,181],"29":[2,181],"48":[2,181],"56":[2,181],"59":[2,181],"77":[2,181],"82":[2,181],"92":[2,181],"97":[2,181],"105":[2,181],"107":[2,181],"108":[2,181],"109":[2,181],"112":[2,181],"116":[2,181],"117":[2,181],"118":[2,181],"125":[2,181],"126":[2,181],"127":[2,181],"129":[2,181],"130":[2,181],"132":[2,181],"133":[2,181],"136":[2,181],"137":[2,181],"138":[2,181],"139":[2,181],"140":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"148":[2,181],"149":[2,181],"150":[2,181],"151":[2,181],"152":[2,181],"153":[2,181],"154":[2,181],"155":[2,181],"156":[2,181],"157":[2,181],"158":[2,181],"159":[2,181],"160":[2,181],"161":[2,181]},{"1":[2,182],"4":[2,182],"28":[2,182],"29":[2,182],"48":[2,182],"56":[2,182],"59":[2,182],"77":[2,182],"82":[2,182],"92":[2,182],"97":[2,182],"105":[2,182],"107":[2,182],"108":[2,182],"109":[2,182],"112":[2,182],"116":[2,182],"117":[2,182],"118":[2,182],"125":[2,182],"126":[2,182],"127":[2,182],"129":[2,182],"130":[2,182],"132":[2,182],"133":[2,182],"136":[2,182],"137":[2,182],"138":[2,182],"139":[2,182],"140":[2,182],"141":[2,182],"142":[2,182],"143":[2,182],"144":[2,182],"145":[2,182],"146":[2,182],"147":[2,182],"148":[2,182],"149":[2,182],"150":[2,182],"151":[2,182],"152":[2,182],"153":[2,182],"154":[2,182],"155":[2,182],"156":[2,182],"157":[2,182],"158":[2,182],"159":[2,182],"160":[2,182],"161":[2,182]},{"8":200,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":201,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":202,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":203,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":204,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":205,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":206,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":207,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":208,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":209,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":210,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":211,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":212,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":213,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":214,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":215,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":216,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":217,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":218,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,49],"4":[2,49],"8":219,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,49],"29":[2,49],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"48":[2,49],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,49],"59":[2,49],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"77":[2,49],"80":[1,82],"82":[2,49],"83":[1,54],"87":34,"88":[1,35],"92":[2,49],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,49],"99":[1,48],"103":[1,56],"104":[1,68],"105":[2,49],"106":49,"107":[2,49],"108":[2,49],"109":[2,49],"110":50,"111":[1,79],"112":[2,49],"116":[2,49],"117":[2,49],"118":[2,49],"119":[1,52],"124":47,"125":[2,49],"126":[2,49],"127":[2,49],"128":[1,39],"129":[2,49],"130":[2,49],"131":[1,42],"132":[2,49],"133":[2,49],"134":[1,45],"135":[1,46],"136":[2,49],"137":[2,49],"138":[2,49],"139":[2,49],"140":[2,49],"141":[2,49],"142":[2,49],"143":[2,49],"144":[2,49],"145":[2,49],"146":[2,49],"147":[2,49],"148":[2,49],"149":[2,49],"150":[2,49],"151":[2,49],"152":[2,49],"153":[2,49],"154":[2,49],"155":[2,49],"156":[2,49],"157":[2,49],"158":[2,49],"159":[2,49],"160":[2,49],"161":[2,49]},{"8":220,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":221,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":222,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":223,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":224,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":225,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":226,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":227,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":228,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":229,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":230,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"116":[1,231],"117":[1,232]},{"8":233,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":234,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,136],"4":[2,136],"28":[2,136],"29":[2,136],"48":[2,136],"56":[2,136],"59":[2,136],"77":[2,136],"82":[2,136],"92":[2,136],"97":[2,136],"105":[2,136],"107":[2,136],"108":[2,136],"109":[2,136],"112":[2,136],"116":[2,136],"117":[2,136],"118":[2,136],"125":[2,136],"126":[2,136],"127":[2,136],"129":[2,136],"130":[2,136],"132":[2,136],"133":[2,136],"136":[2,136],"137":[2,136],"138":[2,136],"139":[2,136],"140":[2,136],"141":[2,136],"142":[2,136],"143":[2,136],"144":[2,136],"145":[2,136],"146":[2,136],"147":[2,136],"148":[2,136],"149":[2,136],"150":[2,136],"151":[2,136],"152":[2,136],"153":[2,136],"154":[2,136],"155":[2,136],"156":[2,136],"157":[2,136],"158":[2,136],"159":[2,136],"160":[2,136],"161":[2,136]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"113":235,"115":170},{"59":[1,236]},{"8":237,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":238,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,135],"4":[2,135],"28":[2,135],"29":[2,135],"48":[2,135],"56":[2,135],"59":[2,135],"77":[2,135],"82":[2,135],"92":[2,135],"97":[2,135],"105":[2,135],"107":[2,135],"108":[2,135],"109":[2,135],"112":[2,135],"116":[2,135],"117":[2,135],"118":[2,135],"125":[2,135],"126":[2,135],"127":[2,135],"129":[2,135],"130":[2,135],"132":[2,135],"133":[2,135],"136":[2,135],"137":[2,135],"138":[2,135],"139":[2,135],"140":[2,135],"141":[2,135],"142":[2,135],"143":[2,135],"144":[2,135],"145":[2,135],"146":[2,135],"147":[2,135],"148":[2,135],"149":[2,135],"150":[2,135],"151":[2,135],"152":[2,135],"153":[2,135],"154":[2,135],"155":[2,135],"156":[2,135],"157":[2,135],"158":[2,135],"159":[2,135],"160":[2,135],"161":[2,135]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"113":239,"115":170},{"1":[2,104],"4":[2,104],"28":[2,104],"29":[2,104],"48":[2,104],"56":[2,104],"59":[2,104],"70":[2,104],"71":[2,104],"72":[2,104],"73":[2,104],"76":[2,104],"77":[2,104],"78":[2,104],"79":[2,104],"82":[2,104],"90":[2,104],"92":[2,104],"97":[2,104],"105":[2,104],"107":[2,104],"108":[2,104],"109":[2,104],"112":[2,104],"116":[2,104],"117":[2,104],"118":[2,104],"125":[2,104],"126":[2,104],"127":[2,104],"129":[2,104],"130":[2,104],"132":[2,104],"133":[2,104],"136":[2,104],"137":[2,104],"138":[2,104],"139":[2,104],"140":[2,104],"141":[2,104],"142":[2,104],"143":[2,104],"144":[2,104],"145":[2,104],"146":[2,104],"147":[2,104],"148":[2,104],"149":[2,104],"150":[2,104],"151":[2,104],"152":[2,104],"153":[2,104],"154":[2,104],"155":[2,104],"156":[2,104],"157":[2,104],"158":[2,104],"159":[2,104],"160":[2,104],"161":[2,104]},{"1":[2,63],"4":[2,63],"28":[2,63],"29":[2,63],"45":[2,63],"48":[2,63],"56":[2,63],"59":[2,63],"70":[2,63],"71":[2,63],"72":[2,63],"73":[2,63],"76":[2,63],"77":[2,63],"78":[2,63],"79":[2,63],"82":[2,63],"84":[2,63],"90":[2,63],"92":[2,63],"97":[2,63],"105":[2,63],"107":[2,63],"108":[2,63],"109":[2,63],"112":[2,63],"116":[2,63],"117":[2,63],"118":[2,63],"125":[2,63],"126":[2,63],"127":[2,63],"129":[2,63],"130":[2,63],"132":[2,63],"133":[2,63],"136":[2,63],"137":[2,63],"138":[2,63],"139":[2,63],"140":[2,63],"141":[2,63],"142":[2,63],"143":[2,63],"144":[2,63],"145":[2,63],"146":[2,63],"147":[2,63],"148":[2,63],"149":[2,63],"150":[2,63],"151":[2,63],"152":[2,63],"153":[2,63],"154":[2,63],"155":[2,63],"156":[2,63],"157":[2,63],"158":[2,63],"159":[2,63],"160":[2,63],"161":[2,63]},{"4":[2,116],"8":241,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,116],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,116],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"91":240,"92":[2,116],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"30":242,"31":[1,85]},{"30":243,"31":[1,85]},{"1":[2,77],"4":[2,77],"28":[2,77],"29":[2,77],"45":[2,77],"48":[2,77],"56":[2,77],"59":[2,77],"70":[2,77],"71":[2,77],"72":[2,77],"73":[2,77],"76":[2,77],"77":[2,77],"78":[2,77],"79":[2,77],"82":[2,77],"84":[2,77],"90":[2,77],"92":[2,77],"97":[2,77],"105":[2,77],"107":[2,77],"108":[2,77],"109":[2,77],"112":[2,77],"116":[2,77],"117":[2,77],"118":[2,77],"125":[2,77],"126":[2,77],"127":[2,77],"129":[2,77],"130":[2,77],"132":[2,77],"133":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77],"151":[2,77],"152":[2,77],"153":[2,77],"154":[2,77],"155":[2,77],"156":[2,77],"157":[2,77],"158":[2,77],"159":[2,77],"160":[2,77],"161":[2,77]},{"30":244,"31":[1,85]},{"1":[2,79],"4":[2,79],"28":[2,79],"29":[2,79],"45":[2,79],"48":[2,79],"56":[2,79],"59":[2,79],"70":[2,79],"71":[2,79],"72":[2,79],"73":[2,79],"76":[2,79],"77":[2,79],"78":[2,79],"79":[2,79],"82":[2,79],"84":[2,79],"90":[2,79],"92":[2,79],"97":[2,79],"105":[2,79],"107":[2,79],"108":[2,79],"109":[2,79],"112":[2,79],"116":[2,79],"117":[2,79],"118":[2,79],"125":[2,79],"126":[2,79],"127":[2,79],"129":[2,79],"130":[2,79],"132":[2,79],"133":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79],"151":[2,79],"152":[2,79],"153":[2,79],"154":[2,79],"155":[2,79],"156":[2,79],"157":[2,79],"158":[2,79],"159":[2,79],"160":[2,79],"161":[2,79]},{"1":[2,80],"4":[2,80],"28":[2,80],"29":[2,80],"45":[2,80],"48":[2,80],"56":[2,80],"59":[2,80],"70":[2,80],"71":[2,80],"72":[2,80],"73":[2,80],"76":[2,80],"77":[2,80],"78":[2,80],"79":[2,80],"82":[2,80],"84":[2,80],"90":[2,80],"92":[2,80],"97":[2,80],"105":[2,80],"107":[2,80],"108":[2,80],"109":[2,80],"112":[2,80],"116":[2,80],"117":[2,80],"118":[2,80],"125":[2,80],"126":[2,80],"127":[2,80],"129":[2,80],"130":[2,80],"132":[2,80],"133":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80],"140":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80],"151":[2,80],"152":[2,80],"153":[2,80],"154":[2,80],"155":[2,80],"156":[2,80],"157":[2,80],"158":[2,80],"159":[2,80],"160":[2,80],"161":[2,80]},{"8":245,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"74":246,"76":[1,247],"78":[1,143],"79":[1,144]},{"74":248,"76":[1,247],"78":[1,143],"79":[1,144]},{"8":249,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,105],"4":[2,105],"28":[2,105],"29":[2,105],"48":[2,105],"56":[2,105],"59":[2,105],"70":[2,105],"71":[2,105],"72":[2,105],"73":[2,105],"76":[2,105],"77":[2,105],"78":[2,105],"79":[2,105],"82":[2,105],"90":[2,105],"92":[2,105],"97":[2,105],"105":[2,105],"107":[2,105],"108":[2,105],"109":[2,105],"112":[2,105],"116":[2,105],"117":[2,105],"118":[2,105],"125":[2,105],"126":[2,105],"127":[2,105],"129":[2,105],"130":[2,105],"132":[2,105],"133":[2,105],"136":[2,105],"137":[2,105],"138":[2,105],"139":[2,105],"140":[2,105],"141":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"148":[2,105],"149":[2,105],"150":[2,105],"151":[2,105],"152":[2,105],"153":[2,105],"154":[2,105],"155":[2,105],"156":[2,105],"157":[2,105],"158":[2,105],"159":[2,105],"160":[2,105],"161":[2,105]},{"1":[2,64],"4":[2,64],"28":[2,64],"29":[2,64],"45":[2,64],"48":[2,64],"56":[2,64],"59":[2,64],"70":[2,64],"71":[2,64],"72":[2,64],"73":[2,64],"76":[2,64],"77":[2,64],"78":[2,64],"79":[2,64],"82":[2,64],"84":[2,64],"90":[2,64],"92":[2,64],"97":[2,64],"105":[2,64],"107":[2,64],"108":[2,64],"109":[2,64],"112":[2,64],"116":[2,64],"117":[2,64],"118":[2,64],"125":[2,64],"126":[2,64],"127":[2,64],"129":[2,64],"130":[2,64],"132":[2,64],"133":[2,64],"136":[2,64],"137":[2,64],"138":[2,64],"139":[2,64],"140":[2,64],"141":[2,64],"142":[2,64],"143":[2,64],"144":[2,64],"145":[2,64],"146":[2,64],"147":[2,64],"148":[2,64],"149":[2,64],"150":[2,64],"151":[2,64],"152":[2,64],"153":[2,64],"154":[2,64],"155":[2,64],"156":[2,64],"157":[2,64],"158":[2,64],"159":[2,64],"160":[2,64],"161":[2,64]},{"1":[2,101],"4":[2,101],"28":[2,101],"29":[2,101],"48":[2,101],"56":[2,101],"59":[2,101],"61":147,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,101],"78":[1,143],"79":[1,144],"82":[2,101],"89":146,"90":[1,135],"92":[2,101],"97":[2,101],"105":[2,101],"107":[2,101],"108":[2,101],"109":[2,101],"112":[2,101],"116":[2,101],"117":[2,101],"118":[2,101],"125":[2,101],"126":[2,101],"127":[2,101],"129":[2,101],"130":[2,101],"132":[2,101],"133":[2,101],"136":[2,101],"137":[2,101],"138":[2,101],"139":[2,101],"140":[2,101],"141":[2,101],"142":[2,101],"143":[2,101],"144":[2,101],"145":[2,101],"146":[2,101],"147":[2,101],"148":[2,101],"149":[2,101],"150":[2,101],"151":[2,101],"152":[2,101],"153":[2,101],"154":[2,101],"155":[2,101],"156":[2,101],"157":[2,101],"158":[2,101],"159":[2,101],"160":[2,101],"161":[2,101]},{"1":[2,102],"4":[2,102],"28":[2,102],"29":[2,102],"48":[2,102],"56":[2,102],"59":[2,102],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,102],"78":[1,143],"79":[1,144],"82":[2,102],"89":133,"90":[1,135],"92":[2,102],"97":[2,102],"105":[2,102],"107":[2,102],"108":[2,102],"109":[2,102],"112":[2,102],"116":[2,102],"117":[2,102],"118":[2,102],"125":[2,102],"126":[2,102],"127":[2,102],"129":[2,102],"130":[2,102],"132":[2,102],"133":[2,102],"136":[2,102],"137":[2,102],"138":[2,102],"139":[2,102],"140":[2,102],"141":[2,102],"142":[2,102],"143":[2,102],"144":[2,102],"145":[2,102],"146":[2,102],"147":[2,102],"148":[2,102],"149":[2,102],"150":[2,102],"151":[2,102],"152":[2,102],"153":[2,102],"154":[2,102],"155":[2,102],"156":[2,102],"157":[2,102],"158":[2,102],"159":[2,102],"160":[2,102],"161":[2,102]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"48":[2,69],"56":[2,69],"59":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"77":[2,69],"78":[2,69],"79":[2,69],"82":[2,69],"90":[2,69],"92":[2,69],"97":[2,69],"105":[2,69],"107":[2,69],"108":[2,69],"109":[2,69],"112":[2,69],"116":[2,69],"117":[2,69],"118":[2,69],"125":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"132":[2,69],"133":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69],"140":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69]},{"1":[2,66],"4":[2,66],"28":[2,66],"29":[2,66],"48":[2,66],"56":[2,66],"59":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,66],"78":[2,66],"79":[2,66],"82":[2,66],"90":[2,66],"92":[2,66],"97":[2,66],"105":[2,66],"107":[2,66],"108":[2,66],"109":[2,66],"112":[2,66],"116":[2,66],"117":[2,66],"118":[2,66],"125":[2,66],"126":[2,66],"127":[2,66],"129":[2,66],"130":[2,66],"132":[2,66],"133":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66]},{"51":[1,250],"56":[1,251]},{"51":[2,57],"56":[2,57],"59":[1,252]},{"51":[2,59],"56":[2,59],"59":[2,59]},{"1":[2,51],"4":[2,51],"28":[2,51],"29":[2,51],"48":[2,51],"56":[2,51],"59":[2,51],"77":[2,51],"82":[2,51],"92":[2,51],"97":[2,51],"105":[2,51],"107":[2,51],"108":[2,51],"109":[2,51],"112":[2,51],"116":[2,51],"117":[2,51],"118":[2,51],"125":[2,51],"126":[2,51],"127":[2,51],"129":[2,51],"130":[2,51],"132":[2,51],"133":[2,51],"136":[2,51],"137":[2,51],"138":[2,51],"139":[2,51],"140":[2,51],"141":[2,51],"142":[2,51],"143":[2,51],"144":[2,51],"145":[2,51],"146":[2,51],"147":[2,51],"148":[2,51],"149":[2,51],"150":[2,51],"151":[2,51],"152":[2,51],"153":[2,51],"154":[2,51],"155":[2,51],"156":[2,51],"157":[2,51],"158":[2,51],"159":[2,51],"160":[2,51],"161":[2,51]},{"1":[2,172],"4":[2,172],"28":[2,172],"29":[2,172],"48":[1,111],"56":[2,172],"59":[2,172],"77":[2,172],"82":[2,172],"92":[2,172],"97":[2,172],"105":[2,172],"106":126,"107":[2,172],"108":[2,172],"109":[2,172],"112":[2,172],"116":[2,172],"117":[2,172],"118":[2,172],"125":[2,172],"126":[2,172],"129":[2,172],"130":[2,172],"136":[2,172],"137":[2,172],"138":[2,172],"139":[2,172],"140":[2,172],"141":[2,172],"142":[2,172],"143":[2,172],"144":[2,172],"145":[2,172],"146":[2,172],"147":[2,172],"148":[2,172],"149":[2,172],"150":[2,172],"151":[2,172],"152":[2,172],"153":[2,172],"154":[2,172],"155":[2,172],"156":[2,172],"157":[2,172],"158":[2,172],"159":[2,172],"160":[2,172],"161":[2,172]},{"106":131,"107":[1,77],"109":[1,78],"112":[1,132],"125":[1,129],"126":[1,130]},{"1":[2,173],"4":[2,173],"28":[2,173],"29":[2,173],"48":[1,111],"56":[2,173],"59":[2,173],"77":[2,173],"82":[2,173],"92":[2,173],"97":[2,173],"105":[2,173],"106":126,"107":[2,173],"108":[2,173],"109":[2,173],"112":[2,173],"116":[2,173],"117":[2,173],"118":[2,173],"125":[2,173],"126":[2,173],"129":[2,173],"130":[2,173],"136":[2,173],"137":[2,173],"138":[2,173],"139":[2,173],"140":[2,173],"141":[2,173],"142":[2,173],"143":[2,173],"144":[2,173],"145":[2,173],"146":[2,173],"147":[2,173],"148":[2,173],"149":[2,173],"150":[2,173],"151":[2,173],"152":[2,173],"153":[2,173],"154":[2,173],"155":[2,173],"156":[2,173],"157":[2,173],"158":[2,173],"159":[2,173],"160":[2,173],"161":[2,173]},{"1":[2,174],"4":[2,174],"28":[2,174],"29":[2,174],"48":[1,111],"56":[2,174],"59":[2,174],"77":[2,174],"82":[2,174],"92":[2,174],"97":[2,174],"105":[2,174],"106":126,"107":[2,174],"108":[2,174],"109":[2,174],"112":[2,174],"116":[2,174],"117":[2,174],"118":[2,174],"125":[2,174],"126":[2,174],"129":[2,174],"130":[2,174],"136":[2,174],"137":[2,174],"138":[2,174],"139":[2,174],"140":[2,174],"141":[2,174],"142":[2,174],"143":[2,174],"144":[2,174],"145":[2,174],"146":[2,174],"147":[2,174],"148":[2,174],"149":[2,174],"150":[2,174],"151":[2,174],"152":[2,174],"153":[2,174],"154":[2,174],"155":[2,174],"156":[2,174],"157":[2,174],"158":[2,174],"159":[2,174],"160":[2,174],"161":[2,174]},{"1":[2,175],"4":[2,175],"28":[2,175],"29":[2,175],"48":[1,111],"56":[2,175],"59":[2,175],"77":[2,175],"82":[2,175],"92":[2,175],"97":[2,175],"105":[2,175],"106":126,"107":[2,175],"108":[2,175],"109":[2,175],"112":[2,175],"116":[2,175],"117":[2,175],"118":[2,175],"125":[2,175],"126":[2,175],"129":[2,175],"130":[2,175],"136":[2,175],"137":[2,175],"138":[2,175],"139":[2,175],"140":[2,175],"141":[2,175],"142":[2,175],"143":[2,175],"144":[2,175],"145":[2,175],"146":[2,175],"147":[2,175],"148":[2,175],"149":[2,175],"150":[2,175],"151":[2,175],"152":[2,175],"153":[2,175],"154":[2,175],"155":[2,175],"156":[2,175],"157":[2,175],"158":[2,175],"159":[2,175],"160":[2,175],"161":[2,175]},{"1":[2,176],"4":[2,176],"28":[2,176],"29":[2,176],"48":[1,111],"56":[2,176],"59":[2,176],"77":[2,176],"82":[2,176],"92":[2,176],"97":[2,176],"105":[2,176],"106":126,"107":[2,176],"108":[2,176],"109":[2,176],"112":[2,176],"116":[2,176],"117":[2,176],"118":[2,176],"125":[2,176],"126":[2,176],"129":[2,176],"130":[2,176],"136":[2,176],"137":[2,176],"138":[2,176],"139":[2,176],"140":[2,176],"141":[2,176],"142":[2,176],"143":[2,176],"144":[2,176],"145":[2,176],"146":[2,176],"147":[2,176],"148":[2,176],"149":[2,176],"150":[2,176],"151":[2,176],"152":[2,176],"153":[2,176],"154":[2,176],"155":[2,176],"156":[2,176],"157":[2,176],"158":[2,176],"159":[2,176],"160":[2,176],"161":[2,176]},{"1":[2,177],"4":[2,177],"28":[2,177],"29":[2,177],"48":[1,111],"56":[2,177],"59":[2,177],"77":[2,177],"82":[2,177],"92":[2,177],"97":[2,177],"105":[2,177],"106":126,"107":[2,177],"108":[2,177],"109":[2,177],"112":[2,177],"116":[2,177],"117":[2,177],"118":[2,177],"125":[2,177],"126":[2,177],"129":[2,177],"130":[2,177],"136":[2,177],"137":[2,177],"138":[2,177],"139":[2,177],"140":[2,177],"141":[2,177],"142":[2,177],"143":[2,177],"144":[2,177],"145":[2,177],"146":[2,177],"147":[2,177],"148":[2,177],"149":[2,177],"150":[2,177],"151":[2,177],"152":[2,177],"153":[2,177],"154":[2,177],"155":[2,177],"156":[2,177],"157":[2,177],"158":[2,177],"159":[2,177],"160":[2,177],"161":[2,177]},{"1":[2,178],"4":[2,178],"28":[2,178],"29":[2,178],"48":[1,111],"56":[2,178],"59":[2,178],"77":[2,178],"82":[2,178],"92":[2,178],"97":[2,178],"105":[2,178],"106":126,"107":[2,178],"108":[2,178],"109":[2,178],"112":[2,178],"116":[2,178],"117":[2,178],"118":[2,178],"125":[2,178],"126":[2,178],"129":[2,178],"130":[2,178],"136":[2,178],"137":[2,178],"138":[2,178],"139":[2,178],"140":[2,178],"141":[2,178],"142":[2,178],"143":[2,178],"144":[2,178],"145":[2,178],"146":[2,178],"147":[2,178],"148":[2,178],"149":[2,178],"150":[2,178],"151":[2,178],"152":[2,178],"153":[2,178],"154":[2,178],"155":[2,178],"156":[2,178],"157":[2,178],"158":[2,178],"159":[2,178],"160":[2,178],"161":[2,178]},{"1":[2,179],"4":[2,179],"28":[2,179],"29":[2,179],"48":[1,111],"56":[2,179],"59":[2,179],"77":[2,179],"82":[2,179],"92":[2,179],"97":[2,179],"105":[2,179],"106":126,"107":[2,179],"108":[2,179],"109":[2,179],"112":[2,179],"116":[2,179],"117":[2,179],"118":[2,179],"125":[2,179],"126":[2,179],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,179],"150":[2,179],"151":[2,179],"152":[2,179],"153":[2,179],"154":[2,179],"155":[2,179],"156":[2,179],"157":[2,179],"158":[2,179],"159":[2,179],"160":[2,179],"161":[1,120]},{"1":[2,180],"4":[2,180],"28":[2,180],"29":[2,180],"48":[1,111],"56":[2,180],"59":[2,180],"77":[2,180],"82":[2,180],"92":[2,180],"97":[2,180],"105":[2,180],"106":126,"107":[2,180],"108":[2,180],"109":[2,180],"112":[2,180],"116":[2,180],"117":[2,180],"118":[2,180],"125":[2,180],"126":[2,180],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,180],"150":[2,180],"151":[2,180],"152":[2,180],"153":[2,180],"154":[2,180],"155":[2,180],"156":[2,180],"157":[2,180],"158":[2,180],"159":[2,180],"160":[2,180],"161":[1,120]},{"6":254,"28":[1,6],"125":[1,253]},{"100":255,"101":[1,256],"102":[1,257]},{"1":[2,134],"4":[2,134],"28":[2,134],"29":[2,134],"48":[2,134],"56":[2,134],"59":[2,134],"77":[2,134],"82":[2,134],"92":[2,134],"97":[2,134],"105":[2,134],"107":[2,134],"108":[2,134],"109":[2,134],"112":[2,134],"116":[2,134],"117":[2,134],"118":[2,134],"125":[2,134],"126":[2,134],"127":[2,134],"129":[2,134],"130":[2,134],"132":[2,134],"133":[2,134],"136":[2,134],"137":[2,134],"138":[2,134],"139":[2,134],"140":[2,134],"141":[2,134],"142":[2,134],"143":[2,134],"144":[2,134],"145":[2,134],"146":[2,134],"147":[2,134],"148":[2,134],"149":[2,134],"150":[2,134],"151":[2,134],"152":[2,134],"153":[2,134],"154":[2,134],"155":[2,134],"156":[2,134],"157":[2,134],"158":[2,134],"159":[2,134],"160":[2,134],"161":[2,134]},{"114":258,"116":[1,259],"117":[1,260]},{"56":[1,261],"116":[2,146],"117":[2,146]},{"56":[2,143],"116":[2,143],"117":[2,143]},{"56":[2,144],"116":[2,144],"117":[2,144]},{"56":[2,145],"116":[2,145],"117":[2,145]},{"4":[2,116],"8":241,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,116],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,116],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"91":185,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,116],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"28":[1,262],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"120":263,"122":264,"123":[1,265]},{"14":266,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":151,"62":180,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"1":[2,90],"4":[2,90],"28":[1,268],"29":[2,90],"48":[2,90],"56":[2,90],"59":[2,90],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,90],"78":[2,66],"79":[2,66],"82":[2,90],"84":[1,267],"90":[2,66],"92":[2,90],"97":[2,90],"105":[2,90],"107":[2,90],"108":[2,90],"109":[2,90],"112":[2,90],"116":[2,90],"117":[2,90],"118":[2,90],"125":[2,90],"126":[2,90],"127":[2,90],"129":[2,90],"130":[2,90],"132":[2,90],"133":[2,90],"136":[2,90],"137":[2,90],"138":[2,90],"139":[2,90],"140":[2,90],"141":[2,90],"142":[2,90],"143":[2,90],"144":[2,90],"145":[2,90],"146":[2,90],"147":[2,90],"148":[2,90],"149":[2,90],"150":[2,90],"151":[2,90],"152":[2,90],"153":[2,90],"154":[2,90],"155":[2,90],"156":[2,90],"157":[2,90],"158":[2,90],"159":[2,90],"160":[2,90],"161":[2,90]},{"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"78":[1,143],"79":[1,144],"89":133,"90":[1,135]},{"61":147,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"78":[1,143],"79":[1,144],"89":146,"90":[1,135]},{"1":[2,47],"4":[2,47],"29":[2,47],"48":[1,111],"59":[1,128],"105":[2,47],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[2,47],"126":[2,47],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,128],"4":[2,128],"29":[2,128],"48":[1,111],"59":[1,128],"105":[2,128],"106":126,"107":[2,128],"109":[2,128],"112":[2,128],"116":[1,121],"117":[1,122],"125":[2,128],"126":[2,128],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"105":[1,269]},{"4":[2,117],"28":[2,117],"48":[1,111],"56":[2,117],"59":[1,270],"97":[2,117],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,54],"28":[2,54],"55":271,"56":[1,272],"97":[2,54]},{"1":[2,110],"4":[2,110],"28":[2,110],"29":[2,110],"45":[2,110],"48":[2,110],"56":[2,110],"59":[2,110],"70":[2,110],"71":[2,110],"72":[2,110],"73":[2,110],"76":[2,110],"77":[2,110],"78":[2,110],"79":[2,110],"82":[2,110],"84":[2,110],"90":[2,110],"92":[2,110],"97":[2,110],"105":[2,110],"107":[2,110],"108":[2,110],"109":[2,110],"112":[2,110],"116":[2,110],"117":[2,110],"118":[2,110],"125":[2,110],"126":[2,110],"127":[2,110],"129":[2,110],"130":[2,110],"132":[2,110],"133":[2,110],"136":[2,110],"137":[2,110],"138":[2,110],"139":[2,110],"140":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"147":[2,110],"148":[2,110],"149":[2,110],"150":[2,110],"151":[2,110],"152":[2,110],"153":[2,110],"154":[2,110],"155":[2,110],"156":[2,110],"157":[2,110],"158":[2,110],"159":[2,110],"160":[2,110],"161":[2,110]},{"1":[2,107],"4":[2,107],"28":[2,107],"29":[2,107],"48":[2,107],"56":[2,107],"59":[2,107],"77":[2,107],"82":[2,107],"92":[2,107],"97":[2,107],"105":[2,107],"107":[2,107],"108":[2,107],"109":[2,107],"112":[2,107],"116":[2,107],"117":[2,107],"118":[2,107],"125":[2,107],"126":[2,107],"127":[2,107],"129":[2,107],"130":[2,107],"132":[2,107],"133":[2,107],"136":[2,107],"137":[2,107],"138":[2,107],"139":[2,107],"140":[2,107],"141":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"148":[2,107],"149":[2,107],"150":[2,107],"151":[2,107],"152":[2,107],"153":[2,107],"154":[2,107],"155":[2,107],"156":[2,107],"157":[2,107],"158":[2,107],"159":[2,107],"160":[2,107],"161":[2,107]},{"6":273,"28":[1,6],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"6":274,"28":[1,6],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,130],"4":[2,130],"28":[2,130],"29":[2,130],"48":[1,111],"56":[2,130],"59":[1,128],"77":[2,130],"82":[2,130],"92":[2,130],"97":[2,130],"105":[2,130],"106":126,"107":[1,77],"108":[1,275],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,130],"125":[2,130],"126":[2,130],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,132],"4":[2,132],"28":[2,132],"29":[2,132],"48":[1,111],"56":[2,132],"59":[1,128],"77":[2,132],"82":[2,132],"92":[2,132],"97":[2,132],"105":[2,132],"106":126,"107":[1,77],"108":[1,276],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,132],"125":[2,132],"126":[2,132],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,138],"4":[2,138],"28":[2,138],"29":[2,138],"48":[2,138],"56":[2,138],"59":[2,138],"77":[2,138],"82":[2,138],"92":[2,138],"97":[2,138],"105":[2,138],"107":[2,138],"108":[2,138],"109":[2,138],"112":[2,138],"116":[2,138],"117":[2,138],"118":[2,138],"125":[2,138],"126":[2,138],"127":[2,138],"129":[2,138],"130":[2,138],"132":[2,138],"133":[2,138],"136":[2,138],"137":[2,138],"138":[2,138],"139":[2,138],"140":[2,138],"141":[2,138],"142":[2,138],"143":[2,138],"144":[2,138],"145":[2,138],"146":[2,138],"147":[2,138],"148":[2,138],"149":[2,138],"150":[2,138],"151":[2,138],"152":[2,138],"153":[2,138],"154":[2,138],"155":[2,138],"156":[2,138],"157":[2,138],"158":[2,138],"159":[2,138],"160":[2,138],"161":[2,138]},{"1":[2,139],"4":[2,139],"28":[2,139],"29":[2,139],"48":[1,111],"56":[2,139],"59":[1,128],"77":[2,139],"82":[2,139],"92":[2,139],"97":[2,139],"105":[2,139],"106":126,"107":[1,77],"108":[2,139],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,139],"125":[2,139],"126":[2,139],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,54],"28":[2,54],"55":277,"56":[1,278],"82":[2,54]},{"4":[2,86],"28":[2,86],"29":[2,86],"56":[2,86],"82":[2,86]},{"4":[2,43],"28":[2,43],"29":[2,43],"45":[1,279],"56":[2,43],"82":[2,43]},{"4":[2,44],"28":[2,44],"29":[2,44],"45":[1,280],"56":[2,44],"82":[2,44]},{"1":[2,6],"4":[2,6],"29":[2,6]},{"1":[2,28],"4":[2,28],"28":[2,28],"29":[2,28],"48":[2,28],"56":[2,28],"59":[2,28],"77":[2,28],"82":[2,28],"92":[2,28],"97":[2,28],"101":[2,28],"102":[2,28],"105":[2,28],"107":[2,28],"108":[2,28],"109":[2,28],"112":[2,28],"116":[2,28],"117":[2,28],"118":[2,28],"121":[2,28],"123":[2,28],"125":[2,28],"126":[2,28],"127":[2,28],"129":[2,28],"130":[2,28],"132":[2,28],"133":[2,28],"136":[2,28],"137":[2,28],"138":[2,28],"139":[2,28],"140":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"148":[2,28],"149":[2,28],"150":[2,28],"151":[2,28],"152":[2,28],"153":[2,28],"154":[2,28],"155":[2,28],"156":[2,28],"157":[2,28],"158":[2,28],"159":[2,28],"160":[2,28],"161":[2,28]},{"1":[2,183],"4":[2,183],"28":[2,183],"29":[2,183],"48":[1,111],"56":[2,183],"59":[2,183],"77":[2,183],"82":[2,183],"92":[2,183],"97":[2,183],"105":[2,183],"106":126,"107":[2,183],"108":[2,183],"109":[2,183],"112":[2,183],"116":[2,183],"117":[2,183],"118":[2,183],"125":[2,183],"126":[2,183],"127":[1,123],"129":[2,183],"130":[2,183],"132":[1,90],"133":[1,91],"136":[2,183],"137":[2,183],"138":[2,183],"139":[2,183],"140":[2,183],"141":[2,183],"142":[2,183],"143":[2,183],"144":[2,183],"145":[2,183],"146":[2,183],"147":[2,183],"148":[2,183],"149":[2,183],"150":[2,183],"151":[2,183],"152":[2,183],"153":[2,183],"154":[2,183],"155":[2,183],"156":[2,183],"157":[2,183],"158":[2,183],"159":[2,183],"160":[2,183],"161":[2,183]},{"1":[2,184],"4":[2,184],"28":[2,184],"29":[2,184],"48":[1,111],"56":[2,184],"59":[2,184],"77":[2,184],"82":[2,184],"92":[2,184],"97":[2,184],"105":[2,184],"106":126,"107":[2,184],"108":[2,184],"109":[2,184],"112":[2,184],"116":[2,184],"117":[2,184],"118":[2,184],"125":[2,184],"126":[2,184],"127":[1,123],"129":[2,184],"130":[2,184],"132":[1,90],"133":[1,91],"136":[2,184],"137":[2,184],"138":[2,184],"139":[2,184],"140":[2,184],"141":[2,184],"142":[2,184],"143":[2,184],"144":[2,184],"145":[2,184],"146":[2,184],"147":[2,184],"148":[2,184],"149":[2,184],"150":[2,184],"151":[2,184],"152":[2,184],"153":[2,184],"154":[2,184],"155":[2,184],"156":[2,184],"157":[2,184],"158":[2,184],"159":[2,184],"160":[2,184],"161":[2,184]},{"1":[2,185],"4":[2,185],"28":[2,185],"29":[2,185],"48":[1,111],"56":[2,185],"59":[2,185],"77":[2,185],"82":[2,185],"92":[2,185],"97":[2,185],"105":[2,185],"106":126,"107":[2,185],"108":[2,185],"109":[2,185],"112":[2,185],"116":[2,185],"117":[2,185],"118":[2,185],"125":[2,185],"126":[2,185],"127":[1,123],"129":[2,185],"130":[2,185],"132":[1,90],"133":[1,91],"136":[2,185],"137":[2,185],"138":[2,185],"139":[2,185],"140":[2,185],"141":[2,185],"142":[2,185],"143":[2,185],"144":[2,185],"145":[2,185],"146":[2,185],"147":[2,185],"148":[2,185],"149":[2,185],"150":[2,185],"151":[2,185],"152":[2,185],"153":[2,185],"154":[2,185],"155":[2,185],"156":[2,185],"157":[2,185],"158":[2,185],"159":[2,185],"160":[2,185],"161":[2,185]},{"1":[2,186],"4":[2,186],"28":[2,186],"29":[2,186],"48":[1,111],"56":[2,186],"59":[2,186],"77":[2,186],"82":[2,186],"92":[2,186],"97":[2,186],"105":[2,186],"106":126,"107":[2,186],"108":[2,186],"109":[2,186],"112":[2,186],"116":[2,186],"117":[2,186],"118":[2,186],"125":[2,186],"126":[2,186],"127":[1,123],"129":[2,186],"130":[2,186],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,186],"140":[2,186],"141":[2,186],"142":[2,186],"143":[2,186],"144":[2,186],"145":[2,186],"146":[2,186],"147":[2,186],"148":[2,186],"149":[2,186],"150":[2,186],"151":[2,186],"152":[2,186],"153":[2,186],"154":[2,186],"155":[2,186],"156":[2,186],"157":[2,186],"158":[2,186],"159":[2,186],"160":[2,186],"161":[2,186]},{"1":[2,187],"4":[2,187],"28":[2,187],"29":[2,187],"48":[1,111],"56":[2,187],"59":[2,187],"77":[2,187],"82":[2,187],"92":[2,187],"97":[2,187],"105":[2,187],"106":126,"107":[2,187],"108":[2,187],"109":[2,187],"112":[2,187],"116":[2,187],"117":[2,187],"118":[2,187],"125":[2,187],"126":[2,187],"127":[1,123],"129":[2,187],"130":[2,187],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,187],"140":[2,187],"141":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"146":[2,187],"147":[2,187],"148":[2,187],"149":[2,187],"150":[2,187],"151":[2,187],"152":[2,187],"153":[2,187],"154":[2,187],"155":[2,187],"156":[2,187],"157":[2,187],"158":[2,187],"159":[2,187],"160":[2,187],"161":[2,187]},{"1":[2,188],"4":[2,188],"28":[2,188],"29":[2,188],"48":[1,111],"56":[2,188],"59":[2,188],"77":[2,188],"82":[2,188],"92":[2,188],"97":[2,188],"105":[2,188],"106":126,"107":[2,188],"108":[2,188],"109":[2,188],"112":[2,188],"116":[2,188],"117":[2,188],"118":[2,188],"125":[2,188],"126":[2,188],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,188],"140":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"147":[2,188],"148":[2,188],"149":[2,188],"150":[2,188],"151":[2,188],"152":[2,188],"153":[2,188],"154":[2,188],"155":[2,188],"156":[2,188],"157":[2,188],"158":[2,188],"159":[2,188],"160":[2,188],"161":[2,188]},{"1":[2,189],"4":[2,189],"28":[2,189],"29":[2,189],"48":[1,111],"56":[2,189],"59":[2,189],"77":[2,189],"82":[2,189],"92":[2,189],"97":[2,189],"105":[2,189],"106":126,"107":[2,189],"108":[2,189],"109":[2,189],"112":[2,189],"116":[2,189],"117":[2,189],"118":[2,189],"125":[2,189],"126":[2,189],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,189],"140":[2,189],"141":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"148":[2,189],"149":[2,189],"150":[2,189],"151":[2,189],"152":[2,189],"153":[2,189],"154":[2,189],"155":[2,189],"156":[2,189],"157":[2,189],"158":[2,189],"159":[2,189],"160":[2,189],"161":[2,189]},{"1":[2,190],"4":[2,190],"28":[2,190],"29":[2,190],"48":[1,111],"56":[2,190],"59":[2,190],"77":[2,190],"82":[2,190],"92":[2,190],"97":[2,190],"105":[2,190],"106":126,"107":[2,190],"108":[2,190],"109":[2,190],"112":[2,190],"116":[2,190],"117":[2,190],"118":[2,190],"125":[2,190],"126":[2,190],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,190],"140":[2,190],"141":[2,190],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"148":[2,190],"149":[2,190],"150":[2,190],"151":[2,190],"152":[2,190],"153":[2,190],"154":[2,190],"155":[2,190],"156":[2,190],"157":[2,190],"158":[2,190],"159":[2,190],"160":[2,190],"161":[2,190]},{"1":[2,191],"4":[2,191],"28":[2,191],"29":[2,191],"48":[1,111],"56":[2,191],"59":[2,191],"77":[2,191],"82":[2,191],"92":[2,191],"97":[2,191],"105":[2,191],"106":126,"107":[2,191],"108":[2,191],"109":[2,191],"112":[2,191],"116":[2,191],"117":[2,191],"118":[2,191],"125":[2,191],"126":[2,191],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"148":[2,191],"149":[2,191],"150":[2,191],"151":[2,191],"152":[2,191],"153":[2,191],"154":[2,191],"155":[2,191],"156":[2,191],"157":[2,191],"158":[2,191],"159":[2,191],"160":[2,191],"161":[2,191]},{"1":[2,192],"4":[2,192],"28":[2,192],"29":[2,192],"48":[1,111],"56":[2,192],"59":[2,192],"77":[2,192],"82":[2,192],"92":[2,192],"97":[2,192],"105":[2,192],"106":126,"107":[2,192],"108":[2,192],"109":[2,192],"112":[2,192],"116":[2,192],"117":[2,192],"118":[2,192],"125":[2,192],"126":[2,192],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[2,192],"143":[2,192],"144":[2,192],"145":[2,192],"146":[2,192],"147":[2,192],"148":[2,192],"149":[2,192],"150":[2,192],"151":[2,192],"152":[2,192],"153":[2,192],"154":[2,192],"155":[2,192],"156":[2,192],"157":[2,192],"158":[2,192],"159":[2,192],"160":[2,192],"161":[2,192]},{"1":[2,193],"4":[2,193],"28":[2,193],"29":[2,193],"48":[1,111],"56":[2,193],"59":[2,193],"77":[2,193],"82":[2,193],"92":[2,193],"97":[2,193],"105":[2,193],"106":126,"107":[2,193],"108":[2,193],"109":[2,193],"112":[2,193],"116":[2,193],"117":[2,193],"118":[2,193],"125":[2,193],"126":[2,193],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[2,193],"143":[2,193],"144":[2,193],"145":[2,193],"146":[2,193],"147":[2,193],"148":[2,193],"149":[2,193],"150":[2,193],"151":[2,193],"152":[2,193],"153":[2,193],"154":[2,193],"155":[2,193],"156":[2,193],"157":[2,193],"158":[2,193],"159":[2,193],"160":[2,193],"161":[2,193]},{"1":[2,194],"4":[2,194],"28":[2,194],"29":[2,194],"48":[1,111],"56":[2,194],"59":[2,194],"77":[2,194],"82":[2,194],"92":[2,194],"97":[2,194],"105":[2,194],"106":126,"107":[2,194],"108":[2,194],"109":[2,194],"112":[2,194],"116":[2,194],"117":[2,194],"118":[2,194],"125":[2,194],"126":[2,194],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,194],"146":[2,194],"147":[2,194],"148":[2,194],"149":[2,194],"150":[2,194],"151":[2,194],"152":[2,194],"153":[2,194],"154":[2,194],"155":[2,194],"156":[2,194],"157":[2,194],"158":[2,194],"159":[2,194],"160":[2,194],"161":[2,194]},{"1":[2,195],"4":[2,195],"28":[2,195],"29":[2,195],"48":[1,111],"56":[2,195],"59":[2,195],"77":[2,195],"82":[2,195],"92":[2,195],"97":[2,195],"105":[2,195],"106":126,"107":[2,195],"108":[2,195],"109":[2,195],"112":[2,195],"116":[2,195],"117":[2,195],"118":[2,195],"125":[2,195],"126":[2,195],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,195],"146":[2,195],"147":[2,195],"148":[2,195],"149":[2,195],"150":[2,195],"151":[2,195],"152":[2,195],"153":[2,195],"154":[2,195],"155":[2,195],"156":[2,195],"157":[2,195],"158":[2,195],"159":[2,195],"160":[2,195],"161":[2,195]},{"1":[2,196],"4":[2,196],"28":[2,196],"29":[2,196],"48":[1,111],"56":[2,196],"59":[2,196],"77":[2,196],"82":[2,196],"92":[2,196],"97":[2,196],"105":[2,196],"106":126,"107":[2,196],"108":[2,196],"109":[2,196],"112":[2,196],"116":[2,196],"117":[2,196],"118":[2,196],"125":[2,196],"126":[2,196],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,196],"146":[2,196],"147":[2,196],"148":[2,196],"149":[2,196],"150":[2,196],"151":[2,196],"152":[2,196],"153":[2,196],"154":[2,196],"155":[2,196],"156":[2,196],"157":[2,196],"158":[2,196],"159":[2,196],"160":[2,196],"161":[2,196]},{"1":[2,197],"4":[2,197],"28":[2,197],"29":[2,197],"48":[1,111],"56":[2,197],"59":[2,197],"77":[2,197],"82":[2,197],"92":[2,197],"97":[2,197],"105":[2,197],"106":126,"107":[2,197],"108":[2,197],"109":[2,197],"112":[2,197],"116":[2,197],"117":[2,197],"118":[2,197],"125":[2,197],"126":[2,197],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,197],"146":[2,197],"147":[2,197],"148":[2,197],"149":[2,197],"150":[2,197],"151":[2,197],"152":[2,197],"153":[2,197],"154":[2,197],"155":[2,197],"156":[2,197],"157":[2,197],"158":[2,197],"159":[2,197],"160":[2,197],"161":[2,197]},{"1":[2,198],"4":[2,198],"28":[2,198],"29":[2,198],"48":[1,111],"56":[2,198],"59":[2,198],"77":[2,198],"82":[2,198],"92":[2,198],"97":[2,198],"105":[2,198],"106":126,"107":[2,198],"108":[2,198],"109":[2,198],"112":[2,198],"116":[2,198],"117":[2,198],"118":[2,198],"125":[2,198],"126":[2,198],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,198],"150":[2,198],"151":[2,198],"152":[2,198],"153":[2,198],"154":[2,198],"155":[2,198],"156":[2,198],"157":[2,198],"158":[2,198],"159":[2,198],"160":[2,198],"161":[1,120]},{"1":[2,199],"4":[2,199],"28":[2,199],"29":[2,199],"48":[1,111],"56":[2,199],"59":[2,199],"77":[2,199],"82":[2,199],"92":[2,199],"97":[2,199],"105":[2,199],"106":126,"107":[2,199],"108":[2,199],"109":[2,199],"112":[2,199],"116":[2,199],"117":[2,199],"118":[2,199],"125":[2,199],"126":[2,199],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,199],"150":[2,199],"151":[2,199],"152":[2,199],"153":[2,199],"154":[2,199],"155":[2,199],"156":[2,199],"157":[2,199],"158":[2,199],"159":[2,199],"160":[2,199],"161":[1,120]},{"1":[2,200],"4":[2,200],"28":[2,200],"29":[2,200],"48":[1,111],"56":[2,200],"59":[2,200],"77":[2,200],"82":[2,200],"92":[2,200],"97":[2,200],"105":[2,200],"106":126,"107":[2,200],"108":[2,200],"109":[2,200],"112":[2,200],"116":[2,200],"117":[2,200],"118":[2,200],"125":[2,200],"126":[2,200],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[2,200],"152":[2,200],"153":[2,200],"154":[2,200],"155":[2,200],"156":[2,200],"157":[2,200],"158":[2,200],"159":[2,200],"160":[2,200],"161":[1,120]},{"1":[2,201],"4":[2,201],"28":[2,201],"29":[2,201],"48":[1,111],"56":[2,201],"59":[2,201],"77":[2,201],"82":[2,201],"92":[2,201],"97":[2,201],"105":[2,201],"106":126,"107":[2,201],"108":[2,201],"109":[2,201],"112":[2,201],"116":[2,201],"117":[2,201],"118":[2,201],"125":[2,201],"126":[2,201],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[2,201],"152":[2,201],"153":[2,201],"154":[2,201],"155":[2,201],"156":[2,201],"157":[2,201],"158":[2,201],"159":[2,201],"160":[2,201],"161":[1,120]},{"1":[2,202],"4":[2,202],"28":[2,202],"29":[2,202],"48":[2,202],"56":[2,202],"59":[2,202],"77":[2,202],"82":[2,202],"92":[2,202],"97":[2,202],"105":[2,202],"106":126,"107":[2,202],"108":[2,202],"109":[2,202],"112":[2,202],"116":[2,202],"117":[2,202],"118":[2,202],"125":[2,202],"126":[2,202],"127":[2,202],"129":[2,202],"130":[2,202],"132":[2,202],"133":[2,202],"136":[2,202],"137":[2,202],"138":[2,202],"139":[2,202],"140":[2,202],"141":[2,202],"142":[2,202],"143":[2,202],"144":[2,202],"145":[2,202],"146":[2,202],"147":[2,202],"148":[2,202],"149":[2,202],"150":[2,202],"151":[2,202],"152":[2,202],"153":[2,202],"154":[2,202],"155":[2,202],"156":[2,202],"157":[2,202],"158":[2,202],"159":[2,202],"160":[2,202],"161":[2,202]},{"1":[2,203],"4":[2,203],"28":[2,203],"29":[2,203],"48":[1,111],"56":[2,203],"59":[2,203],"77":[2,203],"82":[2,203],"92":[2,203],"97":[2,203],"105":[2,203],"106":126,"107":[2,203],"108":[2,203],"109":[2,203],"112":[2,203],"116":[2,203],"117":[2,203],"118":[2,203],"125":[2,203],"126":[2,203],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,204],"4":[2,204],"28":[2,204],"29":[2,204],"48":[1,111],"56":[2,204],"59":[2,204],"77":[2,204],"82":[2,204],"92":[2,204],"97":[2,204],"105":[2,204],"106":126,"107":[2,204],"108":[2,204],"109":[2,204],"112":[2,204],"116":[2,204],"117":[2,204],"118":[2,204],"125":[2,204],"126":[2,204],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,205],"4":[2,205],"28":[2,205],"29":[2,205],"48":[1,111],"56":[2,205],"59":[2,205],"77":[2,205],"82":[2,205],"92":[2,205],"97":[2,205],"105":[2,205],"106":126,"107":[2,205],"108":[2,205],"109":[2,205],"112":[2,205],"116":[2,205],"117":[2,205],"118":[2,205],"125":[2,205],"126":[2,205],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,206],"4":[2,206],"28":[2,206],"29":[2,206],"48":[1,111],"56":[2,206],"59":[2,206],"77":[2,206],"82":[2,206],"92":[2,206],"97":[2,206],"105":[2,206],"106":126,"107":[2,206],"108":[2,206],"109":[2,206],"112":[2,206],"116":[2,206],"117":[2,206],"118":[2,206],"125":[2,206],"126":[2,206],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,207],"4":[2,207],"28":[2,207],"29":[2,207],"48":[1,111],"56":[2,207],"59":[2,207],"77":[2,207],"82":[2,207],"92":[2,207],"97":[2,207],"105":[2,207],"106":126,"107":[2,207],"108":[2,207],"109":[2,207],"112":[2,207],"116":[2,207],"117":[2,207],"118":[2,207],"125":[2,207],"126":[2,207],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,208],"4":[2,208],"28":[2,208],"29":[2,208],"48":[1,111],"56":[2,208],"59":[2,208],"77":[2,208],"82":[2,208],"92":[2,208],"97":[2,208],"105":[2,208],"106":126,"107":[2,208],"108":[2,208],"109":[2,208],"112":[2,208],"116":[2,208],"117":[2,208],"118":[2,208],"125":[2,208],"126":[2,208],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,209],"4":[2,209],"28":[2,209],"29":[2,209],"48":[1,111],"56":[2,209],"59":[2,209],"77":[2,209],"82":[2,209],"92":[2,209],"97":[2,209],"105":[2,209],"106":126,"107":[2,209],"108":[2,209],"109":[2,209],"112":[2,209],"116":[2,209],"117":[2,209],"118":[2,209],"125":[2,209],"126":[2,209],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,210],"4":[2,210],"28":[2,210],"29":[2,210],"48":[1,111],"56":[2,210],"59":[2,210],"77":[2,210],"82":[2,210],"92":[2,210],"97":[2,210],"105":[2,210],"106":126,"107":[2,210],"108":[2,210],"109":[2,210],"112":[2,210],"116":[2,210],"117":[2,210],"118":[2,210],"125":[2,210],"126":[2,210],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,211],"4":[2,211],"28":[2,211],"29":[2,211],"48":[1,111],"56":[2,211],"59":[2,211],"77":[2,211],"82":[2,211],"92":[2,211],"97":[2,211],"105":[2,211],"106":126,"107":[2,211],"108":[2,211],"109":[2,211],"112":[2,211],"116":[2,211],"117":[2,211],"118":[2,211],"125":[2,211],"126":[2,211],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,211],"150":[2,211],"151":[2,211],"152":[2,211],"153":[2,211],"154":[2,211],"155":[2,211],"156":[2,211],"157":[2,211],"158":[2,211],"159":[2,211],"160":[2,211],"161":[1,120]},{"1":[2,212],"4":[2,212],"28":[2,212],"29":[2,212],"48":[1,111],"56":[2,212],"59":[1,128],"77":[2,212],"82":[2,212],"92":[2,212],"97":[2,212],"105":[2,212],"106":126,"107":[2,212],"108":[2,212],"109":[2,212],"112":[2,212],"116":[1,121],"117":[1,122],"118":[2,212],"125":[2,212],"126":[2,212],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,213],"4":[2,213],"28":[2,213],"29":[2,213],"48":[1,111],"56":[2,213],"59":[1,128],"77":[2,213],"82":[2,213],"92":[2,213],"97":[2,213],"105":[2,213],"106":126,"107":[2,213],"108":[2,213],"109":[2,213],"112":[2,213],"116":[1,121],"117":[1,122],"118":[2,213],"125":[2,213],"126":[2,213],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"8":281,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":282,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,169],"4":[2,169],"28":[2,169],"29":[2,169],"48":[1,111],"56":[2,169],"59":[1,128],"77":[2,169],"82":[2,169],"92":[2,169],"97":[2,169],"105":[2,169],"106":126,"107":[1,77],"108":[2,169],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,169],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,171],"4":[2,171],"28":[2,171],"29":[2,171],"48":[1,111],"56":[2,171],"59":[1,128],"77":[2,171],"82":[2,171],"92":[2,171],"97":[2,171],"105":[2,171],"106":126,"107":[1,77],"108":[2,171],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,171],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"114":283,"116":[1,259],"117":[1,260]},{"59":[1,284]},{"1":[2,168],"4":[2,168],"28":[2,168],"29":[2,168],"48":[1,111],"56":[2,168],"59":[1,128],"77":[2,168],"82":[2,168],"92":[2,168],"97":[2,168],"105":[2,168],"106":126,"107":[1,77],"108":[2,168],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,168],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,170],"4":[2,170],"28":[2,170],"29":[2,170],"48":[1,111],"56":[2,170],"59":[1,128],"77":[2,170],"82":[2,170],"92":[2,170],"97":[2,170],"105":[2,170],"106":126,"107":[1,77],"108":[2,170],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,170],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"114":285,"116":[1,259],"117":[1,260]},{"4":[2,54],"28":[2,54],"55":286,"56":[1,272],"92":[2,54]},{"4":[2,117],"28":[2,117],"29":[2,117],"48":[1,111],"56":[2,117],"59":[1,128],"92":[2,117],"97":[2,117],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,75],"4":[2,75],"28":[2,75],"29":[2,75],"45":[2,75],"48":[2,75],"56":[2,75],"59":[2,75],"70":[2,75],"71":[2,75],"72":[2,75],"73":[2,75],"76":[2,75],"77":[2,75],"78":[2,75],"79":[2,75],"82":[2,75],"84":[2,75],"90":[2,75],"92":[2,75],"97":[2,75],"105":[2,75],"107":[2,75],"108":[2,75],"109":[2,75],"112":[2,75],"116":[2,75],"117":[2,75],"118":[2,75],"125":[2,75],"126":[2,75],"127":[2,75],"129":[2,75],"130":[2,75],"132":[2,75],"133":[2,75],"136":[2,75],"137":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75]},{"1":[2,76],"4":[2,76],"28":[2,76],"29":[2,76],"45":[2,76],"48":[2,76],"56":[2,76],"59":[2,76],"70":[2,76],"71":[2,76],"72":[2,76],"73":[2,76],"76":[2,76],"77":[2,76],"78":[2,76],"79":[2,76],"82":[2,76],"84":[2,76],"90":[2,76],"92":[2,76],"97":[2,76],"105":[2,76],"107":[2,76],"108":[2,76],"109":[2,76],"112":[2,76],"116":[2,76],"117":[2,76],"118":[2,76],"125":[2,76],"126":[2,76],"127":[2,76],"129":[2,76],"130":[2,76],"132":[2,76],"133":[2,76],"136":[2,76],"137":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76]},{"1":[2,78],"4":[2,78],"28":[2,78],"29":[2,78],"45":[2,78],"48":[2,78],"56":[2,78],"59":[2,78],"70":[2,78],"71":[2,78],"72":[2,78],"73":[2,78],"76":[2,78],"77":[2,78],"78":[2,78],"79":[2,78],"82":[2,78],"84":[2,78],"90":[2,78],"92":[2,78],"97":[2,78],"105":[2,78],"107":[2,78],"108":[2,78],"109":[2,78],"112":[2,78],"116":[2,78],"117":[2,78],"118":[2,78],"125":[2,78],"126":[2,78],"127":[2,78],"129":[2,78],"130":[2,78],"132":[2,78],"133":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78],"151":[2,78],"152":[2,78],"153":[2,78],"154":[2,78],"155":[2,78],"156":[2,78],"157":[2,78],"158":[2,78],"159":[2,78],"160":[2,78],"161":[2,78]},{"48":[1,111],"59":[1,288],"77":[1,287],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,82],"4":[2,82],"28":[2,82],"29":[2,82],"45":[2,82],"48":[2,82],"56":[2,82],"59":[2,82],"70":[2,82],"71":[2,82],"72":[2,82],"73":[2,82],"76":[2,82],"77":[2,82],"78":[2,82],"79":[2,82],"82":[2,82],"84":[2,82],"90":[2,82],"92":[2,82],"97":[2,82],"105":[2,82],"107":[2,82],"108":[2,82],"109":[2,82],"112":[2,82],"116":[2,82],"117":[2,82],"118":[2,82],"125":[2,82],"126":[2,82],"127":[2,82],"129":[2,82],"130":[2,82],"132":[2,82],"133":[2,82],"136":[2,82],"137":[2,82],"138":[2,82],"139":[2,82],"140":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82],"151":[2,82],"152":[2,82],"153":[2,82],"154":[2,82],"155":[2,82],"156":[2,82],"157":[2,82],"158":[2,82],"159":[2,82],"160":[2,82],"161":[2,82]},{"8":289,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,83],"4":[2,83],"28":[2,83],"29":[2,83],"45":[2,83],"48":[2,83],"56":[2,83],"59":[2,83],"70":[2,83],"71":[2,83],"72":[2,83],"73":[2,83],"76":[2,83],"77":[2,83],"78":[2,83],"79":[2,83],"82":[2,83],"84":[2,83],"90":[2,83],"92":[2,83],"97":[2,83],"105":[2,83],"107":[2,83],"108":[2,83],"109":[2,83],"112":[2,83],"116":[2,83],"117":[2,83],"118":[2,83],"125":[2,83],"126":[2,83],"127":[2,83],"129":[2,83],"130":[2,83],"132":[2,83],"133":[2,83],"136":[2,83],"137":[2,83],"138":[2,83],"139":[2,83],"140":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83],"151":[2,83],"152":[2,83],"153":[2,83],"154":[2,83],"155":[2,83],"156":[2,83],"157":[2,83],"158":[2,83],"159":[2,83],"160":[2,83],"161":[2,83]},{"1":[2,42],"4":[2,42],"28":[2,42],"29":[2,42],"48":[1,111],"56":[2,42],"59":[1,128],"77":[2,42],"82":[2,42],"92":[2,42],"97":[2,42],"105":[2,42],"106":126,"107":[1,77],"108":[2,42],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,42],"125":[2,42],"126":[2,42],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"52":290,"53":[1,73],"54":[1,74]},{"57":291,"58":[1,154]},{"59":[1,292]},{"8":293,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,166],"4":[2,166],"28":[2,166],"29":[2,166],"48":[2,166],"56":[2,166],"59":[2,166],"77":[2,166],"82":[2,166],"92":[2,166],"97":[2,166],"105":[2,166],"107":[2,166],"108":[2,166],"109":[2,166],"112":[2,166],"116":[2,166],"117":[2,166],"118":[2,166],"121":[2,166],"125":[2,166],"126":[2,166],"127":[2,166],"129":[2,166],"130":[2,166],"132":[2,166],"133":[2,166],"136":[2,166],"137":[2,166],"138":[2,166],"139":[2,166],"140":[2,166],"141":[2,166],"142":[2,166],"143":[2,166],"144":[2,166],"145":[2,166],"146":[2,166],"147":[2,166],"148":[2,166],"149":[2,166],"150":[2,166],"151":[2,166],"152":[2,166],"153":[2,166],"154":[2,166],"155":[2,166],"156":[2,166],"157":[2,166],"158":[2,166],"159":[2,166],"160":[2,166],"161":[2,166]},{"1":[2,123],"4":[2,123],"28":[2,123],"29":[2,123],"48":[2,123],"56":[2,123],"59":[2,123],"77":[2,123],"82":[2,123],"92":[2,123],"97":[2,123],"101":[1,294],"105":[2,123],"107":[2,123],"108":[2,123],"109":[2,123],"112":[2,123],"116":[2,123],"117":[2,123],"118":[2,123],"125":[2,123],"126":[2,123],"127":[2,123],"129":[2,123],"130":[2,123],"132":[2,123],"133":[2,123],"136":[2,123],"137":[2,123],"138":[2,123],"139":[2,123],"140":[2,123],"141":[2,123],"142":[2,123],"143":[2,123],"144":[2,123],"145":[2,123],"146":[2,123],"147":[2,123],"148":[2,123],"149":[2,123],"150":[2,123],"151":[2,123],"152":[2,123],"153":[2,123],"154":[2,123],"155":[2,123],"156":[2,123],"157":[2,123],"158":[2,123],"159":[2,123],"160":[2,123],"161":[2,123]},{"6":295,"28":[1,6]},{"30":296,"31":[1,85]},{"6":297,"28":[1,6]},{"8":298,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":299,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"115":300},{"120":301,"122":264,"123":[1,265]},{"29":[1,302],"121":[1,303],"122":304,"123":[1,265]},{"29":[2,159],"121":[2,159],"123":[2,159]},{"8":306,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"98":305,"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,103],"4":[2,103],"28":[2,103],"29":[2,103],"48":[2,103],"56":[2,103],"59":[2,103],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,103],"78":[1,143],"79":[1,144],"82":[2,103],"89":133,"90":[1,135],"92":[2,103],"97":[2,103],"105":[2,103],"107":[2,103],"108":[2,103],"109":[2,103],"112":[2,103],"116":[2,103],"117":[2,103],"118":[2,103],"125":[2,103],"126":[2,103],"127":[2,103],"129":[2,103],"130":[2,103],"132":[2,103],"133":[2,103],"136":[2,103],"137":[2,103],"138":[2,103],"139":[2,103],"140":[2,103],"141":[2,103],"142":[2,103],"143":[2,103],"144":[2,103],"145":[2,103],"146":[2,103],"147":[2,103],"148":[2,103],"149":[2,103],"150":[2,103],"151":[2,103],"152":[2,103],"153":[2,103],"154":[2,103],"155":[2,103],"156":[2,103],"157":[2,103],"158":[2,103],"159":[2,103],"160":[2,103],"161":[2,103]},{"14":307,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":151,"62":180,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"4":[2,96],"29":[2,96],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":310,"63":311,"85":308,"86":309,"95":[1,312]},{"1":[2,129],"4":[2,129],"28":[2,129],"29":[2,129],"48":[2,129],"56":[2,129],"59":[2,129],"70":[2,129],"71":[2,129],"72":[2,129],"73":[2,129],"76":[2,129],"77":[2,129],"78":[2,129],"79":[2,129],"82":[2,129],"90":[2,129],"92":[2,129],"97":[2,129],"105":[2,129],"107":[2,129],"108":[2,129],"109":[2,129],"112":[2,129],"116":[2,129],"117":[2,129],"118":[2,129],"125":[2,129],"126":[2,129],"127":[2,129],"129":[2,129],"130":[2,129],"132":[2,129],"133":[2,129],"136":[2,129],"137":[2,129],"138":[2,129],"139":[2,129],"140":[2,129],"141":[2,129],"142":[2,129],"143":[2,129],"144":[2,129],"145":[2,129],"146":[2,129],"147":[2,129],"148":[2,129],"149":[2,129],"150":[2,129],"151":[2,129],"152":[2,129],"153":[2,129],"154":[2,129],"155":[2,129],"156":[2,129],"157":[2,129],"158":[2,129],"159":[2,129],"160":[2,129],"161":[2,129]},{"59":[1,313]},{"4":[1,315],"28":[1,316],"97":[1,314]},{"4":[2,55],"8":317,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,55],"29":[2,55],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"92":[2,55],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,55],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,163],"4":[2,163],"28":[2,163],"29":[2,163],"48":[2,163],"56":[2,163],"59":[2,163],"77":[2,163],"82":[2,163],"92":[2,163],"97":[2,163],"105":[2,163],"107":[2,163],"108":[2,163],"109":[2,163],"112":[2,163],"116":[2,163],"117":[2,163],"118":[2,163],"121":[2,163],"125":[2,163],"126":[2,163],"127":[2,163],"129":[2,163],"130":[2,163],"132":[2,163],"133":[2,163],"136":[2,163],"137":[2,163],"138":[2,163],"139":[2,163],"140":[2,163],"141":[2,163],"142":[2,163],"143":[2,163],"144":[2,163],"145":[2,163],"146":[2,163],"147":[2,163],"148":[2,163],"149":[2,163],"150":[2,163],"151":[2,163],"152":[2,163],"153":[2,163],"154":[2,163],"155":[2,163],"156":[2,163],"157":[2,163],"158":[2,163],"159":[2,163],"160":[2,163],"161":[2,163]},{"1":[2,164],"4":[2,164],"28":[2,164],"29":[2,164],"48":[2,164],"56":[2,164],"59":[2,164],"77":[2,164],"82":[2,164],"92":[2,164],"97":[2,164],"105":[2,164],"107":[2,164],"108":[2,164],"109":[2,164],"112":[2,164],"116":[2,164],"117":[2,164],"118":[2,164],"121":[2,164],"125":[2,164],"126":[2,164],"127":[2,164],"129":[2,164],"130":[2,164],"132":[2,164],"133":[2,164],"136":[2,164],"137":[2,164],"138":[2,164],"139":[2,164],"140":[2,164],"141":[2,164],"142":[2,164],"143":[2,164],"144":[2,164],"145":[2,164],"146":[2,164],"147":[2,164],"148":[2,164],"149":[2,164],"150":[2,164],"151":[2,164],"152":[2,164],"153":[2,164],"154":[2,164],"155":[2,164],"156":[2,164],"157":[2,164],"158":[2,164],"159":[2,164],"160":[2,164],"161":[2,164]},{"8":318,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":319,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[1,321],"28":[1,322],"82":[1,320]},{"4":[2,55],"28":[2,55],"29":[2,55],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":323,"82":[2,55]},{"8":324,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":325,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,214],"4":[2,214],"28":[2,214],"29":[2,214],"48":[1,111],"56":[2,214],"59":[2,214],"77":[2,214],"82":[2,214],"92":[2,214],"97":[2,214],"105":[2,214],"106":126,"107":[2,214],"108":[2,214],"109":[2,214],"112":[2,214],"116":[2,214],"117":[2,214],"118":[2,214],"125":[2,214],"126":[2,214],"129":[2,214],"130":[2,214],"136":[2,214],"137":[2,214],"138":[2,214],"139":[2,214],"140":[2,214],"141":[2,214],"142":[2,214],"143":[2,214],"144":[2,214],"145":[2,214],"146":[2,214],"147":[2,214],"148":[2,214],"149":[2,214],"150":[2,214],"151":[2,214],"152":[2,214],"153":[2,214],"154":[2,214],"155":[2,214],"156":[2,214],"157":[2,214],"158":[2,214],"159":[2,214],"160":[2,214],"161":[2,214]},{"1":[2,215],"4":[2,215],"28":[2,215],"29":[2,215],"48":[1,111],"56":[2,215],"59":[2,215],"77":[2,215],"82":[2,215],"92":[2,215],"97":[2,215],"105":[2,215],"106":126,"107":[2,215],"108":[2,215],"109":[2,215],"112":[2,215],"116":[2,215],"117":[2,215],"118":[2,215],"125":[2,215],"126":[2,215],"129":[2,215],"130":[2,215],"136":[2,215],"137":[2,215],"138":[2,215],"139":[2,215],"140":[2,215],"141":[2,215],"142":[2,215],"143":[2,215],"144":[2,215],"145":[2,215],"146":[2,215],"147":[2,215],"148":[2,215],"149":[2,215],"150":[2,215],"151":[2,215],"152":[2,215],"153":[2,215],"154":[2,215],"155":[2,215],"156":[2,215],"157":[2,215],"158":[2,215],"159":[2,215],"160":[2,215],"161":[2,215]},{"1":[2,141],"4":[2,141],"28":[2,141],"29":[2,141],"48":[2,141],"56":[2,141],"59":[2,141],"77":[2,141],"82":[2,141],"92":[2,141],"97":[2,141],"105":[2,141],"107":[2,141],"108":[2,141],"109":[2,141],"112":[2,141],"116":[2,141],"117":[2,141],"118":[2,141],"125":[2,141],"126":[2,141],"127":[2,141],"129":[2,141],"130":[2,141],"132":[2,141],"133":[2,141],"136":[2,141],"137":[2,141],"138":[2,141],"139":[2,141],"140":[2,141],"141":[2,141],"142":[2,141],"143":[2,141],"144":[2,141],"145":[2,141],"146":[2,141],"147":[2,141],"148":[2,141],"149":[2,141],"150":[2,141],"151":[2,141],"152":[2,141],"153":[2,141],"154":[2,141],"155":[2,141],"156":[2,141],"157":[2,141],"158":[2,141],"159":[2,141],"160":[2,141],"161":[2,141]},{"1":[2,61],"4":[2,61],"28":[2,61],"29":[2,61],"48":[2,61],"56":[2,61],"59":[2,61],"77":[2,61],"82":[2,61],"92":[2,61],"97":[2,61],"105":[2,61],"107":[2,61],"108":[2,61],"109":[2,61],"112":[2,61],"116":[2,61],"117":[2,61],"118":[2,61],"125":[2,61],"126":[2,61],"127":[2,61],"129":[2,61],"130":[2,61],"132":[2,61],"133":[2,61],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61],"161":[2,61]},{"1":[2,140],"4":[2,140],"28":[2,140],"29":[2,140],"48":[2,140],"56":[2,140],"59":[2,140],"77":[2,140],"82":[2,140],"92":[2,140],"97":[2,140],"105":[2,140],"107":[2,140],"108":[2,140],"109":[2,140],"112":[2,140],"116":[2,140],"117":[2,140],"118":[2,140],"125":[2,140],"126":[2,140],"127":[2,140],"129":[2,140],"130":[2,140],"132":[2,140],"133":[2,140],"136":[2,140],"137":[2,140],"138":[2,140],"139":[2,140],"140":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140],"148":[2,140],"149":[2,140],"150":[2,140],"151":[2,140],"152":[2,140],"153":[2,140],"154":[2,140],"155":[2,140],"156":[2,140],"157":[2,140],"158":[2,140],"159":[2,140],"160":[2,140],"161":[2,140]},{"4":[1,315],"28":[1,316],"92":[1,326]},{"1":[2,81],"4":[2,81],"28":[2,81],"29":[2,81],"45":[2,81],"48":[2,81],"56":[2,81],"59":[2,81],"70":[2,81],"71":[2,81],"72":[2,81],"73":[2,81],"76":[2,81],"77":[2,81],"78":[2,81],"79":[2,81],"82":[2,81],"84":[2,81],"90":[2,81],"92":[2,81],"97":[2,81],"105":[2,81],"107":[2,81],"108":[2,81],"109":[2,81],"112":[2,81],"116":[2,81],"117":[2,81],"118":[2,81],"125":[2,81],"126":[2,81],"127":[2,81],"129":[2,81],"130":[2,81],"132":[2,81],"133":[2,81],"136":[2,81],"137":[2,81],"138":[2,81],"139":[2,81],"140":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81],"151":[2,81],"152":[2,81],"153":[2,81],"154":[2,81],"155":[2,81],"156":[2,81],"157":[2,81],"158":[2,81],"159":[2,81],"160":[2,81],"161":[2,81]},{"59":[1,327]},{"48":[1,111],"59":[1,128],"77":[1,287],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"6":328,"28":[1,6]},{"51":[2,58],"56":[2,58],"59":[1,252]},{"59":[1,329]},{"6":330,"28":[1,6],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"6":331,"28":[1,6]},{"1":[2,124],"4":[2,124],"28":[2,124],"29":[2,124],"48":[2,124],"56":[2,124],"59":[2,124],"77":[2,124],"82":[2,124],"92":[2,124],"97":[2,124],"105":[2,124],"107":[2,124],"108":[2,124],"109":[2,124],"112":[2,124],"116":[2,124],"117":[2,124],"118":[2,124],"125":[2,124],"126":[2,124],"127":[2,124],"129":[2,124],"130":[2,124],"132":[2,124],"133":[2,124],"136":[2,124],"137":[2,124],"138":[2,124],"139":[2,124],"140":[2,124],"141":[2,124],"142":[2,124],"143":[2,124],"144":[2,124],"145":[2,124],"146":[2,124],"147":[2,124],"148":[2,124],"149":[2,124],"150":[2,124],"151":[2,124],"152":[2,124],"153":[2,124],"154":[2,124],"155":[2,124],"156":[2,124],"157":[2,124],"158":[2,124],"159":[2,124],"160":[2,124],"161":[2,124]},{"4":[1,333],"6":332,"28":[1,6]},{"1":[2,142],"4":[2,142],"28":[2,142],"29":[2,142],"48":[2,142],"56":[2,142],"59":[2,142],"77":[2,142],"82":[2,142],"92":[2,142],"97":[2,142],"105":[2,142],"107":[2,142],"108":[2,142],"109":[2,142],"112":[2,142],"116":[2,142],"117":[2,142],"118":[2,142],"125":[2,142],"126":[2,142],"127":[2,142],"129":[2,142],"130":[2,142],"132":[2,142],"133":[2,142],"136":[2,142],"137":[2,142],"138":[2,142],"139":[2,142],"140":[2,142],"141":[2,142],"142":[2,142],"143":[2,142],"144":[2,142],"145":[2,142],"146":[2,142],"147":[2,142],"148":[2,142],"149":[2,142],"150":[2,142],"151":[2,142],"152":[2,142],"153":[2,142],"154":[2,142],"155":[2,142],"156":[2,142],"157":[2,142],"158":[2,142],"159":[2,142],"160":[2,142],"161":[2,142]},{"1":[2,148],"4":[2,148],"28":[2,148],"29":[2,148],"48":[1,111],"56":[2,148],"59":[1,128],"77":[2,148],"82":[2,148],"92":[2,148],"97":[2,148],"105":[2,148],"106":126,"107":[2,148],"108":[1,334],"109":[2,148],"112":[2,148],"116":[1,121],"117":[1,122],"118":[1,335],"125":[2,148],"126":[2,148],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,149],"4":[2,149],"28":[2,149],"29":[2,149],"48":[1,111],"56":[2,149],"59":[1,128],"77":[2,149],"82":[2,149],"92":[2,149],"97":[2,149],"105":[2,149],"106":126,"107":[2,149],"108":[1,336],"109":[2,149],"112":[2,149],"116":[1,121],"117":[1,122],"118":[2,149],"125":[2,149],"126":[2,149],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"116":[2,147],"117":[2,147]},{"29":[1,337],"121":[1,338],"122":304,"123":[1,265]},{"1":[2,157],"4":[2,157],"28":[2,157],"29":[2,157],"48":[2,157],"56":[2,157],"59":[2,157],"77":[2,157],"82":[2,157],"92":[2,157],"97":[2,157],"105":[2,157],"107":[2,157],"108":[2,157],"109":[2,157],"112":[2,157],"116":[2,157],"117":[2,157],"118":[2,157],"125":[2,157],"126":[2,157],"127":[2,157],"129":[2,157],"130":[2,157],"132":[2,157],"133":[2,157],"136":[2,157],"137":[2,157],"138":[2,157],"139":[2,157],"140":[2,157],"141":[2,157],"142":[2,157],"143":[2,157],"144":[2,157],"145":[2,157],"146":[2,157],"147":[2,157],"148":[2,157],"149":[2,157],"150":[2,157],"151":[2,157],"152":[2,157],"153":[2,157],"154":[2,157],"155":[2,157],"156":[2,157],"157":[2,157],"158":[2,157],"159":[2,157],"160":[2,157],"161":[2,157]},{"6":339,"28":[1,6]},{"29":[2,160],"121":[2,160],"123":[2,160]},{"6":340,"28":[1,6],"56":[1,341]},{"28":[2,121],"48":[1,111],"56":[2,121],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,91],"4":[2,91],"28":[1,342],"29":[2,91],"48":[2,91],"56":[2,91],"59":[2,91],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,91],"78":[1,143],"79":[1,144],"82":[2,91],"89":133,"90":[1,135],"92":[2,91],"97":[2,91],"105":[2,91],"107":[2,91],"108":[2,91],"109":[2,91],"112":[2,91],"116":[2,91],"117":[2,91],"118":[2,91],"125":[2,91],"126":[2,91],"127":[2,91],"129":[2,91],"130":[2,91],"132":[2,91],"133":[2,91],"136":[2,91],"137":[2,91],"138":[2,91],"139":[2,91],"140":[2,91],"141":[2,91],"142":[2,91],"143":[2,91],"144":[2,91],"145":[2,91],"146":[2,91],"147":[2,91],"148":[2,91],"149":[2,91],"150":[2,91],"151":[2,91],"152":[2,91],"153":[2,91],"154":[2,91],"155":[2,91],"156":[2,91],"157":[2,91],"158":[2,91],"159":[2,91],"160":[2,91],"161":[2,91]},{"4":[1,344],"29":[1,343]},{"4":[2,97],"29":[2,97]},{"4":[2,94],"29":[2,94]},{"45":[1,345]},{"30":186,"31":[1,85]},{"8":346,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"59":[1,347],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,115],"4":[2,115],"28":[2,115],"29":[2,115],"45":[2,115],"48":[2,115],"56":[2,115],"59":[2,115],"70":[2,115],"71":[2,115],"72":[2,115],"73":[2,115],"76":[2,115],"77":[2,115],"78":[2,115],"79":[2,115],"82":[2,115],"90":[2,115],"92":[2,115],"97":[2,115],"105":[2,115],"107":[2,115],"108":[2,115],"109":[2,115],"112":[2,115],"116":[2,115],"117":[2,115],"118":[2,115],"125":[2,115],"126":[2,115],"127":[2,115],"129":[2,115],"130":[2,115],"132":[2,115],"133":[2,115],"136":[2,115],"137":[2,115],"138":[2,115],"139":[2,115],"140":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"147":[2,115],"148":[2,115],"149":[2,115],"150":[2,115],"151":[2,115],"152":[2,115],"153":[2,115],"154":[2,115],"155":[2,115],"156":[2,115],"157":[2,115],"158":[2,115],"159":[2,115],"160":[2,115],"161":[2,115]},{"8":348,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,116],"8":241,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,116],"29":[2,116],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,116],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"91":349,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,118],"28":[2,118],"29":[2,118],"48":[1,111],"56":[2,118],"59":[1,128],"92":[2,118],"97":[2,118],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,131],"4":[2,131],"28":[2,131],"29":[2,131],"48":[1,111],"56":[2,131],"59":[1,128],"77":[2,131],"82":[2,131],"92":[2,131],"97":[2,131],"105":[2,131],"106":126,"107":[1,77],"108":[2,131],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,131],"125":[2,131],"126":[2,131],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,133],"4":[2,133],"28":[2,133],"29":[2,133],"48":[1,111],"56":[2,133],"59":[1,128],"77":[2,133],"82":[2,133],"92":[2,133],"97":[2,133],"105":[2,133],"106":126,"107":[1,77],"108":[2,133],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,133],"125":[2,133],"126":[2,133],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,84],"4":[2,84],"28":[2,84],"29":[2,84],"45":[2,84],"48":[2,84],"56":[2,84],"59":[2,84],"70":[2,84],"71":[2,84],"72":[2,84],"73":[2,84],"76":[2,84],"77":[2,84],"78":[2,84],"79":[2,84],"82":[2,84],"90":[2,84],"92":[2,84],"97":[2,84],"105":[2,84],"107":[2,84],"108":[2,84],"109":[2,84],"112":[2,84],"116":[2,84],"117":[2,84],"118":[2,84],"125":[2,84],"126":[2,84],"127":[2,84],"129":[2,84],"130":[2,84],"132":[2,84],"133":[2,84],"136":[2,84],"137":[2,84],"138":[2,84],"139":[2,84],"140":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84],"151":[2,84],"152":[2,84],"153":[2,84],"154":[2,84],"155":[2,84],"156":[2,84],"157":[2,84],"158":[2,84],"159":[2,84],"160":[2,84],"161":[2,84]},{"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":350},{"4":[2,85],"28":[2,85],"29":[2,85],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":195,"56":[2,85],"81":351},{"4":[2,87],"28":[2,87],"29":[2,87],"56":[2,87],"82":[2,87]},{"4":[2,45],"28":[2,45],"29":[2,45],"48":[1,111],"56":[2,45],"59":[1,128],"82":[2,45],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,46],"28":[2,46],"29":[2,46],"48":[1,111],"56":[2,46],"59":[1,128],"82":[2,46],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,106],"4":[2,106],"28":[2,106],"29":[2,106],"48":[2,106],"56":[2,106],"59":[2,106],"70":[2,106],"71":[2,106],"72":[2,106],"73":[2,106],"76":[2,106],"77":[2,106],"78":[2,106],"79":[2,106],"82":[2,106],"90":[2,106],"92":[2,106],"97":[2,106],"105":[2,106],"107":[2,106],"108":[2,106],"109":[2,106],"112":[2,106],"116":[2,106],"117":[2,106],"118":[2,106],"125":[2,106],"126":[2,106],"127":[2,106],"129":[2,106],"130":[2,106],"132":[2,106],"133":[2,106],"136":[2,106],"137":[2,106],"138":[2,106],"139":[2,106],"140":[2,106],"141":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"148":[2,106],"149":[2,106],"150":[2,106],"151":[2,106],"152":[2,106],"153":[2,106],"154":[2,106],"155":[2,106],"156":[2,106],"157":[2,106],"158":[2,106],"159":[2,106],"160":[2,106],"161":[2,106]},{"8":352,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"59":[1,353],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,50],"4":[2,50],"28":[2,50],"29":[2,50],"48":[2,50],"56":[2,50],"59":[2,50],"77":[2,50],"82":[2,50],"92":[2,50],"97":[2,50],"105":[2,50],"107":[2,50],"108":[2,50],"109":[2,50],"112":[2,50],"116":[2,50],"117":[2,50],"118":[2,50],"125":[2,50],"126":[2,50],"127":[2,50],"129":[2,50],"130":[2,50],"132":[2,50],"133":[2,50],"136":[2,50],"137":[2,50],"138":[2,50],"139":[2,50],"140":[2,50],"141":[2,50],"142":[2,50],"143":[2,50],"144":[2,50],"145":[2,50],"146":[2,50],"147":[2,50],"148":[2,50],"149":[2,50],"150":[2,50],"151":[2,50],"152":[2,50],"153":[2,50],"154":[2,50],"155":[2,50],"156":[2,50],"157":[2,50],"158":[2,50],"159":[2,50],"160":[2,50],"161":[2,50]},{"51":[2,60],"56":[2,60],"59":[2,60]},{"1":[2,165],"4":[2,165],"28":[2,165],"29":[2,165],"48":[2,165],"56":[2,165],"59":[2,165],"77":[2,165],"82":[2,165],"92":[2,165],"97":[2,165],"105":[2,165],"107":[2,165],"108":[2,165],"109":[2,165],"112":[2,165],"116":[2,165],"117":[2,165],"118":[2,165],"121":[2,165],"125":[2,165],"126":[2,165],"127":[2,165],"129":[2,165],"130":[2,165],"132":[2,165],"133":[2,165],"136":[2,165],"137":[2,165],"138":[2,165],"139":[2,165],"140":[2,165],"141":[2,165],"142":[2,165],"143":[2,165],"144":[2,165],"145":[2,165],"146":[2,165],"147":[2,165],"148":[2,165],"149":[2,165],"150":[2,165],"151":[2,165],"152":[2,165],"153":[2,165],"154":[2,165],"155":[2,165],"156":[2,165],"157":[2,165],"158":[2,165],"159":[2,165],"160":[2,165],"161":[2,165]},{"1":[2,125],"4":[2,125],"28":[2,125],"29":[2,125],"48":[2,125],"56":[2,125],"59":[2,125],"77":[2,125],"82":[2,125],"92":[2,125],"97":[2,125],"105":[2,125],"107":[2,125],"108":[2,125],"109":[2,125],"112":[2,125],"116":[2,125],"117":[2,125],"118":[2,125],"125":[2,125],"126":[2,125],"127":[2,125],"129":[2,125],"130":[2,125],"132":[2,125],"133":[2,125],"136":[2,125],"137":[2,125],"138":[2,125],"139":[2,125],"140":[2,125],"141":[2,125],"142":[2,125],"143":[2,125],"144":[2,125],"145":[2,125],"146":[2,125],"147":[2,125],"148":[2,125],"149":[2,125],"150":[2,125],"151":[2,125],"152":[2,125],"153":[2,125],"154":[2,125],"155":[2,125],"156":[2,125],"157":[2,125],"158":[2,125],"159":[2,125],"160":[2,125],"161":[2,125]},{"1":[2,126],"4":[2,126],"28":[2,126],"29":[2,126],"48":[2,126],"56":[2,126],"59":[2,126],"77":[2,126],"82":[2,126],"92":[2,126],"97":[2,126],"101":[2,126],"105":[2,126],"107":[2,126],"108":[2,126],"109":[2,126],"112":[2,126],"116":[2,126],"117":[2,126],"118":[2,126],"125":[2,126],"126":[2,126],"127":[2,126],"129":[2,126],"130":[2,126],"132":[2,126],"133":[2,126],"136":[2,126],"137":[2,126],"138":[2,126],"139":[2,126],"140":[2,126],"141":[2,126],"142":[2,126],"143":[2,126],"144":[2,126],"145":[2,126],"146":[2,126],"147":[2,126],"148":[2,126],"149":[2,126],"150":[2,126],"151":[2,126],"152":[2,126],"153":[2,126],"154":[2,126],"155":[2,126],"156":[2,126],"157":[2,126],"158":[2,126],"159":[2,126],"160":[2,126],"161":[2,126]},{"1":[2,127],"4":[2,127],"28":[2,127],"29":[2,127],"48":[2,127],"56":[2,127],"59":[2,127],"77":[2,127],"82":[2,127],"92":[2,127],"97":[2,127],"101":[2,127],"105":[2,127],"107":[2,127],"108":[2,127],"109":[2,127],"112":[2,127],"116":[2,127],"117":[2,127],"118":[2,127],"125":[2,127],"126":[2,127],"127":[2,127],"129":[2,127],"130":[2,127],"132":[2,127],"133":[2,127],"136":[2,127],"137":[2,127],"138":[2,127],"139":[2,127],"140":[2,127],"141":[2,127],"142":[2,127],"143":[2,127],"144":[2,127],"145":[2,127],"146":[2,127],"147":[2,127],"148":[2,127],"149":[2,127],"150":[2,127],"151":[2,127],"152":[2,127],"153":[2,127],"154":[2,127],"155":[2,127],"156":[2,127],"157":[2,127],"158":[2,127],"159":[2,127],"160":[2,127],"161":[2,127]},{"8":354,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":355,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":356,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,155],"4":[2,155],"28":[2,155],"29":[2,155],"48":[2,155],"56":[2,155],"59":[2,155],"77":[2,155],"82":[2,155],"92":[2,155],"97":[2,155],"105":[2,155],"107":[2,155],"108":[2,155],"109":[2,155],"112":[2,155],"116":[2,155],"117":[2,155],"118":[2,155],"125":[2,155],"126":[2,155],"127":[2,155],"129":[2,155],"130":[2,155],"132":[2,155],"133":[2,155],"136":[2,155],"137":[2,155],"138":[2,155],"139":[2,155],"140":[2,155],"141":[2,155],"142":[2,155],"143":[2,155],"144":[2,155],"145":[2,155],"146":[2,155],"147":[2,155],"148":[2,155],"149":[2,155],"150":[2,155],"151":[2,155],"152":[2,155],"153":[2,155],"154":[2,155],"155":[2,155],"156":[2,155],"157":[2,155],"158":[2,155],"159":[2,155],"160":[2,155],"161":[2,155]},{"6":357,"28":[1,6]},{"29":[1,358]},{"4":[1,359],"29":[2,161],"121":[2,161],"123":[2,161]},{"8":360,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,96],"29":[2,96],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":310,"63":311,"85":361,"86":309,"95":[1,312]},{"1":[2,92],"4":[2,92],"28":[2,92],"29":[2,92],"48":[2,92],"56":[2,92],"59":[2,92],"77":[2,92],"82":[2,92],"92":[2,92],"97":[2,92],"105":[2,92],"107":[2,92],"108":[2,92],"109":[2,92],"112":[2,92],"116":[2,92],"117":[2,92],"118":[2,92],"125":[2,92],"126":[2,92],"127":[2,92],"129":[2,92],"130":[2,92],"132":[2,92],"133":[2,92],"136":[2,92],"137":[2,92],"138":[2,92],"139":[2,92],"140":[2,92],"141":[2,92],"142":[2,92],"143":[2,92],"144":[2,92],"145":[2,92],"146":[2,92],"147":[2,92],"148":[2,92],"149":[2,92],"150":[2,92],"151":[2,92],"152":[2,92],"153":[2,92],"154":[2,92],"155":[2,92],"156":[2,92],"157":[2,92],"158":[2,92],"159":[2,92],"160":[2,92],"161":[2,92]},{"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":310,"63":311,"86":362,"95":[1,312]},{"8":363,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"48":[1,111],"59":[1,128],"97":[1,364],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,61],"8":365,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,61],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"48":[2,61],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,61],"59":[2,61],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,61],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[2,61],"109":[2,61],"110":50,"111":[1,79],"112":[2,61],"116":[2,61],"117":[2,61],"119":[1,52],"124":47,"125":[2,61],"126":[2,61],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61],"161":[2,61]},{"4":[2,119],"28":[2,119],"29":[2,119],"48":[1,111],"56":[2,119],"59":[1,128],"92":[2,119],"97":[2,119],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,54],"28":[2,54],"29":[2,54],"55":366,"56":[1,272]},{"4":[2,88],"28":[2,88],"29":[2,88],"56":[2,88],"82":[2,88]},{"4":[2,54],"28":[2,54],"29":[2,54],"55":367,"56":[1,278]},{"48":[1,111],"59":[1,128],"77":[1,368],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"8":369,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"48":[2,61],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"59":[2,61],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"77":[2,61],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[2,61],"109":[2,61],"110":50,"111":[1,79],"112":[2,61],"116":[2,61],"117":[2,61],"119":[1,52],"124":47,"125":[2,61],"126":[2,61],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61],"161":[2,61]},{"1":[2,150],"4":[2,150],"28":[2,150],"29":[2,150],"48":[1,111],"56":[2,150],"59":[1,128],"77":[2,150],"82":[2,150],"92":[2,150],"97":[2,150],"105":[2,150],"106":126,"107":[2,150],"108":[2,150],"109":[2,150],"112":[2,150],"116":[1,121],"117":[1,122],"118":[1,370],"125":[2,150],"126":[2,150],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,152],"4":[2,152],"28":[2,152],"29":[2,152],"48":[1,111],"56":[2,152],"59":[1,128],"77":[2,152],"82":[2,152],"92":[2,152],"97":[2,152],"105":[2,152],"106":126,"107":[2,152],"108":[1,371],"109":[2,152],"112":[2,152],"116":[1,121],"117":[1,122],"118":[2,152],"125":[2,152],"126":[2,152],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,151],"4":[2,151],"28":[2,151],"29":[2,151],"48":[1,111],"56":[2,151],"59":[1,128],"77":[2,151],"82":[2,151],"92":[2,151],"97":[2,151],"105":[2,151],"106":126,"107":[2,151],"108":[2,151],"109":[2,151],"112":[2,151],"116":[1,121],"117":[1,122],"118":[2,151],"125":[2,151],"126":[2,151],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"29":[1,372]},{"1":[2,158],"4":[2,158],"28":[2,158],"29":[2,158],"48":[2,158],"56":[2,158],"59":[2,158],"77":[2,158],"82":[2,158],"92":[2,158],"97":[2,158],"105":[2,158],"107":[2,158],"108":[2,158],"109":[2,158],"112":[2,158],"116":[2,158],"117":[2,158],"118":[2,158],"125":[2,158],"126":[2,158],"127":[2,158],"129":[2,158],"130":[2,158],"132":[2,158],"133":[2,158],"136":[2,158],"137":[2,158],"138":[2,158],"139":[2,158],"140":[2,158],"141":[2,158],"142":[2,158],"143":[2,158],"144":[2,158],"145":[2,158],"146":[2,158],"147":[2,158],"148":[2,158],"149":[2,158],"150":[2,158],"151":[2,158],"152":[2,158],"153":[2,158],"154":[2,158],"155":[2,158],"156":[2,158],"157":[2,158],"158":[2,158],"159":[2,158],"160":[2,158],"161":[2,158]},{"29":[2,162],"121":[2,162],"123":[2,162]},{"28":[2,122],"48":[1,111],"56":[2,122],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[1,344],"29":[1,373]},{"4":[2,98],"29":[2,98]},{"4":[2,95],"29":[2,95],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,111],"4":[2,111],"28":[2,111],"29":[2,111],"48":[2,111],"56":[2,111],"59":[2,111],"70":[2,111],"71":[2,111],"72":[2,111],"73":[2,111],"76":[2,111],"77":[2,111],"78":[2,111],"79":[2,111],"82":[2,111],"90":[2,111],"92":[2,111],"97":[2,111],"105":[2,111],"107":[2,111],"108":[2,111],"109":[2,111],"112":[2,111],"116":[2,111],"117":[2,111],"118":[2,111],"125":[2,111],"126":[2,111],"127":[2,111],"129":[2,111],"130":[2,111],"132":[2,111],"133":[2,111],"136":[2,111],"137":[2,111],"138":[2,111],"139":[2,111],"140":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"147":[2,111],"148":[2,111],"149":[2,111],"150":[2,111],"151":[2,111],"152":[2,111],"153":[2,111],"154":[2,111],"155":[2,111],"156":[2,111],"157":[2,111],"158":[2,111],"159":[2,111],"160":[2,111],"161":[2,111]},{"48":[1,111],"59":[1,128],"97":[1,374],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[1,315],"28":[1,316],"29":[1,375]},{"4":[1,321],"28":[1,322],"29":[1,376]},{"1":[2,113],"4":[2,113],"28":[2,113],"29":[2,113],"45":[2,113],"48":[2,113],"56":[2,113],"59":[2,113],"70":[2,113],"71":[2,113],"72":[2,113],"73":[2,113],"76":[2,113],"77":[2,113],"78":[2,113],"79":[2,113],"82":[2,113],"84":[2,113],"90":[2,113],"92":[2,113],"97":[2,113],"105":[2,113],"107":[2,113],"108":[2,113],"109":[2,113],"112":[2,113],"116":[2,113],"117":[2,113],"118":[2,113],"125":[2,113],"126":[2,113],"127":[2,113],"129":[2,113],"130":[2,113],"132":[2,113],"133":[2,113],"136":[2,113],"137":[2,113],"138":[2,113],"139":[2,113],"140":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"147":[2,113],"148":[2,113],"149":[2,113],"150":[2,113],"151":[2,113],"152":[2,113],"153":[2,113],"154":[2,113],"155":[2,113],"156":[2,113],"157":[2,113],"158":[2,113],"159":[2,113],"160":[2,113],"161":[2,113]},{"48":[1,111],"59":[1,128],"77":[1,377],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"8":378,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":379,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,156],"4":[2,156],"28":[2,156],"29":[2,156],"48":[2,156],"56":[2,156],"59":[2,156],"77":[2,156],"82":[2,156],"92":[2,156],"97":[2,156],"105":[2,156],"107":[2,156],"108":[2,156],"109":[2,156],"112":[2,156],"116":[2,156],"117":[2,156],"118":[2,156],"125":[2,156],"126":[2,156],"127":[2,156],"129":[2,156],"130":[2,156],"132":[2,156],"133":[2,156],"136":[2,156],"137":[2,156],"138":[2,156],"139":[2,156],"140":[2,156],"141":[2,156],"142":[2,156],"143":[2,156],"144":[2,156],"145":[2,156],"146":[2,156],"147":[2,156],"148":[2,156],"149":[2,156],"150":[2,156],"151":[2,156],"152":[2,156],"153":[2,156],"154":[2,156],"155":[2,156],"156":[2,156],"157":[2,156],"158":[2,156],"159":[2,156],"160":[2,156],"161":[2,156]},{"1":[2,93],"4":[2,93],"28":[2,93],"29":[2,93],"48":[2,93],"56":[2,93],"59":[2,93],"77":[2,93],"82":[2,93],"92":[2,93],"97":[2,93],"105":[2,93],"107":[2,93],"108":[2,93],"109":[2,93],"112":[2,93],"116":[2,93],"117":[2,93],"118":[2,93],"125":[2,93],"126":[2,93],"127":[2,93],"129":[2,93],"130":[2,93],"132":[2,93],"133":[2,93],"136":[2,93],"137":[2,93],"138":[2,93],"139":[2,93],"140":[2,93],"141":[2,93],"142":[2,93],"143":[2,93],"144":[2,93],"145":[2,93],"146":[2,93],"147":[2,93],"148":[2,93],"149":[2,93],"150":[2,93],"151":[2,93],"152":[2,93],"153":[2,93],"154":[2,93],"155":[2,93],"156":[2,93],"157":[2,93],"158":[2,93],"159":[2,93],"160":[2,93],"161":[2,93]},{"1":[2,112],"4":[2,112],"28":[2,112],"29":[2,112],"48":[2,112],"56":[2,112],"59":[2,112],"70":[2,112],"71":[2,112],"72":[2,112],"73":[2,112],"76":[2,112],"77":[2,112],"78":[2,112],"79":[2,112],"82":[2,112],"90":[2,112],"92":[2,112],"97":[2,112],"105":[2,112],"107":[2,112],"108":[2,112],"109":[2,112],"112":[2,112],"116":[2,112],"117":[2,112],"118":[2,112],"125":[2,112],"126":[2,112],"127":[2,112],"129":[2,112],"130":[2,112],"132":[2,112],"133":[2,112],"136":[2,112],"137":[2,112],"138":[2,112],"139":[2,112],"140":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"147":[2,112],"148":[2,112],"149":[2,112],"150":[2,112],"151":[2,112],"152":[2,112],"153":[2,112],"154":[2,112],"155":[2,112],"156":[2,112],"157":[2,112],"158":[2,112],"159":[2,112],"160":[2,112],"161":[2,112]},{"4":[2,120],"28":[2,120],"29":[2,120],"56":[2,120],"92":[2,120],"97":[2,120]},{"4":[2,89],"28":[2,89],"29":[2,89],"56":[2,89],"82":[2,89]},{"1":[2,114],"4":[2,114],"28":[2,114],"29":[2,114],"45":[2,114],"48":[2,114],"56":[2,114],"59":[2,114],"70":[2,114],"71":[2,114],"72":[2,114],"73":[2,114],"76":[2,114],"77":[2,114],"78":[2,114],"79":[2,114],"82":[2,114],"84":[2,114],"90":[2,114],"92":[2,114],"97":[2,114],"105":[2,114],"107":[2,114],"108":[2,114],"109":[2,114],"112":[2,114],"116":[2,114],"117":[2,114],"118":[2,114],"125":[2,114],"126":[2,114],"127":[2,114],"129":[2,114],"130":[2,114],"132":[2,114],"133":[2,114],"136":[2,114],"137":[2,114],"138":[2,114],"139":[2,114],"140":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"147":[2,114],"148":[2,114],"149":[2,114],"150":[2,114],"151":[2,114],"152":[2,114],"153":[2,114],"154":[2,114],"155":[2,114],"156":[2,114],"157":[2,114],"158":[2,114],"159":[2,114],"160":[2,114],"161":[2,114]},{"1":[2,153],"4":[2,153],"28":[2,153],"29":[2,153],"48":[1,111],"56":[2,153],"59":[1,128],"77":[2,153],"82":[2,153],"92":[2,153],"97":[2,153],"105":[2,153],"106":126,"107":[2,153],"108":[2,153],"109":[2,153],"112":[2,153],"116":[1,121],"117":[1,122],"118":[2,153],"125":[2,153],"126":[2,153],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,154],"4":[2,154],"28":[2,154],"29":[2,154],"48":[1,111],"56":[2,154],"59":[1,128],"77":[2,154],"82":[2,154],"92":[2,154],"97":[2,154],"105":[2,154],"106":126,"107":[2,154],"108":[2,154],"109":[2,154],"112":[2,154],"116":[1,121],"117":[1,122],"118":[2,154],"125":[2,154],"126":[2,154],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]}], defaultActions: {"2":[2,2],"73":[2,52],"74":[2,53],"87":[2,4]}, parseError: function parseError(str, hash) { throw new Error(str); diff --git a/src/grammar.coffee b/src/grammar.coffee index 43f71bfa65..69eb750913 100644 --- a/src/grammar.coffee +++ b/src/grammar.coffee @@ -370,6 +370,7 @@ grammar: { # A catch clause names its error and runs a block of code. Catch: [ o "CATCH Identifier Block", -> [$2, $3] + o "CATCH Identifier TERMINATOR", -> [$2, new Expressions] ] # Throw an exception object. diff --git a/test/test_exceptions.coffee b/test/test_exceptions.coffee index 99bb7afb58..d11e18c50e 100644 --- a/test/test_exceptions.coffee +++ b/test/test_exceptions.coffee @@ -21,4 +21,11 @@ ok result is 2 result: try throw 'error' catch err then err.length -ok result is 5 \ No newline at end of file +ok result is 5 + + +# try/catch with empty clauses still compiles. +try + # nothing +catch err + #nothing \ No newline at end of file From 7a5f0140148731e2525f9400aa97dbb739a6b8a6 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Wed, 30 Jun 2010 21:54:16 -0400 Subject: [PATCH 09/33] fixing closurenode wrapping of bodies with bound function declarations inside -- this doesn't have to be mentioned explicitly. --- lib/nodes.js | 4 ++-- src/nodes.coffee | 7 +++++-- test/test_classes.coffee | 12 ++++++++++++ 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/lib/nodes.js b/lib/nodes.js index f339997414..2e7a3ebd3a 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -1623,10 +1623,10 @@ func = new ParentheticalNode(new CodeNode([], Expressions.wrap([expressions]))); args = []; mentionsArgs = expressions.contains(function(n) { - return (n instanceof LiteralNode) && (n.value === 'arguments'); + return n instanceof LiteralNode && (n.value === 'arguments'); }); mentionsThis = expressions.contains(function(n) { - return (n instanceof LiteralNode) && (n.value === 'this'); + return (n instanceof LiteralNode && (n.value === 'this')) || (n instanceof CodeNode && n.bound); }); if (mentionsArgs || mentionsThis) { meth = literal(mentionsArgs ? 'apply' : 'call'); diff --git a/src/nodes.coffee b/src/nodes.coffee index 42a272fbc7..a191d1002e 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -1381,8 +1381,11 @@ ClosureNode: exports.ClosureNode: { return expressions if expressions.containsPureStatement() func: new ParentheticalNode(new CodeNode([], Expressions.wrap([expressions]))) args: [] - mentionsArgs: expressions.contains (n) -> (n instanceof LiteralNode) and (n.value is 'arguments') - mentionsThis: expressions.contains (n) -> (n instanceof LiteralNode) and (n.value is 'this') + mentionsArgs: expressions.contains (n) -> + n instanceof LiteralNode and (n.value is 'arguments') + mentionsThis: expressions.contains (n) -> + (n instanceof LiteralNode and (n.value is 'this')) or + (n instanceof CodeNode and n.bound) if mentionsArgs or mentionsThis meth: literal(if mentionsArgs then 'apply' else 'call') args: [literal('this')] diff --git a/test/test_classes.coffee b/test/test_classes.coffee index bd3ad87011..0930d2316c 100644 --- a/test/test_classes.coffee +++ b/test/test_classes.coffee @@ -144,3 +144,15 @@ fido: new Dog('Fido') fido.bark: spark.bark ok fido.bark() is 'Spark woofs!' + + +# Testing a bound function in a bound function. +class Mini + num: 10 + generate: => + for i in [1..3] + => + @num + +m: new Mini +ok (func() for func in m.generate()).join(' ') is '10 10 10' From 9a8a7070169733a6c12bf81dc3e7abc643326c03 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Wed, 30 Jun 2010 22:03:20 -0400 Subject: [PATCH 10/33] throw a syntax error if you try to use the fat arrow to define a class constructor. --- lib/nodes.js | 3 +++ src/nodes.coffee | 1 + 2 files changed, 4 insertions(+) diff --git a/lib/nodes.js b/lib/nodes.js index 2e7a3ebd3a..14b9d93804 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -739,6 +739,9 @@ pvar = _e[0]; func = _e[1]; if (pvar && pvar.base.value === 'constructor' && func instanceof CodeNode) { + if (func.bound) { + throw new Error("cannot define a constructor as a bound function."); + } func.name = className; func.body.push(new ReturnNode(literal('this'))); this.variable = new ValueNode(this.variable); diff --git a/src/nodes.coffee b/src/nodes.coffee index a191d1002e..26e6481d2e 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -647,6 +647,7 @@ exports.ClassNode: class ClassNode extends BaseNode for prop in @properties [pvar, func]: [prop.variable, prop.value] if pvar and pvar.base.value is 'constructor' and func instanceof CodeNode + throw new Error "cannot define a constructor as a bound function." if func.bound func.name: className func.body.push new ReturnNode literal 'this' @variable: new ValueNode @variable From 364ec2a69411de964795c27dde3539885032d50d Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Thu, 1 Jul 2010 20:40:08 -0400 Subject: [PATCH 11/33] better syntax errors for tokens-not-in-the-grammar. Coming soon to a Jison near you (hopefully) --- lib/parser.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/parser.js b/lib/parser.js index 6c2bd91a5c..87af4d9ca7 100755 --- a/lib/parser.js +++ b/lib/parser.js @@ -541,7 +541,7 @@ parse: function parse(input) { token = self.lexer.lex() || 1; // $end = 1 // if token isn't its numeric value, convert if (typeof token !== 'number') { - token = self.symbols_[token]; + token = self.symbols_[token] || token; } return token; }; @@ -574,7 +574,7 @@ parse: function parse(input) { parseError.call(this, 'Parse error on line '+(yylineno+1)+":\n"+this.lexer.showPosition()+'\nExpecting '+expected.join(', '), {text: this.lexer.match, token: this.terminals_[symbol] || symbol, line: this.lexer.yylineno, expected: expected}); } else { - parseError.call(this, 'Parse error on line '+(yylineno+1)+": Unexpected '"+this.terminals_[symbol]+"'", + parseError.call(this, 'Parse error on line '+(yylineno+1)+": Unexpected '"+(this.terminals_[symbol] || symbol)+"'", {text: this.lexer.match, token: this.terminals_[symbol] || symbol, line: this.lexer.yylineno, expected: expected}); } } @@ -696,4 +696,4 @@ exports.main = function commonjsMain(args) { if (require.main === module) { exports.main(typeof process !== 'undefined' ? process.argv.slice(1) : require("system").args); } -} \ No newline at end of file +} From 77a75ed365dbe5f640e7d3d3ea2954059cd1cada Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Thu, 1 Jul 2010 21:26:33 -0400 Subject: [PATCH 12/33] adding passed-through block comments back to the grammar/lexer/rewriter/nodes ... thanks, Trevor Burnham. --- lib/grammar.js | 11 +- lib/lexer.js | 15 +- lib/nodes.js | 64 +++++-- lib/parser.js | 380 +++++++++++++++++++------------------- lib/rewriter.js | 27 +++ src/grammar.coffee | 8 + src/lexer.coffee | 11 +- src/nodes.coffee | 36 +++- src/rewriter.coffee | 24 +++ test/test_comments.coffee | 15 ++ 10 files changed, 381 insertions(+), 210 deletions(-) diff --git a/lib/grammar.js b/lib/grammar.js index d8e0f44a01..ff2212cc84 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -34,12 +34,14 @@ return new LiteralNode($1); }) ], - Expression: [o("Value"), o("Call"), o("Code"), o("Operation"), o("Assign"), o("If"), o("Try"), o("While"), o("For"), o("Switch"), o("Extends"), o("Class"), o("Splat"), o("Existence")], + Expression: [o("Value"), o("Call"), o("Code"), o("Operation"), o("Assign"), o("If"), o("Try"), o("While"), o("For"), o("Switch"), o("Extends"), o("Class"), o("Splat"), o("Existence"), o("Comment")], Block: [ o("INDENT Body OUTDENT", function() { return $2; }), o("INDENT OUTDENT", function() { return new Expressions(); + }), o("TERMINATOR Comment", function() { + return Expressions.wrap([$2]); }) ], Identifier: [ @@ -85,7 +87,7 @@ return new AssignNode(new ValueNode($1), $3, 'object'); }), o("AlphaNumeric ASSIGN Expression", function() { return new AssignNode(new ValueNode($1), $3, 'object'); - }) + }), o("Comment") ], Return: [ o("RETURN Expression", function() { @@ -94,6 +96,11 @@ return new ReturnNode(new ValueNode(new LiteralNode('null'))); }) ], + Comment: [ + o("HERECOMMENT", function() { + return new CommentNode($1); + }) + ], Existence: [ o("Expression ?", function() { return new ExistenceNode($1); diff --git a/lib/lexer.js b/lib/lexer.js index 642004ad5c..f7f732fb4d 100644 --- a/lib/lexer.js +++ b/lib/lexer.js @@ -152,12 +152,19 @@ return true; }; Lexer.prototype.commentToken = function() { - var match; + var comment, match; if (!(match = this.chunk.match(COMMENT))) { return false; } this.line += count(match[1], "\n"); this.i += match[1].length; + if (match[2]) { + comment = this.sanitizeHeredoc(match[2], { + herecomment: true + }); + this.token('HERECOMMENT', comment.split(MULTILINER)); + this.token('TERMINATOR', '\n'); + } return true; }; Lexer.prototype.jsToken = function() { @@ -352,7 +359,11 @@ indent = attempt; } } - return doc.replace(new RegExp("^" + indent, 'gm'), '').replace(MULTILINER, "\\n").replace(new RegExp(options.quote, 'g'), ("\\" + options.quote)); + doc = doc.replace(new RegExp("^" + indent, 'gm'), ''); + if (options.herecomment) { + return doc; + } + return doc.replace(MULTILINER, "\\n").replace(new RegExp(options.quote, 'g'), ("\\" + options.quote)); }; Lexer.prototype.tagHalfAssignment = function(tag) { var last; diff --git a/lib/nodes.js b/lib/nodes.js index 14b9d93804..05c0f4f203 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -1,5 +1,5 @@ (function(){ - var AccessorNode, ArrayNode, AssignNode, BaseNode, CallNode, ClassNode, ClosureNode, CodeNode, DOUBLE_PARENS, ExistenceNode, Expressions, ExtendsNode, ForNode, IDENTIFIER, IS_STRING, IfNode, InNode, IndexNode, LiteralNode, NUMBER, ObjectNode, OpNode, ParentheticalNode, PushNode, RangeNode, ReturnNode, Scope, SliceNode, SplatNode, TAB, TRAILING_WHITESPACE, ThrowNode, TryNode, UTILITIES, ValueNode, WhileNode, _a, compact, del, flatten, helpers, include, indexOf, literal, merge, starts, utility; + var AccessorNode, ArrayNode, AssignNode, BaseNode, CallNode, ClassNode, ClosureNode, CodeNode, CommentNode, DOUBLE_PARENS, ExistenceNode, Expressions, ExtendsNode, ForNode, IDENTIFIER, IS_STRING, IfNode, InNode, IndexNode, LiteralNode, NUMBER, ObjectNode, OpNode, ParentheticalNode, PushNode, RangeNode, ReturnNode, Scope, SliceNode, SplatNode, TAB, TRAILING_WHITESPACE, ThrowNode, TryNode, UTILITIES, ValueNode, WhileNode, _a, compact, del, flatten, helpers, include, indexOf, literal, merge, starts, utility; var __extends = function(child, parent) { var ctor = function(){ }; ctor.prototype = parent.prototype; @@ -36,7 +36,7 @@ } } top = this.topSensitive() ? this.options.top : del(this.options, 'top'); - closure = this.isStatement() && !this.isPureStatement() && !top && !this.options.asStatement && !this.containsPureStatement(); + closure = this.isStatement() && !this.isPureStatement() && !top && !this.options.asStatement && !(this instanceof CommentNode) && !this.containsPureStatement(); if (closure) { return this.compileClosure(this.options); } else { @@ -197,6 +197,9 @@ var idx, last; idx = this.expressions.length - 1; last = this.expressions[idx]; + if (last instanceof CommentNode) { + last = this.expressions[idx -= 1]; + } if (!last || last instanceof ReturnNode) { return this; } @@ -418,6 +421,26 @@ }; return ValueNode; })(); + exports.CommentNode = (function() { + CommentNode = function(lines) { + this.lines = lines; + return this; + }; + __extends(CommentNode, BaseNode); + CommentNode.prototype['class'] = 'CommentNode'; + CommentNode.prototype.isStatement = function() { + return true; + }; + CommentNode.prototype.makeReturn = function() { + return this; + }; + CommentNode.prototype.compileNode = function(o) { + var sep; + sep = ("\n" + this.tab); + return "" + this.tab + "/*" + sep + (this.lines.join(sep)) + "\n" + this.tab + "*/"; + }; + return CommentNode; + })(); exports.CallNode = (function() { CallNode = function(variable, args) { this.isNew = false; @@ -641,22 +664,37 @@ ObjectNode.prototype['class'] = 'ObjectNode'; ObjectNode.prototype.children = ['properties']; ObjectNode.prototype.compileNode = function(o) { - var _b, _c, _d, i, inner, join, last, prop, props; + var _b, _c, _d, _e, _f, _g, _h, i, indent, inner, join, lastNoncom, nonComments, prop, props; o.indent = this.idt(1); - last = this.properties.length - 1; + nonComments = (function() { + _b = []; _d = this.properties; + for (_c = 0, _e = _d.length; _c < _e; _c++) { + prop = _d[_c]; + !(prop instanceof CommentNode) ? _b.push(prop) : null; + } + return _b; + }).call(this); + lastNoncom = nonComments[nonComments.length - 1]; props = (function() { - _b = []; _c = this.properties; - for (i = 0, _d = _c.length; i < _d; i++) { - prop = _c[i]; - _b.push((function() { - join = i === last ? '' : ',\n'; - if (!(prop instanceof AssignNode)) { + _f = []; _g = this.properties; + for (i = 0, _h = _g.length; i < _h; i++) { + prop = _g[i]; + _f.push((function() { + join = ",\n"; + if ((prop === lastNoncom) || (prop instanceof CommentNode)) { + join = "\n"; + } + if (i === this.properties.length - 1) { + join = ''; + } + indent = prop instanceof CommentNode ? '' : this.idt(1); + if (!(prop instanceof AssignNode || prop instanceof CommentNode)) { prop = new AssignNode(prop, prop, 'object'); } - return this.idt(1) + prop.compile(o) + join; + return indent + prop.compile(o) + join; }).call(this)); } - return _b; + return _f; }).call(this); props = props.join(''); inner = props ? '\n' + props + '\n' + this.idt() : ''; @@ -685,6 +723,8 @@ code = obj.compile(o); if (obj instanceof SplatNode) { return this.compileSplatLiteral(this.objects, o); + } else if (obj instanceof CommentNode) { + objects.push("\n" + code + "\n" + o.indent); } else if (i === this.objects.length - 1) { objects.push(code); } else { diff --git a/lib/parser.js b/lib/parser.js index 87af4d9ca7..4e1f81f853 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,"Value":14,"Call":15,"Code":16,"Operation":17,"Assign":18,"If":19,"Try":20,"While":21,"For":22,"Switch":23,"Extends":24,"Class":25,"Splat":26,"Existence":27,"INDENT":28,"OUTDENT":29,"Identifier":30,"IDENTIFIER":31,"AlphaNumeric":32,"NUMBER":33,"STRING":34,"Literal":35,"JS":36,"REGEX":37,"TRUE":38,"FALSE":39,"YES":40,"NO":41,"ON":42,"OFF":43,"Assignable":44,"ASSIGN":45,"AssignObj":46,"RETURN":47,"?":48,"PARAM_START":49,"ParamList":50,"PARAM_END":51,"FuncGlyph":52,"->":53,"=>":54,"OptComma":55,",":56,"Param":57,"PARAM":58,".":59,"SimpleAssignable":60,"Accessor":61,"Invocation":62,"ThisProperty":63,"Array":64,"Object":65,"Parenthetical":66,"Range":67,"This":68,"NULL":69,"PROPERTY_ACCESS":70,"PROTOTYPE_ACCESS":71,"::":72,"SOAK_ACCESS":73,"Index":74,"Slice":75,"INDEX_START":76,"INDEX_END":77,"INDEX_SOAK":78,"INDEX_PROTO":79,"{":80,"AssignList":81,"}":82,"CLASS":83,"EXTENDS":84,"ClassBody":85,"ClassAssign":86,"Super":87,"NEW":88,"Arguments":89,"CALL_START":90,"ArgList":91,"CALL_END":92,"SUPER":93,"THIS":94,"@":95,"[":96,"]":97,"SimpleArgs":98,"TRY":99,"Catch":100,"FINALLY":101,"CATCH":102,"THROW":103,"(":104,")":105,"WhileSource":106,"WHILE":107,"WHEN":108,"UNTIL":109,"Loop":110,"LOOP":111,"FOR":112,"ForVariables":113,"ForSource":114,"ForValue":115,"IN":116,"OF":117,"BY":118,"SWITCH":119,"Whens":120,"ELSE":121,"When":122,"LEADING_WHEN":123,"IfBlock":124,"IF":125,"UNLESS":126,"!":127,"!!":128,"-":129,"+":130,"~":131,"--":132,"++":133,"DELETE":134,"TYPEOF":135,"*":136,"/":137,"%":138,"<<":139,">>":140,">>>":141,"&":142,"|":143,"^":144,"<=":145,"<":146,">":147,">=":148,"==":149,"!=":150,"&&":151,"||":152,"-=":153,"+=":154,"/=":155,"*=":156,"%=":157,"||=":158,"&&=":159,"?=":160,"INSTANCEOF":161,"$accept":0,"$end":1}, -terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","28":"INDENT","29":"OUTDENT","31":"IDENTIFIER","33":"NUMBER","34":"STRING","36":"JS","37":"REGEX","38":"TRUE","39":"FALSE","40":"YES","41":"NO","42":"ON","43":"OFF","45":"ASSIGN","47":"RETURN","48":"?","49":"PARAM_START","51":"PARAM_END","53":"->","54":"=>","56":",","58":"PARAM","59":".","69":"NULL","70":"PROPERTY_ACCESS","71":"PROTOTYPE_ACCESS","72":"::","73":"SOAK_ACCESS","76":"INDEX_START","77":"INDEX_END","78":"INDEX_SOAK","79":"INDEX_PROTO","80":"{","82":"}","83":"CLASS","84":"EXTENDS","88":"NEW","90":"CALL_START","92":"CALL_END","93":"SUPER","94":"THIS","95":"@","96":"[","97":"]","99":"TRY","101":"FINALLY","102":"CATCH","103":"THROW","104":"(","105":")","107":"WHILE","108":"WHEN","109":"UNTIL","111":"LOOP","112":"FOR","116":"IN","117":"OF","118":"BY","119":"SWITCH","121":"ELSE","123":"LEADING_WHEN","125":"IF","126":"UNLESS","127":"!","128":"!!","129":"-","130":"+","131":"~","132":"--","133":"++","134":"DELETE","135":"TYPEOF","136":"*","137":"/","138":"%","139":"<<","140":">>","141":">>>","142":"&","143":"|","144":"^","145":"<=","146":"<","147":">","148":">=","149":"==","150":"!=","151":"&&","152":"||","153":"-=","154":"+=","155":"/=","156":"*=","157":"%=","158":"||=","159":"&&=","160":"?=","161":"INSTANCEOF"}, -productions_: [0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[30,1],[32,1],[32,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[18,3],[46,1],[46,1],[46,3],[46,3],[10,2],[10,1],[27,2],[16,5],[16,2],[52,1],[52,1],[55,0],[55,1],[50,0],[50,1],[50,3],[57,1],[57,4],[26,4],[60,1],[60,2],[60,2],[60,1],[44,1],[44,1],[44,1],[14,1],[14,1],[14,1],[14,1],[14,1],[14,1],[61,2],[61,2],[61,1],[61,2],[61,1],[61,1],[74,3],[74,2],[74,2],[65,4],[81,0],[81,1],[81,3],[81,4],[81,6],[25,2],[25,4],[25,5],[25,7],[86,1],[86,3],[85,0],[85,1],[85,3],[15,1],[15,1],[15,2],[15,2],[24,3],[62,2],[62,2],[89,4],[87,2],[68,1],[68,1],[63,2],[67,6],[67,7],[75,6],[75,7],[64,4],[91,0],[91,1],[91,3],[91,4],[91,6],[98,1],[98,3],[20,3],[20,4],[20,5],[100,3],[100,3],[11,2],[66,3],[106,2],[106,4],[106,2],[106,4],[21,2],[21,2],[21,2],[21,1],[110,2],[110,2],[22,4],[22,4],[22,4],[115,1],[115,1],[115,1],[113,1],[113,3],[114,2],[114,2],[114,4],[114,4],[114,4],[114,6],[114,6],[23,5],[23,7],[23,4],[23,6],[120,1],[120,2],[122,3],[122,4],[124,3],[124,3],[124,5],[124,3],[19,1],[19,3],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,4],[17,4]], +symbols_: {"error":2,"Root":3,"TERMINATOR":4,"Body":5,"Block":6,"Line":7,"Expression":8,"Statement":9,"Return":10,"Throw":11,"BREAK":12,"CONTINUE":13,"Value":14,"Call":15,"Code":16,"Operation":17,"Assign":18,"If":19,"Try":20,"While":21,"For":22,"Switch":23,"Extends":24,"Class":25,"Splat":26,"Existence":27,"Comment":28,"INDENT":29,"OUTDENT":30,"Identifier":31,"IDENTIFIER":32,"AlphaNumeric":33,"NUMBER":34,"STRING":35,"Literal":36,"JS":37,"REGEX":38,"TRUE":39,"FALSE":40,"YES":41,"NO":42,"ON":43,"OFF":44,"Assignable":45,"ASSIGN":46,"AssignObj":47,"RETURN":48,"HERECOMMENT":49,"?":50,"PARAM_START":51,"ParamList":52,"PARAM_END":53,"FuncGlyph":54,"->":55,"=>":56,"OptComma":57,",":58,"Param":59,"PARAM":60,".":61,"SimpleAssignable":62,"Accessor":63,"Invocation":64,"ThisProperty":65,"Array":66,"Object":67,"Parenthetical":68,"Range":69,"This":70,"NULL":71,"PROPERTY_ACCESS":72,"PROTOTYPE_ACCESS":73,"::":74,"SOAK_ACCESS":75,"Index":76,"Slice":77,"INDEX_START":78,"INDEX_END":79,"INDEX_SOAK":80,"INDEX_PROTO":81,"{":82,"AssignList":83,"}":84,"CLASS":85,"EXTENDS":86,"ClassBody":87,"ClassAssign":88,"Super":89,"NEW":90,"Arguments":91,"CALL_START":92,"ArgList":93,"CALL_END":94,"SUPER":95,"THIS":96,"@":97,"[":98,"]":99,"SimpleArgs":100,"TRY":101,"Catch":102,"FINALLY":103,"CATCH":104,"THROW":105,"(":106,")":107,"WhileSource":108,"WHILE":109,"WHEN":110,"UNTIL":111,"Loop":112,"LOOP":113,"FOR":114,"ForVariables":115,"ForSource":116,"ForValue":117,"IN":118,"OF":119,"BY":120,"SWITCH":121,"Whens":122,"ELSE":123,"When":124,"LEADING_WHEN":125,"IfBlock":126,"IF":127,"UNLESS":128,"!":129,"!!":130,"-":131,"+":132,"~":133,"--":134,"++":135,"DELETE":136,"TYPEOF":137,"*":138,"/":139,"%":140,"<<":141,">>":142,">>>":143,"&":144,"|":145,"^":146,"<=":147,"<":148,">":149,">=":150,"==":151,"!=":152,"&&":153,"||":154,"-=":155,"+=":156,"/=":157,"*=":158,"%=":159,"||=":160,"&&=":161,"?=":162,"INSTANCEOF":163,"$accept":0,"$end":1}, +terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","29":"INDENT","30":"OUTDENT","32":"IDENTIFIER","34":"NUMBER","35":"STRING","37":"JS","38":"REGEX","39":"TRUE","40":"FALSE","41":"YES","42":"NO","43":"ON","44":"OFF","46":"ASSIGN","48":"RETURN","49":"HERECOMMENT","50":"?","51":"PARAM_START","53":"PARAM_END","55":"->","56":"=>","58":",","60":"PARAM","61":".","71":"NULL","72":"PROPERTY_ACCESS","73":"PROTOTYPE_ACCESS","74":"::","75":"SOAK_ACCESS","78":"INDEX_START","79":"INDEX_END","80":"INDEX_SOAK","81":"INDEX_PROTO","82":"{","84":"}","85":"CLASS","86":"EXTENDS","90":"NEW","92":"CALL_START","94":"CALL_END","95":"SUPER","96":"THIS","97":"@","98":"[","99":"]","101":"TRY","103":"FINALLY","104":"CATCH","105":"THROW","106":"(","107":")","109":"WHILE","110":"WHEN","111":"UNTIL","113":"LOOP","114":"FOR","118":"IN","119":"OF","120":"BY","121":"SWITCH","123":"ELSE","125":"LEADING_WHEN","127":"IF","128":"UNLESS","129":"!","130":"!!","131":"-","132":"+","133":"~","134":"--","135":"++","136":"DELETE","137":"TYPEOF","138":"*","139":"/","140":"%","141":"<<","142":">>","143":">>>","144":"&","145":"|","146":"^","147":"<=","148":"<","149":">","150":">=","151":"==","152":"!=","153":"&&","154":"||","155":"-=","156":"+=","157":"/=","158":"*=","159":"%=","160":"||=","161":"&&=","162":"?=","163":"INSTANCEOF"}, +productions_: [0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[31,1],[33,1],[33,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[18,3],[47,1],[47,1],[47,3],[47,3],[47,1],[10,2],[10,1],[28,1],[27,2],[16,5],[16,2],[54,1],[54,1],[57,0],[57,1],[52,0],[52,1],[52,3],[59,1],[59,4],[26,4],[62,1],[62,2],[62,2],[62,1],[45,1],[45,1],[45,1],[14,1],[14,1],[14,1],[14,1],[14,1],[14,1],[63,2],[63,2],[63,1],[63,2],[63,1],[63,1],[76,3],[76,2],[76,2],[67,4],[83,0],[83,1],[83,3],[83,4],[83,6],[25,2],[25,4],[25,5],[25,7],[88,1],[88,3],[87,0],[87,1],[87,3],[15,1],[15,1],[15,2],[15,2],[24,3],[64,2],[64,2],[91,4],[89,2],[70,1],[70,1],[65,2],[69,6],[69,7],[77,6],[77,7],[66,4],[93,0],[93,1],[93,3],[93,4],[93,6],[100,1],[100,3],[20,3],[20,4],[20,5],[102,3],[102,3],[11,2],[68,3],[108,2],[108,4],[108,2],[108,4],[21,2],[21,2],[21,2],[21,1],[112,2],[112,2],[22,4],[22,4],[22,4],[117,1],[117,1],[117,1],[115,1],[115,3],[116,2],[116,2],[116,4],[116,4],[116,4],[116,6],[116,6],[23,5],[23,7],[23,4],[23,6],[122,1],[122,2],[124,3],[124,4],[126,3],[126,3],[126,5],[126,3],[19,1],[19,3],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,4],[17,4]], performAction: function anonymous(yytext,yyleng,yylineno,yy) { var $$ = arguments[5],$0=arguments[5].length; @@ -63,25 +63,25 @@ case 26:this.$ = $$[$0-1+1-1]; break; case 27:this.$ = $$[$0-1+1-1]; break; -case 28:this.$ = $$[$0-3+2-1]; +case 28:this.$ = $$[$0-1+1-1]; break; -case 29:this.$ = new Expressions(); +case 29:this.$ = $$[$0-3+2-1]; break; -case 30:this.$ = new LiteralNode($$[$0-1+1-1]); +case 30:this.$ = new Expressions(); break; -case 31:this.$ = new LiteralNode($$[$0-1+1-1]); +case 31:this.$ = Expressions.wrap([$$[$0-2+2-1]]); break; case 32:this.$ = new LiteralNode($$[$0-1+1-1]); break; -case 33:this.$ = $$[$0-1+1-1]; +case 33:this.$ = new LiteralNode($$[$0-1+1-1]); break; case 34:this.$ = new LiteralNode($$[$0-1+1-1]); break; -case 35:this.$ = new LiteralNode($$[$0-1+1-1]); +case 35:this.$ = $$[$0-1+1-1]; break; -case 36:this.$ = new LiteralNode(true); +case 36:this.$ = new LiteralNode($$[$0-1+1-1]); break; -case 37:this.$ = new LiteralNode(false); +case 37:this.$ = new LiteralNode($$[$0-1+1-1]); break; case 38:this.$ = new LiteralNode(true); break; @@ -91,63 +91,63 @@ case 40:this.$ = new LiteralNode(true); break; case 41:this.$ = new LiteralNode(false); break; -case 42:this.$ = new AssignNode($$[$0-3+1-1], $$[$0-3+3-1]); +case 42:this.$ = new LiteralNode(true); break; -case 43:this.$ = new ValueNode($$[$0-1+1-1]); +case 43:this.$ = new LiteralNode(false); break; -case 44:this.$ = $$[$0-1+1-1]; +case 44:this.$ = new AssignNode($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 45:this.$ = new AssignNode(new ValueNode($$[$0-3+1-1]), $$[$0-3+3-1], 'object'); +case 45:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 46:this.$ = new AssignNode(new ValueNode($$[$0-3+1-1]), $$[$0-3+3-1], 'object'); +case 46:this.$ = $$[$0-1+1-1]; break; -case 47:this.$ = new ReturnNode($$[$0-2+2-1]); +case 47:this.$ = new AssignNode(new ValueNode($$[$0-3+1-1]), $$[$0-3+3-1], 'object'); break; -case 48:this.$ = new ReturnNode(new ValueNode(new LiteralNode('null'))); +case 48:this.$ = new AssignNode(new ValueNode($$[$0-3+1-1]), $$[$0-3+3-1], 'object'); break; -case 49:this.$ = new ExistenceNode($$[$0-2+1-1]); +case 49:this.$ = $$[$0-1+1-1]; break; -case 50:this.$ = new CodeNode($$[$0-5+2-1], $$[$0-5+5-1], $$[$0-5+4-1]); +case 50:this.$ = new ReturnNode($$[$0-2+2-1]); break; -case 51:this.$ = new CodeNode([], $$[$0-2+2-1], $$[$0-2+1-1]); +case 51:this.$ = new ReturnNode(new ValueNode(new LiteralNode('null'))); break; -case 52:this.$ = 'func'; +case 52:this.$ = new CommentNode($$[$0-1+1-1]); break; -case 53:this.$ = 'boundfunc'; +case 53:this.$ = new ExistenceNode($$[$0-2+1-1]); break; -case 54:this.$ = $$[$0-1+1-1]; +case 54:this.$ = new CodeNode($$[$0-5+2-1], $$[$0-5+5-1], $$[$0-5+4-1]); break; -case 55:this.$ = $$[$0-1+1-1]; +case 55:this.$ = new CodeNode([], $$[$0-2+2-1], $$[$0-2+1-1]); break; -case 56:this.$ = []; +case 56:this.$ = 'func'; break; -case 57:this.$ = [$$[$0-1+1-1]]; +case 57:this.$ = 'boundfunc'; break; -case 58:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); +case 58:this.$ = $$[$0-1+1-1]; break; -case 59:this.$ = new LiteralNode($$[$0-1+1-1]); +case 59:this.$ = $$[$0-1+1-1]; break; -case 60:this.$ = new SplatNode($$[$0-4+1-1]); +case 60:this.$ = []; break; -case 61:this.$ = new SplatNode($$[$0-4+1-1]); +case 61:this.$ = [$$[$0-1+1-1]]; break; -case 62:this.$ = new ValueNode($$[$0-1+1-1]); +case 62:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); break; -case 63:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); +case 63:this.$ = new LiteralNode($$[$0-1+1-1]); break; -case 64:this.$ = new ValueNode($$[$0-2+1-1], [$$[$0-2+2-1]]); +case 64:this.$ = new SplatNode($$[$0-4+1-1]); break; -case 65:this.$ = $$[$0-1+1-1]; +case 65:this.$ = new SplatNode($$[$0-4+1-1]); break; -case 66:this.$ = $$[$0-1+1-1]; +case 66:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 67:this.$ = new ValueNode($$[$0-1+1-1]); +case 67:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); break; -case 68:this.$ = new ValueNode($$[$0-1+1-1]); +case 68:this.$ = new ValueNode($$[$0-2+1-1], [$$[$0-2+2-1]]); break; case 69:this.$ = $$[$0-1+1-1]; break; -case 70:this.$ = new ValueNode($$[$0-1+1-1]); +case 70:this.$ = $$[$0-1+1-1]; break; case 71:this.$ = new ValueNode($$[$0-1+1-1]); break; @@ -155,109 +155,117 @@ case 72:this.$ = new ValueNode($$[$0-1+1-1]); break; case 73:this.$ = $$[$0-1+1-1]; break; -case 74:this.$ = new ValueNode(new LiteralNode('null')); +case 74:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 75:this.$ = new AccessorNode($$[$0-2+2-1]); +case 75:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 76:this.$ = new AccessorNode($$[$0-2+2-1], 'prototype'); +case 76:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 77:this.$ = new AccessorNode(new LiteralNode('prototype')); +case 77:this.$ = $$[$0-1+1-1]; break; -case 78:this.$ = new AccessorNode($$[$0-2+2-1], 'soak'); +case 78:this.$ = new ValueNode(new LiteralNode('null')); break; -case 79:this.$ = $$[$0-1+1-1]; +case 79:this.$ = new AccessorNode($$[$0-2+2-1]); break; -case 80:this.$ = new SliceNode($$[$0-1+1-1]); +case 80:this.$ = new AccessorNode($$[$0-2+2-1], 'prototype'); break; -case 81:this.$ = new IndexNode($$[$0-3+2-1]); +case 81:this.$ = new AccessorNode(new LiteralNode('prototype')); break; -case 82:this.$ = (function () { +case 82:this.$ = new AccessorNode($$[$0-2+2-1], 'soak'); +break; +case 83:this.$ = $$[$0-1+1-1]; +break; +case 84:this.$ = new SliceNode($$[$0-1+1-1]); +break; +case 85:this.$ = new IndexNode($$[$0-3+2-1]); +break; +case 86:this.$ = (function () { $$[$0-2+2-1].soakNode = true; return $$[$0-2+2-1]; }()); break; -case 83:this.$ = (function () { +case 87:this.$ = (function () { $$[$0-2+2-1].proto = true; return $$[$0-2+2-1]; }()); break; -case 84:this.$ = new ObjectNode($$[$0-4+2-1]); +case 88:this.$ = new ObjectNode($$[$0-4+2-1]); break; -case 85:this.$ = []; +case 89:this.$ = []; break; -case 86:this.$ = [$$[$0-1+1-1]]; +case 90:this.$ = [$$[$0-1+1-1]]; break; -case 87:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); +case 91:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); break; -case 88:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); +case 92:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); break; -case 89:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); +case 93:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); break; -case 90:this.$ = new ClassNode($$[$0-2+2-1]); +case 94:this.$ = new ClassNode($$[$0-2+2-1]); break; -case 91:this.$ = new ClassNode($$[$0-4+2-1], $$[$0-4+4-1]); +case 95:this.$ = new ClassNode($$[$0-4+2-1], $$[$0-4+4-1]); break; -case 92:this.$ = new ClassNode($$[$0-5+2-1], null, $$[$0-5+4-1]); +case 96:this.$ = new ClassNode($$[$0-5+2-1], null, $$[$0-5+4-1]); break; -case 93:this.$ = new ClassNode($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); +case 97:this.$ = new ClassNode($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); break; -case 94:this.$ = $$[$0-1+1-1]; +case 98:this.$ = $$[$0-1+1-1]; break; -case 95:this.$ = new AssignNode(new ValueNode($$[$0-3+1-1]), $$[$0-3+3-1], 'this'); +case 99:this.$ = new AssignNode(new ValueNode($$[$0-3+1-1]), $$[$0-3+3-1], 'this'); break; -case 96:this.$ = []; +case 100:this.$ = []; break; -case 97:this.$ = [$$[$0-1+1-1]]; +case 101:this.$ = [$$[$0-1+1-1]]; break; -case 98:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +case 102:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; -case 99:this.$ = $$[$0-1+1-1]; +case 103:this.$ = $$[$0-1+1-1]; break; -case 100:this.$ = $$[$0-1+1-1]; +case 104:this.$ = $$[$0-1+1-1]; break; -case 101:this.$ = $$[$0-2+2-1].newInstance(); +case 105:this.$ = $$[$0-2+2-1].newInstance(); break; -case 102:this.$ = (new CallNode($$[$0-2+2-1], [])).newInstance(); +case 106:this.$ = (new CallNode($$[$0-2+2-1], [])).newInstance(); break; -case 103:this.$ = new ExtendsNode($$[$0-3+1-1], $$[$0-3+3-1]); +case 107:this.$ = new ExtendsNode($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 104:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); +case 108:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 105:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); +case 109:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 106:this.$ = $$[$0-4+2-1]; +case 110:this.$ = $$[$0-4+2-1]; break; -case 107:this.$ = new CallNode('super', $$[$0-2+2-1]); +case 111:this.$ = new CallNode('super', $$[$0-2+2-1]); break; -case 108:this.$ = new ValueNode(new LiteralNode('this')); +case 112:this.$ = new ValueNode(new LiteralNode('this')); break; -case 109:this.$ = new ValueNode(new LiteralNode('this')); +case 113:this.$ = new ValueNode(new LiteralNode('this')); break; -case 110:this.$ = new ValueNode(new LiteralNode('this'), [new AccessorNode($$[$0-2+2-1])]); +case 114:this.$ = new ValueNode(new LiteralNode('this'), [new AccessorNode($$[$0-2+2-1])]); break; -case 111:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); +case 115:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); break; -case 112:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); +case 116:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); break; -case 113:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); +case 117:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); break; -case 114:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); +case 118:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); break; -case 115:this.$ = new ArrayNode($$[$0-4+2-1]); +case 119:this.$ = new ArrayNode($$[$0-4+2-1]); break; -case 116:this.$ = []; +case 120:this.$ = []; break; -case 117:this.$ = [$$[$0-1+1-1]]; +case 121:this.$ = [$$[$0-1+1-1]]; break; -case 118:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); +case 122:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); break; -case 119:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); +case 123:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); break; -case 120:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); +case 124:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); break; -case 121:this.$ = $$[$0-1+1-1]; +case 125:this.$ = $$[$0-1+1-1]; break; -case 122:this.$ = (function () { +case 126:this.$ = (function () { if ($$[$0-3+1-1] instanceof Array) { return $$[$0-3+1-1].concat([$$[$0-3+3-1]]); } else { @@ -265,242 +273,242 @@ case 122:this.$ = (function () { } }()); break; -case 123:this.$ = new TryNode($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); +case 127:this.$ = new TryNode($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); break; -case 124:this.$ = new TryNode($$[$0-4+2-1], null, null, $$[$0-4+4-1]); +case 128:this.$ = new TryNode($$[$0-4+2-1], null, null, $$[$0-4+4-1]); break; -case 125:this.$ = new TryNode($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); +case 129:this.$ = new TryNode($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); break; -case 126:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; +case 130:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; break; -case 127:this.$ = [$$[$0-3+2-1], new Expressions()]; +case 131:this.$ = [$$[$0-3+2-1], new Expressions()]; break; -case 128:this.$ = new ThrowNode($$[$0-2+2-1]); +case 132:this.$ = new ThrowNode($$[$0-2+2-1]); break; -case 129:this.$ = new ParentheticalNode($$[$0-3+2-1]); +case 133:this.$ = new ParentheticalNode($$[$0-3+2-1]); break; -case 130:this.$ = new WhileNode($$[$0-2+2-1]); +case 134:this.$ = new WhileNode($$[$0-2+2-1]); break; -case 131:this.$ = new WhileNode($$[$0-4+2-1], { +case 135:this.$ = new WhileNode($$[$0-4+2-1], { guard: $$[$0-4+4-1] }); break; -case 132:this.$ = new WhileNode($$[$0-2+2-1], { +case 136:this.$ = new WhileNode($$[$0-2+2-1], { invert: true }); break; -case 133:this.$ = new WhileNode($$[$0-4+2-1], { +case 137:this.$ = new WhileNode($$[$0-4+2-1], { invert: true, guard: $$[$0-4+4-1] }); break; -case 134:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); +case 138:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); break; -case 135:this.$ = $$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]])); +case 139:this.$ = $$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]])); break; -case 136:this.$ = $$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]])); +case 140:this.$ = $$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]])); break; -case 137:this.$ = $$[$0-1+1-1]; +case 141:this.$ = $$[$0-1+1-1]; break; -case 138:this.$ = new WhileNode(new LiteralNode('true')).addBody($$[$0-2+2-1]); +case 142:this.$ = new WhileNode(new LiteralNode('true')).addBody($$[$0-2+2-1]); break; -case 139:this.$ = new WhileNode(new LiteralNode('true')).addBody(Expressions.wrap([$$[$0-2+2-1]])); +case 143:this.$ = new WhileNode(new LiteralNode('true')).addBody(Expressions.wrap([$$[$0-2+2-1]])); break; -case 140:this.$ = new ForNode($$[$0-4+1-1], $$[$0-4+4-1], $$[$0-4+3-1][0], $$[$0-4+3-1][1]); +case 144:this.$ = new ForNode($$[$0-4+1-1], $$[$0-4+4-1], $$[$0-4+3-1][0], $$[$0-4+3-1][1]); break; -case 141:this.$ = new ForNode($$[$0-4+1-1], $$[$0-4+4-1], $$[$0-4+3-1][0], $$[$0-4+3-1][1]); +case 145:this.$ = new ForNode($$[$0-4+1-1], $$[$0-4+4-1], $$[$0-4+3-1][0], $$[$0-4+3-1][1]); break; -case 142:this.$ = new ForNode($$[$0-4+4-1], $$[$0-4+3-1], $$[$0-4+2-1][0], $$[$0-4+2-1][1]); +case 146:this.$ = new ForNode($$[$0-4+4-1], $$[$0-4+3-1], $$[$0-4+2-1][0], $$[$0-4+2-1][1]); break; -case 143:this.$ = $$[$0-1+1-1]; +case 147:this.$ = $$[$0-1+1-1]; break; -case 144:this.$ = new ValueNode($$[$0-1+1-1]); +case 148:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 145:this.$ = new ValueNode($$[$0-1+1-1]); +case 149:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 146:this.$ = [$$[$0-1+1-1]]; +case 150:this.$ = [$$[$0-1+1-1]]; break; -case 147:this.$ = [$$[$0-3+1-1], $$[$0-3+3-1]]; +case 151:this.$ = [$$[$0-3+1-1], $$[$0-3+3-1]]; break; -case 148:this.$ = { +case 152:this.$ = { source: $$[$0-2+2-1] }; break; -case 149:this.$ = { +case 153:this.$ = { source: $$[$0-2+2-1], object: true }; break; -case 150:this.$ = { +case 154:this.$ = { source: $$[$0-4+2-1], guard: $$[$0-4+4-1] }; break; -case 151:this.$ = { +case 155:this.$ = { source: $$[$0-4+2-1], guard: $$[$0-4+4-1], object: true }; break; -case 152:this.$ = { +case 156:this.$ = { source: $$[$0-4+2-1], step: $$[$0-4+4-1] }; break; -case 153:this.$ = { +case 157:this.$ = { source: $$[$0-6+2-1], guard: $$[$0-6+4-1], step: $$[$0-6+6-1] }; break; -case 154:this.$ = { +case 158:this.$ = { source: $$[$0-6+2-1], step: $$[$0-6+4-1], guard: $$[$0-6+6-1] }; break; -case 155:this.$ = $$[$0-5+4-1].switchesOver($$[$0-5+2-1]); +case 159:this.$ = $$[$0-5+4-1].switchesOver($$[$0-5+2-1]); break; -case 156:this.$ = $$[$0-7+4-1].switchesOver($$[$0-7+2-1]).addElse($$[$0-7+6-1], true); +case 160:this.$ = $$[$0-7+4-1].switchesOver($$[$0-7+2-1]).addElse($$[$0-7+6-1], true); break; -case 157:this.$ = $$[$0-4+3-1]; +case 161:this.$ = $$[$0-4+3-1]; break; -case 158:this.$ = $$[$0-6+3-1].addElse($$[$0-6+5-1], true); +case 162:this.$ = $$[$0-6+3-1].addElse($$[$0-6+5-1], true); break; -case 159:this.$ = $$[$0-1+1-1]; +case 163:this.$ = $$[$0-1+1-1]; break; -case 160:this.$ = $$[$0-2+1-1].addElse($$[$0-2+2-1]); +case 164:this.$ = $$[$0-2+1-1].addElse($$[$0-2+2-1]); break; -case 161:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { +case 165:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { statement: true }); break; -case 162:this.$ = new IfNode($$[$0-4+2-1], $$[$0-4+3-1], { +case 166:this.$ = new IfNode($$[$0-4+2-1], $$[$0-4+3-1], { statement: true }); break; -case 163:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1]); +case 167:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1]); break; -case 164:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { +case 168:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { invert: true }); break; -case 165:this.$ = $$[$0-5+1-1].addElse((new IfNode($$[$0-5+4-1], $$[$0-5+5-1])).forceStatement()); +case 169:this.$ = $$[$0-5+1-1].addElse((new IfNode($$[$0-5+4-1], $$[$0-5+5-1])).forceStatement()); break; -case 166:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); +case 170:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); break; -case 167:this.$ = $$[$0-1+1-1]; +case 171:this.$ = $$[$0-1+1-1]; break; -case 168:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { +case 172:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { statement: true }); break; -case 169:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { +case 173:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { statement: true }); break; -case 170:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { +case 174:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { statement: true, invert: true }); break; -case 171:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { +case 175:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { statement: true, invert: true }); break; -case 172:this.$ = new OpNode('!', $$[$0-2+2-1]); +case 176:this.$ = new OpNode('!', $$[$0-2+2-1]); break; -case 173:this.$ = new OpNode('!!', $$[$0-2+2-1]); +case 177:this.$ = new OpNode('!!', $$[$0-2+2-1]); break; -case 174:this.$ = new OpNode('-', $$[$0-2+2-1]); +case 178:this.$ = new OpNode('-', $$[$0-2+2-1]); break; -case 175:this.$ = new OpNode('+', $$[$0-2+2-1]); +case 179:this.$ = new OpNode('+', $$[$0-2+2-1]); break; -case 176:this.$ = new OpNode('~', $$[$0-2+2-1]); +case 180:this.$ = new OpNode('~', $$[$0-2+2-1]); break; -case 177:this.$ = new OpNode('--', $$[$0-2+2-1]); +case 181:this.$ = new OpNode('--', $$[$0-2+2-1]); break; -case 178:this.$ = new OpNode('++', $$[$0-2+2-1]); +case 182:this.$ = new OpNode('++', $$[$0-2+2-1]); break; -case 179:this.$ = new OpNode('delete', $$[$0-2+2-1]); +case 183:this.$ = new OpNode('delete', $$[$0-2+2-1]); break; -case 180:this.$ = new OpNode('typeof', $$[$0-2+2-1]); +case 184:this.$ = new OpNode('typeof', $$[$0-2+2-1]); break; -case 181:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); +case 185:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); break; -case 182:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); +case 186:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); break; -case 183:this.$ = new OpNode('*', $$[$0-3+1-1], $$[$0-3+3-1]); +case 187:this.$ = new OpNode('*', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 184:this.$ = new OpNode('/', $$[$0-3+1-1], $$[$0-3+3-1]); +case 188:this.$ = new OpNode('/', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 185:this.$ = new OpNode('%', $$[$0-3+1-1], $$[$0-3+3-1]); +case 189:this.$ = new OpNode('%', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 186:this.$ = new OpNode('+', $$[$0-3+1-1], $$[$0-3+3-1]); +case 190:this.$ = new OpNode('+', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 187:this.$ = new OpNode('-', $$[$0-3+1-1], $$[$0-3+3-1]); +case 191:this.$ = new OpNode('-', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 188:this.$ = new OpNode('<<', $$[$0-3+1-1], $$[$0-3+3-1]); +case 192:this.$ = new OpNode('<<', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 189:this.$ = new OpNode('>>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 193:this.$ = new OpNode('>>', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 190:this.$ = new OpNode('>>>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 194:this.$ = new OpNode('>>>', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 191:this.$ = new OpNode('&', $$[$0-3+1-1], $$[$0-3+3-1]); +case 195:this.$ = new OpNode('&', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 192:this.$ = new OpNode('|', $$[$0-3+1-1], $$[$0-3+3-1]); +case 196:this.$ = new OpNode('|', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 193:this.$ = new OpNode('^', $$[$0-3+1-1], $$[$0-3+3-1]); +case 197:this.$ = new OpNode('^', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 194:this.$ = new OpNode('<=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 198:this.$ = new OpNode('<=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 195:this.$ = new OpNode('<', $$[$0-3+1-1], $$[$0-3+3-1]); +case 199:this.$ = new OpNode('<', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 196:this.$ = new OpNode('>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 200:this.$ = new OpNode('>', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 197:this.$ = new OpNode('>=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 201:this.$ = new OpNode('>=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 198:this.$ = new OpNode('==', $$[$0-3+1-1], $$[$0-3+3-1]); +case 202:this.$ = new OpNode('==', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 199:this.$ = new OpNode('!=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 203:this.$ = new OpNode('!=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 200:this.$ = new OpNode('&&', $$[$0-3+1-1], $$[$0-3+3-1]); +case 204:this.$ = new OpNode('&&', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 201:this.$ = new OpNode('||', $$[$0-3+1-1], $$[$0-3+3-1]); +case 205:this.$ = new OpNode('||', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 202:this.$ = new OpNode('?', $$[$0-3+1-1], $$[$0-3+3-1]); +case 206:this.$ = new OpNode('?', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 203:this.$ = new OpNode('-=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 207:this.$ = new OpNode('-=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 204:this.$ = new OpNode('+=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 208:this.$ = new OpNode('+=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 205:this.$ = new OpNode('/=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 209:this.$ = new OpNode('/=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 206:this.$ = new OpNode('*=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 210:this.$ = new OpNode('*=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 207:this.$ = new OpNode('%=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 211:this.$ = new OpNode('%=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 208:this.$ = new OpNode('||=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 212:this.$ = new OpNode('||=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 209:this.$ = new OpNode('&&=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 213:this.$ = new OpNode('&&=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 210:this.$ = new OpNode('?=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 214:this.$ = new OpNode('?=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 211:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); +case 215:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 212:this.$ = new InNode($$[$0-3+1-1], $$[$0-3+3-1]); +case 216:this.$ = new InNode($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 213:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); +case 217:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 214:this.$ = new OpNode('!', new InNode($$[$0-4+1-1], $$[$0-4+4-1])); +case 218:this.$ = new OpNode('!', new InNode($$[$0-4+1-1], $$[$0-4+4-1])); break; -case 215:this.$ = new OpNode('!', new ParentheticalNode(new OpNode('in', $$[$0-4+1-1], $$[$0-4+4-1]))); +case 219:this.$ = new OpNode('!', new ParentheticalNode(new OpNode('in', $$[$0-4+1-1], $$[$0-4+4-1]))); break; } }, -table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,6],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[3]},{"1":[2,2]},{"1":[2,3],"4":[1,86]},{"4":[1,87]},{"1":[2,5],"4":[2,5],"29":[2,5]},{"5":88,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[1,89],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,8],"4":[2,8],"29":[2,8],"48":[1,111],"59":[1,128],"105":[2,8],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,9],"4":[2,9],"29":[2,9],"105":[2,9],"106":131,"107":[1,77],"109":[1,78],"112":[1,132],"125":[1,129],"126":[1,130]},{"1":[2,14],"4":[2,14],"28":[2,14],"29":[2,14],"48":[2,14],"56":[2,14],"59":[2,14],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,14],"78":[1,143],"79":[1,144],"82":[2,14],"89":133,"90":[1,135],"92":[2,14],"97":[2,14],"105":[2,14],"107":[2,14],"108":[2,14],"109":[2,14],"112":[2,14],"116":[2,14],"117":[2,14],"118":[2,14],"125":[2,14],"126":[2,14],"127":[2,14],"129":[2,14],"130":[2,14],"132":[2,14],"133":[2,14],"136":[2,14],"137":[2,14],"138":[2,14],"139":[2,14],"140":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[2,14],"148":[2,14],"149":[2,14],"150":[2,14],"151":[2,14],"152":[2,14],"153":[2,14],"154":[2,14],"155":[2,14],"156":[2,14],"157":[2,14],"158":[2,14],"159":[2,14],"160":[2,14],"161":[2,14]},{"1":[2,15],"4":[2,15],"28":[2,15],"29":[2,15],"48":[2,15],"56":[2,15],"59":[2,15],"77":[2,15],"82":[2,15],"92":[2,15],"97":[2,15],"105":[2,15],"107":[2,15],"108":[2,15],"109":[2,15],"112":[2,15],"116":[2,15],"117":[2,15],"118":[2,15],"125":[2,15],"126":[2,15],"127":[2,15],"129":[2,15],"130":[2,15],"132":[2,15],"133":[2,15],"136":[2,15],"137":[2,15],"138":[2,15],"139":[2,15],"140":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[2,15],"149":[2,15],"150":[2,15],"151":[2,15],"152":[2,15],"153":[2,15],"154":[2,15],"155":[2,15],"156":[2,15],"157":[2,15],"158":[2,15],"159":[2,15],"160":[2,15],"161":[2,15]},{"1":[2,16],"4":[2,16],"28":[2,16],"29":[2,16],"48":[2,16],"56":[2,16],"59":[2,16],"77":[2,16],"82":[2,16],"92":[2,16],"97":[2,16],"105":[2,16],"107":[2,16],"108":[2,16],"109":[2,16],"112":[2,16],"116":[2,16],"117":[2,16],"118":[2,16],"125":[2,16],"126":[2,16],"127":[2,16],"129":[2,16],"130":[2,16],"132":[2,16],"133":[2,16],"136":[2,16],"137":[2,16],"138":[2,16],"139":[2,16],"140":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"148":[2,16],"149":[2,16],"150":[2,16],"151":[2,16],"152":[2,16],"153":[2,16],"154":[2,16],"155":[2,16],"156":[2,16],"157":[2,16],"158":[2,16],"159":[2,16],"160":[2,16],"161":[2,16]},{"1":[2,17],"4":[2,17],"28":[2,17],"29":[2,17],"48":[2,17],"56":[2,17],"59":[2,17],"77":[2,17],"82":[2,17],"92":[2,17],"97":[2,17],"105":[2,17],"107":[2,17],"108":[2,17],"109":[2,17],"112":[2,17],"116":[2,17],"117":[2,17],"118":[2,17],"125":[2,17],"126":[2,17],"127":[2,17],"129":[2,17],"130":[2,17],"132":[2,17],"133":[2,17],"136":[2,17],"137":[2,17],"138":[2,17],"139":[2,17],"140":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"148":[2,17],"149":[2,17],"150":[2,17],"151":[2,17],"152":[2,17],"153":[2,17],"154":[2,17],"155":[2,17],"156":[2,17],"157":[2,17],"158":[2,17],"159":[2,17],"160":[2,17],"161":[2,17]},{"1":[2,18],"4":[2,18],"28":[2,18],"29":[2,18],"48":[2,18],"56":[2,18],"59":[2,18],"77":[2,18],"82":[2,18],"92":[2,18],"97":[2,18],"105":[2,18],"107":[2,18],"108":[2,18],"109":[2,18],"112":[2,18],"116":[2,18],"117":[2,18],"118":[2,18],"125":[2,18],"126":[2,18],"127":[2,18],"129":[2,18],"130":[2,18],"132":[2,18],"133":[2,18],"136":[2,18],"137":[2,18],"138":[2,18],"139":[2,18],"140":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"148":[2,18],"149":[2,18],"150":[2,18],"151":[2,18],"152":[2,18],"153":[2,18],"154":[2,18],"155":[2,18],"156":[2,18],"157":[2,18],"158":[2,18],"159":[2,18],"160":[2,18],"161":[2,18]},{"1":[2,19],"4":[2,19],"28":[2,19],"29":[2,19],"48":[2,19],"56":[2,19],"59":[2,19],"77":[2,19],"82":[2,19],"92":[2,19],"97":[2,19],"105":[2,19],"107":[2,19],"108":[2,19],"109":[2,19],"112":[2,19],"116":[2,19],"117":[2,19],"118":[2,19],"125":[2,19],"126":[2,19],"127":[2,19],"129":[2,19],"130":[2,19],"132":[2,19],"133":[2,19],"136":[2,19],"137":[2,19],"138":[2,19],"139":[2,19],"140":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"148":[2,19],"149":[2,19],"150":[2,19],"151":[2,19],"152":[2,19],"153":[2,19],"154":[2,19],"155":[2,19],"156":[2,19],"157":[2,19],"158":[2,19],"159":[2,19],"160":[2,19],"161":[2,19]},{"1":[2,20],"4":[2,20],"28":[2,20],"29":[2,20],"48":[2,20],"56":[2,20],"59":[2,20],"77":[2,20],"82":[2,20],"92":[2,20],"97":[2,20],"105":[2,20],"107":[2,20],"108":[2,20],"109":[2,20],"112":[2,20],"116":[2,20],"117":[2,20],"118":[2,20],"125":[2,20],"126":[2,20],"127":[2,20],"129":[2,20],"130":[2,20],"132":[2,20],"133":[2,20],"136":[2,20],"137":[2,20],"138":[2,20],"139":[2,20],"140":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"148":[2,20],"149":[2,20],"150":[2,20],"151":[2,20],"152":[2,20],"153":[2,20],"154":[2,20],"155":[2,20],"156":[2,20],"157":[2,20],"158":[2,20],"159":[2,20],"160":[2,20],"161":[2,20]},{"1":[2,21],"4":[2,21],"28":[2,21],"29":[2,21],"48":[2,21],"56":[2,21],"59":[2,21],"77":[2,21],"82":[2,21],"92":[2,21],"97":[2,21],"105":[2,21],"107":[2,21],"108":[2,21],"109":[2,21],"112":[2,21],"116":[2,21],"117":[2,21],"118":[2,21],"125":[2,21],"126":[2,21],"127":[2,21],"129":[2,21],"130":[2,21],"132":[2,21],"133":[2,21],"136":[2,21],"137":[2,21],"138":[2,21],"139":[2,21],"140":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"148":[2,21],"149":[2,21],"150":[2,21],"151":[2,21],"152":[2,21],"153":[2,21],"154":[2,21],"155":[2,21],"156":[2,21],"157":[2,21],"158":[2,21],"159":[2,21],"160":[2,21],"161":[2,21]},{"1":[2,22],"4":[2,22],"28":[2,22],"29":[2,22],"48":[2,22],"56":[2,22],"59":[2,22],"77":[2,22],"82":[2,22],"92":[2,22],"97":[2,22],"105":[2,22],"107":[2,22],"108":[2,22],"109":[2,22],"112":[2,22],"116":[2,22],"117":[2,22],"118":[2,22],"125":[2,22],"126":[2,22],"127":[2,22],"129":[2,22],"130":[2,22],"132":[2,22],"133":[2,22],"136":[2,22],"137":[2,22],"138":[2,22],"139":[2,22],"140":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"148":[2,22],"149":[2,22],"150":[2,22],"151":[2,22],"152":[2,22],"153":[2,22],"154":[2,22],"155":[2,22],"156":[2,22],"157":[2,22],"158":[2,22],"159":[2,22],"160":[2,22],"161":[2,22]},{"1":[2,23],"4":[2,23],"28":[2,23],"29":[2,23],"48":[2,23],"56":[2,23],"59":[2,23],"77":[2,23],"82":[2,23],"92":[2,23],"97":[2,23],"105":[2,23],"107":[2,23],"108":[2,23],"109":[2,23],"112":[2,23],"116":[2,23],"117":[2,23],"118":[2,23],"125":[2,23],"126":[2,23],"127":[2,23],"129":[2,23],"130":[2,23],"132":[2,23],"133":[2,23],"136":[2,23],"137":[2,23],"138":[2,23],"139":[2,23],"140":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"148":[2,23],"149":[2,23],"150":[2,23],"151":[2,23],"152":[2,23],"153":[2,23],"154":[2,23],"155":[2,23],"156":[2,23],"157":[2,23],"158":[2,23],"159":[2,23],"160":[2,23],"161":[2,23]},{"1":[2,24],"4":[2,24],"28":[2,24],"29":[2,24],"48":[2,24],"56":[2,24],"59":[2,24],"77":[2,24],"82":[2,24],"92":[2,24],"97":[2,24],"105":[2,24],"107":[2,24],"108":[2,24],"109":[2,24],"112":[2,24],"116":[2,24],"117":[2,24],"118":[2,24],"125":[2,24],"126":[2,24],"127":[2,24],"129":[2,24],"130":[2,24],"132":[2,24],"133":[2,24],"136":[2,24],"137":[2,24],"138":[2,24],"139":[2,24],"140":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"148":[2,24],"149":[2,24],"150":[2,24],"151":[2,24],"152":[2,24],"153":[2,24],"154":[2,24],"155":[2,24],"156":[2,24],"157":[2,24],"158":[2,24],"159":[2,24],"160":[2,24],"161":[2,24]},{"1":[2,25],"4":[2,25],"28":[2,25],"29":[2,25],"48":[2,25],"56":[2,25],"59":[2,25],"77":[2,25],"82":[2,25],"92":[2,25],"97":[2,25],"105":[2,25],"107":[2,25],"108":[2,25],"109":[2,25],"112":[2,25],"116":[2,25],"117":[2,25],"118":[2,25],"125":[2,25],"126":[2,25],"127":[2,25],"129":[2,25],"130":[2,25],"132":[2,25],"133":[2,25],"136":[2,25],"137":[2,25],"138":[2,25],"139":[2,25],"140":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"148":[2,25],"149":[2,25],"150":[2,25],"151":[2,25],"152":[2,25],"153":[2,25],"154":[2,25],"155":[2,25],"156":[2,25],"157":[2,25],"158":[2,25],"159":[2,25],"160":[2,25],"161":[2,25]},{"1":[2,26],"4":[2,26],"28":[2,26],"29":[2,26],"48":[2,26],"56":[2,26],"59":[2,26],"77":[2,26],"82":[2,26],"92":[2,26],"97":[2,26],"105":[2,26],"107":[2,26],"108":[2,26],"109":[2,26],"112":[2,26],"116":[2,26],"117":[2,26],"118":[2,26],"125":[2,26],"126":[2,26],"127":[2,26],"129":[2,26],"130":[2,26],"132":[2,26],"133":[2,26],"136":[2,26],"137":[2,26],"138":[2,26],"139":[2,26],"140":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"148":[2,26],"149":[2,26],"150":[2,26],"151":[2,26],"152":[2,26],"153":[2,26],"154":[2,26],"155":[2,26],"156":[2,26],"157":[2,26],"158":[2,26],"159":[2,26],"160":[2,26],"161":[2,26]},{"1":[2,27],"4":[2,27],"28":[2,27],"29":[2,27],"48":[2,27],"56":[2,27],"59":[2,27],"77":[2,27],"82":[2,27],"92":[2,27],"97":[2,27],"105":[2,27],"107":[2,27],"108":[2,27],"109":[2,27],"112":[2,27],"116":[2,27],"117":[2,27],"118":[2,27],"125":[2,27],"126":[2,27],"127":[2,27],"129":[2,27],"130":[2,27],"132":[2,27],"133":[2,27],"136":[2,27],"137":[2,27],"138":[2,27],"139":[2,27],"140":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"148":[2,27],"149":[2,27],"150":[2,27],"151":[2,27],"152":[2,27],"153":[2,27],"154":[2,27],"155":[2,27],"156":[2,27],"157":[2,27],"158":[2,27],"159":[2,27],"160":[2,27],"161":[2,27]},{"1":[2,10],"4":[2,10],"29":[2,10],"105":[2,10],"107":[2,10],"109":[2,10],"112":[2,10],"125":[2,10],"126":[2,10]},{"1":[2,11],"4":[2,11],"29":[2,11],"105":[2,11],"107":[2,11],"109":[2,11],"112":[2,11],"125":[2,11],"126":[2,11]},{"1":[2,12],"4":[2,12],"29":[2,12],"105":[2,12],"107":[2,12],"109":[2,12],"112":[2,12],"125":[2,12],"126":[2,12]},{"1":[2,13],"4":[2,13],"29":[2,13],"105":[2,13],"107":[2,13],"109":[2,13],"112":[2,13],"125":[2,13],"126":[2,13]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"45":[1,145],"48":[2,69],"56":[2,69],"59":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"77":[2,69],"78":[2,69],"79":[2,69],"82":[2,69],"90":[2,69],"92":[2,69],"97":[2,69],"105":[2,69],"107":[2,69],"108":[2,69],"109":[2,69],"112":[2,69],"116":[2,69],"117":[2,69],"118":[2,69],"125":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"132":[2,69],"133":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69],"140":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69]},{"1":[2,70],"4":[2,70],"28":[2,70],"29":[2,70],"48":[2,70],"56":[2,70],"59":[2,70],"70":[2,70],"71":[2,70],"72":[2,70],"73":[2,70],"76":[2,70],"77":[2,70],"78":[2,70],"79":[2,70],"82":[2,70],"90":[2,70],"92":[2,70],"97":[2,70],"105":[2,70],"107":[2,70],"108":[2,70],"109":[2,70],"112":[2,70],"116":[2,70],"117":[2,70],"118":[2,70],"125":[2,70],"126":[2,70],"127":[2,70],"129":[2,70],"130":[2,70],"132":[2,70],"133":[2,70],"136":[2,70],"137":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"48":[2,71],"56":[2,71],"59":[2,71],"70":[2,71],"71":[2,71],"72":[2,71],"73":[2,71],"76":[2,71],"77":[2,71],"78":[2,71],"79":[2,71],"82":[2,71],"90":[2,71],"92":[2,71],"97":[2,71],"105":[2,71],"107":[2,71],"108":[2,71],"109":[2,71],"112":[2,71],"116":[2,71],"117":[2,71],"118":[2,71],"125":[2,71],"126":[2,71],"127":[2,71],"129":[2,71],"130":[2,71],"132":[2,71],"133":[2,71],"136":[2,71],"137":[2,71],"138":[2,71],"139":[2,71],"140":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"48":[2,72],"56":[2,72],"59":[2,72],"70":[2,72],"71":[2,72],"72":[2,72],"73":[2,72],"76":[2,72],"77":[2,72],"78":[2,72],"79":[2,72],"82":[2,72],"90":[2,72],"92":[2,72],"97":[2,72],"105":[2,72],"107":[2,72],"108":[2,72],"109":[2,72],"112":[2,72],"116":[2,72],"117":[2,72],"118":[2,72],"125":[2,72],"126":[2,72],"127":[2,72],"129":[2,72],"130":[2,72],"132":[2,72],"133":[2,72],"136":[2,72],"137":[2,72],"138":[2,72],"139":[2,72],"140":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72]},{"1":[2,73],"4":[2,73],"28":[2,73],"29":[2,73],"48":[2,73],"56":[2,73],"59":[2,73],"70":[2,73],"71":[2,73],"72":[2,73],"73":[2,73],"76":[2,73],"77":[2,73],"78":[2,73],"79":[2,73],"82":[2,73],"90":[2,73],"92":[2,73],"97":[2,73],"105":[2,73],"107":[2,73],"108":[2,73],"109":[2,73],"112":[2,73],"116":[2,73],"117":[2,73],"118":[2,73],"125":[2,73],"126":[2,73],"127":[2,73],"129":[2,73],"130":[2,73],"132":[2,73],"133":[2,73],"136":[2,73],"137":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"48":[2,74],"56":[2,74],"59":[2,74],"70":[2,74],"71":[2,74],"72":[2,74],"73":[2,74],"76":[2,74],"77":[2,74],"78":[2,74],"79":[2,74],"82":[2,74],"90":[2,74],"92":[2,74],"97":[2,74],"105":[2,74],"107":[2,74],"108":[2,74],"109":[2,74],"112":[2,74],"116":[2,74],"117":[2,74],"118":[2,74],"125":[2,74],"126":[2,74],"127":[2,74],"129":[2,74],"130":[2,74],"132":[2,74],"133":[2,74],"136":[2,74],"137":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74],"151":[2,74],"152":[2,74],"153":[2,74],"154":[2,74],"155":[2,74],"156":[2,74],"157":[2,74],"158":[2,74],"159":[2,74],"160":[2,74],"161":[2,74]},{"1":[2,99],"4":[2,99],"28":[2,99],"29":[2,99],"48":[2,99],"56":[2,99],"59":[2,99],"61":147,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,99],"78":[1,143],"79":[1,144],"82":[2,99],"89":146,"90":[1,135],"92":[2,99],"97":[2,99],"105":[2,99],"107":[2,99],"108":[2,99],"109":[2,99],"112":[2,99],"116":[2,99],"117":[2,99],"118":[2,99],"125":[2,99],"126":[2,99],"127":[2,99],"129":[2,99],"130":[2,99],"132":[2,99],"133":[2,99],"136":[2,99],"137":[2,99],"138":[2,99],"139":[2,99],"140":[2,99],"141":[2,99],"142":[2,99],"143":[2,99],"144":[2,99],"145":[2,99],"146":[2,99],"147":[2,99],"148":[2,99],"149":[2,99],"150":[2,99],"151":[2,99],"152":[2,99],"153":[2,99],"154":[2,99],"155":[2,99],"156":[2,99],"157":[2,99],"158":[2,99],"159":[2,99],"160":[2,99],"161":[2,99]},{"1":[2,100],"4":[2,100],"28":[2,100],"29":[2,100],"48":[2,100],"56":[2,100],"59":[2,100],"77":[2,100],"82":[2,100],"92":[2,100],"97":[2,100],"105":[2,100],"107":[2,100],"108":[2,100],"109":[2,100],"112":[2,100],"116":[2,100],"117":[2,100],"118":[2,100],"125":[2,100],"126":[2,100],"127":[2,100],"129":[2,100],"130":[2,100],"132":[2,100],"133":[2,100],"136":[2,100],"137":[2,100],"138":[2,100],"139":[2,100],"140":[2,100],"141":[2,100],"142":[2,100],"143":[2,100],"144":[2,100],"145":[2,100],"146":[2,100],"147":[2,100],"148":[2,100],"149":[2,100],"150":[2,100],"151":[2,100],"152":[2,100],"153":[2,100],"154":[2,100],"155":[2,100],"156":[2,100],"157":[2,100],"158":[2,100],"159":[2,100],"160":[2,100],"161":[2,100]},{"14":149,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":151,"62":148,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"50":152,"51":[2,56],"56":[2,56],"57":153,"58":[1,154]},{"6":155,"28":[1,6]},{"8":156,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":158,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":159,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":160,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":161,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":162,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":163,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":164,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":165,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,167],"4":[2,167],"28":[2,167],"29":[2,167],"48":[2,167],"56":[2,167],"59":[2,167],"77":[2,167],"82":[2,167],"92":[2,167],"97":[2,167],"105":[2,167],"107":[2,167],"108":[2,167],"109":[2,167],"112":[2,167],"116":[2,167],"117":[2,167],"118":[2,167],"121":[1,166],"125":[2,167],"126":[2,167],"127":[2,167],"129":[2,167],"130":[2,167],"132":[2,167],"133":[2,167],"136":[2,167],"137":[2,167],"138":[2,167],"139":[2,167],"140":[2,167],"141":[2,167],"142":[2,167],"143":[2,167],"144":[2,167],"145":[2,167],"146":[2,167],"147":[2,167],"148":[2,167],"149":[2,167],"150":[2,167],"151":[2,167],"152":[2,167],"153":[2,167],"154":[2,167],"155":[2,167],"156":[2,167],"157":[2,167],"158":[2,167],"159":[2,167],"160":[2,167],"161":[2,167]},{"6":167,"28":[1,6]},{"6":168,"28":[1,6]},{"1":[2,137],"4":[2,137],"28":[2,137],"29":[2,137],"48":[2,137],"56":[2,137],"59":[2,137],"77":[2,137],"82":[2,137],"92":[2,137],"97":[2,137],"105":[2,137],"107":[2,137],"108":[2,137],"109":[2,137],"112":[2,137],"116":[2,137],"117":[2,137],"118":[2,137],"125":[2,137],"126":[2,137],"127":[2,137],"129":[2,137],"130":[2,137],"132":[2,137],"133":[2,137],"136":[2,137],"137":[2,137],"138":[2,137],"139":[2,137],"140":[2,137],"141":[2,137],"142":[2,137],"143":[2,137],"144":[2,137],"145":[2,137],"146":[2,137],"147":[2,137],"148":[2,137],"149":[2,137],"150":[2,137],"151":[2,137],"152":[2,137],"153":[2,137],"154":[2,137],"155":[2,137],"156":[2,137],"157":[2,137],"158":[2,137],"159":[2,137],"160":[2,137],"161":[2,137]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"113":169,"115":170},{"8":175,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,176],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,66],"4":[2,66],"28":[2,66],"29":[2,66],"45":[2,66],"48":[2,66],"56":[2,66],"59":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,66],"78":[2,66],"79":[2,66],"82":[2,66],"84":[1,177],"90":[2,66],"92":[2,66],"97":[2,66],"105":[2,66],"107":[2,66],"108":[2,66],"109":[2,66],"112":[2,66],"116":[2,66],"117":[2,66],"118":[2,66],"125":[2,66],"126":[2,66],"127":[2,66],"129":[2,66],"130":[2,66],"132":[2,66],"133":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66]},{"14":179,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":178,"62":180,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"1":[2,48],"4":[2,48],"8":181,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[2,48],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"105":[2,48],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[2,48],"126":[2,48],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":182,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,67],"4":[2,67],"28":[2,67],"29":[2,67],"45":[2,67],"48":[2,67],"56":[2,67],"59":[2,67],"70":[2,67],"71":[2,67],"72":[2,67],"73":[2,67],"76":[2,67],"77":[2,67],"78":[2,67],"79":[2,67],"82":[2,67],"90":[2,67],"92":[2,67],"97":[2,67],"105":[2,67],"107":[2,67],"108":[2,67],"109":[2,67],"112":[2,67],"116":[2,67],"117":[2,67],"118":[2,67],"125":[2,67],"126":[2,67],"127":[2,67],"129":[2,67],"130":[2,67],"132":[2,67],"133":[2,67],"136":[2,67],"137":[2,67],"138":[2,67],"139":[2,67],"140":[2,67],"141":[2,67],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67]},{"1":[2,68],"4":[2,68],"28":[2,68],"29":[2,68],"45":[2,68],"48":[2,68],"56":[2,68],"59":[2,68],"70":[2,68],"71":[2,68],"72":[2,68],"73":[2,68],"76":[2,68],"77":[2,68],"78":[2,68],"79":[2,68],"82":[2,68],"90":[2,68],"92":[2,68],"97":[2,68],"105":[2,68],"107":[2,68],"108":[2,68],"109":[2,68],"112":[2,68],"116":[2,68],"117":[2,68],"118":[2,68],"125":[2,68],"126":[2,68],"127":[2,68],"129":[2,68],"130":[2,68],"132":[2,68],"133":[2,68],"136":[2,68],"137":[2,68],"138":[2,68],"139":[2,68],"140":[2,68],"141":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68]},{"1":[2,33],"4":[2,33],"28":[2,33],"29":[2,33],"48":[2,33],"56":[2,33],"59":[2,33],"70":[2,33],"71":[2,33],"72":[2,33],"73":[2,33],"76":[2,33],"77":[2,33],"78":[2,33],"79":[2,33],"82":[2,33],"90":[2,33],"92":[2,33],"97":[2,33],"105":[2,33],"107":[2,33],"108":[2,33],"109":[2,33],"112":[2,33],"116":[2,33],"117":[2,33],"118":[2,33],"125":[2,33],"126":[2,33],"127":[2,33],"129":[2,33],"130":[2,33],"132":[2,33],"133":[2,33],"136":[2,33],"137":[2,33],"138":[2,33],"139":[2,33],"140":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33],"151":[2,33],"152":[2,33],"153":[2,33],"154":[2,33],"155":[2,33],"156":[2,33],"157":[2,33],"158":[2,33],"159":[2,33],"160":[2,33],"161":[2,33]},{"1":[2,34],"4":[2,34],"28":[2,34],"29":[2,34],"48":[2,34],"56":[2,34],"59":[2,34],"70":[2,34],"71":[2,34],"72":[2,34],"73":[2,34],"76":[2,34],"77":[2,34],"78":[2,34],"79":[2,34],"82":[2,34],"90":[2,34],"92":[2,34],"97":[2,34],"105":[2,34],"107":[2,34],"108":[2,34],"109":[2,34],"112":[2,34],"116":[2,34],"117":[2,34],"118":[2,34],"125":[2,34],"126":[2,34],"127":[2,34],"129":[2,34],"130":[2,34],"132":[2,34],"133":[2,34],"136":[2,34],"137":[2,34],"138":[2,34],"139":[2,34],"140":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34],"151":[2,34],"152":[2,34],"153":[2,34],"154":[2,34],"155":[2,34],"156":[2,34],"157":[2,34],"158":[2,34],"159":[2,34],"160":[2,34],"161":[2,34]},{"1":[2,35],"4":[2,35],"28":[2,35],"29":[2,35],"48":[2,35],"56":[2,35],"59":[2,35],"70":[2,35],"71":[2,35],"72":[2,35],"73":[2,35],"76":[2,35],"77":[2,35],"78":[2,35],"79":[2,35],"82":[2,35],"90":[2,35],"92":[2,35],"97":[2,35],"105":[2,35],"107":[2,35],"108":[2,35],"109":[2,35],"112":[2,35],"116":[2,35],"117":[2,35],"118":[2,35],"125":[2,35],"126":[2,35],"127":[2,35],"129":[2,35],"130":[2,35],"132":[2,35],"133":[2,35],"136":[2,35],"137":[2,35],"138":[2,35],"139":[2,35],"140":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35],"151":[2,35],"152":[2,35],"153":[2,35],"154":[2,35],"155":[2,35],"156":[2,35],"157":[2,35],"158":[2,35],"159":[2,35],"160":[2,35],"161":[2,35]},{"1":[2,36],"4":[2,36],"28":[2,36],"29":[2,36],"48":[2,36],"56":[2,36],"59":[2,36],"70":[2,36],"71":[2,36],"72":[2,36],"73":[2,36],"76":[2,36],"77":[2,36],"78":[2,36],"79":[2,36],"82":[2,36],"90":[2,36],"92":[2,36],"97":[2,36],"105":[2,36],"107":[2,36],"108":[2,36],"109":[2,36],"112":[2,36],"116":[2,36],"117":[2,36],"118":[2,36],"125":[2,36],"126":[2,36],"127":[2,36],"129":[2,36],"130":[2,36],"132":[2,36],"133":[2,36],"136":[2,36],"137":[2,36],"138":[2,36],"139":[2,36],"140":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36],"151":[2,36],"152":[2,36],"153":[2,36],"154":[2,36],"155":[2,36],"156":[2,36],"157":[2,36],"158":[2,36],"159":[2,36],"160":[2,36],"161":[2,36]},{"1":[2,37],"4":[2,37],"28":[2,37],"29":[2,37],"48":[2,37],"56":[2,37],"59":[2,37],"70":[2,37],"71":[2,37],"72":[2,37],"73":[2,37],"76":[2,37],"77":[2,37],"78":[2,37],"79":[2,37],"82":[2,37],"90":[2,37],"92":[2,37],"97":[2,37],"105":[2,37],"107":[2,37],"108":[2,37],"109":[2,37],"112":[2,37],"116":[2,37],"117":[2,37],"118":[2,37],"125":[2,37],"126":[2,37],"127":[2,37],"129":[2,37],"130":[2,37],"132":[2,37],"133":[2,37],"136":[2,37],"137":[2,37],"138":[2,37],"139":[2,37],"140":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37],"151":[2,37],"152":[2,37],"153":[2,37],"154":[2,37],"155":[2,37],"156":[2,37],"157":[2,37],"158":[2,37],"159":[2,37],"160":[2,37],"161":[2,37]},{"1":[2,38],"4":[2,38],"28":[2,38],"29":[2,38],"48":[2,38],"56":[2,38],"59":[2,38],"70":[2,38],"71":[2,38],"72":[2,38],"73":[2,38],"76":[2,38],"77":[2,38],"78":[2,38],"79":[2,38],"82":[2,38],"90":[2,38],"92":[2,38],"97":[2,38],"105":[2,38],"107":[2,38],"108":[2,38],"109":[2,38],"112":[2,38],"116":[2,38],"117":[2,38],"118":[2,38],"125":[2,38],"126":[2,38],"127":[2,38],"129":[2,38],"130":[2,38],"132":[2,38],"133":[2,38],"136":[2,38],"137":[2,38],"138":[2,38],"139":[2,38],"140":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38],"151":[2,38],"152":[2,38],"153":[2,38],"154":[2,38],"155":[2,38],"156":[2,38],"157":[2,38],"158":[2,38],"159":[2,38],"160":[2,38],"161":[2,38]},{"1":[2,39],"4":[2,39],"28":[2,39],"29":[2,39],"48":[2,39],"56":[2,39],"59":[2,39],"70":[2,39],"71":[2,39],"72":[2,39],"73":[2,39],"76":[2,39],"77":[2,39],"78":[2,39],"79":[2,39],"82":[2,39],"90":[2,39],"92":[2,39],"97":[2,39],"105":[2,39],"107":[2,39],"108":[2,39],"109":[2,39],"112":[2,39],"116":[2,39],"117":[2,39],"118":[2,39],"125":[2,39],"126":[2,39],"127":[2,39],"129":[2,39],"130":[2,39],"132":[2,39],"133":[2,39],"136":[2,39],"137":[2,39],"138":[2,39],"139":[2,39],"140":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39],"151":[2,39],"152":[2,39],"153":[2,39],"154":[2,39],"155":[2,39],"156":[2,39],"157":[2,39],"158":[2,39],"159":[2,39],"160":[2,39],"161":[2,39]},{"1":[2,40],"4":[2,40],"28":[2,40],"29":[2,40],"48":[2,40],"56":[2,40],"59":[2,40],"70":[2,40],"71":[2,40],"72":[2,40],"73":[2,40],"76":[2,40],"77":[2,40],"78":[2,40],"79":[2,40],"82":[2,40],"90":[2,40],"92":[2,40],"97":[2,40],"105":[2,40],"107":[2,40],"108":[2,40],"109":[2,40],"112":[2,40],"116":[2,40],"117":[2,40],"118":[2,40],"125":[2,40],"126":[2,40],"127":[2,40],"129":[2,40],"130":[2,40],"132":[2,40],"133":[2,40],"136":[2,40],"137":[2,40],"138":[2,40],"139":[2,40],"140":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40],"151":[2,40],"152":[2,40],"153":[2,40],"154":[2,40],"155":[2,40],"156":[2,40],"157":[2,40],"158":[2,40],"159":[2,40],"160":[2,40],"161":[2,40]},{"1":[2,41],"4":[2,41],"28":[2,41],"29":[2,41],"48":[2,41],"56":[2,41],"59":[2,41],"70":[2,41],"71":[2,41],"72":[2,41],"73":[2,41],"76":[2,41],"77":[2,41],"78":[2,41],"79":[2,41],"82":[2,41],"90":[2,41],"92":[2,41],"97":[2,41],"105":[2,41],"107":[2,41],"108":[2,41],"109":[2,41],"112":[2,41],"116":[2,41],"117":[2,41],"118":[2,41],"125":[2,41],"126":[2,41],"127":[2,41],"129":[2,41],"130":[2,41],"132":[2,41],"133":[2,41],"136":[2,41],"137":[2,41],"138":[2,41],"139":[2,41],"140":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41],"151":[2,41],"152":[2,41],"153":[2,41],"154":[2,41],"155":[2,41],"156":[2,41],"157":[2,41],"158":[2,41],"159":[2,41],"160":[2,41],"161":[2,41]},{"7":183,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,116],"8":184,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,116],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,116],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"91":185,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,116],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,108],"4":[2,108],"28":[2,108],"29":[2,108],"48":[2,108],"56":[2,108],"59":[2,108],"70":[2,108],"71":[2,108],"72":[2,108],"73":[2,108],"76":[2,108],"77":[2,108],"78":[2,108],"79":[2,108],"82":[2,108],"90":[2,108],"92":[2,108],"97":[2,108],"105":[2,108],"107":[2,108],"108":[2,108],"109":[2,108],"112":[2,108],"116":[2,108],"117":[2,108],"118":[2,108],"125":[2,108],"126":[2,108],"127":[2,108],"129":[2,108],"130":[2,108],"132":[2,108],"133":[2,108],"136":[2,108],"137":[2,108],"138":[2,108],"139":[2,108],"140":[2,108],"141":[2,108],"142":[2,108],"143":[2,108],"144":[2,108],"145":[2,108],"146":[2,108],"147":[2,108],"148":[2,108],"149":[2,108],"150":[2,108],"151":[2,108],"152":[2,108],"153":[2,108],"154":[2,108],"155":[2,108],"156":[2,108],"157":[2,108],"158":[2,108],"159":[2,108],"160":[2,108],"161":[2,108]},{"1":[2,109],"4":[2,109],"28":[2,109],"29":[2,109],"30":186,"31":[1,85],"48":[2,109],"56":[2,109],"59":[2,109],"70":[2,109],"71":[2,109],"72":[2,109],"73":[2,109],"76":[2,109],"77":[2,109],"78":[2,109],"79":[2,109],"82":[2,109],"90":[2,109],"92":[2,109],"97":[2,109],"105":[2,109],"107":[2,109],"108":[2,109],"109":[2,109],"112":[2,109],"116":[2,109],"117":[2,109],"118":[2,109],"125":[2,109],"126":[2,109],"127":[2,109],"129":[2,109],"130":[2,109],"132":[2,109],"133":[2,109],"136":[2,109],"137":[2,109],"138":[2,109],"139":[2,109],"140":[2,109],"141":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"147":[2,109],"148":[2,109],"149":[2,109],"150":[2,109],"151":[2,109],"152":[2,109],"153":[2,109],"154":[2,109],"155":[2,109],"156":[2,109],"157":[2,109],"158":[2,109],"159":[2,109],"160":[2,109],"161":[2,109]},{"89":187,"90":[1,135]},{"28":[2,52]},{"28":[2,53]},{"8":188,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":189,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":190,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":191,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"6":192,"8":193,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,6],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,62],"4":[2,62],"28":[2,62],"29":[2,62],"45":[2,62],"48":[2,62],"56":[2,62],"59":[2,62],"70":[2,62],"71":[2,62],"72":[2,62],"73":[2,62],"76":[2,62],"77":[2,62],"78":[2,62],"79":[2,62],"82":[2,62],"84":[2,62],"90":[2,62],"92":[2,62],"97":[2,62],"105":[2,62],"107":[2,62],"108":[2,62],"109":[2,62],"112":[2,62],"116":[2,62],"117":[2,62],"118":[2,62],"125":[2,62],"126":[2,62],"127":[2,62],"129":[2,62],"130":[2,62],"132":[2,62],"133":[2,62],"136":[2,62],"137":[2,62],"138":[2,62],"139":[2,62],"140":[2,62],"141":[2,62],"142":[2,62],"143":[2,62],"144":[2,62],"145":[2,62],"146":[2,62],"147":[2,62],"148":[2,62],"149":[2,62],"150":[2,62],"151":[2,62],"152":[2,62],"153":[2,62],"154":[2,62],"155":[2,62],"156":[2,62],"157":[2,62],"158":[2,62],"159":[2,62],"160":[2,62],"161":[2,62]},{"1":[2,65],"4":[2,65],"28":[2,65],"29":[2,65],"45":[2,65],"48":[2,65],"56":[2,65],"59":[2,65],"70":[2,65],"71":[2,65],"72":[2,65],"73":[2,65],"76":[2,65],"77":[2,65],"78":[2,65],"79":[2,65],"82":[2,65],"84":[2,65],"90":[2,65],"92":[2,65],"97":[2,65],"105":[2,65],"107":[2,65],"108":[2,65],"109":[2,65],"112":[2,65],"116":[2,65],"117":[2,65],"118":[2,65],"125":[2,65],"126":[2,65],"127":[2,65],"129":[2,65],"130":[2,65],"132":[2,65],"133":[2,65],"136":[2,65],"137":[2,65],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65]},{"4":[2,85],"28":[2,85],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":195,"56":[2,85],"81":194,"82":[2,85]},{"1":[2,31],"4":[2,31],"28":[2,31],"29":[2,31],"45":[2,31],"48":[2,31],"56":[2,31],"59":[2,31],"70":[2,31],"71":[2,31],"72":[2,31],"73":[2,31],"76":[2,31],"77":[2,31],"78":[2,31],"79":[2,31],"82":[2,31],"90":[2,31],"92":[2,31],"97":[2,31],"105":[2,31],"107":[2,31],"108":[2,31],"109":[2,31],"112":[2,31],"116":[2,31],"117":[2,31],"118":[2,31],"125":[2,31],"126":[2,31],"127":[2,31],"129":[2,31],"130":[2,31],"132":[2,31],"133":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31],"140":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31],"149":[2,31],"150":[2,31],"151":[2,31],"152":[2,31],"153":[2,31],"154":[2,31],"155":[2,31],"156":[2,31],"157":[2,31],"158":[2,31],"159":[2,31],"160":[2,31],"161":[2,31]},{"1":[2,32],"4":[2,32],"28":[2,32],"29":[2,32],"45":[2,32],"48":[2,32],"56":[2,32],"59":[2,32],"70":[2,32],"71":[2,32],"72":[2,32],"73":[2,32],"76":[2,32],"77":[2,32],"78":[2,32],"79":[2,32],"82":[2,32],"90":[2,32],"92":[2,32],"97":[2,32],"105":[2,32],"107":[2,32],"108":[2,32],"109":[2,32],"112":[2,32],"116":[2,32],"117":[2,32],"118":[2,32],"125":[2,32],"126":[2,32],"127":[2,32],"129":[2,32],"130":[2,32],"132":[2,32],"133":[2,32],"136":[2,32],"137":[2,32],"138":[2,32],"139":[2,32],"140":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32],"151":[2,32],"152":[2,32],"153":[2,32],"154":[2,32],"155":[2,32],"156":[2,32],"157":[2,32],"158":[2,32],"159":[2,32],"160":[2,32],"161":[2,32]},{"1":[2,30],"4":[2,30],"28":[2,30],"29":[2,30],"45":[2,30],"48":[2,30],"56":[2,30],"59":[2,30],"70":[2,30],"71":[2,30],"72":[2,30],"73":[2,30],"76":[2,30],"77":[2,30],"78":[2,30],"79":[2,30],"82":[2,30],"84":[2,30],"90":[2,30],"92":[2,30],"97":[2,30],"105":[2,30],"107":[2,30],"108":[2,30],"109":[2,30],"112":[2,30],"116":[2,30],"117":[2,30],"118":[2,30],"125":[2,30],"126":[2,30],"127":[2,30],"129":[2,30],"130":[2,30],"132":[2,30],"133":[2,30],"136":[2,30],"137":[2,30],"138":[2,30],"139":[2,30],"140":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"148":[2,30],"149":[2,30],"150":[2,30],"151":[2,30],"152":[2,30],"153":[2,30],"154":[2,30],"155":[2,30],"156":[2,30],"157":[2,30],"158":[2,30],"159":[2,30],"160":[2,30],"161":[2,30]},{"1":[2,7],"4":[2,7],"7":198,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[2,7],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,4]},{"4":[1,86],"29":[1,199]},{"1":[2,29],"4":[2,29],"28":[2,29],"29":[2,29],"48":[2,29],"56":[2,29],"59":[2,29],"77":[2,29],"82":[2,29],"92":[2,29],"97":[2,29],"101":[2,29],"102":[2,29],"105":[2,29],"107":[2,29],"108":[2,29],"109":[2,29],"112":[2,29],"116":[2,29],"117":[2,29],"118":[2,29],"121":[2,29],"123":[2,29],"125":[2,29],"126":[2,29],"127":[2,29],"129":[2,29],"130":[2,29],"132":[2,29],"133":[2,29],"136":[2,29],"137":[2,29],"138":[2,29],"139":[2,29],"140":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"148":[2,29],"149":[2,29],"150":[2,29],"151":[2,29],"152":[2,29],"153":[2,29],"154":[2,29],"155":[2,29],"156":[2,29],"157":[2,29],"158":[2,29],"159":[2,29],"160":[2,29],"161":[2,29]},{"1":[2,181],"4":[2,181],"28":[2,181],"29":[2,181],"48":[2,181],"56":[2,181],"59":[2,181],"77":[2,181],"82":[2,181],"92":[2,181],"97":[2,181],"105":[2,181],"107":[2,181],"108":[2,181],"109":[2,181],"112":[2,181],"116":[2,181],"117":[2,181],"118":[2,181],"125":[2,181],"126":[2,181],"127":[2,181],"129":[2,181],"130":[2,181],"132":[2,181],"133":[2,181],"136":[2,181],"137":[2,181],"138":[2,181],"139":[2,181],"140":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"148":[2,181],"149":[2,181],"150":[2,181],"151":[2,181],"152":[2,181],"153":[2,181],"154":[2,181],"155":[2,181],"156":[2,181],"157":[2,181],"158":[2,181],"159":[2,181],"160":[2,181],"161":[2,181]},{"1":[2,182],"4":[2,182],"28":[2,182],"29":[2,182],"48":[2,182],"56":[2,182],"59":[2,182],"77":[2,182],"82":[2,182],"92":[2,182],"97":[2,182],"105":[2,182],"107":[2,182],"108":[2,182],"109":[2,182],"112":[2,182],"116":[2,182],"117":[2,182],"118":[2,182],"125":[2,182],"126":[2,182],"127":[2,182],"129":[2,182],"130":[2,182],"132":[2,182],"133":[2,182],"136":[2,182],"137":[2,182],"138":[2,182],"139":[2,182],"140":[2,182],"141":[2,182],"142":[2,182],"143":[2,182],"144":[2,182],"145":[2,182],"146":[2,182],"147":[2,182],"148":[2,182],"149":[2,182],"150":[2,182],"151":[2,182],"152":[2,182],"153":[2,182],"154":[2,182],"155":[2,182],"156":[2,182],"157":[2,182],"158":[2,182],"159":[2,182],"160":[2,182],"161":[2,182]},{"8":200,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":201,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":202,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":203,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":204,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":205,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":206,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":207,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":208,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":209,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":210,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":211,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":212,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":213,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":214,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":215,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":216,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":217,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":218,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,49],"4":[2,49],"8":219,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,49],"29":[2,49],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"48":[2,49],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,49],"59":[2,49],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"77":[2,49],"80":[1,82],"82":[2,49],"83":[1,54],"87":34,"88":[1,35],"92":[2,49],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,49],"99":[1,48],"103":[1,56],"104":[1,68],"105":[2,49],"106":49,"107":[2,49],"108":[2,49],"109":[2,49],"110":50,"111":[1,79],"112":[2,49],"116":[2,49],"117":[2,49],"118":[2,49],"119":[1,52],"124":47,"125":[2,49],"126":[2,49],"127":[2,49],"128":[1,39],"129":[2,49],"130":[2,49],"131":[1,42],"132":[2,49],"133":[2,49],"134":[1,45],"135":[1,46],"136":[2,49],"137":[2,49],"138":[2,49],"139":[2,49],"140":[2,49],"141":[2,49],"142":[2,49],"143":[2,49],"144":[2,49],"145":[2,49],"146":[2,49],"147":[2,49],"148":[2,49],"149":[2,49],"150":[2,49],"151":[2,49],"152":[2,49],"153":[2,49],"154":[2,49],"155":[2,49],"156":[2,49],"157":[2,49],"158":[2,49],"159":[2,49],"160":[2,49],"161":[2,49]},{"8":220,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":221,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":222,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":223,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":224,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":225,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":226,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":227,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":228,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":229,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":230,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"116":[1,231],"117":[1,232]},{"8":233,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":234,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,136],"4":[2,136],"28":[2,136],"29":[2,136],"48":[2,136],"56":[2,136],"59":[2,136],"77":[2,136],"82":[2,136],"92":[2,136],"97":[2,136],"105":[2,136],"107":[2,136],"108":[2,136],"109":[2,136],"112":[2,136],"116":[2,136],"117":[2,136],"118":[2,136],"125":[2,136],"126":[2,136],"127":[2,136],"129":[2,136],"130":[2,136],"132":[2,136],"133":[2,136],"136":[2,136],"137":[2,136],"138":[2,136],"139":[2,136],"140":[2,136],"141":[2,136],"142":[2,136],"143":[2,136],"144":[2,136],"145":[2,136],"146":[2,136],"147":[2,136],"148":[2,136],"149":[2,136],"150":[2,136],"151":[2,136],"152":[2,136],"153":[2,136],"154":[2,136],"155":[2,136],"156":[2,136],"157":[2,136],"158":[2,136],"159":[2,136],"160":[2,136],"161":[2,136]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"113":235,"115":170},{"59":[1,236]},{"8":237,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":238,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,135],"4":[2,135],"28":[2,135],"29":[2,135],"48":[2,135],"56":[2,135],"59":[2,135],"77":[2,135],"82":[2,135],"92":[2,135],"97":[2,135],"105":[2,135],"107":[2,135],"108":[2,135],"109":[2,135],"112":[2,135],"116":[2,135],"117":[2,135],"118":[2,135],"125":[2,135],"126":[2,135],"127":[2,135],"129":[2,135],"130":[2,135],"132":[2,135],"133":[2,135],"136":[2,135],"137":[2,135],"138":[2,135],"139":[2,135],"140":[2,135],"141":[2,135],"142":[2,135],"143":[2,135],"144":[2,135],"145":[2,135],"146":[2,135],"147":[2,135],"148":[2,135],"149":[2,135],"150":[2,135],"151":[2,135],"152":[2,135],"153":[2,135],"154":[2,135],"155":[2,135],"156":[2,135],"157":[2,135],"158":[2,135],"159":[2,135],"160":[2,135],"161":[2,135]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"113":239,"115":170},{"1":[2,104],"4":[2,104],"28":[2,104],"29":[2,104],"48":[2,104],"56":[2,104],"59":[2,104],"70":[2,104],"71":[2,104],"72":[2,104],"73":[2,104],"76":[2,104],"77":[2,104],"78":[2,104],"79":[2,104],"82":[2,104],"90":[2,104],"92":[2,104],"97":[2,104],"105":[2,104],"107":[2,104],"108":[2,104],"109":[2,104],"112":[2,104],"116":[2,104],"117":[2,104],"118":[2,104],"125":[2,104],"126":[2,104],"127":[2,104],"129":[2,104],"130":[2,104],"132":[2,104],"133":[2,104],"136":[2,104],"137":[2,104],"138":[2,104],"139":[2,104],"140":[2,104],"141":[2,104],"142":[2,104],"143":[2,104],"144":[2,104],"145":[2,104],"146":[2,104],"147":[2,104],"148":[2,104],"149":[2,104],"150":[2,104],"151":[2,104],"152":[2,104],"153":[2,104],"154":[2,104],"155":[2,104],"156":[2,104],"157":[2,104],"158":[2,104],"159":[2,104],"160":[2,104],"161":[2,104]},{"1":[2,63],"4":[2,63],"28":[2,63],"29":[2,63],"45":[2,63],"48":[2,63],"56":[2,63],"59":[2,63],"70":[2,63],"71":[2,63],"72":[2,63],"73":[2,63],"76":[2,63],"77":[2,63],"78":[2,63],"79":[2,63],"82":[2,63],"84":[2,63],"90":[2,63],"92":[2,63],"97":[2,63],"105":[2,63],"107":[2,63],"108":[2,63],"109":[2,63],"112":[2,63],"116":[2,63],"117":[2,63],"118":[2,63],"125":[2,63],"126":[2,63],"127":[2,63],"129":[2,63],"130":[2,63],"132":[2,63],"133":[2,63],"136":[2,63],"137":[2,63],"138":[2,63],"139":[2,63],"140":[2,63],"141":[2,63],"142":[2,63],"143":[2,63],"144":[2,63],"145":[2,63],"146":[2,63],"147":[2,63],"148":[2,63],"149":[2,63],"150":[2,63],"151":[2,63],"152":[2,63],"153":[2,63],"154":[2,63],"155":[2,63],"156":[2,63],"157":[2,63],"158":[2,63],"159":[2,63],"160":[2,63],"161":[2,63]},{"4":[2,116],"8":241,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,116],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,116],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"91":240,"92":[2,116],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"30":242,"31":[1,85]},{"30":243,"31":[1,85]},{"1":[2,77],"4":[2,77],"28":[2,77],"29":[2,77],"45":[2,77],"48":[2,77],"56":[2,77],"59":[2,77],"70":[2,77],"71":[2,77],"72":[2,77],"73":[2,77],"76":[2,77],"77":[2,77],"78":[2,77],"79":[2,77],"82":[2,77],"84":[2,77],"90":[2,77],"92":[2,77],"97":[2,77],"105":[2,77],"107":[2,77],"108":[2,77],"109":[2,77],"112":[2,77],"116":[2,77],"117":[2,77],"118":[2,77],"125":[2,77],"126":[2,77],"127":[2,77],"129":[2,77],"130":[2,77],"132":[2,77],"133":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77],"151":[2,77],"152":[2,77],"153":[2,77],"154":[2,77],"155":[2,77],"156":[2,77],"157":[2,77],"158":[2,77],"159":[2,77],"160":[2,77],"161":[2,77]},{"30":244,"31":[1,85]},{"1":[2,79],"4":[2,79],"28":[2,79],"29":[2,79],"45":[2,79],"48":[2,79],"56":[2,79],"59":[2,79],"70":[2,79],"71":[2,79],"72":[2,79],"73":[2,79],"76":[2,79],"77":[2,79],"78":[2,79],"79":[2,79],"82":[2,79],"84":[2,79],"90":[2,79],"92":[2,79],"97":[2,79],"105":[2,79],"107":[2,79],"108":[2,79],"109":[2,79],"112":[2,79],"116":[2,79],"117":[2,79],"118":[2,79],"125":[2,79],"126":[2,79],"127":[2,79],"129":[2,79],"130":[2,79],"132":[2,79],"133":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79],"151":[2,79],"152":[2,79],"153":[2,79],"154":[2,79],"155":[2,79],"156":[2,79],"157":[2,79],"158":[2,79],"159":[2,79],"160":[2,79],"161":[2,79]},{"1":[2,80],"4":[2,80],"28":[2,80],"29":[2,80],"45":[2,80],"48":[2,80],"56":[2,80],"59":[2,80],"70":[2,80],"71":[2,80],"72":[2,80],"73":[2,80],"76":[2,80],"77":[2,80],"78":[2,80],"79":[2,80],"82":[2,80],"84":[2,80],"90":[2,80],"92":[2,80],"97":[2,80],"105":[2,80],"107":[2,80],"108":[2,80],"109":[2,80],"112":[2,80],"116":[2,80],"117":[2,80],"118":[2,80],"125":[2,80],"126":[2,80],"127":[2,80],"129":[2,80],"130":[2,80],"132":[2,80],"133":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80],"140":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80],"151":[2,80],"152":[2,80],"153":[2,80],"154":[2,80],"155":[2,80],"156":[2,80],"157":[2,80],"158":[2,80],"159":[2,80],"160":[2,80],"161":[2,80]},{"8":245,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"74":246,"76":[1,247],"78":[1,143],"79":[1,144]},{"74":248,"76":[1,247],"78":[1,143],"79":[1,144]},{"8":249,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,105],"4":[2,105],"28":[2,105],"29":[2,105],"48":[2,105],"56":[2,105],"59":[2,105],"70":[2,105],"71":[2,105],"72":[2,105],"73":[2,105],"76":[2,105],"77":[2,105],"78":[2,105],"79":[2,105],"82":[2,105],"90":[2,105],"92":[2,105],"97":[2,105],"105":[2,105],"107":[2,105],"108":[2,105],"109":[2,105],"112":[2,105],"116":[2,105],"117":[2,105],"118":[2,105],"125":[2,105],"126":[2,105],"127":[2,105],"129":[2,105],"130":[2,105],"132":[2,105],"133":[2,105],"136":[2,105],"137":[2,105],"138":[2,105],"139":[2,105],"140":[2,105],"141":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"148":[2,105],"149":[2,105],"150":[2,105],"151":[2,105],"152":[2,105],"153":[2,105],"154":[2,105],"155":[2,105],"156":[2,105],"157":[2,105],"158":[2,105],"159":[2,105],"160":[2,105],"161":[2,105]},{"1":[2,64],"4":[2,64],"28":[2,64],"29":[2,64],"45":[2,64],"48":[2,64],"56":[2,64],"59":[2,64],"70":[2,64],"71":[2,64],"72":[2,64],"73":[2,64],"76":[2,64],"77":[2,64],"78":[2,64],"79":[2,64],"82":[2,64],"84":[2,64],"90":[2,64],"92":[2,64],"97":[2,64],"105":[2,64],"107":[2,64],"108":[2,64],"109":[2,64],"112":[2,64],"116":[2,64],"117":[2,64],"118":[2,64],"125":[2,64],"126":[2,64],"127":[2,64],"129":[2,64],"130":[2,64],"132":[2,64],"133":[2,64],"136":[2,64],"137":[2,64],"138":[2,64],"139":[2,64],"140":[2,64],"141":[2,64],"142":[2,64],"143":[2,64],"144":[2,64],"145":[2,64],"146":[2,64],"147":[2,64],"148":[2,64],"149":[2,64],"150":[2,64],"151":[2,64],"152":[2,64],"153":[2,64],"154":[2,64],"155":[2,64],"156":[2,64],"157":[2,64],"158":[2,64],"159":[2,64],"160":[2,64],"161":[2,64]},{"1":[2,101],"4":[2,101],"28":[2,101],"29":[2,101],"48":[2,101],"56":[2,101],"59":[2,101],"61":147,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,101],"78":[1,143],"79":[1,144],"82":[2,101],"89":146,"90":[1,135],"92":[2,101],"97":[2,101],"105":[2,101],"107":[2,101],"108":[2,101],"109":[2,101],"112":[2,101],"116":[2,101],"117":[2,101],"118":[2,101],"125":[2,101],"126":[2,101],"127":[2,101],"129":[2,101],"130":[2,101],"132":[2,101],"133":[2,101],"136":[2,101],"137":[2,101],"138":[2,101],"139":[2,101],"140":[2,101],"141":[2,101],"142":[2,101],"143":[2,101],"144":[2,101],"145":[2,101],"146":[2,101],"147":[2,101],"148":[2,101],"149":[2,101],"150":[2,101],"151":[2,101],"152":[2,101],"153":[2,101],"154":[2,101],"155":[2,101],"156":[2,101],"157":[2,101],"158":[2,101],"159":[2,101],"160":[2,101],"161":[2,101]},{"1":[2,102],"4":[2,102],"28":[2,102],"29":[2,102],"48":[2,102],"56":[2,102],"59":[2,102],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,102],"78":[1,143],"79":[1,144],"82":[2,102],"89":133,"90":[1,135],"92":[2,102],"97":[2,102],"105":[2,102],"107":[2,102],"108":[2,102],"109":[2,102],"112":[2,102],"116":[2,102],"117":[2,102],"118":[2,102],"125":[2,102],"126":[2,102],"127":[2,102],"129":[2,102],"130":[2,102],"132":[2,102],"133":[2,102],"136":[2,102],"137":[2,102],"138":[2,102],"139":[2,102],"140":[2,102],"141":[2,102],"142":[2,102],"143":[2,102],"144":[2,102],"145":[2,102],"146":[2,102],"147":[2,102],"148":[2,102],"149":[2,102],"150":[2,102],"151":[2,102],"152":[2,102],"153":[2,102],"154":[2,102],"155":[2,102],"156":[2,102],"157":[2,102],"158":[2,102],"159":[2,102],"160":[2,102],"161":[2,102]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"48":[2,69],"56":[2,69],"59":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"77":[2,69],"78":[2,69],"79":[2,69],"82":[2,69],"90":[2,69],"92":[2,69],"97":[2,69],"105":[2,69],"107":[2,69],"108":[2,69],"109":[2,69],"112":[2,69],"116":[2,69],"117":[2,69],"118":[2,69],"125":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"132":[2,69],"133":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69],"140":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69]},{"1":[2,66],"4":[2,66],"28":[2,66],"29":[2,66],"48":[2,66],"56":[2,66],"59":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,66],"78":[2,66],"79":[2,66],"82":[2,66],"90":[2,66],"92":[2,66],"97":[2,66],"105":[2,66],"107":[2,66],"108":[2,66],"109":[2,66],"112":[2,66],"116":[2,66],"117":[2,66],"118":[2,66],"125":[2,66],"126":[2,66],"127":[2,66],"129":[2,66],"130":[2,66],"132":[2,66],"133":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66]},{"51":[1,250],"56":[1,251]},{"51":[2,57],"56":[2,57],"59":[1,252]},{"51":[2,59],"56":[2,59],"59":[2,59]},{"1":[2,51],"4":[2,51],"28":[2,51],"29":[2,51],"48":[2,51],"56":[2,51],"59":[2,51],"77":[2,51],"82":[2,51],"92":[2,51],"97":[2,51],"105":[2,51],"107":[2,51],"108":[2,51],"109":[2,51],"112":[2,51],"116":[2,51],"117":[2,51],"118":[2,51],"125":[2,51],"126":[2,51],"127":[2,51],"129":[2,51],"130":[2,51],"132":[2,51],"133":[2,51],"136":[2,51],"137":[2,51],"138":[2,51],"139":[2,51],"140":[2,51],"141":[2,51],"142":[2,51],"143":[2,51],"144":[2,51],"145":[2,51],"146":[2,51],"147":[2,51],"148":[2,51],"149":[2,51],"150":[2,51],"151":[2,51],"152":[2,51],"153":[2,51],"154":[2,51],"155":[2,51],"156":[2,51],"157":[2,51],"158":[2,51],"159":[2,51],"160":[2,51],"161":[2,51]},{"1":[2,172],"4":[2,172],"28":[2,172],"29":[2,172],"48":[1,111],"56":[2,172],"59":[2,172],"77":[2,172],"82":[2,172],"92":[2,172],"97":[2,172],"105":[2,172],"106":126,"107":[2,172],"108":[2,172],"109":[2,172],"112":[2,172],"116":[2,172],"117":[2,172],"118":[2,172],"125":[2,172],"126":[2,172],"129":[2,172],"130":[2,172],"136":[2,172],"137":[2,172],"138":[2,172],"139":[2,172],"140":[2,172],"141":[2,172],"142":[2,172],"143":[2,172],"144":[2,172],"145":[2,172],"146":[2,172],"147":[2,172],"148":[2,172],"149":[2,172],"150":[2,172],"151":[2,172],"152":[2,172],"153":[2,172],"154":[2,172],"155":[2,172],"156":[2,172],"157":[2,172],"158":[2,172],"159":[2,172],"160":[2,172],"161":[2,172]},{"106":131,"107":[1,77],"109":[1,78],"112":[1,132],"125":[1,129],"126":[1,130]},{"1":[2,173],"4":[2,173],"28":[2,173],"29":[2,173],"48":[1,111],"56":[2,173],"59":[2,173],"77":[2,173],"82":[2,173],"92":[2,173],"97":[2,173],"105":[2,173],"106":126,"107":[2,173],"108":[2,173],"109":[2,173],"112":[2,173],"116":[2,173],"117":[2,173],"118":[2,173],"125":[2,173],"126":[2,173],"129":[2,173],"130":[2,173],"136":[2,173],"137":[2,173],"138":[2,173],"139":[2,173],"140":[2,173],"141":[2,173],"142":[2,173],"143":[2,173],"144":[2,173],"145":[2,173],"146":[2,173],"147":[2,173],"148":[2,173],"149":[2,173],"150":[2,173],"151":[2,173],"152":[2,173],"153":[2,173],"154":[2,173],"155":[2,173],"156":[2,173],"157":[2,173],"158":[2,173],"159":[2,173],"160":[2,173],"161":[2,173]},{"1":[2,174],"4":[2,174],"28":[2,174],"29":[2,174],"48":[1,111],"56":[2,174],"59":[2,174],"77":[2,174],"82":[2,174],"92":[2,174],"97":[2,174],"105":[2,174],"106":126,"107":[2,174],"108":[2,174],"109":[2,174],"112":[2,174],"116":[2,174],"117":[2,174],"118":[2,174],"125":[2,174],"126":[2,174],"129":[2,174],"130":[2,174],"136":[2,174],"137":[2,174],"138":[2,174],"139":[2,174],"140":[2,174],"141":[2,174],"142":[2,174],"143":[2,174],"144":[2,174],"145":[2,174],"146":[2,174],"147":[2,174],"148":[2,174],"149":[2,174],"150":[2,174],"151":[2,174],"152":[2,174],"153":[2,174],"154":[2,174],"155":[2,174],"156":[2,174],"157":[2,174],"158":[2,174],"159":[2,174],"160":[2,174],"161":[2,174]},{"1":[2,175],"4":[2,175],"28":[2,175],"29":[2,175],"48":[1,111],"56":[2,175],"59":[2,175],"77":[2,175],"82":[2,175],"92":[2,175],"97":[2,175],"105":[2,175],"106":126,"107":[2,175],"108":[2,175],"109":[2,175],"112":[2,175],"116":[2,175],"117":[2,175],"118":[2,175],"125":[2,175],"126":[2,175],"129":[2,175],"130":[2,175],"136":[2,175],"137":[2,175],"138":[2,175],"139":[2,175],"140":[2,175],"141":[2,175],"142":[2,175],"143":[2,175],"144":[2,175],"145":[2,175],"146":[2,175],"147":[2,175],"148":[2,175],"149":[2,175],"150":[2,175],"151":[2,175],"152":[2,175],"153":[2,175],"154":[2,175],"155":[2,175],"156":[2,175],"157":[2,175],"158":[2,175],"159":[2,175],"160":[2,175],"161":[2,175]},{"1":[2,176],"4":[2,176],"28":[2,176],"29":[2,176],"48":[1,111],"56":[2,176],"59":[2,176],"77":[2,176],"82":[2,176],"92":[2,176],"97":[2,176],"105":[2,176],"106":126,"107":[2,176],"108":[2,176],"109":[2,176],"112":[2,176],"116":[2,176],"117":[2,176],"118":[2,176],"125":[2,176],"126":[2,176],"129":[2,176],"130":[2,176],"136":[2,176],"137":[2,176],"138":[2,176],"139":[2,176],"140":[2,176],"141":[2,176],"142":[2,176],"143":[2,176],"144":[2,176],"145":[2,176],"146":[2,176],"147":[2,176],"148":[2,176],"149":[2,176],"150":[2,176],"151":[2,176],"152":[2,176],"153":[2,176],"154":[2,176],"155":[2,176],"156":[2,176],"157":[2,176],"158":[2,176],"159":[2,176],"160":[2,176],"161":[2,176]},{"1":[2,177],"4":[2,177],"28":[2,177],"29":[2,177],"48":[1,111],"56":[2,177],"59":[2,177],"77":[2,177],"82":[2,177],"92":[2,177],"97":[2,177],"105":[2,177],"106":126,"107":[2,177],"108":[2,177],"109":[2,177],"112":[2,177],"116":[2,177],"117":[2,177],"118":[2,177],"125":[2,177],"126":[2,177],"129":[2,177],"130":[2,177],"136":[2,177],"137":[2,177],"138":[2,177],"139":[2,177],"140":[2,177],"141":[2,177],"142":[2,177],"143":[2,177],"144":[2,177],"145":[2,177],"146":[2,177],"147":[2,177],"148":[2,177],"149":[2,177],"150":[2,177],"151":[2,177],"152":[2,177],"153":[2,177],"154":[2,177],"155":[2,177],"156":[2,177],"157":[2,177],"158":[2,177],"159":[2,177],"160":[2,177],"161":[2,177]},{"1":[2,178],"4":[2,178],"28":[2,178],"29":[2,178],"48":[1,111],"56":[2,178],"59":[2,178],"77":[2,178],"82":[2,178],"92":[2,178],"97":[2,178],"105":[2,178],"106":126,"107":[2,178],"108":[2,178],"109":[2,178],"112":[2,178],"116":[2,178],"117":[2,178],"118":[2,178],"125":[2,178],"126":[2,178],"129":[2,178],"130":[2,178],"136":[2,178],"137":[2,178],"138":[2,178],"139":[2,178],"140":[2,178],"141":[2,178],"142":[2,178],"143":[2,178],"144":[2,178],"145":[2,178],"146":[2,178],"147":[2,178],"148":[2,178],"149":[2,178],"150":[2,178],"151":[2,178],"152":[2,178],"153":[2,178],"154":[2,178],"155":[2,178],"156":[2,178],"157":[2,178],"158":[2,178],"159":[2,178],"160":[2,178],"161":[2,178]},{"1":[2,179],"4":[2,179],"28":[2,179],"29":[2,179],"48":[1,111],"56":[2,179],"59":[2,179],"77":[2,179],"82":[2,179],"92":[2,179],"97":[2,179],"105":[2,179],"106":126,"107":[2,179],"108":[2,179],"109":[2,179],"112":[2,179],"116":[2,179],"117":[2,179],"118":[2,179],"125":[2,179],"126":[2,179],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,179],"150":[2,179],"151":[2,179],"152":[2,179],"153":[2,179],"154":[2,179],"155":[2,179],"156":[2,179],"157":[2,179],"158":[2,179],"159":[2,179],"160":[2,179],"161":[1,120]},{"1":[2,180],"4":[2,180],"28":[2,180],"29":[2,180],"48":[1,111],"56":[2,180],"59":[2,180],"77":[2,180],"82":[2,180],"92":[2,180],"97":[2,180],"105":[2,180],"106":126,"107":[2,180],"108":[2,180],"109":[2,180],"112":[2,180],"116":[2,180],"117":[2,180],"118":[2,180],"125":[2,180],"126":[2,180],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,180],"150":[2,180],"151":[2,180],"152":[2,180],"153":[2,180],"154":[2,180],"155":[2,180],"156":[2,180],"157":[2,180],"158":[2,180],"159":[2,180],"160":[2,180],"161":[1,120]},{"6":254,"28":[1,6],"125":[1,253]},{"100":255,"101":[1,256],"102":[1,257]},{"1":[2,134],"4":[2,134],"28":[2,134],"29":[2,134],"48":[2,134],"56":[2,134],"59":[2,134],"77":[2,134],"82":[2,134],"92":[2,134],"97":[2,134],"105":[2,134],"107":[2,134],"108":[2,134],"109":[2,134],"112":[2,134],"116":[2,134],"117":[2,134],"118":[2,134],"125":[2,134],"126":[2,134],"127":[2,134],"129":[2,134],"130":[2,134],"132":[2,134],"133":[2,134],"136":[2,134],"137":[2,134],"138":[2,134],"139":[2,134],"140":[2,134],"141":[2,134],"142":[2,134],"143":[2,134],"144":[2,134],"145":[2,134],"146":[2,134],"147":[2,134],"148":[2,134],"149":[2,134],"150":[2,134],"151":[2,134],"152":[2,134],"153":[2,134],"154":[2,134],"155":[2,134],"156":[2,134],"157":[2,134],"158":[2,134],"159":[2,134],"160":[2,134],"161":[2,134]},{"114":258,"116":[1,259],"117":[1,260]},{"56":[1,261],"116":[2,146],"117":[2,146]},{"56":[2,143],"116":[2,143],"117":[2,143]},{"56":[2,144],"116":[2,144],"117":[2,144]},{"56":[2,145],"116":[2,145],"117":[2,145]},{"4":[2,116],"8":241,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,116],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,116],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"91":185,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,116],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"28":[1,262],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"120":263,"122":264,"123":[1,265]},{"14":266,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":151,"62":180,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"1":[2,90],"4":[2,90],"28":[1,268],"29":[2,90],"48":[2,90],"56":[2,90],"59":[2,90],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,90],"78":[2,66],"79":[2,66],"82":[2,90],"84":[1,267],"90":[2,66],"92":[2,90],"97":[2,90],"105":[2,90],"107":[2,90],"108":[2,90],"109":[2,90],"112":[2,90],"116":[2,90],"117":[2,90],"118":[2,90],"125":[2,90],"126":[2,90],"127":[2,90],"129":[2,90],"130":[2,90],"132":[2,90],"133":[2,90],"136":[2,90],"137":[2,90],"138":[2,90],"139":[2,90],"140":[2,90],"141":[2,90],"142":[2,90],"143":[2,90],"144":[2,90],"145":[2,90],"146":[2,90],"147":[2,90],"148":[2,90],"149":[2,90],"150":[2,90],"151":[2,90],"152":[2,90],"153":[2,90],"154":[2,90],"155":[2,90],"156":[2,90],"157":[2,90],"158":[2,90],"159":[2,90],"160":[2,90],"161":[2,90]},{"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"78":[1,143],"79":[1,144],"89":133,"90":[1,135]},{"61":147,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"78":[1,143],"79":[1,144],"89":146,"90":[1,135]},{"1":[2,47],"4":[2,47],"29":[2,47],"48":[1,111],"59":[1,128],"105":[2,47],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[2,47],"126":[2,47],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,128],"4":[2,128],"29":[2,128],"48":[1,111],"59":[1,128],"105":[2,128],"106":126,"107":[2,128],"109":[2,128],"112":[2,128],"116":[1,121],"117":[1,122],"125":[2,128],"126":[2,128],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"105":[1,269]},{"4":[2,117],"28":[2,117],"48":[1,111],"56":[2,117],"59":[1,270],"97":[2,117],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,54],"28":[2,54],"55":271,"56":[1,272],"97":[2,54]},{"1":[2,110],"4":[2,110],"28":[2,110],"29":[2,110],"45":[2,110],"48":[2,110],"56":[2,110],"59":[2,110],"70":[2,110],"71":[2,110],"72":[2,110],"73":[2,110],"76":[2,110],"77":[2,110],"78":[2,110],"79":[2,110],"82":[2,110],"84":[2,110],"90":[2,110],"92":[2,110],"97":[2,110],"105":[2,110],"107":[2,110],"108":[2,110],"109":[2,110],"112":[2,110],"116":[2,110],"117":[2,110],"118":[2,110],"125":[2,110],"126":[2,110],"127":[2,110],"129":[2,110],"130":[2,110],"132":[2,110],"133":[2,110],"136":[2,110],"137":[2,110],"138":[2,110],"139":[2,110],"140":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"147":[2,110],"148":[2,110],"149":[2,110],"150":[2,110],"151":[2,110],"152":[2,110],"153":[2,110],"154":[2,110],"155":[2,110],"156":[2,110],"157":[2,110],"158":[2,110],"159":[2,110],"160":[2,110],"161":[2,110]},{"1":[2,107],"4":[2,107],"28":[2,107],"29":[2,107],"48":[2,107],"56":[2,107],"59":[2,107],"77":[2,107],"82":[2,107],"92":[2,107],"97":[2,107],"105":[2,107],"107":[2,107],"108":[2,107],"109":[2,107],"112":[2,107],"116":[2,107],"117":[2,107],"118":[2,107],"125":[2,107],"126":[2,107],"127":[2,107],"129":[2,107],"130":[2,107],"132":[2,107],"133":[2,107],"136":[2,107],"137":[2,107],"138":[2,107],"139":[2,107],"140":[2,107],"141":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"148":[2,107],"149":[2,107],"150":[2,107],"151":[2,107],"152":[2,107],"153":[2,107],"154":[2,107],"155":[2,107],"156":[2,107],"157":[2,107],"158":[2,107],"159":[2,107],"160":[2,107],"161":[2,107]},{"6":273,"28":[1,6],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"6":274,"28":[1,6],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,130],"4":[2,130],"28":[2,130],"29":[2,130],"48":[1,111],"56":[2,130],"59":[1,128],"77":[2,130],"82":[2,130],"92":[2,130],"97":[2,130],"105":[2,130],"106":126,"107":[1,77],"108":[1,275],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,130],"125":[2,130],"126":[2,130],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,132],"4":[2,132],"28":[2,132],"29":[2,132],"48":[1,111],"56":[2,132],"59":[1,128],"77":[2,132],"82":[2,132],"92":[2,132],"97":[2,132],"105":[2,132],"106":126,"107":[1,77],"108":[1,276],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,132],"125":[2,132],"126":[2,132],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,138],"4":[2,138],"28":[2,138],"29":[2,138],"48":[2,138],"56":[2,138],"59":[2,138],"77":[2,138],"82":[2,138],"92":[2,138],"97":[2,138],"105":[2,138],"107":[2,138],"108":[2,138],"109":[2,138],"112":[2,138],"116":[2,138],"117":[2,138],"118":[2,138],"125":[2,138],"126":[2,138],"127":[2,138],"129":[2,138],"130":[2,138],"132":[2,138],"133":[2,138],"136":[2,138],"137":[2,138],"138":[2,138],"139":[2,138],"140":[2,138],"141":[2,138],"142":[2,138],"143":[2,138],"144":[2,138],"145":[2,138],"146":[2,138],"147":[2,138],"148":[2,138],"149":[2,138],"150":[2,138],"151":[2,138],"152":[2,138],"153":[2,138],"154":[2,138],"155":[2,138],"156":[2,138],"157":[2,138],"158":[2,138],"159":[2,138],"160":[2,138],"161":[2,138]},{"1":[2,139],"4":[2,139],"28":[2,139],"29":[2,139],"48":[1,111],"56":[2,139],"59":[1,128],"77":[2,139],"82":[2,139],"92":[2,139],"97":[2,139],"105":[2,139],"106":126,"107":[1,77],"108":[2,139],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,139],"125":[2,139],"126":[2,139],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,54],"28":[2,54],"55":277,"56":[1,278],"82":[2,54]},{"4":[2,86],"28":[2,86],"29":[2,86],"56":[2,86],"82":[2,86]},{"4":[2,43],"28":[2,43],"29":[2,43],"45":[1,279],"56":[2,43],"82":[2,43]},{"4":[2,44],"28":[2,44],"29":[2,44],"45":[1,280],"56":[2,44],"82":[2,44]},{"1":[2,6],"4":[2,6],"29":[2,6]},{"1":[2,28],"4":[2,28],"28":[2,28],"29":[2,28],"48":[2,28],"56":[2,28],"59":[2,28],"77":[2,28],"82":[2,28],"92":[2,28],"97":[2,28],"101":[2,28],"102":[2,28],"105":[2,28],"107":[2,28],"108":[2,28],"109":[2,28],"112":[2,28],"116":[2,28],"117":[2,28],"118":[2,28],"121":[2,28],"123":[2,28],"125":[2,28],"126":[2,28],"127":[2,28],"129":[2,28],"130":[2,28],"132":[2,28],"133":[2,28],"136":[2,28],"137":[2,28],"138":[2,28],"139":[2,28],"140":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"148":[2,28],"149":[2,28],"150":[2,28],"151":[2,28],"152":[2,28],"153":[2,28],"154":[2,28],"155":[2,28],"156":[2,28],"157":[2,28],"158":[2,28],"159":[2,28],"160":[2,28],"161":[2,28]},{"1":[2,183],"4":[2,183],"28":[2,183],"29":[2,183],"48":[1,111],"56":[2,183],"59":[2,183],"77":[2,183],"82":[2,183],"92":[2,183],"97":[2,183],"105":[2,183],"106":126,"107":[2,183],"108":[2,183],"109":[2,183],"112":[2,183],"116":[2,183],"117":[2,183],"118":[2,183],"125":[2,183],"126":[2,183],"127":[1,123],"129":[2,183],"130":[2,183],"132":[1,90],"133":[1,91],"136":[2,183],"137":[2,183],"138":[2,183],"139":[2,183],"140":[2,183],"141":[2,183],"142":[2,183],"143":[2,183],"144":[2,183],"145":[2,183],"146":[2,183],"147":[2,183],"148":[2,183],"149":[2,183],"150":[2,183],"151":[2,183],"152":[2,183],"153":[2,183],"154":[2,183],"155":[2,183],"156":[2,183],"157":[2,183],"158":[2,183],"159":[2,183],"160":[2,183],"161":[2,183]},{"1":[2,184],"4":[2,184],"28":[2,184],"29":[2,184],"48":[1,111],"56":[2,184],"59":[2,184],"77":[2,184],"82":[2,184],"92":[2,184],"97":[2,184],"105":[2,184],"106":126,"107":[2,184],"108":[2,184],"109":[2,184],"112":[2,184],"116":[2,184],"117":[2,184],"118":[2,184],"125":[2,184],"126":[2,184],"127":[1,123],"129":[2,184],"130":[2,184],"132":[1,90],"133":[1,91],"136":[2,184],"137":[2,184],"138":[2,184],"139":[2,184],"140":[2,184],"141":[2,184],"142":[2,184],"143":[2,184],"144":[2,184],"145":[2,184],"146":[2,184],"147":[2,184],"148":[2,184],"149":[2,184],"150":[2,184],"151":[2,184],"152":[2,184],"153":[2,184],"154":[2,184],"155":[2,184],"156":[2,184],"157":[2,184],"158":[2,184],"159":[2,184],"160":[2,184],"161":[2,184]},{"1":[2,185],"4":[2,185],"28":[2,185],"29":[2,185],"48":[1,111],"56":[2,185],"59":[2,185],"77":[2,185],"82":[2,185],"92":[2,185],"97":[2,185],"105":[2,185],"106":126,"107":[2,185],"108":[2,185],"109":[2,185],"112":[2,185],"116":[2,185],"117":[2,185],"118":[2,185],"125":[2,185],"126":[2,185],"127":[1,123],"129":[2,185],"130":[2,185],"132":[1,90],"133":[1,91],"136":[2,185],"137":[2,185],"138":[2,185],"139":[2,185],"140":[2,185],"141":[2,185],"142":[2,185],"143":[2,185],"144":[2,185],"145":[2,185],"146":[2,185],"147":[2,185],"148":[2,185],"149":[2,185],"150":[2,185],"151":[2,185],"152":[2,185],"153":[2,185],"154":[2,185],"155":[2,185],"156":[2,185],"157":[2,185],"158":[2,185],"159":[2,185],"160":[2,185],"161":[2,185]},{"1":[2,186],"4":[2,186],"28":[2,186],"29":[2,186],"48":[1,111],"56":[2,186],"59":[2,186],"77":[2,186],"82":[2,186],"92":[2,186],"97":[2,186],"105":[2,186],"106":126,"107":[2,186],"108":[2,186],"109":[2,186],"112":[2,186],"116":[2,186],"117":[2,186],"118":[2,186],"125":[2,186],"126":[2,186],"127":[1,123],"129":[2,186],"130":[2,186],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,186],"140":[2,186],"141":[2,186],"142":[2,186],"143":[2,186],"144":[2,186],"145":[2,186],"146":[2,186],"147":[2,186],"148":[2,186],"149":[2,186],"150":[2,186],"151":[2,186],"152":[2,186],"153":[2,186],"154":[2,186],"155":[2,186],"156":[2,186],"157":[2,186],"158":[2,186],"159":[2,186],"160":[2,186],"161":[2,186]},{"1":[2,187],"4":[2,187],"28":[2,187],"29":[2,187],"48":[1,111],"56":[2,187],"59":[2,187],"77":[2,187],"82":[2,187],"92":[2,187],"97":[2,187],"105":[2,187],"106":126,"107":[2,187],"108":[2,187],"109":[2,187],"112":[2,187],"116":[2,187],"117":[2,187],"118":[2,187],"125":[2,187],"126":[2,187],"127":[1,123],"129":[2,187],"130":[2,187],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,187],"140":[2,187],"141":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"146":[2,187],"147":[2,187],"148":[2,187],"149":[2,187],"150":[2,187],"151":[2,187],"152":[2,187],"153":[2,187],"154":[2,187],"155":[2,187],"156":[2,187],"157":[2,187],"158":[2,187],"159":[2,187],"160":[2,187],"161":[2,187]},{"1":[2,188],"4":[2,188],"28":[2,188],"29":[2,188],"48":[1,111],"56":[2,188],"59":[2,188],"77":[2,188],"82":[2,188],"92":[2,188],"97":[2,188],"105":[2,188],"106":126,"107":[2,188],"108":[2,188],"109":[2,188],"112":[2,188],"116":[2,188],"117":[2,188],"118":[2,188],"125":[2,188],"126":[2,188],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,188],"140":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"147":[2,188],"148":[2,188],"149":[2,188],"150":[2,188],"151":[2,188],"152":[2,188],"153":[2,188],"154":[2,188],"155":[2,188],"156":[2,188],"157":[2,188],"158":[2,188],"159":[2,188],"160":[2,188],"161":[2,188]},{"1":[2,189],"4":[2,189],"28":[2,189],"29":[2,189],"48":[1,111],"56":[2,189],"59":[2,189],"77":[2,189],"82":[2,189],"92":[2,189],"97":[2,189],"105":[2,189],"106":126,"107":[2,189],"108":[2,189],"109":[2,189],"112":[2,189],"116":[2,189],"117":[2,189],"118":[2,189],"125":[2,189],"126":[2,189],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,189],"140":[2,189],"141":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"148":[2,189],"149":[2,189],"150":[2,189],"151":[2,189],"152":[2,189],"153":[2,189],"154":[2,189],"155":[2,189],"156":[2,189],"157":[2,189],"158":[2,189],"159":[2,189],"160":[2,189],"161":[2,189]},{"1":[2,190],"4":[2,190],"28":[2,190],"29":[2,190],"48":[1,111],"56":[2,190],"59":[2,190],"77":[2,190],"82":[2,190],"92":[2,190],"97":[2,190],"105":[2,190],"106":126,"107":[2,190],"108":[2,190],"109":[2,190],"112":[2,190],"116":[2,190],"117":[2,190],"118":[2,190],"125":[2,190],"126":[2,190],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,190],"140":[2,190],"141":[2,190],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"148":[2,190],"149":[2,190],"150":[2,190],"151":[2,190],"152":[2,190],"153":[2,190],"154":[2,190],"155":[2,190],"156":[2,190],"157":[2,190],"158":[2,190],"159":[2,190],"160":[2,190],"161":[2,190]},{"1":[2,191],"4":[2,191],"28":[2,191],"29":[2,191],"48":[1,111],"56":[2,191],"59":[2,191],"77":[2,191],"82":[2,191],"92":[2,191],"97":[2,191],"105":[2,191],"106":126,"107":[2,191],"108":[2,191],"109":[2,191],"112":[2,191],"116":[2,191],"117":[2,191],"118":[2,191],"125":[2,191],"126":[2,191],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"148":[2,191],"149":[2,191],"150":[2,191],"151":[2,191],"152":[2,191],"153":[2,191],"154":[2,191],"155":[2,191],"156":[2,191],"157":[2,191],"158":[2,191],"159":[2,191],"160":[2,191],"161":[2,191]},{"1":[2,192],"4":[2,192],"28":[2,192],"29":[2,192],"48":[1,111],"56":[2,192],"59":[2,192],"77":[2,192],"82":[2,192],"92":[2,192],"97":[2,192],"105":[2,192],"106":126,"107":[2,192],"108":[2,192],"109":[2,192],"112":[2,192],"116":[2,192],"117":[2,192],"118":[2,192],"125":[2,192],"126":[2,192],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[2,192],"143":[2,192],"144":[2,192],"145":[2,192],"146":[2,192],"147":[2,192],"148":[2,192],"149":[2,192],"150":[2,192],"151":[2,192],"152":[2,192],"153":[2,192],"154":[2,192],"155":[2,192],"156":[2,192],"157":[2,192],"158":[2,192],"159":[2,192],"160":[2,192],"161":[2,192]},{"1":[2,193],"4":[2,193],"28":[2,193],"29":[2,193],"48":[1,111],"56":[2,193],"59":[2,193],"77":[2,193],"82":[2,193],"92":[2,193],"97":[2,193],"105":[2,193],"106":126,"107":[2,193],"108":[2,193],"109":[2,193],"112":[2,193],"116":[2,193],"117":[2,193],"118":[2,193],"125":[2,193],"126":[2,193],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[2,193],"143":[2,193],"144":[2,193],"145":[2,193],"146":[2,193],"147":[2,193],"148":[2,193],"149":[2,193],"150":[2,193],"151":[2,193],"152":[2,193],"153":[2,193],"154":[2,193],"155":[2,193],"156":[2,193],"157":[2,193],"158":[2,193],"159":[2,193],"160":[2,193],"161":[2,193]},{"1":[2,194],"4":[2,194],"28":[2,194],"29":[2,194],"48":[1,111],"56":[2,194],"59":[2,194],"77":[2,194],"82":[2,194],"92":[2,194],"97":[2,194],"105":[2,194],"106":126,"107":[2,194],"108":[2,194],"109":[2,194],"112":[2,194],"116":[2,194],"117":[2,194],"118":[2,194],"125":[2,194],"126":[2,194],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,194],"146":[2,194],"147":[2,194],"148":[2,194],"149":[2,194],"150":[2,194],"151":[2,194],"152":[2,194],"153":[2,194],"154":[2,194],"155":[2,194],"156":[2,194],"157":[2,194],"158":[2,194],"159":[2,194],"160":[2,194],"161":[2,194]},{"1":[2,195],"4":[2,195],"28":[2,195],"29":[2,195],"48":[1,111],"56":[2,195],"59":[2,195],"77":[2,195],"82":[2,195],"92":[2,195],"97":[2,195],"105":[2,195],"106":126,"107":[2,195],"108":[2,195],"109":[2,195],"112":[2,195],"116":[2,195],"117":[2,195],"118":[2,195],"125":[2,195],"126":[2,195],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,195],"146":[2,195],"147":[2,195],"148":[2,195],"149":[2,195],"150":[2,195],"151":[2,195],"152":[2,195],"153":[2,195],"154":[2,195],"155":[2,195],"156":[2,195],"157":[2,195],"158":[2,195],"159":[2,195],"160":[2,195],"161":[2,195]},{"1":[2,196],"4":[2,196],"28":[2,196],"29":[2,196],"48":[1,111],"56":[2,196],"59":[2,196],"77":[2,196],"82":[2,196],"92":[2,196],"97":[2,196],"105":[2,196],"106":126,"107":[2,196],"108":[2,196],"109":[2,196],"112":[2,196],"116":[2,196],"117":[2,196],"118":[2,196],"125":[2,196],"126":[2,196],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,196],"146":[2,196],"147":[2,196],"148":[2,196],"149":[2,196],"150":[2,196],"151":[2,196],"152":[2,196],"153":[2,196],"154":[2,196],"155":[2,196],"156":[2,196],"157":[2,196],"158":[2,196],"159":[2,196],"160":[2,196],"161":[2,196]},{"1":[2,197],"4":[2,197],"28":[2,197],"29":[2,197],"48":[1,111],"56":[2,197],"59":[2,197],"77":[2,197],"82":[2,197],"92":[2,197],"97":[2,197],"105":[2,197],"106":126,"107":[2,197],"108":[2,197],"109":[2,197],"112":[2,197],"116":[2,197],"117":[2,197],"118":[2,197],"125":[2,197],"126":[2,197],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,197],"146":[2,197],"147":[2,197],"148":[2,197],"149":[2,197],"150":[2,197],"151":[2,197],"152":[2,197],"153":[2,197],"154":[2,197],"155":[2,197],"156":[2,197],"157":[2,197],"158":[2,197],"159":[2,197],"160":[2,197],"161":[2,197]},{"1":[2,198],"4":[2,198],"28":[2,198],"29":[2,198],"48":[1,111],"56":[2,198],"59":[2,198],"77":[2,198],"82":[2,198],"92":[2,198],"97":[2,198],"105":[2,198],"106":126,"107":[2,198],"108":[2,198],"109":[2,198],"112":[2,198],"116":[2,198],"117":[2,198],"118":[2,198],"125":[2,198],"126":[2,198],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,198],"150":[2,198],"151":[2,198],"152":[2,198],"153":[2,198],"154":[2,198],"155":[2,198],"156":[2,198],"157":[2,198],"158":[2,198],"159":[2,198],"160":[2,198],"161":[1,120]},{"1":[2,199],"4":[2,199],"28":[2,199],"29":[2,199],"48":[1,111],"56":[2,199],"59":[2,199],"77":[2,199],"82":[2,199],"92":[2,199],"97":[2,199],"105":[2,199],"106":126,"107":[2,199],"108":[2,199],"109":[2,199],"112":[2,199],"116":[2,199],"117":[2,199],"118":[2,199],"125":[2,199],"126":[2,199],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,199],"150":[2,199],"151":[2,199],"152":[2,199],"153":[2,199],"154":[2,199],"155":[2,199],"156":[2,199],"157":[2,199],"158":[2,199],"159":[2,199],"160":[2,199],"161":[1,120]},{"1":[2,200],"4":[2,200],"28":[2,200],"29":[2,200],"48":[1,111],"56":[2,200],"59":[2,200],"77":[2,200],"82":[2,200],"92":[2,200],"97":[2,200],"105":[2,200],"106":126,"107":[2,200],"108":[2,200],"109":[2,200],"112":[2,200],"116":[2,200],"117":[2,200],"118":[2,200],"125":[2,200],"126":[2,200],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[2,200],"152":[2,200],"153":[2,200],"154":[2,200],"155":[2,200],"156":[2,200],"157":[2,200],"158":[2,200],"159":[2,200],"160":[2,200],"161":[1,120]},{"1":[2,201],"4":[2,201],"28":[2,201],"29":[2,201],"48":[1,111],"56":[2,201],"59":[2,201],"77":[2,201],"82":[2,201],"92":[2,201],"97":[2,201],"105":[2,201],"106":126,"107":[2,201],"108":[2,201],"109":[2,201],"112":[2,201],"116":[2,201],"117":[2,201],"118":[2,201],"125":[2,201],"126":[2,201],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[2,201],"152":[2,201],"153":[2,201],"154":[2,201],"155":[2,201],"156":[2,201],"157":[2,201],"158":[2,201],"159":[2,201],"160":[2,201],"161":[1,120]},{"1":[2,202],"4":[2,202],"28":[2,202],"29":[2,202],"48":[2,202],"56":[2,202],"59":[2,202],"77":[2,202],"82":[2,202],"92":[2,202],"97":[2,202],"105":[2,202],"106":126,"107":[2,202],"108":[2,202],"109":[2,202],"112":[2,202],"116":[2,202],"117":[2,202],"118":[2,202],"125":[2,202],"126":[2,202],"127":[2,202],"129":[2,202],"130":[2,202],"132":[2,202],"133":[2,202],"136":[2,202],"137":[2,202],"138":[2,202],"139":[2,202],"140":[2,202],"141":[2,202],"142":[2,202],"143":[2,202],"144":[2,202],"145":[2,202],"146":[2,202],"147":[2,202],"148":[2,202],"149":[2,202],"150":[2,202],"151":[2,202],"152":[2,202],"153":[2,202],"154":[2,202],"155":[2,202],"156":[2,202],"157":[2,202],"158":[2,202],"159":[2,202],"160":[2,202],"161":[2,202]},{"1":[2,203],"4":[2,203],"28":[2,203],"29":[2,203],"48":[1,111],"56":[2,203],"59":[2,203],"77":[2,203],"82":[2,203],"92":[2,203],"97":[2,203],"105":[2,203],"106":126,"107":[2,203],"108":[2,203],"109":[2,203],"112":[2,203],"116":[2,203],"117":[2,203],"118":[2,203],"125":[2,203],"126":[2,203],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,204],"4":[2,204],"28":[2,204],"29":[2,204],"48":[1,111],"56":[2,204],"59":[2,204],"77":[2,204],"82":[2,204],"92":[2,204],"97":[2,204],"105":[2,204],"106":126,"107":[2,204],"108":[2,204],"109":[2,204],"112":[2,204],"116":[2,204],"117":[2,204],"118":[2,204],"125":[2,204],"126":[2,204],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,205],"4":[2,205],"28":[2,205],"29":[2,205],"48":[1,111],"56":[2,205],"59":[2,205],"77":[2,205],"82":[2,205],"92":[2,205],"97":[2,205],"105":[2,205],"106":126,"107":[2,205],"108":[2,205],"109":[2,205],"112":[2,205],"116":[2,205],"117":[2,205],"118":[2,205],"125":[2,205],"126":[2,205],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,206],"4":[2,206],"28":[2,206],"29":[2,206],"48":[1,111],"56":[2,206],"59":[2,206],"77":[2,206],"82":[2,206],"92":[2,206],"97":[2,206],"105":[2,206],"106":126,"107":[2,206],"108":[2,206],"109":[2,206],"112":[2,206],"116":[2,206],"117":[2,206],"118":[2,206],"125":[2,206],"126":[2,206],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,207],"4":[2,207],"28":[2,207],"29":[2,207],"48":[1,111],"56":[2,207],"59":[2,207],"77":[2,207],"82":[2,207],"92":[2,207],"97":[2,207],"105":[2,207],"106":126,"107":[2,207],"108":[2,207],"109":[2,207],"112":[2,207],"116":[2,207],"117":[2,207],"118":[2,207],"125":[2,207],"126":[2,207],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,208],"4":[2,208],"28":[2,208],"29":[2,208],"48":[1,111],"56":[2,208],"59":[2,208],"77":[2,208],"82":[2,208],"92":[2,208],"97":[2,208],"105":[2,208],"106":126,"107":[2,208],"108":[2,208],"109":[2,208],"112":[2,208],"116":[2,208],"117":[2,208],"118":[2,208],"125":[2,208],"126":[2,208],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,209],"4":[2,209],"28":[2,209],"29":[2,209],"48":[1,111],"56":[2,209],"59":[2,209],"77":[2,209],"82":[2,209],"92":[2,209],"97":[2,209],"105":[2,209],"106":126,"107":[2,209],"108":[2,209],"109":[2,209],"112":[2,209],"116":[2,209],"117":[2,209],"118":[2,209],"125":[2,209],"126":[2,209],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,210],"4":[2,210],"28":[2,210],"29":[2,210],"48":[1,111],"56":[2,210],"59":[2,210],"77":[2,210],"82":[2,210],"92":[2,210],"97":[2,210],"105":[2,210],"106":126,"107":[2,210],"108":[2,210],"109":[2,210],"112":[2,210],"116":[2,210],"117":[2,210],"118":[2,210],"125":[2,210],"126":[2,210],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,211],"4":[2,211],"28":[2,211],"29":[2,211],"48":[1,111],"56":[2,211],"59":[2,211],"77":[2,211],"82":[2,211],"92":[2,211],"97":[2,211],"105":[2,211],"106":126,"107":[2,211],"108":[2,211],"109":[2,211],"112":[2,211],"116":[2,211],"117":[2,211],"118":[2,211],"125":[2,211],"126":[2,211],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,211],"150":[2,211],"151":[2,211],"152":[2,211],"153":[2,211],"154":[2,211],"155":[2,211],"156":[2,211],"157":[2,211],"158":[2,211],"159":[2,211],"160":[2,211],"161":[1,120]},{"1":[2,212],"4":[2,212],"28":[2,212],"29":[2,212],"48":[1,111],"56":[2,212],"59":[1,128],"77":[2,212],"82":[2,212],"92":[2,212],"97":[2,212],"105":[2,212],"106":126,"107":[2,212],"108":[2,212],"109":[2,212],"112":[2,212],"116":[1,121],"117":[1,122],"118":[2,212],"125":[2,212],"126":[2,212],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,213],"4":[2,213],"28":[2,213],"29":[2,213],"48":[1,111],"56":[2,213],"59":[1,128],"77":[2,213],"82":[2,213],"92":[2,213],"97":[2,213],"105":[2,213],"106":126,"107":[2,213],"108":[2,213],"109":[2,213],"112":[2,213],"116":[1,121],"117":[1,122],"118":[2,213],"125":[2,213],"126":[2,213],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"8":281,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":282,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,169],"4":[2,169],"28":[2,169],"29":[2,169],"48":[1,111],"56":[2,169],"59":[1,128],"77":[2,169],"82":[2,169],"92":[2,169],"97":[2,169],"105":[2,169],"106":126,"107":[1,77],"108":[2,169],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,169],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,171],"4":[2,171],"28":[2,171],"29":[2,171],"48":[1,111],"56":[2,171],"59":[1,128],"77":[2,171],"82":[2,171],"92":[2,171],"97":[2,171],"105":[2,171],"106":126,"107":[1,77],"108":[2,171],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,171],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"114":283,"116":[1,259],"117":[1,260]},{"59":[1,284]},{"1":[2,168],"4":[2,168],"28":[2,168],"29":[2,168],"48":[1,111],"56":[2,168],"59":[1,128],"77":[2,168],"82":[2,168],"92":[2,168],"97":[2,168],"105":[2,168],"106":126,"107":[1,77],"108":[2,168],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,168],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,170],"4":[2,170],"28":[2,170],"29":[2,170],"48":[1,111],"56":[2,170],"59":[1,128],"77":[2,170],"82":[2,170],"92":[2,170],"97":[2,170],"105":[2,170],"106":126,"107":[1,77],"108":[2,170],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,170],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"114":285,"116":[1,259],"117":[1,260]},{"4":[2,54],"28":[2,54],"55":286,"56":[1,272],"92":[2,54]},{"4":[2,117],"28":[2,117],"29":[2,117],"48":[1,111],"56":[2,117],"59":[1,128],"92":[2,117],"97":[2,117],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,75],"4":[2,75],"28":[2,75],"29":[2,75],"45":[2,75],"48":[2,75],"56":[2,75],"59":[2,75],"70":[2,75],"71":[2,75],"72":[2,75],"73":[2,75],"76":[2,75],"77":[2,75],"78":[2,75],"79":[2,75],"82":[2,75],"84":[2,75],"90":[2,75],"92":[2,75],"97":[2,75],"105":[2,75],"107":[2,75],"108":[2,75],"109":[2,75],"112":[2,75],"116":[2,75],"117":[2,75],"118":[2,75],"125":[2,75],"126":[2,75],"127":[2,75],"129":[2,75],"130":[2,75],"132":[2,75],"133":[2,75],"136":[2,75],"137":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75]},{"1":[2,76],"4":[2,76],"28":[2,76],"29":[2,76],"45":[2,76],"48":[2,76],"56":[2,76],"59":[2,76],"70":[2,76],"71":[2,76],"72":[2,76],"73":[2,76],"76":[2,76],"77":[2,76],"78":[2,76],"79":[2,76],"82":[2,76],"84":[2,76],"90":[2,76],"92":[2,76],"97":[2,76],"105":[2,76],"107":[2,76],"108":[2,76],"109":[2,76],"112":[2,76],"116":[2,76],"117":[2,76],"118":[2,76],"125":[2,76],"126":[2,76],"127":[2,76],"129":[2,76],"130":[2,76],"132":[2,76],"133":[2,76],"136":[2,76],"137":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76]},{"1":[2,78],"4":[2,78],"28":[2,78],"29":[2,78],"45":[2,78],"48":[2,78],"56":[2,78],"59":[2,78],"70":[2,78],"71":[2,78],"72":[2,78],"73":[2,78],"76":[2,78],"77":[2,78],"78":[2,78],"79":[2,78],"82":[2,78],"84":[2,78],"90":[2,78],"92":[2,78],"97":[2,78],"105":[2,78],"107":[2,78],"108":[2,78],"109":[2,78],"112":[2,78],"116":[2,78],"117":[2,78],"118":[2,78],"125":[2,78],"126":[2,78],"127":[2,78],"129":[2,78],"130":[2,78],"132":[2,78],"133":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78],"151":[2,78],"152":[2,78],"153":[2,78],"154":[2,78],"155":[2,78],"156":[2,78],"157":[2,78],"158":[2,78],"159":[2,78],"160":[2,78],"161":[2,78]},{"48":[1,111],"59":[1,288],"77":[1,287],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,82],"4":[2,82],"28":[2,82],"29":[2,82],"45":[2,82],"48":[2,82],"56":[2,82],"59":[2,82],"70":[2,82],"71":[2,82],"72":[2,82],"73":[2,82],"76":[2,82],"77":[2,82],"78":[2,82],"79":[2,82],"82":[2,82],"84":[2,82],"90":[2,82],"92":[2,82],"97":[2,82],"105":[2,82],"107":[2,82],"108":[2,82],"109":[2,82],"112":[2,82],"116":[2,82],"117":[2,82],"118":[2,82],"125":[2,82],"126":[2,82],"127":[2,82],"129":[2,82],"130":[2,82],"132":[2,82],"133":[2,82],"136":[2,82],"137":[2,82],"138":[2,82],"139":[2,82],"140":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82],"151":[2,82],"152":[2,82],"153":[2,82],"154":[2,82],"155":[2,82],"156":[2,82],"157":[2,82],"158":[2,82],"159":[2,82],"160":[2,82],"161":[2,82]},{"8":289,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,83],"4":[2,83],"28":[2,83],"29":[2,83],"45":[2,83],"48":[2,83],"56":[2,83],"59":[2,83],"70":[2,83],"71":[2,83],"72":[2,83],"73":[2,83],"76":[2,83],"77":[2,83],"78":[2,83],"79":[2,83],"82":[2,83],"84":[2,83],"90":[2,83],"92":[2,83],"97":[2,83],"105":[2,83],"107":[2,83],"108":[2,83],"109":[2,83],"112":[2,83],"116":[2,83],"117":[2,83],"118":[2,83],"125":[2,83],"126":[2,83],"127":[2,83],"129":[2,83],"130":[2,83],"132":[2,83],"133":[2,83],"136":[2,83],"137":[2,83],"138":[2,83],"139":[2,83],"140":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83],"151":[2,83],"152":[2,83],"153":[2,83],"154":[2,83],"155":[2,83],"156":[2,83],"157":[2,83],"158":[2,83],"159":[2,83],"160":[2,83],"161":[2,83]},{"1":[2,42],"4":[2,42],"28":[2,42],"29":[2,42],"48":[1,111],"56":[2,42],"59":[1,128],"77":[2,42],"82":[2,42],"92":[2,42],"97":[2,42],"105":[2,42],"106":126,"107":[1,77],"108":[2,42],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,42],"125":[2,42],"126":[2,42],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"52":290,"53":[1,73],"54":[1,74]},{"57":291,"58":[1,154]},{"59":[1,292]},{"8":293,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,166],"4":[2,166],"28":[2,166],"29":[2,166],"48":[2,166],"56":[2,166],"59":[2,166],"77":[2,166],"82":[2,166],"92":[2,166],"97":[2,166],"105":[2,166],"107":[2,166],"108":[2,166],"109":[2,166],"112":[2,166],"116":[2,166],"117":[2,166],"118":[2,166],"121":[2,166],"125":[2,166],"126":[2,166],"127":[2,166],"129":[2,166],"130":[2,166],"132":[2,166],"133":[2,166],"136":[2,166],"137":[2,166],"138":[2,166],"139":[2,166],"140":[2,166],"141":[2,166],"142":[2,166],"143":[2,166],"144":[2,166],"145":[2,166],"146":[2,166],"147":[2,166],"148":[2,166],"149":[2,166],"150":[2,166],"151":[2,166],"152":[2,166],"153":[2,166],"154":[2,166],"155":[2,166],"156":[2,166],"157":[2,166],"158":[2,166],"159":[2,166],"160":[2,166],"161":[2,166]},{"1":[2,123],"4":[2,123],"28":[2,123],"29":[2,123],"48":[2,123],"56":[2,123],"59":[2,123],"77":[2,123],"82":[2,123],"92":[2,123],"97":[2,123],"101":[1,294],"105":[2,123],"107":[2,123],"108":[2,123],"109":[2,123],"112":[2,123],"116":[2,123],"117":[2,123],"118":[2,123],"125":[2,123],"126":[2,123],"127":[2,123],"129":[2,123],"130":[2,123],"132":[2,123],"133":[2,123],"136":[2,123],"137":[2,123],"138":[2,123],"139":[2,123],"140":[2,123],"141":[2,123],"142":[2,123],"143":[2,123],"144":[2,123],"145":[2,123],"146":[2,123],"147":[2,123],"148":[2,123],"149":[2,123],"150":[2,123],"151":[2,123],"152":[2,123],"153":[2,123],"154":[2,123],"155":[2,123],"156":[2,123],"157":[2,123],"158":[2,123],"159":[2,123],"160":[2,123],"161":[2,123]},{"6":295,"28":[1,6]},{"30":296,"31":[1,85]},{"6":297,"28":[1,6]},{"8":298,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":299,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"115":300},{"120":301,"122":264,"123":[1,265]},{"29":[1,302],"121":[1,303],"122":304,"123":[1,265]},{"29":[2,159],"121":[2,159],"123":[2,159]},{"8":306,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"98":305,"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,103],"4":[2,103],"28":[2,103],"29":[2,103],"48":[2,103],"56":[2,103],"59":[2,103],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,103],"78":[1,143],"79":[1,144],"82":[2,103],"89":133,"90":[1,135],"92":[2,103],"97":[2,103],"105":[2,103],"107":[2,103],"108":[2,103],"109":[2,103],"112":[2,103],"116":[2,103],"117":[2,103],"118":[2,103],"125":[2,103],"126":[2,103],"127":[2,103],"129":[2,103],"130":[2,103],"132":[2,103],"133":[2,103],"136":[2,103],"137":[2,103],"138":[2,103],"139":[2,103],"140":[2,103],"141":[2,103],"142":[2,103],"143":[2,103],"144":[2,103],"145":[2,103],"146":[2,103],"147":[2,103],"148":[2,103],"149":[2,103],"150":[2,103],"151":[2,103],"152":[2,103],"153":[2,103],"154":[2,103],"155":[2,103],"156":[2,103],"157":[2,103],"158":[2,103],"159":[2,103],"160":[2,103],"161":[2,103]},{"14":307,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":151,"62":180,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"4":[2,96],"29":[2,96],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":310,"63":311,"85":308,"86":309,"95":[1,312]},{"1":[2,129],"4":[2,129],"28":[2,129],"29":[2,129],"48":[2,129],"56":[2,129],"59":[2,129],"70":[2,129],"71":[2,129],"72":[2,129],"73":[2,129],"76":[2,129],"77":[2,129],"78":[2,129],"79":[2,129],"82":[2,129],"90":[2,129],"92":[2,129],"97":[2,129],"105":[2,129],"107":[2,129],"108":[2,129],"109":[2,129],"112":[2,129],"116":[2,129],"117":[2,129],"118":[2,129],"125":[2,129],"126":[2,129],"127":[2,129],"129":[2,129],"130":[2,129],"132":[2,129],"133":[2,129],"136":[2,129],"137":[2,129],"138":[2,129],"139":[2,129],"140":[2,129],"141":[2,129],"142":[2,129],"143":[2,129],"144":[2,129],"145":[2,129],"146":[2,129],"147":[2,129],"148":[2,129],"149":[2,129],"150":[2,129],"151":[2,129],"152":[2,129],"153":[2,129],"154":[2,129],"155":[2,129],"156":[2,129],"157":[2,129],"158":[2,129],"159":[2,129],"160":[2,129],"161":[2,129]},{"59":[1,313]},{"4":[1,315],"28":[1,316],"97":[1,314]},{"4":[2,55],"8":317,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,55],"29":[2,55],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"92":[2,55],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,55],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,163],"4":[2,163],"28":[2,163],"29":[2,163],"48":[2,163],"56":[2,163],"59":[2,163],"77":[2,163],"82":[2,163],"92":[2,163],"97":[2,163],"105":[2,163],"107":[2,163],"108":[2,163],"109":[2,163],"112":[2,163],"116":[2,163],"117":[2,163],"118":[2,163],"121":[2,163],"125":[2,163],"126":[2,163],"127":[2,163],"129":[2,163],"130":[2,163],"132":[2,163],"133":[2,163],"136":[2,163],"137":[2,163],"138":[2,163],"139":[2,163],"140":[2,163],"141":[2,163],"142":[2,163],"143":[2,163],"144":[2,163],"145":[2,163],"146":[2,163],"147":[2,163],"148":[2,163],"149":[2,163],"150":[2,163],"151":[2,163],"152":[2,163],"153":[2,163],"154":[2,163],"155":[2,163],"156":[2,163],"157":[2,163],"158":[2,163],"159":[2,163],"160":[2,163],"161":[2,163]},{"1":[2,164],"4":[2,164],"28":[2,164],"29":[2,164],"48":[2,164],"56":[2,164],"59":[2,164],"77":[2,164],"82":[2,164],"92":[2,164],"97":[2,164],"105":[2,164],"107":[2,164],"108":[2,164],"109":[2,164],"112":[2,164],"116":[2,164],"117":[2,164],"118":[2,164],"121":[2,164],"125":[2,164],"126":[2,164],"127":[2,164],"129":[2,164],"130":[2,164],"132":[2,164],"133":[2,164],"136":[2,164],"137":[2,164],"138":[2,164],"139":[2,164],"140":[2,164],"141":[2,164],"142":[2,164],"143":[2,164],"144":[2,164],"145":[2,164],"146":[2,164],"147":[2,164],"148":[2,164],"149":[2,164],"150":[2,164],"151":[2,164],"152":[2,164],"153":[2,164],"154":[2,164],"155":[2,164],"156":[2,164],"157":[2,164],"158":[2,164],"159":[2,164],"160":[2,164],"161":[2,164]},{"8":318,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":319,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[1,321],"28":[1,322],"82":[1,320]},{"4":[2,55],"28":[2,55],"29":[2,55],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":323,"82":[2,55]},{"8":324,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":325,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,214],"4":[2,214],"28":[2,214],"29":[2,214],"48":[1,111],"56":[2,214],"59":[2,214],"77":[2,214],"82":[2,214],"92":[2,214],"97":[2,214],"105":[2,214],"106":126,"107":[2,214],"108":[2,214],"109":[2,214],"112":[2,214],"116":[2,214],"117":[2,214],"118":[2,214],"125":[2,214],"126":[2,214],"129":[2,214],"130":[2,214],"136":[2,214],"137":[2,214],"138":[2,214],"139":[2,214],"140":[2,214],"141":[2,214],"142":[2,214],"143":[2,214],"144":[2,214],"145":[2,214],"146":[2,214],"147":[2,214],"148":[2,214],"149":[2,214],"150":[2,214],"151":[2,214],"152":[2,214],"153":[2,214],"154":[2,214],"155":[2,214],"156":[2,214],"157":[2,214],"158":[2,214],"159":[2,214],"160":[2,214],"161":[2,214]},{"1":[2,215],"4":[2,215],"28":[2,215],"29":[2,215],"48":[1,111],"56":[2,215],"59":[2,215],"77":[2,215],"82":[2,215],"92":[2,215],"97":[2,215],"105":[2,215],"106":126,"107":[2,215],"108":[2,215],"109":[2,215],"112":[2,215],"116":[2,215],"117":[2,215],"118":[2,215],"125":[2,215],"126":[2,215],"129":[2,215],"130":[2,215],"136":[2,215],"137":[2,215],"138":[2,215],"139":[2,215],"140":[2,215],"141":[2,215],"142":[2,215],"143":[2,215],"144":[2,215],"145":[2,215],"146":[2,215],"147":[2,215],"148":[2,215],"149":[2,215],"150":[2,215],"151":[2,215],"152":[2,215],"153":[2,215],"154":[2,215],"155":[2,215],"156":[2,215],"157":[2,215],"158":[2,215],"159":[2,215],"160":[2,215],"161":[2,215]},{"1":[2,141],"4":[2,141],"28":[2,141],"29":[2,141],"48":[2,141],"56":[2,141],"59":[2,141],"77":[2,141],"82":[2,141],"92":[2,141],"97":[2,141],"105":[2,141],"107":[2,141],"108":[2,141],"109":[2,141],"112":[2,141],"116":[2,141],"117":[2,141],"118":[2,141],"125":[2,141],"126":[2,141],"127":[2,141],"129":[2,141],"130":[2,141],"132":[2,141],"133":[2,141],"136":[2,141],"137":[2,141],"138":[2,141],"139":[2,141],"140":[2,141],"141":[2,141],"142":[2,141],"143":[2,141],"144":[2,141],"145":[2,141],"146":[2,141],"147":[2,141],"148":[2,141],"149":[2,141],"150":[2,141],"151":[2,141],"152":[2,141],"153":[2,141],"154":[2,141],"155":[2,141],"156":[2,141],"157":[2,141],"158":[2,141],"159":[2,141],"160":[2,141],"161":[2,141]},{"1":[2,61],"4":[2,61],"28":[2,61],"29":[2,61],"48":[2,61],"56":[2,61],"59":[2,61],"77":[2,61],"82":[2,61],"92":[2,61],"97":[2,61],"105":[2,61],"107":[2,61],"108":[2,61],"109":[2,61],"112":[2,61],"116":[2,61],"117":[2,61],"118":[2,61],"125":[2,61],"126":[2,61],"127":[2,61],"129":[2,61],"130":[2,61],"132":[2,61],"133":[2,61],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61],"161":[2,61]},{"1":[2,140],"4":[2,140],"28":[2,140],"29":[2,140],"48":[2,140],"56":[2,140],"59":[2,140],"77":[2,140],"82":[2,140],"92":[2,140],"97":[2,140],"105":[2,140],"107":[2,140],"108":[2,140],"109":[2,140],"112":[2,140],"116":[2,140],"117":[2,140],"118":[2,140],"125":[2,140],"126":[2,140],"127":[2,140],"129":[2,140],"130":[2,140],"132":[2,140],"133":[2,140],"136":[2,140],"137":[2,140],"138":[2,140],"139":[2,140],"140":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140],"148":[2,140],"149":[2,140],"150":[2,140],"151":[2,140],"152":[2,140],"153":[2,140],"154":[2,140],"155":[2,140],"156":[2,140],"157":[2,140],"158":[2,140],"159":[2,140],"160":[2,140],"161":[2,140]},{"4":[1,315],"28":[1,316],"92":[1,326]},{"1":[2,81],"4":[2,81],"28":[2,81],"29":[2,81],"45":[2,81],"48":[2,81],"56":[2,81],"59":[2,81],"70":[2,81],"71":[2,81],"72":[2,81],"73":[2,81],"76":[2,81],"77":[2,81],"78":[2,81],"79":[2,81],"82":[2,81],"84":[2,81],"90":[2,81],"92":[2,81],"97":[2,81],"105":[2,81],"107":[2,81],"108":[2,81],"109":[2,81],"112":[2,81],"116":[2,81],"117":[2,81],"118":[2,81],"125":[2,81],"126":[2,81],"127":[2,81],"129":[2,81],"130":[2,81],"132":[2,81],"133":[2,81],"136":[2,81],"137":[2,81],"138":[2,81],"139":[2,81],"140":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81],"151":[2,81],"152":[2,81],"153":[2,81],"154":[2,81],"155":[2,81],"156":[2,81],"157":[2,81],"158":[2,81],"159":[2,81],"160":[2,81],"161":[2,81]},{"59":[1,327]},{"48":[1,111],"59":[1,128],"77":[1,287],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"6":328,"28":[1,6]},{"51":[2,58],"56":[2,58],"59":[1,252]},{"59":[1,329]},{"6":330,"28":[1,6],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"6":331,"28":[1,6]},{"1":[2,124],"4":[2,124],"28":[2,124],"29":[2,124],"48":[2,124],"56":[2,124],"59":[2,124],"77":[2,124],"82":[2,124],"92":[2,124],"97":[2,124],"105":[2,124],"107":[2,124],"108":[2,124],"109":[2,124],"112":[2,124],"116":[2,124],"117":[2,124],"118":[2,124],"125":[2,124],"126":[2,124],"127":[2,124],"129":[2,124],"130":[2,124],"132":[2,124],"133":[2,124],"136":[2,124],"137":[2,124],"138":[2,124],"139":[2,124],"140":[2,124],"141":[2,124],"142":[2,124],"143":[2,124],"144":[2,124],"145":[2,124],"146":[2,124],"147":[2,124],"148":[2,124],"149":[2,124],"150":[2,124],"151":[2,124],"152":[2,124],"153":[2,124],"154":[2,124],"155":[2,124],"156":[2,124],"157":[2,124],"158":[2,124],"159":[2,124],"160":[2,124],"161":[2,124]},{"4":[1,333],"6":332,"28":[1,6]},{"1":[2,142],"4":[2,142],"28":[2,142],"29":[2,142],"48":[2,142],"56":[2,142],"59":[2,142],"77":[2,142],"82":[2,142],"92":[2,142],"97":[2,142],"105":[2,142],"107":[2,142],"108":[2,142],"109":[2,142],"112":[2,142],"116":[2,142],"117":[2,142],"118":[2,142],"125":[2,142],"126":[2,142],"127":[2,142],"129":[2,142],"130":[2,142],"132":[2,142],"133":[2,142],"136":[2,142],"137":[2,142],"138":[2,142],"139":[2,142],"140":[2,142],"141":[2,142],"142":[2,142],"143":[2,142],"144":[2,142],"145":[2,142],"146":[2,142],"147":[2,142],"148":[2,142],"149":[2,142],"150":[2,142],"151":[2,142],"152":[2,142],"153":[2,142],"154":[2,142],"155":[2,142],"156":[2,142],"157":[2,142],"158":[2,142],"159":[2,142],"160":[2,142],"161":[2,142]},{"1":[2,148],"4":[2,148],"28":[2,148],"29":[2,148],"48":[1,111],"56":[2,148],"59":[1,128],"77":[2,148],"82":[2,148],"92":[2,148],"97":[2,148],"105":[2,148],"106":126,"107":[2,148],"108":[1,334],"109":[2,148],"112":[2,148],"116":[1,121],"117":[1,122],"118":[1,335],"125":[2,148],"126":[2,148],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,149],"4":[2,149],"28":[2,149],"29":[2,149],"48":[1,111],"56":[2,149],"59":[1,128],"77":[2,149],"82":[2,149],"92":[2,149],"97":[2,149],"105":[2,149],"106":126,"107":[2,149],"108":[1,336],"109":[2,149],"112":[2,149],"116":[1,121],"117":[1,122],"118":[2,149],"125":[2,149],"126":[2,149],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"116":[2,147],"117":[2,147]},{"29":[1,337],"121":[1,338],"122":304,"123":[1,265]},{"1":[2,157],"4":[2,157],"28":[2,157],"29":[2,157],"48":[2,157],"56":[2,157],"59":[2,157],"77":[2,157],"82":[2,157],"92":[2,157],"97":[2,157],"105":[2,157],"107":[2,157],"108":[2,157],"109":[2,157],"112":[2,157],"116":[2,157],"117":[2,157],"118":[2,157],"125":[2,157],"126":[2,157],"127":[2,157],"129":[2,157],"130":[2,157],"132":[2,157],"133":[2,157],"136":[2,157],"137":[2,157],"138":[2,157],"139":[2,157],"140":[2,157],"141":[2,157],"142":[2,157],"143":[2,157],"144":[2,157],"145":[2,157],"146":[2,157],"147":[2,157],"148":[2,157],"149":[2,157],"150":[2,157],"151":[2,157],"152":[2,157],"153":[2,157],"154":[2,157],"155":[2,157],"156":[2,157],"157":[2,157],"158":[2,157],"159":[2,157],"160":[2,157],"161":[2,157]},{"6":339,"28":[1,6]},{"29":[2,160],"121":[2,160],"123":[2,160]},{"6":340,"28":[1,6],"56":[1,341]},{"28":[2,121],"48":[1,111],"56":[2,121],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,91],"4":[2,91],"28":[1,342],"29":[2,91],"48":[2,91],"56":[2,91],"59":[2,91],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,91],"78":[1,143],"79":[1,144],"82":[2,91],"89":133,"90":[1,135],"92":[2,91],"97":[2,91],"105":[2,91],"107":[2,91],"108":[2,91],"109":[2,91],"112":[2,91],"116":[2,91],"117":[2,91],"118":[2,91],"125":[2,91],"126":[2,91],"127":[2,91],"129":[2,91],"130":[2,91],"132":[2,91],"133":[2,91],"136":[2,91],"137":[2,91],"138":[2,91],"139":[2,91],"140":[2,91],"141":[2,91],"142":[2,91],"143":[2,91],"144":[2,91],"145":[2,91],"146":[2,91],"147":[2,91],"148":[2,91],"149":[2,91],"150":[2,91],"151":[2,91],"152":[2,91],"153":[2,91],"154":[2,91],"155":[2,91],"156":[2,91],"157":[2,91],"158":[2,91],"159":[2,91],"160":[2,91],"161":[2,91]},{"4":[1,344],"29":[1,343]},{"4":[2,97],"29":[2,97]},{"4":[2,94],"29":[2,94]},{"45":[1,345]},{"30":186,"31":[1,85]},{"8":346,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"59":[1,347],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,115],"4":[2,115],"28":[2,115],"29":[2,115],"45":[2,115],"48":[2,115],"56":[2,115],"59":[2,115],"70":[2,115],"71":[2,115],"72":[2,115],"73":[2,115],"76":[2,115],"77":[2,115],"78":[2,115],"79":[2,115],"82":[2,115],"90":[2,115],"92":[2,115],"97":[2,115],"105":[2,115],"107":[2,115],"108":[2,115],"109":[2,115],"112":[2,115],"116":[2,115],"117":[2,115],"118":[2,115],"125":[2,115],"126":[2,115],"127":[2,115],"129":[2,115],"130":[2,115],"132":[2,115],"133":[2,115],"136":[2,115],"137":[2,115],"138":[2,115],"139":[2,115],"140":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"147":[2,115],"148":[2,115],"149":[2,115],"150":[2,115],"151":[2,115],"152":[2,115],"153":[2,115],"154":[2,115],"155":[2,115],"156":[2,115],"157":[2,115],"158":[2,115],"159":[2,115],"160":[2,115],"161":[2,115]},{"8":348,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,116],"8":241,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,116],"29":[2,116],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,116],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"91":349,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,118],"28":[2,118],"29":[2,118],"48":[1,111],"56":[2,118],"59":[1,128],"92":[2,118],"97":[2,118],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,131],"4":[2,131],"28":[2,131],"29":[2,131],"48":[1,111],"56":[2,131],"59":[1,128],"77":[2,131],"82":[2,131],"92":[2,131],"97":[2,131],"105":[2,131],"106":126,"107":[1,77],"108":[2,131],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,131],"125":[2,131],"126":[2,131],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,133],"4":[2,133],"28":[2,133],"29":[2,133],"48":[1,111],"56":[2,133],"59":[1,128],"77":[2,133],"82":[2,133],"92":[2,133],"97":[2,133],"105":[2,133],"106":126,"107":[1,77],"108":[2,133],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,133],"125":[2,133],"126":[2,133],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,84],"4":[2,84],"28":[2,84],"29":[2,84],"45":[2,84],"48":[2,84],"56":[2,84],"59":[2,84],"70":[2,84],"71":[2,84],"72":[2,84],"73":[2,84],"76":[2,84],"77":[2,84],"78":[2,84],"79":[2,84],"82":[2,84],"90":[2,84],"92":[2,84],"97":[2,84],"105":[2,84],"107":[2,84],"108":[2,84],"109":[2,84],"112":[2,84],"116":[2,84],"117":[2,84],"118":[2,84],"125":[2,84],"126":[2,84],"127":[2,84],"129":[2,84],"130":[2,84],"132":[2,84],"133":[2,84],"136":[2,84],"137":[2,84],"138":[2,84],"139":[2,84],"140":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84],"151":[2,84],"152":[2,84],"153":[2,84],"154":[2,84],"155":[2,84],"156":[2,84],"157":[2,84],"158":[2,84],"159":[2,84],"160":[2,84],"161":[2,84]},{"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":350},{"4":[2,85],"28":[2,85],"29":[2,85],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":195,"56":[2,85],"81":351},{"4":[2,87],"28":[2,87],"29":[2,87],"56":[2,87],"82":[2,87]},{"4":[2,45],"28":[2,45],"29":[2,45],"48":[1,111],"56":[2,45],"59":[1,128],"82":[2,45],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,46],"28":[2,46],"29":[2,46],"48":[1,111],"56":[2,46],"59":[1,128],"82":[2,46],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,106],"4":[2,106],"28":[2,106],"29":[2,106],"48":[2,106],"56":[2,106],"59":[2,106],"70":[2,106],"71":[2,106],"72":[2,106],"73":[2,106],"76":[2,106],"77":[2,106],"78":[2,106],"79":[2,106],"82":[2,106],"90":[2,106],"92":[2,106],"97":[2,106],"105":[2,106],"107":[2,106],"108":[2,106],"109":[2,106],"112":[2,106],"116":[2,106],"117":[2,106],"118":[2,106],"125":[2,106],"126":[2,106],"127":[2,106],"129":[2,106],"130":[2,106],"132":[2,106],"133":[2,106],"136":[2,106],"137":[2,106],"138":[2,106],"139":[2,106],"140":[2,106],"141":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"148":[2,106],"149":[2,106],"150":[2,106],"151":[2,106],"152":[2,106],"153":[2,106],"154":[2,106],"155":[2,106],"156":[2,106],"157":[2,106],"158":[2,106],"159":[2,106],"160":[2,106],"161":[2,106]},{"8":352,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"59":[1,353],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,50],"4":[2,50],"28":[2,50],"29":[2,50],"48":[2,50],"56":[2,50],"59":[2,50],"77":[2,50],"82":[2,50],"92":[2,50],"97":[2,50],"105":[2,50],"107":[2,50],"108":[2,50],"109":[2,50],"112":[2,50],"116":[2,50],"117":[2,50],"118":[2,50],"125":[2,50],"126":[2,50],"127":[2,50],"129":[2,50],"130":[2,50],"132":[2,50],"133":[2,50],"136":[2,50],"137":[2,50],"138":[2,50],"139":[2,50],"140":[2,50],"141":[2,50],"142":[2,50],"143":[2,50],"144":[2,50],"145":[2,50],"146":[2,50],"147":[2,50],"148":[2,50],"149":[2,50],"150":[2,50],"151":[2,50],"152":[2,50],"153":[2,50],"154":[2,50],"155":[2,50],"156":[2,50],"157":[2,50],"158":[2,50],"159":[2,50],"160":[2,50],"161":[2,50]},{"51":[2,60],"56":[2,60],"59":[2,60]},{"1":[2,165],"4":[2,165],"28":[2,165],"29":[2,165],"48":[2,165],"56":[2,165],"59":[2,165],"77":[2,165],"82":[2,165],"92":[2,165],"97":[2,165],"105":[2,165],"107":[2,165],"108":[2,165],"109":[2,165],"112":[2,165],"116":[2,165],"117":[2,165],"118":[2,165],"121":[2,165],"125":[2,165],"126":[2,165],"127":[2,165],"129":[2,165],"130":[2,165],"132":[2,165],"133":[2,165],"136":[2,165],"137":[2,165],"138":[2,165],"139":[2,165],"140":[2,165],"141":[2,165],"142":[2,165],"143":[2,165],"144":[2,165],"145":[2,165],"146":[2,165],"147":[2,165],"148":[2,165],"149":[2,165],"150":[2,165],"151":[2,165],"152":[2,165],"153":[2,165],"154":[2,165],"155":[2,165],"156":[2,165],"157":[2,165],"158":[2,165],"159":[2,165],"160":[2,165],"161":[2,165]},{"1":[2,125],"4":[2,125],"28":[2,125],"29":[2,125],"48":[2,125],"56":[2,125],"59":[2,125],"77":[2,125],"82":[2,125],"92":[2,125],"97":[2,125],"105":[2,125],"107":[2,125],"108":[2,125],"109":[2,125],"112":[2,125],"116":[2,125],"117":[2,125],"118":[2,125],"125":[2,125],"126":[2,125],"127":[2,125],"129":[2,125],"130":[2,125],"132":[2,125],"133":[2,125],"136":[2,125],"137":[2,125],"138":[2,125],"139":[2,125],"140":[2,125],"141":[2,125],"142":[2,125],"143":[2,125],"144":[2,125],"145":[2,125],"146":[2,125],"147":[2,125],"148":[2,125],"149":[2,125],"150":[2,125],"151":[2,125],"152":[2,125],"153":[2,125],"154":[2,125],"155":[2,125],"156":[2,125],"157":[2,125],"158":[2,125],"159":[2,125],"160":[2,125],"161":[2,125]},{"1":[2,126],"4":[2,126],"28":[2,126],"29":[2,126],"48":[2,126],"56":[2,126],"59":[2,126],"77":[2,126],"82":[2,126],"92":[2,126],"97":[2,126],"101":[2,126],"105":[2,126],"107":[2,126],"108":[2,126],"109":[2,126],"112":[2,126],"116":[2,126],"117":[2,126],"118":[2,126],"125":[2,126],"126":[2,126],"127":[2,126],"129":[2,126],"130":[2,126],"132":[2,126],"133":[2,126],"136":[2,126],"137":[2,126],"138":[2,126],"139":[2,126],"140":[2,126],"141":[2,126],"142":[2,126],"143":[2,126],"144":[2,126],"145":[2,126],"146":[2,126],"147":[2,126],"148":[2,126],"149":[2,126],"150":[2,126],"151":[2,126],"152":[2,126],"153":[2,126],"154":[2,126],"155":[2,126],"156":[2,126],"157":[2,126],"158":[2,126],"159":[2,126],"160":[2,126],"161":[2,126]},{"1":[2,127],"4":[2,127],"28":[2,127],"29":[2,127],"48":[2,127],"56":[2,127],"59":[2,127],"77":[2,127],"82":[2,127],"92":[2,127],"97":[2,127],"101":[2,127],"105":[2,127],"107":[2,127],"108":[2,127],"109":[2,127],"112":[2,127],"116":[2,127],"117":[2,127],"118":[2,127],"125":[2,127],"126":[2,127],"127":[2,127],"129":[2,127],"130":[2,127],"132":[2,127],"133":[2,127],"136":[2,127],"137":[2,127],"138":[2,127],"139":[2,127],"140":[2,127],"141":[2,127],"142":[2,127],"143":[2,127],"144":[2,127],"145":[2,127],"146":[2,127],"147":[2,127],"148":[2,127],"149":[2,127],"150":[2,127],"151":[2,127],"152":[2,127],"153":[2,127],"154":[2,127],"155":[2,127],"156":[2,127],"157":[2,127],"158":[2,127],"159":[2,127],"160":[2,127],"161":[2,127]},{"8":354,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":355,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":356,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,155],"4":[2,155],"28":[2,155],"29":[2,155],"48":[2,155],"56":[2,155],"59":[2,155],"77":[2,155],"82":[2,155],"92":[2,155],"97":[2,155],"105":[2,155],"107":[2,155],"108":[2,155],"109":[2,155],"112":[2,155],"116":[2,155],"117":[2,155],"118":[2,155],"125":[2,155],"126":[2,155],"127":[2,155],"129":[2,155],"130":[2,155],"132":[2,155],"133":[2,155],"136":[2,155],"137":[2,155],"138":[2,155],"139":[2,155],"140":[2,155],"141":[2,155],"142":[2,155],"143":[2,155],"144":[2,155],"145":[2,155],"146":[2,155],"147":[2,155],"148":[2,155],"149":[2,155],"150":[2,155],"151":[2,155],"152":[2,155],"153":[2,155],"154":[2,155],"155":[2,155],"156":[2,155],"157":[2,155],"158":[2,155],"159":[2,155],"160":[2,155],"161":[2,155]},{"6":357,"28":[1,6]},{"29":[1,358]},{"4":[1,359],"29":[2,161],"121":[2,161],"123":[2,161]},{"8":360,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,96],"29":[2,96],"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":310,"63":311,"85":361,"86":309,"95":[1,312]},{"1":[2,92],"4":[2,92],"28":[2,92],"29":[2,92],"48":[2,92],"56":[2,92],"59":[2,92],"77":[2,92],"82":[2,92],"92":[2,92],"97":[2,92],"105":[2,92],"107":[2,92],"108":[2,92],"109":[2,92],"112":[2,92],"116":[2,92],"117":[2,92],"118":[2,92],"125":[2,92],"126":[2,92],"127":[2,92],"129":[2,92],"130":[2,92],"132":[2,92],"133":[2,92],"136":[2,92],"137":[2,92],"138":[2,92],"139":[2,92],"140":[2,92],"141":[2,92],"142":[2,92],"143":[2,92],"144":[2,92],"145":[2,92],"146":[2,92],"147":[2,92],"148":[2,92],"149":[2,92],"150":[2,92],"151":[2,92],"152":[2,92],"153":[2,92],"154":[2,92],"155":[2,92],"156":[2,92],"157":[2,92],"158":[2,92],"159":[2,92],"160":[2,92],"161":[2,92]},{"30":196,"31":[1,85],"32":197,"33":[1,83],"34":[1,84],"46":310,"63":311,"86":362,"95":[1,312]},{"8":363,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"48":[1,111],"59":[1,128],"97":[1,364],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,61],"8":365,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,61],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"48":[2,61],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,61],"59":[2,61],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,61],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[2,61],"109":[2,61],"110":50,"111":[1,79],"112":[2,61],"116":[2,61],"117":[2,61],"119":[1,52],"124":47,"125":[2,61],"126":[2,61],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61],"161":[2,61]},{"4":[2,119],"28":[2,119],"29":[2,119],"48":[1,111],"56":[2,119],"59":[1,128],"92":[2,119],"97":[2,119],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,54],"28":[2,54],"29":[2,54],"55":366,"56":[1,272]},{"4":[2,88],"28":[2,88],"29":[2,88],"56":[2,88],"82":[2,88]},{"4":[2,54],"28":[2,54],"29":[2,54],"55":367,"56":[1,278]},{"48":[1,111],"59":[1,128],"77":[1,368],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"8":369,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"48":[2,61],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"59":[2,61],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"77":[2,61],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[2,61],"109":[2,61],"110":50,"111":[1,79],"112":[2,61],"116":[2,61],"117":[2,61],"119":[1,52],"124":47,"125":[2,61],"126":[2,61],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61],"161":[2,61]},{"1":[2,150],"4":[2,150],"28":[2,150],"29":[2,150],"48":[1,111],"56":[2,150],"59":[1,128],"77":[2,150],"82":[2,150],"92":[2,150],"97":[2,150],"105":[2,150],"106":126,"107":[2,150],"108":[2,150],"109":[2,150],"112":[2,150],"116":[1,121],"117":[1,122],"118":[1,370],"125":[2,150],"126":[2,150],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,152],"4":[2,152],"28":[2,152],"29":[2,152],"48":[1,111],"56":[2,152],"59":[1,128],"77":[2,152],"82":[2,152],"92":[2,152],"97":[2,152],"105":[2,152],"106":126,"107":[2,152],"108":[1,371],"109":[2,152],"112":[2,152],"116":[1,121],"117":[1,122],"118":[2,152],"125":[2,152],"126":[2,152],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,151],"4":[2,151],"28":[2,151],"29":[2,151],"48":[1,111],"56":[2,151],"59":[1,128],"77":[2,151],"82":[2,151],"92":[2,151],"97":[2,151],"105":[2,151],"106":126,"107":[2,151],"108":[2,151],"109":[2,151],"112":[2,151],"116":[1,121],"117":[1,122],"118":[2,151],"125":[2,151],"126":[2,151],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"29":[1,372]},{"1":[2,158],"4":[2,158],"28":[2,158],"29":[2,158],"48":[2,158],"56":[2,158],"59":[2,158],"77":[2,158],"82":[2,158],"92":[2,158],"97":[2,158],"105":[2,158],"107":[2,158],"108":[2,158],"109":[2,158],"112":[2,158],"116":[2,158],"117":[2,158],"118":[2,158],"125":[2,158],"126":[2,158],"127":[2,158],"129":[2,158],"130":[2,158],"132":[2,158],"133":[2,158],"136":[2,158],"137":[2,158],"138":[2,158],"139":[2,158],"140":[2,158],"141":[2,158],"142":[2,158],"143":[2,158],"144":[2,158],"145":[2,158],"146":[2,158],"147":[2,158],"148":[2,158],"149":[2,158],"150":[2,158],"151":[2,158],"152":[2,158],"153":[2,158],"154":[2,158],"155":[2,158],"156":[2,158],"157":[2,158],"158":[2,158],"159":[2,158],"160":[2,158],"161":[2,158]},{"29":[2,162],"121":[2,162],"123":[2,162]},{"28":[2,122],"48":[1,111],"56":[2,122],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[1,344],"29":[1,373]},{"4":[2,98],"29":[2,98]},{"4":[2,95],"29":[2,95],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,111],"4":[2,111],"28":[2,111],"29":[2,111],"48":[2,111],"56":[2,111],"59":[2,111],"70":[2,111],"71":[2,111],"72":[2,111],"73":[2,111],"76":[2,111],"77":[2,111],"78":[2,111],"79":[2,111],"82":[2,111],"90":[2,111],"92":[2,111],"97":[2,111],"105":[2,111],"107":[2,111],"108":[2,111],"109":[2,111],"112":[2,111],"116":[2,111],"117":[2,111],"118":[2,111],"125":[2,111],"126":[2,111],"127":[2,111],"129":[2,111],"130":[2,111],"132":[2,111],"133":[2,111],"136":[2,111],"137":[2,111],"138":[2,111],"139":[2,111],"140":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"147":[2,111],"148":[2,111],"149":[2,111],"150":[2,111],"151":[2,111],"152":[2,111],"153":[2,111],"154":[2,111],"155":[2,111],"156":[2,111],"157":[2,111],"158":[2,111],"159":[2,111],"160":[2,111],"161":[2,111]},{"48":[1,111],"59":[1,128],"97":[1,374],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[1,315],"28":[1,316],"29":[1,375]},{"4":[1,321],"28":[1,322],"29":[1,376]},{"1":[2,113],"4":[2,113],"28":[2,113],"29":[2,113],"45":[2,113],"48":[2,113],"56":[2,113],"59":[2,113],"70":[2,113],"71":[2,113],"72":[2,113],"73":[2,113],"76":[2,113],"77":[2,113],"78":[2,113],"79":[2,113],"82":[2,113],"84":[2,113],"90":[2,113],"92":[2,113],"97":[2,113],"105":[2,113],"107":[2,113],"108":[2,113],"109":[2,113],"112":[2,113],"116":[2,113],"117":[2,113],"118":[2,113],"125":[2,113],"126":[2,113],"127":[2,113],"129":[2,113],"130":[2,113],"132":[2,113],"133":[2,113],"136":[2,113],"137":[2,113],"138":[2,113],"139":[2,113],"140":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"147":[2,113],"148":[2,113],"149":[2,113],"150":[2,113],"151":[2,113],"152":[2,113],"153":[2,113],"154":[2,113],"155":[2,113],"156":[2,113],"157":[2,113],"158":[2,113],"159":[2,113],"160":[2,113],"161":[2,113]},{"48":[1,111],"59":[1,128],"77":[1,377],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"8":378,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":379,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":34,"88":[1,35],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,156],"4":[2,156],"28":[2,156],"29":[2,156],"48":[2,156],"56":[2,156],"59":[2,156],"77":[2,156],"82":[2,156],"92":[2,156],"97":[2,156],"105":[2,156],"107":[2,156],"108":[2,156],"109":[2,156],"112":[2,156],"116":[2,156],"117":[2,156],"118":[2,156],"125":[2,156],"126":[2,156],"127":[2,156],"129":[2,156],"130":[2,156],"132":[2,156],"133":[2,156],"136":[2,156],"137":[2,156],"138":[2,156],"139":[2,156],"140":[2,156],"141":[2,156],"142":[2,156],"143":[2,156],"144":[2,156],"145":[2,156],"146":[2,156],"147":[2,156],"148":[2,156],"149":[2,156],"150":[2,156],"151":[2,156],"152":[2,156],"153":[2,156],"154":[2,156],"155":[2,156],"156":[2,156],"157":[2,156],"158":[2,156],"159":[2,156],"160":[2,156],"161":[2,156]},{"1":[2,93],"4":[2,93],"28":[2,93],"29":[2,93],"48":[2,93],"56":[2,93],"59":[2,93],"77":[2,93],"82":[2,93],"92":[2,93],"97":[2,93],"105":[2,93],"107":[2,93],"108":[2,93],"109":[2,93],"112":[2,93],"116":[2,93],"117":[2,93],"118":[2,93],"125":[2,93],"126":[2,93],"127":[2,93],"129":[2,93],"130":[2,93],"132":[2,93],"133":[2,93],"136":[2,93],"137":[2,93],"138":[2,93],"139":[2,93],"140":[2,93],"141":[2,93],"142":[2,93],"143":[2,93],"144":[2,93],"145":[2,93],"146":[2,93],"147":[2,93],"148":[2,93],"149":[2,93],"150":[2,93],"151":[2,93],"152":[2,93],"153":[2,93],"154":[2,93],"155":[2,93],"156":[2,93],"157":[2,93],"158":[2,93],"159":[2,93],"160":[2,93],"161":[2,93]},{"1":[2,112],"4":[2,112],"28":[2,112],"29":[2,112],"48":[2,112],"56":[2,112],"59":[2,112],"70":[2,112],"71":[2,112],"72":[2,112],"73":[2,112],"76":[2,112],"77":[2,112],"78":[2,112],"79":[2,112],"82":[2,112],"90":[2,112],"92":[2,112],"97":[2,112],"105":[2,112],"107":[2,112],"108":[2,112],"109":[2,112],"112":[2,112],"116":[2,112],"117":[2,112],"118":[2,112],"125":[2,112],"126":[2,112],"127":[2,112],"129":[2,112],"130":[2,112],"132":[2,112],"133":[2,112],"136":[2,112],"137":[2,112],"138":[2,112],"139":[2,112],"140":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"147":[2,112],"148":[2,112],"149":[2,112],"150":[2,112],"151":[2,112],"152":[2,112],"153":[2,112],"154":[2,112],"155":[2,112],"156":[2,112],"157":[2,112],"158":[2,112],"159":[2,112],"160":[2,112],"161":[2,112]},{"4":[2,120],"28":[2,120],"29":[2,120],"56":[2,120],"92":[2,120],"97":[2,120]},{"4":[2,89],"28":[2,89],"29":[2,89],"56":[2,89],"82":[2,89]},{"1":[2,114],"4":[2,114],"28":[2,114],"29":[2,114],"45":[2,114],"48":[2,114],"56":[2,114],"59":[2,114],"70":[2,114],"71":[2,114],"72":[2,114],"73":[2,114],"76":[2,114],"77":[2,114],"78":[2,114],"79":[2,114],"82":[2,114],"84":[2,114],"90":[2,114],"92":[2,114],"97":[2,114],"105":[2,114],"107":[2,114],"108":[2,114],"109":[2,114],"112":[2,114],"116":[2,114],"117":[2,114],"118":[2,114],"125":[2,114],"126":[2,114],"127":[2,114],"129":[2,114],"130":[2,114],"132":[2,114],"133":[2,114],"136":[2,114],"137":[2,114],"138":[2,114],"139":[2,114],"140":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"147":[2,114],"148":[2,114],"149":[2,114],"150":[2,114],"151":[2,114],"152":[2,114],"153":[2,114],"154":[2,114],"155":[2,114],"156":[2,114],"157":[2,114],"158":[2,114],"159":[2,114],"160":[2,114],"161":[2,114]},{"1":[2,153],"4":[2,153],"28":[2,153],"29":[2,153],"48":[1,111],"56":[2,153],"59":[1,128],"77":[2,153],"82":[2,153],"92":[2,153],"97":[2,153],"105":[2,153],"106":126,"107":[2,153],"108":[2,153],"109":[2,153],"112":[2,153],"116":[1,121],"117":[1,122],"118":[2,153],"125":[2,153],"126":[2,153],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,154],"4":[2,154],"28":[2,154],"29":[2,154],"48":[1,111],"56":[2,154],"59":[1,128],"77":[2,154],"82":[2,154],"92":[2,154],"97":[2,154],"105":[2,154],"106":126,"107":[2,154],"108":[2,154],"109":[2,154],"112":[2,154],"116":[1,121],"117":[1,122],"118":[2,154],"125":[2,154],"126":[2,154],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]}], -defaultActions: {"2":[2,2],"73":[2,52],"74":[2,53],"87":[2,4]}, +table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[3]},{"1":[2,2],"28":88,"49":[1,56]},{"1":[2,3],"4":[1,89]},{"4":[1,90]},{"1":[2,5],"4":[2,5],"30":[2,5]},{"5":91,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[1,92],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,8],"4":[2,8],"30":[2,8],"50":[1,114],"61":[1,131],"107":[2,8],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,9],"4":[2,9],"30":[2,9],"107":[2,9],"108":134,"109":[1,79],"111":[1,80],"114":[1,135],"127":[1,132],"128":[1,133]},{"1":[2,14],"4":[2,14],"29":[2,14],"30":[2,14],"50":[2,14],"58":[2,14],"61":[2,14],"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,14],"80":[1,146],"81":[1,147],"84":[2,14],"91":136,"92":[1,138],"94":[2,14],"99":[2,14],"107":[2,14],"109":[2,14],"110":[2,14],"111":[2,14],"114":[2,14],"118":[2,14],"119":[2,14],"120":[2,14],"127":[2,14],"128":[2,14],"129":[2,14],"131":[2,14],"132":[2,14],"134":[2,14],"135":[2,14],"138":[2,14],"139":[2,14],"140":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[2,14],"148":[2,14],"149":[2,14],"150":[2,14],"151":[2,14],"152":[2,14],"153":[2,14],"154":[2,14],"155":[2,14],"156":[2,14],"157":[2,14],"158":[2,14],"159":[2,14],"160":[2,14],"161":[2,14],"162":[2,14],"163":[2,14]},{"1":[2,15],"4":[2,15],"29":[2,15],"30":[2,15],"50":[2,15],"58":[2,15],"61":[2,15],"79":[2,15],"84":[2,15],"94":[2,15],"99":[2,15],"107":[2,15],"109":[2,15],"110":[2,15],"111":[2,15],"114":[2,15],"118":[2,15],"119":[2,15],"120":[2,15],"127":[2,15],"128":[2,15],"129":[2,15],"131":[2,15],"132":[2,15],"134":[2,15],"135":[2,15],"138":[2,15],"139":[2,15],"140":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[2,15],"149":[2,15],"150":[2,15],"151":[2,15],"152":[2,15],"153":[2,15],"154":[2,15],"155":[2,15],"156":[2,15],"157":[2,15],"158":[2,15],"159":[2,15],"160":[2,15],"161":[2,15],"162":[2,15],"163":[2,15]},{"1":[2,16],"4":[2,16],"29":[2,16],"30":[2,16],"50":[2,16],"58":[2,16],"61":[2,16],"79":[2,16],"84":[2,16],"94":[2,16],"99":[2,16],"107":[2,16],"109":[2,16],"110":[2,16],"111":[2,16],"114":[2,16],"118":[2,16],"119":[2,16],"120":[2,16],"127":[2,16],"128":[2,16],"129":[2,16],"131":[2,16],"132":[2,16],"134":[2,16],"135":[2,16],"138":[2,16],"139":[2,16],"140":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"148":[2,16],"149":[2,16],"150":[2,16],"151":[2,16],"152":[2,16],"153":[2,16],"154":[2,16],"155":[2,16],"156":[2,16],"157":[2,16],"158":[2,16],"159":[2,16],"160":[2,16],"161":[2,16],"162":[2,16],"163":[2,16]},{"1":[2,17],"4":[2,17],"29":[2,17],"30":[2,17],"50":[2,17],"58":[2,17],"61":[2,17],"79":[2,17],"84":[2,17],"94":[2,17],"99":[2,17],"107":[2,17],"109":[2,17],"110":[2,17],"111":[2,17],"114":[2,17],"118":[2,17],"119":[2,17],"120":[2,17],"127":[2,17],"128":[2,17],"129":[2,17],"131":[2,17],"132":[2,17],"134":[2,17],"135":[2,17],"138":[2,17],"139":[2,17],"140":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"148":[2,17],"149":[2,17],"150":[2,17],"151":[2,17],"152":[2,17],"153":[2,17],"154":[2,17],"155":[2,17],"156":[2,17],"157":[2,17],"158":[2,17],"159":[2,17],"160":[2,17],"161":[2,17],"162":[2,17],"163":[2,17]},{"1":[2,18],"4":[2,18],"29":[2,18],"30":[2,18],"50":[2,18],"58":[2,18],"61":[2,18],"79":[2,18],"84":[2,18],"94":[2,18],"99":[2,18],"107":[2,18],"109":[2,18],"110":[2,18],"111":[2,18],"114":[2,18],"118":[2,18],"119":[2,18],"120":[2,18],"127":[2,18],"128":[2,18],"129":[2,18],"131":[2,18],"132":[2,18],"134":[2,18],"135":[2,18],"138":[2,18],"139":[2,18],"140":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"148":[2,18],"149":[2,18],"150":[2,18],"151":[2,18],"152":[2,18],"153":[2,18],"154":[2,18],"155":[2,18],"156":[2,18],"157":[2,18],"158":[2,18],"159":[2,18],"160":[2,18],"161":[2,18],"162":[2,18],"163":[2,18]},{"1":[2,19],"4":[2,19],"29":[2,19],"30":[2,19],"50":[2,19],"58":[2,19],"61":[2,19],"79":[2,19],"84":[2,19],"94":[2,19],"99":[2,19],"107":[2,19],"109":[2,19],"110":[2,19],"111":[2,19],"114":[2,19],"118":[2,19],"119":[2,19],"120":[2,19],"127":[2,19],"128":[2,19],"129":[2,19],"131":[2,19],"132":[2,19],"134":[2,19],"135":[2,19],"138":[2,19],"139":[2,19],"140":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"148":[2,19],"149":[2,19],"150":[2,19],"151":[2,19],"152":[2,19],"153":[2,19],"154":[2,19],"155":[2,19],"156":[2,19],"157":[2,19],"158":[2,19],"159":[2,19],"160":[2,19],"161":[2,19],"162":[2,19],"163":[2,19]},{"1":[2,20],"4":[2,20],"29":[2,20],"30":[2,20],"50":[2,20],"58":[2,20],"61":[2,20],"79":[2,20],"84":[2,20],"94":[2,20],"99":[2,20],"107":[2,20],"109":[2,20],"110":[2,20],"111":[2,20],"114":[2,20],"118":[2,20],"119":[2,20],"120":[2,20],"127":[2,20],"128":[2,20],"129":[2,20],"131":[2,20],"132":[2,20],"134":[2,20],"135":[2,20],"138":[2,20],"139":[2,20],"140":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"148":[2,20],"149":[2,20],"150":[2,20],"151":[2,20],"152":[2,20],"153":[2,20],"154":[2,20],"155":[2,20],"156":[2,20],"157":[2,20],"158":[2,20],"159":[2,20],"160":[2,20],"161":[2,20],"162":[2,20],"163":[2,20]},{"1":[2,21],"4":[2,21],"29":[2,21],"30":[2,21],"50":[2,21],"58":[2,21],"61":[2,21],"79":[2,21],"84":[2,21],"94":[2,21],"99":[2,21],"107":[2,21],"109":[2,21],"110":[2,21],"111":[2,21],"114":[2,21],"118":[2,21],"119":[2,21],"120":[2,21],"127":[2,21],"128":[2,21],"129":[2,21],"131":[2,21],"132":[2,21],"134":[2,21],"135":[2,21],"138":[2,21],"139":[2,21],"140":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"148":[2,21],"149":[2,21],"150":[2,21],"151":[2,21],"152":[2,21],"153":[2,21],"154":[2,21],"155":[2,21],"156":[2,21],"157":[2,21],"158":[2,21],"159":[2,21],"160":[2,21],"161":[2,21],"162":[2,21],"163":[2,21]},{"1":[2,22],"4":[2,22],"29":[2,22],"30":[2,22],"50":[2,22],"58":[2,22],"61":[2,22],"79":[2,22],"84":[2,22],"94":[2,22],"99":[2,22],"107":[2,22],"109":[2,22],"110":[2,22],"111":[2,22],"114":[2,22],"118":[2,22],"119":[2,22],"120":[2,22],"127":[2,22],"128":[2,22],"129":[2,22],"131":[2,22],"132":[2,22],"134":[2,22],"135":[2,22],"138":[2,22],"139":[2,22],"140":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"148":[2,22],"149":[2,22],"150":[2,22],"151":[2,22],"152":[2,22],"153":[2,22],"154":[2,22],"155":[2,22],"156":[2,22],"157":[2,22],"158":[2,22],"159":[2,22],"160":[2,22],"161":[2,22],"162":[2,22],"163":[2,22]},{"1":[2,23],"4":[2,23],"29":[2,23],"30":[2,23],"50":[2,23],"58":[2,23],"61":[2,23],"79":[2,23],"84":[2,23],"94":[2,23],"99":[2,23],"107":[2,23],"109":[2,23],"110":[2,23],"111":[2,23],"114":[2,23],"118":[2,23],"119":[2,23],"120":[2,23],"127":[2,23],"128":[2,23],"129":[2,23],"131":[2,23],"132":[2,23],"134":[2,23],"135":[2,23],"138":[2,23],"139":[2,23],"140":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"148":[2,23],"149":[2,23],"150":[2,23],"151":[2,23],"152":[2,23],"153":[2,23],"154":[2,23],"155":[2,23],"156":[2,23],"157":[2,23],"158":[2,23],"159":[2,23],"160":[2,23],"161":[2,23],"162":[2,23],"163":[2,23]},{"1":[2,24],"4":[2,24],"29":[2,24],"30":[2,24],"50":[2,24],"58":[2,24],"61":[2,24],"79":[2,24],"84":[2,24],"94":[2,24],"99":[2,24],"107":[2,24],"109":[2,24],"110":[2,24],"111":[2,24],"114":[2,24],"118":[2,24],"119":[2,24],"120":[2,24],"127":[2,24],"128":[2,24],"129":[2,24],"131":[2,24],"132":[2,24],"134":[2,24],"135":[2,24],"138":[2,24],"139":[2,24],"140":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"148":[2,24],"149":[2,24],"150":[2,24],"151":[2,24],"152":[2,24],"153":[2,24],"154":[2,24],"155":[2,24],"156":[2,24],"157":[2,24],"158":[2,24],"159":[2,24],"160":[2,24],"161":[2,24],"162":[2,24],"163":[2,24]},{"1":[2,25],"4":[2,25],"29":[2,25],"30":[2,25],"50":[2,25],"58":[2,25],"61":[2,25],"79":[2,25],"84":[2,25],"94":[2,25],"99":[2,25],"107":[2,25],"109":[2,25],"110":[2,25],"111":[2,25],"114":[2,25],"118":[2,25],"119":[2,25],"120":[2,25],"127":[2,25],"128":[2,25],"129":[2,25],"131":[2,25],"132":[2,25],"134":[2,25],"135":[2,25],"138":[2,25],"139":[2,25],"140":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"148":[2,25],"149":[2,25],"150":[2,25],"151":[2,25],"152":[2,25],"153":[2,25],"154":[2,25],"155":[2,25],"156":[2,25],"157":[2,25],"158":[2,25],"159":[2,25],"160":[2,25],"161":[2,25],"162":[2,25],"163":[2,25]},{"1":[2,26],"4":[2,26],"29":[2,26],"30":[2,26],"50":[2,26],"58":[2,26],"61":[2,26],"79":[2,26],"84":[2,26],"94":[2,26],"99":[2,26],"107":[2,26],"109":[2,26],"110":[2,26],"111":[2,26],"114":[2,26],"118":[2,26],"119":[2,26],"120":[2,26],"127":[2,26],"128":[2,26],"129":[2,26],"131":[2,26],"132":[2,26],"134":[2,26],"135":[2,26],"138":[2,26],"139":[2,26],"140":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"148":[2,26],"149":[2,26],"150":[2,26],"151":[2,26],"152":[2,26],"153":[2,26],"154":[2,26],"155":[2,26],"156":[2,26],"157":[2,26],"158":[2,26],"159":[2,26],"160":[2,26],"161":[2,26],"162":[2,26],"163":[2,26]},{"1":[2,27],"4":[2,27],"29":[2,27],"30":[2,27],"50":[2,27],"58":[2,27],"61":[2,27],"79":[2,27],"84":[2,27],"94":[2,27],"99":[2,27],"107":[2,27],"109":[2,27],"110":[2,27],"111":[2,27],"114":[2,27],"118":[2,27],"119":[2,27],"120":[2,27],"127":[2,27],"128":[2,27],"129":[2,27],"131":[2,27],"132":[2,27],"134":[2,27],"135":[2,27],"138":[2,27],"139":[2,27],"140":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"148":[2,27],"149":[2,27],"150":[2,27],"151":[2,27],"152":[2,27],"153":[2,27],"154":[2,27],"155":[2,27],"156":[2,27],"157":[2,27],"158":[2,27],"159":[2,27],"160":[2,27],"161":[2,27],"162":[2,27],"163":[2,27]},{"1":[2,28],"4":[2,28],"29":[2,28],"30":[2,28],"50":[2,28],"58":[2,28],"61":[2,28],"79":[2,28],"84":[2,28],"94":[2,28],"99":[2,28],"107":[2,28],"109":[2,28],"110":[2,28],"111":[2,28],"114":[2,28],"118":[2,28],"119":[2,28],"120":[2,28],"127":[2,28],"128":[2,28],"129":[2,28],"131":[2,28],"132":[2,28],"134":[2,28],"135":[2,28],"138":[2,28],"139":[2,28],"140":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"148":[2,28],"149":[2,28],"150":[2,28],"151":[2,28],"152":[2,28],"153":[2,28],"154":[2,28],"155":[2,28],"156":[2,28],"157":[2,28],"158":[2,28],"159":[2,28],"160":[2,28],"161":[2,28],"162":[2,28],"163":[2,28]},{"1":[2,10],"4":[2,10],"30":[2,10],"107":[2,10],"109":[2,10],"111":[2,10],"114":[2,10],"127":[2,10],"128":[2,10]},{"1":[2,11],"4":[2,11],"30":[2,11],"107":[2,11],"109":[2,11],"111":[2,11],"114":[2,11],"127":[2,11],"128":[2,11]},{"1":[2,12],"4":[2,12],"30":[2,12],"107":[2,12],"109":[2,12],"111":[2,12],"114":[2,12],"127":[2,12],"128":[2,12]},{"1":[2,13],"4":[2,13],"30":[2,13],"107":[2,13],"109":[2,13],"111":[2,13],"114":[2,13],"127":[2,13],"128":[2,13]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"46":[1,148],"50":[2,73],"58":[2,73],"61":[2,73],"72":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"78":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"84":[2,73],"92":[2,73],"94":[2,73],"99":[2,73],"107":[2,73],"109":[2,73],"110":[2,73],"111":[2,73],"114":[2,73],"118":[2,73],"119":[2,73],"120":[2,73],"127":[2,73],"128":[2,73],"129":[2,73],"131":[2,73],"132":[2,73],"134":[2,73],"135":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73]},{"1":[2,74],"4":[2,74],"29":[2,74],"30":[2,74],"50":[2,74],"58":[2,74],"61":[2,74],"72":[2,74],"73":[2,74],"74":[2,74],"75":[2,74],"78":[2,74],"79":[2,74],"80":[2,74],"81":[2,74],"84":[2,74],"92":[2,74],"94":[2,74],"99":[2,74],"107":[2,74],"109":[2,74],"110":[2,74],"111":[2,74],"114":[2,74],"118":[2,74],"119":[2,74],"120":[2,74],"127":[2,74],"128":[2,74],"129":[2,74],"131":[2,74],"132":[2,74],"134":[2,74],"135":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74],"151":[2,74],"152":[2,74],"153":[2,74],"154":[2,74],"155":[2,74],"156":[2,74],"157":[2,74],"158":[2,74],"159":[2,74],"160":[2,74],"161":[2,74],"162":[2,74],"163":[2,74]},{"1":[2,75],"4":[2,75],"29":[2,75],"30":[2,75],"50":[2,75],"58":[2,75],"61":[2,75],"72":[2,75],"73":[2,75],"74":[2,75],"75":[2,75],"78":[2,75],"79":[2,75],"80":[2,75],"81":[2,75],"84":[2,75],"92":[2,75],"94":[2,75],"99":[2,75],"107":[2,75],"109":[2,75],"110":[2,75],"111":[2,75],"114":[2,75],"118":[2,75],"119":[2,75],"120":[2,75],"127":[2,75],"128":[2,75],"129":[2,75],"131":[2,75],"132":[2,75],"134":[2,75],"135":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75],"162":[2,75],"163":[2,75]},{"1":[2,76],"4":[2,76],"29":[2,76],"30":[2,76],"50":[2,76],"58":[2,76],"61":[2,76],"72":[2,76],"73":[2,76],"74":[2,76],"75":[2,76],"78":[2,76],"79":[2,76],"80":[2,76],"81":[2,76],"84":[2,76],"92":[2,76],"94":[2,76],"99":[2,76],"107":[2,76],"109":[2,76],"110":[2,76],"111":[2,76],"114":[2,76],"118":[2,76],"119":[2,76],"120":[2,76],"127":[2,76],"128":[2,76],"129":[2,76],"131":[2,76],"132":[2,76],"134":[2,76],"135":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76],"162":[2,76],"163":[2,76]},{"1":[2,77],"4":[2,77],"29":[2,77],"30":[2,77],"50":[2,77],"58":[2,77],"61":[2,77],"72":[2,77],"73":[2,77],"74":[2,77],"75":[2,77],"78":[2,77],"79":[2,77],"80":[2,77],"81":[2,77],"84":[2,77],"92":[2,77],"94":[2,77],"99":[2,77],"107":[2,77],"109":[2,77],"110":[2,77],"111":[2,77],"114":[2,77],"118":[2,77],"119":[2,77],"120":[2,77],"127":[2,77],"128":[2,77],"129":[2,77],"131":[2,77],"132":[2,77],"134":[2,77],"135":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77],"151":[2,77],"152":[2,77],"153":[2,77],"154":[2,77],"155":[2,77],"156":[2,77],"157":[2,77],"158":[2,77],"159":[2,77],"160":[2,77],"161":[2,77],"162":[2,77],"163":[2,77]},{"1":[2,78],"4":[2,78],"29":[2,78],"30":[2,78],"50":[2,78],"58":[2,78],"61":[2,78],"72":[2,78],"73":[2,78],"74":[2,78],"75":[2,78],"78":[2,78],"79":[2,78],"80":[2,78],"81":[2,78],"84":[2,78],"92":[2,78],"94":[2,78],"99":[2,78],"107":[2,78],"109":[2,78],"110":[2,78],"111":[2,78],"114":[2,78],"118":[2,78],"119":[2,78],"120":[2,78],"127":[2,78],"128":[2,78],"129":[2,78],"131":[2,78],"132":[2,78],"134":[2,78],"135":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78],"151":[2,78],"152":[2,78],"153":[2,78],"154":[2,78],"155":[2,78],"156":[2,78],"157":[2,78],"158":[2,78],"159":[2,78],"160":[2,78],"161":[2,78],"162":[2,78],"163":[2,78]},{"1":[2,103],"4":[2,103],"29":[2,103],"30":[2,103],"50":[2,103],"58":[2,103],"61":[2,103],"63":150,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,103],"80":[1,146],"81":[1,147],"84":[2,103],"91":149,"92":[1,138],"94":[2,103],"99":[2,103],"107":[2,103],"109":[2,103],"110":[2,103],"111":[2,103],"114":[2,103],"118":[2,103],"119":[2,103],"120":[2,103],"127":[2,103],"128":[2,103],"129":[2,103],"131":[2,103],"132":[2,103],"134":[2,103],"135":[2,103],"138":[2,103],"139":[2,103],"140":[2,103],"141":[2,103],"142":[2,103],"143":[2,103],"144":[2,103],"145":[2,103],"146":[2,103],"147":[2,103],"148":[2,103],"149":[2,103],"150":[2,103],"151":[2,103],"152":[2,103],"153":[2,103],"154":[2,103],"155":[2,103],"156":[2,103],"157":[2,103],"158":[2,103],"159":[2,103],"160":[2,103],"161":[2,103],"162":[2,103],"163":[2,103]},{"1":[2,104],"4":[2,104],"29":[2,104],"30":[2,104],"50":[2,104],"58":[2,104],"61":[2,104],"79":[2,104],"84":[2,104],"94":[2,104],"99":[2,104],"107":[2,104],"109":[2,104],"110":[2,104],"111":[2,104],"114":[2,104],"118":[2,104],"119":[2,104],"120":[2,104],"127":[2,104],"128":[2,104],"129":[2,104],"131":[2,104],"132":[2,104],"134":[2,104],"135":[2,104],"138":[2,104],"139":[2,104],"140":[2,104],"141":[2,104],"142":[2,104],"143":[2,104],"144":[2,104],"145":[2,104],"146":[2,104],"147":[2,104],"148":[2,104],"149":[2,104],"150":[2,104],"151":[2,104],"152":[2,104],"153":[2,104],"154":[2,104],"155":[2,104],"156":[2,104],"157":[2,104],"158":[2,104],"159":[2,104],"160":[2,104],"161":[2,104],"162":[2,104],"163":[2,104]},{"14":152,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":153,"62":154,"64":151,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"52":155,"53":[2,60],"58":[2,60],"59":156,"60":[1,157]},{"4":[1,159],"6":158,"29":[1,6]},{"8":160,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":162,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":163,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":164,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":165,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":166,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":167,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":168,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":169,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,171],"4":[2,171],"29":[2,171],"30":[2,171],"50":[2,171],"58":[2,171],"61":[2,171],"79":[2,171],"84":[2,171],"94":[2,171],"99":[2,171],"107":[2,171],"109":[2,171],"110":[2,171],"111":[2,171],"114":[2,171],"118":[2,171],"119":[2,171],"120":[2,171],"123":[1,170],"127":[2,171],"128":[2,171],"129":[2,171],"131":[2,171],"132":[2,171],"134":[2,171],"135":[2,171],"138":[2,171],"139":[2,171],"140":[2,171],"141":[2,171],"142":[2,171],"143":[2,171],"144":[2,171],"145":[2,171],"146":[2,171],"147":[2,171],"148":[2,171],"149":[2,171],"150":[2,171],"151":[2,171],"152":[2,171],"153":[2,171],"154":[2,171],"155":[2,171],"156":[2,171],"157":[2,171],"158":[2,171],"159":[2,171],"160":[2,171],"161":[2,171],"162":[2,171],"163":[2,171]},{"4":[1,159],"6":171,"29":[1,6]},{"4":[1,159],"6":172,"29":[1,6]},{"1":[2,141],"4":[2,141],"29":[2,141],"30":[2,141],"50":[2,141],"58":[2,141],"61":[2,141],"79":[2,141],"84":[2,141],"94":[2,141],"99":[2,141],"107":[2,141],"109":[2,141],"110":[2,141],"111":[2,141],"114":[2,141],"118":[2,141],"119":[2,141],"120":[2,141],"127":[2,141],"128":[2,141],"129":[2,141],"131":[2,141],"132":[2,141],"134":[2,141],"135":[2,141],"138":[2,141],"139":[2,141],"140":[2,141],"141":[2,141],"142":[2,141],"143":[2,141],"144":[2,141],"145":[2,141],"146":[2,141],"147":[2,141],"148":[2,141],"149":[2,141],"150":[2,141],"151":[2,141],"152":[2,141],"153":[2,141],"154":[2,141],"155":[2,141],"156":[2,141],"157":[2,141],"158":[2,141],"159":[2,141],"160":[2,141],"161":[2,141],"162":[2,141],"163":[2,141]},{"31":175,"32":[1,87],"66":176,"67":177,"82":[1,84],"98":[1,178],"115":173,"117":174},{"8":179,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,180],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"46":[2,70],"50":[2,70],"58":[2,70],"61":[2,70],"72":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"78":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"84":[2,70],"86":[1,181],"92":[2,70],"94":[2,70],"99":[2,70],"107":[2,70],"109":[2,70],"110":[2,70],"111":[2,70],"114":[2,70],"118":[2,70],"119":[2,70],"120":[2,70],"127":[2,70],"128":[2,70],"129":[2,70],"131":[2,70],"132":[2,70],"134":[2,70],"135":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70]},{"14":183,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":153,"62":182,"64":184,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,52],"4":[2,52],"29":[2,52],"30":[2,52],"50":[2,52],"58":[2,52],"61":[2,52],"79":[2,52],"84":[2,52],"94":[2,52],"99":[2,52],"103":[2,52],"104":[2,52],"107":[2,52],"109":[2,52],"110":[2,52],"111":[2,52],"114":[2,52],"118":[2,52],"119":[2,52],"120":[2,52],"123":[2,52],"125":[2,52],"127":[2,52],"128":[2,52],"129":[2,52],"131":[2,52],"132":[2,52],"134":[2,52],"135":[2,52],"138":[2,52],"139":[2,52],"140":[2,52],"141":[2,52],"142":[2,52],"143":[2,52],"144":[2,52],"145":[2,52],"146":[2,52],"147":[2,52],"148":[2,52],"149":[2,52],"150":[2,52],"151":[2,52],"152":[2,52],"153":[2,52],"154":[2,52],"155":[2,52],"156":[2,52],"157":[2,52],"158":[2,52],"159":[2,52],"160":[2,52],"161":[2,52],"162":[2,52],"163":[2,52]},{"1":[2,51],"4":[2,51],"8":185,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,51],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"107":[2,51],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[2,51],"128":[2,51],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":186,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,71],"4":[2,71],"29":[2,71],"30":[2,71],"46":[2,71],"50":[2,71],"58":[2,71],"61":[2,71],"72":[2,71],"73":[2,71],"74":[2,71],"75":[2,71],"78":[2,71],"79":[2,71],"80":[2,71],"81":[2,71],"84":[2,71],"92":[2,71],"94":[2,71],"99":[2,71],"107":[2,71],"109":[2,71],"110":[2,71],"111":[2,71],"114":[2,71],"118":[2,71],"119":[2,71],"120":[2,71],"127":[2,71],"128":[2,71],"129":[2,71],"131":[2,71],"132":[2,71],"134":[2,71],"135":[2,71],"138":[2,71],"139":[2,71],"140":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71],"162":[2,71],"163":[2,71]},{"1":[2,72],"4":[2,72],"29":[2,72],"30":[2,72],"46":[2,72],"50":[2,72],"58":[2,72],"61":[2,72],"72":[2,72],"73":[2,72],"74":[2,72],"75":[2,72],"78":[2,72],"79":[2,72],"80":[2,72],"81":[2,72],"84":[2,72],"92":[2,72],"94":[2,72],"99":[2,72],"107":[2,72],"109":[2,72],"110":[2,72],"111":[2,72],"114":[2,72],"118":[2,72],"119":[2,72],"120":[2,72],"127":[2,72],"128":[2,72],"129":[2,72],"131":[2,72],"132":[2,72],"134":[2,72],"135":[2,72],"138":[2,72],"139":[2,72],"140":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72],"162":[2,72],"163":[2,72]},{"1":[2,35],"4":[2,35],"29":[2,35],"30":[2,35],"50":[2,35],"58":[2,35],"61":[2,35],"72":[2,35],"73":[2,35],"74":[2,35],"75":[2,35],"78":[2,35],"79":[2,35],"80":[2,35],"81":[2,35],"84":[2,35],"92":[2,35],"94":[2,35],"99":[2,35],"107":[2,35],"109":[2,35],"110":[2,35],"111":[2,35],"114":[2,35],"118":[2,35],"119":[2,35],"120":[2,35],"127":[2,35],"128":[2,35],"129":[2,35],"131":[2,35],"132":[2,35],"134":[2,35],"135":[2,35],"138":[2,35],"139":[2,35],"140":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35],"151":[2,35],"152":[2,35],"153":[2,35],"154":[2,35],"155":[2,35],"156":[2,35],"157":[2,35],"158":[2,35],"159":[2,35],"160":[2,35],"161":[2,35],"162":[2,35],"163":[2,35]},{"1":[2,36],"4":[2,36],"29":[2,36],"30":[2,36],"50":[2,36],"58":[2,36],"61":[2,36],"72":[2,36],"73":[2,36],"74":[2,36],"75":[2,36],"78":[2,36],"79":[2,36],"80":[2,36],"81":[2,36],"84":[2,36],"92":[2,36],"94":[2,36],"99":[2,36],"107":[2,36],"109":[2,36],"110":[2,36],"111":[2,36],"114":[2,36],"118":[2,36],"119":[2,36],"120":[2,36],"127":[2,36],"128":[2,36],"129":[2,36],"131":[2,36],"132":[2,36],"134":[2,36],"135":[2,36],"138":[2,36],"139":[2,36],"140":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36],"151":[2,36],"152":[2,36],"153":[2,36],"154":[2,36],"155":[2,36],"156":[2,36],"157":[2,36],"158":[2,36],"159":[2,36],"160":[2,36],"161":[2,36],"162":[2,36],"163":[2,36]},{"1":[2,37],"4":[2,37],"29":[2,37],"30":[2,37],"50":[2,37],"58":[2,37],"61":[2,37],"72":[2,37],"73":[2,37],"74":[2,37],"75":[2,37],"78":[2,37],"79":[2,37],"80":[2,37],"81":[2,37],"84":[2,37],"92":[2,37],"94":[2,37],"99":[2,37],"107":[2,37],"109":[2,37],"110":[2,37],"111":[2,37],"114":[2,37],"118":[2,37],"119":[2,37],"120":[2,37],"127":[2,37],"128":[2,37],"129":[2,37],"131":[2,37],"132":[2,37],"134":[2,37],"135":[2,37],"138":[2,37],"139":[2,37],"140":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37],"151":[2,37],"152":[2,37],"153":[2,37],"154":[2,37],"155":[2,37],"156":[2,37],"157":[2,37],"158":[2,37],"159":[2,37],"160":[2,37],"161":[2,37],"162":[2,37],"163":[2,37]},{"1":[2,38],"4":[2,38],"29":[2,38],"30":[2,38],"50":[2,38],"58":[2,38],"61":[2,38],"72":[2,38],"73":[2,38],"74":[2,38],"75":[2,38],"78":[2,38],"79":[2,38],"80":[2,38],"81":[2,38],"84":[2,38],"92":[2,38],"94":[2,38],"99":[2,38],"107":[2,38],"109":[2,38],"110":[2,38],"111":[2,38],"114":[2,38],"118":[2,38],"119":[2,38],"120":[2,38],"127":[2,38],"128":[2,38],"129":[2,38],"131":[2,38],"132":[2,38],"134":[2,38],"135":[2,38],"138":[2,38],"139":[2,38],"140":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38],"151":[2,38],"152":[2,38],"153":[2,38],"154":[2,38],"155":[2,38],"156":[2,38],"157":[2,38],"158":[2,38],"159":[2,38],"160":[2,38],"161":[2,38],"162":[2,38],"163":[2,38]},{"1":[2,39],"4":[2,39],"29":[2,39],"30":[2,39],"50":[2,39],"58":[2,39],"61":[2,39],"72":[2,39],"73":[2,39],"74":[2,39],"75":[2,39],"78":[2,39],"79":[2,39],"80":[2,39],"81":[2,39],"84":[2,39],"92":[2,39],"94":[2,39],"99":[2,39],"107":[2,39],"109":[2,39],"110":[2,39],"111":[2,39],"114":[2,39],"118":[2,39],"119":[2,39],"120":[2,39],"127":[2,39],"128":[2,39],"129":[2,39],"131":[2,39],"132":[2,39],"134":[2,39],"135":[2,39],"138":[2,39],"139":[2,39],"140":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39],"151":[2,39],"152":[2,39],"153":[2,39],"154":[2,39],"155":[2,39],"156":[2,39],"157":[2,39],"158":[2,39],"159":[2,39],"160":[2,39],"161":[2,39],"162":[2,39],"163":[2,39]},{"1":[2,40],"4":[2,40],"29":[2,40],"30":[2,40],"50":[2,40],"58":[2,40],"61":[2,40],"72":[2,40],"73":[2,40],"74":[2,40],"75":[2,40],"78":[2,40],"79":[2,40],"80":[2,40],"81":[2,40],"84":[2,40],"92":[2,40],"94":[2,40],"99":[2,40],"107":[2,40],"109":[2,40],"110":[2,40],"111":[2,40],"114":[2,40],"118":[2,40],"119":[2,40],"120":[2,40],"127":[2,40],"128":[2,40],"129":[2,40],"131":[2,40],"132":[2,40],"134":[2,40],"135":[2,40],"138":[2,40],"139":[2,40],"140":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40],"151":[2,40],"152":[2,40],"153":[2,40],"154":[2,40],"155":[2,40],"156":[2,40],"157":[2,40],"158":[2,40],"159":[2,40],"160":[2,40],"161":[2,40],"162":[2,40],"163":[2,40]},{"1":[2,41],"4":[2,41],"29":[2,41],"30":[2,41],"50":[2,41],"58":[2,41],"61":[2,41],"72":[2,41],"73":[2,41],"74":[2,41],"75":[2,41],"78":[2,41],"79":[2,41],"80":[2,41],"81":[2,41],"84":[2,41],"92":[2,41],"94":[2,41],"99":[2,41],"107":[2,41],"109":[2,41],"110":[2,41],"111":[2,41],"114":[2,41],"118":[2,41],"119":[2,41],"120":[2,41],"127":[2,41],"128":[2,41],"129":[2,41],"131":[2,41],"132":[2,41],"134":[2,41],"135":[2,41],"138":[2,41],"139":[2,41],"140":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41],"151":[2,41],"152":[2,41],"153":[2,41],"154":[2,41],"155":[2,41],"156":[2,41],"157":[2,41],"158":[2,41],"159":[2,41],"160":[2,41],"161":[2,41],"162":[2,41],"163":[2,41]},{"1":[2,42],"4":[2,42],"29":[2,42],"30":[2,42],"50":[2,42],"58":[2,42],"61":[2,42],"72":[2,42],"73":[2,42],"74":[2,42],"75":[2,42],"78":[2,42],"79":[2,42],"80":[2,42],"81":[2,42],"84":[2,42],"92":[2,42],"94":[2,42],"99":[2,42],"107":[2,42],"109":[2,42],"110":[2,42],"111":[2,42],"114":[2,42],"118":[2,42],"119":[2,42],"120":[2,42],"127":[2,42],"128":[2,42],"129":[2,42],"131":[2,42],"132":[2,42],"134":[2,42],"135":[2,42],"138":[2,42],"139":[2,42],"140":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"148":[2,42],"149":[2,42],"150":[2,42],"151":[2,42],"152":[2,42],"153":[2,42],"154":[2,42],"155":[2,42],"156":[2,42],"157":[2,42],"158":[2,42],"159":[2,42],"160":[2,42],"161":[2,42],"162":[2,42],"163":[2,42]},{"1":[2,43],"4":[2,43],"29":[2,43],"30":[2,43],"50":[2,43],"58":[2,43],"61":[2,43],"72":[2,43],"73":[2,43],"74":[2,43],"75":[2,43],"78":[2,43],"79":[2,43],"80":[2,43],"81":[2,43],"84":[2,43],"92":[2,43],"94":[2,43],"99":[2,43],"107":[2,43],"109":[2,43],"110":[2,43],"111":[2,43],"114":[2,43],"118":[2,43],"119":[2,43],"120":[2,43],"127":[2,43],"128":[2,43],"129":[2,43],"131":[2,43],"132":[2,43],"134":[2,43],"135":[2,43],"138":[2,43],"139":[2,43],"140":[2,43],"141":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43],"148":[2,43],"149":[2,43],"150":[2,43],"151":[2,43],"152":[2,43],"153":[2,43],"154":[2,43],"155":[2,43],"156":[2,43],"157":[2,43],"158":[2,43],"159":[2,43],"160":[2,43],"161":[2,43],"162":[2,43],"163":[2,43]},{"7":187,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,120],"8":188,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":189,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,120],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,112],"4":[2,112],"29":[2,112],"30":[2,112],"50":[2,112],"58":[2,112],"61":[2,112],"72":[2,112],"73":[2,112],"74":[2,112],"75":[2,112],"78":[2,112],"79":[2,112],"80":[2,112],"81":[2,112],"84":[2,112],"92":[2,112],"94":[2,112],"99":[2,112],"107":[2,112],"109":[2,112],"110":[2,112],"111":[2,112],"114":[2,112],"118":[2,112],"119":[2,112],"120":[2,112],"127":[2,112],"128":[2,112],"129":[2,112],"131":[2,112],"132":[2,112],"134":[2,112],"135":[2,112],"138":[2,112],"139":[2,112],"140":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"147":[2,112],"148":[2,112],"149":[2,112],"150":[2,112],"151":[2,112],"152":[2,112],"153":[2,112],"154":[2,112],"155":[2,112],"156":[2,112],"157":[2,112],"158":[2,112],"159":[2,112],"160":[2,112],"161":[2,112],"162":[2,112],"163":[2,112]},{"1":[2,113],"4":[2,113],"29":[2,113],"30":[2,113],"31":190,"32":[1,87],"50":[2,113],"58":[2,113],"61":[2,113],"72":[2,113],"73":[2,113],"74":[2,113],"75":[2,113],"78":[2,113],"79":[2,113],"80":[2,113],"81":[2,113],"84":[2,113],"92":[2,113],"94":[2,113],"99":[2,113],"107":[2,113],"109":[2,113],"110":[2,113],"111":[2,113],"114":[2,113],"118":[2,113],"119":[2,113],"120":[2,113],"127":[2,113],"128":[2,113],"129":[2,113],"131":[2,113],"132":[2,113],"134":[2,113],"135":[2,113],"138":[2,113],"139":[2,113],"140":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"147":[2,113],"148":[2,113],"149":[2,113],"150":[2,113],"151":[2,113],"152":[2,113],"153":[2,113],"154":[2,113],"155":[2,113],"156":[2,113],"157":[2,113],"158":[2,113],"159":[2,113],"160":[2,113],"161":[2,113],"162":[2,113],"163":[2,113]},{"91":191,"92":[1,138]},{"4":[2,56],"29":[2,56]},{"4":[2,57],"29":[2,57]},{"8":192,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":193,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":194,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":195,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[1,159],"6":196,"8":197,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,66],"4":[2,66],"29":[2,66],"30":[2,66],"46":[2,66],"50":[2,66],"58":[2,66],"61":[2,66],"72":[2,66],"73":[2,66],"74":[2,66],"75":[2,66],"78":[2,66],"79":[2,66],"80":[2,66],"81":[2,66],"84":[2,66],"86":[2,66],"92":[2,66],"94":[2,66],"99":[2,66],"107":[2,66],"109":[2,66],"110":[2,66],"111":[2,66],"114":[2,66],"118":[2,66],"119":[2,66],"120":[2,66],"127":[2,66],"128":[2,66],"129":[2,66],"131":[2,66],"132":[2,66],"134":[2,66],"135":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66],"162":[2,66],"163":[2,66]},{"1":[2,69],"4":[2,69],"29":[2,69],"30":[2,69],"46":[2,69],"50":[2,69],"58":[2,69],"61":[2,69],"72":[2,69],"73":[2,69],"74":[2,69],"75":[2,69],"78":[2,69],"79":[2,69],"80":[2,69],"81":[2,69],"84":[2,69],"86":[2,69],"92":[2,69],"94":[2,69],"99":[2,69],"107":[2,69],"109":[2,69],"110":[2,69],"111":[2,69],"114":[2,69],"118":[2,69],"119":[2,69],"120":[2,69],"127":[2,69],"128":[2,69],"129":[2,69],"131":[2,69],"132":[2,69],"134":[2,69],"135":[2,69],"138":[2,69],"139":[2,69],"140":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69],"162":[2,69],"163":[2,69]},{"4":[2,89],"28":202,"29":[2,89],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":199,"49":[1,56],"58":[2,89],"83":198,"84":[2,89]},{"1":[2,33],"4":[2,33],"29":[2,33],"30":[2,33],"46":[2,33],"50":[2,33],"58":[2,33],"61":[2,33],"72":[2,33],"73":[2,33],"74":[2,33],"75":[2,33],"78":[2,33],"79":[2,33],"80":[2,33],"81":[2,33],"84":[2,33],"92":[2,33],"94":[2,33],"99":[2,33],"107":[2,33],"109":[2,33],"110":[2,33],"111":[2,33],"114":[2,33],"118":[2,33],"119":[2,33],"120":[2,33],"127":[2,33],"128":[2,33],"129":[2,33],"131":[2,33],"132":[2,33],"134":[2,33],"135":[2,33],"138":[2,33],"139":[2,33],"140":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33],"151":[2,33],"152":[2,33],"153":[2,33],"154":[2,33],"155":[2,33],"156":[2,33],"157":[2,33],"158":[2,33],"159":[2,33],"160":[2,33],"161":[2,33],"162":[2,33],"163":[2,33]},{"1":[2,34],"4":[2,34],"29":[2,34],"30":[2,34],"46":[2,34],"50":[2,34],"58":[2,34],"61":[2,34],"72":[2,34],"73":[2,34],"74":[2,34],"75":[2,34],"78":[2,34],"79":[2,34],"80":[2,34],"81":[2,34],"84":[2,34],"92":[2,34],"94":[2,34],"99":[2,34],"107":[2,34],"109":[2,34],"110":[2,34],"111":[2,34],"114":[2,34],"118":[2,34],"119":[2,34],"120":[2,34],"127":[2,34],"128":[2,34],"129":[2,34],"131":[2,34],"132":[2,34],"134":[2,34],"135":[2,34],"138":[2,34],"139":[2,34],"140":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34],"151":[2,34],"152":[2,34],"153":[2,34],"154":[2,34],"155":[2,34],"156":[2,34],"157":[2,34],"158":[2,34],"159":[2,34],"160":[2,34],"161":[2,34],"162":[2,34],"163":[2,34]},{"1":[2,32],"4":[2,32],"29":[2,32],"30":[2,32],"46":[2,32],"50":[2,32],"58":[2,32],"61":[2,32],"72":[2,32],"73":[2,32],"74":[2,32],"75":[2,32],"78":[2,32],"79":[2,32],"80":[2,32],"81":[2,32],"84":[2,32],"86":[2,32],"92":[2,32],"94":[2,32],"99":[2,32],"107":[2,32],"109":[2,32],"110":[2,32],"111":[2,32],"114":[2,32],"118":[2,32],"119":[2,32],"120":[2,32],"127":[2,32],"128":[2,32],"129":[2,32],"131":[2,32],"132":[2,32],"134":[2,32],"135":[2,32],"138":[2,32],"139":[2,32],"140":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32],"151":[2,32],"152":[2,32],"153":[2,32],"154":[2,32],"155":[2,32],"156":[2,32],"157":[2,32],"158":[2,32],"159":[2,32],"160":[2,32],"161":[2,32],"162":[2,32],"163":[2,32]},{"1":[2,31],"4":[2,31],"29":[2,31],"30":[2,31],"50":[2,31],"58":[2,31],"61":[2,31],"79":[2,31],"84":[2,31],"94":[2,31],"99":[2,31],"103":[2,31],"104":[2,31],"107":[2,31],"109":[2,31],"110":[2,31],"111":[2,31],"114":[2,31],"118":[2,31],"119":[2,31],"120":[2,31],"123":[2,31],"125":[2,31],"127":[2,31],"128":[2,31],"129":[2,31],"131":[2,31],"132":[2,31],"134":[2,31],"135":[2,31],"138":[2,31],"139":[2,31],"140":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31],"149":[2,31],"150":[2,31],"151":[2,31],"152":[2,31],"153":[2,31],"154":[2,31],"155":[2,31],"156":[2,31],"157":[2,31],"158":[2,31],"159":[2,31],"160":[2,31],"161":[2,31],"162":[2,31],"163":[2,31]},{"1":[2,7],"4":[2,7],"7":203,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,7],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,4]},{"4":[1,89],"30":[1,204]},{"1":[2,30],"4":[2,30],"29":[2,30],"30":[2,30],"50":[2,30],"58":[2,30],"61":[2,30],"79":[2,30],"84":[2,30],"94":[2,30],"99":[2,30],"103":[2,30],"104":[2,30],"107":[2,30],"109":[2,30],"110":[2,30],"111":[2,30],"114":[2,30],"118":[2,30],"119":[2,30],"120":[2,30],"123":[2,30],"125":[2,30],"127":[2,30],"128":[2,30],"129":[2,30],"131":[2,30],"132":[2,30],"134":[2,30],"135":[2,30],"138":[2,30],"139":[2,30],"140":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"148":[2,30],"149":[2,30],"150":[2,30],"151":[2,30],"152":[2,30],"153":[2,30],"154":[2,30],"155":[2,30],"156":[2,30],"157":[2,30],"158":[2,30],"159":[2,30],"160":[2,30],"161":[2,30],"162":[2,30],"163":[2,30]},{"1":[2,185],"4":[2,185],"29":[2,185],"30":[2,185],"50":[2,185],"58":[2,185],"61":[2,185],"79":[2,185],"84":[2,185],"94":[2,185],"99":[2,185],"107":[2,185],"109":[2,185],"110":[2,185],"111":[2,185],"114":[2,185],"118":[2,185],"119":[2,185],"120":[2,185],"127":[2,185],"128":[2,185],"129":[2,185],"131":[2,185],"132":[2,185],"134":[2,185],"135":[2,185],"138":[2,185],"139":[2,185],"140":[2,185],"141":[2,185],"142":[2,185],"143":[2,185],"144":[2,185],"145":[2,185],"146":[2,185],"147":[2,185],"148":[2,185],"149":[2,185],"150":[2,185],"151":[2,185],"152":[2,185],"153":[2,185],"154":[2,185],"155":[2,185],"156":[2,185],"157":[2,185],"158":[2,185],"159":[2,185],"160":[2,185],"161":[2,185],"162":[2,185],"163":[2,185]},{"1":[2,186],"4":[2,186],"29":[2,186],"30":[2,186],"50":[2,186],"58":[2,186],"61":[2,186],"79":[2,186],"84":[2,186],"94":[2,186],"99":[2,186],"107":[2,186],"109":[2,186],"110":[2,186],"111":[2,186],"114":[2,186],"118":[2,186],"119":[2,186],"120":[2,186],"127":[2,186],"128":[2,186],"129":[2,186],"131":[2,186],"132":[2,186],"134":[2,186],"135":[2,186],"138":[2,186],"139":[2,186],"140":[2,186],"141":[2,186],"142":[2,186],"143":[2,186],"144":[2,186],"145":[2,186],"146":[2,186],"147":[2,186],"148":[2,186],"149":[2,186],"150":[2,186],"151":[2,186],"152":[2,186],"153":[2,186],"154":[2,186],"155":[2,186],"156":[2,186],"157":[2,186],"158":[2,186],"159":[2,186],"160":[2,186],"161":[2,186],"162":[2,186],"163":[2,186]},{"8":205,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":206,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":207,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":208,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":209,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":210,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":211,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":212,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":213,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":214,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":215,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":216,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":217,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":218,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":219,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":220,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":221,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":222,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":223,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,53],"4":[2,53],"8":224,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,53],"30":[2,53],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"50":[2,53],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,53],"61":[2,53],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"79":[2,53],"82":[1,84],"84":[2,53],"85":[1,55],"89":35,"90":[1,36],"94":[2,53],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,53],"101":[1,49],"105":[1,58],"106":[1,70],"107":[2,53],"108":50,"109":[2,53],"110":[2,53],"111":[2,53],"112":51,"113":[1,81],"114":[2,53],"118":[2,53],"119":[2,53],"120":[2,53],"121":[1,53],"126":48,"127":[2,53],"128":[2,53],"129":[2,53],"130":[1,40],"131":[2,53],"132":[2,53],"133":[1,43],"134":[2,53],"135":[2,53],"136":[1,46],"137":[1,47],"138":[2,53],"139":[2,53],"140":[2,53],"141":[2,53],"142":[2,53],"143":[2,53],"144":[2,53],"145":[2,53],"146":[2,53],"147":[2,53],"148":[2,53],"149":[2,53],"150":[2,53],"151":[2,53],"152":[2,53],"153":[2,53],"154":[2,53],"155":[2,53],"156":[2,53],"157":[2,53],"158":[2,53],"159":[2,53],"160":[2,53],"161":[2,53],"162":[2,53],"163":[2,53]},{"8":225,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":226,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":227,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":228,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":229,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":230,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":231,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":232,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":233,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":234,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":235,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"118":[1,236],"119":[1,237]},{"8":238,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":239,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,140],"4":[2,140],"29":[2,140],"30":[2,140],"50":[2,140],"58":[2,140],"61":[2,140],"79":[2,140],"84":[2,140],"94":[2,140],"99":[2,140],"107":[2,140],"109":[2,140],"110":[2,140],"111":[2,140],"114":[2,140],"118":[2,140],"119":[2,140],"120":[2,140],"127":[2,140],"128":[2,140],"129":[2,140],"131":[2,140],"132":[2,140],"134":[2,140],"135":[2,140],"138":[2,140],"139":[2,140],"140":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140],"148":[2,140],"149":[2,140],"150":[2,140],"151":[2,140],"152":[2,140],"153":[2,140],"154":[2,140],"155":[2,140],"156":[2,140],"157":[2,140],"158":[2,140],"159":[2,140],"160":[2,140],"161":[2,140],"162":[2,140],"163":[2,140]},{"31":175,"32":[1,87],"66":176,"67":177,"82":[1,84],"98":[1,178],"115":240,"117":174},{"61":[1,241]},{"8":242,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":243,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,139],"4":[2,139],"29":[2,139],"30":[2,139],"50":[2,139],"58":[2,139],"61":[2,139],"79":[2,139],"84":[2,139],"94":[2,139],"99":[2,139],"107":[2,139],"109":[2,139],"110":[2,139],"111":[2,139],"114":[2,139],"118":[2,139],"119":[2,139],"120":[2,139],"127":[2,139],"128":[2,139],"129":[2,139],"131":[2,139],"132":[2,139],"134":[2,139],"135":[2,139],"138":[2,139],"139":[2,139],"140":[2,139],"141":[2,139],"142":[2,139],"143":[2,139],"144":[2,139],"145":[2,139],"146":[2,139],"147":[2,139],"148":[2,139],"149":[2,139],"150":[2,139],"151":[2,139],"152":[2,139],"153":[2,139],"154":[2,139],"155":[2,139],"156":[2,139],"157":[2,139],"158":[2,139],"159":[2,139],"160":[2,139],"161":[2,139],"162":[2,139],"163":[2,139]},{"31":175,"32":[1,87],"66":176,"67":177,"82":[1,84],"98":[1,178],"115":244,"117":174},{"1":[2,108],"4":[2,108],"29":[2,108],"30":[2,108],"50":[2,108],"58":[2,108],"61":[2,108],"72":[2,108],"73":[2,108],"74":[2,108],"75":[2,108],"78":[2,108],"79":[2,108],"80":[2,108],"81":[2,108],"84":[2,108],"92":[2,108],"94":[2,108],"99":[2,108],"107":[2,108],"109":[2,108],"110":[2,108],"111":[2,108],"114":[2,108],"118":[2,108],"119":[2,108],"120":[2,108],"127":[2,108],"128":[2,108],"129":[2,108],"131":[2,108],"132":[2,108],"134":[2,108],"135":[2,108],"138":[2,108],"139":[2,108],"140":[2,108],"141":[2,108],"142":[2,108],"143":[2,108],"144":[2,108],"145":[2,108],"146":[2,108],"147":[2,108],"148":[2,108],"149":[2,108],"150":[2,108],"151":[2,108],"152":[2,108],"153":[2,108],"154":[2,108],"155":[2,108],"156":[2,108],"157":[2,108],"158":[2,108],"159":[2,108],"160":[2,108],"161":[2,108],"162":[2,108],"163":[2,108]},{"1":[2,67],"4":[2,67],"29":[2,67],"30":[2,67],"46":[2,67],"50":[2,67],"58":[2,67],"61":[2,67],"72":[2,67],"73":[2,67],"74":[2,67],"75":[2,67],"78":[2,67],"79":[2,67],"80":[2,67],"81":[2,67],"84":[2,67],"86":[2,67],"92":[2,67],"94":[2,67],"99":[2,67],"107":[2,67],"109":[2,67],"110":[2,67],"111":[2,67],"114":[2,67],"118":[2,67],"119":[2,67],"120":[2,67],"127":[2,67],"128":[2,67],"129":[2,67],"131":[2,67],"132":[2,67],"134":[2,67],"135":[2,67],"138":[2,67],"139":[2,67],"140":[2,67],"141":[2,67],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67],"162":[2,67],"163":[2,67]},{"4":[2,120],"8":246,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":245,"94":[2,120],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"31":247,"32":[1,87]},{"31":248,"32":[1,87]},{"1":[2,81],"4":[2,81],"29":[2,81],"30":[2,81],"46":[2,81],"50":[2,81],"58":[2,81],"61":[2,81],"72":[2,81],"73":[2,81],"74":[2,81],"75":[2,81],"78":[2,81],"79":[2,81],"80":[2,81],"81":[2,81],"84":[2,81],"86":[2,81],"92":[2,81],"94":[2,81],"99":[2,81],"107":[2,81],"109":[2,81],"110":[2,81],"111":[2,81],"114":[2,81],"118":[2,81],"119":[2,81],"120":[2,81],"127":[2,81],"128":[2,81],"129":[2,81],"131":[2,81],"132":[2,81],"134":[2,81],"135":[2,81],"138":[2,81],"139":[2,81],"140":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81],"151":[2,81],"152":[2,81],"153":[2,81],"154":[2,81],"155":[2,81],"156":[2,81],"157":[2,81],"158":[2,81],"159":[2,81],"160":[2,81],"161":[2,81],"162":[2,81],"163":[2,81]},{"31":249,"32":[1,87]},{"1":[2,83],"4":[2,83],"29":[2,83],"30":[2,83],"46":[2,83],"50":[2,83],"58":[2,83],"61":[2,83],"72":[2,83],"73":[2,83],"74":[2,83],"75":[2,83],"78":[2,83],"79":[2,83],"80":[2,83],"81":[2,83],"84":[2,83],"86":[2,83],"92":[2,83],"94":[2,83],"99":[2,83],"107":[2,83],"109":[2,83],"110":[2,83],"111":[2,83],"114":[2,83],"118":[2,83],"119":[2,83],"120":[2,83],"127":[2,83],"128":[2,83],"129":[2,83],"131":[2,83],"132":[2,83],"134":[2,83],"135":[2,83],"138":[2,83],"139":[2,83],"140":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83],"151":[2,83],"152":[2,83],"153":[2,83],"154":[2,83],"155":[2,83],"156":[2,83],"157":[2,83],"158":[2,83],"159":[2,83],"160":[2,83],"161":[2,83],"162":[2,83],"163":[2,83]},{"1":[2,84],"4":[2,84],"29":[2,84],"30":[2,84],"46":[2,84],"50":[2,84],"58":[2,84],"61":[2,84],"72":[2,84],"73":[2,84],"74":[2,84],"75":[2,84],"78":[2,84],"79":[2,84],"80":[2,84],"81":[2,84],"84":[2,84],"86":[2,84],"92":[2,84],"94":[2,84],"99":[2,84],"107":[2,84],"109":[2,84],"110":[2,84],"111":[2,84],"114":[2,84],"118":[2,84],"119":[2,84],"120":[2,84],"127":[2,84],"128":[2,84],"129":[2,84],"131":[2,84],"132":[2,84],"134":[2,84],"135":[2,84],"138":[2,84],"139":[2,84],"140":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84],"151":[2,84],"152":[2,84],"153":[2,84],"154":[2,84],"155":[2,84],"156":[2,84],"157":[2,84],"158":[2,84],"159":[2,84],"160":[2,84],"161":[2,84],"162":[2,84],"163":[2,84]},{"8":250,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"76":251,"78":[1,252],"80":[1,146],"81":[1,147]},{"76":253,"78":[1,252],"80":[1,146],"81":[1,147]},{"8":254,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,109],"4":[2,109],"29":[2,109],"30":[2,109],"50":[2,109],"58":[2,109],"61":[2,109],"72":[2,109],"73":[2,109],"74":[2,109],"75":[2,109],"78":[2,109],"79":[2,109],"80":[2,109],"81":[2,109],"84":[2,109],"92":[2,109],"94":[2,109],"99":[2,109],"107":[2,109],"109":[2,109],"110":[2,109],"111":[2,109],"114":[2,109],"118":[2,109],"119":[2,109],"120":[2,109],"127":[2,109],"128":[2,109],"129":[2,109],"131":[2,109],"132":[2,109],"134":[2,109],"135":[2,109],"138":[2,109],"139":[2,109],"140":[2,109],"141":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"147":[2,109],"148":[2,109],"149":[2,109],"150":[2,109],"151":[2,109],"152":[2,109],"153":[2,109],"154":[2,109],"155":[2,109],"156":[2,109],"157":[2,109],"158":[2,109],"159":[2,109],"160":[2,109],"161":[2,109],"162":[2,109],"163":[2,109]},{"1":[2,68],"4":[2,68],"29":[2,68],"30":[2,68],"46":[2,68],"50":[2,68],"58":[2,68],"61":[2,68],"72":[2,68],"73":[2,68],"74":[2,68],"75":[2,68],"78":[2,68],"79":[2,68],"80":[2,68],"81":[2,68],"84":[2,68],"86":[2,68],"92":[2,68],"94":[2,68],"99":[2,68],"107":[2,68],"109":[2,68],"110":[2,68],"111":[2,68],"114":[2,68],"118":[2,68],"119":[2,68],"120":[2,68],"127":[2,68],"128":[2,68],"129":[2,68],"131":[2,68],"132":[2,68],"134":[2,68],"135":[2,68],"138":[2,68],"139":[2,68],"140":[2,68],"141":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68],"162":[2,68],"163":[2,68]},{"1":[2,105],"4":[2,105],"29":[2,105],"30":[2,105],"50":[2,105],"58":[2,105],"61":[2,105],"63":150,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,105],"80":[1,146],"81":[1,147],"84":[2,105],"91":149,"92":[1,138],"94":[2,105],"99":[2,105],"107":[2,105],"109":[2,105],"110":[2,105],"111":[2,105],"114":[2,105],"118":[2,105],"119":[2,105],"120":[2,105],"127":[2,105],"128":[2,105],"129":[2,105],"131":[2,105],"132":[2,105],"134":[2,105],"135":[2,105],"138":[2,105],"139":[2,105],"140":[2,105],"141":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"148":[2,105],"149":[2,105],"150":[2,105],"151":[2,105],"152":[2,105],"153":[2,105],"154":[2,105],"155":[2,105],"156":[2,105],"157":[2,105],"158":[2,105],"159":[2,105],"160":[2,105],"161":[2,105],"162":[2,105],"163":[2,105]},{"1":[2,106],"4":[2,106],"29":[2,106],"30":[2,106],"50":[2,106],"58":[2,106],"61":[2,106],"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,106],"80":[1,146],"81":[1,147],"84":[2,106],"91":136,"92":[1,138],"94":[2,106],"99":[2,106],"107":[2,106],"109":[2,106],"110":[2,106],"111":[2,106],"114":[2,106],"118":[2,106],"119":[2,106],"120":[2,106],"127":[2,106],"128":[2,106],"129":[2,106],"131":[2,106],"132":[2,106],"134":[2,106],"135":[2,106],"138":[2,106],"139":[2,106],"140":[2,106],"141":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"148":[2,106],"149":[2,106],"150":[2,106],"151":[2,106],"152":[2,106],"153":[2,106],"154":[2,106],"155":[2,106],"156":[2,106],"157":[2,106],"158":[2,106],"159":[2,106],"160":[2,106],"161":[2,106],"162":[2,106],"163":[2,106]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"50":[2,73],"58":[2,73],"61":[2,73],"72":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"78":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"84":[2,73],"92":[2,73],"94":[2,73],"99":[2,73],"107":[2,73],"109":[2,73],"110":[2,73],"111":[2,73],"114":[2,73],"118":[2,73],"119":[2,73],"120":[2,73],"127":[2,73],"128":[2,73],"129":[2,73],"131":[2,73],"132":[2,73],"134":[2,73],"135":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"50":[2,70],"58":[2,70],"61":[2,70],"72":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"78":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"84":[2,70],"92":[2,70],"94":[2,70],"99":[2,70],"107":[2,70],"109":[2,70],"110":[2,70],"111":[2,70],"114":[2,70],"118":[2,70],"119":[2,70],"120":[2,70],"127":[2,70],"128":[2,70],"129":[2,70],"131":[2,70],"132":[2,70],"134":[2,70],"135":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70]},{"53":[1,255],"58":[1,256]},{"53":[2,61],"58":[2,61],"61":[1,257]},{"53":[2,63],"58":[2,63],"61":[2,63]},{"1":[2,55],"4":[2,55],"29":[2,55],"30":[2,55],"50":[2,55],"58":[2,55],"61":[2,55],"79":[2,55],"84":[2,55],"94":[2,55],"99":[2,55],"107":[2,55],"109":[2,55],"110":[2,55],"111":[2,55],"114":[2,55],"118":[2,55],"119":[2,55],"120":[2,55],"127":[2,55],"128":[2,55],"129":[2,55],"131":[2,55],"132":[2,55],"134":[2,55],"135":[2,55],"138":[2,55],"139":[2,55],"140":[2,55],"141":[2,55],"142":[2,55],"143":[2,55],"144":[2,55],"145":[2,55],"146":[2,55],"147":[2,55],"148":[2,55],"149":[2,55],"150":[2,55],"151":[2,55],"152":[2,55],"153":[2,55],"154":[2,55],"155":[2,55],"156":[2,55],"157":[2,55],"158":[2,55],"159":[2,55],"160":[2,55],"161":[2,55],"162":[2,55],"163":[2,55]},{"28":88,"49":[1,56]},{"1":[2,176],"4":[2,176],"29":[2,176],"30":[2,176],"50":[1,114],"58":[2,176],"61":[2,176],"79":[2,176],"84":[2,176],"94":[2,176],"99":[2,176],"107":[2,176],"108":129,"109":[2,176],"110":[2,176],"111":[2,176],"114":[2,176],"118":[2,176],"119":[2,176],"120":[2,176],"127":[2,176],"128":[2,176],"131":[2,176],"132":[2,176],"138":[2,176],"139":[2,176],"140":[2,176],"141":[2,176],"142":[2,176],"143":[2,176],"144":[2,176],"145":[2,176],"146":[2,176],"147":[2,176],"148":[2,176],"149":[2,176],"150":[2,176],"151":[2,176],"152":[2,176],"153":[2,176],"154":[2,176],"155":[2,176],"156":[2,176],"157":[2,176],"158":[2,176],"159":[2,176],"160":[2,176],"161":[2,176],"162":[2,176],"163":[2,176]},{"108":134,"109":[1,79],"111":[1,80],"114":[1,135],"127":[1,132],"128":[1,133]},{"1":[2,177],"4":[2,177],"29":[2,177],"30":[2,177],"50":[1,114],"58":[2,177],"61":[2,177],"79":[2,177],"84":[2,177],"94":[2,177],"99":[2,177],"107":[2,177],"108":129,"109":[2,177],"110":[2,177],"111":[2,177],"114":[2,177],"118":[2,177],"119":[2,177],"120":[2,177],"127":[2,177],"128":[2,177],"131":[2,177],"132":[2,177],"138":[2,177],"139":[2,177],"140":[2,177],"141":[2,177],"142":[2,177],"143":[2,177],"144":[2,177],"145":[2,177],"146":[2,177],"147":[2,177],"148":[2,177],"149":[2,177],"150":[2,177],"151":[2,177],"152":[2,177],"153":[2,177],"154":[2,177],"155":[2,177],"156":[2,177],"157":[2,177],"158":[2,177],"159":[2,177],"160":[2,177],"161":[2,177],"162":[2,177],"163":[2,177]},{"1":[2,178],"4":[2,178],"29":[2,178],"30":[2,178],"50":[1,114],"58":[2,178],"61":[2,178],"79":[2,178],"84":[2,178],"94":[2,178],"99":[2,178],"107":[2,178],"108":129,"109":[2,178],"110":[2,178],"111":[2,178],"114":[2,178],"118":[2,178],"119":[2,178],"120":[2,178],"127":[2,178],"128":[2,178],"131":[2,178],"132":[2,178],"138":[2,178],"139":[2,178],"140":[2,178],"141":[2,178],"142":[2,178],"143":[2,178],"144":[2,178],"145":[2,178],"146":[2,178],"147":[2,178],"148":[2,178],"149":[2,178],"150":[2,178],"151":[2,178],"152":[2,178],"153":[2,178],"154":[2,178],"155":[2,178],"156":[2,178],"157":[2,178],"158":[2,178],"159":[2,178],"160":[2,178],"161":[2,178],"162":[2,178],"163":[2,178]},{"1":[2,179],"4":[2,179],"29":[2,179],"30":[2,179],"50":[1,114],"58":[2,179],"61":[2,179],"79":[2,179],"84":[2,179],"94":[2,179],"99":[2,179],"107":[2,179],"108":129,"109":[2,179],"110":[2,179],"111":[2,179],"114":[2,179],"118":[2,179],"119":[2,179],"120":[2,179],"127":[2,179],"128":[2,179],"131":[2,179],"132":[2,179],"138":[2,179],"139":[2,179],"140":[2,179],"141":[2,179],"142":[2,179],"143":[2,179],"144":[2,179],"145":[2,179],"146":[2,179],"147":[2,179],"148":[2,179],"149":[2,179],"150":[2,179],"151":[2,179],"152":[2,179],"153":[2,179],"154":[2,179],"155":[2,179],"156":[2,179],"157":[2,179],"158":[2,179],"159":[2,179],"160":[2,179],"161":[2,179],"162":[2,179],"163":[2,179]},{"1":[2,180],"4":[2,180],"29":[2,180],"30":[2,180],"50":[1,114],"58":[2,180],"61":[2,180],"79":[2,180],"84":[2,180],"94":[2,180],"99":[2,180],"107":[2,180],"108":129,"109":[2,180],"110":[2,180],"111":[2,180],"114":[2,180],"118":[2,180],"119":[2,180],"120":[2,180],"127":[2,180],"128":[2,180],"131":[2,180],"132":[2,180],"138":[2,180],"139":[2,180],"140":[2,180],"141":[2,180],"142":[2,180],"143":[2,180],"144":[2,180],"145":[2,180],"146":[2,180],"147":[2,180],"148":[2,180],"149":[2,180],"150":[2,180],"151":[2,180],"152":[2,180],"153":[2,180],"154":[2,180],"155":[2,180],"156":[2,180],"157":[2,180],"158":[2,180],"159":[2,180],"160":[2,180],"161":[2,180],"162":[2,180],"163":[2,180]},{"1":[2,181],"4":[2,181],"29":[2,181],"30":[2,181],"50":[1,114],"58":[2,181],"61":[2,181],"79":[2,181],"84":[2,181],"94":[2,181],"99":[2,181],"107":[2,181],"108":129,"109":[2,181],"110":[2,181],"111":[2,181],"114":[2,181],"118":[2,181],"119":[2,181],"120":[2,181],"127":[2,181],"128":[2,181],"131":[2,181],"132":[2,181],"138":[2,181],"139":[2,181],"140":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"148":[2,181],"149":[2,181],"150":[2,181],"151":[2,181],"152":[2,181],"153":[2,181],"154":[2,181],"155":[2,181],"156":[2,181],"157":[2,181],"158":[2,181],"159":[2,181],"160":[2,181],"161":[2,181],"162":[2,181],"163":[2,181]},{"1":[2,182],"4":[2,182],"29":[2,182],"30":[2,182],"50":[1,114],"58":[2,182],"61":[2,182],"79":[2,182],"84":[2,182],"94":[2,182],"99":[2,182],"107":[2,182],"108":129,"109":[2,182],"110":[2,182],"111":[2,182],"114":[2,182],"118":[2,182],"119":[2,182],"120":[2,182],"127":[2,182],"128":[2,182],"131":[2,182],"132":[2,182],"138":[2,182],"139":[2,182],"140":[2,182],"141":[2,182],"142":[2,182],"143":[2,182],"144":[2,182],"145":[2,182],"146":[2,182],"147":[2,182],"148":[2,182],"149":[2,182],"150":[2,182],"151":[2,182],"152":[2,182],"153":[2,182],"154":[2,182],"155":[2,182],"156":[2,182],"157":[2,182],"158":[2,182],"159":[2,182],"160":[2,182],"161":[2,182],"162":[2,182],"163":[2,182]},{"1":[2,183],"4":[2,183],"29":[2,183],"30":[2,183],"50":[1,114],"58":[2,183],"61":[2,183],"79":[2,183],"84":[2,183],"94":[2,183],"99":[2,183],"107":[2,183],"108":129,"109":[2,183],"110":[2,183],"111":[2,183],"114":[2,183],"118":[2,183],"119":[2,183],"120":[2,183],"127":[2,183],"128":[2,183],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,183],"152":[2,183],"153":[2,183],"154":[2,183],"155":[2,183],"156":[2,183],"157":[2,183],"158":[2,183],"159":[2,183],"160":[2,183],"161":[2,183],"162":[2,183],"163":[1,123]},{"1":[2,184],"4":[2,184],"29":[2,184],"30":[2,184],"50":[1,114],"58":[2,184],"61":[2,184],"79":[2,184],"84":[2,184],"94":[2,184],"99":[2,184],"107":[2,184],"108":129,"109":[2,184],"110":[2,184],"111":[2,184],"114":[2,184],"118":[2,184],"119":[2,184],"120":[2,184],"127":[2,184],"128":[2,184],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,184],"152":[2,184],"153":[2,184],"154":[2,184],"155":[2,184],"156":[2,184],"157":[2,184],"158":[2,184],"159":[2,184],"160":[2,184],"161":[2,184],"162":[2,184],"163":[1,123]},{"4":[1,159],"6":259,"29":[1,6],"127":[1,258]},{"102":260,"103":[1,261],"104":[1,262]},{"1":[2,138],"4":[2,138],"29":[2,138],"30":[2,138],"50":[2,138],"58":[2,138],"61":[2,138],"79":[2,138],"84":[2,138],"94":[2,138],"99":[2,138],"107":[2,138],"109":[2,138],"110":[2,138],"111":[2,138],"114":[2,138],"118":[2,138],"119":[2,138],"120":[2,138],"127":[2,138],"128":[2,138],"129":[2,138],"131":[2,138],"132":[2,138],"134":[2,138],"135":[2,138],"138":[2,138],"139":[2,138],"140":[2,138],"141":[2,138],"142":[2,138],"143":[2,138],"144":[2,138],"145":[2,138],"146":[2,138],"147":[2,138],"148":[2,138],"149":[2,138],"150":[2,138],"151":[2,138],"152":[2,138],"153":[2,138],"154":[2,138],"155":[2,138],"156":[2,138],"157":[2,138],"158":[2,138],"159":[2,138],"160":[2,138],"161":[2,138],"162":[2,138],"163":[2,138]},{"116":263,"118":[1,264],"119":[1,265]},{"58":[1,266],"118":[2,150],"119":[2,150]},{"58":[2,147],"118":[2,147],"119":[2,147]},{"58":[2,148],"118":[2,148],"119":[2,148]},{"58":[2,149],"118":[2,149],"119":[2,149]},{"4":[2,120],"8":246,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":189,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,120],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"29":[1,267],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"122":268,"124":269,"125":[1,270]},{"14":271,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":153,"62":154,"64":184,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,94],"4":[2,94],"29":[1,273],"30":[2,94],"50":[2,94],"58":[2,94],"61":[2,94],"72":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"78":[2,70],"79":[2,94],"80":[2,70],"81":[2,70],"84":[2,94],"86":[1,272],"92":[2,70],"94":[2,94],"99":[2,94],"107":[2,94],"109":[2,94],"110":[2,94],"111":[2,94],"114":[2,94],"118":[2,94],"119":[2,94],"120":[2,94],"127":[2,94],"128":[2,94],"129":[2,94],"131":[2,94],"132":[2,94],"134":[2,94],"135":[2,94],"138":[2,94],"139":[2,94],"140":[2,94],"141":[2,94],"142":[2,94],"143":[2,94],"144":[2,94],"145":[2,94],"146":[2,94],"147":[2,94],"148":[2,94],"149":[2,94],"150":[2,94],"151":[2,94],"152":[2,94],"153":[2,94],"154":[2,94],"155":[2,94],"156":[2,94],"157":[2,94],"158":[2,94],"159":[2,94],"160":[2,94],"161":[2,94],"162":[2,94],"163":[2,94]},{"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"80":[1,146],"81":[1,147],"91":136,"92":[1,138]},{"63":150,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"80":[1,146],"81":[1,147],"91":149,"92":[1,138]},{"1":[2,50],"4":[2,50],"30":[2,50],"50":[1,114],"61":[1,131],"107":[2,50],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[2,50],"128":[2,50],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,132],"4":[2,132],"30":[2,132],"50":[1,114],"61":[1,131],"107":[2,132],"108":129,"109":[2,132],"111":[2,132],"114":[2,132],"118":[1,124],"119":[1,125],"127":[2,132],"128":[2,132],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"107":[1,274]},{"4":[2,121],"29":[2,121],"50":[1,114],"58":[2,121],"61":[1,275],"99":[2,121],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,58],"29":[2,58],"57":276,"58":[1,277],"99":[2,58]},{"1":[2,114],"4":[2,114],"29":[2,114],"30":[2,114],"46":[2,114],"50":[2,114],"58":[2,114],"61":[2,114],"72":[2,114],"73":[2,114],"74":[2,114],"75":[2,114],"78":[2,114],"79":[2,114],"80":[2,114],"81":[2,114],"84":[2,114],"86":[2,114],"92":[2,114],"94":[2,114],"99":[2,114],"107":[2,114],"109":[2,114],"110":[2,114],"111":[2,114],"114":[2,114],"118":[2,114],"119":[2,114],"120":[2,114],"127":[2,114],"128":[2,114],"129":[2,114],"131":[2,114],"132":[2,114],"134":[2,114],"135":[2,114],"138":[2,114],"139":[2,114],"140":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"147":[2,114],"148":[2,114],"149":[2,114],"150":[2,114],"151":[2,114],"152":[2,114],"153":[2,114],"154":[2,114],"155":[2,114],"156":[2,114],"157":[2,114],"158":[2,114],"159":[2,114],"160":[2,114],"161":[2,114],"162":[2,114],"163":[2,114]},{"1":[2,111],"4":[2,111],"29":[2,111],"30":[2,111],"50":[2,111],"58":[2,111],"61":[2,111],"79":[2,111],"84":[2,111],"94":[2,111],"99":[2,111],"107":[2,111],"109":[2,111],"110":[2,111],"111":[2,111],"114":[2,111],"118":[2,111],"119":[2,111],"120":[2,111],"127":[2,111],"128":[2,111],"129":[2,111],"131":[2,111],"132":[2,111],"134":[2,111],"135":[2,111],"138":[2,111],"139":[2,111],"140":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"147":[2,111],"148":[2,111],"149":[2,111],"150":[2,111],"151":[2,111],"152":[2,111],"153":[2,111],"154":[2,111],"155":[2,111],"156":[2,111],"157":[2,111],"158":[2,111],"159":[2,111],"160":[2,111],"161":[2,111],"162":[2,111],"163":[2,111]},{"4":[1,159],"6":278,"29":[1,6],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,159],"6":279,"29":[1,6],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,134],"4":[2,134],"29":[2,134],"30":[2,134],"50":[1,114],"58":[2,134],"61":[1,131],"79":[2,134],"84":[2,134],"94":[2,134],"99":[2,134],"107":[2,134],"108":129,"109":[1,79],"110":[1,280],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,134],"127":[2,134],"128":[2,134],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,136],"4":[2,136],"29":[2,136],"30":[2,136],"50":[1,114],"58":[2,136],"61":[1,131],"79":[2,136],"84":[2,136],"94":[2,136],"99":[2,136],"107":[2,136],"108":129,"109":[1,79],"110":[1,281],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,136],"127":[2,136],"128":[2,136],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,142],"4":[2,142],"29":[2,142],"30":[2,142],"50":[2,142],"58":[2,142],"61":[2,142],"79":[2,142],"84":[2,142],"94":[2,142],"99":[2,142],"107":[2,142],"109":[2,142],"110":[2,142],"111":[2,142],"114":[2,142],"118":[2,142],"119":[2,142],"120":[2,142],"127":[2,142],"128":[2,142],"129":[2,142],"131":[2,142],"132":[2,142],"134":[2,142],"135":[2,142],"138":[2,142],"139":[2,142],"140":[2,142],"141":[2,142],"142":[2,142],"143":[2,142],"144":[2,142],"145":[2,142],"146":[2,142],"147":[2,142],"148":[2,142],"149":[2,142],"150":[2,142],"151":[2,142],"152":[2,142],"153":[2,142],"154":[2,142],"155":[2,142],"156":[2,142],"157":[2,142],"158":[2,142],"159":[2,142],"160":[2,142],"161":[2,142],"162":[2,142],"163":[2,142]},{"1":[2,143],"4":[2,143],"29":[2,143],"30":[2,143],"50":[1,114],"58":[2,143],"61":[1,131],"79":[2,143],"84":[2,143],"94":[2,143],"99":[2,143],"107":[2,143],"108":129,"109":[1,79],"110":[2,143],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,143],"127":[2,143],"128":[2,143],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,58],"29":[2,58],"57":282,"58":[1,283],"84":[2,58]},{"4":[2,90],"29":[2,90],"30":[2,90],"58":[2,90],"84":[2,90]},{"4":[2,45],"29":[2,45],"30":[2,45],"46":[1,284],"58":[2,45],"84":[2,45]},{"4":[2,46],"29":[2,46],"30":[2,46],"46":[1,285],"58":[2,46],"84":[2,46]},{"4":[2,49],"29":[2,49],"30":[2,49],"58":[2,49],"84":[2,49]},{"1":[2,6],"4":[2,6],"30":[2,6]},{"1":[2,29],"4":[2,29],"29":[2,29],"30":[2,29],"50":[2,29],"58":[2,29],"61":[2,29],"79":[2,29],"84":[2,29],"94":[2,29],"99":[2,29],"103":[2,29],"104":[2,29],"107":[2,29],"109":[2,29],"110":[2,29],"111":[2,29],"114":[2,29],"118":[2,29],"119":[2,29],"120":[2,29],"123":[2,29],"125":[2,29],"127":[2,29],"128":[2,29],"129":[2,29],"131":[2,29],"132":[2,29],"134":[2,29],"135":[2,29],"138":[2,29],"139":[2,29],"140":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"148":[2,29],"149":[2,29],"150":[2,29],"151":[2,29],"152":[2,29],"153":[2,29],"154":[2,29],"155":[2,29],"156":[2,29],"157":[2,29],"158":[2,29],"159":[2,29],"160":[2,29],"161":[2,29],"162":[2,29],"163":[2,29]},{"1":[2,187],"4":[2,187],"29":[2,187],"30":[2,187],"50":[1,114],"58":[2,187],"61":[2,187],"79":[2,187],"84":[2,187],"94":[2,187],"99":[2,187],"107":[2,187],"108":129,"109":[2,187],"110":[2,187],"111":[2,187],"114":[2,187],"118":[2,187],"119":[2,187],"120":[2,187],"127":[2,187],"128":[2,187],"129":[1,126],"131":[2,187],"132":[2,187],"134":[1,93],"135":[1,94],"138":[2,187],"139":[2,187],"140":[2,187],"141":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"146":[2,187],"147":[2,187],"148":[2,187],"149":[2,187],"150":[2,187],"151":[2,187],"152":[2,187],"153":[2,187],"154":[2,187],"155":[2,187],"156":[2,187],"157":[2,187],"158":[2,187],"159":[2,187],"160":[2,187],"161":[2,187],"162":[2,187],"163":[2,187]},{"1":[2,188],"4":[2,188],"29":[2,188],"30":[2,188],"50":[1,114],"58":[2,188],"61":[2,188],"79":[2,188],"84":[2,188],"94":[2,188],"99":[2,188],"107":[2,188],"108":129,"109":[2,188],"110":[2,188],"111":[2,188],"114":[2,188],"118":[2,188],"119":[2,188],"120":[2,188],"127":[2,188],"128":[2,188],"129":[1,126],"131":[2,188],"132":[2,188],"134":[1,93],"135":[1,94],"138":[2,188],"139":[2,188],"140":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"147":[2,188],"148":[2,188],"149":[2,188],"150":[2,188],"151":[2,188],"152":[2,188],"153":[2,188],"154":[2,188],"155":[2,188],"156":[2,188],"157":[2,188],"158":[2,188],"159":[2,188],"160":[2,188],"161":[2,188],"162":[2,188],"163":[2,188]},{"1":[2,189],"4":[2,189],"29":[2,189],"30":[2,189],"50":[1,114],"58":[2,189],"61":[2,189],"79":[2,189],"84":[2,189],"94":[2,189],"99":[2,189],"107":[2,189],"108":129,"109":[2,189],"110":[2,189],"111":[2,189],"114":[2,189],"118":[2,189],"119":[2,189],"120":[2,189],"127":[2,189],"128":[2,189],"129":[1,126],"131":[2,189],"132":[2,189],"134":[1,93],"135":[1,94],"138":[2,189],"139":[2,189],"140":[2,189],"141":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"148":[2,189],"149":[2,189],"150":[2,189],"151":[2,189],"152":[2,189],"153":[2,189],"154":[2,189],"155":[2,189],"156":[2,189],"157":[2,189],"158":[2,189],"159":[2,189],"160":[2,189],"161":[2,189],"162":[2,189],"163":[2,189]},{"1":[2,190],"4":[2,190],"29":[2,190],"30":[2,190],"50":[1,114],"58":[2,190],"61":[2,190],"79":[2,190],"84":[2,190],"94":[2,190],"99":[2,190],"107":[2,190],"108":129,"109":[2,190],"110":[2,190],"111":[2,190],"114":[2,190],"118":[2,190],"119":[2,190],"120":[2,190],"127":[2,190],"128":[2,190],"129":[1,126],"131":[2,190],"132":[2,190],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,190],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"148":[2,190],"149":[2,190],"150":[2,190],"151":[2,190],"152":[2,190],"153":[2,190],"154":[2,190],"155":[2,190],"156":[2,190],"157":[2,190],"158":[2,190],"159":[2,190],"160":[2,190],"161":[2,190],"162":[2,190],"163":[2,190]},{"1":[2,191],"4":[2,191],"29":[2,191],"30":[2,191],"50":[1,114],"58":[2,191],"61":[2,191],"79":[2,191],"84":[2,191],"94":[2,191],"99":[2,191],"107":[2,191],"108":129,"109":[2,191],"110":[2,191],"111":[2,191],"114":[2,191],"118":[2,191],"119":[2,191],"120":[2,191],"127":[2,191],"128":[2,191],"129":[1,126],"131":[2,191],"132":[2,191],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,191],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"148":[2,191],"149":[2,191],"150":[2,191],"151":[2,191],"152":[2,191],"153":[2,191],"154":[2,191],"155":[2,191],"156":[2,191],"157":[2,191],"158":[2,191],"159":[2,191],"160":[2,191],"161":[2,191],"162":[2,191],"163":[2,191]},{"1":[2,192],"4":[2,192],"29":[2,192],"30":[2,192],"50":[1,114],"58":[2,192],"61":[2,192],"79":[2,192],"84":[2,192],"94":[2,192],"99":[2,192],"107":[2,192],"108":129,"109":[2,192],"110":[2,192],"111":[2,192],"114":[2,192],"118":[2,192],"119":[2,192],"120":[2,192],"127":[2,192],"128":[2,192],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,192],"142":[2,192],"143":[2,192],"144":[2,192],"145":[2,192],"146":[2,192],"147":[2,192],"148":[2,192],"149":[2,192],"150":[2,192],"151":[2,192],"152":[2,192],"153":[2,192],"154":[2,192],"155":[2,192],"156":[2,192],"157":[2,192],"158":[2,192],"159":[2,192],"160":[2,192],"161":[2,192],"162":[2,192],"163":[2,192]},{"1":[2,193],"4":[2,193],"29":[2,193],"30":[2,193],"50":[1,114],"58":[2,193],"61":[2,193],"79":[2,193],"84":[2,193],"94":[2,193],"99":[2,193],"107":[2,193],"108":129,"109":[2,193],"110":[2,193],"111":[2,193],"114":[2,193],"118":[2,193],"119":[2,193],"120":[2,193],"127":[2,193],"128":[2,193],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,193],"142":[2,193],"143":[2,193],"144":[2,193],"145":[2,193],"146":[2,193],"147":[2,193],"148":[2,193],"149":[2,193],"150":[2,193],"151":[2,193],"152":[2,193],"153":[2,193],"154":[2,193],"155":[2,193],"156":[2,193],"157":[2,193],"158":[2,193],"159":[2,193],"160":[2,193],"161":[2,193],"162":[2,193],"163":[2,193]},{"1":[2,194],"4":[2,194],"29":[2,194],"30":[2,194],"50":[1,114],"58":[2,194],"61":[2,194],"79":[2,194],"84":[2,194],"94":[2,194],"99":[2,194],"107":[2,194],"108":129,"109":[2,194],"110":[2,194],"111":[2,194],"114":[2,194],"118":[2,194],"119":[2,194],"120":[2,194],"127":[2,194],"128":[2,194],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,194],"142":[2,194],"143":[2,194],"144":[2,194],"145":[2,194],"146":[2,194],"147":[2,194],"148":[2,194],"149":[2,194],"150":[2,194],"151":[2,194],"152":[2,194],"153":[2,194],"154":[2,194],"155":[2,194],"156":[2,194],"157":[2,194],"158":[2,194],"159":[2,194],"160":[2,194],"161":[2,194],"162":[2,194],"163":[2,194]},{"1":[2,195],"4":[2,195],"29":[2,195],"30":[2,195],"50":[1,114],"58":[2,195],"61":[2,195],"79":[2,195],"84":[2,195],"94":[2,195],"99":[2,195],"107":[2,195],"108":129,"109":[2,195],"110":[2,195],"111":[2,195],"114":[2,195],"118":[2,195],"119":[2,195],"120":[2,195],"127":[2,195],"128":[2,195],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[2,195],"145":[2,195],"146":[2,195],"147":[2,195],"148":[2,195],"149":[2,195],"150":[2,195],"151":[2,195],"152":[2,195],"153":[2,195],"154":[2,195],"155":[2,195],"156":[2,195],"157":[2,195],"158":[2,195],"159":[2,195],"160":[2,195],"161":[2,195],"162":[2,195],"163":[2,195]},{"1":[2,196],"4":[2,196],"29":[2,196],"30":[2,196],"50":[1,114],"58":[2,196],"61":[2,196],"79":[2,196],"84":[2,196],"94":[2,196],"99":[2,196],"107":[2,196],"108":129,"109":[2,196],"110":[2,196],"111":[2,196],"114":[2,196],"118":[2,196],"119":[2,196],"120":[2,196],"127":[2,196],"128":[2,196],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[2,196],"145":[2,196],"146":[2,196],"147":[2,196],"148":[2,196],"149":[2,196],"150":[2,196],"151":[2,196],"152":[2,196],"153":[2,196],"154":[2,196],"155":[2,196],"156":[2,196],"157":[2,196],"158":[2,196],"159":[2,196],"160":[2,196],"161":[2,196],"162":[2,196],"163":[2,196]},{"1":[2,197],"4":[2,197],"29":[2,197],"30":[2,197],"50":[1,114],"58":[2,197],"61":[2,197],"79":[2,197],"84":[2,197],"94":[2,197],"99":[2,197],"107":[2,197],"108":129,"109":[2,197],"110":[2,197],"111":[2,197],"114":[2,197],"118":[2,197],"119":[2,197],"120":[2,197],"127":[2,197],"128":[2,197],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[2,197],"145":[2,197],"146":[2,197],"147":[2,197],"148":[2,197],"149":[2,197],"150":[2,197],"151":[2,197],"152":[2,197],"153":[2,197],"154":[2,197],"155":[2,197],"156":[2,197],"157":[2,197],"158":[2,197],"159":[2,197],"160":[2,197],"161":[2,197],"162":[2,197],"163":[2,197]},{"1":[2,198],"4":[2,198],"29":[2,198],"30":[2,198],"50":[1,114],"58":[2,198],"61":[2,198],"79":[2,198],"84":[2,198],"94":[2,198],"99":[2,198],"107":[2,198],"108":129,"109":[2,198],"110":[2,198],"111":[2,198],"114":[2,198],"118":[2,198],"119":[2,198],"120":[2,198],"127":[2,198],"128":[2,198],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,198],"148":[2,198],"149":[2,198],"150":[2,198],"151":[2,198],"152":[2,198],"153":[2,198],"154":[2,198],"155":[2,198],"156":[2,198],"157":[2,198],"158":[2,198],"159":[2,198],"160":[2,198],"161":[2,198],"162":[2,198],"163":[2,198]},{"1":[2,199],"4":[2,199],"29":[2,199],"30":[2,199],"50":[1,114],"58":[2,199],"61":[2,199],"79":[2,199],"84":[2,199],"94":[2,199],"99":[2,199],"107":[2,199],"108":129,"109":[2,199],"110":[2,199],"111":[2,199],"114":[2,199],"118":[2,199],"119":[2,199],"120":[2,199],"127":[2,199],"128":[2,199],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,199],"148":[2,199],"149":[2,199],"150":[2,199],"151":[2,199],"152":[2,199],"153":[2,199],"154":[2,199],"155":[2,199],"156":[2,199],"157":[2,199],"158":[2,199],"159":[2,199],"160":[2,199],"161":[2,199],"162":[2,199],"163":[2,199]},{"1":[2,200],"4":[2,200],"29":[2,200],"30":[2,200],"50":[1,114],"58":[2,200],"61":[2,200],"79":[2,200],"84":[2,200],"94":[2,200],"99":[2,200],"107":[2,200],"108":129,"109":[2,200],"110":[2,200],"111":[2,200],"114":[2,200],"118":[2,200],"119":[2,200],"120":[2,200],"127":[2,200],"128":[2,200],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,200],"148":[2,200],"149":[2,200],"150":[2,200],"151":[2,200],"152":[2,200],"153":[2,200],"154":[2,200],"155":[2,200],"156":[2,200],"157":[2,200],"158":[2,200],"159":[2,200],"160":[2,200],"161":[2,200],"162":[2,200],"163":[2,200]},{"1":[2,201],"4":[2,201],"29":[2,201],"30":[2,201],"50":[1,114],"58":[2,201],"61":[2,201],"79":[2,201],"84":[2,201],"94":[2,201],"99":[2,201],"107":[2,201],"108":129,"109":[2,201],"110":[2,201],"111":[2,201],"114":[2,201],"118":[2,201],"119":[2,201],"120":[2,201],"127":[2,201],"128":[2,201],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,201],"148":[2,201],"149":[2,201],"150":[2,201],"151":[2,201],"152":[2,201],"153":[2,201],"154":[2,201],"155":[2,201],"156":[2,201],"157":[2,201],"158":[2,201],"159":[2,201],"160":[2,201],"161":[2,201],"162":[2,201],"163":[2,201]},{"1":[2,202],"4":[2,202],"29":[2,202],"30":[2,202],"50":[1,114],"58":[2,202],"61":[2,202],"79":[2,202],"84":[2,202],"94":[2,202],"99":[2,202],"107":[2,202],"108":129,"109":[2,202],"110":[2,202],"111":[2,202],"114":[2,202],"118":[2,202],"119":[2,202],"120":[2,202],"127":[2,202],"128":[2,202],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,202],"152":[2,202],"153":[2,202],"154":[2,202],"155":[2,202],"156":[2,202],"157":[2,202],"158":[2,202],"159":[2,202],"160":[2,202],"161":[2,202],"162":[2,202],"163":[1,123]},{"1":[2,203],"4":[2,203],"29":[2,203],"30":[2,203],"50":[1,114],"58":[2,203],"61":[2,203],"79":[2,203],"84":[2,203],"94":[2,203],"99":[2,203],"107":[2,203],"108":129,"109":[2,203],"110":[2,203],"111":[2,203],"114":[2,203],"118":[2,203],"119":[2,203],"120":[2,203],"127":[2,203],"128":[2,203],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,203],"152":[2,203],"153":[2,203],"154":[2,203],"155":[2,203],"156":[2,203],"157":[2,203],"158":[2,203],"159":[2,203],"160":[2,203],"161":[2,203],"162":[2,203],"163":[1,123]},{"1":[2,204],"4":[2,204],"29":[2,204],"30":[2,204],"50":[1,114],"58":[2,204],"61":[2,204],"79":[2,204],"84":[2,204],"94":[2,204],"99":[2,204],"107":[2,204],"108":129,"109":[2,204],"110":[2,204],"111":[2,204],"114":[2,204],"118":[2,204],"119":[2,204],"120":[2,204],"127":[2,204],"128":[2,204],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[2,204],"154":[2,204],"155":[2,204],"156":[2,204],"157":[2,204],"158":[2,204],"159":[2,204],"160":[2,204],"161":[2,204],"162":[2,204],"163":[1,123]},{"1":[2,205],"4":[2,205],"29":[2,205],"30":[2,205],"50":[1,114],"58":[2,205],"61":[2,205],"79":[2,205],"84":[2,205],"94":[2,205],"99":[2,205],"107":[2,205],"108":129,"109":[2,205],"110":[2,205],"111":[2,205],"114":[2,205],"118":[2,205],"119":[2,205],"120":[2,205],"127":[2,205],"128":[2,205],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[2,205],"154":[2,205],"155":[2,205],"156":[2,205],"157":[2,205],"158":[2,205],"159":[2,205],"160":[2,205],"161":[2,205],"162":[2,205],"163":[1,123]},{"1":[2,206],"4":[2,206],"29":[2,206],"30":[2,206],"50":[2,206],"58":[2,206],"61":[2,206],"79":[2,206],"84":[2,206],"94":[2,206],"99":[2,206],"107":[2,206],"108":129,"109":[2,206],"110":[2,206],"111":[2,206],"114":[2,206],"118":[2,206],"119":[2,206],"120":[2,206],"127":[2,206],"128":[2,206],"129":[2,206],"131":[2,206],"132":[2,206],"134":[2,206],"135":[2,206],"138":[2,206],"139":[2,206],"140":[2,206],"141":[2,206],"142":[2,206],"143":[2,206],"144":[2,206],"145":[2,206],"146":[2,206],"147":[2,206],"148":[2,206],"149":[2,206],"150":[2,206],"151":[2,206],"152":[2,206],"153":[2,206],"154":[2,206],"155":[2,206],"156":[2,206],"157":[2,206],"158":[2,206],"159":[2,206],"160":[2,206],"161":[2,206],"162":[2,206],"163":[2,206]},{"1":[2,207],"4":[2,207],"29":[2,207],"30":[2,207],"50":[1,114],"58":[2,207],"61":[2,207],"79":[2,207],"84":[2,207],"94":[2,207],"99":[2,207],"107":[2,207],"108":129,"109":[2,207],"110":[2,207],"111":[2,207],"114":[2,207],"118":[2,207],"119":[2,207],"120":[2,207],"127":[2,207],"128":[2,207],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,208],"4":[2,208],"29":[2,208],"30":[2,208],"50":[1,114],"58":[2,208],"61":[2,208],"79":[2,208],"84":[2,208],"94":[2,208],"99":[2,208],"107":[2,208],"108":129,"109":[2,208],"110":[2,208],"111":[2,208],"114":[2,208],"118":[2,208],"119":[2,208],"120":[2,208],"127":[2,208],"128":[2,208],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,209],"4":[2,209],"29":[2,209],"30":[2,209],"50":[1,114],"58":[2,209],"61":[2,209],"79":[2,209],"84":[2,209],"94":[2,209],"99":[2,209],"107":[2,209],"108":129,"109":[2,209],"110":[2,209],"111":[2,209],"114":[2,209],"118":[2,209],"119":[2,209],"120":[2,209],"127":[2,209],"128":[2,209],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,210],"4":[2,210],"29":[2,210],"30":[2,210],"50":[1,114],"58":[2,210],"61":[2,210],"79":[2,210],"84":[2,210],"94":[2,210],"99":[2,210],"107":[2,210],"108":129,"109":[2,210],"110":[2,210],"111":[2,210],"114":[2,210],"118":[2,210],"119":[2,210],"120":[2,210],"127":[2,210],"128":[2,210],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,211],"4":[2,211],"29":[2,211],"30":[2,211],"50":[1,114],"58":[2,211],"61":[2,211],"79":[2,211],"84":[2,211],"94":[2,211],"99":[2,211],"107":[2,211],"108":129,"109":[2,211],"110":[2,211],"111":[2,211],"114":[2,211],"118":[2,211],"119":[2,211],"120":[2,211],"127":[2,211],"128":[2,211],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,212],"4":[2,212],"29":[2,212],"30":[2,212],"50":[1,114],"58":[2,212],"61":[2,212],"79":[2,212],"84":[2,212],"94":[2,212],"99":[2,212],"107":[2,212],"108":129,"109":[2,212],"110":[2,212],"111":[2,212],"114":[2,212],"118":[2,212],"119":[2,212],"120":[2,212],"127":[2,212],"128":[2,212],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,213],"4":[2,213],"29":[2,213],"30":[2,213],"50":[1,114],"58":[2,213],"61":[2,213],"79":[2,213],"84":[2,213],"94":[2,213],"99":[2,213],"107":[2,213],"108":129,"109":[2,213],"110":[2,213],"111":[2,213],"114":[2,213],"118":[2,213],"119":[2,213],"120":[2,213],"127":[2,213],"128":[2,213],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,214],"4":[2,214],"29":[2,214],"30":[2,214],"50":[1,114],"58":[2,214],"61":[2,214],"79":[2,214],"84":[2,214],"94":[2,214],"99":[2,214],"107":[2,214],"108":129,"109":[2,214],"110":[2,214],"111":[2,214],"114":[2,214],"118":[2,214],"119":[2,214],"120":[2,214],"127":[2,214],"128":[2,214],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,215],"4":[2,215],"29":[2,215],"30":[2,215],"50":[1,114],"58":[2,215],"61":[2,215],"79":[2,215],"84":[2,215],"94":[2,215],"99":[2,215],"107":[2,215],"108":129,"109":[2,215],"110":[2,215],"111":[2,215],"114":[2,215],"118":[2,215],"119":[2,215],"120":[2,215],"127":[2,215],"128":[2,215],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,215],"152":[2,215],"153":[2,215],"154":[2,215],"155":[2,215],"156":[2,215],"157":[2,215],"158":[2,215],"159":[2,215],"160":[2,215],"161":[2,215],"162":[2,215],"163":[1,123]},{"1":[2,216],"4":[2,216],"29":[2,216],"30":[2,216],"50":[1,114],"58":[2,216],"61":[1,131],"79":[2,216],"84":[2,216],"94":[2,216],"99":[2,216],"107":[2,216],"108":129,"109":[2,216],"110":[2,216],"111":[2,216],"114":[2,216],"118":[1,124],"119":[1,125],"120":[2,216],"127":[2,216],"128":[2,216],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,217],"4":[2,217],"29":[2,217],"30":[2,217],"50":[1,114],"58":[2,217],"61":[1,131],"79":[2,217],"84":[2,217],"94":[2,217],"99":[2,217],"107":[2,217],"108":129,"109":[2,217],"110":[2,217],"111":[2,217],"114":[2,217],"118":[1,124],"119":[1,125],"120":[2,217],"127":[2,217],"128":[2,217],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"8":286,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":287,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,173],"4":[2,173],"29":[2,173],"30":[2,173],"50":[1,114],"58":[2,173],"61":[1,131],"79":[2,173],"84":[2,173],"94":[2,173],"99":[2,173],"107":[2,173],"108":129,"109":[1,79],"110":[2,173],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,173],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,175],"4":[2,175],"29":[2,175],"30":[2,175],"50":[1,114],"58":[2,175],"61":[1,131],"79":[2,175],"84":[2,175],"94":[2,175],"99":[2,175],"107":[2,175],"108":129,"109":[1,79],"110":[2,175],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,175],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"116":288,"118":[1,264],"119":[1,265]},{"61":[1,289]},{"1":[2,172],"4":[2,172],"29":[2,172],"30":[2,172],"50":[1,114],"58":[2,172],"61":[1,131],"79":[2,172],"84":[2,172],"94":[2,172],"99":[2,172],"107":[2,172],"108":129,"109":[1,79],"110":[2,172],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,172],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,174],"4":[2,174],"29":[2,174],"30":[2,174],"50":[1,114],"58":[2,174],"61":[1,131],"79":[2,174],"84":[2,174],"94":[2,174],"99":[2,174],"107":[2,174],"108":129,"109":[1,79],"110":[2,174],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,174],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"116":290,"118":[1,264],"119":[1,265]},{"4":[2,58],"29":[2,58],"57":291,"58":[1,277],"94":[2,58]},{"4":[2,121],"29":[2,121],"30":[2,121],"50":[1,114],"58":[2,121],"61":[1,131],"94":[2,121],"99":[2,121],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,79],"4":[2,79],"29":[2,79],"30":[2,79],"46":[2,79],"50":[2,79],"58":[2,79],"61":[2,79],"72":[2,79],"73":[2,79],"74":[2,79],"75":[2,79],"78":[2,79],"79":[2,79],"80":[2,79],"81":[2,79],"84":[2,79],"86":[2,79],"92":[2,79],"94":[2,79],"99":[2,79],"107":[2,79],"109":[2,79],"110":[2,79],"111":[2,79],"114":[2,79],"118":[2,79],"119":[2,79],"120":[2,79],"127":[2,79],"128":[2,79],"129":[2,79],"131":[2,79],"132":[2,79],"134":[2,79],"135":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79],"151":[2,79],"152":[2,79],"153":[2,79],"154":[2,79],"155":[2,79],"156":[2,79],"157":[2,79],"158":[2,79],"159":[2,79],"160":[2,79],"161":[2,79],"162":[2,79],"163":[2,79]},{"1":[2,80],"4":[2,80],"29":[2,80],"30":[2,80],"46":[2,80],"50":[2,80],"58":[2,80],"61":[2,80],"72":[2,80],"73":[2,80],"74":[2,80],"75":[2,80],"78":[2,80],"79":[2,80],"80":[2,80],"81":[2,80],"84":[2,80],"86":[2,80],"92":[2,80],"94":[2,80],"99":[2,80],"107":[2,80],"109":[2,80],"110":[2,80],"111":[2,80],"114":[2,80],"118":[2,80],"119":[2,80],"120":[2,80],"127":[2,80],"128":[2,80],"129":[2,80],"131":[2,80],"132":[2,80],"134":[2,80],"135":[2,80],"138":[2,80],"139":[2,80],"140":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80],"151":[2,80],"152":[2,80],"153":[2,80],"154":[2,80],"155":[2,80],"156":[2,80],"157":[2,80],"158":[2,80],"159":[2,80],"160":[2,80],"161":[2,80],"162":[2,80],"163":[2,80]},{"1":[2,82],"4":[2,82],"29":[2,82],"30":[2,82],"46":[2,82],"50":[2,82],"58":[2,82],"61":[2,82],"72":[2,82],"73":[2,82],"74":[2,82],"75":[2,82],"78":[2,82],"79":[2,82],"80":[2,82],"81":[2,82],"84":[2,82],"86":[2,82],"92":[2,82],"94":[2,82],"99":[2,82],"107":[2,82],"109":[2,82],"110":[2,82],"111":[2,82],"114":[2,82],"118":[2,82],"119":[2,82],"120":[2,82],"127":[2,82],"128":[2,82],"129":[2,82],"131":[2,82],"132":[2,82],"134":[2,82],"135":[2,82],"138":[2,82],"139":[2,82],"140":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82],"151":[2,82],"152":[2,82],"153":[2,82],"154":[2,82],"155":[2,82],"156":[2,82],"157":[2,82],"158":[2,82],"159":[2,82],"160":[2,82],"161":[2,82],"162":[2,82],"163":[2,82]},{"50":[1,114],"61":[1,293],"79":[1,292],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,86],"4":[2,86],"29":[2,86],"30":[2,86],"46":[2,86],"50":[2,86],"58":[2,86],"61":[2,86],"72":[2,86],"73":[2,86],"74":[2,86],"75":[2,86],"78":[2,86],"79":[2,86],"80":[2,86],"81":[2,86],"84":[2,86],"86":[2,86],"92":[2,86],"94":[2,86],"99":[2,86],"107":[2,86],"109":[2,86],"110":[2,86],"111":[2,86],"114":[2,86],"118":[2,86],"119":[2,86],"120":[2,86],"127":[2,86],"128":[2,86],"129":[2,86],"131":[2,86],"132":[2,86],"134":[2,86],"135":[2,86],"138":[2,86],"139":[2,86],"140":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"148":[2,86],"149":[2,86],"150":[2,86],"151":[2,86],"152":[2,86],"153":[2,86],"154":[2,86],"155":[2,86],"156":[2,86],"157":[2,86],"158":[2,86],"159":[2,86],"160":[2,86],"161":[2,86],"162":[2,86],"163":[2,86]},{"8":294,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,87],"4":[2,87],"29":[2,87],"30":[2,87],"46":[2,87],"50":[2,87],"58":[2,87],"61":[2,87],"72":[2,87],"73":[2,87],"74":[2,87],"75":[2,87],"78":[2,87],"79":[2,87],"80":[2,87],"81":[2,87],"84":[2,87],"86":[2,87],"92":[2,87],"94":[2,87],"99":[2,87],"107":[2,87],"109":[2,87],"110":[2,87],"111":[2,87],"114":[2,87],"118":[2,87],"119":[2,87],"120":[2,87],"127":[2,87],"128":[2,87],"129":[2,87],"131":[2,87],"132":[2,87],"134":[2,87],"135":[2,87],"138":[2,87],"139":[2,87],"140":[2,87],"141":[2,87],"142":[2,87],"143":[2,87],"144":[2,87],"145":[2,87],"146":[2,87],"147":[2,87],"148":[2,87],"149":[2,87],"150":[2,87],"151":[2,87],"152":[2,87],"153":[2,87],"154":[2,87],"155":[2,87],"156":[2,87],"157":[2,87],"158":[2,87],"159":[2,87],"160":[2,87],"161":[2,87],"162":[2,87],"163":[2,87]},{"1":[2,44],"4":[2,44],"29":[2,44],"30":[2,44],"50":[1,114],"58":[2,44],"61":[1,131],"79":[2,44],"84":[2,44],"94":[2,44],"99":[2,44],"107":[2,44],"108":129,"109":[1,79],"110":[2,44],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,44],"127":[2,44],"128":[2,44],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"54":295,"55":[1,75],"56":[1,76]},{"59":296,"60":[1,157]},{"61":[1,297]},{"8":298,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,170],"4":[2,170],"29":[2,170],"30":[2,170],"50":[2,170],"58":[2,170],"61":[2,170],"79":[2,170],"84":[2,170],"94":[2,170],"99":[2,170],"107":[2,170],"109":[2,170],"110":[2,170],"111":[2,170],"114":[2,170],"118":[2,170],"119":[2,170],"120":[2,170],"123":[2,170],"127":[2,170],"128":[2,170],"129":[2,170],"131":[2,170],"132":[2,170],"134":[2,170],"135":[2,170],"138":[2,170],"139":[2,170],"140":[2,170],"141":[2,170],"142":[2,170],"143":[2,170],"144":[2,170],"145":[2,170],"146":[2,170],"147":[2,170],"148":[2,170],"149":[2,170],"150":[2,170],"151":[2,170],"152":[2,170],"153":[2,170],"154":[2,170],"155":[2,170],"156":[2,170],"157":[2,170],"158":[2,170],"159":[2,170],"160":[2,170],"161":[2,170],"162":[2,170],"163":[2,170]},{"1":[2,127],"4":[2,127],"29":[2,127],"30":[2,127],"50":[2,127],"58":[2,127],"61":[2,127],"79":[2,127],"84":[2,127],"94":[2,127],"99":[2,127],"103":[1,299],"107":[2,127],"109":[2,127],"110":[2,127],"111":[2,127],"114":[2,127],"118":[2,127],"119":[2,127],"120":[2,127],"127":[2,127],"128":[2,127],"129":[2,127],"131":[2,127],"132":[2,127],"134":[2,127],"135":[2,127],"138":[2,127],"139":[2,127],"140":[2,127],"141":[2,127],"142":[2,127],"143":[2,127],"144":[2,127],"145":[2,127],"146":[2,127],"147":[2,127],"148":[2,127],"149":[2,127],"150":[2,127],"151":[2,127],"152":[2,127],"153":[2,127],"154":[2,127],"155":[2,127],"156":[2,127],"157":[2,127],"158":[2,127],"159":[2,127],"160":[2,127],"161":[2,127],"162":[2,127],"163":[2,127]},{"4":[1,159],"6":300,"29":[1,6]},{"31":301,"32":[1,87]},{"4":[1,159],"6":302,"29":[1,6]},{"8":303,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":304,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"31":175,"32":[1,87],"66":176,"67":177,"82":[1,84],"98":[1,178],"117":305},{"122":306,"124":269,"125":[1,270]},{"30":[1,307],"123":[1,308],"124":309,"125":[1,270]},{"30":[2,163],"123":[2,163],"125":[2,163]},{"8":311,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"100":310,"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,107],"4":[2,107],"29":[2,107],"30":[2,107],"50":[2,107],"58":[2,107],"61":[2,107],"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,107],"80":[1,146],"81":[1,147],"84":[2,107],"91":136,"92":[1,138],"94":[2,107],"99":[2,107],"107":[2,107],"109":[2,107],"110":[2,107],"111":[2,107],"114":[2,107],"118":[2,107],"119":[2,107],"120":[2,107],"127":[2,107],"128":[2,107],"129":[2,107],"131":[2,107],"132":[2,107],"134":[2,107],"135":[2,107],"138":[2,107],"139":[2,107],"140":[2,107],"141":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"148":[2,107],"149":[2,107],"150":[2,107],"151":[2,107],"152":[2,107],"153":[2,107],"154":[2,107],"155":[2,107],"156":[2,107],"157":[2,107],"158":[2,107],"159":[2,107],"160":[2,107],"161":[2,107],"162":[2,107],"163":[2,107]},{"14":312,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":153,"62":154,"64":184,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"4":[2,100],"28":202,"30":[2,100],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":315,"49":[1,56],"65":316,"87":313,"88":314,"97":[1,317]},{"1":[2,133],"4":[2,133],"29":[2,133],"30":[2,133],"50":[2,133],"58":[2,133],"61":[2,133],"72":[2,133],"73":[2,133],"74":[2,133],"75":[2,133],"78":[2,133],"79":[2,133],"80":[2,133],"81":[2,133],"84":[2,133],"92":[2,133],"94":[2,133],"99":[2,133],"107":[2,133],"109":[2,133],"110":[2,133],"111":[2,133],"114":[2,133],"118":[2,133],"119":[2,133],"120":[2,133],"127":[2,133],"128":[2,133],"129":[2,133],"131":[2,133],"132":[2,133],"134":[2,133],"135":[2,133],"138":[2,133],"139":[2,133],"140":[2,133],"141":[2,133],"142":[2,133],"143":[2,133],"144":[2,133],"145":[2,133],"146":[2,133],"147":[2,133],"148":[2,133],"149":[2,133],"150":[2,133],"151":[2,133],"152":[2,133],"153":[2,133],"154":[2,133],"155":[2,133],"156":[2,133],"157":[2,133],"158":[2,133],"159":[2,133],"160":[2,133],"161":[2,133],"162":[2,133],"163":[2,133]},{"61":[1,318]},{"4":[1,320],"29":[1,321],"99":[1,319]},{"4":[2,59],"8":322,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,59],"30":[2,59],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"94":[2,59],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,59],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,167],"4":[2,167],"29":[2,167],"30":[2,167],"50":[2,167],"58":[2,167],"61":[2,167],"79":[2,167],"84":[2,167],"94":[2,167],"99":[2,167],"107":[2,167],"109":[2,167],"110":[2,167],"111":[2,167],"114":[2,167],"118":[2,167],"119":[2,167],"120":[2,167],"123":[2,167],"127":[2,167],"128":[2,167],"129":[2,167],"131":[2,167],"132":[2,167],"134":[2,167],"135":[2,167],"138":[2,167],"139":[2,167],"140":[2,167],"141":[2,167],"142":[2,167],"143":[2,167],"144":[2,167],"145":[2,167],"146":[2,167],"147":[2,167],"148":[2,167],"149":[2,167],"150":[2,167],"151":[2,167],"152":[2,167],"153":[2,167],"154":[2,167],"155":[2,167],"156":[2,167],"157":[2,167],"158":[2,167],"159":[2,167],"160":[2,167],"161":[2,167],"162":[2,167],"163":[2,167]},{"1":[2,168],"4":[2,168],"29":[2,168],"30":[2,168],"50":[2,168],"58":[2,168],"61":[2,168],"79":[2,168],"84":[2,168],"94":[2,168],"99":[2,168],"107":[2,168],"109":[2,168],"110":[2,168],"111":[2,168],"114":[2,168],"118":[2,168],"119":[2,168],"120":[2,168],"123":[2,168],"127":[2,168],"128":[2,168],"129":[2,168],"131":[2,168],"132":[2,168],"134":[2,168],"135":[2,168],"138":[2,168],"139":[2,168],"140":[2,168],"141":[2,168],"142":[2,168],"143":[2,168],"144":[2,168],"145":[2,168],"146":[2,168],"147":[2,168],"148":[2,168],"149":[2,168],"150":[2,168],"151":[2,168],"152":[2,168],"153":[2,168],"154":[2,168],"155":[2,168],"156":[2,168],"157":[2,168],"158":[2,168],"159":[2,168],"160":[2,168],"161":[2,168],"162":[2,168],"163":[2,168]},{"8":323,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":324,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[1,326],"29":[1,327],"84":[1,325]},{"4":[2,59],"28":202,"29":[2,59],"30":[2,59],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":328,"49":[1,56],"84":[2,59]},{"8":329,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":330,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,218],"4":[2,218],"29":[2,218],"30":[2,218],"50":[1,114],"58":[2,218],"61":[2,218],"79":[2,218],"84":[2,218],"94":[2,218],"99":[2,218],"107":[2,218],"108":129,"109":[2,218],"110":[2,218],"111":[2,218],"114":[2,218],"118":[2,218],"119":[2,218],"120":[2,218],"127":[2,218],"128":[2,218],"131":[2,218],"132":[2,218],"138":[2,218],"139":[2,218],"140":[2,218],"141":[2,218],"142":[2,218],"143":[2,218],"144":[2,218],"145":[2,218],"146":[2,218],"147":[2,218],"148":[2,218],"149":[2,218],"150":[2,218],"151":[2,218],"152":[2,218],"153":[2,218],"154":[2,218],"155":[2,218],"156":[2,218],"157":[2,218],"158":[2,218],"159":[2,218],"160":[2,218],"161":[2,218],"162":[2,218],"163":[2,218]},{"1":[2,219],"4":[2,219],"29":[2,219],"30":[2,219],"50":[1,114],"58":[2,219],"61":[2,219],"79":[2,219],"84":[2,219],"94":[2,219],"99":[2,219],"107":[2,219],"108":129,"109":[2,219],"110":[2,219],"111":[2,219],"114":[2,219],"118":[2,219],"119":[2,219],"120":[2,219],"127":[2,219],"128":[2,219],"131":[2,219],"132":[2,219],"138":[2,219],"139":[2,219],"140":[2,219],"141":[2,219],"142":[2,219],"143":[2,219],"144":[2,219],"145":[2,219],"146":[2,219],"147":[2,219],"148":[2,219],"149":[2,219],"150":[2,219],"151":[2,219],"152":[2,219],"153":[2,219],"154":[2,219],"155":[2,219],"156":[2,219],"157":[2,219],"158":[2,219],"159":[2,219],"160":[2,219],"161":[2,219],"162":[2,219],"163":[2,219]},{"1":[2,145],"4":[2,145],"29":[2,145],"30":[2,145],"50":[2,145],"58":[2,145],"61":[2,145],"79":[2,145],"84":[2,145],"94":[2,145],"99":[2,145],"107":[2,145],"109":[2,145],"110":[2,145],"111":[2,145],"114":[2,145],"118":[2,145],"119":[2,145],"120":[2,145],"127":[2,145],"128":[2,145],"129":[2,145],"131":[2,145],"132":[2,145],"134":[2,145],"135":[2,145],"138":[2,145],"139":[2,145],"140":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"146":[2,145],"147":[2,145],"148":[2,145],"149":[2,145],"150":[2,145],"151":[2,145],"152":[2,145],"153":[2,145],"154":[2,145],"155":[2,145],"156":[2,145],"157":[2,145],"158":[2,145],"159":[2,145],"160":[2,145],"161":[2,145],"162":[2,145],"163":[2,145]},{"1":[2,65],"4":[2,65],"29":[2,65],"30":[2,65],"50":[2,65],"58":[2,65],"61":[2,65],"79":[2,65],"84":[2,65],"94":[2,65],"99":[2,65],"107":[2,65],"109":[2,65],"110":[2,65],"111":[2,65],"114":[2,65],"118":[2,65],"119":[2,65],"120":[2,65],"127":[2,65],"128":[2,65],"129":[2,65],"131":[2,65],"132":[2,65],"134":[2,65],"135":[2,65],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65]},{"1":[2,144],"4":[2,144],"29":[2,144],"30":[2,144],"50":[2,144],"58":[2,144],"61":[2,144],"79":[2,144],"84":[2,144],"94":[2,144],"99":[2,144],"107":[2,144],"109":[2,144],"110":[2,144],"111":[2,144],"114":[2,144],"118":[2,144],"119":[2,144],"120":[2,144],"127":[2,144],"128":[2,144],"129":[2,144],"131":[2,144],"132":[2,144],"134":[2,144],"135":[2,144],"138":[2,144],"139":[2,144],"140":[2,144],"141":[2,144],"142":[2,144],"143":[2,144],"144":[2,144],"145":[2,144],"146":[2,144],"147":[2,144],"148":[2,144],"149":[2,144],"150":[2,144],"151":[2,144],"152":[2,144],"153":[2,144],"154":[2,144],"155":[2,144],"156":[2,144],"157":[2,144],"158":[2,144],"159":[2,144],"160":[2,144],"161":[2,144],"162":[2,144],"163":[2,144]},{"4":[1,320],"29":[1,321],"94":[1,331]},{"1":[2,85],"4":[2,85],"29":[2,85],"30":[2,85],"46":[2,85],"50":[2,85],"58":[2,85],"61":[2,85],"72":[2,85],"73":[2,85],"74":[2,85],"75":[2,85],"78":[2,85],"79":[2,85],"80":[2,85],"81":[2,85],"84":[2,85],"86":[2,85],"92":[2,85],"94":[2,85],"99":[2,85],"107":[2,85],"109":[2,85],"110":[2,85],"111":[2,85],"114":[2,85],"118":[2,85],"119":[2,85],"120":[2,85],"127":[2,85],"128":[2,85],"129":[2,85],"131":[2,85],"132":[2,85],"134":[2,85],"135":[2,85],"138":[2,85],"139":[2,85],"140":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"148":[2,85],"149":[2,85],"150":[2,85],"151":[2,85],"152":[2,85],"153":[2,85],"154":[2,85],"155":[2,85],"156":[2,85],"157":[2,85],"158":[2,85],"159":[2,85],"160":[2,85],"161":[2,85],"162":[2,85],"163":[2,85]},{"61":[1,332]},{"50":[1,114],"61":[1,131],"79":[1,292],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,159],"6":333,"29":[1,6]},{"53":[2,62],"58":[2,62],"61":[1,257]},{"61":[1,334]},{"4":[1,159],"6":335,"29":[1,6],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,159],"6":336,"29":[1,6]},{"1":[2,128],"4":[2,128],"29":[2,128],"30":[2,128],"50":[2,128],"58":[2,128],"61":[2,128],"79":[2,128],"84":[2,128],"94":[2,128],"99":[2,128],"107":[2,128],"109":[2,128],"110":[2,128],"111":[2,128],"114":[2,128],"118":[2,128],"119":[2,128],"120":[2,128],"127":[2,128],"128":[2,128],"129":[2,128],"131":[2,128],"132":[2,128],"134":[2,128],"135":[2,128],"138":[2,128],"139":[2,128],"140":[2,128],"141":[2,128],"142":[2,128],"143":[2,128],"144":[2,128],"145":[2,128],"146":[2,128],"147":[2,128],"148":[2,128],"149":[2,128],"150":[2,128],"151":[2,128],"152":[2,128],"153":[2,128],"154":[2,128],"155":[2,128],"156":[2,128],"157":[2,128],"158":[2,128],"159":[2,128],"160":[2,128],"161":[2,128],"162":[2,128],"163":[2,128]},{"4":[1,338],"6":337,"29":[1,6]},{"1":[2,146],"4":[2,146],"29":[2,146],"30":[2,146],"50":[2,146],"58":[2,146],"61":[2,146],"79":[2,146],"84":[2,146],"94":[2,146],"99":[2,146],"107":[2,146],"109":[2,146],"110":[2,146],"111":[2,146],"114":[2,146],"118":[2,146],"119":[2,146],"120":[2,146],"127":[2,146],"128":[2,146],"129":[2,146],"131":[2,146],"132":[2,146],"134":[2,146],"135":[2,146],"138":[2,146],"139":[2,146],"140":[2,146],"141":[2,146],"142":[2,146],"143":[2,146],"144":[2,146],"145":[2,146],"146":[2,146],"147":[2,146],"148":[2,146],"149":[2,146],"150":[2,146],"151":[2,146],"152":[2,146],"153":[2,146],"154":[2,146],"155":[2,146],"156":[2,146],"157":[2,146],"158":[2,146],"159":[2,146],"160":[2,146],"161":[2,146],"162":[2,146],"163":[2,146]},{"1":[2,152],"4":[2,152],"29":[2,152],"30":[2,152],"50":[1,114],"58":[2,152],"61":[1,131],"79":[2,152],"84":[2,152],"94":[2,152],"99":[2,152],"107":[2,152],"108":129,"109":[2,152],"110":[1,339],"111":[2,152],"114":[2,152],"118":[1,124],"119":[1,125],"120":[1,340],"127":[2,152],"128":[2,152],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,153],"4":[2,153],"29":[2,153],"30":[2,153],"50":[1,114],"58":[2,153],"61":[1,131],"79":[2,153],"84":[2,153],"94":[2,153],"99":[2,153],"107":[2,153],"108":129,"109":[2,153],"110":[1,341],"111":[2,153],"114":[2,153],"118":[1,124],"119":[1,125],"120":[2,153],"127":[2,153],"128":[2,153],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"118":[2,151],"119":[2,151]},{"30":[1,342],"123":[1,343],"124":309,"125":[1,270]},{"1":[2,161],"4":[2,161],"29":[2,161],"30":[2,161],"50":[2,161],"58":[2,161],"61":[2,161],"79":[2,161],"84":[2,161],"94":[2,161],"99":[2,161],"107":[2,161],"109":[2,161],"110":[2,161],"111":[2,161],"114":[2,161],"118":[2,161],"119":[2,161],"120":[2,161],"127":[2,161],"128":[2,161],"129":[2,161],"131":[2,161],"132":[2,161],"134":[2,161],"135":[2,161],"138":[2,161],"139":[2,161],"140":[2,161],"141":[2,161],"142":[2,161],"143":[2,161],"144":[2,161],"145":[2,161],"146":[2,161],"147":[2,161],"148":[2,161],"149":[2,161],"150":[2,161],"151":[2,161],"152":[2,161],"153":[2,161],"154":[2,161],"155":[2,161],"156":[2,161],"157":[2,161],"158":[2,161],"159":[2,161],"160":[2,161],"161":[2,161],"162":[2,161],"163":[2,161]},{"4":[1,159],"6":344,"29":[1,6]},{"30":[2,164],"123":[2,164],"125":[2,164]},{"4":[1,159],"6":345,"29":[1,6],"58":[1,346]},{"4":[2,125],"29":[2,125],"50":[1,114],"58":[2,125],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,95],"4":[2,95],"29":[1,347],"30":[2,95],"50":[2,95],"58":[2,95],"61":[2,95],"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,95],"80":[1,146],"81":[1,147],"84":[2,95],"91":136,"92":[1,138],"94":[2,95],"99":[2,95],"107":[2,95],"109":[2,95],"110":[2,95],"111":[2,95],"114":[2,95],"118":[2,95],"119":[2,95],"120":[2,95],"127":[2,95],"128":[2,95],"129":[2,95],"131":[2,95],"132":[2,95],"134":[2,95],"135":[2,95],"138":[2,95],"139":[2,95],"140":[2,95],"141":[2,95],"142":[2,95],"143":[2,95],"144":[2,95],"145":[2,95],"146":[2,95],"147":[2,95],"148":[2,95],"149":[2,95],"150":[2,95],"151":[2,95],"152":[2,95],"153":[2,95],"154":[2,95],"155":[2,95],"156":[2,95],"157":[2,95],"158":[2,95],"159":[2,95],"160":[2,95],"161":[2,95],"162":[2,95],"163":[2,95]},{"4":[1,349],"30":[1,348]},{"4":[2,101],"30":[2,101]},{"4":[2,98],"30":[2,98]},{"46":[1,350]},{"31":190,"32":[1,87]},{"8":351,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"61":[1,352],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,119],"4":[2,119],"29":[2,119],"30":[2,119],"46":[2,119],"50":[2,119],"58":[2,119],"61":[2,119],"72":[2,119],"73":[2,119],"74":[2,119],"75":[2,119],"78":[2,119],"79":[2,119],"80":[2,119],"81":[2,119],"84":[2,119],"92":[2,119],"94":[2,119],"99":[2,119],"107":[2,119],"109":[2,119],"110":[2,119],"111":[2,119],"114":[2,119],"118":[2,119],"119":[2,119],"120":[2,119],"127":[2,119],"128":[2,119],"129":[2,119],"131":[2,119],"132":[2,119],"134":[2,119],"135":[2,119],"138":[2,119],"139":[2,119],"140":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"146":[2,119],"147":[2,119],"148":[2,119],"149":[2,119],"150":[2,119],"151":[2,119],"152":[2,119],"153":[2,119],"154":[2,119],"155":[2,119],"156":[2,119],"157":[2,119],"158":[2,119],"159":[2,119],"160":[2,119],"161":[2,119],"162":[2,119],"163":[2,119]},{"8":353,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,120],"8":246,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"30":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":354,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,122],"29":[2,122],"30":[2,122],"50":[1,114],"58":[2,122],"61":[1,131],"94":[2,122],"99":[2,122],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,135],"4":[2,135],"29":[2,135],"30":[2,135],"50":[1,114],"58":[2,135],"61":[1,131],"79":[2,135],"84":[2,135],"94":[2,135],"99":[2,135],"107":[2,135],"108":129,"109":[1,79],"110":[2,135],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,135],"127":[2,135],"128":[2,135],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,137],"4":[2,137],"29":[2,137],"30":[2,137],"50":[1,114],"58":[2,137],"61":[1,131],"79":[2,137],"84":[2,137],"94":[2,137],"99":[2,137],"107":[2,137],"108":129,"109":[1,79],"110":[2,137],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,137],"127":[2,137],"128":[2,137],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,88],"4":[2,88],"29":[2,88],"30":[2,88],"46":[2,88],"50":[2,88],"58":[2,88],"61":[2,88],"72":[2,88],"73":[2,88],"74":[2,88],"75":[2,88],"78":[2,88],"79":[2,88],"80":[2,88],"81":[2,88],"84":[2,88],"92":[2,88],"94":[2,88],"99":[2,88],"107":[2,88],"109":[2,88],"110":[2,88],"111":[2,88],"114":[2,88],"118":[2,88],"119":[2,88],"120":[2,88],"127":[2,88],"128":[2,88],"129":[2,88],"131":[2,88],"132":[2,88],"134":[2,88],"135":[2,88],"138":[2,88],"139":[2,88],"140":[2,88],"141":[2,88],"142":[2,88],"143":[2,88],"144":[2,88],"145":[2,88],"146":[2,88],"147":[2,88],"148":[2,88],"149":[2,88],"150":[2,88],"151":[2,88],"152":[2,88],"153":[2,88],"154":[2,88],"155":[2,88],"156":[2,88],"157":[2,88],"158":[2,88],"159":[2,88],"160":[2,88],"161":[2,88],"162":[2,88],"163":[2,88]},{"28":202,"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":355,"49":[1,56]},{"4":[2,89],"28":202,"29":[2,89],"30":[2,89],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":199,"49":[1,56],"58":[2,89],"83":356},{"4":[2,91],"29":[2,91],"30":[2,91],"58":[2,91],"84":[2,91]},{"4":[2,47],"29":[2,47],"30":[2,47],"50":[1,114],"58":[2,47],"61":[1,131],"84":[2,47],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,48],"29":[2,48],"30":[2,48],"50":[1,114],"58":[2,48],"61":[1,131],"84":[2,48],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,110],"4":[2,110],"29":[2,110],"30":[2,110],"50":[2,110],"58":[2,110],"61":[2,110],"72":[2,110],"73":[2,110],"74":[2,110],"75":[2,110],"78":[2,110],"79":[2,110],"80":[2,110],"81":[2,110],"84":[2,110],"92":[2,110],"94":[2,110],"99":[2,110],"107":[2,110],"109":[2,110],"110":[2,110],"111":[2,110],"114":[2,110],"118":[2,110],"119":[2,110],"120":[2,110],"127":[2,110],"128":[2,110],"129":[2,110],"131":[2,110],"132":[2,110],"134":[2,110],"135":[2,110],"138":[2,110],"139":[2,110],"140":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"147":[2,110],"148":[2,110],"149":[2,110],"150":[2,110],"151":[2,110],"152":[2,110],"153":[2,110],"154":[2,110],"155":[2,110],"156":[2,110],"157":[2,110],"158":[2,110],"159":[2,110],"160":[2,110],"161":[2,110],"162":[2,110],"163":[2,110]},{"8":357,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"61":[1,358],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,54],"4":[2,54],"29":[2,54],"30":[2,54],"50":[2,54],"58":[2,54],"61":[2,54],"79":[2,54],"84":[2,54],"94":[2,54],"99":[2,54],"107":[2,54],"109":[2,54],"110":[2,54],"111":[2,54],"114":[2,54],"118":[2,54],"119":[2,54],"120":[2,54],"127":[2,54],"128":[2,54],"129":[2,54],"131":[2,54],"132":[2,54],"134":[2,54],"135":[2,54],"138":[2,54],"139":[2,54],"140":[2,54],"141":[2,54],"142":[2,54],"143":[2,54],"144":[2,54],"145":[2,54],"146":[2,54],"147":[2,54],"148":[2,54],"149":[2,54],"150":[2,54],"151":[2,54],"152":[2,54],"153":[2,54],"154":[2,54],"155":[2,54],"156":[2,54],"157":[2,54],"158":[2,54],"159":[2,54],"160":[2,54],"161":[2,54],"162":[2,54],"163":[2,54]},{"53":[2,64],"58":[2,64],"61":[2,64]},{"1":[2,169],"4":[2,169],"29":[2,169],"30":[2,169],"50":[2,169],"58":[2,169],"61":[2,169],"79":[2,169],"84":[2,169],"94":[2,169],"99":[2,169],"107":[2,169],"109":[2,169],"110":[2,169],"111":[2,169],"114":[2,169],"118":[2,169],"119":[2,169],"120":[2,169],"123":[2,169],"127":[2,169],"128":[2,169],"129":[2,169],"131":[2,169],"132":[2,169],"134":[2,169],"135":[2,169],"138":[2,169],"139":[2,169],"140":[2,169],"141":[2,169],"142":[2,169],"143":[2,169],"144":[2,169],"145":[2,169],"146":[2,169],"147":[2,169],"148":[2,169],"149":[2,169],"150":[2,169],"151":[2,169],"152":[2,169],"153":[2,169],"154":[2,169],"155":[2,169],"156":[2,169],"157":[2,169],"158":[2,169],"159":[2,169],"160":[2,169],"161":[2,169],"162":[2,169],"163":[2,169]},{"1":[2,129],"4":[2,129],"29":[2,129],"30":[2,129],"50":[2,129],"58":[2,129],"61":[2,129],"79":[2,129],"84":[2,129],"94":[2,129],"99":[2,129],"107":[2,129],"109":[2,129],"110":[2,129],"111":[2,129],"114":[2,129],"118":[2,129],"119":[2,129],"120":[2,129],"127":[2,129],"128":[2,129],"129":[2,129],"131":[2,129],"132":[2,129],"134":[2,129],"135":[2,129],"138":[2,129],"139":[2,129],"140":[2,129],"141":[2,129],"142":[2,129],"143":[2,129],"144":[2,129],"145":[2,129],"146":[2,129],"147":[2,129],"148":[2,129],"149":[2,129],"150":[2,129],"151":[2,129],"152":[2,129],"153":[2,129],"154":[2,129],"155":[2,129],"156":[2,129],"157":[2,129],"158":[2,129],"159":[2,129],"160":[2,129],"161":[2,129],"162":[2,129],"163":[2,129]},{"1":[2,130],"4":[2,130],"29":[2,130],"30":[2,130],"50":[2,130],"58":[2,130],"61":[2,130],"79":[2,130],"84":[2,130],"94":[2,130],"99":[2,130],"103":[2,130],"107":[2,130],"109":[2,130],"110":[2,130],"111":[2,130],"114":[2,130],"118":[2,130],"119":[2,130],"120":[2,130],"127":[2,130],"128":[2,130],"129":[2,130],"131":[2,130],"132":[2,130],"134":[2,130],"135":[2,130],"138":[2,130],"139":[2,130],"140":[2,130],"141":[2,130],"142":[2,130],"143":[2,130],"144":[2,130],"145":[2,130],"146":[2,130],"147":[2,130],"148":[2,130],"149":[2,130],"150":[2,130],"151":[2,130],"152":[2,130],"153":[2,130],"154":[2,130],"155":[2,130],"156":[2,130],"157":[2,130],"158":[2,130],"159":[2,130],"160":[2,130],"161":[2,130],"162":[2,130],"163":[2,130]},{"1":[2,131],"4":[2,131],"28":88,"29":[2,131],"30":[2,131],"49":[1,56],"50":[2,131],"58":[2,131],"61":[2,131],"79":[2,131],"84":[2,131],"94":[2,131],"99":[2,131],"103":[2,131],"107":[2,131],"109":[2,131],"110":[2,131],"111":[2,131],"114":[2,131],"118":[2,131],"119":[2,131],"120":[2,131],"127":[2,131],"128":[2,131],"129":[2,131],"131":[2,131],"132":[2,131],"134":[2,131],"135":[2,131],"138":[2,131],"139":[2,131],"140":[2,131],"141":[2,131],"142":[2,131],"143":[2,131],"144":[2,131],"145":[2,131],"146":[2,131],"147":[2,131],"148":[2,131],"149":[2,131],"150":[2,131],"151":[2,131],"152":[2,131],"153":[2,131],"154":[2,131],"155":[2,131],"156":[2,131],"157":[2,131],"158":[2,131],"159":[2,131],"160":[2,131],"161":[2,131],"162":[2,131],"163":[2,131]},{"8":359,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":360,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":361,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,159],"4":[2,159],"29":[2,159],"30":[2,159],"50":[2,159],"58":[2,159],"61":[2,159],"79":[2,159],"84":[2,159],"94":[2,159],"99":[2,159],"107":[2,159],"109":[2,159],"110":[2,159],"111":[2,159],"114":[2,159],"118":[2,159],"119":[2,159],"120":[2,159],"127":[2,159],"128":[2,159],"129":[2,159],"131":[2,159],"132":[2,159],"134":[2,159],"135":[2,159],"138":[2,159],"139":[2,159],"140":[2,159],"141":[2,159],"142":[2,159],"143":[2,159],"144":[2,159],"145":[2,159],"146":[2,159],"147":[2,159],"148":[2,159],"149":[2,159],"150":[2,159],"151":[2,159],"152":[2,159],"153":[2,159],"154":[2,159],"155":[2,159],"156":[2,159],"157":[2,159],"158":[2,159],"159":[2,159],"160":[2,159],"161":[2,159],"162":[2,159],"163":[2,159]},{"4":[1,159],"6":362,"29":[1,6]},{"30":[1,363]},{"4":[1,364],"30":[2,165],"123":[2,165],"125":[2,165]},{"8":365,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,100],"28":202,"30":[2,100],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":315,"49":[1,56],"65":316,"87":366,"88":314,"97":[1,317]},{"1":[2,96],"4":[2,96],"29":[2,96],"30":[2,96],"50":[2,96],"58":[2,96],"61":[2,96],"79":[2,96],"84":[2,96],"94":[2,96],"99":[2,96],"107":[2,96],"109":[2,96],"110":[2,96],"111":[2,96],"114":[2,96],"118":[2,96],"119":[2,96],"120":[2,96],"127":[2,96],"128":[2,96],"129":[2,96],"131":[2,96],"132":[2,96],"134":[2,96],"135":[2,96],"138":[2,96],"139":[2,96],"140":[2,96],"141":[2,96],"142":[2,96],"143":[2,96],"144":[2,96],"145":[2,96],"146":[2,96],"147":[2,96],"148":[2,96],"149":[2,96],"150":[2,96],"151":[2,96],"152":[2,96],"153":[2,96],"154":[2,96],"155":[2,96],"156":[2,96],"157":[2,96],"158":[2,96],"159":[2,96],"160":[2,96],"161":[2,96],"162":[2,96],"163":[2,96]},{"28":202,"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":315,"49":[1,56],"65":316,"88":367,"97":[1,317]},{"8":368,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"50":[1,114],"61":[1,131],"99":[1,369],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,65],"8":370,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,65],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"50":[2,65],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,65],"61":[2,65],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,65],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[2,65],"111":[2,65],"112":51,"113":[1,81],"114":[2,65],"118":[2,65],"119":[2,65],"121":[1,53],"126":48,"127":[2,65],"128":[2,65],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65]},{"4":[2,123],"29":[2,123],"30":[2,123],"50":[1,114],"58":[2,123],"61":[1,131],"94":[2,123],"99":[2,123],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,58],"29":[2,58],"30":[2,58],"57":371,"58":[1,277]},{"4":[2,92],"29":[2,92],"30":[2,92],"58":[2,92],"84":[2,92]},{"4":[2,58],"29":[2,58],"30":[2,58],"57":372,"58":[1,283]},{"50":[1,114],"61":[1,131],"79":[1,373],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"8":374,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"50":[2,65],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"61":[2,65],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"79":[2,65],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[2,65],"111":[2,65],"112":51,"113":[1,81],"114":[2,65],"118":[2,65],"119":[2,65],"121":[1,53],"126":48,"127":[2,65],"128":[2,65],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65]},{"1":[2,154],"4":[2,154],"29":[2,154],"30":[2,154],"50":[1,114],"58":[2,154],"61":[1,131],"79":[2,154],"84":[2,154],"94":[2,154],"99":[2,154],"107":[2,154],"108":129,"109":[2,154],"110":[2,154],"111":[2,154],"114":[2,154],"118":[1,124],"119":[1,125],"120":[1,375],"127":[2,154],"128":[2,154],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,156],"4":[2,156],"29":[2,156],"30":[2,156],"50":[1,114],"58":[2,156],"61":[1,131],"79":[2,156],"84":[2,156],"94":[2,156],"99":[2,156],"107":[2,156],"108":129,"109":[2,156],"110":[1,376],"111":[2,156],"114":[2,156],"118":[1,124],"119":[1,125],"120":[2,156],"127":[2,156],"128":[2,156],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,155],"4":[2,155],"29":[2,155],"30":[2,155],"50":[1,114],"58":[2,155],"61":[1,131],"79":[2,155],"84":[2,155],"94":[2,155],"99":[2,155],"107":[2,155],"108":129,"109":[2,155],"110":[2,155],"111":[2,155],"114":[2,155],"118":[1,124],"119":[1,125],"120":[2,155],"127":[2,155],"128":[2,155],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"30":[1,377]},{"1":[2,162],"4":[2,162],"29":[2,162],"30":[2,162],"50":[2,162],"58":[2,162],"61":[2,162],"79":[2,162],"84":[2,162],"94":[2,162],"99":[2,162],"107":[2,162],"109":[2,162],"110":[2,162],"111":[2,162],"114":[2,162],"118":[2,162],"119":[2,162],"120":[2,162],"127":[2,162],"128":[2,162],"129":[2,162],"131":[2,162],"132":[2,162],"134":[2,162],"135":[2,162],"138":[2,162],"139":[2,162],"140":[2,162],"141":[2,162],"142":[2,162],"143":[2,162],"144":[2,162],"145":[2,162],"146":[2,162],"147":[2,162],"148":[2,162],"149":[2,162],"150":[2,162],"151":[2,162],"152":[2,162],"153":[2,162],"154":[2,162],"155":[2,162],"156":[2,162],"157":[2,162],"158":[2,162],"159":[2,162],"160":[2,162],"161":[2,162],"162":[2,162],"163":[2,162]},{"30":[2,166],"123":[2,166],"125":[2,166]},{"4":[2,126],"29":[2,126],"50":[1,114],"58":[2,126],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,349],"30":[1,378]},{"4":[2,102],"30":[2,102]},{"4":[2,99],"30":[2,99],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,115],"4":[2,115],"29":[2,115],"30":[2,115],"50":[2,115],"58":[2,115],"61":[2,115],"72":[2,115],"73":[2,115],"74":[2,115],"75":[2,115],"78":[2,115],"79":[2,115],"80":[2,115],"81":[2,115],"84":[2,115],"92":[2,115],"94":[2,115],"99":[2,115],"107":[2,115],"109":[2,115],"110":[2,115],"111":[2,115],"114":[2,115],"118":[2,115],"119":[2,115],"120":[2,115],"127":[2,115],"128":[2,115],"129":[2,115],"131":[2,115],"132":[2,115],"134":[2,115],"135":[2,115],"138":[2,115],"139":[2,115],"140":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"147":[2,115],"148":[2,115],"149":[2,115],"150":[2,115],"151":[2,115],"152":[2,115],"153":[2,115],"154":[2,115],"155":[2,115],"156":[2,115],"157":[2,115],"158":[2,115],"159":[2,115],"160":[2,115],"161":[2,115],"162":[2,115],"163":[2,115]},{"50":[1,114],"61":[1,131],"99":[1,379],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,320],"29":[1,321],"30":[1,380]},{"4":[1,326],"29":[1,327],"30":[1,381]},{"1":[2,117],"4":[2,117],"29":[2,117],"30":[2,117],"46":[2,117],"50":[2,117],"58":[2,117],"61":[2,117],"72":[2,117],"73":[2,117],"74":[2,117],"75":[2,117],"78":[2,117],"79":[2,117],"80":[2,117],"81":[2,117],"84":[2,117],"86":[2,117],"92":[2,117],"94":[2,117],"99":[2,117],"107":[2,117],"109":[2,117],"110":[2,117],"111":[2,117],"114":[2,117],"118":[2,117],"119":[2,117],"120":[2,117],"127":[2,117],"128":[2,117],"129":[2,117],"131":[2,117],"132":[2,117],"134":[2,117],"135":[2,117],"138":[2,117],"139":[2,117],"140":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"146":[2,117],"147":[2,117],"148":[2,117],"149":[2,117],"150":[2,117],"151":[2,117],"152":[2,117],"153":[2,117],"154":[2,117],"155":[2,117],"156":[2,117],"157":[2,117],"158":[2,117],"159":[2,117],"160":[2,117],"161":[2,117],"162":[2,117],"163":[2,117]},{"50":[1,114],"61":[1,131],"79":[1,382],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"8":383,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":384,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,160],"4":[2,160],"29":[2,160],"30":[2,160],"50":[2,160],"58":[2,160],"61":[2,160],"79":[2,160],"84":[2,160],"94":[2,160],"99":[2,160],"107":[2,160],"109":[2,160],"110":[2,160],"111":[2,160],"114":[2,160],"118":[2,160],"119":[2,160],"120":[2,160],"127":[2,160],"128":[2,160],"129":[2,160],"131":[2,160],"132":[2,160],"134":[2,160],"135":[2,160],"138":[2,160],"139":[2,160],"140":[2,160],"141":[2,160],"142":[2,160],"143":[2,160],"144":[2,160],"145":[2,160],"146":[2,160],"147":[2,160],"148":[2,160],"149":[2,160],"150":[2,160],"151":[2,160],"152":[2,160],"153":[2,160],"154":[2,160],"155":[2,160],"156":[2,160],"157":[2,160],"158":[2,160],"159":[2,160],"160":[2,160],"161":[2,160],"162":[2,160],"163":[2,160]},{"1":[2,97],"4":[2,97],"29":[2,97],"30":[2,97],"50":[2,97],"58":[2,97],"61":[2,97],"79":[2,97],"84":[2,97],"94":[2,97],"99":[2,97],"107":[2,97],"109":[2,97],"110":[2,97],"111":[2,97],"114":[2,97],"118":[2,97],"119":[2,97],"120":[2,97],"127":[2,97],"128":[2,97],"129":[2,97],"131":[2,97],"132":[2,97],"134":[2,97],"135":[2,97],"138":[2,97],"139":[2,97],"140":[2,97],"141":[2,97],"142":[2,97],"143":[2,97],"144":[2,97],"145":[2,97],"146":[2,97],"147":[2,97],"148":[2,97],"149":[2,97],"150":[2,97],"151":[2,97],"152":[2,97],"153":[2,97],"154":[2,97],"155":[2,97],"156":[2,97],"157":[2,97],"158":[2,97],"159":[2,97],"160":[2,97],"161":[2,97],"162":[2,97],"163":[2,97]},{"1":[2,116],"4":[2,116],"29":[2,116],"30":[2,116],"50":[2,116],"58":[2,116],"61":[2,116],"72":[2,116],"73":[2,116],"74":[2,116],"75":[2,116],"78":[2,116],"79":[2,116],"80":[2,116],"81":[2,116],"84":[2,116],"92":[2,116],"94":[2,116],"99":[2,116],"107":[2,116],"109":[2,116],"110":[2,116],"111":[2,116],"114":[2,116],"118":[2,116],"119":[2,116],"120":[2,116],"127":[2,116],"128":[2,116],"129":[2,116],"131":[2,116],"132":[2,116],"134":[2,116],"135":[2,116],"138":[2,116],"139":[2,116],"140":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"146":[2,116],"147":[2,116],"148":[2,116],"149":[2,116],"150":[2,116],"151":[2,116],"152":[2,116],"153":[2,116],"154":[2,116],"155":[2,116],"156":[2,116],"157":[2,116],"158":[2,116],"159":[2,116],"160":[2,116],"161":[2,116],"162":[2,116],"163":[2,116]},{"4":[2,124],"29":[2,124],"30":[2,124],"58":[2,124],"94":[2,124],"99":[2,124]},{"4":[2,93],"29":[2,93],"30":[2,93],"58":[2,93],"84":[2,93]},{"1":[2,118],"4":[2,118],"29":[2,118],"30":[2,118],"46":[2,118],"50":[2,118],"58":[2,118],"61":[2,118],"72":[2,118],"73":[2,118],"74":[2,118],"75":[2,118],"78":[2,118],"79":[2,118],"80":[2,118],"81":[2,118],"84":[2,118],"86":[2,118],"92":[2,118],"94":[2,118],"99":[2,118],"107":[2,118],"109":[2,118],"110":[2,118],"111":[2,118],"114":[2,118],"118":[2,118],"119":[2,118],"120":[2,118],"127":[2,118],"128":[2,118],"129":[2,118],"131":[2,118],"132":[2,118],"134":[2,118],"135":[2,118],"138":[2,118],"139":[2,118],"140":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"146":[2,118],"147":[2,118],"148":[2,118],"149":[2,118],"150":[2,118],"151":[2,118],"152":[2,118],"153":[2,118],"154":[2,118],"155":[2,118],"156":[2,118],"157":[2,118],"158":[2,118],"159":[2,118],"160":[2,118],"161":[2,118],"162":[2,118],"163":[2,118]},{"1":[2,157],"4":[2,157],"29":[2,157],"30":[2,157],"50":[1,114],"58":[2,157],"61":[1,131],"79":[2,157],"84":[2,157],"94":[2,157],"99":[2,157],"107":[2,157],"108":129,"109":[2,157],"110":[2,157],"111":[2,157],"114":[2,157],"118":[1,124],"119":[1,125],"120":[2,157],"127":[2,157],"128":[2,157],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,158],"4":[2,158],"29":[2,158],"30":[2,158],"50":[1,114],"58":[2,158],"61":[1,131],"79":[2,158],"84":[2,158],"94":[2,158],"99":[2,158],"107":[2,158],"108":129,"109":[2,158],"110":[2,158],"111":[2,158],"114":[2,158],"118":[1,124],"119":[1,125],"120":[2,158],"127":[2,158],"128":[2,158],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]}], +defaultActions: {"90":[2,4]}, parseError: function parseError(str, hash) { throw new Error(str); }, @@ -541,7 +549,7 @@ parse: function parse(input) { token = self.lexer.lex() || 1; // $end = 1 // if token isn't its numeric value, convert if (typeof token !== 'number') { - token = self.symbols_[token] || token; + token = self.symbols_[token]; } return token; }; @@ -574,7 +582,7 @@ parse: function parse(input) { parseError.call(this, 'Parse error on line '+(yylineno+1)+":\n"+this.lexer.showPosition()+'\nExpecting '+expected.join(', '), {text: this.lexer.match, token: this.terminals_[symbol] || symbol, line: this.lexer.yylineno, expected: expected}); } else { - parseError.call(this, 'Parse error on line '+(yylineno+1)+": Unexpected '"+(this.terminals_[symbol] || symbol)+"'", + parseError.call(this, 'Parse error on line '+(yylineno+1)+": Unexpected '"+this.terminals_[symbol]+"'", {text: this.lexer.match, token: this.terminals_[symbol] || symbol, line: this.lexer.yylineno, expected: expected}); } } @@ -696,4 +704,4 @@ exports.main = function commonjsMain(args) { if (require.main === module) { exports.main(typeof process !== 'undefined' ? process.argv.slice(1) : require("system").args); } -} +} \ No newline at end of file diff --git a/lib/rewriter.js b/lib/rewriter.js index a918898ccd..f513eb2128 100644 --- a/lib/rewriter.js +++ b/lib/rewriter.js @@ -14,6 +14,7 @@ Rewriter = function() { }; Rewriter.prototype.rewrite = function(tokens) { this.tokens = tokens; + this.adjustComments(); this.removeLeadingNewlines(); this.removeMidExpressionNewlines(); this.closeOpenCallsAndIndexes(); @@ -35,6 +36,32 @@ } return true; }; + Rewriter.prototype.adjustComments = function() { + return this.scanTokens((function(__this) { + var __func = function(prev, token, post, i) { + var _c, _d, after, before; + if (!(token[0] === 'HERECOMMENT')) { + return 1; + } + _c = [this.tokens[i - 2], this.tokens[i + 2]]; + before = _c[0]; + after = _c[1]; + if (after && after[0] === 'INDENT') { + this.tokens.splice(i + 2, 1); + before && before[0] === 'OUTDENT' && post && (prev[0] === post[0]) && (post[0] === 'TERMINATOR') ? this.tokens.splice(i - 2, 1) : this.tokens.splice(i, 0, after); + } else if (prev && !('TERMINATOR' === (_d = prev[0]) || 'INDENT' === _d || 'OUTDENT' === _d)) { + post && post[0] === 'TERMINATOR' && after && after[0] === 'OUTDENT' ? this.tokens.splice.apply(this.tokens, [i, 0].concat(this.tokens.splice(i + 2, 2))) : this.tokens.splice(i, 0, ['TERMINATOR', "\n", prev[2]]); + return 2; + } else if (before && before[0] === 'OUTDENT' && prev && prev[0] === 'TERMINATOR' && post && post[0] === 'TERMINATOR' && after && after[0] === 'ELSE') { + this.tokens.splice(i + 1, 0, this.tokens.splice(i - 2, 1)[0]); + } + return 1; + }; + return (function() { + return __func.apply(__this, arguments); + }); + })(this)); + }; Rewriter.prototype.removeLeadingNewlines = function() { var _c; _c = []; diff --git a/src/grammar.coffee b/src/grammar.coffee index 69eb750913..1117064375 100644 --- a/src/grammar.coffee +++ b/src/grammar.coffee @@ -99,6 +99,7 @@ grammar: { o "Class" o "Splat" o "Existence" + o "Comment" ] # A an indented block of expressions. Note that the [Rewriter](rewriter.html) @@ -107,6 +108,7 @@ grammar: { Block: [ o "INDENT Body OUTDENT", -> $2 o "INDENT OUTDENT", -> new Expressions + o "TERMINATOR Comment", -> Expressions.wrap [$2] ] # A literal identifier, a variable name or property. @@ -147,6 +149,7 @@ grammar: { o "AlphaNumeric" o "Identifier ASSIGN Expression", -> new AssignNode new ValueNode($1), $3, 'object' o "AlphaNumeric ASSIGN Expression", -> new AssignNode new ValueNode($1), $3, 'object' + o "Comment" ] # A return statement from a function body. @@ -155,6 +158,11 @@ grammar: { o "RETURN", -> new ReturnNode new ValueNode new LiteralNode 'null' ] + # A block comment. + Comment: [ + o "HERECOMMENT", -> new CommentNode $1 + ] + # [The existential operator](http://jashkenas.github.com/coffee-script/#existence). Existence: [ o "Expression ?", -> new ExistenceNode $1 diff --git a/src/lexer.coffee b/src/lexer.coffee index 0f646dc20d..994930f98a 100644 --- a/src/lexer.coffee +++ b/src/lexer.coffee @@ -141,6 +141,10 @@ exports.Lexer: class Lexer return false unless match: @chunk.match(COMMENT) @line: + count match[1], "\n" @i: + match[1].length + if match[2] + comment: @sanitizeHeredoc match[2], {herecomment: true} + @token 'HERECOMMENT', comment.split MULTILINER + @token 'TERMINATOR', '\n' true # Matches JavaScript interpolated directly into the source via backticks. @@ -292,14 +296,15 @@ exports.Lexer: class Lexer prev[0] is '@' if accessor then 'accessor' else false - # Sanitize a heredoc by escaping internal double quotes and + # Sanitize a heredoc or herecomment by escaping internal double quotes and # erasing all external indentation on the left-hand side. sanitizeHeredoc: (doc, options) -> while match: HEREDOC_INDENT.exec doc attempt: if match[2]? then match[2] else match[3] indent: attempt if not indent or attempt.length < indent.length - doc.replace(new RegExp("^" +indent, 'gm'), '') - .replace(MULTILINER, "\\n") + doc: doc.replace(new RegExp("^" +indent, 'gm'), '') + return doc if options.herecomment + doc.replace(MULTILINER, "\\n") .replace(new RegExp(options.quote, 'g'), "\\$options.quote") # Tag a half assignment. diff --git a/src/nodes.coffee b/src/nodes.coffee index 26e6481d2e..2f405a259f 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -47,7 +47,7 @@ exports.BaseNode: class BaseNode del @options, 'chainRoot' unless this instanceof AccessorNode or this instanceof IndexNode top: if @topSensitive() then @options.top else del @options, 'top' closure: @isStatement() and not @isPureStatement() and not top and - not @options.asStatement and + not @options.asStatement and not (this instanceof CommentNode) and not @containsPureStatement() if closure then @compileClosure(@options) else @compileNode(@options) @@ -179,6 +179,7 @@ exports.Expressions: class Expressions extends BaseNode makeReturn: -> idx: @expressions.length - 1 last: @expressions[idx] + last: @expressions[idx: - 1] if last instanceof CommentNode return this if not last or last instanceof ReturnNode @expressions[idx]: last.makeReturn() this @@ -364,6 +365,25 @@ exports.ValueNode: class ValueNode extends BaseNode if op and @wrapped then "($complete)" else complete +#### CommentNode + +# CoffeeScript passes through block comments as JavaScript block comments +# at the same position. +exports.CommentNode: class CommentNode extends BaseNode + + class: 'CommentNode' + isStatement: -> yes + + constructor: (lines) -> + @lines: lines + + makeReturn: -> + this + + compileNode: (o) -> + sep: "\n$@tab" + "$@tab/*$sep${ @lines.join(sep) }\n$@tab*/" + #### CallNode # Node for a function invocation. Takes care of converting `super()` calls into @@ -565,11 +585,15 @@ exports.ObjectNode: class ObjectNode extends BaseNode compileNode: (o) -> o.indent: @idt 1 - last: @properties.length - 1 + nonComments: prop for prop in @properties when not (prop instanceof CommentNode) + lastNoncom: nonComments[nonComments.length - 1] props: for prop, i in @properties - join: if i is last then '' else ',\n' - prop: new AssignNode prop, prop, 'object' unless prop instanceof AssignNode - @idt(1) + prop.compile(o) + join + join: ",\n" + join: "\n" if (prop is lastNoncom) or (prop instanceof CommentNode) + join: '' if i is @properties.length - 1 + indent: if prop instanceof CommentNode then '' else @idt 1 + prop: new AssignNode prop, prop, 'object' unless prop instanceof AssignNode or prop instanceof CommentNode + indent + prop.compile(o) + join props: props.join('') inner: if props then '\n' + props + '\n' + @idt() else '' "{$inner}" @@ -594,6 +618,8 @@ exports.ArrayNode: class ArrayNode extends BaseNode code: obj.compile(o) if obj instanceof SplatNode return @compileSplatLiteral @objects, o + else if obj instanceof CommentNode + objects.push "\n$code\n$o.indent" else if i is @objects.length - 1 objects.push code else diff --git a/src/rewriter.coffee b/src/rewriter.coffee index f0bb18ad44..74e0827312 100644 --- a/src/rewriter.coffee +++ b/src/rewriter.coffee @@ -26,6 +26,7 @@ exports.Rewriter: class Rewriter # corrected before implicit parentheses can be wrapped around blocks of code. rewrite: (tokens) -> @tokens: tokens + @adjustComments() @removeLeadingNewlines() @removeMidExpressionNewlines() @closeOpenCallsAndIndexes() @@ -47,6 +48,29 @@ exports.Rewriter: class Rewriter move: block @tokens[i - 1], @tokens[i], @tokens[i + 1], i i: + move true + + # Massage newlines and indentations so that comments don't have to be + # correctly indented, or appear on a line of their own. + adjustComments: -> + @scanTokens (prev, token, post, i) => + return 1 unless token[0] is 'HERECOMMENT' + [before, after]: [@tokens[i - 2], @tokens[i + 2]] + if after and after[0] is 'INDENT' + @tokens.splice i + 2, 1 + if before and before[0] is 'OUTDENT' and post and prev[0] is post[0] is 'TERMINATOR' + @tokens.splice i - 2, 1 + else + @tokens.splice i, 0, after + else if prev and prev[0] not in ['TERMINATOR', 'INDENT', 'OUTDENT'] + if post and post[0] is 'TERMINATOR' and after and after[0] is 'OUTDENT' + @tokens.splice(i, 0, @tokens.splice(i + 2, 2)...) + else + @tokens.splice i, 0, ['TERMINATOR', "\n", prev[2]] + return 2 + else if before and before[0] is 'OUTDENT' and prev and prev[0] is 'TERMINATOR' and + post and post[0] is 'TERMINATOR' and after and after[0] is 'ELSE' + @tokens.splice i + 1, 0, @tokens.splice(i - 2, 1)[0] + return 1 # Leading newlines would introduce an ambiguity in the grammar, so we # dispatch them here. diff --git a/test/test_comments.coffee b/test/test_comments.coffee index 7ed9e039bc..96fb059e8a 100644 --- a/test/test_comments.coffee +++ b/test/test_comments.coffee @@ -66,6 +66,21 @@ func: -> ### code +obj: { + a: b + ### + comment + ### + c: d +} + +arr: [ + 1, 2, 3, + ### + four + ### + 5, 6, 7 +] # Spaced comments in if / elses. result: if false From eefa004b8faae75f6abe9c4a597e0e1a2449cfb7 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Thu, 1 Jul 2010 21:51:28 -0400 Subject: [PATCH 13/33] fixing the block comment test to use defined variables. --- test/test_comments.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_comments.coffee b/test/test_comments.coffee index 96fb059e8a..ab5e8f0ebe 100644 --- a/test/test_comments.coffee +++ b/test/test_comments.coffee @@ -67,11 +67,11 @@ func: -> code obj: { - a: b + a: 'b' ### comment ### - c: d + c: 'd' } arr: [ From ec449158c6c7e08b8bf06dc9858e9306d9eae894 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sat, 3 Jul 2010 15:09:21 -0400 Subject: [PATCH 14/33] fixing improperly-formatted-output of pattern matching within comprehension arguments. --- lib/nodes.js | 6 ++---- src/nodes.coffee | 4 ++-- test/{test_exceptions.coffee => test_try_catch.coffee} | 0 3 files changed, 4 insertions(+), 6 deletions(-) rename test/{test_exceptions.coffee => test_try_catch.coffee} (100%) diff --git a/lib/nodes.js b/lib/nodes.js index 05c0f4f203..2e4aabcfdc 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -1476,7 +1476,7 @@ namePart = new AssignNode(this.name, literal("" + svar + "[" + ivar + "]")).compile(merge(o, { indent: this.idt(1), top: true - })) + "\n"; + })) + '\n'; } else { if (name) { namePart = ("" + name + " = " + svar + "[" + ivar + "]"); @@ -1504,9 +1504,7 @@ } body = ClosureNode.wrap(body, true); } else { - if (namePart) { - varPart = ("" + (this.idt(1)) + namePart + ";\n"); - } + varPart = this.pattern ? namePart : ("" + (this.idt(1)) + namePart + ";\n"); } this.object ? (forPart = ("" + ivar + " in " + svar + ") { if (" + (utility('hasProp')) + ".call(" + svar + ", " + ivar + ")")) : null; body = body.compile(merge(o, { diff --git a/src/nodes.coffee b/src/nodes.coffee index 2f405a259f..89aac3a3c2 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -1247,7 +1247,7 @@ exports.ForNode: class ForNode extends BaseNode svar: scope.freeVariable() sourcePart: "$svar = ${ @source.compile(o) };" if @pattern - namePart: new AssignNode(@name, literal("$svar[$ivar]")).compile(merge o, {indent: @idt(1), top: true}) + "\n" + namePart: new AssignNode(@name, literal("$svar[$ivar]")).compile(merge o, {indent: @idt(1), top: true}) + '\n' else namePart: "$name = $svar[$ivar]" if name unless @object @@ -1266,7 +1266,7 @@ exports.ForNode: class ForNode extends BaseNode body.unshift literal "var $index = $ivar" if index body: ClosureNode.wrap(body, true) else - varPart: "${@idt(1)}$namePart;\n" if namePart + varPart: if @pattern then namePart else "${@idt(1)}$namePart;\n" if @object forPart: "$ivar in $svar) { if (${utility('hasProp')}.call($svar, $ivar)" body: body.compile(merge(o, {indent: @idt(1), top: true})) diff --git a/test/test_exceptions.coffee b/test/test_try_catch.coffee similarity index 100% rename from test/test_exceptions.coffee rename to test/test_try_catch.coffee From 92878558c61dab2556c6b10ef89eebfc05aa8446 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sat, 3 Jul 2010 17:00:30 -0400 Subject: [PATCH 15/33] fixing improper formatting in range-to-array expansion. --- lib/nodes.js | 11 +++++++---- src/nodes.coffee | 11 ++++++----- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/lib/nodes.js b/lib/nodes.js index 2e4aabcfdc..180f05bfde 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -601,7 +601,7 @@ parts.push(this.to.compile(o)); } if (parts.length) { - return "" + (parts.join('; ')) + ";\n" + o.indent; + return "" + (parts.join('; ')) + ";"; } else { return ''; } @@ -631,10 +631,10 @@ result = o.scope.freeVariable(); i = o.scope.freeVariable(); clause = ("" + from + " <= " + to + " ?"); - pre = ("\n" + (idt) + (result) + " = [];" + (vars)); + pre = ("\n" + (idt) + (result) + " = []; " + (vars)); body = ("var " + i + " = " + from + "; " + clause + " " + i + " <" + equals + " " + to + " : " + i + " >" + equals + " " + to + "; " + clause + " " + i + " += 1 : " + i + " -= 1"); post = ("{ " + (result) + ".push(" + i + ") };\n" + (idt) + "return " + result + ";\n" + o.indent); - return "(function(){" + (pre) + ";\n" + (idt) + "for (" + body + ")" + post + "}).call(this)"; + return "(function(){" + (pre) + "\n" + (idt) + "for (" + body + ")" + post + "}).call(this)"; }; return RangeNode; })(); @@ -1465,6 +1465,9 @@ body = Expressions.wrap([this.body]); if (range) { sourcePart = source.compileVariables(o); + if (sourcePart) { + sourcePart += ("\n" + o.indent); + } forPart = source.compile(merge(o, { index: ivar, step: this.step @@ -1504,7 +1507,7 @@ } body = ClosureNode.wrap(body, true); } else { - varPart = this.pattern ? namePart : ("" + (this.idt(1)) + namePart + ";\n"); + varPart = (namePart || '') && (this.pattern ? namePart : ("" + (this.idt(1)) + namePart + ";\n")); } this.object ? (forPart = ("" + ivar + " in " + svar + ") { if (" + (utility('hasProp')) + ".call(" + svar + ", " + ivar + ")")) : null; body = body.compile(merge(o, { diff --git a/src/nodes.coffee b/src/nodes.coffee index 89aac3a3c2..7b97b9dab3 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -524,7 +524,7 @@ exports.RangeNode: class RangeNode extends BaseNode parts: [] parts.push @from.compile o if @from isnt @fromVar parts.push @to.compile o if @to isnt @toVar - if parts.length then "${parts.join('; ')};\n$o.indent" else '' + if parts.length then "${parts.join('; ')};" else '' # When compiled normally, the range returns the contents of the *for loop* # needed to iterate over the values in the range. Used by comprehensions. @@ -548,10 +548,10 @@ exports.RangeNode: class RangeNode extends BaseNode result: o.scope.freeVariable() i: o.scope.freeVariable() clause: "$from <= $to ?" - pre: "\n${idt}${result} = [];${vars}" + pre: "\n${idt}${result} = []; ${vars}" body: "var $i = $from; $clause $i <$equals $to : $i >$equals $to; $clause $i += 1 : $i -= 1" post: "{ ${result}.push($i) };\n${idt}return $result;\n$o.indent" - "(function(){${pre};\n${idt}for ($body)$post}).call(this)" + "(function(){${pre}\n${idt}for ($body)$post}).call(this)" #### SliceNode @@ -1241,7 +1241,8 @@ exports.ForNode: class ForNode extends BaseNode varPart: '' body: Expressions.wrap([@body]) if range - sourcePart: source.compileVariables o + sourcePart: source.compileVariables(o) + sourcePart: + "\n$o.indent" if sourcePart forPart: source.compile merge o, {index: ivar, step: @step} else svar: scope.freeVariable() @@ -1266,7 +1267,7 @@ exports.ForNode: class ForNode extends BaseNode body.unshift literal "var $index = $ivar" if index body: ClosureNode.wrap(body, true) else - varPart: if @pattern then namePart else "${@idt(1)}$namePart;\n" + varPart: (namePart or '') and (if @pattern then namePart else "${@idt(1)}$namePart;\n") if @object forPart: "$ivar in $svar) { if (${utility('hasProp')}.call($svar, $ivar)" body: body.compile(merge(o, {indent: @idt(1), top: true})) From e281133f12c7176e22e861cbe836232c6fc73944 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sun, 4 Jul 2010 12:50:04 -0400 Subject: [PATCH 16/33] fixing empty catch clauses ... Issue #470 --- lib/grammar.js | 2 - lib/parser.js | 182 ++++++++++++++++++------------------- lib/rewriter.js | 19 ++-- src/grammar.coffee | 1 - src/rewriter.coffee | 17 ++-- test/test_try_catch.coffee | 9 +- 6 files changed, 122 insertions(+), 108 deletions(-) diff --git a/lib/grammar.js b/lib/grammar.js index ff2212cc84..e6fd2a6507 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -332,8 +332,6 @@ Catch: [ o("CATCH Identifier Block", function() { return [$2, $3]; - }), o("CATCH Identifier TERMINATOR", function() { - return [$2, new Expressions()]; }) ], Throw: [ diff --git a/lib/parser.js b/lib/parser.js index 4e1f81f853..a782a1c291 100755 --- a/lib/parser.js +++ b/lib/parser.js @@ -4,7 +4,7 @@ var parser = {trace: function trace() { }, yy: {}, symbols_: {"error":2,"Root":3,"TERMINATOR":4,"Body":5,"Block":6,"Line":7,"Expression":8,"Statement":9,"Return":10,"Throw":11,"BREAK":12,"CONTINUE":13,"Value":14,"Call":15,"Code":16,"Operation":17,"Assign":18,"If":19,"Try":20,"While":21,"For":22,"Switch":23,"Extends":24,"Class":25,"Splat":26,"Existence":27,"Comment":28,"INDENT":29,"OUTDENT":30,"Identifier":31,"IDENTIFIER":32,"AlphaNumeric":33,"NUMBER":34,"STRING":35,"Literal":36,"JS":37,"REGEX":38,"TRUE":39,"FALSE":40,"YES":41,"NO":42,"ON":43,"OFF":44,"Assignable":45,"ASSIGN":46,"AssignObj":47,"RETURN":48,"HERECOMMENT":49,"?":50,"PARAM_START":51,"ParamList":52,"PARAM_END":53,"FuncGlyph":54,"->":55,"=>":56,"OptComma":57,",":58,"Param":59,"PARAM":60,".":61,"SimpleAssignable":62,"Accessor":63,"Invocation":64,"ThisProperty":65,"Array":66,"Object":67,"Parenthetical":68,"Range":69,"This":70,"NULL":71,"PROPERTY_ACCESS":72,"PROTOTYPE_ACCESS":73,"::":74,"SOAK_ACCESS":75,"Index":76,"Slice":77,"INDEX_START":78,"INDEX_END":79,"INDEX_SOAK":80,"INDEX_PROTO":81,"{":82,"AssignList":83,"}":84,"CLASS":85,"EXTENDS":86,"ClassBody":87,"ClassAssign":88,"Super":89,"NEW":90,"Arguments":91,"CALL_START":92,"ArgList":93,"CALL_END":94,"SUPER":95,"THIS":96,"@":97,"[":98,"]":99,"SimpleArgs":100,"TRY":101,"Catch":102,"FINALLY":103,"CATCH":104,"THROW":105,"(":106,")":107,"WhileSource":108,"WHILE":109,"WHEN":110,"UNTIL":111,"Loop":112,"LOOP":113,"FOR":114,"ForVariables":115,"ForSource":116,"ForValue":117,"IN":118,"OF":119,"BY":120,"SWITCH":121,"Whens":122,"ELSE":123,"When":124,"LEADING_WHEN":125,"IfBlock":126,"IF":127,"UNLESS":128,"!":129,"!!":130,"-":131,"+":132,"~":133,"--":134,"++":135,"DELETE":136,"TYPEOF":137,"*":138,"/":139,"%":140,"<<":141,">>":142,">>>":143,"&":144,"|":145,"^":146,"<=":147,"<":148,">":149,">=":150,"==":151,"!=":152,"&&":153,"||":154,"-=":155,"+=":156,"/=":157,"*=":158,"%=":159,"||=":160,"&&=":161,"?=":162,"INSTANCEOF":163,"$accept":0,"$end":1}, terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","29":"INDENT","30":"OUTDENT","32":"IDENTIFIER","34":"NUMBER","35":"STRING","37":"JS","38":"REGEX","39":"TRUE","40":"FALSE","41":"YES","42":"NO","43":"ON","44":"OFF","46":"ASSIGN","48":"RETURN","49":"HERECOMMENT","50":"?","51":"PARAM_START","53":"PARAM_END","55":"->","56":"=>","58":",","60":"PARAM","61":".","71":"NULL","72":"PROPERTY_ACCESS","73":"PROTOTYPE_ACCESS","74":"::","75":"SOAK_ACCESS","78":"INDEX_START","79":"INDEX_END","80":"INDEX_SOAK","81":"INDEX_PROTO","82":"{","84":"}","85":"CLASS","86":"EXTENDS","90":"NEW","92":"CALL_START","94":"CALL_END","95":"SUPER","96":"THIS","97":"@","98":"[","99":"]","101":"TRY","103":"FINALLY","104":"CATCH","105":"THROW","106":"(","107":")","109":"WHILE","110":"WHEN","111":"UNTIL","113":"LOOP","114":"FOR","118":"IN","119":"OF","120":"BY","121":"SWITCH","123":"ELSE","125":"LEADING_WHEN","127":"IF","128":"UNLESS","129":"!","130":"!!","131":"-","132":"+","133":"~","134":"--","135":"++","136":"DELETE","137":"TYPEOF","138":"*","139":"/","140":"%","141":"<<","142":">>","143":">>>","144":"&","145":"|","146":"^","147":"<=","148":"<","149":">","150":">=","151":"==","152":"!=","153":"&&","154":"||","155":"-=","156":"+=","157":"/=","158":"*=","159":"%=","160":"||=","161":"&&=","162":"?=","163":"INSTANCEOF"}, -productions_: [0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[31,1],[33,1],[33,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[18,3],[47,1],[47,1],[47,3],[47,3],[47,1],[10,2],[10,1],[28,1],[27,2],[16,5],[16,2],[54,1],[54,1],[57,0],[57,1],[52,0],[52,1],[52,3],[59,1],[59,4],[26,4],[62,1],[62,2],[62,2],[62,1],[45,1],[45,1],[45,1],[14,1],[14,1],[14,1],[14,1],[14,1],[14,1],[63,2],[63,2],[63,1],[63,2],[63,1],[63,1],[76,3],[76,2],[76,2],[67,4],[83,0],[83,1],[83,3],[83,4],[83,6],[25,2],[25,4],[25,5],[25,7],[88,1],[88,3],[87,0],[87,1],[87,3],[15,1],[15,1],[15,2],[15,2],[24,3],[64,2],[64,2],[91,4],[89,2],[70,1],[70,1],[65,2],[69,6],[69,7],[77,6],[77,7],[66,4],[93,0],[93,1],[93,3],[93,4],[93,6],[100,1],[100,3],[20,3],[20,4],[20,5],[102,3],[102,3],[11,2],[68,3],[108,2],[108,4],[108,2],[108,4],[21,2],[21,2],[21,2],[21,1],[112,2],[112,2],[22,4],[22,4],[22,4],[117,1],[117,1],[117,1],[115,1],[115,3],[116,2],[116,2],[116,4],[116,4],[116,4],[116,6],[116,6],[23,5],[23,7],[23,4],[23,6],[122,1],[122,2],[124,3],[124,4],[126,3],[126,3],[126,5],[126,3],[19,1],[19,3],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,4],[17,4]], +productions_: [0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[31,1],[33,1],[33,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[18,3],[47,1],[47,1],[47,3],[47,3],[47,1],[10,2],[10,1],[28,1],[27,2],[16,5],[16,2],[54,1],[54,1],[57,0],[57,1],[52,0],[52,1],[52,3],[59,1],[59,4],[26,4],[62,1],[62,2],[62,2],[62,1],[45,1],[45,1],[45,1],[14,1],[14,1],[14,1],[14,1],[14,1],[14,1],[63,2],[63,2],[63,1],[63,2],[63,1],[63,1],[76,3],[76,2],[76,2],[67,4],[83,0],[83,1],[83,3],[83,4],[83,6],[25,2],[25,4],[25,5],[25,7],[88,1],[88,3],[87,0],[87,1],[87,3],[15,1],[15,1],[15,2],[15,2],[24,3],[64,2],[64,2],[91,4],[89,2],[70,1],[70,1],[65,2],[69,6],[69,7],[77,6],[77,7],[66,4],[93,0],[93,1],[93,3],[93,4],[93,6],[100,1],[100,3],[20,3],[20,4],[20,5],[102,3],[11,2],[68,3],[108,2],[108,4],[108,2],[108,4],[21,2],[21,2],[21,2],[21,1],[112,2],[112,2],[22,4],[22,4],[22,4],[117,1],[117,1],[117,1],[115,1],[115,3],[116,2],[116,2],[116,4],[116,4],[116,4],[116,6],[116,6],[23,5],[23,7],[23,4],[23,6],[122,1],[122,2],[124,3],[124,4],[126,3],[126,3],[126,5],[126,3],[19,1],[19,3],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,4],[17,4]], performAction: function anonymous(yytext,yyleng,yylineno,yy) { var $$ = arguments[5],$0=arguments[5].length; @@ -281,233 +281,231 @@ case 129:this.$ = new TryNode($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$ break; case 130:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; break; -case 131:this.$ = [$$[$0-3+2-1], new Expressions()]; +case 131:this.$ = new ThrowNode($$[$0-2+2-1]); break; -case 132:this.$ = new ThrowNode($$[$0-2+2-1]); +case 132:this.$ = new ParentheticalNode($$[$0-3+2-1]); break; -case 133:this.$ = new ParentheticalNode($$[$0-3+2-1]); +case 133:this.$ = new WhileNode($$[$0-2+2-1]); break; -case 134:this.$ = new WhileNode($$[$0-2+2-1]); -break; -case 135:this.$ = new WhileNode($$[$0-4+2-1], { +case 134:this.$ = new WhileNode($$[$0-4+2-1], { guard: $$[$0-4+4-1] }); break; -case 136:this.$ = new WhileNode($$[$0-2+2-1], { +case 135:this.$ = new WhileNode($$[$0-2+2-1], { invert: true }); break; -case 137:this.$ = new WhileNode($$[$0-4+2-1], { +case 136:this.$ = new WhileNode($$[$0-4+2-1], { invert: true, guard: $$[$0-4+4-1] }); break; -case 138:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); +case 137:this.$ = $$[$0-2+1-1].addBody($$[$0-2+2-1]); +break; +case 138:this.$ = $$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]])); break; case 139:this.$ = $$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]])); break; -case 140:this.$ = $$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]])); +case 140:this.$ = $$[$0-1+1-1]; break; -case 141:this.$ = $$[$0-1+1-1]; +case 141:this.$ = new WhileNode(new LiteralNode('true')).addBody($$[$0-2+2-1]); break; -case 142:this.$ = new WhileNode(new LiteralNode('true')).addBody($$[$0-2+2-1]); +case 142:this.$ = new WhileNode(new LiteralNode('true')).addBody(Expressions.wrap([$$[$0-2+2-1]])); break; -case 143:this.$ = new WhileNode(new LiteralNode('true')).addBody(Expressions.wrap([$$[$0-2+2-1]])); +case 143:this.$ = new ForNode($$[$0-4+1-1], $$[$0-4+4-1], $$[$0-4+3-1][0], $$[$0-4+3-1][1]); break; case 144:this.$ = new ForNode($$[$0-4+1-1], $$[$0-4+4-1], $$[$0-4+3-1][0], $$[$0-4+3-1][1]); break; -case 145:this.$ = new ForNode($$[$0-4+1-1], $$[$0-4+4-1], $$[$0-4+3-1][0], $$[$0-4+3-1][1]); +case 145:this.$ = new ForNode($$[$0-4+4-1], $$[$0-4+3-1], $$[$0-4+2-1][0], $$[$0-4+2-1][1]); break; -case 146:this.$ = new ForNode($$[$0-4+4-1], $$[$0-4+3-1], $$[$0-4+2-1][0], $$[$0-4+2-1][1]); +case 146:this.$ = $$[$0-1+1-1]; break; -case 147:this.$ = $$[$0-1+1-1]; +case 147:this.$ = new ValueNode($$[$0-1+1-1]); break; case 148:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 149:this.$ = new ValueNode($$[$0-1+1-1]); -break; -case 150:this.$ = [$$[$0-1+1-1]]; +case 149:this.$ = [$$[$0-1+1-1]]; break; -case 151:this.$ = [$$[$0-3+1-1], $$[$0-3+3-1]]; +case 150:this.$ = [$$[$0-3+1-1], $$[$0-3+3-1]]; break; -case 152:this.$ = { +case 151:this.$ = { source: $$[$0-2+2-1] }; break; -case 153:this.$ = { +case 152:this.$ = { source: $$[$0-2+2-1], object: true }; 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], guard: $$[$0-4+4-1], object: true }; break; -case 156:this.$ = { +case 155:this.$ = { source: $$[$0-4+2-1], step: $$[$0-4+4-1] }; break; -case 157:this.$ = { +case 156:this.$ = { source: $$[$0-6+2-1], guard: $$[$0-6+4-1], step: $$[$0-6+6-1] }; break; -case 158:this.$ = { +case 157:this.$ = { source: $$[$0-6+2-1], step: $$[$0-6+4-1], guard: $$[$0-6+6-1] }; break; -case 159:this.$ = $$[$0-5+4-1].switchesOver($$[$0-5+2-1]); +case 158:this.$ = $$[$0-5+4-1].switchesOver($$[$0-5+2-1]); break; -case 160:this.$ = $$[$0-7+4-1].switchesOver($$[$0-7+2-1]).addElse($$[$0-7+6-1], true); +case 159:this.$ = $$[$0-7+4-1].switchesOver($$[$0-7+2-1]).addElse($$[$0-7+6-1], true); break; -case 161:this.$ = $$[$0-4+3-1]; +case 160:this.$ = $$[$0-4+3-1]; break; -case 162:this.$ = $$[$0-6+3-1].addElse($$[$0-6+5-1], true); +case 161:this.$ = $$[$0-6+3-1].addElse($$[$0-6+5-1], true); break; -case 163:this.$ = $$[$0-1+1-1]; +case 162:this.$ = $$[$0-1+1-1]; break; -case 164:this.$ = $$[$0-2+1-1].addElse($$[$0-2+2-1]); +case 163:this.$ = $$[$0-2+1-1].addElse($$[$0-2+2-1]); break; -case 165:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { +case 164:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { statement: true }); break; -case 166:this.$ = new IfNode($$[$0-4+2-1], $$[$0-4+3-1], { +case 165:this.$ = new IfNode($$[$0-4+2-1], $$[$0-4+3-1], { statement: true }); break; -case 167:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1]); +case 166:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1]); break; -case 168:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { +case 167:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], { invert: true }); break; -case 169:this.$ = $$[$0-5+1-1].addElse((new IfNode($$[$0-5+4-1], $$[$0-5+5-1])).forceStatement()); +case 168:this.$ = $$[$0-5+1-1].addElse((new IfNode($$[$0-5+4-1], $$[$0-5+5-1])).forceStatement()); break; -case 170:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); +case 169:this.$ = $$[$0-3+1-1].addElse($$[$0-3+3-1]); break; -case 171:this.$ = $$[$0-1+1-1]; +case 170:this.$ = $$[$0-1+1-1]; break; -case 172:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { +case 171:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { statement: true }); break; -case 173:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { +case 172:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { statement: true }); break; -case 174:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { +case 173:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { statement: true, invert: true }); break; -case 175:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { +case 174:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), { statement: true, invert: true }); break; -case 176:this.$ = new OpNode('!', $$[$0-2+2-1]); +case 175:this.$ = new OpNode('!', $$[$0-2+2-1]); break; -case 177:this.$ = new OpNode('!!', $$[$0-2+2-1]); +case 176:this.$ = new OpNode('!!', $$[$0-2+2-1]); break; -case 178:this.$ = new OpNode('-', $$[$0-2+2-1]); +case 177:this.$ = new OpNode('-', $$[$0-2+2-1]); break; -case 179:this.$ = new OpNode('+', $$[$0-2+2-1]); +case 178:this.$ = new OpNode('+', $$[$0-2+2-1]); break; -case 180:this.$ = new OpNode('~', $$[$0-2+2-1]); +case 179:this.$ = new OpNode('~', $$[$0-2+2-1]); break; -case 181:this.$ = new OpNode('--', $$[$0-2+2-1]); +case 180:this.$ = new OpNode('--', $$[$0-2+2-1]); break; -case 182:this.$ = new OpNode('++', $$[$0-2+2-1]); +case 181:this.$ = new OpNode('++', $$[$0-2+2-1]); break; -case 183:this.$ = new OpNode('delete', $$[$0-2+2-1]); +case 182:this.$ = new OpNode('delete', $$[$0-2+2-1]); break; -case 184:this.$ = new OpNode('typeof', $$[$0-2+2-1]); +case 183:this.$ = new OpNode('typeof', $$[$0-2+2-1]); break; -case 185:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); +case 184:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); break; -case 186:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); +case 185:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); break; -case 187:this.$ = new OpNode('*', $$[$0-3+1-1], $$[$0-3+3-1]); +case 186:this.$ = new OpNode('*', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 188:this.$ = new OpNode('/', $$[$0-3+1-1], $$[$0-3+3-1]); +case 187:this.$ = new OpNode('/', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 189:this.$ = new OpNode('%', $$[$0-3+1-1], $$[$0-3+3-1]); +case 188:this.$ = new OpNode('%', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 190:this.$ = new OpNode('+', $$[$0-3+1-1], $$[$0-3+3-1]); +case 189:this.$ = new OpNode('+', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 191:this.$ = new OpNode('-', $$[$0-3+1-1], $$[$0-3+3-1]); +case 190:this.$ = new OpNode('-', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 192:this.$ = new OpNode('<<', $$[$0-3+1-1], $$[$0-3+3-1]); +case 191:this.$ = new OpNode('<<', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 193:this.$ = new OpNode('>>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 192:this.$ = new OpNode('>>', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 194:this.$ = new OpNode('>>>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 193:this.$ = new OpNode('>>>', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 195:this.$ = new OpNode('&', $$[$0-3+1-1], $$[$0-3+3-1]); +case 194:this.$ = new OpNode('&', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 196:this.$ = new OpNode('|', $$[$0-3+1-1], $$[$0-3+3-1]); +case 195:this.$ = new OpNode('|', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 197:this.$ = new OpNode('^', $$[$0-3+1-1], $$[$0-3+3-1]); +case 196:this.$ = new OpNode('^', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 198:this.$ = new OpNode('<=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 197:this.$ = new OpNode('<=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 199:this.$ = new OpNode('<', $$[$0-3+1-1], $$[$0-3+3-1]); +case 198:this.$ = new OpNode('<', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 200:this.$ = new OpNode('>', $$[$0-3+1-1], $$[$0-3+3-1]); +case 199:this.$ = new OpNode('>', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 201:this.$ = new OpNode('>=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 200:this.$ = new OpNode('>=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 202:this.$ = new OpNode('==', $$[$0-3+1-1], $$[$0-3+3-1]); +case 201:this.$ = new OpNode('==', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 203:this.$ = new OpNode('!=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 202:this.$ = new OpNode('!=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 204:this.$ = new OpNode('&&', $$[$0-3+1-1], $$[$0-3+3-1]); +case 203:this.$ = new OpNode('&&', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 205:this.$ = new OpNode('||', $$[$0-3+1-1], $$[$0-3+3-1]); +case 204:this.$ = new OpNode('||', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 206:this.$ = new OpNode('?', $$[$0-3+1-1], $$[$0-3+3-1]); +case 205:this.$ = new OpNode('?', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 207:this.$ = new OpNode('-=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 206:this.$ = new OpNode('-=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 208:this.$ = new OpNode('+=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 207:this.$ = new OpNode('+=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 209:this.$ = new OpNode('/=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 208:this.$ = new OpNode('/=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 210:this.$ = new OpNode('*=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 209:this.$ = new OpNode('*=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 211:this.$ = new OpNode('%=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 210:this.$ = new OpNode('%=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 212:this.$ = new OpNode('||=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 211:this.$ = new OpNode('||=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 213:this.$ = new OpNode('&&=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 212:this.$ = new OpNode('&&=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 214:this.$ = new OpNode('?=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 213:this.$ = new OpNode('?=', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 215:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); +case 214:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 216:this.$ = new InNode($$[$0-3+1-1], $$[$0-3+3-1]); +case 215:this.$ = new InNode($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 217:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); +case 216:this.$ = new OpNode('in', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 218:this.$ = new OpNode('!', new InNode($$[$0-4+1-1], $$[$0-4+4-1])); +case 217:this.$ = new OpNode('!', new InNode($$[$0-4+1-1], $$[$0-4+4-1])); break; -case 219:this.$ = new OpNode('!', new ParentheticalNode(new OpNode('in', $$[$0-4+1-1], $$[$0-4+4-1]))); +case 218:this.$ = new OpNode('!', new ParentheticalNode(new OpNode('in', $$[$0-4+1-1], $$[$0-4+4-1]))); break; } }, -table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[3]},{"1":[2,2],"28":88,"49":[1,56]},{"1":[2,3],"4":[1,89]},{"4":[1,90]},{"1":[2,5],"4":[2,5],"30":[2,5]},{"5":91,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[1,92],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,8],"4":[2,8],"30":[2,8],"50":[1,114],"61":[1,131],"107":[2,8],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,9],"4":[2,9],"30":[2,9],"107":[2,9],"108":134,"109":[1,79],"111":[1,80],"114":[1,135],"127":[1,132],"128":[1,133]},{"1":[2,14],"4":[2,14],"29":[2,14],"30":[2,14],"50":[2,14],"58":[2,14],"61":[2,14],"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,14],"80":[1,146],"81":[1,147],"84":[2,14],"91":136,"92":[1,138],"94":[2,14],"99":[2,14],"107":[2,14],"109":[2,14],"110":[2,14],"111":[2,14],"114":[2,14],"118":[2,14],"119":[2,14],"120":[2,14],"127":[2,14],"128":[2,14],"129":[2,14],"131":[2,14],"132":[2,14],"134":[2,14],"135":[2,14],"138":[2,14],"139":[2,14],"140":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[2,14],"148":[2,14],"149":[2,14],"150":[2,14],"151":[2,14],"152":[2,14],"153":[2,14],"154":[2,14],"155":[2,14],"156":[2,14],"157":[2,14],"158":[2,14],"159":[2,14],"160":[2,14],"161":[2,14],"162":[2,14],"163":[2,14]},{"1":[2,15],"4":[2,15],"29":[2,15],"30":[2,15],"50":[2,15],"58":[2,15],"61":[2,15],"79":[2,15],"84":[2,15],"94":[2,15],"99":[2,15],"107":[2,15],"109":[2,15],"110":[2,15],"111":[2,15],"114":[2,15],"118":[2,15],"119":[2,15],"120":[2,15],"127":[2,15],"128":[2,15],"129":[2,15],"131":[2,15],"132":[2,15],"134":[2,15],"135":[2,15],"138":[2,15],"139":[2,15],"140":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[2,15],"149":[2,15],"150":[2,15],"151":[2,15],"152":[2,15],"153":[2,15],"154":[2,15],"155":[2,15],"156":[2,15],"157":[2,15],"158":[2,15],"159":[2,15],"160":[2,15],"161":[2,15],"162":[2,15],"163":[2,15]},{"1":[2,16],"4":[2,16],"29":[2,16],"30":[2,16],"50":[2,16],"58":[2,16],"61":[2,16],"79":[2,16],"84":[2,16],"94":[2,16],"99":[2,16],"107":[2,16],"109":[2,16],"110":[2,16],"111":[2,16],"114":[2,16],"118":[2,16],"119":[2,16],"120":[2,16],"127":[2,16],"128":[2,16],"129":[2,16],"131":[2,16],"132":[2,16],"134":[2,16],"135":[2,16],"138":[2,16],"139":[2,16],"140":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"148":[2,16],"149":[2,16],"150":[2,16],"151":[2,16],"152":[2,16],"153":[2,16],"154":[2,16],"155":[2,16],"156":[2,16],"157":[2,16],"158":[2,16],"159":[2,16],"160":[2,16],"161":[2,16],"162":[2,16],"163":[2,16]},{"1":[2,17],"4":[2,17],"29":[2,17],"30":[2,17],"50":[2,17],"58":[2,17],"61":[2,17],"79":[2,17],"84":[2,17],"94":[2,17],"99":[2,17],"107":[2,17],"109":[2,17],"110":[2,17],"111":[2,17],"114":[2,17],"118":[2,17],"119":[2,17],"120":[2,17],"127":[2,17],"128":[2,17],"129":[2,17],"131":[2,17],"132":[2,17],"134":[2,17],"135":[2,17],"138":[2,17],"139":[2,17],"140":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"148":[2,17],"149":[2,17],"150":[2,17],"151":[2,17],"152":[2,17],"153":[2,17],"154":[2,17],"155":[2,17],"156":[2,17],"157":[2,17],"158":[2,17],"159":[2,17],"160":[2,17],"161":[2,17],"162":[2,17],"163":[2,17]},{"1":[2,18],"4":[2,18],"29":[2,18],"30":[2,18],"50":[2,18],"58":[2,18],"61":[2,18],"79":[2,18],"84":[2,18],"94":[2,18],"99":[2,18],"107":[2,18],"109":[2,18],"110":[2,18],"111":[2,18],"114":[2,18],"118":[2,18],"119":[2,18],"120":[2,18],"127":[2,18],"128":[2,18],"129":[2,18],"131":[2,18],"132":[2,18],"134":[2,18],"135":[2,18],"138":[2,18],"139":[2,18],"140":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"148":[2,18],"149":[2,18],"150":[2,18],"151":[2,18],"152":[2,18],"153":[2,18],"154":[2,18],"155":[2,18],"156":[2,18],"157":[2,18],"158":[2,18],"159":[2,18],"160":[2,18],"161":[2,18],"162":[2,18],"163":[2,18]},{"1":[2,19],"4":[2,19],"29":[2,19],"30":[2,19],"50":[2,19],"58":[2,19],"61":[2,19],"79":[2,19],"84":[2,19],"94":[2,19],"99":[2,19],"107":[2,19],"109":[2,19],"110":[2,19],"111":[2,19],"114":[2,19],"118":[2,19],"119":[2,19],"120":[2,19],"127":[2,19],"128":[2,19],"129":[2,19],"131":[2,19],"132":[2,19],"134":[2,19],"135":[2,19],"138":[2,19],"139":[2,19],"140":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"148":[2,19],"149":[2,19],"150":[2,19],"151":[2,19],"152":[2,19],"153":[2,19],"154":[2,19],"155":[2,19],"156":[2,19],"157":[2,19],"158":[2,19],"159":[2,19],"160":[2,19],"161":[2,19],"162":[2,19],"163":[2,19]},{"1":[2,20],"4":[2,20],"29":[2,20],"30":[2,20],"50":[2,20],"58":[2,20],"61":[2,20],"79":[2,20],"84":[2,20],"94":[2,20],"99":[2,20],"107":[2,20],"109":[2,20],"110":[2,20],"111":[2,20],"114":[2,20],"118":[2,20],"119":[2,20],"120":[2,20],"127":[2,20],"128":[2,20],"129":[2,20],"131":[2,20],"132":[2,20],"134":[2,20],"135":[2,20],"138":[2,20],"139":[2,20],"140":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"148":[2,20],"149":[2,20],"150":[2,20],"151":[2,20],"152":[2,20],"153":[2,20],"154":[2,20],"155":[2,20],"156":[2,20],"157":[2,20],"158":[2,20],"159":[2,20],"160":[2,20],"161":[2,20],"162":[2,20],"163":[2,20]},{"1":[2,21],"4":[2,21],"29":[2,21],"30":[2,21],"50":[2,21],"58":[2,21],"61":[2,21],"79":[2,21],"84":[2,21],"94":[2,21],"99":[2,21],"107":[2,21],"109":[2,21],"110":[2,21],"111":[2,21],"114":[2,21],"118":[2,21],"119":[2,21],"120":[2,21],"127":[2,21],"128":[2,21],"129":[2,21],"131":[2,21],"132":[2,21],"134":[2,21],"135":[2,21],"138":[2,21],"139":[2,21],"140":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"148":[2,21],"149":[2,21],"150":[2,21],"151":[2,21],"152":[2,21],"153":[2,21],"154":[2,21],"155":[2,21],"156":[2,21],"157":[2,21],"158":[2,21],"159":[2,21],"160":[2,21],"161":[2,21],"162":[2,21],"163":[2,21]},{"1":[2,22],"4":[2,22],"29":[2,22],"30":[2,22],"50":[2,22],"58":[2,22],"61":[2,22],"79":[2,22],"84":[2,22],"94":[2,22],"99":[2,22],"107":[2,22],"109":[2,22],"110":[2,22],"111":[2,22],"114":[2,22],"118":[2,22],"119":[2,22],"120":[2,22],"127":[2,22],"128":[2,22],"129":[2,22],"131":[2,22],"132":[2,22],"134":[2,22],"135":[2,22],"138":[2,22],"139":[2,22],"140":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"148":[2,22],"149":[2,22],"150":[2,22],"151":[2,22],"152":[2,22],"153":[2,22],"154":[2,22],"155":[2,22],"156":[2,22],"157":[2,22],"158":[2,22],"159":[2,22],"160":[2,22],"161":[2,22],"162":[2,22],"163":[2,22]},{"1":[2,23],"4":[2,23],"29":[2,23],"30":[2,23],"50":[2,23],"58":[2,23],"61":[2,23],"79":[2,23],"84":[2,23],"94":[2,23],"99":[2,23],"107":[2,23],"109":[2,23],"110":[2,23],"111":[2,23],"114":[2,23],"118":[2,23],"119":[2,23],"120":[2,23],"127":[2,23],"128":[2,23],"129":[2,23],"131":[2,23],"132":[2,23],"134":[2,23],"135":[2,23],"138":[2,23],"139":[2,23],"140":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"148":[2,23],"149":[2,23],"150":[2,23],"151":[2,23],"152":[2,23],"153":[2,23],"154":[2,23],"155":[2,23],"156":[2,23],"157":[2,23],"158":[2,23],"159":[2,23],"160":[2,23],"161":[2,23],"162":[2,23],"163":[2,23]},{"1":[2,24],"4":[2,24],"29":[2,24],"30":[2,24],"50":[2,24],"58":[2,24],"61":[2,24],"79":[2,24],"84":[2,24],"94":[2,24],"99":[2,24],"107":[2,24],"109":[2,24],"110":[2,24],"111":[2,24],"114":[2,24],"118":[2,24],"119":[2,24],"120":[2,24],"127":[2,24],"128":[2,24],"129":[2,24],"131":[2,24],"132":[2,24],"134":[2,24],"135":[2,24],"138":[2,24],"139":[2,24],"140":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"148":[2,24],"149":[2,24],"150":[2,24],"151":[2,24],"152":[2,24],"153":[2,24],"154":[2,24],"155":[2,24],"156":[2,24],"157":[2,24],"158":[2,24],"159":[2,24],"160":[2,24],"161":[2,24],"162":[2,24],"163":[2,24]},{"1":[2,25],"4":[2,25],"29":[2,25],"30":[2,25],"50":[2,25],"58":[2,25],"61":[2,25],"79":[2,25],"84":[2,25],"94":[2,25],"99":[2,25],"107":[2,25],"109":[2,25],"110":[2,25],"111":[2,25],"114":[2,25],"118":[2,25],"119":[2,25],"120":[2,25],"127":[2,25],"128":[2,25],"129":[2,25],"131":[2,25],"132":[2,25],"134":[2,25],"135":[2,25],"138":[2,25],"139":[2,25],"140":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"148":[2,25],"149":[2,25],"150":[2,25],"151":[2,25],"152":[2,25],"153":[2,25],"154":[2,25],"155":[2,25],"156":[2,25],"157":[2,25],"158":[2,25],"159":[2,25],"160":[2,25],"161":[2,25],"162":[2,25],"163":[2,25]},{"1":[2,26],"4":[2,26],"29":[2,26],"30":[2,26],"50":[2,26],"58":[2,26],"61":[2,26],"79":[2,26],"84":[2,26],"94":[2,26],"99":[2,26],"107":[2,26],"109":[2,26],"110":[2,26],"111":[2,26],"114":[2,26],"118":[2,26],"119":[2,26],"120":[2,26],"127":[2,26],"128":[2,26],"129":[2,26],"131":[2,26],"132":[2,26],"134":[2,26],"135":[2,26],"138":[2,26],"139":[2,26],"140":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"148":[2,26],"149":[2,26],"150":[2,26],"151":[2,26],"152":[2,26],"153":[2,26],"154":[2,26],"155":[2,26],"156":[2,26],"157":[2,26],"158":[2,26],"159":[2,26],"160":[2,26],"161":[2,26],"162":[2,26],"163":[2,26]},{"1":[2,27],"4":[2,27],"29":[2,27],"30":[2,27],"50":[2,27],"58":[2,27],"61":[2,27],"79":[2,27],"84":[2,27],"94":[2,27],"99":[2,27],"107":[2,27],"109":[2,27],"110":[2,27],"111":[2,27],"114":[2,27],"118":[2,27],"119":[2,27],"120":[2,27],"127":[2,27],"128":[2,27],"129":[2,27],"131":[2,27],"132":[2,27],"134":[2,27],"135":[2,27],"138":[2,27],"139":[2,27],"140":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"148":[2,27],"149":[2,27],"150":[2,27],"151":[2,27],"152":[2,27],"153":[2,27],"154":[2,27],"155":[2,27],"156":[2,27],"157":[2,27],"158":[2,27],"159":[2,27],"160":[2,27],"161":[2,27],"162":[2,27],"163":[2,27]},{"1":[2,28],"4":[2,28],"29":[2,28],"30":[2,28],"50":[2,28],"58":[2,28],"61":[2,28],"79":[2,28],"84":[2,28],"94":[2,28],"99":[2,28],"107":[2,28],"109":[2,28],"110":[2,28],"111":[2,28],"114":[2,28],"118":[2,28],"119":[2,28],"120":[2,28],"127":[2,28],"128":[2,28],"129":[2,28],"131":[2,28],"132":[2,28],"134":[2,28],"135":[2,28],"138":[2,28],"139":[2,28],"140":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"148":[2,28],"149":[2,28],"150":[2,28],"151":[2,28],"152":[2,28],"153":[2,28],"154":[2,28],"155":[2,28],"156":[2,28],"157":[2,28],"158":[2,28],"159":[2,28],"160":[2,28],"161":[2,28],"162":[2,28],"163":[2,28]},{"1":[2,10],"4":[2,10],"30":[2,10],"107":[2,10],"109":[2,10],"111":[2,10],"114":[2,10],"127":[2,10],"128":[2,10]},{"1":[2,11],"4":[2,11],"30":[2,11],"107":[2,11],"109":[2,11],"111":[2,11],"114":[2,11],"127":[2,11],"128":[2,11]},{"1":[2,12],"4":[2,12],"30":[2,12],"107":[2,12],"109":[2,12],"111":[2,12],"114":[2,12],"127":[2,12],"128":[2,12]},{"1":[2,13],"4":[2,13],"30":[2,13],"107":[2,13],"109":[2,13],"111":[2,13],"114":[2,13],"127":[2,13],"128":[2,13]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"46":[1,148],"50":[2,73],"58":[2,73],"61":[2,73],"72":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"78":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"84":[2,73],"92":[2,73],"94":[2,73],"99":[2,73],"107":[2,73],"109":[2,73],"110":[2,73],"111":[2,73],"114":[2,73],"118":[2,73],"119":[2,73],"120":[2,73],"127":[2,73],"128":[2,73],"129":[2,73],"131":[2,73],"132":[2,73],"134":[2,73],"135":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73]},{"1":[2,74],"4":[2,74],"29":[2,74],"30":[2,74],"50":[2,74],"58":[2,74],"61":[2,74],"72":[2,74],"73":[2,74],"74":[2,74],"75":[2,74],"78":[2,74],"79":[2,74],"80":[2,74],"81":[2,74],"84":[2,74],"92":[2,74],"94":[2,74],"99":[2,74],"107":[2,74],"109":[2,74],"110":[2,74],"111":[2,74],"114":[2,74],"118":[2,74],"119":[2,74],"120":[2,74],"127":[2,74],"128":[2,74],"129":[2,74],"131":[2,74],"132":[2,74],"134":[2,74],"135":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74],"151":[2,74],"152":[2,74],"153":[2,74],"154":[2,74],"155":[2,74],"156":[2,74],"157":[2,74],"158":[2,74],"159":[2,74],"160":[2,74],"161":[2,74],"162":[2,74],"163":[2,74]},{"1":[2,75],"4":[2,75],"29":[2,75],"30":[2,75],"50":[2,75],"58":[2,75],"61":[2,75],"72":[2,75],"73":[2,75],"74":[2,75],"75":[2,75],"78":[2,75],"79":[2,75],"80":[2,75],"81":[2,75],"84":[2,75],"92":[2,75],"94":[2,75],"99":[2,75],"107":[2,75],"109":[2,75],"110":[2,75],"111":[2,75],"114":[2,75],"118":[2,75],"119":[2,75],"120":[2,75],"127":[2,75],"128":[2,75],"129":[2,75],"131":[2,75],"132":[2,75],"134":[2,75],"135":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75],"162":[2,75],"163":[2,75]},{"1":[2,76],"4":[2,76],"29":[2,76],"30":[2,76],"50":[2,76],"58":[2,76],"61":[2,76],"72":[2,76],"73":[2,76],"74":[2,76],"75":[2,76],"78":[2,76],"79":[2,76],"80":[2,76],"81":[2,76],"84":[2,76],"92":[2,76],"94":[2,76],"99":[2,76],"107":[2,76],"109":[2,76],"110":[2,76],"111":[2,76],"114":[2,76],"118":[2,76],"119":[2,76],"120":[2,76],"127":[2,76],"128":[2,76],"129":[2,76],"131":[2,76],"132":[2,76],"134":[2,76],"135":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76],"162":[2,76],"163":[2,76]},{"1":[2,77],"4":[2,77],"29":[2,77],"30":[2,77],"50":[2,77],"58":[2,77],"61":[2,77],"72":[2,77],"73":[2,77],"74":[2,77],"75":[2,77],"78":[2,77],"79":[2,77],"80":[2,77],"81":[2,77],"84":[2,77],"92":[2,77],"94":[2,77],"99":[2,77],"107":[2,77],"109":[2,77],"110":[2,77],"111":[2,77],"114":[2,77],"118":[2,77],"119":[2,77],"120":[2,77],"127":[2,77],"128":[2,77],"129":[2,77],"131":[2,77],"132":[2,77],"134":[2,77],"135":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77],"151":[2,77],"152":[2,77],"153":[2,77],"154":[2,77],"155":[2,77],"156":[2,77],"157":[2,77],"158":[2,77],"159":[2,77],"160":[2,77],"161":[2,77],"162":[2,77],"163":[2,77]},{"1":[2,78],"4":[2,78],"29":[2,78],"30":[2,78],"50":[2,78],"58":[2,78],"61":[2,78],"72":[2,78],"73":[2,78],"74":[2,78],"75":[2,78],"78":[2,78],"79":[2,78],"80":[2,78],"81":[2,78],"84":[2,78],"92":[2,78],"94":[2,78],"99":[2,78],"107":[2,78],"109":[2,78],"110":[2,78],"111":[2,78],"114":[2,78],"118":[2,78],"119":[2,78],"120":[2,78],"127":[2,78],"128":[2,78],"129":[2,78],"131":[2,78],"132":[2,78],"134":[2,78],"135":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78],"151":[2,78],"152":[2,78],"153":[2,78],"154":[2,78],"155":[2,78],"156":[2,78],"157":[2,78],"158":[2,78],"159":[2,78],"160":[2,78],"161":[2,78],"162":[2,78],"163":[2,78]},{"1":[2,103],"4":[2,103],"29":[2,103],"30":[2,103],"50":[2,103],"58":[2,103],"61":[2,103],"63":150,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,103],"80":[1,146],"81":[1,147],"84":[2,103],"91":149,"92":[1,138],"94":[2,103],"99":[2,103],"107":[2,103],"109":[2,103],"110":[2,103],"111":[2,103],"114":[2,103],"118":[2,103],"119":[2,103],"120":[2,103],"127":[2,103],"128":[2,103],"129":[2,103],"131":[2,103],"132":[2,103],"134":[2,103],"135":[2,103],"138":[2,103],"139":[2,103],"140":[2,103],"141":[2,103],"142":[2,103],"143":[2,103],"144":[2,103],"145":[2,103],"146":[2,103],"147":[2,103],"148":[2,103],"149":[2,103],"150":[2,103],"151":[2,103],"152":[2,103],"153":[2,103],"154":[2,103],"155":[2,103],"156":[2,103],"157":[2,103],"158":[2,103],"159":[2,103],"160":[2,103],"161":[2,103],"162":[2,103],"163":[2,103]},{"1":[2,104],"4":[2,104],"29":[2,104],"30":[2,104],"50":[2,104],"58":[2,104],"61":[2,104],"79":[2,104],"84":[2,104],"94":[2,104],"99":[2,104],"107":[2,104],"109":[2,104],"110":[2,104],"111":[2,104],"114":[2,104],"118":[2,104],"119":[2,104],"120":[2,104],"127":[2,104],"128":[2,104],"129":[2,104],"131":[2,104],"132":[2,104],"134":[2,104],"135":[2,104],"138":[2,104],"139":[2,104],"140":[2,104],"141":[2,104],"142":[2,104],"143":[2,104],"144":[2,104],"145":[2,104],"146":[2,104],"147":[2,104],"148":[2,104],"149":[2,104],"150":[2,104],"151":[2,104],"152":[2,104],"153":[2,104],"154":[2,104],"155":[2,104],"156":[2,104],"157":[2,104],"158":[2,104],"159":[2,104],"160":[2,104],"161":[2,104],"162":[2,104],"163":[2,104]},{"14":152,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":153,"62":154,"64":151,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"52":155,"53":[2,60],"58":[2,60],"59":156,"60":[1,157]},{"4":[1,159],"6":158,"29":[1,6]},{"8":160,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":162,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":163,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":164,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":165,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":166,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":167,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":168,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":169,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,171],"4":[2,171],"29":[2,171],"30":[2,171],"50":[2,171],"58":[2,171],"61":[2,171],"79":[2,171],"84":[2,171],"94":[2,171],"99":[2,171],"107":[2,171],"109":[2,171],"110":[2,171],"111":[2,171],"114":[2,171],"118":[2,171],"119":[2,171],"120":[2,171],"123":[1,170],"127":[2,171],"128":[2,171],"129":[2,171],"131":[2,171],"132":[2,171],"134":[2,171],"135":[2,171],"138":[2,171],"139":[2,171],"140":[2,171],"141":[2,171],"142":[2,171],"143":[2,171],"144":[2,171],"145":[2,171],"146":[2,171],"147":[2,171],"148":[2,171],"149":[2,171],"150":[2,171],"151":[2,171],"152":[2,171],"153":[2,171],"154":[2,171],"155":[2,171],"156":[2,171],"157":[2,171],"158":[2,171],"159":[2,171],"160":[2,171],"161":[2,171],"162":[2,171],"163":[2,171]},{"4":[1,159],"6":171,"29":[1,6]},{"4":[1,159],"6":172,"29":[1,6]},{"1":[2,141],"4":[2,141],"29":[2,141],"30":[2,141],"50":[2,141],"58":[2,141],"61":[2,141],"79":[2,141],"84":[2,141],"94":[2,141],"99":[2,141],"107":[2,141],"109":[2,141],"110":[2,141],"111":[2,141],"114":[2,141],"118":[2,141],"119":[2,141],"120":[2,141],"127":[2,141],"128":[2,141],"129":[2,141],"131":[2,141],"132":[2,141],"134":[2,141],"135":[2,141],"138":[2,141],"139":[2,141],"140":[2,141],"141":[2,141],"142":[2,141],"143":[2,141],"144":[2,141],"145":[2,141],"146":[2,141],"147":[2,141],"148":[2,141],"149":[2,141],"150":[2,141],"151":[2,141],"152":[2,141],"153":[2,141],"154":[2,141],"155":[2,141],"156":[2,141],"157":[2,141],"158":[2,141],"159":[2,141],"160":[2,141],"161":[2,141],"162":[2,141],"163":[2,141]},{"31":175,"32":[1,87],"66":176,"67":177,"82":[1,84],"98":[1,178],"115":173,"117":174},{"8":179,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,180],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"46":[2,70],"50":[2,70],"58":[2,70],"61":[2,70],"72":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"78":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"84":[2,70],"86":[1,181],"92":[2,70],"94":[2,70],"99":[2,70],"107":[2,70],"109":[2,70],"110":[2,70],"111":[2,70],"114":[2,70],"118":[2,70],"119":[2,70],"120":[2,70],"127":[2,70],"128":[2,70],"129":[2,70],"131":[2,70],"132":[2,70],"134":[2,70],"135":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70]},{"14":183,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":153,"62":182,"64":184,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,52],"4":[2,52],"29":[2,52],"30":[2,52],"50":[2,52],"58":[2,52],"61":[2,52],"79":[2,52],"84":[2,52],"94":[2,52],"99":[2,52],"103":[2,52],"104":[2,52],"107":[2,52],"109":[2,52],"110":[2,52],"111":[2,52],"114":[2,52],"118":[2,52],"119":[2,52],"120":[2,52],"123":[2,52],"125":[2,52],"127":[2,52],"128":[2,52],"129":[2,52],"131":[2,52],"132":[2,52],"134":[2,52],"135":[2,52],"138":[2,52],"139":[2,52],"140":[2,52],"141":[2,52],"142":[2,52],"143":[2,52],"144":[2,52],"145":[2,52],"146":[2,52],"147":[2,52],"148":[2,52],"149":[2,52],"150":[2,52],"151":[2,52],"152":[2,52],"153":[2,52],"154":[2,52],"155":[2,52],"156":[2,52],"157":[2,52],"158":[2,52],"159":[2,52],"160":[2,52],"161":[2,52],"162":[2,52],"163":[2,52]},{"1":[2,51],"4":[2,51],"8":185,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,51],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"107":[2,51],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[2,51],"128":[2,51],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":186,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,71],"4":[2,71],"29":[2,71],"30":[2,71],"46":[2,71],"50":[2,71],"58":[2,71],"61":[2,71],"72":[2,71],"73":[2,71],"74":[2,71],"75":[2,71],"78":[2,71],"79":[2,71],"80":[2,71],"81":[2,71],"84":[2,71],"92":[2,71],"94":[2,71],"99":[2,71],"107":[2,71],"109":[2,71],"110":[2,71],"111":[2,71],"114":[2,71],"118":[2,71],"119":[2,71],"120":[2,71],"127":[2,71],"128":[2,71],"129":[2,71],"131":[2,71],"132":[2,71],"134":[2,71],"135":[2,71],"138":[2,71],"139":[2,71],"140":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71],"162":[2,71],"163":[2,71]},{"1":[2,72],"4":[2,72],"29":[2,72],"30":[2,72],"46":[2,72],"50":[2,72],"58":[2,72],"61":[2,72],"72":[2,72],"73":[2,72],"74":[2,72],"75":[2,72],"78":[2,72],"79":[2,72],"80":[2,72],"81":[2,72],"84":[2,72],"92":[2,72],"94":[2,72],"99":[2,72],"107":[2,72],"109":[2,72],"110":[2,72],"111":[2,72],"114":[2,72],"118":[2,72],"119":[2,72],"120":[2,72],"127":[2,72],"128":[2,72],"129":[2,72],"131":[2,72],"132":[2,72],"134":[2,72],"135":[2,72],"138":[2,72],"139":[2,72],"140":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72],"162":[2,72],"163":[2,72]},{"1":[2,35],"4":[2,35],"29":[2,35],"30":[2,35],"50":[2,35],"58":[2,35],"61":[2,35],"72":[2,35],"73":[2,35],"74":[2,35],"75":[2,35],"78":[2,35],"79":[2,35],"80":[2,35],"81":[2,35],"84":[2,35],"92":[2,35],"94":[2,35],"99":[2,35],"107":[2,35],"109":[2,35],"110":[2,35],"111":[2,35],"114":[2,35],"118":[2,35],"119":[2,35],"120":[2,35],"127":[2,35],"128":[2,35],"129":[2,35],"131":[2,35],"132":[2,35],"134":[2,35],"135":[2,35],"138":[2,35],"139":[2,35],"140":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35],"151":[2,35],"152":[2,35],"153":[2,35],"154":[2,35],"155":[2,35],"156":[2,35],"157":[2,35],"158":[2,35],"159":[2,35],"160":[2,35],"161":[2,35],"162":[2,35],"163":[2,35]},{"1":[2,36],"4":[2,36],"29":[2,36],"30":[2,36],"50":[2,36],"58":[2,36],"61":[2,36],"72":[2,36],"73":[2,36],"74":[2,36],"75":[2,36],"78":[2,36],"79":[2,36],"80":[2,36],"81":[2,36],"84":[2,36],"92":[2,36],"94":[2,36],"99":[2,36],"107":[2,36],"109":[2,36],"110":[2,36],"111":[2,36],"114":[2,36],"118":[2,36],"119":[2,36],"120":[2,36],"127":[2,36],"128":[2,36],"129":[2,36],"131":[2,36],"132":[2,36],"134":[2,36],"135":[2,36],"138":[2,36],"139":[2,36],"140":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36],"151":[2,36],"152":[2,36],"153":[2,36],"154":[2,36],"155":[2,36],"156":[2,36],"157":[2,36],"158":[2,36],"159":[2,36],"160":[2,36],"161":[2,36],"162":[2,36],"163":[2,36]},{"1":[2,37],"4":[2,37],"29":[2,37],"30":[2,37],"50":[2,37],"58":[2,37],"61":[2,37],"72":[2,37],"73":[2,37],"74":[2,37],"75":[2,37],"78":[2,37],"79":[2,37],"80":[2,37],"81":[2,37],"84":[2,37],"92":[2,37],"94":[2,37],"99":[2,37],"107":[2,37],"109":[2,37],"110":[2,37],"111":[2,37],"114":[2,37],"118":[2,37],"119":[2,37],"120":[2,37],"127":[2,37],"128":[2,37],"129":[2,37],"131":[2,37],"132":[2,37],"134":[2,37],"135":[2,37],"138":[2,37],"139":[2,37],"140":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37],"151":[2,37],"152":[2,37],"153":[2,37],"154":[2,37],"155":[2,37],"156":[2,37],"157":[2,37],"158":[2,37],"159":[2,37],"160":[2,37],"161":[2,37],"162":[2,37],"163":[2,37]},{"1":[2,38],"4":[2,38],"29":[2,38],"30":[2,38],"50":[2,38],"58":[2,38],"61":[2,38],"72":[2,38],"73":[2,38],"74":[2,38],"75":[2,38],"78":[2,38],"79":[2,38],"80":[2,38],"81":[2,38],"84":[2,38],"92":[2,38],"94":[2,38],"99":[2,38],"107":[2,38],"109":[2,38],"110":[2,38],"111":[2,38],"114":[2,38],"118":[2,38],"119":[2,38],"120":[2,38],"127":[2,38],"128":[2,38],"129":[2,38],"131":[2,38],"132":[2,38],"134":[2,38],"135":[2,38],"138":[2,38],"139":[2,38],"140":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38],"151":[2,38],"152":[2,38],"153":[2,38],"154":[2,38],"155":[2,38],"156":[2,38],"157":[2,38],"158":[2,38],"159":[2,38],"160":[2,38],"161":[2,38],"162":[2,38],"163":[2,38]},{"1":[2,39],"4":[2,39],"29":[2,39],"30":[2,39],"50":[2,39],"58":[2,39],"61":[2,39],"72":[2,39],"73":[2,39],"74":[2,39],"75":[2,39],"78":[2,39],"79":[2,39],"80":[2,39],"81":[2,39],"84":[2,39],"92":[2,39],"94":[2,39],"99":[2,39],"107":[2,39],"109":[2,39],"110":[2,39],"111":[2,39],"114":[2,39],"118":[2,39],"119":[2,39],"120":[2,39],"127":[2,39],"128":[2,39],"129":[2,39],"131":[2,39],"132":[2,39],"134":[2,39],"135":[2,39],"138":[2,39],"139":[2,39],"140":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39],"151":[2,39],"152":[2,39],"153":[2,39],"154":[2,39],"155":[2,39],"156":[2,39],"157":[2,39],"158":[2,39],"159":[2,39],"160":[2,39],"161":[2,39],"162":[2,39],"163":[2,39]},{"1":[2,40],"4":[2,40],"29":[2,40],"30":[2,40],"50":[2,40],"58":[2,40],"61":[2,40],"72":[2,40],"73":[2,40],"74":[2,40],"75":[2,40],"78":[2,40],"79":[2,40],"80":[2,40],"81":[2,40],"84":[2,40],"92":[2,40],"94":[2,40],"99":[2,40],"107":[2,40],"109":[2,40],"110":[2,40],"111":[2,40],"114":[2,40],"118":[2,40],"119":[2,40],"120":[2,40],"127":[2,40],"128":[2,40],"129":[2,40],"131":[2,40],"132":[2,40],"134":[2,40],"135":[2,40],"138":[2,40],"139":[2,40],"140":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40],"151":[2,40],"152":[2,40],"153":[2,40],"154":[2,40],"155":[2,40],"156":[2,40],"157":[2,40],"158":[2,40],"159":[2,40],"160":[2,40],"161":[2,40],"162":[2,40],"163":[2,40]},{"1":[2,41],"4":[2,41],"29":[2,41],"30":[2,41],"50":[2,41],"58":[2,41],"61":[2,41],"72":[2,41],"73":[2,41],"74":[2,41],"75":[2,41],"78":[2,41],"79":[2,41],"80":[2,41],"81":[2,41],"84":[2,41],"92":[2,41],"94":[2,41],"99":[2,41],"107":[2,41],"109":[2,41],"110":[2,41],"111":[2,41],"114":[2,41],"118":[2,41],"119":[2,41],"120":[2,41],"127":[2,41],"128":[2,41],"129":[2,41],"131":[2,41],"132":[2,41],"134":[2,41],"135":[2,41],"138":[2,41],"139":[2,41],"140":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41],"151":[2,41],"152":[2,41],"153":[2,41],"154":[2,41],"155":[2,41],"156":[2,41],"157":[2,41],"158":[2,41],"159":[2,41],"160":[2,41],"161":[2,41],"162":[2,41],"163":[2,41]},{"1":[2,42],"4":[2,42],"29":[2,42],"30":[2,42],"50":[2,42],"58":[2,42],"61":[2,42],"72":[2,42],"73":[2,42],"74":[2,42],"75":[2,42],"78":[2,42],"79":[2,42],"80":[2,42],"81":[2,42],"84":[2,42],"92":[2,42],"94":[2,42],"99":[2,42],"107":[2,42],"109":[2,42],"110":[2,42],"111":[2,42],"114":[2,42],"118":[2,42],"119":[2,42],"120":[2,42],"127":[2,42],"128":[2,42],"129":[2,42],"131":[2,42],"132":[2,42],"134":[2,42],"135":[2,42],"138":[2,42],"139":[2,42],"140":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"148":[2,42],"149":[2,42],"150":[2,42],"151":[2,42],"152":[2,42],"153":[2,42],"154":[2,42],"155":[2,42],"156":[2,42],"157":[2,42],"158":[2,42],"159":[2,42],"160":[2,42],"161":[2,42],"162":[2,42],"163":[2,42]},{"1":[2,43],"4":[2,43],"29":[2,43],"30":[2,43],"50":[2,43],"58":[2,43],"61":[2,43],"72":[2,43],"73":[2,43],"74":[2,43],"75":[2,43],"78":[2,43],"79":[2,43],"80":[2,43],"81":[2,43],"84":[2,43],"92":[2,43],"94":[2,43],"99":[2,43],"107":[2,43],"109":[2,43],"110":[2,43],"111":[2,43],"114":[2,43],"118":[2,43],"119":[2,43],"120":[2,43],"127":[2,43],"128":[2,43],"129":[2,43],"131":[2,43],"132":[2,43],"134":[2,43],"135":[2,43],"138":[2,43],"139":[2,43],"140":[2,43],"141":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43],"148":[2,43],"149":[2,43],"150":[2,43],"151":[2,43],"152":[2,43],"153":[2,43],"154":[2,43],"155":[2,43],"156":[2,43],"157":[2,43],"158":[2,43],"159":[2,43],"160":[2,43],"161":[2,43],"162":[2,43],"163":[2,43]},{"7":187,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,120],"8":188,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":189,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,120],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,112],"4":[2,112],"29":[2,112],"30":[2,112],"50":[2,112],"58":[2,112],"61":[2,112],"72":[2,112],"73":[2,112],"74":[2,112],"75":[2,112],"78":[2,112],"79":[2,112],"80":[2,112],"81":[2,112],"84":[2,112],"92":[2,112],"94":[2,112],"99":[2,112],"107":[2,112],"109":[2,112],"110":[2,112],"111":[2,112],"114":[2,112],"118":[2,112],"119":[2,112],"120":[2,112],"127":[2,112],"128":[2,112],"129":[2,112],"131":[2,112],"132":[2,112],"134":[2,112],"135":[2,112],"138":[2,112],"139":[2,112],"140":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"147":[2,112],"148":[2,112],"149":[2,112],"150":[2,112],"151":[2,112],"152":[2,112],"153":[2,112],"154":[2,112],"155":[2,112],"156":[2,112],"157":[2,112],"158":[2,112],"159":[2,112],"160":[2,112],"161":[2,112],"162":[2,112],"163":[2,112]},{"1":[2,113],"4":[2,113],"29":[2,113],"30":[2,113],"31":190,"32":[1,87],"50":[2,113],"58":[2,113],"61":[2,113],"72":[2,113],"73":[2,113],"74":[2,113],"75":[2,113],"78":[2,113],"79":[2,113],"80":[2,113],"81":[2,113],"84":[2,113],"92":[2,113],"94":[2,113],"99":[2,113],"107":[2,113],"109":[2,113],"110":[2,113],"111":[2,113],"114":[2,113],"118":[2,113],"119":[2,113],"120":[2,113],"127":[2,113],"128":[2,113],"129":[2,113],"131":[2,113],"132":[2,113],"134":[2,113],"135":[2,113],"138":[2,113],"139":[2,113],"140":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"147":[2,113],"148":[2,113],"149":[2,113],"150":[2,113],"151":[2,113],"152":[2,113],"153":[2,113],"154":[2,113],"155":[2,113],"156":[2,113],"157":[2,113],"158":[2,113],"159":[2,113],"160":[2,113],"161":[2,113],"162":[2,113],"163":[2,113]},{"91":191,"92":[1,138]},{"4":[2,56],"29":[2,56]},{"4":[2,57],"29":[2,57]},{"8":192,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":193,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":194,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":195,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[1,159],"6":196,"8":197,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,66],"4":[2,66],"29":[2,66],"30":[2,66],"46":[2,66],"50":[2,66],"58":[2,66],"61":[2,66],"72":[2,66],"73":[2,66],"74":[2,66],"75":[2,66],"78":[2,66],"79":[2,66],"80":[2,66],"81":[2,66],"84":[2,66],"86":[2,66],"92":[2,66],"94":[2,66],"99":[2,66],"107":[2,66],"109":[2,66],"110":[2,66],"111":[2,66],"114":[2,66],"118":[2,66],"119":[2,66],"120":[2,66],"127":[2,66],"128":[2,66],"129":[2,66],"131":[2,66],"132":[2,66],"134":[2,66],"135":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66],"162":[2,66],"163":[2,66]},{"1":[2,69],"4":[2,69],"29":[2,69],"30":[2,69],"46":[2,69],"50":[2,69],"58":[2,69],"61":[2,69],"72":[2,69],"73":[2,69],"74":[2,69],"75":[2,69],"78":[2,69],"79":[2,69],"80":[2,69],"81":[2,69],"84":[2,69],"86":[2,69],"92":[2,69],"94":[2,69],"99":[2,69],"107":[2,69],"109":[2,69],"110":[2,69],"111":[2,69],"114":[2,69],"118":[2,69],"119":[2,69],"120":[2,69],"127":[2,69],"128":[2,69],"129":[2,69],"131":[2,69],"132":[2,69],"134":[2,69],"135":[2,69],"138":[2,69],"139":[2,69],"140":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69],"162":[2,69],"163":[2,69]},{"4":[2,89],"28":202,"29":[2,89],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":199,"49":[1,56],"58":[2,89],"83":198,"84":[2,89]},{"1":[2,33],"4":[2,33],"29":[2,33],"30":[2,33],"46":[2,33],"50":[2,33],"58":[2,33],"61":[2,33],"72":[2,33],"73":[2,33],"74":[2,33],"75":[2,33],"78":[2,33],"79":[2,33],"80":[2,33],"81":[2,33],"84":[2,33],"92":[2,33],"94":[2,33],"99":[2,33],"107":[2,33],"109":[2,33],"110":[2,33],"111":[2,33],"114":[2,33],"118":[2,33],"119":[2,33],"120":[2,33],"127":[2,33],"128":[2,33],"129":[2,33],"131":[2,33],"132":[2,33],"134":[2,33],"135":[2,33],"138":[2,33],"139":[2,33],"140":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33],"151":[2,33],"152":[2,33],"153":[2,33],"154":[2,33],"155":[2,33],"156":[2,33],"157":[2,33],"158":[2,33],"159":[2,33],"160":[2,33],"161":[2,33],"162":[2,33],"163":[2,33]},{"1":[2,34],"4":[2,34],"29":[2,34],"30":[2,34],"46":[2,34],"50":[2,34],"58":[2,34],"61":[2,34],"72":[2,34],"73":[2,34],"74":[2,34],"75":[2,34],"78":[2,34],"79":[2,34],"80":[2,34],"81":[2,34],"84":[2,34],"92":[2,34],"94":[2,34],"99":[2,34],"107":[2,34],"109":[2,34],"110":[2,34],"111":[2,34],"114":[2,34],"118":[2,34],"119":[2,34],"120":[2,34],"127":[2,34],"128":[2,34],"129":[2,34],"131":[2,34],"132":[2,34],"134":[2,34],"135":[2,34],"138":[2,34],"139":[2,34],"140":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34],"151":[2,34],"152":[2,34],"153":[2,34],"154":[2,34],"155":[2,34],"156":[2,34],"157":[2,34],"158":[2,34],"159":[2,34],"160":[2,34],"161":[2,34],"162":[2,34],"163":[2,34]},{"1":[2,32],"4":[2,32],"29":[2,32],"30":[2,32],"46":[2,32],"50":[2,32],"58":[2,32],"61":[2,32],"72":[2,32],"73":[2,32],"74":[2,32],"75":[2,32],"78":[2,32],"79":[2,32],"80":[2,32],"81":[2,32],"84":[2,32],"86":[2,32],"92":[2,32],"94":[2,32],"99":[2,32],"107":[2,32],"109":[2,32],"110":[2,32],"111":[2,32],"114":[2,32],"118":[2,32],"119":[2,32],"120":[2,32],"127":[2,32],"128":[2,32],"129":[2,32],"131":[2,32],"132":[2,32],"134":[2,32],"135":[2,32],"138":[2,32],"139":[2,32],"140":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32],"151":[2,32],"152":[2,32],"153":[2,32],"154":[2,32],"155":[2,32],"156":[2,32],"157":[2,32],"158":[2,32],"159":[2,32],"160":[2,32],"161":[2,32],"162":[2,32],"163":[2,32]},{"1":[2,31],"4":[2,31],"29":[2,31],"30":[2,31],"50":[2,31],"58":[2,31],"61":[2,31],"79":[2,31],"84":[2,31],"94":[2,31],"99":[2,31],"103":[2,31],"104":[2,31],"107":[2,31],"109":[2,31],"110":[2,31],"111":[2,31],"114":[2,31],"118":[2,31],"119":[2,31],"120":[2,31],"123":[2,31],"125":[2,31],"127":[2,31],"128":[2,31],"129":[2,31],"131":[2,31],"132":[2,31],"134":[2,31],"135":[2,31],"138":[2,31],"139":[2,31],"140":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31],"149":[2,31],"150":[2,31],"151":[2,31],"152":[2,31],"153":[2,31],"154":[2,31],"155":[2,31],"156":[2,31],"157":[2,31],"158":[2,31],"159":[2,31],"160":[2,31],"161":[2,31],"162":[2,31],"163":[2,31]},{"1":[2,7],"4":[2,7],"7":203,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,7],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,4]},{"4":[1,89],"30":[1,204]},{"1":[2,30],"4":[2,30],"29":[2,30],"30":[2,30],"50":[2,30],"58":[2,30],"61":[2,30],"79":[2,30],"84":[2,30],"94":[2,30],"99":[2,30],"103":[2,30],"104":[2,30],"107":[2,30],"109":[2,30],"110":[2,30],"111":[2,30],"114":[2,30],"118":[2,30],"119":[2,30],"120":[2,30],"123":[2,30],"125":[2,30],"127":[2,30],"128":[2,30],"129":[2,30],"131":[2,30],"132":[2,30],"134":[2,30],"135":[2,30],"138":[2,30],"139":[2,30],"140":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"148":[2,30],"149":[2,30],"150":[2,30],"151":[2,30],"152":[2,30],"153":[2,30],"154":[2,30],"155":[2,30],"156":[2,30],"157":[2,30],"158":[2,30],"159":[2,30],"160":[2,30],"161":[2,30],"162":[2,30],"163":[2,30]},{"1":[2,185],"4":[2,185],"29":[2,185],"30":[2,185],"50":[2,185],"58":[2,185],"61":[2,185],"79":[2,185],"84":[2,185],"94":[2,185],"99":[2,185],"107":[2,185],"109":[2,185],"110":[2,185],"111":[2,185],"114":[2,185],"118":[2,185],"119":[2,185],"120":[2,185],"127":[2,185],"128":[2,185],"129":[2,185],"131":[2,185],"132":[2,185],"134":[2,185],"135":[2,185],"138":[2,185],"139":[2,185],"140":[2,185],"141":[2,185],"142":[2,185],"143":[2,185],"144":[2,185],"145":[2,185],"146":[2,185],"147":[2,185],"148":[2,185],"149":[2,185],"150":[2,185],"151":[2,185],"152":[2,185],"153":[2,185],"154":[2,185],"155":[2,185],"156":[2,185],"157":[2,185],"158":[2,185],"159":[2,185],"160":[2,185],"161":[2,185],"162":[2,185],"163":[2,185]},{"1":[2,186],"4":[2,186],"29":[2,186],"30":[2,186],"50":[2,186],"58":[2,186],"61":[2,186],"79":[2,186],"84":[2,186],"94":[2,186],"99":[2,186],"107":[2,186],"109":[2,186],"110":[2,186],"111":[2,186],"114":[2,186],"118":[2,186],"119":[2,186],"120":[2,186],"127":[2,186],"128":[2,186],"129":[2,186],"131":[2,186],"132":[2,186],"134":[2,186],"135":[2,186],"138":[2,186],"139":[2,186],"140":[2,186],"141":[2,186],"142":[2,186],"143":[2,186],"144":[2,186],"145":[2,186],"146":[2,186],"147":[2,186],"148":[2,186],"149":[2,186],"150":[2,186],"151":[2,186],"152":[2,186],"153":[2,186],"154":[2,186],"155":[2,186],"156":[2,186],"157":[2,186],"158":[2,186],"159":[2,186],"160":[2,186],"161":[2,186],"162":[2,186],"163":[2,186]},{"8":205,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":206,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":207,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":208,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":209,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":210,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":211,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":212,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":213,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":214,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":215,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":216,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":217,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":218,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":219,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":220,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":221,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":222,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":223,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,53],"4":[2,53],"8":224,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,53],"30":[2,53],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"50":[2,53],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,53],"61":[2,53],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"79":[2,53],"82":[1,84],"84":[2,53],"85":[1,55],"89":35,"90":[1,36],"94":[2,53],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,53],"101":[1,49],"105":[1,58],"106":[1,70],"107":[2,53],"108":50,"109":[2,53],"110":[2,53],"111":[2,53],"112":51,"113":[1,81],"114":[2,53],"118":[2,53],"119":[2,53],"120":[2,53],"121":[1,53],"126":48,"127":[2,53],"128":[2,53],"129":[2,53],"130":[1,40],"131":[2,53],"132":[2,53],"133":[1,43],"134":[2,53],"135":[2,53],"136":[1,46],"137":[1,47],"138":[2,53],"139":[2,53],"140":[2,53],"141":[2,53],"142":[2,53],"143":[2,53],"144":[2,53],"145":[2,53],"146":[2,53],"147":[2,53],"148":[2,53],"149":[2,53],"150":[2,53],"151":[2,53],"152":[2,53],"153":[2,53],"154":[2,53],"155":[2,53],"156":[2,53],"157":[2,53],"158":[2,53],"159":[2,53],"160":[2,53],"161":[2,53],"162":[2,53],"163":[2,53]},{"8":225,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":226,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":227,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":228,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":229,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":230,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":231,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":232,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":233,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":234,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":235,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"118":[1,236],"119":[1,237]},{"8":238,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":239,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,140],"4":[2,140],"29":[2,140],"30":[2,140],"50":[2,140],"58":[2,140],"61":[2,140],"79":[2,140],"84":[2,140],"94":[2,140],"99":[2,140],"107":[2,140],"109":[2,140],"110":[2,140],"111":[2,140],"114":[2,140],"118":[2,140],"119":[2,140],"120":[2,140],"127":[2,140],"128":[2,140],"129":[2,140],"131":[2,140],"132":[2,140],"134":[2,140],"135":[2,140],"138":[2,140],"139":[2,140],"140":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140],"148":[2,140],"149":[2,140],"150":[2,140],"151":[2,140],"152":[2,140],"153":[2,140],"154":[2,140],"155":[2,140],"156":[2,140],"157":[2,140],"158":[2,140],"159":[2,140],"160":[2,140],"161":[2,140],"162":[2,140],"163":[2,140]},{"31":175,"32":[1,87],"66":176,"67":177,"82":[1,84],"98":[1,178],"115":240,"117":174},{"61":[1,241]},{"8":242,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":243,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,139],"4":[2,139],"29":[2,139],"30":[2,139],"50":[2,139],"58":[2,139],"61":[2,139],"79":[2,139],"84":[2,139],"94":[2,139],"99":[2,139],"107":[2,139],"109":[2,139],"110":[2,139],"111":[2,139],"114":[2,139],"118":[2,139],"119":[2,139],"120":[2,139],"127":[2,139],"128":[2,139],"129":[2,139],"131":[2,139],"132":[2,139],"134":[2,139],"135":[2,139],"138":[2,139],"139":[2,139],"140":[2,139],"141":[2,139],"142":[2,139],"143":[2,139],"144":[2,139],"145":[2,139],"146":[2,139],"147":[2,139],"148":[2,139],"149":[2,139],"150":[2,139],"151":[2,139],"152":[2,139],"153":[2,139],"154":[2,139],"155":[2,139],"156":[2,139],"157":[2,139],"158":[2,139],"159":[2,139],"160":[2,139],"161":[2,139],"162":[2,139],"163":[2,139]},{"31":175,"32":[1,87],"66":176,"67":177,"82":[1,84],"98":[1,178],"115":244,"117":174},{"1":[2,108],"4":[2,108],"29":[2,108],"30":[2,108],"50":[2,108],"58":[2,108],"61":[2,108],"72":[2,108],"73":[2,108],"74":[2,108],"75":[2,108],"78":[2,108],"79":[2,108],"80":[2,108],"81":[2,108],"84":[2,108],"92":[2,108],"94":[2,108],"99":[2,108],"107":[2,108],"109":[2,108],"110":[2,108],"111":[2,108],"114":[2,108],"118":[2,108],"119":[2,108],"120":[2,108],"127":[2,108],"128":[2,108],"129":[2,108],"131":[2,108],"132":[2,108],"134":[2,108],"135":[2,108],"138":[2,108],"139":[2,108],"140":[2,108],"141":[2,108],"142":[2,108],"143":[2,108],"144":[2,108],"145":[2,108],"146":[2,108],"147":[2,108],"148":[2,108],"149":[2,108],"150":[2,108],"151":[2,108],"152":[2,108],"153":[2,108],"154":[2,108],"155":[2,108],"156":[2,108],"157":[2,108],"158":[2,108],"159":[2,108],"160":[2,108],"161":[2,108],"162":[2,108],"163":[2,108]},{"1":[2,67],"4":[2,67],"29":[2,67],"30":[2,67],"46":[2,67],"50":[2,67],"58":[2,67],"61":[2,67],"72":[2,67],"73":[2,67],"74":[2,67],"75":[2,67],"78":[2,67],"79":[2,67],"80":[2,67],"81":[2,67],"84":[2,67],"86":[2,67],"92":[2,67],"94":[2,67],"99":[2,67],"107":[2,67],"109":[2,67],"110":[2,67],"111":[2,67],"114":[2,67],"118":[2,67],"119":[2,67],"120":[2,67],"127":[2,67],"128":[2,67],"129":[2,67],"131":[2,67],"132":[2,67],"134":[2,67],"135":[2,67],"138":[2,67],"139":[2,67],"140":[2,67],"141":[2,67],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67],"162":[2,67],"163":[2,67]},{"4":[2,120],"8":246,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":245,"94":[2,120],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"31":247,"32":[1,87]},{"31":248,"32":[1,87]},{"1":[2,81],"4":[2,81],"29":[2,81],"30":[2,81],"46":[2,81],"50":[2,81],"58":[2,81],"61":[2,81],"72":[2,81],"73":[2,81],"74":[2,81],"75":[2,81],"78":[2,81],"79":[2,81],"80":[2,81],"81":[2,81],"84":[2,81],"86":[2,81],"92":[2,81],"94":[2,81],"99":[2,81],"107":[2,81],"109":[2,81],"110":[2,81],"111":[2,81],"114":[2,81],"118":[2,81],"119":[2,81],"120":[2,81],"127":[2,81],"128":[2,81],"129":[2,81],"131":[2,81],"132":[2,81],"134":[2,81],"135":[2,81],"138":[2,81],"139":[2,81],"140":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81],"151":[2,81],"152":[2,81],"153":[2,81],"154":[2,81],"155":[2,81],"156":[2,81],"157":[2,81],"158":[2,81],"159":[2,81],"160":[2,81],"161":[2,81],"162":[2,81],"163":[2,81]},{"31":249,"32":[1,87]},{"1":[2,83],"4":[2,83],"29":[2,83],"30":[2,83],"46":[2,83],"50":[2,83],"58":[2,83],"61":[2,83],"72":[2,83],"73":[2,83],"74":[2,83],"75":[2,83],"78":[2,83],"79":[2,83],"80":[2,83],"81":[2,83],"84":[2,83],"86":[2,83],"92":[2,83],"94":[2,83],"99":[2,83],"107":[2,83],"109":[2,83],"110":[2,83],"111":[2,83],"114":[2,83],"118":[2,83],"119":[2,83],"120":[2,83],"127":[2,83],"128":[2,83],"129":[2,83],"131":[2,83],"132":[2,83],"134":[2,83],"135":[2,83],"138":[2,83],"139":[2,83],"140":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83],"151":[2,83],"152":[2,83],"153":[2,83],"154":[2,83],"155":[2,83],"156":[2,83],"157":[2,83],"158":[2,83],"159":[2,83],"160":[2,83],"161":[2,83],"162":[2,83],"163":[2,83]},{"1":[2,84],"4":[2,84],"29":[2,84],"30":[2,84],"46":[2,84],"50":[2,84],"58":[2,84],"61":[2,84],"72":[2,84],"73":[2,84],"74":[2,84],"75":[2,84],"78":[2,84],"79":[2,84],"80":[2,84],"81":[2,84],"84":[2,84],"86":[2,84],"92":[2,84],"94":[2,84],"99":[2,84],"107":[2,84],"109":[2,84],"110":[2,84],"111":[2,84],"114":[2,84],"118":[2,84],"119":[2,84],"120":[2,84],"127":[2,84],"128":[2,84],"129":[2,84],"131":[2,84],"132":[2,84],"134":[2,84],"135":[2,84],"138":[2,84],"139":[2,84],"140":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84],"151":[2,84],"152":[2,84],"153":[2,84],"154":[2,84],"155":[2,84],"156":[2,84],"157":[2,84],"158":[2,84],"159":[2,84],"160":[2,84],"161":[2,84],"162":[2,84],"163":[2,84]},{"8":250,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"76":251,"78":[1,252],"80":[1,146],"81":[1,147]},{"76":253,"78":[1,252],"80":[1,146],"81":[1,147]},{"8":254,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,109],"4":[2,109],"29":[2,109],"30":[2,109],"50":[2,109],"58":[2,109],"61":[2,109],"72":[2,109],"73":[2,109],"74":[2,109],"75":[2,109],"78":[2,109],"79":[2,109],"80":[2,109],"81":[2,109],"84":[2,109],"92":[2,109],"94":[2,109],"99":[2,109],"107":[2,109],"109":[2,109],"110":[2,109],"111":[2,109],"114":[2,109],"118":[2,109],"119":[2,109],"120":[2,109],"127":[2,109],"128":[2,109],"129":[2,109],"131":[2,109],"132":[2,109],"134":[2,109],"135":[2,109],"138":[2,109],"139":[2,109],"140":[2,109],"141":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"147":[2,109],"148":[2,109],"149":[2,109],"150":[2,109],"151":[2,109],"152":[2,109],"153":[2,109],"154":[2,109],"155":[2,109],"156":[2,109],"157":[2,109],"158":[2,109],"159":[2,109],"160":[2,109],"161":[2,109],"162":[2,109],"163":[2,109]},{"1":[2,68],"4":[2,68],"29":[2,68],"30":[2,68],"46":[2,68],"50":[2,68],"58":[2,68],"61":[2,68],"72":[2,68],"73":[2,68],"74":[2,68],"75":[2,68],"78":[2,68],"79":[2,68],"80":[2,68],"81":[2,68],"84":[2,68],"86":[2,68],"92":[2,68],"94":[2,68],"99":[2,68],"107":[2,68],"109":[2,68],"110":[2,68],"111":[2,68],"114":[2,68],"118":[2,68],"119":[2,68],"120":[2,68],"127":[2,68],"128":[2,68],"129":[2,68],"131":[2,68],"132":[2,68],"134":[2,68],"135":[2,68],"138":[2,68],"139":[2,68],"140":[2,68],"141":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68],"162":[2,68],"163":[2,68]},{"1":[2,105],"4":[2,105],"29":[2,105],"30":[2,105],"50":[2,105],"58":[2,105],"61":[2,105],"63":150,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,105],"80":[1,146],"81":[1,147],"84":[2,105],"91":149,"92":[1,138],"94":[2,105],"99":[2,105],"107":[2,105],"109":[2,105],"110":[2,105],"111":[2,105],"114":[2,105],"118":[2,105],"119":[2,105],"120":[2,105],"127":[2,105],"128":[2,105],"129":[2,105],"131":[2,105],"132":[2,105],"134":[2,105],"135":[2,105],"138":[2,105],"139":[2,105],"140":[2,105],"141":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"148":[2,105],"149":[2,105],"150":[2,105],"151":[2,105],"152":[2,105],"153":[2,105],"154":[2,105],"155":[2,105],"156":[2,105],"157":[2,105],"158":[2,105],"159":[2,105],"160":[2,105],"161":[2,105],"162":[2,105],"163":[2,105]},{"1":[2,106],"4":[2,106],"29":[2,106],"30":[2,106],"50":[2,106],"58":[2,106],"61":[2,106],"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,106],"80":[1,146],"81":[1,147],"84":[2,106],"91":136,"92":[1,138],"94":[2,106],"99":[2,106],"107":[2,106],"109":[2,106],"110":[2,106],"111":[2,106],"114":[2,106],"118":[2,106],"119":[2,106],"120":[2,106],"127":[2,106],"128":[2,106],"129":[2,106],"131":[2,106],"132":[2,106],"134":[2,106],"135":[2,106],"138":[2,106],"139":[2,106],"140":[2,106],"141":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"148":[2,106],"149":[2,106],"150":[2,106],"151":[2,106],"152":[2,106],"153":[2,106],"154":[2,106],"155":[2,106],"156":[2,106],"157":[2,106],"158":[2,106],"159":[2,106],"160":[2,106],"161":[2,106],"162":[2,106],"163":[2,106]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"50":[2,73],"58":[2,73],"61":[2,73],"72":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"78":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"84":[2,73],"92":[2,73],"94":[2,73],"99":[2,73],"107":[2,73],"109":[2,73],"110":[2,73],"111":[2,73],"114":[2,73],"118":[2,73],"119":[2,73],"120":[2,73],"127":[2,73],"128":[2,73],"129":[2,73],"131":[2,73],"132":[2,73],"134":[2,73],"135":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"50":[2,70],"58":[2,70],"61":[2,70],"72":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"78":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"84":[2,70],"92":[2,70],"94":[2,70],"99":[2,70],"107":[2,70],"109":[2,70],"110":[2,70],"111":[2,70],"114":[2,70],"118":[2,70],"119":[2,70],"120":[2,70],"127":[2,70],"128":[2,70],"129":[2,70],"131":[2,70],"132":[2,70],"134":[2,70],"135":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70]},{"53":[1,255],"58":[1,256]},{"53":[2,61],"58":[2,61],"61":[1,257]},{"53":[2,63],"58":[2,63],"61":[2,63]},{"1":[2,55],"4":[2,55],"29":[2,55],"30":[2,55],"50":[2,55],"58":[2,55],"61":[2,55],"79":[2,55],"84":[2,55],"94":[2,55],"99":[2,55],"107":[2,55],"109":[2,55],"110":[2,55],"111":[2,55],"114":[2,55],"118":[2,55],"119":[2,55],"120":[2,55],"127":[2,55],"128":[2,55],"129":[2,55],"131":[2,55],"132":[2,55],"134":[2,55],"135":[2,55],"138":[2,55],"139":[2,55],"140":[2,55],"141":[2,55],"142":[2,55],"143":[2,55],"144":[2,55],"145":[2,55],"146":[2,55],"147":[2,55],"148":[2,55],"149":[2,55],"150":[2,55],"151":[2,55],"152":[2,55],"153":[2,55],"154":[2,55],"155":[2,55],"156":[2,55],"157":[2,55],"158":[2,55],"159":[2,55],"160":[2,55],"161":[2,55],"162":[2,55],"163":[2,55]},{"28":88,"49":[1,56]},{"1":[2,176],"4":[2,176],"29":[2,176],"30":[2,176],"50":[1,114],"58":[2,176],"61":[2,176],"79":[2,176],"84":[2,176],"94":[2,176],"99":[2,176],"107":[2,176],"108":129,"109":[2,176],"110":[2,176],"111":[2,176],"114":[2,176],"118":[2,176],"119":[2,176],"120":[2,176],"127":[2,176],"128":[2,176],"131":[2,176],"132":[2,176],"138":[2,176],"139":[2,176],"140":[2,176],"141":[2,176],"142":[2,176],"143":[2,176],"144":[2,176],"145":[2,176],"146":[2,176],"147":[2,176],"148":[2,176],"149":[2,176],"150":[2,176],"151":[2,176],"152":[2,176],"153":[2,176],"154":[2,176],"155":[2,176],"156":[2,176],"157":[2,176],"158":[2,176],"159":[2,176],"160":[2,176],"161":[2,176],"162":[2,176],"163":[2,176]},{"108":134,"109":[1,79],"111":[1,80],"114":[1,135],"127":[1,132],"128":[1,133]},{"1":[2,177],"4":[2,177],"29":[2,177],"30":[2,177],"50":[1,114],"58":[2,177],"61":[2,177],"79":[2,177],"84":[2,177],"94":[2,177],"99":[2,177],"107":[2,177],"108":129,"109":[2,177],"110":[2,177],"111":[2,177],"114":[2,177],"118":[2,177],"119":[2,177],"120":[2,177],"127":[2,177],"128":[2,177],"131":[2,177],"132":[2,177],"138":[2,177],"139":[2,177],"140":[2,177],"141":[2,177],"142":[2,177],"143":[2,177],"144":[2,177],"145":[2,177],"146":[2,177],"147":[2,177],"148":[2,177],"149":[2,177],"150":[2,177],"151":[2,177],"152":[2,177],"153":[2,177],"154":[2,177],"155":[2,177],"156":[2,177],"157":[2,177],"158":[2,177],"159":[2,177],"160":[2,177],"161":[2,177],"162":[2,177],"163":[2,177]},{"1":[2,178],"4":[2,178],"29":[2,178],"30":[2,178],"50":[1,114],"58":[2,178],"61":[2,178],"79":[2,178],"84":[2,178],"94":[2,178],"99":[2,178],"107":[2,178],"108":129,"109":[2,178],"110":[2,178],"111":[2,178],"114":[2,178],"118":[2,178],"119":[2,178],"120":[2,178],"127":[2,178],"128":[2,178],"131":[2,178],"132":[2,178],"138":[2,178],"139":[2,178],"140":[2,178],"141":[2,178],"142":[2,178],"143":[2,178],"144":[2,178],"145":[2,178],"146":[2,178],"147":[2,178],"148":[2,178],"149":[2,178],"150":[2,178],"151":[2,178],"152":[2,178],"153":[2,178],"154":[2,178],"155":[2,178],"156":[2,178],"157":[2,178],"158":[2,178],"159":[2,178],"160":[2,178],"161":[2,178],"162":[2,178],"163":[2,178]},{"1":[2,179],"4":[2,179],"29":[2,179],"30":[2,179],"50":[1,114],"58":[2,179],"61":[2,179],"79":[2,179],"84":[2,179],"94":[2,179],"99":[2,179],"107":[2,179],"108":129,"109":[2,179],"110":[2,179],"111":[2,179],"114":[2,179],"118":[2,179],"119":[2,179],"120":[2,179],"127":[2,179],"128":[2,179],"131":[2,179],"132":[2,179],"138":[2,179],"139":[2,179],"140":[2,179],"141":[2,179],"142":[2,179],"143":[2,179],"144":[2,179],"145":[2,179],"146":[2,179],"147":[2,179],"148":[2,179],"149":[2,179],"150":[2,179],"151":[2,179],"152":[2,179],"153":[2,179],"154":[2,179],"155":[2,179],"156":[2,179],"157":[2,179],"158":[2,179],"159":[2,179],"160":[2,179],"161":[2,179],"162":[2,179],"163":[2,179]},{"1":[2,180],"4":[2,180],"29":[2,180],"30":[2,180],"50":[1,114],"58":[2,180],"61":[2,180],"79":[2,180],"84":[2,180],"94":[2,180],"99":[2,180],"107":[2,180],"108":129,"109":[2,180],"110":[2,180],"111":[2,180],"114":[2,180],"118":[2,180],"119":[2,180],"120":[2,180],"127":[2,180],"128":[2,180],"131":[2,180],"132":[2,180],"138":[2,180],"139":[2,180],"140":[2,180],"141":[2,180],"142":[2,180],"143":[2,180],"144":[2,180],"145":[2,180],"146":[2,180],"147":[2,180],"148":[2,180],"149":[2,180],"150":[2,180],"151":[2,180],"152":[2,180],"153":[2,180],"154":[2,180],"155":[2,180],"156":[2,180],"157":[2,180],"158":[2,180],"159":[2,180],"160":[2,180],"161":[2,180],"162":[2,180],"163":[2,180]},{"1":[2,181],"4":[2,181],"29":[2,181],"30":[2,181],"50":[1,114],"58":[2,181],"61":[2,181],"79":[2,181],"84":[2,181],"94":[2,181],"99":[2,181],"107":[2,181],"108":129,"109":[2,181],"110":[2,181],"111":[2,181],"114":[2,181],"118":[2,181],"119":[2,181],"120":[2,181],"127":[2,181],"128":[2,181],"131":[2,181],"132":[2,181],"138":[2,181],"139":[2,181],"140":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"148":[2,181],"149":[2,181],"150":[2,181],"151":[2,181],"152":[2,181],"153":[2,181],"154":[2,181],"155":[2,181],"156":[2,181],"157":[2,181],"158":[2,181],"159":[2,181],"160":[2,181],"161":[2,181],"162":[2,181],"163":[2,181]},{"1":[2,182],"4":[2,182],"29":[2,182],"30":[2,182],"50":[1,114],"58":[2,182],"61":[2,182],"79":[2,182],"84":[2,182],"94":[2,182],"99":[2,182],"107":[2,182],"108":129,"109":[2,182],"110":[2,182],"111":[2,182],"114":[2,182],"118":[2,182],"119":[2,182],"120":[2,182],"127":[2,182],"128":[2,182],"131":[2,182],"132":[2,182],"138":[2,182],"139":[2,182],"140":[2,182],"141":[2,182],"142":[2,182],"143":[2,182],"144":[2,182],"145":[2,182],"146":[2,182],"147":[2,182],"148":[2,182],"149":[2,182],"150":[2,182],"151":[2,182],"152":[2,182],"153":[2,182],"154":[2,182],"155":[2,182],"156":[2,182],"157":[2,182],"158":[2,182],"159":[2,182],"160":[2,182],"161":[2,182],"162":[2,182],"163":[2,182]},{"1":[2,183],"4":[2,183],"29":[2,183],"30":[2,183],"50":[1,114],"58":[2,183],"61":[2,183],"79":[2,183],"84":[2,183],"94":[2,183],"99":[2,183],"107":[2,183],"108":129,"109":[2,183],"110":[2,183],"111":[2,183],"114":[2,183],"118":[2,183],"119":[2,183],"120":[2,183],"127":[2,183],"128":[2,183],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,183],"152":[2,183],"153":[2,183],"154":[2,183],"155":[2,183],"156":[2,183],"157":[2,183],"158":[2,183],"159":[2,183],"160":[2,183],"161":[2,183],"162":[2,183],"163":[1,123]},{"1":[2,184],"4":[2,184],"29":[2,184],"30":[2,184],"50":[1,114],"58":[2,184],"61":[2,184],"79":[2,184],"84":[2,184],"94":[2,184],"99":[2,184],"107":[2,184],"108":129,"109":[2,184],"110":[2,184],"111":[2,184],"114":[2,184],"118":[2,184],"119":[2,184],"120":[2,184],"127":[2,184],"128":[2,184],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,184],"152":[2,184],"153":[2,184],"154":[2,184],"155":[2,184],"156":[2,184],"157":[2,184],"158":[2,184],"159":[2,184],"160":[2,184],"161":[2,184],"162":[2,184],"163":[1,123]},{"4":[1,159],"6":259,"29":[1,6],"127":[1,258]},{"102":260,"103":[1,261],"104":[1,262]},{"1":[2,138],"4":[2,138],"29":[2,138],"30":[2,138],"50":[2,138],"58":[2,138],"61":[2,138],"79":[2,138],"84":[2,138],"94":[2,138],"99":[2,138],"107":[2,138],"109":[2,138],"110":[2,138],"111":[2,138],"114":[2,138],"118":[2,138],"119":[2,138],"120":[2,138],"127":[2,138],"128":[2,138],"129":[2,138],"131":[2,138],"132":[2,138],"134":[2,138],"135":[2,138],"138":[2,138],"139":[2,138],"140":[2,138],"141":[2,138],"142":[2,138],"143":[2,138],"144":[2,138],"145":[2,138],"146":[2,138],"147":[2,138],"148":[2,138],"149":[2,138],"150":[2,138],"151":[2,138],"152":[2,138],"153":[2,138],"154":[2,138],"155":[2,138],"156":[2,138],"157":[2,138],"158":[2,138],"159":[2,138],"160":[2,138],"161":[2,138],"162":[2,138],"163":[2,138]},{"116":263,"118":[1,264],"119":[1,265]},{"58":[1,266],"118":[2,150],"119":[2,150]},{"58":[2,147],"118":[2,147],"119":[2,147]},{"58":[2,148],"118":[2,148],"119":[2,148]},{"58":[2,149],"118":[2,149],"119":[2,149]},{"4":[2,120],"8":246,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":189,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,120],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"29":[1,267],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"122":268,"124":269,"125":[1,270]},{"14":271,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":153,"62":154,"64":184,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,94],"4":[2,94],"29":[1,273],"30":[2,94],"50":[2,94],"58":[2,94],"61":[2,94],"72":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"78":[2,70],"79":[2,94],"80":[2,70],"81":[2,70],"84":[2,94],"86":[1,272],"92":[2,70],"94":[2,94],"99":[2,94],"107":[2,94],"109":[2,94],"110":[2,94],"111":[2,94],"114":[2,94],"118":[2,94],"119":[2,94],"120":[2,94],"127":[2,94],"128":[2,94],"129":[2,94],"131":[2,94],"132":[2,94],"134":[2,94],"135":[2,94],"138":[2,94],"139":[2,94],"140":[2,94],"141":[2,94],"142":[2,94],"143":[2,94],"144":[2,94],"145":[2,94],"146":[2,94],"147":[2,94],"148":[2,94],"149":[2,94],"150":[2,94],"151":[2,94],"152":[2,94],"153":[2,94],"154":[2,94],"155":[2,94],"156":[2,94],"157":[2,94],"158":[2,94],"159":[2,94],"160":[2,94],"161":[2,94],"162":[2,94],"163":[2,94]},{"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"80":[1,146],"81":[1,147],"91":136,"92":[1,138]},{"63":150,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"80":[1,146],"81":[1,147],"91":149,"92":[1,138]},{"1":[2,50],"4":[2,50],"30":[2,50],"50":[1,114],"61":[1,131],"107":[2,50],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[2,50],"128":[2,50],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,132],"4":[2,132],"30":[2,132],"50":[1,114],"61":[1,131],"107":[2,132],"108":129,"109":[2,132],"111":[2,132],"114":[2,132],"118":[1,124],"119":[1,125],"127":[2,132],"128":[2,132],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"107":[1,274]},{"4":[2,121],"29":[2,121],"50":[1,114],"58":[2,121],"61":[1,275],"99":[2,121],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,58],"29":[2,58],"57":276,"58":[1,277],"99":[2,58]},{"1":[2,114],"4":[2,114],"29":[2,114],"30":[2,114],"46":[2,114],"50":[2,114],"58":[2,114],"61":[2,114],"72":[2,114],"73":[2,114],"74":[2,114],"75":[2,114],"78":[2,114],"79":[2,114],"80":[2,114],"81":[2,114],"84":[2,114],"86":[2,114],"92":[2,114],"94":[2,114],"99":[2,114],"107":[2,114],"109":[2,114],"110":[2,114],"111":[2,114],"114":[2,114],"118":[2,114],"119":[2,114],"120":[2,114],"127":[2,114],"128":[2,114],"129":[2,114],"131":[2,114],"132":[2,114],"134":[2,114],"135":[2,114],"138":[2,114],"139":[2,114],"140":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"147":[2,114],"148":[2,114],"149":[2,114],"150":[2,114],"151":[2,114],"152":[2,114],"153":[2,114],"154":[2,114],"155":[2,114],"156":[2,114],"157":[2,114],"158":[2,114],"159":[2,114],"160":[2,114],"161":[2,114],"162":[2,114],"163":[2,114]},{"1":[2,111],"4":[2,111],"29":[2,111],"30":[2,111],"50":[2,111],"58":[2,111],"61":[2,111],"79":[2,111],"84":[2,111],"94":[2,111],"99":[2,111],"107":[2,111],"109":[2,111],"110":[2,111],"111":[2,111],"114":[2,111],"118":[2,111],"119":[2,111],"120":[2,111],"127":[2,111],"128":[2,111],"129":[2,111],"131":[2,111],"132":[2,111],"134":[2,111],"135":[2,111],"138":[2,111],"139":[2,111],"140":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"147":[2,111],"148":[2,111],"149":[2,111],"150":[2,111],"151":[2,111],"152":[2,111],"153":[2,111],"154":[2,111],"155":[2,111],"156":[2,111],"157":[2,111],"158":[2,111],"159":[2,111],"160":[2,111],"161":[2,111],"162":[2,111],"163":[2,111]},{"4":[1,159],"6":278,"29":[1,6],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,159],"6":279,"29":[1,6],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,134],"4":[2,134],"29":[2,134],"30":[2,134],"50":[1,114],"58":[2,134],"61":[1,131],"79":[2,134],"84":[2,134],"94":[2,134],"99":[2,134],"107":[2,134],"108":129,"109":[1,79],"110":[1,280],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,134],"127":[2,134],"128":[2,134],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,136],"4":[2,136],"29":[2,136],"30":[2,136],"50":[1,114],"58":[2,136],"61":[1,131],"79":[2,136],"84":[2,136],"94":[2,136],"99":[2,136],"107":[2,136],"108":129,"109":[1,79],"110":[1,281],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,136],"127":[2,136],"128":[2,136],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,142],"4":[2,142],"29":[2,142],"30":[2,142],"50":[2,142],"58":[2,142],"61":[2,142],"79":[2,142],"84":[2,142],"94":[2,142],"99":[2,142],"107":[2,142],"109":[2,142],"110":[2,142],"111":[2,142],"114":[2,142],"118":[2,142],"119":[2,142],"120":[2,142],"127":[2,142],"128":[2,142],"129":[2,142],"131":[2,142],"132":[2,142],"134":[2,142],"135":[2,142],"138":[2,142],"139":[2,142],"140":[2,142],"141":[2,142],"142":[2,142],"143":[2,142],"144":[2,142],"145":[2,142],"146":[2,142],"147":[2,142],"148":[2,142],"149":[2,142],"150":[2,142],"151":[2,142],"152":[2,142],"153":[2,142],"154":[2,142],"155":[2,142],"156":[2,142],"157":[2,142],"158":[2,142],"159":[2,142],"160":[2,142],"161":[2,142],"162":[2,142],"163":[2,142]},{"1":[2,143],"4":[2,143],"29":[2,143],"30":[2,143],"50":[1,114],"58":[2,143],"61":[1,131],"79":[2,143],"84":[2,143],"94":[2,143],"99":[2,143],"107":[2,143],"108":129,"109":[1,79],"110":[2,143],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,143],"127":[2,143],"128":[2,143],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,58],"29":[2,58],"57":282,"58":[1,283],"84":[2,58]},{"4":[2,90],"29":[2,90],"30":[2,90],"58":[2,90],"84":[2,90]},{"4":[2,45],"29":[2,45],"30":[2,45],"46":[1,284],"58":[2,45],"84":[2,45]},{"4":[2,46],"29":[2,46],"30":[2,46],"46":[1,285],"58":[2,46],"84":[2,46]},{"4":[2,49],"29":[2,49],"30":[2,49],"58":[2,49],"84":[2,49]},{"1":[2,6],"4":[2,6],"30":[2,6]},{"1":[2,29],"4":[2,29],"29":[2,29],"30":[2,29],"50":[2,29],"58":[2,29],"61":[2,29],"79":[2,29],"84":[2,29],"94":[2,29],"99":[2,29],"103":[2,29],"104":[2,29],"107":[2,29],"109":[2,29],"110":[2,29],"111":[2,29],"114":[2,29],"118":[2,29],"119":[2,29],"120":[2,29],"123":[2,29],"125":[2,29],"127":[2,29],"128":[2,29],"129":[2,29],"131":[2,29],"132":[2,29],"134":[2,29],"135":[2,29],"138":[2,29],"139":[2,29],"140":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"148":[2,29],"149":[2,29],"150":[2,29],"151":[2,29],"152":[2,29],"153":[2,29],"154":[2,29],"155":[2,29],"156":[2,29],"157":[2,29],"158":[2,29],"159":[2,29],"160":[2,29],"161":[2,29],"162":[2,29],"163":[2,29]},{"1":[2,187],"4":[2,187],"29":[2,187],"30":[2,187],"50":[1,114],"58":[2,187],"61":[2,187],"79":[2,187],"84":[2,187],"94":[2,187],"99":[2,187],"107":[2,187],"108":129,"109":[2,187],"110":[2,187],"111":[2,187],"114":[2,187],"118":[2,187],"119":[2,187],"120":[2,187],"127":[2,187],"128":[2,187],"129":[1,126],"131":[2,187],"132":[2,187],"134":[1,93],"135":[1,94],"138":[2,187],"139":[2,187],"140":[2,187],"141":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"146":[2,187],"147":[2,187],"148":[2,187],"149":[2,187],"150":[2,187],"151":[2,187],"152":[2,187],"153":[2,187],"154":[2,187],"155":[2,187],"156":[2,187],"157":[2,187],"158":[2,187],"159":[2,187],"160":[2,187],"161":[2,187],"162":[2,187],"163":[2,187]},{"1":[2,188],"4":[2,188],"29":[2,188],"30":[2,188],"50":[1,114],"58":[2,188],"61":[2,188],"79":[2,188],"84":[2,188],"94":[2,188],"99":[2,188],"107":[2,188],"108":129,"109":[2,188],"110":[2,188],"111":[2,188],"114":[2,188],"118":[2,188],"119":[2,188],"120":[2,188],"127":[2,188],"128":[2,188],"129":[1,126],"131":[2,188],"132":[2,188],"134":[1,93],"135":[1,94],"138":[2,188],"139":[2,188],"140":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"147":[2,188],"148":[2,188],"149":[2,188],"150":[2,188],"151":[2,188],"152":[2,188],"153":[2,188],"154":[2,188],"155":[2,188],"156":[2,188],"157":[2,188],"158":[2,188],"159":[2,188],"160":[2,188],"161":[2,188],"162":[2,188],"163":[2,188]},{"1":[2,189],"4":[2,189],"29":[2,189],"30":[2,189],"50":[1,114],"58":[2,189],"61":[2,189],"79":[2,189],"84":[2,189],"94":[2,189],"99":[2,189],"107":[2,189],"108":129,"109":[2,189],"110":[2,189],"111":[2,189],"114":[2,189],"118":[2,189],"119":[2,189],"120":[2,189],"127":[2,189],"128":[2,189],"129":[1,126],"131":[2,189],"132":[2,189],"134":[1,93],"135":[1,94],"138":[2,189],"139":[2,189],"140":[2,189],"141":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"148":[2,189],"149":[2,189],"150":[2,189],"151":[2,189],"152":[2,189],"153":[2,189],"154":[2,189],"155":[2,189],"156":[2,189],"157":[2,189],"158":[2,189],"159":[2,189],"160":[2,189],"161":[2,189],"162":[2,189],"163":[2,189]},{"1":[2,190],"4":[2,190],"29":[2,190],"30":[2,190],"50":[1,114],"58":[2,190],"61":[2,190],"79":[2,190],"84":[2,190],"94":[2,190],"99":[2,190],"107":[2,190],"108":129,"109":[2,190],"110":[2,190],"111":[2,190],"114":[2,190],"118":[2,190],"119":[2,190],"120":[2,190],"127":[2,190],"128":[2,190],"129":[1,126],"131":[2,190],"132":[2,190],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,190],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"148":[2,190],"149":[2,190],"150":[2,190],"151":[2,190],"152":[2,190],"153":[2,190],"154":[2,190],"155":[2,190],"156":[2,190],"157":[2,190],"158":[2,190],"159":[2,190],"160":[2,190],"161":[2,190],"162":[2,190],"163":[2,190]},{"1":[2,191],"4":[2,191],"29":[2,191],"30":[2,191],"50":[1,114],"58":[2,191],"61":[2,191],"79":[2,191],"84":[2,191],"94":[2,191],"99":[2,191],"107":[2,191],"108":129,"109":[2,191],"110":[2,191],"111":[2,191],"114":[2,191],"118":[2,191],"119":[2,191],"120":[2,191],"127":[2,191],"128":[2,191],"129":[1,126],"131":[2,191],"132":[2,191],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,191],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"148":[2,191],"149":[2,191],"150":[2,191],"151":[2,191],"152":[2,191],"153":[2,191],"154":[2,191],"155":[2,191],"156":[2,191],"157":[2,191],"158":[2,191],"159":[2,191],"160":[2,191],"161":[2,191],"162":[2,191],"163":[2,191]},{"1":[2,192],"4":[2,192],"29":[2,192],"30":[2,192],"50":[1,114],"58":[2,192],"61":[2,192],"79":[2,192],"84":[2,192],"94":[2,192],"99":[2,192],"107":[2,192],"108":129,"109":[2,192],"110":[2,192],"111":[2,192],"114":[2,192],"118":[2,192],"119":[2,192],"120":[2,192],"127":[2,192],"128":[2,192],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,192],"142":[2,192],"143":[2,192],"144":[2,192],"145":[2,192],"146":[2,192],"147":[2,192],"148":[2,192],"149":[2,192],"150":[2,192],"151":[2,192],"152":[2,192],"153":[2,192],"154":[2,192],"155":[2,192],"156":[2,192],"157":[2,192],"158":[2,192],"159":[2,192],"160":[2,192],"161":[2,192],"162":[2,192],"163":[2,192]},{"1":[2,193],"4":[2,193],"29":[2,193],"30":[2,193],"50":[1,114],"58":[2,193],"61":[2,193],"79":[2,193],"84":[2,193],"94":[2,193],"99":[2,193],"107":[2,193],"108":129,"109":[2,193],"110":[2,193],"111":[2,193],"114":[2,193],"118":[2,193],"119":[2,193],"120":[2,193],"127":[2,193],"128":[2,193],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,193],"142":[2,193],"143":[2,193],"144":[2,193],"145":[2,193],"146":[2,193],"147":[2,193],"148":[2,193],"149":[2,193],"150":[2,193],"151":[2,193],"152":[2,193],"153":[2,193],"154":[2,193],"155":[2,193],"156":[2,193],"157":[2,193],"158":[2,193],"159":[2,193],"160":[2,193],"161":[2,193],"162":[2,193],"163":[2,193]},{"1":[2,194],"4":[2,194],"29":[2,194],"30":[2,194],"50":[1,114],"58":[2,194],"61":[2,194],"79":[2,194],"84":[2,194],"94":[2,194],"99":[2,194],"107":[2,194],"108":129,"109":[2,194],"110":[2,194],"111":[2,194],"114":[2,194],"118":[2,194],"119":[2,194],"120":[2,194],"127":[2,194],"128":[2,194],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,194],"142":[2,194],"143":[2,194],"144":[2,194],"145":[2,194],"146":[2,194],"147":[2,194],"148":[2,194],"149":[2,194],"150":[2,194],"151":[2,194],"152":[2,194],"153":[2,194],"154":[2,194],"155":[2,194],"156":[2,194],"157":[2,194],"158":[2,194],"159":[2,194],"160":[2,194],"161":[2,194],"162":[2,194],"163":[2,194]},{"1":[2,195],"4":[2,195],"29":[2,195],"30":[2,195],"50":[1,114],"58":[2,195],"61":[2,195],"79":[2,195],"84":[2,195],"94":[2,195],"99":[2,195],"107":[2,195],"108":129,"109":[2,195],"110":[2,195],"111":[2,195],"114":[2,195],"118":[2,195],"119":[2,195],"120":[2,195],"127":[2,195],"128":[2,195],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[2,195],"145":[2,195],"146":[2,195],"147":[2,195],"148":[2,195],"149":[2,195],"150":[2,195],"151":[2,195],"152":[2,195],"153":[2,195],"154":[2,195],"155":[2,195],"156":[2,195],"157":[2,195],"158":[2,195],"159":[2,195],"160":[2,195],"161":[2,195],"162":[2,195],"163":[2,195]},{"1":[2,196],"4":[2,196],"29":[2,196],"30":[2,196],"50":[1,114],"58":[2,196],"61":[2,196],"79":[2,196],"84":[2,196],"94":[2,196],"99":[2,196],"107":[2,196],"108":129,"109":[2,196],"110":[2,196],"111":[2,196],"114":[2,196],"118":[2,196],"119":[2,196],"120":[2,196],"127":[2,196],"128":[2,196],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[2,196],"145":[2,196],"146":[2,196],"147":[2,196],"148":[2,196],"149":[2,196],"150":[2,196],"151":[2,196],"152":[2,196],"153":[2,196],"154":[2,196],"155":[2,196],"156":[2,196],"157":[2,196],"158":[2,196],"159":[2,196],"160":[2,196],"161":[2,196],"162":[2,196],"163":[2,196]},{"1":[2,197],"4":[2,197],"29":[2,197],"30":[2,197],"50":[1,114],"58":[2,197],"61":[2,197],"79":[2,197],"84":[2,197],"94":[2,197],"99":[2,197],"107":[2,197],"108":129,"109":[2,197],"110":[2,197],"111":[2,197],"114":[2,197],"118":[2,197],"119":[2,197],"120":[2,197],"127":[2,197],"128":[2,197],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[2,197],"145":[2,197],"146":[2,197],"147":[2,197],"148":[2,197],"149":[2,197],"150":[2,197],"151":[2,197],"152":[2,197],"153":[2,197],"154":[2,197],"155":[2,197],"156":[2,197],"157":[2,197],"158":[2,197],"159":[2,197],"160":[2,197],"161":[2,197],"162":[2,197],"163":[2,197]},{"1":[2,198],"4":[2,198],"29":[2,198],"30":[2,198],"50":[1,114],"58":[2,198],"61":[2,198],"79":[2,198],"84":[2,198],"94":[2,198],"99":[2,198],"107":[2,198],"108":129,"109":[2,198],"110":[2,198],"111":[2,198],"114":[2,198],"118":[2,198],"119":[2,198],"120":[2,198],"127":[2,198],"128":[2,198],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,198],"148":[2,198],"149":[2,198],"150":[2,198],"151":[2,198],"152":[2,198],"153":[2,198],"154":[2,198],"155":[2,198],"156":[2,198],"157":[2,198],"158":[2,198],"159":[2,198],"160":[2,198],"161":[2,198],"162":[2,198],"163":[2,198]},{"1":[2,199],"4":[2,199],"29":[2,199],"30":[2,199],"50":[1,114],"58":[2,199],"61":[2,199],"79":[2,199],"84":[2,199],"94":[2,199],"99":[2,199],"107":[2,199],"108":129,"109":[2,199],"110":[2,199],"111":[2,199],"114":[2,199],"118":[2,199],"119":[2,199],"120":[2,199],"127":[2,199],"128":[2,199],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,199],"148":[2,199],"149":[2,199],"150":[2,199],"151":[2,199],"152":[2,199],"153":[2,199],"154":[2,199],"155":[2,199],"156":[2,199],"157":[2,199],"158":[2,199],"159":[2,199],"160":[2,199],"161":[2,199],"162":[2,199],"163":[2,199]},{"1":[2,200],"4":[2,200],"29":[2,200],"30":[2,200],"50":[1,114],"58":[2,200],"61":[2,200],"79":[2,200],"84":[2,200],"94":[2,200],"99":[2,200],"107":[2,200],"108":129,"109":[2,200],"110":[2,200],"111":[2,200],"114":[2,200],"118":[2,200],"119":[2,200],"120":[2,200],"127":[2,200],"128":[2,200],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,200],"148":[2,200],"149":[2,200],"150":[2,200],"151":[2,200],"152":[2,200],"153":[2,200],"154":[2,200],"155":[2,200],"156":[2,200],"157":[2,200],"158":[2,200],"159":[2,200],"160":[2,200],"161":[2,200],"162":[2,200],"163":[2,200]},{"1":[2,201],"4":[2,201],"29":[2,201],"30":[2,201],"50":[1,114],"58":[2,201],"61":[2,201],"79":[2,201],"84":[2,201],"94":[2,201],"99":[2,201],"107":[2,201],"108":129,"109":[2,201],"110":[2,201],"111":[2,201],"114":[2,201],"118":[2,201],"119":[2,201],"120":[2,201],"127":[2,201],"128":[2,201],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,201],"148":[2,201],"149":[2,201],"150":[2,201],"151":[2,201],"152":[2,201],"153":[2,201],"154":[2,201],"155":[2,201],"156":[2,201],"157":[2,201],"158":[2,201],"159":[2,201],"160":[2,201],"161":[2,201],"162":[2,201],"163":[2,201]},{"1":[2,202],"4":[2,202],"29":[2,202],"30":[2,202],"50":[1,114],"58":[2,202],"61":[2,202],"79":[2,202],"84":[2,202],"94":[2,202],"99":[2,202],"107":[2,202],"108":129,"109":[2,202],"110":[2,202],"111":[2,202],"114":[2,202],"118":[2,202],"119":[2,202],"120":[2,202],"127":[2,202],"128":[2,202],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,202],"152":[2,202],"153":[2,202],"154":[2,202],"155":[2,202],"156":[2,202],"157":[2,202],"158":[2,202],"159":[2,202],"160":[2,202],"161":[2,202],"162":[2,202],"163":[1,123]},{"1":[2,203],"4":[2,203],"29":[2,203],"30":[2,203],"50":[1,114],"58":[2,203],"61":[2,203],"79":[2,203],"84":[2,203],"94":[2,203],"99":[2,203],"107":[2,203],"108":129,"109":[2,203],"110":[2,203],"111":[2,203],"114":[2,203],"118":[2,203],"119":[2,203],"120":[2,203],"127":[2,203],"128":[2,203],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,203],"152":[2,203],"153":[2,203],"154":[2,203],"155":[2,203],"156":[2,203],"157":[2,203],"158":[2,203],"159":[2,203],"160":[2,203],"161":[2,203],"162":[2,203],"163":[1,123]},{"1":[2,204],"4":[2,204],"29":[2,204],"30":[2,204],"50":[1,114],"58":[2,204],"61":[2,204],"79":[2,204],"84":[2,204],"94":[2,204],"99":[2,204],"107":[2,204],"108":129,"109":[2,204],"110":[2,204],"111":[2,204],"114":[2,204],"118":[2,204],"119":[2,204],"120":[2,204],"127":[2,204],"128":[2,204],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[2,204],"154":[2,204],"155":[2,204],"156":[2,204],"157":[2,204],"158":[2,204],"159":[2,204],"160":[2,204],"161":[2,204],"162":[2,204],"163":[1,123]},{"1":[2,205],"4":[2,205],"29":[2,205],"30":[2,205],"50":[1,114],"58":[2,205],"61":[2,205],"79":[2,205],"84":[2,205],"94":[2,205],"99":[2,205],"107":[2,205],"108":129,"109":[2,205],"110":[2,205],"111":[2,205],"114":[2,205],"118":[2,205],"119":[2,205],"120":[2,205],"127":[2,205],"128":[2,205],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[2,205],"154":[2,205],"155":[2,205],"156":[2,205],"157":[2,205],"158":[2,205],"159":[2,205],"160":[2,205],"161":[2,205],"162":[2,205],"163":[1,123]},{"1":[2,206],"4":[2,206],"29":[2,206],"30":[2,206],"50":[2,206],"58":[2,206],"61":[2,206],"79":[2,206],"84":[2,206],"94":[2,206],"99":[2,206],"107":[2,206],"108":129,"109":[2,206],"110":[2,206],"111":[2,206],"114":[2,206],"118":[2,206],"119":[2,206],"120":[2,206],"127":[2,206],"128":[2,206],"129":[2,206],"131":[2,206],"132":[2,206],"134":[2,206],"135":[2,206],"138":[2,206],"139":[2,206],"140":[2,206],"141":[2,206],"142":[2,206],"143":[2,206],"144":[2,206],"145":[2,206],"146":[2,206],"147":[2,206],"148":[2,206],"149":[2,206],"150":[2,206],"151":[2,206],"152":[2,206],"153":[2,206],"154":[2,206],"155":[2,206],"156":[2,206],"157":[2,206],"158":[2,206],"159":[2,206],"160":[2,206],"161":[2,206],"162":[2,206],"163":[2,206]},{"1":[2,207],"4":[2,207],"29":[2,207],"30":[2,207],"50":[1,114],"58":[2,207],"61":[2,207],"79":[2,207],"84":[2,207],"94":[2,207],"99":[2,207],"107":[2,207],"108":129,"109":[2,207],"110":[2,207],"111":[2,207],"114":[2,207],"118":[2,207],"119":[2,207],"120":[2,207],"127":[2,207],"128":[2,207],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,208],"4":[2,208],"29":[2,208],"30":[2,208],"50":[1,114],"58":[2,208],"61":[2,208],"79":[2,208],"84":[2,208],"94":[2,208],"99":[2,208],"107":[2,208],"108":129,"109":[2,208],"110":[2,208],"111":[2,208],"114":[2,208],"118":[2,208],"119":[2,208],"120":[2,208],"127":[2,208],"128":[2,208],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,209],"4":[2,209],"29":[2,209],"30":[2,209],"50":[1,114],"58":[2,209],"61":[2,209],"79":[2,209],"84":[2,209],"94":[2,209],"99":[2,209],"107":[2,209],"108":129,"109":[2,209],"110":[2,209],"111":[2,209],"114":[2,209],"118":[2,209],"119":[2,209],"120":[2,209],"127":[2,209],"128":[2,209],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,210],"4":[2,210],"29":[2,210],"30":[2,210],"50":[1,114],"58":[2,210],"61":[2,210],"79":[2,210],"84":[2,210],"94":[2,210],"99":[2,210],"107":[2,210],"108":129,"109":[2,210],"110":[2,210],"111":[2,210],"114":[2,210],"118":[2,210],"119":[2,210],"120":[2,210],"127":[2,210],"128":[2,210],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,211],"4":[2,211],"29":[2,211],"30":[2,211],"50":[1,114],"58":[2,211],"61":[2,211],"79":[2,211],"84":[2,211],"94":[2,211],"99":[2,211],"107":[2,211],"108":129,"109":[2,211],"110":[2,211],"111":[2,211],"114":[2,211],"118":[2,211],"119":[2,211],"120":[2,211],"127":[2,211],"128":[2,211],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,212],"4":[2,212],"29":[2,212],"30":[2,212],"50":[1,114],"58":[2,212],"61":[2,212],"79":[2,212],"84":[2,212],"94":[2,212],"99":[2,212],"107":[2,212],"108":129,"109":[2,212],"110":[2,212],"111":[2,212],"114":[2,212],"118":[2,212],"119":[2,212],"120":[2,212],"127":[2,212],"128":[2,212],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,213],"4":[2,213],"29":[2,213],"30":[2,213],"50":[1,114],"58":[2,213],"61":[2,213],"79":[2,213],"84":[2,213],"94":[2,213],"99":[2,213],"107":[2,213],"108":129,"109":[2,213],"110":[2,213],"111":[2,213],"114":[2,213],"118":[2,213],"119":[2,213],"120":[2,213],"127":[2,213],"128":[2,213],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,214],"4":[2,214],"29":[2,214],"30":[2,214],"50":[1,114],"58":[2,214],"61":[2,214],"79":[2,214],"84":[2,214],"94":[2,214],"99":[2,214],"107":[2,214],"108":129,"109":[2,214],"110":[2,214],"111":[2,214],"114":[2,214],"118":[2,214],"119":[2,214],"120":[2,214],"127":[2,214],"128":[2,214],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,215],"4":[2,215],"29":[2,215],"30":[2,215],"50":[1,114],"58":[2,215],"61":[2,215],"79":[2,215],"84":[2,215],"94":[2,215],"99":[2,215],"107":[2,215],"108":129,"109":[2,215],"110":[2,215],"111":[2,215],"114":[2,215],"118":[2,215],"119":[2,215],"120":[2,215],"127":[2,215],"128":[2,215],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,215],"152":[2,215],"153":[2,215],"154":[2,215],"155":[2,215],"156":[2,215],"157":[2,215],"158":[2,215],"159":[2,215],"160":[2,215],"161":[2,215],"162":[2,215],"163":[1,123]},{"1":[2,216],"4":[2,216],"29":[2,216],"30":[2,216],"50":[1,114],"58":[2,216],"61":[1,131],"79":[2,216],"84":[2,216],"94":[2,216],"99":[2,216],"107":[2,216],"108":129,"109":[2,216],"110":[2,216],"111":[2,216],"114":[2,216],"118":[1,124],"119":[1,125],"120":[2,216],"127":[2,216],"128":[2,216],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,217],"4":[2,217],"29":[2,217],"30":[2,217],"50":[1,114],"58":[2,217],"61":[1,131],"79":[2,217],"84":[2,217],"94":[2,217],"99":[2,217],"107":[2,217],"108":129,"109":[2,217],"110":[2,217],"111":[2,217],"114":[2,217],"118":[1,124],"119":[1,125],"120":[2,217],"127":[2,217],"128":[2,217],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"8":286,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":287,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,173],"4":[2,173],"29":[2,173],"30":[2,173],"50":[1,114],"58":[2,173],"61":[1,131],"79":[2,173],"84":[2,173],"94":[2,173],"99":[2,173],"107":[2,173],"108":129,"109":[1,79],"110":[2,173],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,173],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,175],"4":[2,175],"29":[2,175],"30":[2,175],"50":[1,114],"58":[2,175],"61":[1,131],"79":[2,175],"84":[2,175],"94":[2,175],"99":[2,175],"107":[2,175],"108":129,"109":[1,79],"110":[2,175],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,175],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"116":288,"118":[1,264],"119":[1,265]},{"61":[1,289]},{"1":[2,172],"4":[2,172],"29":[2,172],"30":[2,172],"50":[1,114],"58":[2,172],"61":[1,131],"79":[2,172],"84":[2,172],"94":[2,172],"99":[2,172],"107":[2,172],"108":129,"109":[1,79],"110":[2,172],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,172],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,174],"4":[2,174],"29":[2,174],"30":[2,174],"50":[1,114],"58":[2,174],"61":[1,131],"79":[2,174],"84":[2,174],"94":[2,174],"99":[2,174],"107":[2,174],"108":129,"109":[1,79],"110":[2,174],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,174],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"116":290,"118":[1,264],"119":[1,265]},{"4":[2,58],"29":[2,58],"57":291,"58":[1,277],"94":[2,58]},{"4":[2,121],"29":[2,121],"30":[2,121],"50":[1,114],"58":[2,121],"61":[1,131],"94":[2,121],"99":[2,121],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,79],"4":[2,79],"29":[2,79],"30":[2,79],"46":[2,79],"50":[2,79],"58":[2,79],"61":[2,79],"72":[2,79],"73":[2,79],"74":[2,79],"75":[2,79],"78":[2,79],"79":[2,79],"80":[2,79],"81":[2,79],"84":[2,79],"86":[2,79],"92":[2,79],"94":[2,79],"99":[2,79],"107":[2,79],"109":[2,79],"110":[2,79],"111":[2,79],"114":[2,79],"118":[2,79],"119":[2,79],"120":[2,79],"127":[2,79],"128":[2,79],"129":[2,79],"131":[2,79],"132":[2,79],"134":[2,79],"135":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79],"151":[2,79],"152":[2,79],"153":[2,79],"154":[2,79],"155":[2,79],"156":[2,79],"157":[2,79],"158":[2,79],"159":[2,79],"160":[2,79],"161":[2,79],"162":[2,79],"163":[2,79]},{"1":[2,80],"4":[2,80],"29":[2,80],"30":[2,80],"46":[2,80],"50":[2,80],"58":[2,80],"61":[2,80],"72":[2,80],"73":[2,80],"74":[2,80],"75":[2,80],"78":[2,80],"79":[2,80],"80":[2,80],"81":[2,80],"84":[2,80],"86":[2,80],"92":[2,80],"94":[2,80],"99":[2,80],"107":[2,80],"109":[2,80],"110":[2,80],"111":[2,80],"114":[2,80],"118":[2,80],"119":[2,80],"120":[2,80],"127":[2,80],"128":[2,80],"129":[2,80],"131":[2,80],"132":[2,80],"134":[2,80],"135":[2,80],"138":[2,80],"139":[2,80],"140":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80],"151":[2,80],"152":[2,80],"153":[2,80],"154":[2,80],"155":[2,80],"156":[2,80],"157":[2,80],"158":[2,80],"159":[2,80],"160":[2,80],"161":[2,80],"162":[2,80],"163":[2,80]},{"1":[2,82],"4":[2,82],"29":[2,82],"30":[2,82],"46":[2,82],"50":[2,82],"58":[2,82],"61":[2,82],"72":[2,82],"73":[2,82],"74":[2,82],"75":[2,82],"78":[2,82],"79":[2,82],"80":[2,82],"81":[2,82],"84":[2,82],"86":[2,82],"92":[2,82],"94":[2,82],"99":[2,82],"107":[2,82],"109":[2,82],"110":[2,82],"111":[2,82],"114":[2,82],"118":[2,82],"119":[2,82],"120":[2,82],"127":[2,82],"128":[2,82],"129":[2,82],"131":[2,82],"132":[2,82],"134":[2,82],"135":[2,82],"138":[2,82],"139":[2,82],"140":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82],"151":[2,82],"152":[2,82],"153":[2,82],"154":[2,82],"155":[2,82],"156":[2,82],"157":[2,82],"158":[2,82],"159":[2,82],"160":[2,82],"161":[2,82],"162":[2,82],"163":[2,82]},{"50":[1,114],"61":[1,293],"79":[1,292],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,86],"4":[2,86],"29":[2,86],"30":[2,86],"46":[2,86],"50":[2,86],"58":[2,86],"61":[2,86],"72":[2,86],"73":[2,86],"74":[2,86],"75":[2,86],"78":[2,86],"79":[2,86],"80":[2,86],"81":[2,86],"84":[2,86],"86":[2,86],"92":[2,86],"94":[2,86],"99":[2,86],"107":[2,86],"109":[2,86],"110":[2,86],"111":[2,86],"114":[2,86],"118":[2,86],"119":[2,86],"120":[2,86],"127":[2,86],"128":[2,86],"129":[2,86],"131":[2,86],"132":[2,86],"134":[2,86],"135":[2,86],"138":[2,86],"139":[2,86],"140":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"148":[2,86],"149":[2,86],"150":[2,86],"151":[2,86],"152":[2,86],"153":[2,86],"154":[2,86],"155":[2,86],"156":[2,86],"157":[2,86],"158":[2,86],"159":[2,86],"160":[2,86],"161":[2,86],"162":[2,86],"163":[2,86]},{"8":294,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,87],"4":[2,87],"29":[2,87],"30":[2,87],"46":[2,87],"50":[2,87],"58":[2,87],"61":[2,87],"72":[2,87],"73":[2,87],"74":[2,87],"75":[2,87],"78":[2,87],"79":[2,87],"80":[2,87],"81":[2,87],"84":[2,87],"86":[2,87],"92":[2,87],"94":[2,87],"99":[2,87],"107":[2,87],"109":[2,87],"110":[2,87],"111":[2,87],"114":[2,87],"118":[2,87],"119":[2,87],"120":[2,87],"127":[2,87],"128":[2,87],"129":[2,87],"131":[2,87],"132":[2,87],"134":[2,87],"135":[2,87],"138":[2,87],"139":[2,87],"140":[2,87],"141":[2,87],"142":[2,87],"143":[2,87],"144":[2,87],"145":[2,87],"146":[2,87],"147":[2,87],"148":[2,87],"149":[2,87],"150":[2,87],"151":[2,87],"152":[2,87],"153":[2,87],"154":[2,87],"155":[2,87],"156":[2,87],"157":[2,87],"158":[2,87],"159":[2,87],"160":[2,87],"161":[2,87],"162":[2,87],"163":[2,87]},{"1":[2,44],"4":[2,44],"29":[2,44],"30":[2,44],"50":[1,114],"58":[2,44],"61":[1,131],"79":[2,44],"84":[2,44],"94":[2,44],"99":[2,44],"107":[2,44],"108":129,"109":[1,79],"110":[2,44],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,44],"127":[2,44],"128":[2,44],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"54":295,"55":[1,75],"56":[1,76]},{"59":296,"60":[1,157]},{"61":[1,297]},{"8":298,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,170],"4":[2,170],"29":[2,170],"30":[2,170],"50":[2,170],"58":[2,170],"61":[2,170],"79":[2,170],"84":[2,170],"94":[2,170],"99":[2,170],"107":[2,170],"109":[2,170],"110":[2,170],"111":[2,170],"114":[2,170],"118":[2,170],"119":[2,170],"120":[2,170],"123":[2,170],"127":[2,170],"128":[2,170],"129":[2,170],"131":[2,170],"132":[2,170],"134":[2,170],"135":[2,170],"138":[2,170],"139":[2,170],"140":[2,170],"141":[2,170],"142":[2,170],"143":[2,170],"144":[2,170],"145":[2,170],"146":[2,170],"147":[2,170],"148":[2,170],"149":[2,170],"150":[2,170],"151":[2,170],"152":[2,170],"153":[2,170],"154":[2,170],"155":[2,170],"156":[2,170],"157":[2,170],"158":[2,170],"159":[2,170],"160":[2,170],"161":[2,170],"162":[2,170],"163":[2,170]},{"1":[2,127],"4":[2,127],"29":[2,127],"30":[2,127],"50":[2,127],"58":[2,127],"61":[2,127],"79":[2,127],"84":[2,127],"94":[2,127],"99":[2,127],"103":[1,299],"107":[2,127],"109":[2,127],"110":[2,127],"111":[2,127],"114":[2,127],"118":[2,127],"119":[2,127],"120":[2,127],"127":[2,127],"128":[2,127],"129":[2,127],"131":[2,127],"132":[2,127],"134":[2,127],"135":[2,127],"138":[2,127],"139":[2,127],"140":[2,127],"141":[2,127],"142":[2,127],"143":[2,127],"144":[2,127],"145":[2,127],"146":[2,127],"147":[2,127],"148":[2,127],"149":[2,127],"150":[2,127],"151":[2,127],"152":[2,127],"153":[2,127],"154":[2,127],"155":[2,127],"156":[2,127],"157":[2,127],"158":[2,127],"159":[2,127],"160":[2,127],"161":[2,127],"162":[2,127],"163":[2,127]},{"4":[1,159],"6":300,"29":[1,6]},{"31":301,"32":[1,87]},{"4":[1,159],"6":302,"29":[1,6]},{"8":303,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":304,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"31":175,"32":[1,87],"66":176,"67":177,"82":[1,84],"98":[1,178],"117":305},{"122":306,"124":269,"125":[1,270]},{"30":[1,307],"123":[1,308],"124":309,"125":[1,270]},{"30":[2,163],"123":[2,163],"125":[2,163]},{"8":311,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"100":310,"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,107],"4":[2,107],"29":[2,107],"30":[2,107],"50":[2,107],"58":[2,107],"61":[2,107],"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,107],"80":[1,146],"81":[1,147],"84":[2,107],"91":136,"92":[1,138],"94":[2,107],"99":[2,107],"107":[2,107],"109":[2,107],"110":[2,107],"111":[2,107],"114":[2,107],"118":[2,107],"119":[2,107],"120":[2,107],"127":[2,107],"128":[2,107],"129":[2,107],"131":[2,107],"132":[2,107],"134":[2,107],"135":[2,107],"138":[2,107],"139":[2,107],"140":[2,107],"141":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"148":[2,107],"149":[2,107],"150":[2,107],"151":[2,107],"152":[2,107],"153":[2,107],"154":[2,107],"155":[2,107],"156":[2,107],"157":[2,107],"158":[2,107],"159":[2,107],"160":[2,107],"161":[2,107],"162":[2,107],"163":[2,107]},{"14":312,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":153,"62":154,"64":184,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"4":[2,100],"28":202,"30":[2,100],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":315,"49":[1,56],"65":316,"87":313,"88":314,"97":[1,317]},{"1":[2,133],"4":[2,133],"29":[2,133],"30":[2,133],"50":[2,133],"58":[2,133],"61":[2,133],"72":[2,133],"73":[2,133],"74":[2,133],"75":[2,133],"78":[2,133],"79":[2,133],"80":[2,133],"81":[2,133],"84":[2,133],"92":[2,133],"94":[2,133],"99":[2,133],"107":[2,133],"109":[2,133],"110":[2,133],"111":[2,133],"114":[2,133],"118":[2,133],"119":[2,133],"120":[2,133],"127":[2,133],"128":[2,133],"129":[2,133],"131":[2,133],"132":[2,133],"134":[2,133],"135":[2,133],"138":[2,133],"139":[2,133],"140":[2,133],"141":[2,133],"142":[2,133],"143":[2,133],"144":[2,133],"145":[2,133],"146":[2,133],"147":[2,133],"148":[2,133],"149":[2,133],"150":[2,133],"151":[2,133],"152":[2,133],"153":[2,133],"154":[2,133],"155":[2,133],"156":[2,133],"157":[2,133],"158":[2,133],"159":[2,133],"160":[2,133],"161":[2,133],"162":[2,133],"163":[2,133]},{"61":[1,318]},{"4":[1,320],"29":[1,321],"99":[1,319]},{"4":[2,59],"8":322,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,59],"30":[2,59],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"94":[2,59],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,59],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,167],"4":[2,167],"29":[2,167],"30":[2,167],"50":[2,167],"58":[2,167],"61":[2,167],"79":[2,167],"84":[2,167],"94":[2,167],"99":[2,167],"107":[2,167],"109":[2,167],"110":[2,167],"111":[2,167],"114":[2,167],"118":[2,167],"119":[2,167],"120":[2,167],"123":[2,167],"127":[2,167],"128":[2,167],"129":[2,167],"131":[2,167],"132":[2,167],"134":[2,167],"135":[2,167],"138":[2,167],"139":[2,167],"140":[2,167],"141":[2,167],"142":[2,167],"143":[2,167],"144":[2,167],"145":[2,167],"146":[2,167],"147":[2,167],"148":[2,167],"149":[2,167],"150":[2,167],"151":[2,167],"152":[2,167],"153":[2,167],"154":[2,167],"155":[2,167],"156":[2,167],"157":[2,167],"158":[2,167],"159":[2,167],"160":[2,167],"161":[2,167],"162":[2,167],"163":[2,167]},{"1":[2,168],"4":[2,168],"29":[2,168],"30":[2,168],"50":[2,168],"58":[2,168],"61":[2,168],"79":[2,168],"84":[2,168],"94":[2,168],"99":[2,168],"107":[2,168],"109":[2,168],"110":[2,168],"111":[2,168],"114":[2,168],"118":[2,168],"119":[2,168],"120":[2,168],"123":[2,168],"127":[2,168],"128":[2,168],"129":[2,168],"131":[2,168],"132":[2,168],"134":[2,168],"135":[2,168],"138":[2,168],"139":[2,168],"140":[2,168],"141":[2,168],"142":[2,168],"143":[2,168],"144":[2,168],"145":[2,168],"146":[2,168],"147":[2,168],"148":[2,168],"149":[2,168],"150":[2,168],"151":[2,168],"152":[2,168],"153":[2,168],"154":[2,168],"155":[2,168],"156":[2,168],"157":[2,168],"158":[2,168],"159":[2,168],"160":[2,168],"161":[2,168],"162":[2,168],"163":[2,168]},{"8":323,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":324,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[1,326],"29":[1,327],"84":[1,325]},{"4":[2,59],"28":202,"29":[2,59],"30":[2,59],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":328,"49":[1,56],"84":[2,59]},{"8":329,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":330,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,218],"4":[2,218],"29":[2,218],"30":[2,218],"50":[1,114],"58":[2,218],"61":[2,218],"79":[2,218],"84":[2,218],"94":[2,218],"99":[2,218],"107":[2,218],"108":129,"109":[2,218],"110":[2,218],"111":[2,218],"114":[2,218],"118":[2,218],"119":[2,218],"120":[2,218],"127":[2,218],"128":[2,218],"131":[2,218],"132":[2,218],"138":[2,218],"139":[2,218],"140":[2,218],"141":[2,218],"142":[2,218],"143":[2,218],"144":[2,218],"145":[2,218],"146":[2,218],"147":[2,218],"148":[2,218],"149":[2,218],"150":[2,218],"151":[2,218],"152":[2,218],"153":[2,218],"154":[2,218],"155":[2,218],"156":[2,218],"157":[2,218],"158":[2,218],"159":[2,218],"160":[2,218],"161":[2,218],"162":[2,218],"163":[2,218]},{"1":[2,219],"4":[2,219],"29":[2,219],"30":[2,219],"50":[1,114],"58":[2,219],"61":[2,219],"79":[2,219],"84":[2,219],"94":[2,219],"99":[2,219],"107":[2,219],"108":129,"109":[2,219],"110":[2,219],"111":[2,219],"114":[2,219],"118":[2,219],"119":[2,219],"120":[2,219],"127":[2,219],"128":[2,219],"131":[2,219],"132":[2,219],"138":[2,219],"139":[2,219],"140":[2,219],"141":[2,219],"142":[2,219],"143":[2,219],"144":[2,219],"145":[2,219],"146":[2,219],"147":[2,219],"148":[2,219],"149":[2,219],"150":[2,219],"151":[2,219],"152":[2,219],"153":[2,219],"154":[2,219],"155":[2,219],"156":[2,219],"157":[2,219],"158":[2,219],"159":[2,219],"160":[2,219],"161":[2,219],"162":[2,219],"163":[2,219]},{"1":[2,145],"4":[2,145],"29":[2,145],"30":[2,145],"50":[2,145],"58":[2,145],"61":[2,145],"79":[2,145],"84":[2,145],"94":[2,145],"99":[2,145],"107":[2,145],"109":[2,145],"110":[2,145],"111":[2,145],"114":[2,145],"118":[2,145],"119":[2,145],"120":[2,145],"127":[2,145],"128":[2,145],"129":[2,145],"131":[2,145],"132":[2,145],"134":[2,145],"135":[2,145],"138":[2,145],"139":[2,145],"140":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"146":[2,145],"147":[2,145],"148":[2,145],"149":[2,145],"150":[2,145],"151":[2,145],"152":[2,145],"153":[2,145],"154":[2,145],"155":[2,145],"156":[2,145],"157":[2,145],"158":[2,145],"159":[2,145],"160":[2,145],"161":[2,145],"162":[2,145],"163":[2,145]},{"1":[2,65],"4":[2,65],"29":[2,65],"30":[2,65],"50":[2,65],"58":[2,65],"61":[2,65],"79":[2,65],"84":[2,65],"94":[2,65],"99":[2,65],"107":[2,65],"109":[2,65],"110":[2,65],"111":[2,65],"114":[2,65],"118":[2,65],"119":[2,65],"120":[2,65],"127":[2,65],"128":[2,65],"129":[2,65],"131":[2,65],"132":[2,65],"134":[2,65],"135":[2,65],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65]},{"1":[2,144],"4":[2,144],"29":[2,144],"30":[2,144],"50":[2,144],"58":[2,144],"61":[2,144],"79":[2,144],"84":[2,144],"94":[2,144],"99":[2,144],"107":[2,144],"109":[2,144],"110":[2,144],"111":[2,144],"114":[2,144],"118":[2,144],"119":[2,144],"120":[2,144],"127":[2,144],"128":[2,144],"129":[2,144],"131":[2,144],"132":[2,144],"134":[2,144],"135":[2,144],"138":[2,144],"139":[2,144],"140":[2,144],"141":[2,144],"142":[2,144],"143":[2,144],"144":[2,144],"145":[2,144],"146":[2,144],"147":[2,144],"148":[2,144],"149":[2,144],"150":[2,144],"151":[2,144],"152":[2,144],"153":[2,144],"154":[2,144],"155":[2,144],"156":[2,144],"157":[2,144],"158":[2,144],"159":[2,144],"160":[2,144],"161":[2,144],"162":[2,144],"163":[2,144]},{"4":[1,320],"29":[1,321],"94":[1,331]},{"1":[2,85],"4":[2,85],"29":[2,85],"30":[2,85],"46":[2,85],"50":[2,85],"58":[2,85],"61":[2,85],"72":[2,85],"73":[2,85],"74":[2,85],"75":[2,85],"78":[2,85],"79":[2,85],"80":[2,85],"81":[2,85],"84":[2,85],"86":[2,85],"92":[2,85],"94":[2,85],"99":[2,85],"107":[2,85],"109":[2,85],"110":[2,85],"111":[2,85],"114":[2,85],"118":[2,85],"119":[2,85],"120":[2,85],"127":[2,85],"128":[2,85],"129":[2,85],"131":[2,85],"132":[2,85],"134":[2,85],"135":[2,85],"138":[2,85],"139":[2,85],"140":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"148":[2,85],"149":[2,85],"150":[2,85],"151":[2,85],"152":[2,85],"153":[2,85],"154":[2,85],"155":[2,85],"156":[2,85],"157":[2,85],"158":[2,85],"159":[2,85],"160":[2,85],"161":[2,85],"162":[2,85],"163":[2,85]},{"61":[1,332]},{"50":[1,114],"61":[1,131],"79":[1,292],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,159],"6":333,"29":[1,6]},{"53":[2,62],"58":[2,62],"61":[1,257]},{"61":[1,334]},{"4":[1,159],"6":335,"29":[1,6],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,159],"6":336,"29":[1,6]},{"1":[2,128],"4":[2,128],"29":[2,128],"30":[2,128],"50":[2,128],"58":[2,128],"61":[2,128],"79":[2,128],"84":[2,128],"94":[2,128],"99":[2,128],"107":[2,128],"109":[2,128],"110":[2,128],"111":[2,128],"114":[2,128],"118":[2,128],"119":[2,128],"120":[2,128],"127":[2,128],"128":[2,128],"129":[2,128],"131":[2,128],"132":[2,128],"134":[2,128],"135":[2,128],"138":[2,128],"139":[2,128],"140":[2,128],"141":[2,128],"142":[2,128],"143":[2,128],"144":[2,128],"145":[2,128],"146":[2,128],"147":[2,128],"148":[2,128],"149":[2,128],"150":[2,128],"151":[2,128],"152":[2,128],"153":[2,128],"154":[2,128],"155":[2,128],"156":[2,128],"157":[2,128],"158":[2,128],"159":[2,128],"160":[2,128],"161":[2,128],"162":[2,128],"163":[2,128]},{"4":[1,338],"6":337,"29":[1,6]},{"1":[2,146],"4":[2,146],"29":[2,146],"30":[2,146],"50":[2,146],"58":[2,146],"61":[2,146],"79":[2,146],"84":[2,146],"94":[2,146],"99":[2,146],"107":[2,146],"109":[2,146],"110":[2,146],"111":[2,146],"114":[2,146],"118":[2,146],"119":[2,146],"120":[2,146],"127":[2,146],"128":[2,146],"129":[2,146],"131":[2,146],"132":[2,146],"134":[2,146],"135":[2,146],"138":[2,146],"139":[2,146],"140":[2,146],"141":[2,146],"142":[2,146],"143":[2,146],"144":[2,146],"145":[2,146],"146":[2,146],"147":[2,146],"148":[2,146],"149":[2,146],"150":[2,146],"151":[2,146],"152":[2,146],"153":[2,146],"154":[2,146],"155":[2,146],"156":[2,146],"157":[2,146],"158":[2,146],"159":[2,146],"160":[2,146],"161":[2,146],"162":[2,146],"163":[2,146]},{"1":[2,152],"4":[2,152],"29":[2,152],"30":[2,152],"50":[1,114],"58":[2,152],"61":[1,131],"79":[2,152],"84":[2,152],"94":[2,152],"99":[2,152],"107":[2,152],"108":129,"109":[2,152],"110":[1,339],"111":[2,152],"114":[2,152],"118":[1,124],"119":[1,125],"120":[1,340],"127":[2,152],"128":[2,152],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,153],"4":[2,153],"29":[2,153],"30":[2,153],"50":[1,114],"58":[2,153],"61":[1,131],"79":[2,153],"84":[2,153],"94":[2,153],"99":[2,153],"107":[2,153],"108":129,"109":[2,153],"110":[1,341],"111":[2,153],"114":[2,153],"118":[1,124],"119":[1,125],"120":[2,153],"127":[2,153],"128":[2,153],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"118":[2,151],"119":[2,151]},{"30":[1,342],"123":[1,343],"124":309,"125":[1,270]},{"1":[2,161],"4":[2,161],"29":[2,161],"30":[2,161],"50":[2,161],"58":[2,161],"61":[2,161],"79":[2,161],"84":[2,161],"94":[2,161],"99":[2,161],"107":[2,161],"109":[2,161],"110":[2,161],"111":[2,161],"114":[2,161],"118":[2,161],"119":[2,161],"120":[2,161],"127":[2,161],"128":[2,161],"129":[2,161],"131":[2,161],"132":[2,161],"134":[2,161],"135":[2,161],"138":[2,161],"139":[2,161],"140":[2,161],"141":[2,161],"142":[2,161],"143":[2,161],"144":[2,161],"145":[2,161],"146":[2,161],"147":[2,161],"148":[2,161],"149":[2,161],"150":[2,161],"151":[2,161],"152":[2,161],"153":[2,161],"154":[2,161],"155":[2,161],"156":[2,161],"157":[2,161],"158":[2,161],"159":[2,161],"160":[2,161],"161":[2,161],"162":[2,161],"163":[2,161]},{"4":[1,159],"6":344,"29":[1,6]},{"30":[2,164],"123":[2,164],"125":[2,164]},{"4":[1,159],"6":345,"29":[1,6],"58":[1,346]},{"4":[2,125],"29":[2,125],"50":[1,114],"58":[2,125],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,95],"4":[2,95],"29":[1,347],"30":[2,95],"50":[2,95],"58":[2,95],"61":[2,95],"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,95],"80":[1,146],"81":[1,147],"84":[2,95],"91":136,"92":[1,138],"94":[2,95],"99":[2,95],"107":[2,95],"109":[2,95],"110":[2,95],"111":[2,95],"114":[2,95],"118":[2,95],"119":[2,95],"120":[2,95],"127":[2,95],"128":[2,95],"129":[2,95],"131":[2,95],"132":[2,95],"134":[2,95],"135":[2,95],"138":[2,95],"139":[2,95],"140":[2,95],"141":[2,95],"142":[2,95],"143":[2,95],"144":[2,95],"145":[2,95],"146":[2,95],"147":[2,95],"148":[2,95],"149":[2,95],"150":[2,95],"151":[2,95],"152":[2,95],"153":[2,95],"154":[2,95],"155":[2,95],"156":[2,95],"157":[2,95],"158":[2,95],"159":[2,95],"160":[2,95],"161":[2,95],"162":[2,95],"163":[2,95]},{"4":[1,349],"30":[1,348]},{"4":[2,101],"30":[2,101]},{"4":[2,98],"30":[2,98]},{"46":[1,350]},{"31":190,"32":[1,87]},{"8":351,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"61":[1,352],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,119],"4":[2,119],"29":[2,119],"30":[2,119],"46":[2,119],"50":[2,119],"58":[2,119],"61":[2,119],"72":[2,119],"73":[2,119],"74":[2,119],"75":[2,119],"78":[2,119],"79":[2,119],"80":[2,119],"81":[2,119],"84":[2,119],"92":[2,119],"94":[2,119],"99":[2,119],"107":[2,119],"109":[2,119],"110":[2,119],"111":[2,119],"114":[2,119],"118":[2,119],"119":[2,119],"120":[2,119],"127":[2,119],"128":[2,119],"129":[2,119],"131":[2,119],"132":[2,119],"134":[2,119],"135":[2,119],"138":[2,119],"139":[2,119],"140":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"146":[2,119],"147":[2,119],"148":[2,119],"149":[2,119],"150":[2,119],"151":[2,119],"152":[2,119],"153":[2,119],"154":[2,119],"155":[2,119],"156":[2,119],"157":[2,119],"158":[2,119],"159":[2,119],"160":[2,119],"161":[2,119],"162":[2,119],"163":[2,119]},{"8":353,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,120],"8":246,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"30":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":354,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,122],"29":[2,122],"30":[2,122],"50":[1,114],"58":[2,122],"61":[1,131],"94":[2,122],"99":[2,122],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,135],"4":[2,135],"29":[2,135],"30":[2,135],"50":[1,114],"58":[2,135],"61":[1,131],"79":[2,135],"84":[2,135],"94":[2,135],"99":[2,135],"107":[2,135],"108":129,"109":[1,79],"110":[2,135],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,135],"127":[2,135],"128":[2,135],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,137],"4":[2,137],"29":[2,137],"30":[2,137],"50":[1,114],"58":[2,137],"61":[1,131],"79":[2,137],"84":[2,137],"94":[2,137],"99":[2,137],"107":[2,137],"108":129,"109":[1,79],"110":[2,137],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,137],"127":[2,137],"128":[2,137],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,88],"4":[2,88],"29":[2,88],"30":[2,88],"46":[2,88],"50":[2,88],"58":[2,88],"61":[2,88],"72":[2,88],"73":[2,88],"74":[2,88],"75":[2,88],"78":[2,88],"79":[2,88],"80":[2,88],"81":[2,88],"84":[2,88],"92":[2,88],"94":[2,88],"99":[2,88],"107":[2,88],"109":[2,88],"110":[2,88],"111":[2,88],"114":[2,88],"118":[2,88],"119":[2,88],"120":[2,88],"127":[2,88],"128":[2,88],"129":[2,88],"131":[2,88],"132":[2,88],"134":[2,88],"135":[2,88],"138":[2,88],"139":[2,88],"140":[2,88],"141":[2,88],"142":[2,88],"143":[2,88],"144":[2,88],"145":[2,88],"146":[2,88],"147":[2,88],"148":[2,88],"149":[2,88],"150":[2,88],"151":[2,88],"152":[2,88],"153":[2,88],"154":[2,88],"155":[2,88],"156":[2,88],"157":[2,88],"158":[2,88],"159":[2,88],"160":[2,88],"161":[2,88],"162":[2,88],"163":[2,88]},{"28":202,"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":355,"49":[1,56]},{"4":[2,89],"28":202,"29":[2,89],"30":[2,89],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":199,"49":[1,56],"58":[2,89],"83":356},{"4":[2,91],"29":[2,91],"30":[2,91],"58":[2,91],"84":[2,91]},{"4":[2,47],"29":[2,47],"30":[2,47],"50":[1,114],"58":[2,47],"61":[1,131],"84":[2,47],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,48],"29":[2,48],"30":[2,48],"50":[1,114],"58":[2,48],"61":[1,131],"84":[2,48],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,110],"4":[2,110],"29":[2,110],"30":[2,110],"50":[2,110],"58":[2,110],"61":[2,110],"72":[2,110],"73":[2,110],"74":[2,110],"75":[2,110],"78":[2,110],"79":[2,110],"80":[2,110],"81":[2,110],"84":[2,110],"92":[2,110],"94":[2,110],"99":[2,110],"107":[2,110],"109":[2,110],"110":[2,110],"111":[2,110],"114":[2,110],"118":[2,110],"119":[2,110],"120":[2,110],"127":[2,110],"128":[2,110],"129":[2,110],"131":[2,110],"132":[2,110],"134":[2,110],"135":[2,110],"138":[2,110],"139":[2,110],"140":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"147":[2,110],"148":[2,110],"149":[2,110],"150":[2,110],"151":[2,110],"152":[2,110],"153":[2,110],"154":[2,110],"155":[2,110],"156":[2,110],"157":[2,110],"158":[2,110],"159":[2,110],"160":[2,110],"161":[2,110],"162":[2,110],"163":[2,110]},{"8":357,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"61":[1,358],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,54],"4":[2,54],"29":[2,54],"30":[2,54],"50":[2,54],"58":[2,54],"61":[2,54],"79":[2,54],"84":[2,54],"94":[2,54],"99":[2,54],"107":[2,54],"109":[2,54],"110":[2,54],"111":[2,54],"114":[2,54],"118":[2,54],"119":[2,54],"120":[2,54],"127":[2,54],"128":[2,54],"129":[2,54],"131":[2,54],"132":[2,54],"134":[2,54],"135":[2,54],"138":[2,54],"139":[2,54],"140":[2,54],"141":[2,54],"142":[2,54],"143":[2,54],"144":[2,54],"145":[2,54],"146":[2,54],"147":[2,54],"148":[2,54],"149":[2,54],"150":[2,54],"151":[2,54],"152":[2,54],"153":[2,54],"154":[2,54],"155":[2,54],"156":[2,54],"157":[2,54],"158":[2,54],"159":[2,54],"160":[2,54],"161":[2,54],"162":[2,54],"163":[2,54]},{"53":[2,64],"58":[2,64],"61":[2,64]},{"1":[2,169],"4":[2,169],"29":[2,169],"30":[2,169],"50":[2,169],"58":[2,169],"61":[2,169],"79":[2,169],"84":[2,169],"94":[2,169],"99":[2,169],"107":[2,169],"109":[2,169],"110":[2,169],"111":[2,169],"114":[2,169],"118":[2,169],"119":[2,169],"120":[2,169],"123":[2,169],"127":[2,169],"128":[2,169],"129":[2,169],"131":[2,169],"132":[2,169],"134":[2,169],"135":[2,169],"138":[2,169],"139":[2,169],"140":[2,169],"141":[2,169],"142":[2,169],"143":[2,169],"144":[2,169],"145":[2,169],"146":[2,169],"147":[2,169],"148":[2,169],"149":[2,169],"150":[2,169],"151":[2,169],"152":[2,169],"153":[2,169],"154":[2,169],"155":[2,169],"156":[2,169],"157":[2,169],"158":[2,169],"159":[2,169],"160":[2,169],"161":[2,169],"162":[2,169],"163":[2,169]},{"1":[2,129],"4":[2,129],"29":[2,129],"30":[2,129],"50":[2,129],"58":[2,129],"61":[2,129],"79":[2,129],"84":[2,129],"94":[2,129],"99":[2,129],"107":[2,129],"109":[2,129],"110":[2,129],"111":[2,129],"114":[2,129],"118":[2,129],"119":[2,129],"120":[2,129],"127":[2,129],"128":[2,129],"129":[2,129],"131":[2,129],"132":[2,129],"134":[2,129],"135":[2,129],"138":[2,129],"139":[2,129],"140":[2,129],"141":[2,129],"142":[2,129],"143":[2,129],"144":[2,129],"145":[2,129],"146":[2,129],"147":[2,129],"148":[2,129],"149":[2,129],"150":[2,129],"151":[2,129],"152":[2,129],"153":[2,129],"154":[2,129],"155":[2,129],"156":[2,129],"157":[2,129],"158":[2,129],"159":[2,129],"160":[2,129],"161":[2,129],"162":[2,129],"163":[2,129]},{"1":[2,130],"4":[2,130],"29":[2,130],"30":[2,130],"50":[2,130],"58":[2,130],"61":[2,130],"79":[2,130],"84":[2,130],"94":[2,130],"99":[2,130],"103":[2,130],"107":[2,130],"109":[2,130],"110":[2,130],"111":[2,130],"114":[2,130],"118":[2,130],"119":[2,130],"120":[2,130],"127":[2,130],"128":[2,130],"129":[2,130],"131":[2,130],"132":[2,130],"134":[2,130],"135":[2,130],"138":[2,130],"139":[2,130],"140":[2,130],"141":[2,130],"142":[2,130],"143":[2,130],"144":[2,130],"145":[2,130],"146":[2,130],"147":[2,130],"148":[2,130],"149":[2,130],"150":[2,130],"151":[2,130],"152":[2,130],"153":[2,130],"154":[2,130],"155":[2,130],"156":[2,130],"157":[2,130],"158":[2,130],"159":[2,130],"160":[2,130],"161":[2,130],"162":[2,130],"163":[2,130]},{"1":[2,131],"4":[2,131],"28":88,"29":[2,131],"30":[2,131],"49":[1,56],"50":[2,131],"58":[2,131],"61":[2,131],"79":[2,131],"84":[2,131],"94":[2,131],"99":[2,131],"103":[2,131],"107":[2,131],"109":[2,131],"110":[2,131],"111":[2,131],"114":[2,131],"118":[2,131],"119":[2,131],"120":[2,131],"127":[2,131],"128":[2,131],"129":[2,131],"131":[2,131],"132":[2,131],"134":[2,131],"135":[2,131],"138":[2,131],"139":[2,131],"140":[2,131],"141":[2,131],"142":[2,131],"143":[2,131],"144":[2,131],"145":[2,131],"146":[2,131],"147":[2,131],"148":[2,131],"149":[2,131],"150":[2,131],"151":[2,131],"152":[2,131],"153":[2,131],"154":[2,131],"155":[2,131],"156":[2,131],"157":[2,131],"158":[2,131],"159":[2,131],"160":[2,131],"161":[2,131],"162":[2,131],"163":[2,131]},{"8":359,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":360,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":361,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,159],"4":[2,159],"29":[2,159],"30":[2,159],"50":[2,159],"58":[2,159],"61":[2,159],"79":[2,159],"84":[2,159],"94":[2,159],"99":[2,159],"107":[2,159],"109":[2,159],"110":[2,159],"111":[2,159],"114":[2,159],"118":[2,159],"119":[2,159],"120":[2,159],"127":[2,159],"128":[2,159],"129":[2,159],"131":[2,159],"132":[2,159],"134":[2,159],"135":[2,159],"138":[2,159],"139":[2,159],"140":[2,159],"141":[2,159],"142":[2,159],"143":[2,159],"144":[2,159],"145":[2,159],"146":[2,159],"147":[2,159],"148":[2,159],"149":[2,159],"150":[2,159],"151":[2,159],"152":[2,159],"153":[2,159],"154":[2,159],"155":[2,159],"156":[2,159],"157":[2,159],"158":[2,159],"159":[2,159],"160":[2,159],"161":[2,159],"162":[2,159],"163":[2,159]},{"4":[1,159],"6":362,"29":[1,6]},{"30":[1,363]},{"4":[1,364],"30":[2,165],"123":[2,165],"125":[2,165]},{"8":365,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,100],"28":202,"30":[2,100],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":315,"49":[1,56],"65":316,"87":366,"88":314,"97":[1,317]},{"1":[2,96],"4":[2,96],"29":[2,96],"30":[2,96],"50":[2,96],"58":[2,96],"61":[2,96],"79":[2,96],"84":[2,96],"94":[2,96],"99":[2,96],"107":[2,96],"109":[2,96],"110":[2,96],"111":[2,96],"114":[2,96],"118":[2,96],"119":[2,96],"120":[2,96],"127":[2,96],"128":[2,96],"129":[2,96],"131":[2,96],"132":[2,96],"134":[2,96],"135":[2,96],"138":[2,96],"139":[2,96],"140":[2,96],"141":[2,96],"142":[2,96],"143":[2,96],"144":[2,96],"145":[2,96],"146":[2,96],"147":[2,96],"148":[2,96],"149":[2,96],"150":[2,96],"151":[2,96],"152":[2,96],"153":[2,96],"154":[2,96],"155":[2,96],"156":[2,96],"157":[2,96],"158":[2,96],"159":[2,96],"160":[2,96],"161":[2,96],"162":[2,96],"163":[2,96]},{"28":202,"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":315,"49":[1,56],"65":316,"88":367,"97":[1,317]},{"8":368,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"50":[1,114],"61":[1,131],"99":[1,369],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,65],"8":370,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,65],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"50":[2,65],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,65],"61":[2,65],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,65],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[2,65],"111":[2,65],"112":51,"113":[1,81],"114":[2,65],"118":[2,65],"119":[2,65],"121":[1,53],"126":48,"127":[2,65],"128":[2,65],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65]},{"4":[2,123],"29":[2,123],"30":[2,123],"50":[1,114],"58":[2,123],"61":[1,131],"94":[2,123],"99":[2,123],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,58],"29":[2,58],"30":[2,58],"57":371,"58":[1,277]},{"4":[2,92],"29":[2,92],"30":[2,92],"58":[2,92],"84":[2,92]},{"4":[2,58],"29":[2,58],"30":[2,58],"57":372,"58":[1,283]},{"50":[1,114],"61":[1,131],"79":[1,373],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"8":374,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"50":[2,65],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"61":[2,65],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"79":[2,65],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[2,65],"111":[2,65],"112":51,"113":[1,81],"114":[2,65],"118":[2,65],"119":[2,65],"121":[1,53],"126":48,"127":[2,65],"128":[2,65],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65]},{"1":[2,154],"4":[2,154],"29":[2,154],"30":[2,154],"50":[1,114],"58":[2,154],"61":[1,131],"79":[2,154],"84":[2,154],"94":[2,154],"99":[2,154],"107":[2,154],"108":129,"109":[2,154],"110":[2,154],"111":[2,154],"114":[2,154],"118":[1,124],"119":[1,125],"120":[1,375],"127":[2,154],"128":[2,154],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,156],"4":[2,156],"29":[2,156],"30":[2,156],"50":[1,114],"58":[2,156],"61":[1,131],"79":[2,156],"84":[2,156],"94":[2,156],"99":[2,156],"107":[2,156],"108":129,"109":[2,156],"110":[1,376],"111":[2,156],"114":[2,156],"118":[1,124],"119":[1,125],"120":[2,156],"127":[2,156],"128":[2,156],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,155],"4":[2,155],"29":[2,155],"30":[2,155],"50":[1,114],"58":[2,155],"61":[1,131],"79":[2,155],"84":[2,155],"94":[2,155],"99":[2,155],"107":[2,155],"108":129,"109":[2,155],"110":[2,155],"111":[2,155],"114":[2,155],"118":[1,124],"119":[1,125],"120":[2,155],"127":[2,155],"128":[2,155],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"30":[1,377]},{"1":[2,162],"4":[2,162],"29":[2,162],"30":[2,162],"50":[2,162],"58":[2,162],"61":[2,162],"79":[2,162],"84":[2,162],"94":[2,162],"99":[2,162],"107":[2,162],"109":[2,162],"110":[2,162],"111":[2,162],"114":[2,162],"118":[2,162],"119":[2,162],"120":[2,162],"127":[2,162],"128":[2,162],"129":[2,162],"131":[2,162],"132":[2,162],"134":[2,162],"135":[2,162],"138":[2,162],"139":[2,162],"140":[2,162],"141":[2,162],"142":[2,162],"143":[2,162],"144":[2,162],"145":[2,162],"146":[2,162],"147":[2,162],"148":[2,162],"149":[2,162],"150":[2,162],"151":[2,162],"152":[2,162],"153":[2,162],"154":[2,162],"155":[2,162],"156":[2,162],"157":[2,162],"158":[2,162],"159":[2,162],"160":[2,162],"161":[2,162],"162":[2,162],"163":[2,162]},{"30":[2,166],"123":[2,166],"125":[2,166]},{"4":[2,126],"29":[2,126],"50":[1,114],"58":[2,126],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,349],"30":[1,378]},{"4":[2,102],"30":[2,102]},{"4":[2,99],"30":[2,99],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,115],"4":[2,115],"29":[2,115],"30":[2,115],"50":[2,115],"58":[2,115],"61":[2,115],"72":[2,115],"73":[2,115],"74":[2,115],"75":[2,115],"78":[2,115],"79":[2,115],"80":[2,115],"81":[2,115],"84":[2,115],"92":[2,115],"94":[2,115],"99":[2,115],"107":[2,115],"109":[2,115],"110":[2,115],"111":[2,115],"114":[2,115],"118":[2,115],"119":[2,115],"120":[2,115],"127":[2,115],"128":[2,115],"129":[2,115],"131":[2,115],"132":[2,115],"134":[2,115],"135":[2,115],"138":[2,115],"139":[2,115],"140":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"147":[2,115],"148":[2,115],"149":[2,115],"150":[2,115],"151":[2,115],"152":[2,115],"153":[2,115],"154":[2,115],"155":[2,115],"156":[2,115],"157":[2,115],"158":[2,115],"159":[2,115],"160":[2,115],"161":[2,115],"162":[2,115],"163":[2,115]},{"50":[1,114],"61":[1,131],"99":[1,379],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,320],"29":[1,321],"30":[1,380]},{"4":[1,326],"29":[1,327],"30":[1,381]},{"1":[2,117],"4":[2,117],"29":[2,117],"30":[2,117],"46":[2,117],"50":[2,117],"58":[2,117],"61":[2,117],"72":[2,117],"73":[2,117],"74":[2,117],"75":[2,117],"78":[2,117],"79":[2,117],"80":[2,117],"81":[2,117],"84":[2,117],"86":[2,117],"92":[2,117],"94":[2,117],"99":[2,117],"107":[2,117],"109":[2,117],"110":[2,117],"111":[2,117],"114":[2,117],"118":[2,117],"119":[2,117],"120":[2,117],"127":[2,117],"128":[2,117],"129":[2,117],"131":[2,117],"132":[2,117],"134":[2,117],"135":[2,117],"138":[2,117],"139":[2,117],"140":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"146":[2,117],"147":[2,117],"148":[2,117],"149":[2,117],"150":[2,117],"151":[2,117],"152":[2,117],"153":[2,117],"154":[2,117],"155":[2,117],"156":[2,117],"157":[2,117],"158":[2,117],"159":[2,117],"160":[2,117],"161":[2,117],"162":[2,117],"163":[2,117]},{"50":[1,114],"61":[1,131],"79":[1,382],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"8":383,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":384,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,160],"4":[2,160],"29":[2,160],"30":[2,160],"50":[2,160],"58":[2,160],"61":[2,160],"79":[2,160],"84":[2,160],"94":[2,160],"99":[2,160],"107":[2,160],"109":[2,160],"110":[2,160],"111":[2,160],"114":[2,160],"118":[2,160],"119":[2,160],"120":[2,160],"127":[2,160],"128":[2,160],"129":[2,160],"131":[2,160],"132":[2,160],"134":[2,160],"135":[2,160],"138":[2,160],"139":[2,160],"140":[2,160],"141":[2,160],"142":[2,160],"143":[2,160],"144":[2,160],"145":[2,160],"146":[2,160],"147":[2,160],"148":[2,160],"149":[2,160],"150":[2,160],"151":[2,160],"152":[2,160],"153":[2,160],"154":[2,160],"155":[2,160],"156":[2,160],"157":[2,160],"158":[2,160],"159":[2,160],"160":[2,160],"161":[2,160],"162":[2,160],"163":[2,160]},{"1":[2,97],"4":[2,97],"29":[2,97],"30":[2,97],"50":[2,97],"58":[2,97],"61":[2,97],"79":[2,97],"84":[2,97],"94":[2,97],"99":[2,97],"107":[2,97],"109":[2,97],"110":[2,97],"111":[2,97],"114":[2,97],"118":[2,97],"119":[2,97],"120":[2,97],"127":[2,97],"128":[2,97],"129":[2,97],"131":[2,97],"132":[2,97],"134":[2,97],"135":[2,97],"138":[2,97],"139":[2,97],"140":[2,97],"141":[2,97],"142":[2,97],"143":[2,97],"144":[2,97],"145":[2,97],"146":[2,97],"147":[2,97],"148":[2,97],"149":[2,97],"150":[2,97],"151":[2,97],"152":[2,97],"153":[2,97],"154":[2,97],"155":[2,97],"156":[2,97],"157":[2,97],"158":[2,97],"159":[2,97],"160":[2,97],"161":[2,97],"162":[2,97],"163":[2,97]},{"1":[2,116],"4":[2,116],"29":[2,116],"30":[2,116],"50":[2,116],"58":[2,116],"61":[2,116],"72":[2,116],"73":[2,116],"74":[2,116],"75":[2,116],"78":[2,116],"79":[2,116],"80":[2,116],"81":[2,116],"84":[2,116],"92":[2,116],"94":[2,116],"99":[2,116],"107":[2,116],"109":[2,116],"110":[2,116],"111":[2,116],"114":[2,116],"118":[2,116],"119":[2,116],"120":[2,116],"127":[2,116],"128":[2,116],"129":[2,116],"131":[2,116],"132":[2,116],"134":[2,116],"135":[2,116],"138":[2,116],"139":[2,116],"140":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"146":[2,116],"147":[2,116],"148":[2,116],"149":[2,116],"150":[2,116],"151":[2,116],"152":[2,116],"153":[2,116],"154":[2,116],"155":[2,116],"156":[2,116],"157":[2,116],"158":[2,116],"159":[2,116],"160":[2,116],"161":[2,116],"162":[2,116],"163":[2,116]},{"4":[2,124],"29":[2,124],"30":[2,124],"58":[2,124],"94":[2,124],"99":[2,124]},{"4":[2,93],"29":[2,93],"30":[2,93],"58":[2,93],"84":[2,93]},{"1":[2,118],"4":[2,118],"29":[2,118],"30":[2,118],"46":[2,118],"50":[2,118],"58":[2,118],"61":[2,118],"72":[2,118],"73":[2,118],"74":[2,118],"75":[2,118],"78":[2,118],"79":[2,118],"80":[2,118],"81":[2,118],"84":[2,118],"86":[2,118],"92":[2,118],"94":[2,118],"99":[2,118],"107":[2,118],"109":[2,118],"110":[2,118],"111":[2,118],"114":[2,118],"118":[2,118],"119":[2,118],"120":[2,118],"127":[2,118],"128":[2,118],"129":[2,118],"131":[2,118],"132":[2,118],"134":[2,118],"135":[2,118],"138":[2,118],"139":[2,118],"140":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"146":[2,118],"147":[2,118],"148":[2,118],"149":[2,118],"150":[2,118],"151":[2,118],"152":[2,118],"153":[2,118],"154":[2,118],"155":[2,118],"156":[2,118],"157":[2,118],"158":[2,118],"159":[2,118],"160":[2,118],"161":[2,118],"162":[2,118],"163":[2,118]},{"1":[2,157],"4":[2,157],"29":[2,157],"30":[2,157],"50":[1,114],"58":[2,157],"61":[1,131],"79":[2,157],"84":[2,157],"94":[2,157],"99":[2,157],"107":[2,157],"108":129,"109":[2,157],"110":[2,157],"111":[2,157],"114":[2,157],"118":[1,124],"119":[1,125],"120":[2,157],"127":[2,157],"128":[2,157],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,158],"4":[2,158],"29":[2,158],"30":[2,158],"50":[1,114],"58":[2,158],"61":[1,131],"79":[2,158],"84":[2,158],"94":[2,158],"99":[2,158],"107":[2,158],"108":129,"109":[2,158],"110":[2,158],"111":[2,158],"114":[2,158],"118":[1,124],"119":[1,125],"120":[2,158],"127":[2,158],"128":[2,158],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]}], +table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[3]},{"1":[2,2],"28":88,"49":[1,56]},{"1":[2,3],"4":[1,89]},{"4":[1,90]},{"1":[2,5],"4":[2,5],"30":[2,5]},{"5":91,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[1,92],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,8],"4":[2,8],"30":[2,8],"50":[1,114],"61":[1,131],"107":[2,8],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,9],"4":[2,9],"30":[2,9],"107":[2,9],"108":134,"109":[1,79],"111":[1,80],"114":[1,135],"127":[1,132],"128":[1,133]},{"1":[2,14],"4":[2,14],"29":[2,14],"30":[2,14],"50":[2,14],"58":[2,14],"61":[2,14],"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,14],"80":[1,146],"81":[1,147],"84":[2,14],"91":136,"92":[1,138],"94":[2,14],"99":[2,14],"107":[2,14],"109":[2,14],"110":[2,14],"111":[2,14],"114":[2,14],"118":[2,14],"119":[2,14],"120":[2,14],"127":[2,14],"128":[2,14],"129":[2,14],"131":[2,14],"132":[2,14],"134":[2,14],"135":[2,14],"138":[2,14],"139":[2,14],"140":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[2,14],"148":[2,14],"149":[2,14],"150":[2,14],"151":[2,14],"152":[2,14],"153":[2,14],"154":[2,14],"155":[2,14],"156":[2,14],"157":[2,14],"158":[2,14],"159":[2,14],"160":[2,14],"161":[2,14],"162":[2,14],"163":[2,14]},{"1":[2,15],"4":[2,15],"29":[2,15],"30":[2,15],"50":[2,15],"58":[2,15],"61":[2,15],"79":[2,15],"84":[2,15],"94":[2,15],"99":[2,15],"107":[2,15],"109":[2,15],"110":[2,15],"111":[2,15],"114":[2,15],"118":[2,15],"119":[2,15],"120":[2,15],"127":[2,15],"128":[2,15],"129":[2,15],"131":[2,15],"132":[2,15],"134":[2,15],"135":[2,15],"138":[2,15],"139":[2,15],"140":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[2,15],"149":[2,15],"150":[2,15],"151":[2,15],"152":[2,15],"153":[2,15],"154":[2,15],"155":[2,15],"156":[2,15],"157":[2,15],"158":[2,15],"159":[2,15],"160":[2,15],"161":[2,15],"162":[2,15],"163":[2,15]},{"1":[2,16],"4":[2,16],"29":[2,16],"30":[2,16],"50":[2,16],"58":[2,16],"61":[2,16],"79":[2,16],"84":[2,16],"94":[2,16],"99":[2,16],"107":[2,16],"109":[2,16],"110":[2,16],"111":[2,16],"114":[2,16],"118":[2,16],"119":[2,16],"120":[2,16],"127":[2,16],"128":[2,16],"129":[2,16],"131":[2,16],"132":[2,16],"134":[2,16],"135":[2,16],"138":[2,16],"139":[2,16],"140":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"148":[2,16],"149":[2,16],"150":[2,16],"151":[2,16],"152":[2,16],"153":[2,16],"154":[2,16],"155":[2,16],"156":[2,16],"157":[2,16],"158":[2,16],"159":[2,16],"160":[2,16],"161":[2,16],"162":[2,16],"163":[2,16]},{"1":[2,17],"4":[2,17],"29":[2,17],"30":[2,17],"50":[2,17],"58":[2,17],"61":[2,17],"79":[2,17],"84":[2,17],"94":[2,17],"99":[2,17],"107":[2,17],"109":[2,17],"110":[2,17],"111":[2,17],"114":[2,17],"118":[2,17],"119":[2,17],"120":[2,17],"127":[2,17],"128":[2,17],"129":[2,17],"131":[2,17],"132":[2,17],"134":[2,17],"135":[2,17],"138":[2,17],"139":[2,17],"140":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"148":[2,17],"149":[2,17],"150":[2,17],"151":[2,17],"152":[2,17],"153":[2,17],"154":[2,17],"155":[2,17],"156":[2,17],"157":[2,17],"158":[2,17],"159":[2,17],"160":[2,17],"161":[2,17],"162":[2,17],"163":[2,17]},{"1":[2,18],"4":[2,18],"29":[2,18],"30":[2,18],"50":[2,18],"58":[2,18],"61":[2,18],"79":[2,18],"84":[2,18],"94":[2,18],"99":[2,18],"107":[2,18],"109":[2,18],"110":[2,18],"111":[2,18],"114":[2,18],"118":[2,18],"119":[2,18],"120":[2,18],"127":[2,18],"128":[2,18],"129":[2,18],"131":[2,18],"132":[2,18],"134":[2,18],"135":[2,18],"138":[2,18],"139":[2,18],"140":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"148":[2,18],"149":[2,18],"150":[2,18],"151":[2,18],"152":[2,18],"153":[2,18],"154":[2,18],"155":[2,18],"156":[2,18],"157":[2,18],"158":[2,18],"159":[2,18],"160":[2,18],"161":[2,18],"162":[2,18],"163":[2,18]},{"1":[2,19],"4":[2,19],"29":[2,19],"30":[2,19],"50":[2,19],"58":[2,19],"61":[2,19],"79":[2,19],"84":[2,19],"94":[2,19],"99":[2,19],"107":[2,19],"109":[2,19],"110":[2,19],"111":[2,19],"114":[2,19],"118":[2,19],"119":[2,19],"120":[2,19],"127":[2,19],"128":[2,19],"129":[2,19],"131":[2,19],"132":[2,19],"134":[2,19],"135":[2,19],"138":[2,19],"139":[2,19],"140":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"148":[2,19],"149":[2,19],"150":[2,19],"151":[2,19],"152":[2,19],"153":[2,19],"154":[2,19],"155":[2,19],"156":[2,19],"157":[2,19],"158":[2,19],"159":[2,19],"160":[2,19],"161":[2,19],"162":[2,19],"163":[2,19]},{"1":[2,20],"4":[2,20],"29":[2,20],"30":[2,20],"50":[2,20],"58":[2,20],"61":[2,20],"79":[2,20],"84":[2,20],"94":[2,20],"99":[2,20],"107":[2,20],"109":[2,20],"110":[2,20],"111":[2,20],"114":[2,20],"118":[2,20],"119":[2,20],"120":[2,20],"127":[2,20],"128":[2,20],"129":[2,20],"131":[2,20],"132":[2,20],"134":[2,20],"135":[2,20],"138":[2,20],"139":[2,20],"140":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"148":[2,20],"149":[2,20],"150":[2,20],"151":[2,20],"152":[2,20],"153":[2,20],"154":[2,20],"155":[2,20],"156":[2,20],"157":[2,20],"158":[2,20],"159":[2,20],"160":[2,20],"161":[2,20],"162":[2,20],"163":[2,20]},{"1":[2,21],"4":[2,21],"29":[2,21],"30":[2,21],"50":[2,21],"58":[2,21],"61":[2,21],"79":[2,21],"84":[2,21],"94":[2,21],"99":[2,21],"107":[2,21],"109":[2,21],"110":[2,21],"111":[2,21],"114":[2,21],"118":[2,21],"119":[2,21],"120":[2,21],"127":[2,21],"128":[2,21],"129":[2,21],"131":[2,21],"132":[2,21],"134":[2,21],"135":[2,21],"138":[2,21],"139":[2,21],"140":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"148":[2,21],"149":[2,21],"150":[2,21],"151":[2,21],"152":[2,21],"153":[2,21],"154":[2,21],"155":[2,21],"156":[2,21],"157":[2,21],"158":[2,21],"159":[2,21],"160":[2,21],"161":[2,21],"162":[2,21],"163":[2,21]},{"1":[2,22],"4":[2,22],"29":[2,22],"30":[2,22],"50":[2,22],"58":[2,22],"61":[2,22],"79":[2,22],"84":[2,22],"94":[2,22],"99":[2,22],"107":[2,22],"109":[2,22],"110":[2,22],"111":[2,22],"114":[2,22],"118":[2,22],"119":[2,22],"120":[2,22],"127":[2,22],"128":[2,22],"129":[2,22],"131":[2,22],"132":[2,22],"134":[2,22],"135":[2,22],"138":[2,22],"139":[2,22],"140":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"148":[2,22],"149":[2,22],"150":[2,22],"151":[2,22],"152":[2,22],"153":[2,22],"154":[2,22],"155":[2,22],"156":[2,22],"157":[2,22],"158":[2,22],"159":[2,22],"160":[2,22],"161":[2,22],"162":[2,22],"163":[2,22]},{"1":[2,23],"4":[2,23],"29":[2,23],"30":[2,23],"50":[2,23],"58":[2,23],"61":[2,23],"79":[2,23],"84":[2,23],"94":[2,23],"99":[2,23],"107":[2,23],"109":[2,23],"110":[2,23],"111":[2,23],"114":[2,23],"118":[2,23],"119":[2,23],"120":[2,23],"127":[2,23],"128":[2,23],"129":[2,23],"131":[2,23],"132":[2,23],"134":[2,23],"135":[2,23],"138":[2,23],"139":[2,23],"140":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"148":[2,23],"149":[2,23],"150":[2,23],"151":[2,23],"152":[2,23],"153":[2,23],"154":[2,23],"155":[2,23],"156":[2,23],"157":[2,23],"158":[2,23],"159":[2,23],"160":[2,23],"161":[2,23],"162":[2,23],"163":[2,23]},{"1":[2,24],"4":[2,24],"29":[2,24],"30":[2,24],"50":[2,24],"58":[2,24],"61":[2,24],"79":[2,24],"84":[2,24],"94":[2,24],"99":[2,24],"107":[2,24],"109":[2,24],"110":[2,24],"111":[2,24],"114":[2,24],"118":[2,24],"119":[2,24],"120":[2,24],"127":[2,24],"128":[2,24],"129":[2,24],"131":[2,24],"132":[2,24],"134":[2,24],"135":[2,24],"138":[2,24],"139":[2,24],"140":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"148":[2,24],"149":[2,24],"150":[2,24],"151":[2,24],"152":[2,24],"153":[2,24],"154":[2,24],"155":[2,24],"156":[2,24],"157":[2,24],"158":[2,24],"159":[2,24],"160":[2,24],"161":[2,24],"162":[2,24],"163":[2,24]},{"1":[2,25],"4":[2,25],"29":[2,25],"30":[2,25],"50":[2,25],"58":[2,25],"61":[2,25],"79":[2,25],"84":[2,25],"94":[2,25],"99":[2,25],"107":[2,25],"109":[2,25],"110":[2,25],"111":[2,25],"114":[2,25],"118":[2,25],"119":[2,25],"120":[2,25],"127":[2,25],"128":[2,25],"129":[2,25],"131":[2,25],"132":[2,25],"134":[2,25],"135":[2,25],"138":[2,25],"139":[2,25],"140":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"148":[2,25],"149":[2,25],"150":[2,25],"151":[2,25],"152":[2,25],"153":[2,25],"154":[2,25],"155":[2,25],"156":[2,25],"157":[2,25],"158":[2,25],"159":[2,25],"160":[2,25],"161":[2,25],"162":[2,25],"163":[2,25]},{"1":[2,26],"4":[2,26],"29":[2,26],"30":[2,26],"50":[2,26],"58":[2,26],"61":[2,26],"79":[2,26],"84":[2,26],"94":[2,26],"99":[2,26],"107":[2,26],"109":[2,26],"110":[2,26],"111":[2,26],"114":[2,26],"118":[2,26],"119":[2,26],"120":[2,26],"127":[2,26],"128":[2,26],"129":[2,26],"131":[2,26],"132":[2,26],"134":[2,26],"135":[2,26],"138":[2,26],"139":[2,26],"140":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"148":[2,26],"149":[2,26],"150":[2,26],"151":[2,26],"152":[2,26],"153":[2,26],"154":[2,26],"155":[2,26],"156":[2,26],"157":[2,26],"158":[2,26],"159":[2,26],"160":[2,26],"161":[2,26],"162":[2,26],"163":[2,26]},{"1":[2,27],"4":[2,27],"29":[2,27],"30":[2,27],"50":[2,27],"58":[2,27],"61":[2,27],"79":[2,27],"84":[2,27],"94":[2,27],"99":[2,27],"107":[2,27],"109":[2,27],"110":[2,27],"111":[2,27],"114":[2,27],"118":[2,27],"119":[2,27],"120":[2,27],"127":[2,27],"128":[2,27],"129":[2,27],"131":[2,27],"132":[2,27],"134":[2,27],"135":[2,27],"138":[2,27],"139":[2,27],"140":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"148":[2,27],"149":[2,27],"150":[2,27],"151":[2,27],"152":[2,27],"153":[2,27],"154":[2,27],"155":[2,27],"156":[2,27],"157":[2,27],"158":[2,27],"159":[2,27],"160":[2,27],"161":[2,27],"162":[2,27],"163":[2,27]},{"1":[2,28],"4":[2,28],"29":[2,28],"30":[2,28],"50":[2,28],"58":[2,28],"61":[2,28],"79":[2,28],"84":[2,28],"94":[2,28],"99":[2,28],"107":[2,28],"109":[2,28],"110":[2,28],"111":[2,28],"114":[2,28],"118":[2,28],"119":[2,28],"120":[2,28],"127":[2,28],"128":[2,28],"129":[2,28],"131":[2,28],"132":[2,28],"134":[2,28],"135":[2,28],"138":[2,28],"139":[2,28],"140":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"148":[2,28],"149":[2,28],"150":[2,28],"151":[2,28],"152":[2,28],"153":[2,28],"154":[2,28],"155":[2,28],"156":[2,28],"157":[2,28],"158":[2,28],"159":[2,28],"160":[2,28],"161":[2,28],"162":[2,28],"163":[2,28]},{"1":[2,10],"4":[2,10],"30":[2,10],"107":[2,10],"109":[2,10],"111":[2,10],"114":[2,10],"127":[2,10],"128":[2,10]},{"1":[2,11],"4":[2,11],"30":[2,11],"107":[2,11],"109":[2,11],"111":[2,11],"114":[2,11],"127":[2,11],"128":[2,11]},{"1":[2,12],"4":[2,12],"30":[2,12],"107":[2,12],"109":[2,12],"111":[2,12],"114":[2,12],"127":[2,12],"128":[2,12]},{"1":[2,13],"4":[2,13],"30":[2,13],"107":[2,13],"109":[2,13],"111":[2,13],"114":[2,13],"127":[2,13],"128":[2,13]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"46":[1,148],"50":[2,73],"58":[2,73],"61":[2,73],"72":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"78":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"84":[2,73],"92":[2,73],"94":[2,73],"99":[2,73],"107":[2,73],"109":[2,73],"110":[2,73],"111":[2,73],"114":[2,73],"118":[2,73],"119":[2,73],"120":[2,73],"127":[2,73],"128":[2,73],"129":[2,73],"131":[2,73],"132":[2,73],"134":[2,73],"135":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73]},{"1":[2,74],"4":[2,74],"29":[2,74],"30":[2,74],"50":[2,74],"58":[2,74],"61":[2,74],"72":[2,74],"73":[2,74],"74":[2,74],"75":[2,74],"78":[2,74],"79":[2,74],"80":[2,74],"81":[2,74],"84":[2,74],"92":[2,74],"94":[2,74],"99":[2,74],"107":[2,74],"109":[2,74],"110":[2,74],"111":[2,74],"114":[2,74],"118":[2,74],"119":[2,74],"120":[2,74],"127":[2,74],"128":[2,74],"129":[2,74],"131":[2,74],"132":[2,74],"134":[2,74],"135":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74],"151":[2,74],"152":[2,74],"153":[2,74],"154":[2,74],"155":[2,74],"156":[2,74],"157":[2,74],"158":[2,74],"159":[2,74],"160":[2,74],"161":[2,74],"162":[2,74],"163":[2,74]},{"1":[2,75],"4":[2,75],"29":[2,75],"30":[2,75],"50":[2,75],"58":[2,75],"61":[2,75],"72":[2,75],"73":[2,75],"74":[2,75],"75":[2,75],"78":[2,75],"79":[2,75],"80":[2,75],"81":[2,75],"84":[2,75],"92":[2,75],"94":[2,75],"99":[2,75],"107":[2,75],"109":[2,75],"110":[2,75],"111":[2,75],"114":[2,75],"118":[2,75],"119":[2,75],"120":[2,75],"127":[2,75],"128":[2,75],"129":[2,75],"131":[2,75],"132":[2,75],"134":[2,75],"135":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75],"162":[2,75],"163":[2,75]},{"1":[2,76],"4":[2,76],"29":[2,76],"30":[2,76],"50":[2,76],"58":[2,76],"61":[2,76],"72":[2,76],"73":[2,76],"74":[2,76],"75":[2,76],"78":[2,76],"79":[2,76],"80":[2,76],"81":[2,76],"84":[2,76],"92":[2,76],"94":[2,76],"99":[2,76],"107":[2,76],"109":[2,76],"110":[2,76],"111":[2,76],"114":[2,76],"118":[2,76],"119":[2,76],"120":[2,76],"127":[2,76],"128":[2,76],"129":[2,76],"131":[2,76],"132":[2,76],"134":[2,76],"135":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76],"162":[2,76],"163":[2,76]},{"1":[2,77],"4":[2,77],"29":[2,77],"30":[2,77],"50":[2,77],"58":[2,77],"61":[2,77],"72":[2,77],"73":[2,77],"74":[2,77],"75":[2,77],"78":[2,77],"79":[2,77],"80":[2,77],"81":[2,77],"84":[2,77],"92":[2,77],"94":[2,77],"99":[2,77],"107":[2,77],"109":[2,77],"110":[2,77],"111":[2,77],"114":[2,77],"118":[2,77],"119":[2,77],"120":[2,77],"127":[2,77],"128":[2,77],"129":[2,77],"131":[2,77],"132":[2,77],"134":[2,77],"135":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77],"151":[2,77],"152":[2,77],"153":[2,77],"154":[2,77],"155":[2,77],"156":[2,77],"157":[2,77],"158":[2,77],"159":[2,77],"160":[2,77],"161":[2,77],"162":[2,77],"163":[2,77]},{"1":[2,78],"4":[2,78],"29":[2,78],"30":[2,78],"50":[2,78],"58":[2,78],"61":[2,78],"72":[2,78],"73":[2,78],"74":[2,78],"75":[2,78],"78":[2,78],"79":[2,78],"80":[2,78],"81":[2,78],"84":[2,78],"92":[2,78],"94":[2,78],"99":[2,78],"107":[2,78],"109":[2,78],"110":[2,78],"111":[2,78],"114":[2,78],"118":[2,78],"119":[2,78],"120":[2,78],"127":[2,78],"128":[2,78],"129":[2,78],"131":[2,78],"132":[2,78],"134":[2,78],"135":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78],"151":[2,78],"152":[2,78],"153":[2,78],"154":[2,78],"155":[2,78],"156":[2,78],"157":[2,78],"158":[2,78],"159":[2,78],"160":[2,78],"161":[2,78],"162":[2,78],"163":[2,78]},{"1":[2,103],"4":[2,103],"29":[2,103],"30":[2,103],"50":[2,103],"58":[2,103],"61":[2,103],"63":150,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,103],"80":[1,146],"81":[1,147],"84":[2,103],"91":149,"92":[1,138],"94":[2,103],"99":[2,103],"107":[2,103],"109":[2,103],"110":[2,103],"111":[2,103],"114":[2,103],"118":[2,103],"119":[2,103],"120":[2,103],"127":[2,103],"128":[2,103],"129":[2,103],"131":[2,103],"132":[2,103],"134":[2,103],"135":[2,103],"138":[2,103],"139":[2,103],"140":[2,103],"141":[2,103],"142":[2,103],"143":[2,103],"144":[2,103],"145":[2,103],"146":[2,103],"147":[2,103],"148":[2,103],"149":[2,103],"150":[2,103],"151":[2,103],"152":[2,103],"153":[2,103],"154":[2,103],"155":[2,103],"156":[2,103],"157":[2,103],"158":[2,103],"159":[2,103],"160":[2,103],"161":[2,103],"162":[2,103],"163":[2,103]},{"1":[2,104],"4":[2,104],"29":[2,104],"30":[2,104],"50":[2,104],"58":[2,104],"61":[2,104],"79":[2,104],"84":[2,104],"94":[2,104],"99":[2,104],"107":[2,104],"109":[2,104],"110":[2,104],"111":[2,104],"114":[2,104],"118":[2,104],"119":[2,104],"120":[2,104],"127":[2,104],"128":[2,104],"129":[2,104],"131":[2,104],"132":[2,104],"134":[2,104],"135":[2,104],"138":[2,104],"139":[2,104],"140":[2,104],"141":[2,104],"142":[2,104],"143":[2,104],"144":[2,104],"145":[2,104],"146":[2,104],"147":[2,104],"148":[2,104],"149":[2,104],"150":[2,104],"151":[2,104],"152":[2,104],"153":[2,104],"154":[2,104],"155":[2,104],"156":[2,104],"157":[2,104],"158":[2,104],"159":[2,104],"160":[2,104],"161":[2,104],"162":[2,104],"163":[2,104]},{"14":152,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":153,"62":154,"64":151,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"52":155,"53":[2,60],"58":[2,60],"59":156,"60":[1,157]},{"4":[1,159],"6":158,"29":[1,6]},{"8":160,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":162,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":163,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":164,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":165,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":166,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":167,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":168,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":169,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,170],"4":[2,170],"29":[2,170],"30":[2,170],"50":[2,170],"58":[2,170],"61":[2,170],"79":[2,170],"84":[2,170],"94":[2,170],"99":[2,170],"107":[2,170],"109":[2,170],"110":[2,170],"111":[2,170],"114":[2,170],"118":[2,170],"119":[2,170],"120":[2,170],"123":[1,170],"127":[2,170],"128":[2,170],"129":[2,170],"131":[2,170],"132":[2,170],"134":[2,170],"135":[2,170],"138":[2,170],"139":[2,170],"140":[2,170],"141":[2,170],"142":[2,170],"143":[2,170],"144":[2,170],"145":[2,170],"146":[2,170],"147":[2,170],"148":[2,170],"149":[2,170],"150":[2,170],"151":[2,170],"152":[2,170],"153":[2,170],"154":[2,170],"155":[2,170],"156":[2,170],"157":[2,170],"158":[2,170],"159":[2,170],"160":[2,170],"161":[2,170],"162":[2,170],"163":[2,170]},{"4":[1,159],"6":171,"29":[1,6]},{"4":[1,159],"6":172,"29":[1,6]},{"1":[2,140],"4":[2,140],"29":[2,140],"30":[2,140],"50":[2,140],"58":[2,140],"61":[2,140],"79":[2,140],"84":[2,140],"94":[2,140],"99":[2,140],"107":[2,140],"109":[2,140],"110":[2,140],"111":[2,140],"114":[2,140],"118":[2,140],"119":[2,140],"120":[2,140],"127":[2,140],"128":[2,140],"129":[2,140],"131":[2,140],"132":[2,140],"134":[2,140],"135":[2,140],"138":[2,140],"139":[2,140],"140":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140],"148":[2,140],"149":[2,140],"150":[2,140],"151":[2,140],"152":[2,140],"153":[2,140],"154":[2,140],"155":[2,140],"156":[2,140],"157":[2,140],"158":[2,140],"159":[2,140],"160":[2,140],"161":[2,140],"162":[2,140],"163":[2,140]},{"31":175,"32":[1,87],"66":176,"67":177,"82":[1,84],"98":[1,178],"115":173,"117":174},{"8":179,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,180],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"46":[2,70],"50":[2,70],"58":[2,70],"61":[2,70],"72":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"78":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"84":[2,70],"86":[1,181],"92":[2,70],"94":[2,70],"99":[2,70],"107":[2,70],"109":[2,70],"110":[2,70],"111":[2,70],"114":[2,70],"118":[2,70],"119":[2,70],"120":[2,70],"127":[2,70],"128":[2,70],"129":[2,70],"131":[2,70],"132":[2,70],"134":[2,70],"135":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70]},{"14":183,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":153,"62":182,"64":184,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,52],"4":[2,52],"29":[2,52],"30":[2,52],"50":[2,52],"58":[2,52],"61":[2,52],"79":[2,52],"84":[2,52],"94":[2,52],"99":[2,52],"103":[2,52],"104":[2,52],"107":[2,52],"109":[2,52],"110":[2,52],"111":[2,52],"114":[2,52],"118":[2,52],"119":[2,52],"120":[2,52],"123":[2,52],"125":[2,52],"127":[2,52],"128":[2,52],"129":[2,52],"131":[2,52],"132":[2,52],"134":[2,52],"135":[2,52],"138":[2,52],"139":[2,52],"140":[2,52],"141":[2,52],"142":[2,52],"143":[2,52],"144":[2,52],"145":[2,52],"146":[2,52],"147":[2,52],"148":[2,52],"149":[2,52],"150":[2,52],"151":[2,52],"152":[2,52],"153":[2,52],"154":[2,52],"155":[2,52],"156":[2,52],"157":[2,52],"158":[2,52],"159":[2,52],"160":[2,52],"161":[2,52],"162":[2,52],"163":[2,52]},{"1":[2,51],"4":[2,51],"8":185,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,51],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"107":[2,51],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[2,51],"128":[2,51],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":186,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,71],"4":[2,71],"29":[2,71],"30":[2,71],"46":[2,71],"50":[2,71],"58":[2,71],"61":[2,71],"72":[2,71],"73":[2,71],"74":[2,71],"75":[2,71],"78":[2,71],"79":[2,71],"80":[2,71],"81":[2,71],"84":[2,71],"92":[2,71],"94":[2,71],"99":[2,71],"107":[2,71],"109":[2,71],"110":[2,71],"111":[2,71],"114":[2,71],"118":[2,71],"119":[2,71],"120":[2,71],"127":[2,71],"128":[2,71],"129":[2,71],"131":[2,71],"132":[2,71],"134":[2,71],"135":[2,71],"138":[2,71],"139":[2,71],"140":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71],"162":[2,71],"163":[2,71]},{"1":[2,72],"4":[2,72],"29":[2,72],"30":[2,72],"46":[2,72],"50":[2,72],"58":[2,72],"61":[2,72],"72":[2,72],"73":[2,72],"74":[2,72],"75":[2,72],"78":[2,72],"79":[2,72],"80":[2,72],"81":[2,72],"84":[2,72],"92":[2,72],"94":[2,72],"99":[2,72],"107":[2,72],"109":[2,72],"110":[2,72],"111":[2,72],"114":[2,72],"118":[2,72],"119":[2,72],"120":[2,72],"127":[2,72],"128":[2,72],"129":[2,72],"131":[2,72],"132":[2,72],"134":[2,72],"135":[2,72],"138":[2,72],"139":[2,72],"140":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72],"162":[2,72],"163":[2,72]},{"1":[2,35],"4":[2,35],"29":[2,35],"30":[2,35],"50":[2,35],"58":[2,35],"61":[2,35],"72":[2,35],"73":[2,35],"74":[2,35],"75":[2,35],"78":[2,35],"79":[2,35],"80":[2,35],"81":[2,35],"84":[2,35],"92":[2,35],"94":[2,35],"99":[2,35],"107":[2,35],"109":[2,35],"110":[2,35],"111":[2,35],"114":[2,35],"118":[2,35],"119":[2,35],"120":[2,35],"127":[2,35],"128":[2,35],"129":[2,35],"131":[2,35],"132":[2,35],"134":[2,35],"135":[2,35],"138":[2,35],"139":[2,35],"140":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35],"151":[2,35],"152":[2,35],"153":[2,35],"154":[2,35],"155":[2,35],"156":[2,35],"157":[2,35],"158":[2,35],"159":[2,35],"160":[2,35],"161":[2,35],"162":[2,35],"163":[2,35]},{"1":[2,36],"4":[2,36],"29":[2,36],"30":[2,36],"50":[2,36],"58":[2,36],"61":[2,36],"72":[2,36],"73":[2,36],"74":[2,36],"75":[2,36],"78":[2,36],"79":[2,36],"80":[2,36],"81":[2,36],"84":[2,36],"92":[2,36],"94":[2,36],"99":[2,36],"107":[2,36],"109":[2,36],"110":[2,36],"111":[2,36],"114":[2,36],"118":[2,36],"119":[2,36],"120":[2,36],"127":[2,36],"128":[2,36],"129":[2,36],"131":[2,36],"132":[2,36],"134":[2,36],"135":[2,36],"138":[2,36],"139":[2,36],"140":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36],"151":[2,36],"152":[2,36],"153":[2,36],"154":[2,36],"155":[2,36],"156":[2,36],"157":[2,36],"158":[2,36],"159":[2,36],"160":[2,36],"161":[2,36],"162":[2,36],"163":[2,36]},{"1":[2,37],"4":[2,37],"29":[2,37],"30":[2,37],"50":[2,37],"58":[2,37],"61":[2,37],"72":[2,37],"73":[2,37],"74":[2,37],"75":[2,37],"78":[2,37],"79":[2,37],"80":[2,37],"81":[2,37],"84":[2,37],"92":[2,37],"94":[2,37],"99":[2,37],"107":[2,37],"109":[2,37],"110":[2,37],"111":[2,37],"114":[2,37],"118":[2,37],"119":[2,37],"120":[2,37],"127":[2,37],"128":[2,37],"129":[2,37],"131":[2,37],"132":[2,37],"134":[2,37],"135":[2,37],"138":[2,37],"139":[2,37],"140":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37],"151":[2,37],"152":[2,37],"153":[2,37],"154":[2,37],"155":[2,37],"156":[2,37],"157":[2,37],"158":[2,37],"159":[2,37],"160":[2,37],"161":[2,37],"162":[2,37],"163":[2,37]},{"1":[2,38],"4":[2,38],"29":[2,38],"30":[2,38],"50":[2,38],"58":[2,38],"61":[2,38],"72":[2,38],"73":[2,38],"74":[2,38],"75":[2,38],"78":[2,38],"79":[2,38],"80":[2,38],"81":[2,38],"84":[2,38],"92":[2,38],"94":[2,38],"99":[2,38],"107":[2,38],"109":[2,38],"110":[2,38],"111":[2,38],"114":[2,38],"118":[2,38],"119":[2,38],"120":[2,38],"127":[2,38],"128":[2,38],"129":[2,38],"131":[2,38],"132":[2,38],"134":[2,38],"135":[2,38],"138":[2,38],"139":[2,38],"140":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38],"151":[2,38],"152":[2,38],"153":[2,38],"154":[2,38],"155":[2,38],"156":[2,38],"157":[2,38],"158":[2,38],"159":[2,38],"160":[2,38],"161":[2,38],"162":[2,38],"163":[2,38]},{"1":[2,39],"4":[2,39],"29":[2,39],"30":[2,39],"50":[2,39],"58":[2,39],"61":[2,39],"72":[2,39],"73":[2,39],"74":[2,39],"75":[2,39],"78":[2,39],"79":[2,39],"80":[2,39],"81":[2,39],"84":[2,39],"92":[2,39],"94":[2,39],"99":[2,39],"107":[2,39],"109":[2,39],"110":[2,39],"111":[2,39],"114":[2,39],"118":[2,39],"119":[2,39],"120":[2,39],"127":[2,39],"128":[2,39],"129":[2,39],"131":[2,39],"132":[2,39],"134":[2,39],"135":[2,39],"138":[2,39],"139":[2,39],"140":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39],"151":[2,39],"152":[2,39],"153":[2,39],"154":[2,39],"155":[2,39],"156":[2,39],"157":[2,39],"158":[2,39],"159":[2,39],"160":[2,39],"161":[2,39],"162":[2,39],"163":[2,39]},{"1":[2,40],"4":[2,40],"29":[2,40],"30":[2,40],"50":[2,40],"58":[2,40],"61":[2,40],"72":[2,40],"73":[2,40],"74":[2,40],"75":[2,40],"78":[2,40],"79":[2,40],"80":[2,40],"81":[2,40],"84":[2,40],"92":[2,40],"94":[2,40],"99":[2,40],"107":[2,40],"109":[2,40],"110":[2,40],"111":[2,40],"114":[2,40],"118":[2,40],"119":[2,40],"120":[2,40],"127":[2,40],"128":[2,40],"129":[2,40],"131":[2,40],"132":[2,40],"134":[2,40],"135":[2,40],"138":[2,40],"139":[2,40],"140":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40],"151":[2,40],"152":[2,40],"153":[2,40],"154":[2,40],"155":[2,40],"156":[2,40],"157":[2,40],"158":[2,40],"159":[2,40],"160":[2,40],"161":[2,40],"162":[2,40],"163":[2,40]},{"1":[2,41],"4":[2,41],"29":[2,41],"30":[2,41],"50":[2,41],"58":[2,41],"61":[2,41],"72":[2,41],"73":[2,41],"74":[2,41],"75":[2,41],"78":[2,41],"79":[2,41],"80":[2,41],"81":[2,41],"84":[2,41],"92":[2,41],"94":[2,41],"99":[2,41],"107":[2,41],"109":[2,41],"110":[2,41],"111":[2,41],"114":[2,41],"118":[2,41],"119":[2,41],"120":[2,41],"127":[2,41],"128":[2,41],"129":[2,41],"131":[2,41],"132":[2,41],"134":[2,41],"135":[2,41],"138":[2,41],"139":[2,41],"140":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41],"151":[2,41],"152":[2,41],"153":[2,41],"154":[2,41],"155":[2,41],"156":[2,41],"157":[2,41],"158":[2,41],"159":[2,41],"160":[2,41],"161":[2,41],"162":[2,41],"163":[2,41]},{"1":[2,42],"4":[2,42],"29":[2,42],"30":[2,42],"50":[2,42],"58":[2,42],"61":[2,42],"72":[2,42],"73":[2,42],"74":[2,42],"75":[2,42],"78":[2,42],"79":[2,42],"80":[2,42],"81":[2,42],"84":[2,42],"92":[2,42],"94":[2,42],"99":[2,42],"107":[2,42],"109":[2,42],"110":[2,42],"111":[2,42],"114":[2,42],"118":[2,42],"119":[2,42],"120":[2,42],"127":[2,42],"128":[2,42],"129":[2,42],"131":[2,42],"132":[2,42],"134":[2,42],"135":[2,42],"138":[2,42],"139":[2,42],"140":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"148":[2,42],"149":[2,42],"150":[2,42],"151":[2,42],"152":[2,42],"153":[2,42],"154":[2,42],"155":[2,42],"156":[2,42],"157":[2,42],"158":[2,42],"159":[2,42],"160":[2,42],"161":[2,42],"162":[2,42],"163":[2,42]},{"1":[2,43],"4":[2,43],"29":[2,43],"30":[2,43],"50":[2,43],"58":[2,43],"61":[2,43],"72":[2,43],"73":[2,43],"74":[2,43],"75":[2,43],"78":[2,43],"79":[2,43],"80":[2,43],"81":[2,43],"84":[2,43],"92":[2,43],"94":[2,43],"99":[2,43],"107":[2,43],"109":[2,43],"110":[2,43],"111":[2,43],"114":[2,43],"118":[2,43],"119":[2,43],"120":[2,43],"127":[2,43],"128":[2,43],"129":[2,43],"131":[2,43],"132":[2,43],"134":[2,43],"135":[2,43],"138":[2,43],"139":[2,43],"140":[2,43],"141":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43],"148":[2,43],"149":[2,43],"150":[2,43],"151":[2,43],"152":[2,43],"153":[2,43],"154":[2,43],"155":[2,43],"156":[2,43],"157":[2,43],"158":[2,43],"159":[2,43],"160":[2,43],"161":[2,43],"162":[2,43],"163":[2,43]},{"7":187,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,120],"8":188,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":189,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,120],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,112],"4":[2,112],"29":[2,112],"30":[2,112],"50":[2,112],"58":[2,112],"61":[2,112],"72":[2,112],"73":[2,112],"74":[2,112],"75":[2,112],"78":[2,112],"79":[2,112],"80":[2,112],"81":[2,112],"84":[2,112],"92":[2,112],"94":[2,112],"99":[2,112],"107":[2,112],"109":[2,112],"110":[2,112],"111":[2,112],"114":[2,112],"118":[2,112],"119":[2,112],"120":[2,112],"127":[2,112],"128":[2,112],"129":[2,112],"131":[2,112],"132":[2,112],"134":[2,112],"135":[2,112],"138":[2,112],"139":[2,112],"140":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"147":[2,112],"148":[2,112],"149":[2,112],"150":[2,112],"151":[2,112],"152":[2,112],"153":[2,112],"154":[2,112],"155":[2,112],"156":[2,112],"157":[2,112],"158":[2,112],"159":[2,112],"160":[2,112],"161":[2,112],"162":[2,112],"163":[2,112]},{"1":[2,113],"4":[2,113],"29":[2,113],"30":[2,113],"31":190,"32":[1,87],"50":[2,113],"58":[2,113],"61":[2,113],"72":[2,113],"73":[2,113],"74":[2,113],"75":[2,113],"78":[2,113],"79":[2,113],"80":[2,113],"81":[2,113],"84":[2,113],"92":[2,113],"94":[2,113],"99":[2,113],"107":[2,113],"109":[2,113],"110":[2,113],"111":[2,113],"114":[2,113],"118":[2,113],"119":[2,113],"120":[2,113],"127":[2,113],"128":[2,113],"129":[2,113],"131":[2,113],"132":[2,113],"134":[2,113],"135":[2,113],"138":[2,113],"139":[2,113],"140":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"147":[2,113],"148":[2,113],"149":[2,113],"150":[2,113],"151":[2,113],"152":[2,113],"153":[2,113],"154":[2,113],"155":[2,113],"156":[2,113],"157":[2,113],"158":[2,113],"159":[2,113],"160":[2,113],"161":[2,113],"162":[2,113],"163":[2,113]},{"91":191,"92":[1,138]},{"4":[2,56],"29":[2,56]},{"4":[2,57],"29":[2,57]},{"8":192,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":193,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":194,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":195,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[1,159],"6":196,"8":197,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,66],"4":[2,66],"29":[2,66],"30":[2,66],"46":[2,66],"50":[2,66],"58":[2,66],"61":[2,66],"72":[2,66],"73":[2,66],"74":[2,66],"75":[2,66],"78":[2,66],"79":[2,66],"80":[2,66],"81":[2,66],"84":[2,66],"86":[2,66],"92":[2,66],"94":[2,66],"99":[2,66],"107":[2,66],"109":[2,66],"110":[2,66],"111":[2,66],"114":[2,66],"118":[2,66],"119":[2,66],"120":[2,66],"127":[2,66],"128":[2,66],"129":[2,66],"131":[2,66],"132":[2,66],"134":[2,66],"135":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66],"162":[2,66],"163":[2,66]},{"1":[2,69],"4":[2,69],"29":[2,69],"30":[2,69],"46":[2,69],"50":[2,69],"58":[2,69],"61":[2,69],"72":[2,69],"73":[2,69],"74":[2,69],"75":[2,69],"78":[2,69],"79":[2,69],"80":[2,69],"81":[2,69],"84":[2,69],"86":[2,69],"92":[2,69],"94":[2,69],"99":[2,69],"107":[2,69],"109":[2,69],"110":[2,69],"111":[2,69],"114":[2,69],"118":[2,69],"119":[2,69],"120":[2,69],"127":[2,69],"128":[2,69],"129":[2,69],"131":[2,69],"132":[2,69],"134":[2,69],"135":[2,69],"138":[2,69],"139":[2,69],"140":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69],"162":[2,69],"163":[2,69]},{"4":[2,89],"28":202,"29":[2,89],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":199,"49":[1,56],"58":[2,89],"83":198,"84":[2,89]},{"1":[2,33],"4":[2,33],"29":[2,33],"30":[2,33],"46":[2,33],"50":[2,33],"58":[2,33],"61":[2,33],"72":[2,33],"73":[2,33],"74":[2,33],"75":[2,33],"78":[2,33],"79":[2,33],"80":[2,33],"81":[2,33],"84":[2,33],"92":[2,33],"94":[2,33],"99":[2,33],"107":[2,33],"109":[2,33],"110":[2,33],"111":[2,33],"114":[2,33],"118":[2,33],"119":[2,33],"120":[2,33],"127":[2,33],"128":[2,33],"129":[2,33],"131":[2,33],"132":[2,33],"134":[2,33],"135":[2,33],"138":[2,33],"139":[2,33],"140":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33],"151":[2,33],"152":[2,33],"153":[2,33],"154":[2,33],"155":[2,33],"156":[2,33],"157":[2,33],"158":[2,33],"159":[2,33],"160":[2,33],"161":[2,33],"162":[2,33],"163":[2,33]},{"1":[2,34],"4":[2,34],"29":[2,34],"30":[2,34],"46":[2,34],"50":[2,34],"58":[2,34],"61":[2,34],"72":[2,34],"73":[2,34],"74":[2,34],"75":[2,34],"78":[2,34],"79":[2,34],"80":[2,34],"81":[2,34],"84":[2,34],"92":[2,34],"94":[2,34],"99":[2,34],"107":[2,34],"109":[2,34],"110":[2,34],"111":[2,34],"114":[2,34],"118":[2,34],"119":[2,34],"120":[2,34],"127":[2,34],"128":[2,34],"129":[2,34],"131":[2,34],"132":[2,34],"134":[2,34],"135":[2,34],"138":[2,34],"139":[2,34],"140":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34],"151":[2,34],"152":[2,34],"153":[2,34],"154":[2,34],"155":[2,34],"156":[2,34],"157":[2,34],"158":[2,34],"159":[2,34],"160":[2,34],"161":[2,34],"162":[2,34],"163":[2,34]},{"1":[2,32],"4":[2,32],"29":[2,32],"30":[2,32],"46":[2,32],"50":[2,32],"58":[2,32],"61":[2,32],"72":[2,32],"73":[2,32],"74":[2,32],"75":[2,32],"78":[2,32],"79":[2,32],"80":[2,32],"81":[2,32],"84":[2,32],"86":[2,32],"92":[2,32],"94":[2,32],"99":[2,32],"107":[2,32],"109":[2,32],"110":[2,32],"111":[2,32],"114":[2,32],"118":[2,32],"119":[2,32],"120":[2,32],"127":[2,32],"128":[2,32],"129":[2,32],"131":[2,32],"132":[2,32],"134":[2,32],"135":[2,32],"138":[2,32],"139":[2,32],"140":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32],"151":[2,32],"152":[2,32],"153":[2,32],"154":[2,32],"155":[2,32],"156":[2,32],"157":[2,32],"158":[2,32],"159":[2,32],"160":[2,32],"161":[2,32],"162":[2,32],"163":[2,32]},{"1":[2,31],"4":[2,31],"29":[2,31],"30":[2,31],"50":[2,31],"58":[2,31],"61":[2,31],"79":[2,31],"84":[2,31],"94":[2,31],"99":[2,31],"103":[2,31],"104":[2,31],"107":[2,31],"109":[2,31],"110":[2,31],"111":[2,31],"114":[2,31],"118":[2,31],"119":[2,31],"120":[2,31],"123":[2,31],"125":[2,31],"127":[2,31],"128":[2,31],"129":[2,31],"131":[2,31],"132":[2,31],"134":[2,31],"135":[2,31],"138":[2,31],"139":[2,31],"140":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31],"149":[2,31],"150":[2,31],"151":[2,31],"152":[2,31],"153":[2,31],"154":[2,31],"155":[2,31],"156":[2,31],"157":[2,31],"158":[2,31],"159":[2,31],"160":[2,31],"161":[2,31],"162":[2,31],"163":[2,31]},{"1":[2,7],"4":[2,7],"7":203,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,7],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,4]},{"4":[1,89],"30":[1,204]},{"1":[2,30],"4":[2,30],"29":[2,30],"30":[2,30],"50":[2,30],"58":[2,30],"61":[2,30],"79":[2,30],"84":[2,30],"94":[2,30],"99":[2,30],"103":[2,30],"104":[2,30],"107":[2,30],"109":[2,30],"110":[2,30],"111":[2,30],"114":[2,30],"118":[2,30],"119":[2,30],"120":[2,30],"123":[2,30],"125":[2,30],"127":[2,30],"128":[2,30],"129":[2,30],"131":[2,30],"132":[2,30],"134":[2,30],"135":[2,30],"138":[2,30],"139":[2,30],"140":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"148":[2,30],"149":[2,30],"150":[2,30],"151":[2,30],"152":[2,30],"153":[2,30],"154":[2,30],"155":[2,30],"156":[2,30],"157":[2,30],"158":[2,30],"159":[2,30],"160":[2,30],"161":[2,30],"162":[2,30],"163":[2,30]},{"1":[2,184],"4":[2,184],"29":[2,184],"30":[2,184],"50":[2,184],"58":[2,184],"61":[2,184],"79":[2,184],"84":[2,184],"94":[2,184],"99":[2,184],"107":[2,184],"109":[2,184],"110":[2,184],"111":[2,184],"114":[2,184],"118":[2,184],"119":[2,184],"120":[2,184],"127":[2,184],"128":[2,184],"129":[2,184],"131":[2,184],"132":[2,184],"134":[2,184],"135":[2,184],"138":[2,184],"139":[2,184],"140":[2,184],"141":[2,184],"142":[2,184],"143":[2,184],"144":[2,184],"145":[2,184],"146":[2,184],"147":[2,184],"148":[2,184],"149":[2,184],"150":[2,184],"151":[2,184],"152":[2,184],"153":[2,184],"154":[2,184],"155":[2,184],"156":[2,184],"157":[2,184],"158":[2,184],"159":[2,184],"160":[2,184],"161":[2,184],"162":[2,184],"163":[2,184]},{"1":[2,185],"4":[2,185],"29":[2,185],"30":[2,185],"50":[2,185],"58":[2,185],"61":[2,185],"79":[2,185],"84":[2,185],"94":[2,185],"99":[2,185],"107":[2,185],"109":[2,185],"110":[2,185],"111":[2,185],"114":[2,185],"118":[2,185],"119":[2,185],"120":[2,185],"127":[2,185],"128":[2,185],"129":[2,185],"131":[2,185],"132":[2,185],"134":[2,185],"135":[2,185],"138":[2,185],"139":[2,185],"140":[2,185],"141":[2,185],"142":[2,185],"143":[2,185],"144":[2,185],"145":[2,185],"146":[2,185],"147":[2,185],"148":[2,185],"149":[2,185],"150":[2,185],"151":[2,185],"152":[2,185],"153":[2,185],"154":[2,185],"155":[2,185],"156":[2,185],"157":[2,185],"158":[2,185],"159":[2,185],"160":[2,185],"161":[2,185],"162":[2,185],"163":[2,185]},{"8":205,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":206,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":207,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":208,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":209,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":210,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":211,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":212,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":213,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":214,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":215,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":216,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":217,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":218,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":219,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":220,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":221,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":222,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":223,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,53],"4":[2,53],"8":224,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,53],"30":[2,53],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"50":[2,53],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,53],"61":[2,53],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"79":[2,53],"82":[1,84],"84":[2,53],"85":[1,55],"89":35,"90":[1,36],"94":[2,53],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,53],"101":[1,49],"105":[1,58],"106":[1,70],"107":[2,53],"108":50,"109":[2,53],"110":[2,53],"111":[2,53],"112":51,"113":[1,81],"114":[2,53],"118":[2,53],"119":[2,53],"120":[2,53],"121":[1,53],"126":48,"127":[2,53],"128":[2,53],"129":[2,53],"130":[1,40],"131":[2,53],"132":[2,53],"133":[1,43],"134":[2,53],"135":[2,53],"136":[1,46],"137":[1,47],"138":[2,53],"139":[2,53],"140":[2,53],"141":[2,53],"142":[2,53],"143":[2,53],"144":[2,53],"145":[2,53],"146":[2,53],"147":[2,53],"148":[2,53],"149":[2,53],"150":[2,53],"151":[2,53],"152":[2,53],"153":[2,53],"154":[2,53],"155":[2,53],"156":[2,53],"157":[2,53],"158":[2,53],"159":[2,53],"160":[2,53],"161":[2,53],"162":[2,53],"163":[2,53]},{"8":225,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":226,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":227,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":228,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":229,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":230,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":231,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":232,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":233,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":234,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":235,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"118":[1,236],"119":[1,237]},{"8":238,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":239,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,139],"4":[2,139],"29":[2,139],"30":[2,139],"50":[2,139],"58":[2,139],"61":[2,139],"79":[2,139],"84":[2,139],"94":[2,139],"99":[2,139],"107":[2,139],"109":[2,139],"110":[2,139],"111":[2,139],"114":[2,139],"118":[2,139],"119":[2,139],"120":[2,139],"127":[2,139],"128":[2,139],"129":[2,139],"131":[2,139],"132":[2,139],"134":[2,139],"135":[2,139],"138":[2,139],"139":[2,139],"140":[2,139],"141":[2,139],"142":[2,139],"143":[2,139],"144":[2,139],"145":[2,139],"146":[2,139],"147":[2,139],"148":[2,139],"149":[2,139],"150":[2,139],"151":[2,139],"152":[2,139],"153":[2,139],"154":[2,139],"155":[2,139],"156":[2,139],"157":[2,139],"158":[2,139],"159":[2,139],"160":[2,139],"161":[2,139],"162":[2,139],"163":[2,139]},{"31":175,"32":[1,87],"66":176,"67":177,"82":[1,84],"98":[1,178],"115":240,"117":174},{"61":[1,241]},{"8":242,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":243,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,138],"4":[2,138],"29":[2,138],"30":[2,138],"50":[2,138],"58":[2,138],"61":[2,138],"79":[2,138],"84":[2,138],"94":[2,138],"99":[2,138],"107":[2,138],"109":[2,138],"110":[2,138],"111":[2,138],"114":[2,138],"118":[2,138],"119":[2,138],"120":[2,138],"127":[2,138],"128":[2,138],"129":[2,138],"131":[2,138],"132":[2,138],"134":[2,138],"135":[2,138],"138":[2,138],"139":[2,138],"140":[2,138],"141":[2,138],"142":[2,138],"143":[2,138],"144":[2,138],"145":[2,138],"146":[2,138],"147":[2,138],"148":[2,138],"149":[2,138],"150":[2,138],"151":[2,138],"152":[2,138],"153":[2,138],"154":[2,138],"155":[2,138],"156":[2,138],"157":[2,138],"158":[2,138],"159":[2,138],"160":[2,138],"161":[2,138],"162":[2,138],"163":[2,138]},{"31":175,"32":[1,87],"66":176,"67":177,"82":[1,84],"98":[1,178],"115":244,"117":174},{"1":[2,108],"4":[2,108],"29":[2,108],"30":[2,108],"50":[2,108],"58":[2,108],"61":[2,108],"72":[2,108],"73":[2,108],"74":[2,108],"75":[2,108],"78":[2,108],"79":[2,108],"80":[2,108],"81":[2,108],"84":[2,108],"92":[2,108],"94":[2,108],"99":[2,108],"107":[2,108],"109":[2,108],"110":[2,108],"111":[2,108],"114":[2,108],"118":[2,108],"119":[2,108],"120":[2,108],"127":[2,108],"128":[2,108],"129":[2,108],"131":[2,108],"132":[2,108],"134":[2,108],"135":[2,108],"138":[2,108],"139":[2,108],"140":[2,108],"141":[2,108],"142":[2,108],"143":[2,108],"144":[2,108],"145":[2,108],"146":[2,108],"147":[2,108],"148":[2,108],"149":[2,108],"150":[2,108],"151":[2,108],"152":[2,108],"153":[2,108],"154":[2,108],"155":[2,108],"156":[2,108],"157":[2,108],"158":[2,108],"159":[2,108],"160":[2,108],"161":[2,108],"162":[2,108],"163":[2,108]},{"1":[2,67],"4":[2,67],"29":[2,67],"30":[2,67],"46":[2,67],"50":[2,67],"58":[2,67],"61":[2,67],"72":[2,67],"73":[2,67],"74":[2,67],"75":[2,67],"78":[2,67],"79":[2,67],"80":[2,67],"81":[2,67],"84":[2,67],"86":[2,67],"92":[2,67],"94":[2,67],"99":[2,67],"107":[2,67],"109":[2,67],"110":[2,67],"111":[2,67],"114":[2,67],"118":[2,67],"119":[2,67],"120":[2,67],"127":[2,67],"128":[2,67],"129":[2,67],"131":[2,67],"132":[2,67],"134":[2,67],"135":[2,67],"138":[2,67],"139":[2,67],"140":[2,67],"141":[2,67],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67],"162":[2,67],"163":[2,67]},{"4":[2,120],"8":246,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":245,"94":[2,120],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"31":247,"32":[1,87]},{"31":248,"32":[1,87]},{"1":[2,81],"4":[2,81],"29":[2,81],"30":[2,81],"46":[2,81],"50":[2,81],"58":[2,81],"61":[2,81],"72":[2,81],"73":[2,81],"74":[2,81],"75":[2,81],"78":[2,81],"79":[2,81],"80":[2,81],"81":[2,81],"84":[2,81],"86":[2,81],"92":[2,81],"94":[2,81],"99":[2,81],"107":[2,81],"109":[2,81],"110":[2,81],"111":[2,81],"114":[2,81],"118":[2,81],"119":[2,81],"120":[2,81],"127":[2,81],"128":[2,81],"129":[2,81],"131":[2,81],"132":[2,81],"134":[2,81],"135":[2,81],"138":[2,81],"139":[2,81],"140":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81],"151":[2,81],"152":[2,81],"153":[2,81],"154":[2,81],"155":[2,81],"156":[2,81],"157":[2,81],"158":[2,81],"159":[2,81],"160":[2,81],"161":[2,81],"162":[2,81],"163":[2,81]},{"31":249,"32":[1,87]},{"1":[2,83],"4":[2,83],"29":[2,83],"30":[2,83],"46":[2,83],"50":[2,83],"58":[2,83],"61":[2,83],"72":[2,83],"73":[2,83],"74":[2,83],"75":[2,83],"78":[2,83],"79":[2,83],"80":[2,83],"81":[2,83],"84":[2,83],"86":[2,83],"92":[2,83],"94":[2,83],"99":[2,83],"107":[2,83],"109":[2,83],"110":[2,83],"111":[2,83],"114":[2,83],"118":[2,83],"119":[2,83],"120":[2,83],"127":[2,83],"128":[2,83],"129":[2,83],"131":[2,83],"132":[2,83],"134":[2,83],"135":[2,83],"138":[2,83],"139":[2,83],"140":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83],"151":[2,83],"152":[2,83],"153":[2,83],"154":[2,83],"155":[2,83],"156":[2,83],"157":[2,83],"158":[2,83],"159":[2,83],"160":[2,83],"161":[2,83],"162":[2,83],"163":[2,83]},{"1":[2,84],"4":[2,84],"29":[2,84],"30":[2,84],"46":[2,84],"50":[2,84],"58":[2,84],"61":[2,84],"72":[2,84],"73":[2,84],"74":[2,84],"75":[2,84],"78":[2,84],"79":[2,84],"80":[2,84],"81":[2,84],"84":[2,84],"86":[2,84],"92":[2,84],"94":[2,84],"99":[2,84],"107":[2,84],"109":[2,84],"110":[2,84],"111":[2,84],"114":[2,84],"118":[2,84],"119":[2,84],"120":[2,84],"127":[2,84],"128":[2,84],"129":[2,84],"131":[2,84],"132":[2,84],"134":[2,84],"135":[2,84],"138":[2,84],"139":[2,84],"140":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84],"151":[2,84],"152":[2,84],"153":[2,84],"154":[2,84],"155":[2,84],"156":[2,84],"157":[2,84],"158":[2,84],"159":[2,84],"160":[2,84],"161":[2,84],"162":[2,84],"163":[2,84]},{"8":250,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"76":251,"78":[1,252],"80":[1,146],"81":[1,147]},{"76":253,"78":[1,252],"80":[1,146],"81":[1,147]},{"8":254,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,109],"4":[2,109],"29":[2,109],"30":[2,109],"50":[2,109],"58":[2,109],"61":[2,109],"72":[2,109],"73":[2,109],"74":[2,109],"75":[2,109],"78":[2,109],"79":[2,109],"80":[2,109],"81":[2,109],"84":[2,109],"92":[2,109],"94":[2,109],"99":[2,109],"107":[2,109],"109":[2,109],"110":[2,109],"111":[2,109],"114":[2,109],"118":[2,109],"119":[2,109],"120":[2,109],"127":[2,109],"128":[2,109],"129":[2,109],"131":[2,109],"132":[2,109],"134":[2,109],"135":[2,109],"138":[2,109],"139":[2,109],"140":[2,109],"141":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"147":[2,109],"148":[2,109],"149":[2,109],"150":[2,109],"151":[2,109],"152":[2,109],"153":[2,109],"154":[2,109],"155":[2,109],"156":[2,109],"157":[2,109],"158":[2,109],"159":[2,109],"160":[2,109],"161":[2,109],"162":[2,109],"163":[2,109]},{"1":[2,68],"4":[2,68],"29":[2,68],"30":[2,68],"46":[2,68],"50":[2,68],"58":[2,68],"61":[2,68],"72":[2,68],"73":[2,68],"74":[2,68],"75":[2,68],"78":[2,68],"79":[2,68],"80":[2,68],"81":[2,68],"84":[2,68],"86":[2,68],"92":[2,68],"94":[2,68],"99":[2,68],"107":[2,68],"109":[2,68],"110":[2,68],"111":[2,68],"114":[2,68],"118":[2,68],"119":[2,68],"120":[2,68],"127":[2,68],"128":[2,68],"129":[2,68],"131":[2,68],"132":[2,68],"134":[2,68],"135":[2,68],"138":[2,68],"139":[2,68],"140":[2,68],"141":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68],"162":[2,68],"163":[2,68]},{"1":[2,105],"4":[2,105],"29":[2,105],"30":[2,105],"50":[2,105],"58":[2,105],"61":[2,105],"63":150,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,105],"80":[1,146],"81":[1,147],"84":[2,105],"91":149,"92":[1,138],"94":[2,105],"99":[2,105],"107":[2,105],"109":[2,105],"110":[2,105],"111":[2,105],"114":[2,105],"118":[2,105],"119":[2,105],"120":[2,105],"127":[2,105],"128":[2,105],"129":[2,105],"131":[2,105],"132":[2,105],"134":[2,105],"135":[2,105],"138":[2,105],"139":[2,105],"140":[2,105],"141":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"148":[2,105],"149":[2,105],"150":[2,105],"151":[2,105],"152":[2,105],"153":[2,105],"154":[2,105],"155":[2,105],"156":[2,105],"157":[2,105],"158":[2,105],"159":[2,105],"160":[2,105],"161":[2,105],"162":[2,105],"163":[2,105]},{"1":[2,106],"4":[2,106],"29":[2,106],"30":[2,106],"50":[2,106],"58":[2,106],"61":[2,106],"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,106],"80":[1,146],"81":[1,147],"84":[2,106],"91":136,"92":[1,138],"94":[2,106],"99":[2,106],"107":[2,106],"109":[2,106],"110":[2,106],"111":[2,106],"114":[2,106],"118":[2,106],"119":[2,106],"120":[2,106],"127":[2,106],"128":[2,106],"129":[2,106],"131":[2,106],"132":[2,106],"134":[2,106],"135":[2,106],"138":[2,106],"139":[2,106],"140":[2,106],"141":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"148":[2,106],"149":[2,106],"150":[2,106],"151":[2,106],"152":[2,106],"153":[2,106],"154":[2,106],"155":[2,106],"156":[2,106],"157":[2,106],"158":[2,106],"159":[2,106],"160":[2,106],"161":[2,106],"162":[2,106],"163":[2,106]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"50":[2,73],"58":[2,73],"61":[2,73],"72":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"78":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"84":[2,73],"92":[2,73],"94":[2,73],"99":[2,73],"107":[2,73],"109":[2,73],"110":[2,73],"111":[2,73],"114":[2,73],"118":[2,73],"119":[2,73],"120":[2,73],"127":[2,73],"128":[2,73],"129":[2,73],"131":[2,73],"132":[2,73],"134":[2,73],"135":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"50":[2,70],"58":[2,70],"61":[2,70],"72":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"78":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"84":[2,70],"92":[2,70],"94":[2,70],"99":[2,70],"107":[2,70],"109":[2,70],"110":[2,70],"111":[2,70],"114":[2,70],"118":[2,70],"119":[2,70],"120":[2,70],"127":[2,70],"128":[2,70],"129":[2,70],"131":[2,70],"132":[2,70],"134":[2,70],"135":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70]},{"53":[1,255],"58":[1,256]},{"53":[2,61],"58":[2,61],"61":[1,257]},{"53":[2,63],"58":[2,63],"61":[2,63]},{"1":[2,55],"4":[2,55],"29":[2,55],"30":[2,55],"50":[2,55],"58":[2,55],"61":[2,55],"79":[2,55],"84":[2,55],"94":[2,55],"99":[2,55],"107":[2,55],"109":[2,55],"110":[2,55],"111":[2,55],"114":[2,55],"118":[2,55],"119":[2,55],"120":[2,55],"127":[2,55],"128":[2,55],"129":[2,55],"131":[2,55],"132":[2,55],"134":[2,55],"135":[2,55],"138":[2,55],"139":[2,55],"140":[2,55],"141":[2,55],"142":[2,55],"143":[2,55],"144":[2,55],"145":[2,55],"146":[2,55],"147":[2,55],"148":[2,55],"149":[2,55],"150":[2,55],"151":[2,55],"152":[2,55],"153":[2,55],"154":[2,55],"155":[2,55],"156":[2,55],"157":[2,55],"158":[2,55],"159":[2,55],"160":[2,55],"161":[2,55],"162":[2,55],"163":[2,55]},{"28":88,"49":[1,56]},{"1":[2,175],"4":[2,175],"29":[2,175],"30":[2,175],"50":[1,114],"58":[2,175],"61":[2,175],"79":[2,175],"84":[2,175],"94":[2,175],"99":[2,175],"107":[2,175],"108":129,"109":[2,175],"110":[2,175],"111":[2,175],"114":[2,175],"118":[2,175],"119":[2,175],"120":[2,175],"127":[2,175],"128":[2,175],"131":[2,175],"132":[2,175],"138":[2,175],"139":[2,175],"140":[2,175],"141":[2,175],"142":[2,175],"143":[2,175],"144":[2,175],"145":[2,175],"146":[2,175],"147":[2,175],"148":[2,175],"149":[2,175],"150":[2,175],"151":[2,175],"152":[2,175],"153":[2,175],"154":[2,175],"155":[2,175],"156":[2,175],"157":[2,175],"158":[2,175],"159":[2,175],"160":[2,175],"161":[2,175],"162":[2,175],"163":[2,175]},{"108":134,"109":[1,79],"111":[1,80],"114":[1,135],"127":[1,132],"128":[1,133]},{"1":[2,176],"4":[2,176],"29":[2,176],"30":[2,176],"50":[1,114],"58":[2,176],"61":[2,176],"79":[2,176],"84":[2,176],"94":[2,176],"99":[2,176],"107":[2,176],"108":129,"109":[2,176],"110":[2,176],"111":[2,176],"114":[2,176],"118":[2,176],"119":[2,176],"120":[2,176],"127":[2,176],"128":[2,176],"131":[2,176],"132":[2,176],"138":[2,176],"139":[2,176],"140":[2,176],"141":[2,176],"142":[2,176],"143":[2,176],"144":[2,176],"145":[2,176],"146":[2,176],"147":[2,176],"148":[2,176],"149":[2,176],"150":[2,176],"151":[2,176],"152":[2,176],"153":[2,176],"154":[2,176],"155":[2,176],"156":[2,176],"157":[2,176],"158":[2,176],"159":[2,176],"160":[2,176],"161":[2,176],"162":[2,176],"163":[2,176]},{"1":[2,177],"4":[2,177],"29":[2,177],"30":[2,177],"50":[1,114],"58":[2,177],"61":[2,177],"79":[2,177],"84":[2,177],"94":[2,177],"99":[2,177],"107":[2,177],"108":129,"109":[2,177],"110":[2,177],"111":[2,177],"114":[2,177],"118":[2,177],"119":[2,177],"120":[2,177],"127":[2,177],"128":[2,177],"131":[2,177],"132":[2,177],"138":[2,177],"139":[2,177],"140":[2,177],"141":[2,177],"142":[2,177],"143":[2,177],"144":[2,177],"145":[2,177],"146":[2,177],"147":[2,177],"148":[2,177],"149":[2,177],"150":[2,177],"151":[2,177],"152":[2,177],"153":[2,177],"154":[2,177],"155":[2,177],"156":[2,177],"157":[2,177],"158":[2,177],"159":[2,177],"160":[2,177],"161":[2,177],"162":[2,177],"163":[2,177]},{"1":[2,178],"4":[2,178],"29":[2,178],"30":[2,178],"50":[1,114],"58":[2,178],"61":[2,178],"79":[2,178],"84":[2,178],"94":[2,178],"99":[2,178],"107":[2,178],"108":129,"109":[2,178],"110":[2,178],"111":[2,178],"114":[2,178],"118":[2,178],"119":[2,178],"120":[2,178],"127":[2,178],"128":[2,178],"131":[2,178],"132":[2,178],"138":[2,178],"139":[2,178],"140":[2,178],"141":[2,178],"142":[2,178],"143":[2,178],"144":[2,178],"145":[2,178],"146":[2,178],"147":[2,178],"148":[2,178],"149":[2,178],"150":[2,178],"151":[2,178],"152":[2,178],"153":[2,178],"154":[2,178],"155":[2,178],"156":[2,178],"157":[2,178],"158":[2,178],"159":[2,178],"160":[2,178],"161":[2,178],"162":[2,178],"163":[2,178]},{"1":[2,179],"4":[2,179],"29":[2,179],"30":[2,179],"50":[1,114],"58":[2,179],"61":[2,179],"79":[2,179],"84":[2,179],"94":[2,179],"99":[2,179],"107":[2,179],"108":129,"109":[2,179],"110":[2,179],"111":[2,179],"114":[2,179],"118":[2,179],"119":[2,179],"120":[2,179],"127":[2,179],"128":[2,179],"131":[2,179],"132":[2,179],"138":[2,179],"139":[2,179],"140":[2,179],"141":[2,179],"142":[2,179],"143":[2,179],"144":[2,179],"145":[2,179],"146":[2,179],"147":[2,179],"148":[2,179],"149":[2,179],"150":[2,179],"151":[2,179],"152":[2,179],"153":[2,179],"154":[2,179],"155":[2,179],"156":[2,179],"157":[2,179],"158":[2,179],"159":[2,179],"160":[2,179],"161":[2,179],"162":[2,179],"163":[2,179]},{"1":[2,180],"4":[2,180],"29":[2,180],"30":[2,180],"50":[1,114],"58":[2,180],"61":[2,180],"79":[2,180],"84":[2,180],"94":[2,180],"99":[2,180],"107":[2,180],"108":129,"109":[2,180],"110":[2,180],"111":[2,180],"114":[2,180],"118":[2,180],"119":[2,180],"120":[2,180],"127":[2,180],"128":[2,180],"131":[2,180],"132":[2,180],"138":[2,180],"139":[2,180],"140":[2,180],"141":[2,180],"142":[2,180],"143":[2,180],"144":[2,180],"145":[2,180],"146":[2,180],"147":[2,180],"148":[2,180],"149":[2,180],"150":[2,180],"151":[2,180],"152":[2,180],"153":[2,180],"154":[2,180],"155":[2,180],"156":[2,180],"157":[2,180],"158":[2,180],"159":[2,180],"160":[2,180],"161":[2,180],"162":[2,180],"163":[2,180]},{"1":[2,181],"4":[2,181],"29":[2,181],"30":[2,181],"50":[1,114],"58":[2,181],"61":[2,181],"79":[2,181],"84":[2,181],"94":[2,181],"99":[2,181],"107":[2,181],"108":129,"109":[2,181],"110":[2,181],"111":[2,181],"114":[2,181],"118":[2,181],"119":[2,181],"120":[2,181],"127":[2,181],"128":[2,181],"131":[2,181],"132":[2,181],"138":[2,181],"139":[2,181],"140":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"148":[2,181],"149":[2,181],"150":[2,181],"151":[2,181],"152":[2,181],"153":[2,181],"154":[2,181],"155":[2,181],"156":[2,181],"157":[2,181],"158":[2,181],"159":[2,181],"160":[2,181],"161":[2,181],"162":[2,181],"163":[2,181]},{"1":[2,182],"4":[2,182],"29":[2,182],"30":[2,182],"50":[1,114],"58":[2,182],"61":[2,182],"79":[2,182],"84":[2,182],"94":[2,182],"99":[2,182],"107":[2,182],"108":129,"109":[2,182],"110":[2,182],"111":[2,182],"114":[2,182],"118":[2,182],"119":[2,182],"120":[2,182],"127":[2,182],"128":[2,182],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,182],"152":[2,182],"153":[2,182],"154":[2,182],"155":[2,182],"156":[2,182],"157":[2,182],"158":[2,182],"159":[2,182],"160":[2,182],"161":[2,182],"162":[2,182],"163":[1,123]},{"1":[2,183],"4":[2,183],"29":[2,183],"30":[2,183],"50":[1,114],"58":[2,183],"61":[2,183],"79":[2,183],"84":[2,183],"94":[2,183],"99":[2,183],"107":[2,183],"108":129,"109":[2,183],"110":[2,183],"111":[2,183],"114":[2,183],"118":[2,183],"119":[2,183],"120":[2,183],"127":[2,183],"128":[2,183],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,183],"152":[2,183],"153":[2,183],"154":[2,183],"155":[2,183],"156":[2,183],"157":[2,183],"158":[2,183],"159":[2,183],"160":[2,183],"161":[2,183],"162":[2,183],"163":[1,123]},{"4":[1,159],"6":259,"29":[1,6],"127":[1,258]},{"102":260,"103":[1,261],"104":[1,262]},{"1":[2,137],"4":[2,137],"29":[2,137],"30":[2,137],"50":[2,137],"58":[2,137],"61":[2,137],"79":[2,137],"84":[2,137],"94":[2,137],"99":[2,137],"107":[2,137],"109":[2,137],"110":[2,137],"111":[2,137],"114":[2,137],"118":[2,137],"119":[2,137],"120":[2,137],"127":[2,137],"128":[2,137],"129":[2,137],"131":[2,137],"132":[2,137],"134":[2,137],"135":[2,137],"138":[2,137],"139":[2,137],"140":[2,137],"141":[2,137],"142":[2,137],"143":[2,137],"144":[2,137],"145":[2,137],"146":[2,137],"147":[2,137],"148":[2,137],"149":[2,137],"150":[2,137],"151":[2,137],"152":[2,137],"153":[2,137],"154":[2,137],"155":[2,137],"156":[2,137],"157":[2,137],"158":[2,137],"159":[2,137],"160":[2,137],"161":[2,137],"162":[2,137],"163":[2,137]},{"116":263,"118":[1,264],"119":[1,265]},{"58":[1,266],"118":[2,149],"119":[2,149]},{"58":[2,146],"118":[2,146],"119":[2,146]},{"58":[2,147],"118":[2,147],"119":[2,147]},{"58":[2,148],"118":[2,148],"119":[2,148]},{"4":[2,120],"8":246,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":189,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,120],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"29":[1,267],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"122":268,"124":269,"125":[1,270]},{"14":271,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":153,"62":154,"64":184,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,94],"4":[2,94],"29":[1,273],"30":[2,94],"50":[2,94],"58":[2,94],"61":[2,94],"72":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"78":[2,70],"79":[2,94],"80":[2,70],"81":[2,70],"84":[2,94],"86":[1,272],"92":[2,70],"94":[2,94],"99":[2,94],"107":[2,94],"109":[2,94],"110":[2,94],"111":[2,94],"114":[2,94],"118":[2,94],"119":[2,94],"120":[2,94],"127":[2,94],"128":[2,94],"129":[2,94],"131":[2,94],"132":[2,94],"134":[2,94],"135":[2,94],"138":[2,94],"139":[2,94],"140":[2,94],"141":[2,94],"142":[2,94],"143":[2,94],"144":[2,94],"145":[2,94],"146":[2,94],"147":[2,94],"148":[2,94],"149":[2,94],"150":[2,94],"151":[2,94],"152":[2,94],"153":[2,94],"154":[2,94],"155":[2,94],"156":[2,94],"157":[2,94],"158":[2,94],"159":[2,94],"160":[2,94],"161":[2,94],"162":[2,94],"163":[2,94]},{"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"80":[1,146],"81":[1,147],"91":136,"92":[1,138]},{"63":150,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"80":[1,146],"81":[1,147],"91":149,"92":[1,138]},{"1":[2,50],"4":[2,50],"30":[2,50],"50":[1,114],"61":[1,131],"107":[2,50],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[2,50],"128":[2,50],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,131],"4":[2,131],"30":[2,131],"50":[1,114],"61":[1,131],"107":[2,131],"108":129,"109":[2,131],"111":[2,131],"114":[2,131],"118":[1,124],"119":[1,125],"127":[2,131],"128":[2,131],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"107":[1,274]},{"4":[2,121],"29":[2,121],"50":[1,114],"58":[2,121],"61":[1,275],"99":[2,121],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,58],"29":[2,58],"57":276,"58":[1,277],"99":[2,58]},{"1":[2,114],"4":[2,114],"29":[2,114],"30":[2,114],"46":[2,114],"50":[2,114],"58":[2,114],"61":[2,114],"72":[2,114],"73":[2,114],"74":[2,114],"75":[2,114],"78":[2,114],"79":[2,114],"80":[2,114],"81":[2,114],"84":[2,114],"86":[2,114],"92":[2,114],"94":[2,114],"99":[2,114],"107":[2,114],"109":[2,114],"110":[2,114],"111":[2,114],"114":[2,114],"118":[2,114],"119":[2,114],"120":[2,114],"127":[2,114],"128":[2,114],"129":[2,114],"131":[2,114],"132":[2,114],"134":[2,114],"135":[2,114],"138":[2,114],"139":[2,114],"140":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"147":[2,114],"148":[2,114],"149":[2,114],"150":[2,114],"151":[2,114],"152":[2,114],"153":[2,114],"154":[2,114],"155":[2,114],"156":[2,114],"157":[2,114],"158":[2,114],"159":[2,114],"160":[2,114],"161":[2,114],"162":[2,114],"163":[2,114]},{"1":[2,111],"4":[2,111],"29":[2,111],"30":[2,111],"50":[2,111],"58":[2,111],"61":[2,111],"79":[2,111],"84":[2,111],"94":[2,111],"99":[2,111],"107":[2,111],"109":[2,111],"110":[2,111],"111":[2,111],"114":[2,111],"118":[2,111],"119":[2,111],"120":[2,111],"127":[2,111],"128":[2,111],"129":[2,111],"131":[2,111],"132":[2,111],"134":[2,111],"135":[2,111],"138":[2,111],"139":[2,111],"140":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"147":[2,111],"148":[2,111],"149":[2,111],"150":[2,111],"151":[2,111],"152":[2,111],"153":[2,111],"154":[2,111],"155":[2,111],"156":[2,111],"157":[2,111],"158":[2,111],"159":[2,111],"160":[2,111],"161":[2,111],"162":[2,111],"163":[2,111]},{"4":[1,159],"6":278,"29":[1,6],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,159],"6":279,"29":[1,6],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,133],"4":[2,133],"29":[2,133],"30":[2,133],"50":[1,114],"58":[2,133],"61":[1,131],"79":[2,133],"84":[2,133],"94":[2,133],"99":[2,133],"107":[2,133],"108":129,"109":[1,79],"110":[1,280],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,133],"127":[2,133],"128":[2,133],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,135],"4":[2,135],"29":[2,135],"30":[2,135],"50":[1,114],"58":[2,135],"61":[1,131],"79":[2,135],"84":[2,135],"94":[2,135],"99":[2,135],"107":[2,135],"108":129,"109":[1,79],"110":[1,281],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,135],"127":[2,135],"128":[2,135],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,141],"4":[2,141],"29":[2,141],"30":[2,141],"50":[2,141],"58":[2,141],"61":[2,141],"79":[2,141],"84":[2,141],"94":[2,141],"99":[2,141],"107":[2,141],"109":[2,141],"110":[2,141],"111":[2,141],"114":[2,141],"118":[2,141],"119":[2,141],"120":[2,141],"127":[2,141],"128":[2,141],"129":[2,141],"131":[2,141],"132":[2,141],"134":[2,141],"135":[2,141],"138":[2,141],"139":[2,141],"140":[2,141],"141":[2,141],"142":[2,141],"143":[2,141],"144":[2,141],"145":[2,141],"146":[2,141],"147":[2,141],"148":[2,141],"149":[2,141],"150":[2,141],"151":[2,141],"152":[2,141],"153":[2,141],"154":[2,141],"155":[2,141],"156":[2,141],"157":[2,141],"158":[2,141],"159":[2,141],"160":[2,141],"161":[2,141],"162":[2,141],"163":[2,141]},{"1":[2,142],"4":[2,142],"29":[2,142],"30":[2,142],"50":[1,114],"58":[2,142],"61":[1,131],"79":[2,142],"84":[2,142],"94":[2,142],"99":[2,142],"107":[2,142],"108":129,"109":[1,79],"110":[2,142],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,142],"127":[2,142],"128":[2,142],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,58],"29":[2,58],"57":282,"58":[1,283],"84":[2,58]},{"4":[2,90],"29":[2,90],"30":[2,90],"58":[2,90],"84":[2,90]},{"4":[2,45],"29":[2,45],"30":[2,45],"46":[1,284],"58":[2,45],"84":[2,45]},{"4":[2,46],"29":[2,46],"30":[2,46],"46":[1,285],"58":[2,46],"84":[2,46]},{"4":[2,49],"29":[2,49],"30":[2,49],"58":[2,49],"84":[2,49]},{"1":[2,6],"4":[2,6],"30":[2,6]},{"1":[2,29],"4":[2,29],"29":[2,29],"30":[2,29],"50":[2,29],"58":[2,29],"61":[2,29],"79":[2,29],"84":[2,29],"94":[2,29],"99":[2,29],"103":[2,29],"104":[2,29],"107":[2,29],"109":[2,29],"110":[2,29],"111":[2,29],"114":[2,29],"118":[2,29],"119":[2,29],"120":[2,29],"123":[2,29],"125":[2,29],"127":[2,29],"128":[2,29],"129":[2,29],"131":[2,29],"132":[2,29],"134":[2,29],"135":[2,29],"138":[2,29],"139":[2,29],"140":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"148":[2,29],"149":[2,29],"150":[2,29],"151":[2,29],"152":[2,29],"153":[2,29],"154":[2,29],"155":[2,29],"156":[2,29],"157":[2,29],"158":[2,29],"159":[2,29],"160":[2,29],"161":[2,29],"162":[2,29],"163":[2,29]},{"1":[2,186],"4":[2,186],"29":[2,186],"30":[2,186],"50":[1,114],"58":[2,186],"61":[2,186],"79":[2,186],"84":[2,186],"94":[2,186],"99":[2,186],"107":[2,186],"108":129,"109":[2,186],"110":[2,186],"111":[2,186],"114":[2,186],"118":[2,186],"119":[2,186],"120":[2,186],"127":[2,186],"128":[2,186],"129":[1,126],"131":[2,186],"132":[2,186],"134":[1,93],"135":[1,94],"138":[2,186],"139":[2,186],"140":[2,186],"141":[2,186],"142":[2,186],"143":[2,186],"144":[2,186],"145":[2,186],"146":[2,186],"147":[2,186],"148":[2,186],"149":[2,186],"150":[2,186],"151":[2,186],"152":[2,186],"153":[2,186],"154":[2,186],"155":[2,186],"156":[2,186],"157":[2,186],"158":[2,186],"159":[2,186],"160":[2,186],"161":[2,186],"162":[2,186],"163":[2,186]},{"1":[2,187],"4":[2,187],"29":[2,187],"30":[2,187],"50":[1,114],"58":[2,187],"61":[2,187],"79":[2,187],"84":[2,187],"94":[2,187],"99":[2,187],"107":[2,187],"108":129,"109":[2,187],"110":[2,187],"111":[2,187],"114":[2,187],"118":[2,187],"119":[2,187],"120":[2,187],"127":[2,187],"128":[2,187],"129":[1,126],"131":[2,187],"132":[2,187],"134":[1,93],"135":[1,94],"138":[2,187],"139":[2,187],"140":[2,187],"141":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"146":[2,187],"147":[2,187],"148":[2,187],"149":[2,187],"150":[2,187],"151":[2,187],"152":[2,187],"153":[2,187],"154":[2,187],"155":[2,187],"156":[2,187],"157":[2,187],"158":[2,187],"159":[2,187],"160":[2,187],"161":[2,187],"162":[2,187],"163":[2,187]},{"1":[2,188],"4":[2,188],"29":[2,188],"30":[2,188],"50":[1,114],"58":[2,188],"61":[2,188],"79":[2,188],"84":[2,188],"94":[2,188],"99":[2,188],"107":[2,188],"108":129,"109":[2,188],"110":[2,188],"111":[2,188],"114":[2,188],"118":[2,188],"119":[2,188],"120":[2,188],"127":[2,188],"128":[2,188],"129":[1,126],"131":[2,188],"132":[2,188],"134":[1,93],"135":[1,94],"138":[2,188],"139":[2,188],"140":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"147":[2,188],"148":[2,188],"149":[2,188],"150":[2,188],"151":[2,188],"152":[2,188],"153":[2,188],"154":[2,188],"155":[2,188],"156":[2,188],"157":[2,188],"158":[2,188],"159":[2,188],"160":[2,188],"161":[2,188],"162":[2,188],"163":[2,188]},{"1":[2,189],"4":[2,189],"29":[2,189],"30":[2,189],"50":[1,114],"58":[2,189],"61":[2,189],"79":[2,189],"84":[2,189],"94":[2,189],"99":[2,189],"107":[2,189],"108":129,"109":[2,189],"110":[2,189],"111":[2,189],"114":[2,189],"118":[2,189],"119":[2,189],"120":[2,189],"127":[2,189],"128":[2,189],"129":[1,126],"131":[2,189],"132":[2,189],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"148":[2,189],"149":[2,189],"150":[2,189],"151":[2,189],"152":[2,189],"153":[2,189],"154":[2,189],"155":[2,189],"156":[2,189],"157":[2,189],"158":[2,189],"159":[2,189],"160":[2,189],"161":[2,189],"162":[2,189],"163":[2,189]},{"1":[2,190],"4":[2,190],"29":[2,190],"30":[2,190],"50":[1,114],"58":[2,190],"61":[2,190],"79":[2,190],"84":[2,190],"94":[2,190],"99":[2,190],"107":[2,190],"108":129,"109":[2,190],"110":[2,190],"111":[2,190],"114":[2,190],"118":[2,190],"119":[2,190],"120":[2,190],"127":[2,190],"128":[2,190],"129":[1,126],"131":[2,190],"132":[2,190],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,190],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"148":[2,190],"149":[2,190],"150":[2,190],"151":[2,190],"152":[2,190],"153":[2,190],"154":[2,190],"155":[2,190],"156":[2,190],"157":[2,190],"158":[2,190],"159":[2,190],"160":[2,190],"161":[2,190],"162":[2,190],"163":[2,190]},{"1":[2,191],"4":[2,191],"29":[2,191],"30":[2,191],"50":[1,114],"58":[2,191],"61":[2,191],"79":[2,191],"84":[2,191],"94":[2,191],"99":[2,191],"107":[2,191],"108":129,"109":[2,191],"110":[2,191],"111":[2,191],"114":[2,191],"118":[2,191],"119":[2,191],"120":[2,191],"127":[2,191],"128":[2,191],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,191],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"148":[2,191],"149":[2,191],"150":[2,191],"151":[2,191],"152":[2,191],"153":[2,191],"154":[2,191],"155":[2,191],"156":[2,191],"157":[2,191],"158":[2,191],"159":[2,191],"160":[2,191],"161":[2,191],"162":[2,191],"163":[2,191]},{"1":[2,192],"4":[2,192],"29":[2,192],"30":[2,192],"50":[1,114],"58":[2,192],"61":[2,192],"79":[2,192],"84":[2,192],"94":[2,192],"99":[2,192],"107":[2,192],"108":129,"109":[2,192],"110":[2,192],"111":[2,192],"114":[2,192],"118":[2,192],"119":[2,192],"120":[2,192],"127":[2,192],"128":[2,192],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,192],"142":[2,192],"143":[2,192],"144":[2,192],"145":[2,192],"146":[2,192],"147":[2,192],"148":[2,192],"149":[2,192],"150":[2,192],"151":[2,192],"152":[2,192],"153":[2,192],"154":[2,192],"155":[2,192],"156":[2,192],"157":[2,192],"158":[2,192],"159":[2,192],"160":[2,192],"161":[2,192],"162":[2,192],"163":[2,192]},{"1":[2,193],"4":[2,193],"29":[2,193],"30":[2,193],"50":[1,114],"58":[2,193],"61":[2,193],"79":[2,193],"84":[2,193],"94":[2,193],"99":[2,193],"107":[2,193],"108":129,"109":[2,193],"110":[2,193],"111":[2,193],"114":[2,193],"118":[2,193],"119":[2,193],"120":[2,193],"127":[2,193],"128":[2,193],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,193],"142":[2,193],"143":[2,193],"144":[2,193],"145":[2,193],"146":[2,193],"147":[2,193],"148":[2,193],"149":[2,193],"150":[2,193],"151":[2,193],"152":[2,193],"153":[2,193],"154":[2,193],"155":[2,193],"156":[2,193],"157":[2,193],"158":[2,193],"159":[2,193],"160":[2,193],"161":[2,193],"162":[2,193],"163":[2,193]},{"1":[2,194],"4":[2,194],"29":[2,194],"30":[2,194],"50":[1,114],"58":[2,194],"61":[2,194],"79":[2,194],"84":[2,194],"94":[2,194],"99":[2,194],"107":[2,194],"108":129,"109":[2,194],"110":[2,194],"111":[2,194],"114":[2,194],"118":[2,194],"119":[2,194],"120":[2,194],"127":[2,194],"128":[2,194],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[2,194],"145":[2,194],"146":[2,194],"147":[2,194],"148":[2,194],"149":[2,194],"150":[2,194],"151":[2,194],"152":[2,194],"153":[2,194],"154":[2,194],"155":[2,194],"156":[2,194],"157":[2,194],"158":[2,194],"159":[2,194],"160":[2,194],"161":[2,194],"162":[2,194],"163":[2,194]},{"1":[2,195],"4":[2,195],"29":[2,195],"30":[2,195],"50":[1,114],"58":[2,195],"61":[2,195],"79":[2,195],"84":[2,195],"94":[2,195],"99":[2,195],"107":[2,195],"108":129,"109":[2,195],"110":[2,195],"111":[2,195],"114":[2,195],"118":[2,195],"119":[2,195],"120":[2,195],"127":[2,195],"128":[2,195],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[2,195],"145":[2,195],"146":[2,195],"147":[2,195],"148":[2,195],"149":[2,195],"150":[2,195],"151":[2,195],"152":[2,195],"153":[2,195],"154":[2,195],"155":[2,195],"156":[2,195],"157":[2,195],"158":[2,195],"159":[2,195],"160":[2,195],"161":[2,195],"162":[2,195],"163":[2,195]},{"1":[2,196],"4":[2,196],"29":[2,196],"30":[2,196],"50":[1,114],"58":[2,196],"61":[2,196],"79":[2,196],"84":[2,196],"94":[2,196],"99":[2,196],"107":[2,196],"108":129,"109":[2,196],"110":[2,196],"111":[2,196],"114":[2,196],"118":[2,196],"119":[2,196],"120":[2,196],"127":[2,196],"128":[2,196],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[2,196],"145":[2,196],"146":[2,196],"147":[2,196],"148":[2,196],"149":[2,196],"150":[2,196],"151":[2,196],"152":[2,196],"153":[2,196],"154":[2,196],"155":[2,196],"156":[2,196],"157":[2,196],"158":[2,196],"159":[2,196],"160":[2,196],"161":[2,196],"162":[2,196],"163":[2,196]},{"1":[2,197],"4":[2,197],"29":[2,197],"30":[2,197],"50":[1,114],"58":[2,197],"61":[2,197],"79":[2,197],"84":[2,197],"94":[2,197],"99":[2,197],"107":[2,197],"108":129,"109":[2,197],"110":[2,197],"111":[2,197],"114":[2,197],"118":[2,197],"119":[2,197],"120":[2,197],"127":[2,197],"128":[2,197],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,197],"148":[2,197],"149":[2,197],"150":[2,197],"151":[2,197],"152":[2,197],"153":[2,197],"154":[2,197],"155":[2,197],"156":[2,197],"157":[2,197],"158":[2,197],"159":[2,197],"160":[2,197],"161":[2,197],"162":[2,197],"163":[2,197]},{"1":[2,198],"4":[2,198],"29":[2,198],"30":[2,198],"50":[1,114],"58":[2,198],"61":[2,198],"79":[2,198],"84":[2,198],"94":[2,198],"99":[2,198],"107":[2,198],"108":129,"109":[2,198],"110":[2,198],"111":[2,198],"114":[2,198],"118":[2,198],"119":[2,198],"120":[2,198],"127":[2,198],"128":[2,198],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,198],"148":[2,198],"149":[2,198],"150":[2,198],"151":[2,198],"152":[2,198],"153":[2,198],"154":[2,198],"155":[2,198],"156":[2,198],"157":[2,198],"158":[2,198],"159":[2,198],"160":[2,198],"161":[2,198],"162":[2,198],"163":[2,198]},{"1":[2,199],"4":[2,199],"29":[2,199],"30":[2,199],"50":[1,114],"58":[2,199],"61":[2,199],"79":[2,199],"84":[2,199],"94":[2,199],"99":[2,199],"107":[2,199],"108":129,"109":[2,199],"110":[2,199],"111":[2,199],"114":[2,199],"118":[2,199],"119":[2,199],"120":[2,199],"127":[2,199],"128":[2,199],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,199],"148":[2,199],"149":[2,199],"150":[2,199],"151":[2,199],"152":[2,199],"153":[2,199],"154":[2,199],"155":[2,199],"156":[2,199],"157":[2,199],"158":[2,199],"159":[2,199],"160":[2,199],"161":[2,199],"162":[2,199],"163":[2,199]},{"1":[2,200],"4":[2,200],"29":[2,200],"30":[2,200],"50":[1,114],"58":[2,200],"61":[2,200],"79":[2,200],"84":[2,200],"94":[2,200],"99":[2,200],"107":[2,200],"108":129,"109":[2,200],"110":[2,200],"111":[2,200],"114":[2,200],"118":[2,200],"119":[2,200],"120":[2,200],"127":[2,200],"128":[2,200],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,200],"148":[2,200],"149":[2,200],"150":[2,200],"151":[2,200],"152":[2,200],"153":[2,200],"154":[2,200],"155":[2,200],"156":[2,200],"157":[2,200],"158":[2,200],"159":[2,200],"160":[2,200],"161":[2,200],"162":[2,200],"163":[2,200]},{"1":[2,201],"4":[2,201],"29":[2,201],"30":[2,201],"50":[1,114],"58":[2,201],"61":[2,201],"79":[2,201],"84":[2,201],"94":[2,201],"99":[2,201],"107":[2,201],"108":129,"109":[2,201],"110":[2,201],"111":[2,201],"114":[2,201],"118":[2,201],"119":[2,201],"120":[2,201],"127":[2,201],"128":[2,201],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,201],"152":[2,201],"153":[2,201],"154":[2,201],"155":[2,201],"156":[2,201],"157":[2,201],"158":[2,201],"159":[2,201],"160":[2,201],"161":[2,201],"162":[2,201],"163":[1,123]},{"1":[2,202],"4":[2,202],"29":[2,202],"30":[2,202],"50":[1,114],"58":[2,202],"61":[2,202],"79":[2,202],"84":[2,202],"94":[2,202],"99":[2,202],"107":[2,202],"108":129,"109":[2,202],"110":[2,202],"111":[2,202],"114":[2,202],"118":[2,202],"119":[2,202],"120":[2,202],"127":[2,202],"128":[2,202],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,202],"152":[2,202],"153":[2,202],"154":[2,202],"155":[2,202],"156":[2,202],"157":[2,202],"158":[2,202],"159":[2,202],"160":[2,202],"161":[2,202],"162":[2,202],"163":[1,123]},{"1":[2,203],"4":[2,203],"29":[2,203],"30":[2,203],"50":[1,114],"58":[2,203],"61":[2,203],"79":[2,203],"84":[2,203],"94":[2,203],"99":[2,203],"107":[2,203],"108":129,"109":[2,203],"110":[2,203],"111":[2,203],"114":[2,203],"118":[2,203],"119":[2,203],"120":[2,203],"127":[2,203],"128":[2,203],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[2,203],"154":[2,203],"155":[2,203],"156":[2,203],"157":[2,203],"158":[2,203],"159":[2,203],"160":[2,203],"161":[2,203],"162":[2,203],"163":[1,123]},{"1":[2,204],"4":[2,204],"29":[2,204],"30":[2,204],"50":[1,114],"58":[2,204],"61":[2,204],"79":[2,204],"84":[2,204],"94":[2,204],"99":[2,204],"107":[2,204],"108":129,"109":[2,204],"110":[2,204],"111":[2,204],"114":[2,204],"118":[2,204],"119":[2,204],"120":[2,204],"127":[2,204],"128":[2,204],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[2,204],"154":[2,204],"155":[2,204],"156":[2,204],"157":[2,204],"158":[2,204],"159":[2,204],"160":[2,204],"161":[2,204],"162":[2,204],"163":[1,123]},{"1":[2,205],"4":[2,205],"29":[2,205],"30":[2,205],"50":[2,205],"58":[2,205],"61":[2,205],"79":[2,205],"84":[2,205],"94":[2,205],"99":[2,205],"107":[2,205],"108":129,"109":[2,205],"110":[2,205],"111":[2,205],"114":[2,205],"118":[2,205],"119":[2,205],"120":[2,205],"127":[2,205],"128":[2,205],"129":[2,205],"131":[2,205],"132":[2,205],"134":[2,205],"135":[2,205],"138":[2,205],"139":[2,205],"140":[2,205],"141":[2,205],"142":[2,205],"143":[2,205],"144":[2,205],"145":[2,205],"146":[2,205],"147":[2,205],"148":[2,205],"149":[2,205],"150":[2,205],"151":[2,205],"152":[2,205],"153":[2,205],"154":[2,205],"155":[2,205],"156":[2,205],"157":[2,205],"158":[2,205],"159":[2,205],"160":[2,205],"161":[2,205],"162":[2,205],"163":[2,205]},{"1":[2,206],"4":[2,206],"29":[2,206],"30":[2,206],"50":[1,114],"58":[2,206],"61":[2,206],"79":[2,206],"84":[2,206],"94":[2,206],"99":[2,206],"107":[2,206],"108":129,"109":[2,206],"110":[2,206],"111":[2,206],"114":[2,206],"118":[2,206],"119":[2,206],"120":[2,206],"127":[2,206],"128":[2,206],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,207],"4":[2,207],"29":[2,207],"30":[2,207],"50":[1,114],"58":[2,207],"61":[2,207],"79":[2,207],"84":[2,207],"94":[2,207],"99":[2,207],"107":[2,207],"108":129,"109":[2,207],"110":[2,207],"111":[2,207],"114":[2,207],"118":[2,207],"119":[2,207],"120":[2,207],"127":[2,207],"128":[2,207],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,208],"4":[2,208],"29":[2,208],"30":[2,208],"50":[1,114],"58":[2,208],"61":[2,208],"79":[2,208],"84":[2,208],"94":[2,208],"99":[2,208],"107":[2,208],"108":129,"109":[2,208],"110":[2,208],"111":[2,208],"114":[2,208],"118":[2,208],"119":[2,208],"120":[2,208],"127":[2,208],"128":[2,208],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,209],"4":[2,209],"29":[2,209],"30":[2,209],"50":[1,114],"58":[2,209],"61":[2,209],"79":[2,209],"84":[2,209],"94":[2,209],"99":[2,209],"107":[2,209],"108":129,"109":[2,209],"110":[2,209],"111":[2,209],"114":[2,209],"118":[2,209],"119":[2,209],"120":[2,209],"127":[2,209],"128":[2,209],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,210],"4":[2,210],"29":[2,210],"30":[2,210],"50":[1,114],"58":[2,210],"61":[2,210],"79":[2,210],"84":[2,210],"94":[2,210],"99":[2,210],"107":[2,210],"108":129,"109":[2,210],"110":[2,210],"111":[2,210],"114":[2,210],"118":[2,210],"119":[2,210],"120":[2,210],"127":[2,210],"128":[2,210],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,211],"4":[2,211],"29":[2,211],"30":[2,211],"50":[1,114],"58":[2,211],"61":[2,211],"79":[2,211],"84":[2,211],"94":[2,211],"99":[2,211],"107":[2,211],"108":129,"109":[2,211],"110":[2,211],"111":[2,211],"114":[2,211],"118":[2,211],"119":[2,211],"120":[2,211],"127":[2,211],"128":[2,211],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,212],"4":[2,212],"29":[2,212],"30":[2,212],"50":[1,114],"58":[2,212],"61":[2,212],"79":[2,212],"84":[2,212],"94":[2,212],"99":[2,212],"107":[2,212],"108":129,"109":[2,212],"110":[2,212],"111":[2,212],"114":[2,212],"118":[2,212],"119":[2,212],"120":[2,212],"127":[2,212],"128":[2,212],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,213],"4":[2,213],"29":[2,213],"30":[2,213],"50":[1,114],"58":[2,213],"61":[2,213],"79":[2,213],"84":[2,213],"94":[2,213],"99":[2,213],"107":[2,213],"108":129,"109":[2,213],"110":[2,213],"111":[2,213],"114":[2,213],"118":[2,213],"119":[2,213],"120":[2,213],"127":[2,213],"128":[2,213],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,214],"4":[2,214],"29":[2,214],"30":[2,214],"50":[1,114],"58":[2,214],"61":[2,214],"79":[2,214],"84":[2,214],"94":[2,214],"99":[2,214],"107":[2,214],"108":129,"109":[2,214],"110":[2,214],"111":[2,214],"114":[2,214],"118":[2,214],"119":[2,214],"120":[2,214],"127":[2,214],"128":[2,214],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,214],"152":[2,214],"153":[2,214],"154":[2,214],"155":[2,214],"156":[2,214],"157":[2,214],"158":[2,214],"159":[2,214],"160":[2,214],"161":[2,214],"162":[2,214],"163":[1,123]},{"1":[2,215],"4":[2,215],"29":[2,215],"30":[2,215],"50":[1,114],"58":[2,215],"61":[1,131],"79":[2,215],"84":[2,215],"94":[2,215],"99":[2,215],"107":[2,215],"108":129,"109":[2,215],"110":[2,215],"111":[2,215],"114":[2,215],"118":[1,124],"119":[1,125],"120":[2,215],"127":[2,215],"128":[2,215],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,216],"4":[2,216],"29":[2,216],"30":[2,216],"50":[1,114],"58":[2,216],"61":[1,131],"79":[2,216],"84":[2,216],"94":[2,216],"99":[2,216],"107":[2,216],"108":129,"109":[2,216],"110":[2,216],"111":[2,216],"114":[2,216],"118":[1,124],"119":[1,125],"120":[2,216],"127":[2,216],"128":[2,216],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"8":286,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":287,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,172],"4":[2,172],"29":[2,172],"30":[2,172],"50":[1,114],"58":[2,172],"61":[1,131],"79":[2,172],"84":[2,172],"94":[2,172],"99":[2,172],"107":[2,172],"108":129,"109":[1,79],"110":[2,172],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,172],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,174],"4":[2,174],"29":[2,174],"30":[2,174],"50":[1,114],"58":[2,174],"61":[1,131],"79":[2,174],"84":[2,174],"94":[2,174],"99":[2,174],"107":[2,174],"108":129,"109":[1,79],"110":[2,174],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,174],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"116":288,"118":[1,264],"119":[1,265]},{"61":[1,289]},{"1":[2,171],"4":[2,171],"29":[2,171],"30":[2,171],"50":[1,114],"58":[2,171],"61":[1,131],"79":[2,171],"84":[2,171],"94":[2,171],"99":[2,171],"107":[2,171],"108":129,"109":[1,79],"110":[2,171],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,171],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,173],"4":[2,173],"29":[2,173],"30":[2,173],"50":[1,114],"58":[2,173],"61":[1,131],"79":[2,173],"84":[2,173],"94":[2,173],"99":[2,173],"107":[2,173],"108":129,"109":[1,79],"110":[2,173],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,173],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"116":290,"118":[1,264],"119":[1,265]},{"4":[2,58],"29":[2,58],"57":291,"58":[1,277],"94":[2,58]},{"4":[2,121],"29":[2,121],"30":[2,121],"50":[1,114],"58":[2,121],"61":[1,131],"94":[2,121],"99":[2,121],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,79],"4":[2,79],"29":[2,79],"30":[2,79],"46":[2,79],"50":[2,79],"58":[2,79],"61":[2,79],"72":[2,79],"73":[2,79],"74":[2,79],"75":[2,79],"78":[2,79],"79":[2,79],"80":[2,79],"81":[2,79],"84":[2,79],"86":[2,79],"92":[2,79],"94":[2,79],"99":[2,79],"107":[2,79],"109":[2,79],"110":[2,79],"111":[2,79],"114":[2,79],"118":[2,79],"119":[2,79],"120":[2,79],"127":[2,79],"128":[2,79],"129":[2,79],"131":[2,79],"132":[2,79],"134":[2,79],"135":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79],"151":[2,79],"152":[2,79],"153":[2,79],"154":[2,79],"155":[2,79],"156":[2,79],"157":[2,79],"158":[2,79],"159":[2,79],"160":[2,79],"161":[2,79],"162":[2,79],"163":[2,79]},{"1":[2,80],"4":[2,80],"29":[2,80],"30":[2,80],"46":[2,80],"50":[2,80],"58":[2,80],"61":[2,80],"72":[2,80],"73":[2,80],"74":[2,80],"75":[2,80],"78":[2,80],"79":[2,80],"80":[2,80],"81":[2,80],"84":[2,80],"86":[2,80],"92":[2,80],"94":[2,80],"99":[2,80],"107":[2,80],"109":[2,80],"110":[2,80],"111":[2,80],"114":[2,80],"118":[2,80],"119":[2,80],"120":[2,80],"127":[2,80],"128":[2,80],"129":[2,80],"131":[2,80],"132":[2,80],"134":[2,80],"135":[2,80],"138":[2,80],"139":[2,80],"140":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80],"151":[2,80],"152":[2,80],"153":[2,80],"154":[2,80],"155":[2,80],"156":[2,80],"157":[2,80],"158":[2,80],"159":[2,80],"160":[2,80],"161":[2,80],"162":[2,80],"163":[2,80]},{"1":[2,82],"4":[2,82],"29":[2,82],"30":[2,82],"46":[2,82],"50":[2,82],"58":[2,82],"61":[2,82],"72":[2,82],"73":[2,82],"74":[2,82],"75":[2,82],"78":[2,82],"79":[2,82],"80":[2,82],"81":[2,82],"84":[2,82],"86":[2,82],"92":[2,82],"94":[2,82],"99":[2,82],"107":[2,82],"109":[2,82],"110":[2,82],"111":[2,82],"114":[2,82],"118":[2,82],"119":[2,82],"120":[2,82],"127":[2,82],"128":[2,82],"129":[2,82],"131":[2,82],"132":[2,82],"134":[2,82],"135":[2,82],"138":[2,82],"139":[2,82],"140":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82],"151":[2,82],"152":[2,82],"153":[2,82],"154":[2,82],"155":[2,82],"156":[2,82],"157":[2,82],"158":[2,82],"159":[2,82],"160":[2,82],"161":[2,82],"162":[2,82],"163":[2,82]},{"50":[1,114],"61":[1,293],"79":[1,292],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,86],"4":[2,86],"29":[2,86],"30":[2,86],"46":[2,86],"50":[2,86],"58":[2,86],"61":[2,86],"72":[2,86],"73":[2,86],"74":[2,86],"75":[2,86],"78":[2,86],"79":[2,86],"80":[2,86],"81":[2,86],"84":[2,86],"86":[2,86],"92":[2,86],"94":[2,86],"99":[2,86],"107":[2,86],"109":[2,86],"110":[2,86],"111":[2,86],"114":[2,86],"118":[2,86],"119":[2,86],"120":[2,86],"127":[2,86],"128":[2,86],"129":[2,86],"131":[2,86],"132":[2,86],"134":[2,86],"135":[2,86],"138":[2,86],"139":[2,86],"140":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"148":[2,86],"149":[2,86],"150":[2,86],"151":[2,86],"152":[2,86],"153":[2,86],"154":[2,86],"155":[2,86],"156":[2,86],"157":[2,86],"158":[2,86],"159":[2,86],"160":[2,86],"161":[2,86],"162":[2,86],"163":[2,86]},{"8":294,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,87],"4":[2,87],"29":[2,87],"30":[2,87],"46":[2,87],"50":[2,87],"58":[2,87],"61":[2,87],"72":[2,87],"73":[2,87],"74":[2,87],"75":[2,87],"78":[2,87],"79":[2,87],"80":[2,87],"81":[2,87],"84":[2,87],"86":[2,87],"92":[2,87],"94":[2,87],"99":[2,87],"107":[2,87],"109":[2,87],"110":[2,87],"111":[2,87],"114":[2,87],"118":[2,87],"119":[2,87],"120":[2,87],"127":[2,87],"128":[2,87],"129":[2,87],"131":[2,87],"132":[2,87],"134":[2,87],"135":[2,87],"138":[2,87],"139":[2,87],"140":[2,87],"141":[2,87],"142":[2,87],"143":[2,87],"144":[2,87],"145":[2,87],"146":[2,87],"147":[2,87],"148":[2,87],"149":[2,87],"150":[2,87],"151":[2,87],"152":[2,87],"153":[2,87],"154":[2,87],"155":[2,87],"156":[2,87],"157":[2,87],"158":[2,87],"159":[2,87],"160":[2,87],"161":[2,87],"162":[2,87],"163":[2,87]},{"1":[2,44],"4":[2,44],"29":[2,44],"30":[2,44],"50":[1,114],"58":[2,44],"61":[1,131],"79":[2,44],"84":[2,44],"94":[2,44],"99":[2,44],"107":[2,44],"108":129,"109":[1,79],"110":[2,44],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,44],"127":[2,44],"128":[2,44],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"54":295,"55":[1,75],"56":[1,76]},{"59":296,"60":[1,157]},{"61":[1,297]},{"8":298,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,169],"4":[2,169],"29":[2,169],"30":[2,169],"50":[2,169],"58":[2,169],"61":[2,169],"79":[2,169],"84":[2,169],"94":[2,169],"99":[2,169],"107":[2,169],"109":[2,169],"110":[2,169],"111":[2,169],"114":[2,169],"118":[2,169],"119":[2,169],"120":[2,169],"123":[2,169],"127":[2,169],"128":[2,169],"129":[2,169],"131":[2,169],"132":[2,169],"134":[2,169],"135":[2,169],"138":[2,169],"139":[2,169],"140":[2,169],"141":[2,169],"142":[2,169],"143":[2,169],"144":[2,169],"145":[2,169],"146":[2,169],"147":[2,169],"148":[2,169],"149":[2,169],"150":[2,169],"151":[2,169],"152":[2,169],"153":[2,169],"154":[2,169],"155":[2,169],"156":[2,169],"157":[2,169],"158":[2,169],"159":[2,169],"160":[2,169],"161":[2,169],"162":[2,169],"163":[2,169]},{"1":[2,127],"4":[2,127],"29":[2,127],"30":[2,127],"50":[2,127],"58":[2,127],"61":[2,127],"79":[2,127],"84":[2,127],"94":[2,127],"99":[2,127],"103":[1,299],"107":[2,127],"109":[2,127],"110":[2,127],"111":[2,127],"114":[2,127],"118":[2,127],"119":[2,127],"120":[2,127],"127":[2,127],"128":[2,127],"129":[2,127],"131":[2,127],"132":[2,127],"134":[2,127],"135":[2,127],"138":[2,127],"139":[2,127],"140":[2,127],"141":[2,127],"142":[2,127],"143":[2,127],"144":[2,127],"145":[2,127],"146":[2,127],"147":[2,127],"148":[2,127],"149":[2,127],"150":[2,127],"151":[2,127],"152":[2,127],"153":[2,127],"154":[2,127],"155":[2,127],"156":[2,127],"157":[2,127],"158":[2,127],"159":[2,127],"160":[2,127],"161":[2,127],"162":[2,127],"163":[2,127]},{"4":[1,159],"6":300,"29":[1,6]},{"31":301,"32":[1,87]},{"4":[1,159],"6":302,"29":[1,6]},{"8":303,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":304,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"31":175,"32":[1,87],"66":176,"67":177,"82":[1,84],"98":[1,178],"117":305},{"122":306,"124":269,"125":[1,270]},{"30":[1,307],"123":[1,308],"124":309,"125":[1,270]},{"30":[2,162],"123":[2,162],"125":[2,162]},{"8":311,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"100":310,"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,107],"4":[2,107],"29":[2,107],"30":[2,107],"50":[2,107],"58":[2,107],"61":[2,107],"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,107],"80":[1,146],"81":[1,147],"84":[2,107],"91":136,"92":[1,138],"94":[2,107],"99":[2,107],"107":[2,107],"109":[2,107],"110":[2,107],"111":[2,107],"114":[2,107],"118":[2,107],"119":[2,107],"120":[2,107],"127":[2,107],"128":[2,107],"129":[2,107],"131":[2,107],"132":[2,107],"134":[2,107],"135":[2,107],"138":[2,107],"139":[2,107],"140":[2,107],"141":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"148":[2,107],"149":[2,107],"150":[2,107],"151":[2,107],"152":[2,107],"153":[2,107],"154":[2,107],"155":[2,107],"156":[2,107],"157":[2,107],"158":[2,107],"159":[2,107],"160":[2,107],"161":[2,107],"162":[2,107],"163":[2,107]},{"14":312,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":153,"62":154,"64":184,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"4":[2,100],"28":202,"30":[2,100],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":315,"49":[1,56],"65":316,"87":313,"88":314,"97":[1,317]},{"1":[2,132],"4":[2,132],"29":[2,132],"30":[2,132],"50":[2,132],"58":[2,132],"61":[2,132],"72":[2,132],"73":[2,132],"74":[2,132],"75":[2,132],"78":[2,132],"79":[2,132],"80":[2,132],"81":[2,132],"84":[2,132],"92":[2,132],"94":[2,132],"99":[2,132],"107":[2,132],"109":[2,132],"110":[2,132],"111":[2,132],"114":[2,132],"118":[2,132],"119":[2,132],"120":[2,132],"127":[2,132],"128":[2,132],"129":[2,132],"131":[2,132],"132":[2,132],"134":[2,132],"135":[2,132],"138":[2,132],"139":[2,132],"140":[2,132],"141":[2,132],"142":[2,132],"143":[2,132],"144":[2,132],"145":[2,132],"146":[2,132],"147":[2,132],"148":[2,132],"149":[2,132],"150":[2,132],"151":[2,132],"152":[2,132],"153":[2,132],"154":[2,132],"155":[2,132],"156":[2,132],"157":[2,132],"158":[2,132],"159":[2,132],"160":[2,132],"161":[2,132],"162":[2,132],"163":[2,132]},{"61":[1,318]},{"4":[1,320],"29":[1,321],"99":[1,319]},{"4":[2,59],"8":322,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,59],"30":[2,59],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"94":[2,59],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,59],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,166],"4":[2,166],"29":[2,166],"30":[2,166],"50":[2,166],"58":[2,166],"61":[2,166],"79":[2,166],"84":[2,166],"94":[2,166],"99":[2,166],"107":[2,166],"109":[2,166],"110":[2,166],"111":[2,166],"114":[2,166],"118":[2,166],"119":[2,166],"120":[2,166],"123":[2,166],"127":[2,166],"128":[2,166],"129":[2,166],"131":[2,166],"132":[2,166],"134":[2,166],"135":[2,166],"138":[2,166],"139":[2,166],"140":[2,166],"141":[2,166],"142":[2,166],"143":[2,166],"144":[2,166],"145":[2,166],"146":[2,166],"147":[2,166],"148":[2,166],"149":[2,166],"150":[2,166],"151":[2,166],"152":[2,166],"153":[2,166],"154":[2,166],"155":[2,166],"156":[2,166],"157":[2,166],"158":[2,166],"159":[2,166],"160":[2,166],"161":[2,166],"162":[2,166],"163":[2,166]},{"1":[2,167],"4":[2,167],"29":[2,167],"30":[2,167],"50":[2,167],"58":[2,167],"61":[2,167],"79":[2,167],"84":[2,167],"94":[2,167],"99":[2,167],"107":[2,167],"109":[2,167],"110":[2,167],"111":[2,167],"114":[2,167],"118":[2,167],"119":[2,167],"120":[2,167],"123":[2,167],"127":[2,167],"128":[2,167],"129":[2,167],"131":[2,167],"132":[2,167],"134":[2,167],"135":[2,167],"138":[2,167],"139":[2,167],"140":[2,167],"141":[2,167],"142":[2,167],"143":[2,167],"144":[2,167],"145":[2,167],"146":[2,167],"147":[2,167],"148":[2,167],"149":[2,167],"150":[2,167],"151":[2,167],"152":[2,167],"153":[2,167],"154":[2,167],"155":[2,167],"156":[2,167],"157":[2,167],"158":[2,167],"159":[2,167],"160":[2,167],"161":[2,167],"162":[2,167],"163":[2,167]},{"8":323,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":324,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[1,326],"29":[1,327],"84":[1,325]},{"4":[2,59],"28":202,"29":[2,59],"30":[2,59],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":328,"49":[1,56],"84":[2,59]},{"8":329,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":330,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,217],"4":[2,217],"29":[2,217],"30":[2,217],"50":[1,114],"58":[2,217],"61":[2,217],"79":[2,217],"84":[2,217],"94":[2,217],"99":[2,217],"107":[2,217],"108":129,"109":[2,217],"110":[2,217],"111":[2,217],"114":[2,217],"118":[2,217],"119":[2,217],"120":[2,217],"127":[2,217],"128":[2,217],"131":[2,217],"132":[2,217],"138":[2,217],"139":[2,217],"140":[2,217],"141":[2,217],"142":[2,217],"143":[2,217],"144":[2,217],"145":[2,217],"146":[2,217],"147":[2,217],"148":[2,217],"149":[2,217],"150":[2,217],"151":[2,217],"152":[2,217],"153":[2,217],"154":[2,217],"155":[2,217],"156":[2,217],"157":[2,217],"158":[2,217],"159":[2,217],"160":[2,217],"161":[2,217],"162":[2,217],"163":[2,217]},{"1":[2,218],"4":[2,218],"29":[2,218],"30":[2,218],"50":[1,114],"58":[2,218],"61":[2,218],"79":[2,218],"84":[2,218],"94":[2,218],"99":[2,218],"107":[2,218],"108":129,"109":[2,218],"110":[2,218],"111":[2,218],"114":[2,218],"118":[2,218],"119":[2,218],"120":[2,218],"127":[2,218],"128":[2,218],"131":[2,218],"132":[2,218],"138":[2,218],"139":[2,218],"140":[2,218],"141":[2,218],"142":[2,218],"143":[2,218],"144":[2,218],"145":[2,218],"146":[2,218],"147":[2,218],"148":[2,218],"149":[2,218],"150":[2,218],"151":[2,218],"152":[2,218],"153":[2,218],"154":[2,218],"155":[2,218],"156":[2,218],"157":[2,218],"158":[2,218],"159":[2,218],"160":[2,218],"161":[2,218],"162":[2,218],"163":[2,218]},{"1":[2,144],"4":[2,144],"29":[2,144],"30":[2,144],"50":[2,144],"58":[2,144],"61":[2,144],"79":[2,144],"84":[2,144],"94":[2,144],"99":[2,144],"107":[2,144],"109":[2,144],"110":[2,144],"111":[2,144],"114":[2,144],"118":[2,144],"119":[2,144],"120":[2,144],"127":[2,144],"128":[2,144],"129":[2,144],"131":[2,144],"132":[2,144],"134":[2,144],"135":[2,144],"138":[2,144],"139":[2,144],"140":[2,144],"141":[2,144],"142":[2,144],"143":[2,144],"144":[2,144],"145":[2,144],"146":[2,144],"147":[2,144],"148":[2,144],"149":[2,144],"150":[2,144],"151":[2,144],"152":[2,144],"153":[2,144],"154":[2,144],"155":[2,144],"156":[2,144],"157":[2,144],"158":[2,144],"159":[2,144],"160":[2,144],"161":[2,144],"162":[2,144],"163":[2,144]},{"1":[2,65],"4":[2,65],"29":[2,65],"30":[2,65],"50":[2,65],"58":[2,65],"61":[2,65],"79":[2,65],"84":[2,65],"94":[2,65],"99":[2,65],"107":[2,65],"109":[2,65],"110":[2,65],"111":[2,65],"114":[2,65],"118":[2,65],"119":[2,65],"120":[2,65],"127":[2,65],"128":[2,65],"129":[2,65],"131":[2,65],"132":[2,65],"134":[2,65],"135":[2,65],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65]},{"1":[2,143],"4":[2,143],"29":[2,143],"30":[2,143],"50":[2,143],"58":[2,143],"61":[2,143],"79":[2,143],"84":[2,143],"94":[2,143],"99":[2,143],"107":[2,143],"109":[2,143],"110":[2,143],"111":[2,143],"114":[2,143],"118":[2,143],"119":[2,143],"120":[2,143],"127":[2,143],"128":[2,143],"129":[2,143],"131":[2,143],"132":[2,143],"134":[2,143],"135":[2,143],"138":[2,143],"139":[2,143],"140":[2,143],"141":[2,143],"142":[2,143],"143":[2,143],"144":[2,143],"145":[2,143],"146":[2,143],"147":[2,143],"148":[2,143],"149":[2,143],"150":[2,143],"151":[2,143],"152":[2,143],"153":[2,143],"154":[2,143],"155":[2,143],"156":[2,143],"157":[2,143],"158":[2,143],"159":[2,143],"160":[2,143],"161":[2,143],"162":[2,143],"163":[2,143]},{"4":[1,320],"29":[1,321],"94":[1,331]},{"1":[2,85],"4":[2,85],"29":[2,85],"30":[2,85],"46":[2,85],"50":[2,85],"58":[2,85],"61":[2,85],"72":[2,85],"73":[2,85],"74":[2,85],"75":[2,85],"78":[2,85],"79":[2,85],"80":[2,85],"81":[2,85],"84":[2,85],"86":[2,85],"92":[2,85],"94":[2,85],"99":[2,85],"107":[2,85],"109":[2,85],"110":[2,85],"111":[2,85],"114":[2,85],"118":[2,85],"119":[2,85],"120":[2,85],"127":[2,85],"128":[2,85],"129":[2,85],"131":[2,85],"132":[2,85],"134":[2,85],"135":[2,85],"138":[2,85],"139":[2,85],"140":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"148":[2,85],"149":[2,85],"150":[2,85],"151":[2,85],"152":[2,85],"153":[2,85],"154":[2,85],"155":[2,85],"156":[2,85],"157":[2,85],"158":[2,85],"159":[2,85],"160":[2,85],"161":[2,85],"162":[2,85],"163":[2,85]},{"61":[1,332]},{"50":[1,114],"61":[1,131],"79":[1,292],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,159],"6":333,"29":[1,6]},{"53":[2,62],"58":[2,62],"61":[1,257]},{"61":[1,334]},{"4":[1,159],"6":335,"29":[1,6],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,159],"6":336,"29":[1,6]},{"1":[2,128],"4":[2,128],"29":[2,128],"30":[2,128],"50":[2,128],"58":[2,128],"61":[2,128],"79":[2,128],"84":[2,128],"94":[2,128],"99":[2,128],"107":[2,128],"109":[2,128],"110":[2,128],"111":[2,128],"114":[2,128],"118":[2,128],"119":[2,128],"120":[2,128],"127":[2,128],"128":[2,128],"129":[2,128],"131":[2,128],"132":[2,128],"134":[2,128],"135":[2,128],"138":[2,128],"139":[2,128],"140":[2,128],"141":[2,128],"142":[2,128],"143":[2,128],"144":[2,128],"145":[2,128],"146":[2,128],"147":[2,128],"148":[2,128],"149":[2,128],"150":[2,128],"151":[2,128],"152":[2,128],"153":[2,128],"154":[2,128],"155":[2,128],"156":[2,128],"157":[2,128],"158":[2,128],"159":[2,128],"160":[2,128],"161":[2,128],"162":[2,128],"163":[2,128]},{"4":[1,159],"6":337,"29":[1,6]},{"1":[2,145],"4":[2,145],"29":[2,145],"30":[2,145],"50":[2,145],"58":[2,145],"61":[2,145],"79":[2,145],"84":[2,145],"94":[2,145],"99":[2,145],"107":[2,145],"109":[2,145],"110":[2,145],"111":[2,145],"114":[2,145],"118":[2,145],"119":[2,145],"120":[2,145],"127":[2,145],"128":[2,145],"129":[2,145],"131":[2,145],"132":[2,145],"134":[2,145],"135":[2,145],"138":[2,145],"139":[2,145],"140":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"146":[2,145],"147":[2,145],"148":[2,145],"149":[2,145],"150":[2,145],"151":[2,145],"152":[2,145],"153":[2,145],"154":[2,145],"155":[2,145],"156":[2,145],"157":[2,145],"158":[2,145],"159":[2,145],"160":[2,145],"161":[2,145],"162":[2,145],"163":[2,145]},{"1":[2,151],"4":[2,151],"29":[2,151],"30":[2,151],"50":[1,114],"58":[2,151],"61":[1,131],"79":[2,151],"84":[2,151],"94":[2,151],"99":[2,151],"107":[2,151],"108":129,"109":[2,151],"110":[1,338],"111":[2,151],"114":[2,151],"118":[1,124],"119":[1,125],"120":[1,339],"127":[2,151],"128":[2,151],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,152],"4":[2,152],"29":[2,152],"30":[2,152],"50":[1,114],"58":[2,152],"61":[1,131],"79":[2,152],"84":[2,152],"94":[2,152],"99":[2,152],"107":[2,152],"108":129,"109":[2,152],"110":[1,340],"111":[2,152],"114":[2,152],"118":[1,124],"119":[1,125],"120":[2,152],"127":[2,152],"128":[2,152],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"118":[2,150],"119":[2,150]},{"30":[1,341],"123":[1,342],"124":309,"125":[1,270]},{"1":[2,160],"4":[2,160],"29":[2,160],"30":[2,160],"50":[2,160],"58":[2,160],"61":[2,160],"79":[2,160],"84":[2,160],"94":[2,160],"99":[2,160],"107":[2,160],"109":[2,160],"110":[2,160],"111":[2,160],"114":[2,160],"118":[2,160],"119":[2,160],"120":[2,160],"127":[2,160],"128":[2,160],"129":[2,160],"131":[2,160],"132":[2,160],"134":[2,160],"135":[2,160],"138":[2,160],"139":[2,160],"140":[2,160],"141":[2,160],"142":[2,160],"143":[2,160],"144":[2,160],"145":[2,160],"146":[2,160],"147":[2,160],"148":[2,160],"149":[2,160],"150":[2,160],"151":[2,160],"152":[2,160],"153":[2,160],"154":[2,160],"155":[2,160],"156":[2,160],"157":[2,160],"158":[2,160],"159":[2,160],"160":[2,160],"161":[2,160],"162":[2,160],"163":[2,160]},{"4":[1,159],"6":343,"29":[1,6]},{"30":[2,163],"123":[2,163],"125":[2,163]},{"4":[1,159],"6":344,"29":[1,6],"58":[1,345]},{"4":[2,125],"29":[2,125],"50":[1,114],"58":[2,125],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,95],"4":[2,95],"29":[1,346],"30":[2,95],"50":[2,95],"58":[2,95],"61":[2,95],"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,95],"80":[1,146],"81":[1,147],"84":[2,95],"91":136,"92":[1,138],"94":[2,95],"99":[2,95],"107":[2,95],"109":[2,95],"110":[2,95],"111":[2,95],"114":[2,95],"118":[2,95],"119":[2,95],"120":[2,95],"127":[2,95],"128":[2,95],"129":[2,95],"131":[2,95],"132":[2,95],"134":[2,95],"135":[2,95],"138":[2,95],"139":[2,95],"140":[2,95],"141":[2,95],"142":[2,95],"143":[2,95],"144":[2,95],"145":[2,95],"146":[2,95],"147":[2,95],"148":[2,95],"149":[2,95],"150":[2,95],"151":[2,95],"152":[2,95],"153":[2,95],"154":[2,95],"155":[2,95],"156":[2,95],"157":[2,95],"158":[2,95],"159":[2,95],"160":[2,95],"161":[2,95],"162":[2,95],"163":[2,95]},{"4":[1,348],"30":[1,347]},{"4":[2,101],"30":[2,101]},{"4":[2,98],"30":[2,98]},{"46":[1,349]},{"31":190,"32":[1,87]},{"8":350,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"61":[1,351],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,119],"4":[2,119],"29":[2,119],"30":[2,119],"46":[2,119],"50":[2,119],"58":[2,119],"61":[2,119],"72":[2,119],"73":[2,119],"74":[2,119],"75":[2,119],"78":[2,119],"79":[2,119],"80":[2,119],"81":[2,119],"84":[2,119],"92":[2,119],"94":[2,119],"99":[2,119],"107":[2,119],"109":[2,119],"110":[2,119],"111":[2,119],"114":[2,119],"118":[2,119],"119":[2,119],"120":[2,119],"127":[2,119],"128":[2,119],"129":[2,119],"131":[2,119],"132":[2,119],"134":[2,119],"135":[2,119],"138":[2,119],"139":[2,119],"140":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"146":[2,119],"147":[2,119],"148":[2,119],"149":[2,119],"150":[2,119],"151":[2,119],"152":[2,119],"153":[2,119],"154":[2,119],"155":[2,119],"156":[2,119],"157":[2,119],"158":[2,119],"159":[2,119],"160":[2,119],"161":[2,119],"162":[2,119],"163":[2,119]},{"8":352,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,120],"8":246,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"30":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":353,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,122],"29":[2,122],"30":[2,122],"50":[1,114],"58":[2,122],"61":[1,131],"94":[2,122],"99":[2,122],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,134],"4":[2,134],"29":[2,134],"30":[2,134],"50":[1,114],"58":[2,134],"61":[1,131],"79":[2,134],"84":[2,134],"94":[2,134],"99":[2,134],"107":[2,134],"108":129,"109":[1,79],"110":[2,134],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,134],"127":[2,134],"128":[2,134],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,136],"4":[2,136],"29":[2,136],"30":[2,136],"50":[1,114],"58":[2,136],"61":[1,131],"79":[2,136],"84":[2,136],"94":[2,136],"99":[2,136],"107":[2,136],"108":129,"109":[1,79],"110":[2,136],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,136],"127":[2,136],"128":[2,136],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,88],"4":[2,88],"29":[2,88],"30":[2,88],"46":[2,88],"50":[2,88],"58":[2,88],"61":[2,88],"72":[2,88],"73":[2,88],"74":[2,88],"75":[2,88],"78":[2,88],"79":[2,88],"80":[2,88],"81":[2,88],"84":[2,88],"92":[2,88],"94":[2,88],"99":[2,88],"107":[2,88],"109":[2,88],"110":[2,88],"111":[2,88],"114":[2,88],"118":[2,88],"119":[2,88],"120":[2,88],"127":[2,88],"128":[2,88],"129":[2,88],"131":[2,88],"132":[2,88],"134":[2,88],"135":[2,88],"138":[2,88],"139":[2,88],"140":[2,88],"141":[2,88],"142":[2,88],"143":[2,88],"144":[2,88],"145":[2,88],"146":[2,88],"147":[2,88],"148":[2,88],"149":[2,88],"150":[2,88],"151":[2,88],"152":[2,88],"153":[2,88],"154":[2,88],"155":[2,88],"156":[2,88],"157":[2,88],"158":[2,88],"159":[2,88],"160":[2,88],"161":[2,88],"162":[2,88],"163":[2,88]},{"28":202,"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":354,"49":[1,56]},{"4":[2,89],"28":202,"29":[2,89],"30":[2,89],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":199,"49":[1,56],"58":[2,89],"83":355},{"4":[2,91],"29":[2,91],"30":[2,91],"58":[2,91],"84":[2,91]},{"4":[2,47],"29":[2,47],"30":[2,47],"50":[1,114],"58":[2,47],"61":[1,131],"84":[2,47],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,48],"29":[2,48],"30":[2,48],"50":[1,114],"58":[2,48],"61":[1,131],"84":[2,48],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,110],"4":[2,110],"29":[2,110],"30":[2,110],"50":[2,110],"58":[2,110],"61":[2,110],"72":[2,110],"73":[2,110],"74":[2,110],"75":[2,110],"78":[2,110],"79":[2,110],"80":[2,110],"81":[2,110],"84":[2,110],"92":[2,110],"94":[2,110],"99":[2,110],"107":[2,110],"109":[2,110],"110":[2,110],"111":[2,110],"114":[2,110],"118":[2,110],"119":[2,110],"120":[2,110],"127":[2,110],"128":[2,110],"129":[2,110],"131":[2,110],"132":[2,110],"134":[2,110],"135":[2,110],"138":[2,110],"139":[2,110],"140":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"147":[2,110],"148":[2,110],"149":[2,110],"150":[2,110],"151":[2,110],"152":[2,110],"153":[2,110],"154":[2,110],"155":[2,110],"156":[2,110],"157":[2,110],"158":[2,110],"159":[2,110],"160":[2,110],"161":[2,110],"162":[2,110],"163":[2,110]},{"8":356,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"61":[1,357],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,54],"4":[2,54],"29":[2,54],"30":[2,54],"50":[2,54],"58":[2,54],"61":[2,54],"79":[2,54],"84":[2,54],"94":[2,54],"99":[2,54],"107":[2,54],"109":[2,54],"110":[2,54],"111":[2,54],"114":[2,54],"118":[2,54],"119":[2,54],"120":[2,54],"127":[2,54],"128":[2,54],"129":[2,54],"131":[2,54],"132":[2,54],"134":[2,54],"135":[2,54],"138":[2,54],"139":[2,54],"140":[2,54],"141":[2,54],"142":[2,54],"143":[2,54],"144":[2,54],"145":[2,54],"146":[2,54],"147":[2,54],"148":[2,54],"149":[2,54],"150":[2,54],"151":[2,54],"152":[2,54],"153":[2,54],"154":[2,54],"155":[2,54],"156":[2,54],"157":[2,54],"158":[2,54],"159":[2,54],"160":[2,54],"161":[2,54],"162":[2,54],"163":[2,54]},{"53":[2,64],"58":[2,64],"61":[2,64]},{"1":[2,168],"4":[2,168],"29":[2,168],"30":[2,168],"50":[2,168],"58":[2,168],"61":[2,168],"79":[2,168],"84":[2,168],"94":[2,168],"99":[2,168],"107":[2,168],"109":[2,168],"110":[2,168],"111":[2,168],"114":[2,168],"118":[2,168],"119":[2,168],"120":[2,168],"123":[2,168],"127":[2,168],"128":[2,168],"129":[2,168],"131":[2,168],"132":[2,168],"134":[2,168],"135":[2,168],"138":[2,168],"139":[2,168],"140":[2,168],"141":[2,168],"142":[2,168],"143":[2,168],"144":[2,168],"145":[2,168],"146":[2,168],"147":[2,168],"148":[2,168],"149":[2,168],"150":[2,168],"151":[2,168],"152":[2,168],"153":[2,168],"154":[2,168],"155":[2,168],"156":[2,168],"157":[2,168],"158":[2,168],"159":[2,168],"160":[2,168],"161":[2,168],"162":[2,168],"163":[2,168]},{"1":[2,129],"4":[2,129],"29":[2,129],"30":[2,129],"50":[2,129],"58":[2,129],"61":[2,129],"79":[2,129],"84":[2,129],"94":[2,129],"99":[2,129],"107":[2,129],"109":[2,129],"110":[2,129],"111":[2,129],"114":[2,129],"118":[2,129],"119":[2,129],"120":[2,129],"127":[2,129],"128":[2,129],"129":[2,129],"131":[2,129],"132":[2,129],"134":[2,129],"135":[2,129],"138":[2,129],"139":[2,129],"140":[2,129],"141":[2,129],"142":[2,129],"143":[2,129],"144":[2,129],"145":[2,129],"146":[2,129],"147":[2,129],"148":[2,129],"149":[2,129],"150":[2,129],"151":[2,129],"152":[2,129],"153":[2,129],"154":[2,129],"155":[2,129],"156":[2,129],"157":[2,129],"158":[2,129],"159":[2,129],"160":[2,129],"161":[2,129],"162":[2,129],"163":[2,129]},{"1":[2,130],"4":[2,130],"29":[2,130],"30":[2,130],"50":[2,130],"58":[2,130],"61":[2,130],"79":[2,130],"84":[2,130],"94":[2,130],"99":[2,130],"103":[2,130],"107":[2,130],"109":[2,130],"110":[2,130],"111":[2,130],"114":[2,130],"118":[2,130],"119":[2,130],"120":[2,130],"127":[2,130],"128":[2,130],"129":[2,130],"131":[2,130],"132":[2,130],"134":[2,130],"135":[2,130],"138":[2,130],"139":[2,130],"140":[2,130],"141":[2,130],"142":[2,130],"143":[2,130],"144":[2,130],"145":[2,130],"146":[2,130],"147":[2,130],"148":[2,130],"149":[2,130],"150":[2,130],"151":[2,130],"152":[2,130],"153":[2,130],"154":[2,130],"155":[2,130],"156":[2,130],"157":[2,130],"158":[2,130],"159":[2,130],"160":[2,130],"161":[2,130],"162":[2,130],"163":[2,130]},{"8":358,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":359,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":360,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,158],"4":[2,158],"29":[2,158],"30":[2,158],"50":[2,158],"58":[2,158],"61":[2,158],"79":[2,158],"84":[2,158],"94":[2,158],"99":[2,158],"107":[2,158],"109":[2,158],"110":[2,158],"111":[2,158],"114":[2,158],"118":[2,158],"119":[2,158],"120":[2,158],"127":[2,158],"128":[2,158],"129":[2,158],"131":[2,158],"132":[2,158],"134":[2,158],"135":[2,158],"138":[2,158],"139":[2,158],"140":[2,158],"141":[2,158],"142":[2,158],"143":[2,158],"144":[2,158],"145":[2,158],"146":[2,158],"147":[2,158],"148":[2,158],"149":[2,158],"150":[2,158],"151":[2,158],"152":[2,158],"153":[2,158],"154":[2,158],"155":[2,158],"156":[2,158],"157":[2,158],"158":[2,158],"159":[2,158],"160":[2,158],"161":[2,158],"162":[2,158],"163":[2,158]},{"4":[1,159],"6":361,"29":[1,6]},{"30":[1,362]},{"4":[1,363],"30":[2,164],"123":[2,164],"125":[2,164]},{"8":364,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,100],"28":202,"30":[2,100],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":315,"49":[1,56],"65":316,"87":365,"88":314,"97":[1,317]},{"1":[2,96],"4":[2,96],"29":[2,96],"30":[2,96],"50":[2,96],"58":[2,96],"61":[2,96],"79":[2,96],"84":[2,96],"94":[2,96],"99":[2,96],"107":[2,96],"109":[2,96],"110":[2,96],"111":[2,96],"114":[2,96],"118":[2,96],"119":[2,96],"120":[2,96],"127":[2,96],"128":[2,96],"129":[2,96],"131":[2,96],"132":[2,96],"134":[2,96],"135":[2,96],"138":[2,96],"139":[2,96],"140":[2,96],"141":[2,96],"142":[2,96],"143":[2,96],"144":[2,96],"145":[2,96],"146":[2,96],"147":[2,96],"148":[2,96],"149":[2,96],"150":[2,96],"151":[2,96],"152":[2,96],"153":[2,96],"154":[2,96],"155":[2,96],"156":[2,96],"157":[2,96],"158":[2,96],"159":[2,96],"160":[2,96],"161":[2,96],"162":[2,96],"163":[2,96]},{"28":202,"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":315,"49":[1,56],"65":316,"88":366,"97":[1,317]},{"8":367,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"50":[1,114],"61":[1,131],"99":[1,368],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,65],"8":369,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,65],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"50":[2,65],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,65],"61":[2,65],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,65],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[2,65],"111":[2,65],"112":51,"113":[1,81],"114":[2,65],"118":[2,65],"119":[2,65],"121":[1,53],"126":48,"127":[2,65],"128":[2,65],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65]},{"4":[2,123],"29":[2,123],"30":[2,123],"50":[1,114],"58":[2,123],"61":[1,131],"94":[2,123],"99":[2,123],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,58],"29":[2,58],"30":[2,58],"57":370,"58":[1,277]},{"4":[2,92],"29":[2,92],"30":[2,92],"58":[2,92],"84":[2,92]},{"4":[2,58],"29":[2,58],"30":[2,58],"57":371,"58":[1,283]},{"50":[1,114],"61":[1,131],"79":[1,372],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"8":373,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"50":[2,65],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"61":[2,65],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"79":[2,65],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[2,65],"111":[2,65],"112":51,"113":[1,81],"114":[2,65],"118":[2,65],"119":[2,65],"121":[1,53],"126":48,"127":[2,65],"128":[2,65],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65]},{"1":[2,153],"4":[2,153],"29":[2,153],"30":[2,153],"50":[1,114],"58":[2,153],"61":[1,131],"79":[2,153],"84":[2,153],"94":[2,153],"99":[2,153],"107":[2,153],"108":129,"109":[2,153],"110":[2,153],"111":[2,153],"114":[2,153],"118":[1,124],"119":[1,125],"120":[1,374],"127":[2,153],"128":[2,153],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,155],"4":[2,155],"29":[2,155],"30":[2,155],"50":[1,114],"58":[2,155],"61":[1,131],"79":[2,155],"84":[2,155],"94":[2,155],"99":[2,155],"107":[2,155],"108":129,"109":[2,155],"110":[1,375],"111":[2,155],"114":[2,155],"118":[1,124],"119":[1,125],"120":[2,155],"127":[2,155],"128":[2,155],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,154],"4":[2,154],"29":[2,154],"30":[2,154],"50":[1,114],"58":[2,154],"61":[1,131],"79":[2,154],"84":[2,154],"94":[2,154],"99":[2,154],"107":[2,154],"108":129,"109":[2,154],"110":[2,154],"111":[2,154],"114":[2,154],"118":[1,124],"119":[1,125],"120":[2,154],"127":[2,154],"128":[2,154],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"30":[1,376]},{"1":[2,161],"4":[2,161],"29":[2,161],"30":[2,161],"50":[2,161],"58":[2,161],"61":[2,161],"79":[2,161],"84":[2,161],"94":[2,161],"99":[2,161],"107":[2,161],"109":[2,161],"110":[2,161],"111":[2,161],"114":[2,161],"118":[2,161],"119":[2,161],"120":[2,161],"127":[2,161],"128":[2,161],"129":[2,161],"131":[2,161],"132":[2,161],"134":[2,161],"135":[2,161],"138":[2,161],"139":[2,161],"140":[2,161],"141":[2,161],"142":[2,161],"143":[2,161],"144":[2,161],"145":[2,161],"146":[2,161],"147":[2,161],"148":[2,161],"149":[2,161],"150":[2,161],"151":[2,161],"152":[2,161],"153":[2,161],"154":[2,161],"155":[2,161],"156":[2,161],"157":[2,161],"158":[2,161],"159":[2,161],"160":[2,161],"161":[2,161],"162":[2,161],"163":[2,161]},{"30":[2,165],"123":[2,165],"125":[2,165]},{"4":[2,126],"29":[2,126],"50":[1,114],"58":[2,126],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,348],"30":[1,377]},{"4":[2,102],"30":[2,102]},{"4":[2,99],"30":[2,99],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,115],"4":[2,115],"29":[2,115],"30":[2,115],"50":[2,115],"58":[2,115],"61":[2,115],"72":[2,115],"73":[2,115],"74":[2,115],"75":[2,115],"78":[2,115],"79":[2,115],"80":[2,115],"81":[2,115],"84":[2,115],"92":[2,115],"94":[2,115],"99":[2,115],"107":[2,115],"109":[2,115],"110":[2,115],"111":[2,115],"114":[2,115],"118":[2,115],"119":[2,115],"120":[2,115],"127":[2,115],"128":[2,115],"129":[2,115],"131":[2,115],"132":[2,115],"134":[2,115],"135":[2,115],"138":[2,115],"139":[2,115],"140":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"147":[2,115],"148":[2,115],"149":[2,115],"150":[2,115],"151":[2,115],"152":[2,115],"153":[2,115],"154":[2,115],"155":[2,115],"156":[2,115],"157":[2,115],"158":[2,115],"159":[2,115],"160":[2,115],"161":[2,115],"162":[2,115],"163":[2,115]},{"50":[1,114],"61":[1,131],"99":[1,378],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,320],"29":[1,321],"30":[1,379]},{"4":[1,326],"29":[1,327],"30":[1,380]},{"1":[2,117],"4":[2,117],"29":[2,117],"30":[2,117],"46":[2,117],"50":[2,117],"58":[2,117],"61":[2,117],"72":[2,117],"73":[2,117],"74":[2,117],"75":[2,117],"78":[2,117],"79":[2,117],"80":[2,117],"81":[2,117],"84":[2,117],"86":[2,117],"92":[2,117],"94":[2,117],"99":[2,117],"107":[2,117],"109":[2,117],"110":[2,117],"111":[2,117],"114":[2,117],"118":[2,117],"119":[2,117],"120":[2,117],"127":[2,117],"128":[2,117],"129":[2,117],"131":[2,117],"132":[2,117],"134":[2,117],"135":[2,117],"138":[2,117],"139":[2,117],"140":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"146":[2,117],"147":[2,117],"148":[2,117],"149":[2,117],"150":[2,117],"151":[2,117],"152":[2,117],"153":[2,117],"154":[2,117],"155":[2,117],"156":[2,117],"157":[2,117],"158":[2,117],"159":[2,117],"160":[2,117],"161":[2,117],"162":[2,117],"163":[2,117]},{"50":[1,114],"61":[1,131],"79":[1,381],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"8":382,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":383,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,159],"4":[2,159],"29":[2,159],"30":[2,159],"50":[2,159],"58":[2,159],"61":[2,159],"79":[2,159],"84":[2,159],"94":[2,159],"99":[2,159],"107":[2,159],"109":[2,159],"110":[2,159],"111":[2,159],"114":[2,159],"118":[2,159],"119":[2,159],"120":[2,159],"127":[2,159],"128":[2,159],"129":[2,159],"131":[2,159],"132":[2,159],"134":[2,159],"135":[2,159],"138":[2,159],"139":[2,159],"140":[2,159],"141":[2,159],"142":[2,159],"143":[2,159],"144":[2,159],"145":[2,159],"146":[2,159],"147":[2,159],"148":[2,159],"149":[2,159],"150":[2,159],"151":[2,159],"152":[2,159],"153":[2,159],"154":[2,159],"155":[2,159],"156":[2,159],"157":[2,159],"158":[2,159],"159":[2,159],"160":[2,159],"161":[2,159],"162":[2,159],"163":[2,159]},{"1":[2,97],"4":[2,97],"29":[2,97],"30":[2,97],"50":[2,97],"58":[2,97],"61":[2,97],"79":[2,97],"84":[2,97],"94":[2,97],"99":[2,97],"107":[2,97],"109":[2,97],"110":[2,97],"111":[2,97],"114":[2,97],"118":[2,97],"119":[2,97],"120":[2,97],"127":[2,97],"128":[2,97],"129":[2,97],"131":[2,97],"132":[2,97],"134":[2,97],"135":[2,97],"138":[2,97],"139":[2,97],"140":[2,97],"141":[2,97],"142":[2,97],"143":[2,97],"144":[2,97],"145":[2,97],"146":[2,97],"147":[2,97],"148":[2,97],"149":[2,97],"150":[2,97],"151":[2,97],"152":[2,97],"153":[2,97],"154":[2,97],"155":[2,97],"156":[2,97],"157":[2,97],"158":[2,97],"159":[2,97],"160":[2,97],"161":[2,97],"162":[2,97],"163":[2,97]},{"1":[2,116],"4":[2,116],"29":[2,116],"30":[2,116],"50":[2,116],"58":[2,116],"61":[2,116],"72":[2,116],"73":[2,116],"74":[2,116],"75":[2,116],"78":[2,116],"79":[2,116],"80":[2,116],"81":[2,116],"84":[2,116],"92":[2,116],"94":[2,116],"99":[2,116],"107":[2,116],"109":[2,116],"110":[2,116],"111":[2,116],"114":[2,116],"118":[2,116],"119":[2,116],"120":[2,116],"127":[2,116],"128":[2,116],"129":[2,116],"131":[2,116],"132":[2,116],"134":[2,116],"135":[2,116],"138":[2,116],"139":[2,116],"140":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"146":[2,116],"147":[2,116],"148":[2,116],"149":[2,116],"150":[2,116],"151":[2,116],"152":[2,116],"153":[2,116],"154":[2,116],"155":[2,116],"156":[2,116],"157":[2,116],"158":[2,116],"159":[2,116],"160":[2,116],"161":[2,116],"162":[2,116],"163":[2,116]},{"4":[2,124],"29":[2,124],"30":[2,124],"58":[2,124],"94":[2,124],"99":[2,124]},{"4":[2,93],"29":[2,93],"30":[2,93],"58":[2,93],"84":[2,93]},{"1":[2,118],"4":[2,118],"29":[2,118],"30":[2,118],"46":[2,118],"50":[2,118],"58":[2,118],"61":[2,118],"72":[2,118],"73":[2,118],"74":[2,118],"75":[2,118],"78":[2,118],"79":[2,118],"80":[2,118],"81":[2,118],"84":[2,118],"86":[2,118],"92":[2,118],"94":[2,118],"99":[2,118],"107":[2,118],"109":[2,118],"110":[2,118],"111":[2,118],"114":[2,118],"118":[2,118],"119":[2,118],"120":[2,118],"127":[2,118],"128":[2,118],"129":[2,118],"131":[2,118],"132":[2,118],"134":[2,118],"135":[2,118],"138":[2,118],"139":[2,118],"140":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"146":[2,118],"147":[2,118],"148":[2,118],"149":[2,118],"150":[2,118],"151":[2,118],"152":[2,118],"153":[2,118],"154":[2,118],"155":[2,118],"156":[2,118],"157":[2,118],"158":[2,118],"159":[2,118],"160":[2,118],"161":[2,118],"162":[2,118],"163":[2,118]},{"1":[2,156],"4":[2,156],"29":[2,156],"30":[2,156],"50":[1,114],"58":[2,156],"61":[1,131],"79":[2,156],"84":[2,156],"94":[2,156],"99":[2,156],"107":[2,156],"108":129,"109":[2,156],"110":[2,156],"111":[2,156],"114":[2,156],"118":[1,124],"119":[1,125],"120":[2,156],"127":[2,156],"128":[2,156],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,157],"4":[2,157],"29":[2,157],"30":[2,157],"50":[1,114],"58":[2,157],"61":[1,131],"79":[2,157],"84":[2,157],"94":[2,157],"99":[2,157],"107":[2,157],"108":129,"109":[2,157],"110":[2,157],"111":[2,157],"114":[2,157],"118":[1,124],"119":[1,125],"120":[2,157],"127":[2,157],"128":[2,157],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]}], defaultActions: {"90":[2,4]}, parseError: function parseError(str, hash) { throw new Error(str); @@ -549,7 +547,7 @@ parse: function parse(input) { token = self.lexer.lex() || 1; // $end = 1 // if token isn't its numeric value, convert if (typeof token !== 'number') { - token = self.symbols_[token]; + token = self.symbols_[token] || token; } return token; }; @@ -582,7 +580,7 @@ parse: function parse(input) { parseError.call(this, 'Parse error on line '+(yylineno+1)+":\n"+this.lexer.showPosition()+'\nExpecting '+expected.join(', '), {text: this.lexer.match, token: this.terminals_[symbol] || symbol, line: this.lexer.yylineno, expected: expected}); } else { - parseError.call(this, 'Parse error on line '+(yylineno+1)+": Unexpected '"+this.terminals_[symbol]+"'", + parseError.call(this, 'Parse error on line '+(yylineno+1)+": Unexpected '"+(this.terminals_[symbol] || symbol)+"'", {text: this.lexer.match, token: this.terminals_[symbol] || symbol, line: this.lexer.yylineno, expected: expected}); } } diff --git a/lib/rewriter.js b/lib/rewriter.js index f513eb2128..149ee6cdcc 100644 --- a/lib/rewriter.js +++ b/lib/rewriter.js @@ -196,17 +196,23 @@ Rewriter.prototype.addImplicitIndentation = function() { return this.scanTokens((function(__this) { var __func = function(prev, token, post, i) { - var idx, indent, insertion, outdent, parens, pre, starter, tok; + var _c, idx, indent, insertion, outdent, parens, pre, starter, tok; if (token[0] === 'ELSE' && prev[0] !== 'OUTDENT') { - this.tokens.splice(i, 0, ['INDENT', 2, token[2]], ['OUTDENT', 2, token[2]]); + this.tokens.splice.apply(this.tokens, [i, 0].concat(this.indentation(token))); return 2; } + if (token[0] === 'CATCH' && this.tokens[i + 2][0] === 'TERMINATOR') { + this.tokens.splice.apply(this.tokens, [i + 2, 0].concat(this.indentation(token))); + return 4; + } if (!(include(SINGLE_LINERS, token[0]) && post[0] !== 'INDENT' && !(token[0] === 'ELSE' && post[0] === 'IF'))) { return 1; } starter = token[0]; - indent = ['INDENT', 2, token[2]]; - indent.generated = true; + _c = this.indentation(token); + indent = _c[0]; + outdent = _c[1]; + indent.generated = (outdent.generated = true); this.tokens.splice(i + 1, 0, indent); idx = i + 1; parens = 0; @@ -216,8 +222,6 @@ pre = this.tokens[idx - 1]; if ((!tok || (include(SINGLE_CLOSERS, tok[0]) && tok[1] !== ';' && parens === 0) || (tok[0] === ')' && parens === 0)) && !(tok[0] === 'ELSE' && !('IF' === starter || 'THEN' === starter))) { insertion = pre[0] === "," ? idx - 1 : idx; - outdent = ['OUTDENT', 2, token[2]]; - outdent.generated = true; this.tokens.splice(insertion, 0, outdent); break; } @@ -334,6 +338,9 @@ }); })(this)); }; + Rewriter.prototype.indentation = function(token) { + return [['INDENT', 2, token[2]], ['OUTDENT', 2, token[2]]]; + }; return Rewriter; })(); BALANCED_PAIRS = [['(', ')'], ['[', ']'], ['{', '}'], ['INDENT', 'OUTDENT'], ['PARAM_START', 'PARAM_END'], ['CALL_START', 'CALL_END'], ['INDEX_START', 'INDEX_END']]; diff --git a/src/grammar.coffee b/src/grammar.coffee index 1117064375..9602555c5a 100644 --- a/src/grammar.coffee +++ b/src/grammar.coffee @@ -378,7 +378,6 @@ grammar: { # A catch clause names its error and runs a block of code. Catch: [ o "CATCH Identifier Block", -> [$2, $3] - o "CATCH Identifier TERMINATOR", -> [$2, new Expressions] ] # Throw an exception object. diff --git a/src/rewriter.coffee b/src/rewriter.coffee index 74e0827312..90a6e80400 100644 --- a/src/rewriter.coffee +++ b/src/rewriter.coffee @@ -48,7 +48,7 @@ exports.Rewriter: class Rewriter move: block @tokens[i - 1], @tokens[i], @tokens[i + 1], i i: + move true - + # Massage newlines and indentations so that comments don't have to be # correctly indented, or appear on a line of their own. adjustComments: -> @@ -159,14 +159,17 @@ exports.Rewriter: class Rewriter addImplicitIndentation: -> @scanTokens (prev, token, post, i) => if token[0] is 'ELSE' and prev[0] isnt 'OUTDENT' - @tokens.splice i, 0, ['INDENT', 2, token[2]], ['OUTDENT', 2, token[2]] + @tokens.splice i, 0, @indentation(token)... return 2 + if token[0] is 'CATCH' and @tokens[i + 2][0] is 'TERMINATOR' + @tokens.splice i + 2, 0, @indentation(token)... + return 4 return 1 unless include(SINGLE_LINERS, token[0]) and post[0] isnt 'INDENT' and not (token[0] is 'ELSE' and post[0] is 'IF') starter: token[0] - indent: ['INDENT', 2, token[2]] - indent.generated: true + [indent, outdent]: @indentation token + indent.generated: outdent.generated: true @tokens.splice i + 1, 0, indent idx: i + 1 parens: 0 @@ -179,8 +182,6 @@ exports.Rewriter: class Rewriter (tok[0] is ')' and parens is 0)) and not (tok[0] is 'ELSE' and starter not in ['IF', 'THEN']) insertion: if pre[0] is "," then idx - 1 else idx - outdent: ['OUTDENT', 2, token[2]] - outdent.generated: true @tokens.splice insertion, 0, outdent break parens: + 1 if tok[0] is '(' @@ -257,6 +258,10 @@ exports.Rewriter: class Rewriter else return 1 + # Generate the indentation tokens, based on another token on the same line. + indentation: (token) -> + [['INDENT', 2, token[2]], ['OUTDENT', 2, token[2]]] + # Constants # --------- diff --git a/test/test_try_catch.coffee b/test/test_try_catch.coffee index d11e18c50e..e5298acaa3 100644 --- a/test/test_try_catch.coffee +++ b/test/test_try_catch.coffee @@ -28,4 +28,11 @@ ok result is 5 try # nothing catch err - #nothing \ No newline at end of file + # nothing + +try + # nothing +finally + # nothing + +ok yes \ No newline at end of file From c57ebffe6f62cce457498b2827f20a2740d6b036 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sun, 4 Jul 2010 13:29:22 -0400 Subject: [PATCH 17/33] fixing Lexer::OPERATOR regex for non-spaced + unary arithmetic. Issue #471 --- lib/lexer.js | 2 +- src/lexer.coffee | 2 +- test/test_operations.coffee | 9 ++++++++- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/lib/lexer.js b/lib/lexer.js index f7f732fb4d..396d270460 100644 --- a/lib/lexer.js +++ b/lib/lexer.js @@ -590,7 +590,7 @@ NUMBER = /^(((\b0(x|X)[0-9a-fA-F]+)|((\b[0-9]+(\.[0-9]+)?|\.[0-9]+)(e[+\-]?[0-9]+)?)))\b/i; HEREDOC = /^("{6}|'{6}|"{3}\n?([\s\S]*?)\n?([ \t]*)"{3}|'{3}\n?([\s\S]*?)\n?([ \t]*)'{3})/; INTERPOLATION = /^\$([a-zA-Z_@]\w*(\.\w+)*)/; - OPERATOR = /^([+\*&|\/\-%=<>:!?]+)([ \t]*)/; + OPERATOR = /^(-[\-=>]?|\+[+=]?|[*&|\/%=<>:!?]+)([ \t]*)/; WHITESPACE = /^([ \t]+)/; COMMENT = /^(\s*#{3}(?!#)[ \t]*\n+([\s\S]*?)[ \t]*\n+[ \t]*#{3}|(\s*#[^\n]*)+)/; CODE = /^((-|=)>)/; diff --git a/src/lexer.coffee b/src/lexer.coffee index 994930f98a..3cca3924b4 100644 --- a/src/lexer.coffee +++ b/src/lexer.coffee @@ -509,7 +509,7 @@ IDENTIFIER : /^([a-zA-Z\$_](\w|\$)*)/ NUMBER : /^(((\b0(x|X)[0-9a-fA-F]+)|((\b[0-9]+(\.[0-9]+)?|\.[0-9]+)(e[+\-]?[0-9]+)?)))\b/i HEREDOC : /^("{6}|'{6}|"{3}\n?([\s\S]*?)\n?([ \t]*)"{3}|'{3}\n?([\s\S]*?)\n?([ \t]*)'{3})/ INTERPOLATION : /^\$([a-zA-Z_@]\w*(\.\w+)*)/ -OPERATOR : /^([+\*&|\/\-%=<>:!?]+)([ \t]*)/ +OPERATOR : /^(-[\-=>]?|\+[+=]?|[*&|\/%=<>:!?]+)([ \t]*)/ WHITESPACE : /^([ \t]+)/ COMMENT : /^(\s*#{3}(?!#)[ \t]*\n+([\s\S]*?)[ \t]*\n+[ \t]*#{3}|(\s*#[^\n]*)+)/ CODE : /^((-|=)>)/ diff --git a/test/test_operations.coffee b/test/test_operations.coffee index 4242758619..839743e61a 100644 --- a/test/test_operations.coffee +++ b/test/test_operations.coffee @@ -49,4 +49,11 @@ ok 1 not in array list: [1, 2, 7] result: if list[2] in [7, 10] then 100 else -1 -ok result is 100 \ No newline at end of file +ok result is 100 + +# Non-spaced values still work. +x: 10 +y: -5 + +ok x*-y is 50 +ok x*+y is -50 From e81810d8459841517877c39a3eb03da315ecbe1e Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sun, 4 Jul 2010 20:55:21 -0400 Subject: [PATCH 18/33] fixing issue #427 -- incorrect stringification of reserved word --- lib/lexer.js | 2 +- src/lexer.coffee | 2 +- test/test_literals.coffee | 7 +++++++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/lib/lexer.js b/lib/lexer.js index 396d270460..958f40435f 100644 --- a/lib/lexer.js +++ b/lib/lexer.js @@ -607,7 +607,7 @@ STRING_NEWLINES = /\n[ \t]*/g; NO_NEWLINE = /^([+\*&|\/\-%=<>:!.\\][<>=&|]*|and|or|is|isnt|not|delete|typeof|instanceof)$/; HEREDOC_INDENT = /(\n+([ \t]*)|^([ \t]+))/g; - ASSIGNED = /^([a-zA-Z\$_]\w*[ \t]*?[:=])/; + ASSIGNED = /^([a-zA-Z\$_]\w*[ \t]*?[:=][^=])/; NEXT_CHARACTER = /^\s*(\S)/; NOT_REGEX = ['NUMBER', 'REGEX', '++', '--', 'FALSE', 'NULL', 'TRUE', ']']; CALLABLE = ['IDENTIFIER', 'SUPER', ')', ']', '}', 'STRING', '@', 'THIS', '?', '::']; diff --git a/src/lexer.coffee b/src/lexer.coffee index 3cca3924b4..2244b76277 100644 --- a/src/lexer.coffee +++ b/src/lexer.coffee @@ -530,7 +530,7 @@ MULTILINER : /\n/g STRING_NEWLINES : /\n[ \t]*/g NO_NEWLINE : /^([+\*&|\/\-%=<>:!.\\][<>=&|]*|and|or|is|isnt|not|delete|typeof|instanceof)$/ HEREDOC_INDENT : /(\n+([ \t]*)|^([ \t]+))/g -ASSIGNED : /^([a-zA-Z\$_]\w*[ \t]*?[:=])/ +ASSIGNED : /^([a-zA-Z\$_]\w*[ \t]*?[:=][^=])/ NEXT_CHARACTER : /^\s*(\S)/ # Tokens which a regular expression will never immediately follow, but which diff --git a/test/test_literals.coffee b/test/test_literals.coffee index a062f32e37..13e629e3ae 100644 --- a/test/test_literals.coffee +++ b/test/test_literals.coffee @@ -114,3 +114,10 @@ obj: {class: 'höt'} obj.function: 'dog' ok obj.class + obj.function is 'hötdog' + + +# But keyword assignment should be smart enough not to stringify variables. +func: -> + this == 'this' + +ok func() is false From afa3bb4191a815bfbfa6aac9ed6615b2bc3ebec8 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Mon, 5 Jul 2010 08:51:45 -0400 Subject: [PATCH 19/33] added dsc's coffeecup to the resources section. --- documentation/index.html.erb | 5 +++++ index.html | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/documentation/index.html.erb b/documentation/index.html.erb index 18dfdcc7e0..1221b2e8c4 100644 --- a/documentation/index.html.erb +++ b/documentation/index.html.erb @@ -902,6 +902,11 @@ coffee --print app/scripts/*.coffee > concatenation.js — a plugin that serves and bundles CoffeeScript from within your Rails application. +
  • + dsc's CoffeeCup + — A Python WSGI middleware that compiles CoffeeScript to JavaScript + on-demand during development. +
  • sutto's Barista — a BistroCar alternative that integrates well with diff --git a/index.html b/index.html index 0fc7c122fa..c385d10e07 100644 --- a/index.html +++ b/index.html @@ -1818,6 +1818,11 @@

    — a plugin that serves and bundles CoffeeScript from within your Rails application.

  • +
  • + dsc's CoffeeCup + — A Python WSGI middleware that compiles CoffeeScript to JavaScript + on-demand during development. +
  • sutto's Barista — a BistroCar alternative that integrates well with From 577daf5457c695fcd693dcdcc788bc10150725ce Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Tue, 6 Jul 2010 22:20:42 -0400 Subject: [PATCH 20/33] fixing herecomment/indentation bugaboo ... issue #474 --- lib/rewriter.js | 9 ++++++--- src/rewriter.coffee | 6 ++---- test/test_comments.coffee | 17 +++++++++++++++++ 3 files changed, 25 insertions(+), 7 deletions(-) diff --git a/lib/rewriter.js b/lib/rewriter.js index 149ee6cdcc..dec7f5f621 100644 --- a/lib/rewriter.js +++ b/lib/rewriter.js @@ -50,10 +50,13 @@ this.tokens.splice(i + 2, 1); before && before[0] === 'OUTDENT' && post && (prev[0] === post[0]) && (post[0] === 'TERMINATOR') ? this.tokens.splice(i - 2, 1) : this.tokens.splice(i, 0, after); } else if (prev && !('TERMINATOR' === (_d = prev[0]) || 'INDENT' === _d || 'OUTDENT' === _d)) { - post && post[0] === 'TERMINATOR' && after && after[0] === 'OUTDENT' ? this.tokens.splice.apply(this.tokens, [i, 0].concat(this.tokens.splice(i + 2, 2))) : this.tokens.splice(i, 0, ['TERMINATOR', "\n", prev[2]]); + if (post && post[0] === 'TERMINATOR' && after && after[0] === 'OUTDENT') { + this.tokens.splice.apply(this.tokens, [i + 3, 0].concat(this.tokens.splice(i, 2))); + this.tokens.splice(i + 3, 0, ['TERMINATOR', "\n", prev[2]]); + } else { + this.tokens.splice(i, 0, ['TERMINATOR', "\n", prev[2]]); + } return 2; - } else if (before && before[0] === 'OUTDENT' && prev && prev[0] === 'TERMINATOR' && post && post[0] === 'TERMINATOR' && after && after[0] === 'ELSE') { - this.tokens.splice(i + 1, 0, this.tokens.splice(i - 2, 1)[0]); } return 1; }; diff --git a/src/rewriter.coffee b/src/rewriter.coffee index 90a6e80400..95a08da3ac 100644 --- a/src/rewriter.coffee +++ b/src/rewriter.coffee @@ -63,13 +63,11 @@ exports.Rewriter: class Rewriter @tokens.splice i, 0, after else if prev and prev[0] not in ['TERMINATOR', 'INDENT', 'OUTDENT'] if post and post[0] is 'TERMINATOR' and after and after[0] is 'OUTDENT' - @tokens.splice(i, 0, @tokens.splice(i + 2, 2)...) + @tokens.splice(i + 3, 0, @tokens.splice(i, 2)...) + @tokens.splice(i + 3, 0, ['TERMINATOR', "\n", prev[2]]) else @tokens.splice i, 0, ['TERMINATOR', "\n", prev[2]] return 2 - else if before and before[0] is 'OUTDENT' and prev and prev[0] is 'TERMINATOR' and - post and post[0] is 'TERMINATOR' and after and after[0] is 'ELSE' - @tokens.splice i + 1, 0, @tokens.splice(i - 2, 1)[0] return 1 # Leading newlines would introduce an ambiguity in the grammar, so we diff --git a/test/test_comments.coffee b/test/test_comments.coffee index ab5e8f0ebe..a1e54249c6 100644 --- a/test/test_comments.coffee +++ b/test/test_comments.coffee @@ -66,6 +66,23 @@ func: -> ### code +func: -> + one: -> + two: -> + three: -> + ### + block. + ### + four: -> + +fn1: -> + oneLevel: null +### +This isn't fine. +### + +ok ok + obj: { a: 'b' ### From 358edfb21f12e95181732956b7264e691f7fed68 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Tue, 6 Jul 2010 23:04:35 -0400 Subject: [PATCH 21/33] fixing return node squashing the possiblity of a ternary, when there should be one. Issue #475 --- lib/command.js | 6 +-- lib/grammar.js | 6 +-- lib/lexer.js | 18 ++----- lib/nodes.js | 122 +++++++++----------------------------------- src/nodes.coffee | 13 +++-- test/test_if.coffee | 7 +++ 6 files changed, 45 insertions(+), 127 deletions(-) diff --git a/lib/command.js b/lib/command.js index 51d21a4374..be19a8175d 100644 --- a/lib/command.js +++ b/lib/command.js @@ -153,11 +153,7 @@ }); }; return path.exists(dir, function(exists) { - if (exists) { - return compile(); - } else { - return exec(("mkdir -p " + dir), compile); - } + return exists ? compile() : exec(("mkdir -p " + dir), compile); }); }; lint = function(js) { diff --git a/lib/grammar.js b/lib/grammar.js index e6fd2a6507..3254e977cb 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -313,11 +313,7 @@ ], SimpleArgs: [ o("Expression"), o("SimpleArgs , Expression", function() { - if ($1 instanceof Array) { - return $1.concat([$3]); - } else { - return [$1].concat([$3]); - } + return $1 instanceof Array ? $1.concat([$3]) : [$1].concat([$3]); }) ], Try: [ diff --git a/lib/lexer.js b/lib/lexer.js index 958f40435f..e7f4fc2778 100644 --- a/lib/lexer.js +++ b/lib/lexer.js @@ -345,11 +345,7 @@ return prev[0] === '@'; } }).call(this); - if (accessor) { - return 'accessor'; - } else { - return false; - } + return accessor ? 'accessor' : false; }; Lexer.prototype.sanitizeHeredoc = function(doc, options) { var _d, attempt, indent, match; @@ -444,11 +440,7 @@ } throw new Error(("SyntaxError: Unterminated " + (levels.pop()[0]) + " starting on line " + (this.line + 1))); } - if (!i) { - return false; - } else { - return str.substring(0, i); - } + return !i ? false : str.substring(0, i); }; Lexer.prototype.interpolateString = function(str, escapeQuotes) { var _d, _e, _f, _g, _h, _i, _j, escaped, expr, group, i, idx, inner, interp, interpolated, lexer, match, nested, pi, quote, tag, tok, token, tokens, value; @@ -568,11 +560,7 @@ if (!(m = this.chunk.match(regex))) { return false; } - if (m) { - return m[index]; - } else { - return false; - } + return m ? m[index] : false; }; Lexer.prototype.unfinished = function() { var prev; diff --git a/lib/nodes.js b/lib/nodes.js index 180f05bfde..76538254bb 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -37,11 +37,7 @@ } top = this.topSensitive() ? this.options.top : del(this.options, 'top'); closure = this.isStatement() && !this.isPureStatement() && !top && !this.options.asStatement && !(this instanceof CommentNode) && !this.containsPureStatement(); - if (closure) { - return this.compileClosure(this.options); - } else { - return this.compileNode(this.options); - } + return closure ? this.compileClosure(this.options) : this.compileNode(this.options); }; BaseNode.prototype.compileClosure = function(o) { this.tab = o.indent; @@ -184,11 +180,7 @@ return this; }; Expressions.prototype.unwrap = function() { - if (this.expressions.length === 1) { - return this.expressions[0]; - } else { - return this; - } + return this.expressions.length === 1 ? this.expressions[0] : this; }; Expressions.prototype.empty = function() { return this.expressions.length === 0; @@ -208,11 +200,7 @@ }; Expressions.prototype.compile = function(o) { o = o || {}; - if (o.scope) { - return Expressions.__superClass__.compile.call(this, o); - } else { - return this.compileRoot(o); - } + return o.scope ? Expressions.__superClass__.compile.call(this, o) : this.compileRoot(o); }; Expressions.prototype.compileNode = function(o) { var _b, _c, _d, _e, node; @@ -232,11 +220,7 @@ code = o.globals ? this.compileNode(o) : this.compileWithDeclarations(o); code = code.replace(TRAILING_WHITESPACE, ''); code = code.replace(DOUBLE_PARENS, '($1)'); - if (o.noWrap) { - return code; - } else { - return "(function(){\n" + code + "\n})();\n"; - } + return o.noWrap ? code : ("(function(){\n" + code + "\n})();\n"); }; Expressions.prototype.compileWithDeclarations = function(o) { var code; @@ -255,11 +239,7 @@ compiledNode = node.compile(merge(o, { top: true })); - if (node.isStatement()) { - return compiledNode; - } else { - return "" + (this.idt()) + compiledNode + ";"; - } + return node.isStatement() ? compiledNode : ("" + (this.idt()) + compiledNode + ";"); }; return Expressions; })(); @@ -352,18 +332,10 @@ return this.hasProperties() && this.properties[this.properties.length - 1] instanceof SliceNode; }; ValueNode.prototype.makeReturn = function() { - if (this.hasProperties()) { - return ValueNode.__superClass__.makeReturn.call(this); - } else { - return this.base.makeReturn(); - } + return this.hasProperties() ? ValueNode.__superClass__.makeReturn.call(this) : this.base.makeReturn(); }; ValueNode.prototype.unwrap = function() { - if (this.properties.length) { - return this; - } else { - return this.base; - } + return this.properties.length ? this : this.base; }; ValueNode.prototype.isStatement = function() { return this.base.isStatement && this.base.isStatement() && !this.hasProperties(); @@ -413,11 +385,7 @@ this.last = part; } } - if (op && this.wrapped) { - return "(" + complete + ")"; - } else { - return complete; - } + return op && this.wrapped ? ("(" + complete + ")") : complete; }; return ValueNode; })(); @@ -460,11 +428,7 @@ return this; }; CallNode.prototype.prefix = function() { - if (this.isNew) { - return 'new '; - } else { - return ''; - } + return this.isNew ? 'new ' : ''; }; CallNode.prototype.superReference = function(o) { var meth, methname; @@ -501,11 +465,7 @@ }).call(this).join(', '); compilation = this.isSuper ? this.compileSuper(args, o) : ("" + (this.prefix()) + (this.variable.compile(o)) + "(" + args + ")"); } - if (o.operation && this.wrapped) { - return "(" + compilation + ")"; - } else { - return compilation; - } + return o.operation && this.wrapped ? ("(" + compilation + ")") : compilation; }; CallNode.prototype.compileSuper = function(args, o) { return "" + (this.superReference(o)) + ".call(this" + (args.length ? ', ' : '') + args + ")"; @@ -600,11 +560,7 @@ if (this.to !== this.toVar) { parts.push(this.to.compile(o)); } - if (parts.length) { - return "" + (parts.join('; ')) + ";"; - } else { - return ''; - } + return parts.length ? ("" + (parts.join('; ')) + ";") : ''; }; RangeNode.prototype.compileNode = function(o) { var equals, idx, op, step, vars; @@ -732,11 +688,7 @@ } } objects = objects.join(''); - if (indexOf(objects, '\n') >= 0) { - return "[\n" + (this.idt(1)) + objects + "\n" + this.tab + "]"; - } else { - return "[" + objects + "]"; - } + return indexOf(objects, '\n') >= 0 ? ("[\n" + (this.idt(1)) + objects + "\n" + this.tab + "]") : ("[" + objects + "]"); }; return ArrayNode; })(); @@ -876,11 +828,7 @@ if (stmt) { return ("" + this.tab + val + ";"); } - if (top) { - return val; - } else { - return "(" + val + ")"; - } + return top ? val : ("(" + val + ")"); }; AssignNode.prototype.compilePatternMatch = function(o) { var _b, _c, _d, accessClass, assigns, code, i, idx, isString, obj, oindex, olength, splat, val, valVar, value; @@ -1036,11 +984,7 @@ SplatNode.prototype.children = ['name']; SplatNode.prototype.compileNode = function(o) { var _b; - if ((typeof (_b = this.index) !== "undefined" && _b !== null)) { - return this.compileParam(o); - } else { - return this.name.compile(o); - } + return (typeof (_b = this.index) !== "undefined" && _b !== null) ? this.compileParam(o) : this.name.compile(o); }; SplatNode.prototype.compileParam = function(o) { var _b, _c, idx, len, name, pos, trailing, variadic; @@ -1249,11 +1193,7 @@ }); this.obj1 = _b[0]; this.obj2 = _b[1]; - if (this.isArray()) { - return this.compileOrTest(o); - } else { - return this.compileLoopTest(o); - } + return this.isArray() ? this.compileOrTest(o) : this.compileLoopTest(o); }; InNode.prototype.compileOrTest = function(o) { var _b, _c, _d, i, item, tests; @@ -1380,11 +1320,7 @@ if (code.substr(l - 1, 1) === ';') { code = code.substr(o, l - 1); } - if (this.expression instanceof AssignNode) { - return code; - } else { - return "(" + code + ")"; - } + return this.expression instanceof AssignNode ? code : ("(" + code + ")"); }; return ParentheticalNode; })(); @@ -1600,23 +1536,19 @@ }).call(this).join(' || '); }; IfNode.prototype.compileNode = function(o) { + return this.isStatement() ? this.compileStatement(o) : this.compileTernary(o); + }; + IfNode.prototype.makeReturn = function() { if (this.isStatement()) { - return this.compileStatement(o); + this.body = this.body && this.ensureExpressions(this.body.makeReturn()); + this.elseBody = this.elseBody && this.ensureExpressions(this.elseBody.makeReturn()); + return this; } else { - return this.compileTernary(o); + return new ReturnNode(this); } }; - IfNode.prototype.makeReturn = function() { - this.body = this.body && this.ensureExpressions(this.body.makeReturn()); - this.elseBody = this.elseBody && this.ensureExpressions(this.elseBody.makeReturn()); - return this; - }; IfNode.prototype.ensureExpressions = function(node) { - if (node instanceof Expressions) { - return node; - } else { - return new Expressions([node]); - } + return node instanceof Expressions ? node : new Expressions([node]); }; IfNode.prototype.compileStatement = function(o) { var body, child, comDent, condO, elsePart, ifDent, ifPart; @@ -1681,11 +1613,7 @@ func = new ValueNode(func, [new AccessorNode(meth)]); } call = new CallNode(func, args); - if (statement) { - return Expressions.wrap([call]); - } else { - return call; - } + return statement ? Expressions.wrap([call]) : call; } }); UTILITIES = { diff --git a/src/nodes.coffee b/src/nodes.coffee index 7b97b9dab3..c1c4f930ca 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -1290,10 +1290,10 @@ exports.IfNode: class IfNode extends BaseNode constructor: (condition, body, tags) -> @condition: condition @body: body - @elseBody: null + @elseBody: null @tags: tags or {} @condition: new OpNode('!', new ParentheticalNode(@condition)) if @tags.invert - @isChain: false + @isChain: false bodyNode: -> @body?.unwrap() elseBodyNode: -> @elseBody?.unwrap() @@ -1345,9 +1345,12 @@ exports.IfNode: class IfNode extends BaseNode if @isStatement() then @compileStatement(o) else @compileTernary(o) makeReturn: -> - @body: and @ensureExpressions(@body.makeReturn()) - @elseBody: and @ensureExpressions(@elseBody.makeReturn()) - this + if @isStatement() + @body: and @ensureExpressions(@body.makeReturn()) + @elseBody: and @ensureExpressions(@elseBody.makeReturn()) + this + else + new ReturnNode this ensureExpressions: (node) -> if node instanceof Expressions then node else new Expressions [node] diff --git a/test/test_if.coffee b/test/test_if.coffee index d495dd9d73..edebb0c076 100644 --- a/test/test_if.coffee +++ b/test/test_if.coffee @@ -60,3 +60,10 @@ else if true else ok result is undefined + + +# Return an if with no else. +func: -> + return (if false then callback()) + +ok func() is null From 4fc4edc7a0371b7be8ed0df2d6dd690b3f1fcb8c Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Thu, 8 Jul 2010 10:18:18 -0400 Subject: [PATCH 22/33] adding wavded's gedit-coffeescript to the resources section of the docs --- documentation/index.html.erb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/documentation/index.html.erb b/documentation/index.html.erb index 1221b2e8c4..6bab4894bb 100644 --- a/documentation/index.html.erb +++ b/documentation/index.html.erb @@ -888,6 +888,10 @@ coffee --print app/scripts/*.coffee > concatenation.js kchmck's Vim CoffeeScript — which adds Vim syntax highlighting and indentation support.
  • +
  • + wavded's gedit-coffeescript + — a CoffeeScript syntax highlighter for the gedit text editor. +
  • yeungda's coffeescript-idea — a plugin for IntelliJ IDEA and RubyMine providing syntax highlighting. From 64b5ccc524acd7efb0dbe1302bdad3417ae449c4 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Fri, 9 Jul 2010 01:01:31 -0400 Subject: [PATCH 23/33] Fixes issue #477, missing global helpers in REPL. --- lib/nodes.js | 4 ++-- src/nodes.coffee | 4 ++-- test/test_compilation.coffee | 6 ++++++ 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/lib/nodes.js b/lib/nodes.js index 76538254bb..12b51fc08e 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -217,7 +217,7 @@ var code; o.indent = (this.tab = o.noWrap ? '' : TAB); o.scope = new Scope(null, this, null); - code = o.globals ? this.compileNode(o) : this.compileWithDeclarations(o); + code = this.compileWithDeclarations(o); code = code.replace(TRAILING_WHITESPACE, ''); code = code.replace(DOUBLE_PARENS, '($1)'); return o.noWrap ? code : ("(function(){\n" + code + "\n})();\n"); @@ -228,7 +228,7 @@ if (o.scope.hasAssignments(this)) { code = ("" + (this.tab) + "var " + (o.scope.compiledAssignments()) + ";\n" + code); } - if (o.scope.hasDeclarations(this)) { + if (!o.globals && o.scope.hasDeclarations(this)) { code = ("" + (this.tab) + "var " + (o.scope.compiledDeclarations()) + ";\n" + code); } return code; diff --git a/src/nodes.coffee b/src/nodes.coffee index c1c4f930ca..894526d026 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -199,7 +199,7 @@ exports.Expressions: class Expressions extends BaseNode compileRoot: (o) -> o.indent: @tab: if o.noWrap then '' else TAB o.scope: new Scope(null, this, null) - code: if o.globals then @compileNode(o) else @compileWithDeclarations(o) + code: @compileWithDeclarations(o) code: code.replace(TRAILING_WHITESPACE, '') code: code.replace(DOUBLE_PARENS, '($1)') if o.noWrap then code else "(function(){\n$code\n})();\n" @@ -209,7 +209,7 @@ exports.Expressions: class Expressions extends BaseNode compileWithDeclarations: (o) -> code: @compileNode(o) code: "${@tab}var ${o.scope.compiledAssignments()};\n$code" if o.scope.hasAssignments(this) - code: "${@tab}var ${o.scope.compiledDeclarations()};\n$code" if o.scope.hasDeclarations(this) + code: "${@tab}var ${o.scope.compiledDeclarations()};\n$code" if not o.globals and o.scope.hasDeclarations(this) code # Compiles a single expression within the expressions body. If we need to diff --git a/test/test_compilation.coffee b/test/test_compilation.coffee index c80bc8e2f4..3ff3b8793d 100644 --- a/test/test_compilation.coffee +++ b/test/test_compilation.coffee @@ -6,3 +6,9 @@ js: CoffeeScript.compile("one\r\ntwo", {noWrap: on}) ok js is "one;\ntwo;" + +global.resultArray: [] +CoffeeScript.run("resultArray.push i for i of global", {noWrap: on, globals: on, source: 'tests'}) + +ok 'setInterval' in global.resultArray + From 2f8a29b5a049fa44f29b29b626c5a3a029ccf290 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sat, 10 Jul 2010 08:44:30 -0400 Subject: [PATCH 24/33] fixing a comment/block-comment combination lexing regex issue. Ticket #478 --- lib/lexer.js | 2 +- src/lexer.coffee | 2 +- test/test_comments.coffee | 7 +++++++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/lib/lexer.js b/lib/lexer.js index e7f4fc2778..377d127375 100644 --- a/lib/lexer.js +++ b/lib/lexer.js @@ -580,7 +580,7 @@ INTERPOLATION = /^\$([a-zA-Z_@]\w*(\.\w+)*)/; OPERATOR = /^(-[\-=>]?|\+[+=]?|[*&|\/%=<>:!?]+)([ \t]*)/; WHITESPACE = /^([ \t]+)/; - COMMENT = /^(\s*#{3}(?!#)[ \t]*\n+([\s\S]*?)[ \t]*\n+[ \t]*#{3}|(\s*#[^\n]*)+)/; + COMMENT = /^(\s*#{3}(?!#)[ \t]*\n+([\s\S]*?)[ \t]*\n+[ \t]*#{3}|(\s*#(?!##[^#])[^\n]*)+)/; CODE = /^((-|=)>)/; MULTI_DENT = /^((\n([ \t]*))+)(\.)?/; LAST_DENTS = /\n([ \t]*)/g; diff --git a/src/lexer.coffee b/src/lexer.coffee index 2244b76277..d1e5d2a33b 100644 --- a/src/lexer.coffee +++ b/src/lexer.coffee @@ -511,7 +511,7 @@ HEREDOC : /^("{6}|'{6}|"{3}\n?([\s\S]*?)\n?([ \t]*)"{3}|'{3}\n?([\s\S]*?)\ INTERPOLATION : /^\$([a-zA-Z_@]\w*(\.\w+)*)/ OPERATOR : /^(-[\-=>]?|\+[+=]?|[*&|\/%=<>:!?]+)([ \t]*)/ WHITESPACE : /^([ \t]+)/ -COMMENT : /^(\s*#{3}(?!#)[ \t]*\n+([\s\S]*?)[ \t]*\n+[ \t]*#{3}|(\s*#[^\n]*)+)/ +COMMENT : /^(\s*#{3}(?!#)[ \t]*\n+([\s\S]*?)[ \t]*\n+[ \t]*#{3}|(\s*#(?!##[^#])[^\n]*)+)/ CODE : /^((-|=)>)/ MULTI_DENT : /^((\n([ \t]*))+)(\.)?/ LAST_DENTS : /\n([ \t]*)/g diff --git a/test/test_comments.coffee b/test/test_comments.coffee index a1e54249c6..27e6afa844 100644 --- a/test/test_comments.coffee +++ b/test/test_comments.coffee @@ -1,3 +1,10 @@ +# comment before a ... + +### +... block comment. +### + + # comment func: -> # comment From 7a16db9ad33af024d0e08d146b770c9c78fdcec8 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sat, 10 Jul 2010 09:01:22 -0400 Subject: [PATCH 25/33] fixing inline-loop object-in-array tests for instance variables. Issue #481 --- lib/nodes.js | 2 +- src/nodes.coffee | 6 +++--- test/test_operations.coffee | 8 ++++++++ 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/lib/nodes.js b/lib/nodes.js index 12b51fc08e..d77d27b442 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -1218,7 +1218,7 @@ i = _c[0]; l = _c[1]; prefix = this.obj1 !== this.obj2 ? this.obj1 + '; ' : ''; - return "!!(function(){ " + (prefix) + "for (var " + i + "=0, " + l + "=" + (this.arr1) + ".length; " + i + "<" + l + "; " + i + "++) if (" + (this.arr2) + "[" + i + "] === " + this.obj2 + ") return true; })()"; + return "!!(function(){ " + (prefix) + "for (var " + i + "=0, " + l + "=" + (this.arr1) + ".length; " + i + "<" + l + "; " + i + "++) if (" + (this.arr2) + "[" + i + "] === " + this.obj2 + ") return true; }).call(this)"; }; return InNode; })(); diff --git a/src/nodes.coffee b/src/nodes.coffee index 894526d026..19a843b883 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -136,9 +136,9 @@ exports.BaseNode: class BaseNode class: 'BaseNode' children: [] - unwrap: -> this + unwrap: -> this isStatement: -> no - isPureStatement: -> no + isPureStatement: -> no topSensitive: -> no #### Expressions @@ -1079,7 +1079,7 @@ exports.InNode: class InNode extends BaseNode [@arr1, @arr2]: @array.compileReference o, {precompile: yes} [i, l]: [o.scope.freeVariable(), o.scope.freeVariable()] prefix: if @obj1 isnt @obj2 then @obj1 + '; ' else '' - "!!(function(){ ${prefix}for (var $i=0, $l=${@arr1}.length; $i<$l; $i++) if (${@arr2}[$i] === $@obj2) return true; })()" + "!!(function(){ ${prefix}for (var $i=0, $l=${@arr1}.length; $i<$l; $i++) if (${@arr2}[$i] === $@obj2) return true; }).call(this)" #### TryNode diff --git a/test/test_operations.coffee b/test/test_operations.coffee index 839743e61a..6ed88a04c1 100644 --- a/test/test_operations.coffee +++ b/test/test_operations.coffee @@ -51,6 +51,14 @@ list: [1, 2, 7] result: if list[2] in [7, 10] then 100 else -1 ok result is 100 +# And with array presence on an instance variable. +obj: { + list: [1, 2, 3, 4, 5] + in_list: (value) -> value in @list +} +ok obj.in_list 4 +ok not obj.in_list 0 + # Non-spaced values still work. x: 10 y: -5 From 6f32fe27f89afa901597e4e21ad03a581d5a0ce3 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sat, 10 Jul 2010 09:49:01 -0400 Subject: [PATCH 26/33] better formatting for top-level closured-values. --- lib/nodes.js | 20 +++++++++++++------- src/nodes.coffee | 28 ++++++++++++++++++---------- 2 files changed, 31 insertions(+), 17 deletions(-) diff --git a/lib/nodes.js b/lib/nodes.js index d77d27b442..2a94644b20 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -285,19 +285,18 @@ return true; }; ReturnNode.prototype.children = ['expression']; - ReturnNode.prototype.topSensitive = function() { - return true; - }; ReturnNode.prototype.makeReturn = function() { return this; }; - ReturnNode.prototype.compileNode = function(o) { + ReturnNode.prototype.compile = function(o) { var expr; expr = this.expression.makeReturn(); if (!(expr instanceof ReturnNode)) { return expr.compile(o); } - del(o, 'top'); + return ReturnNode.__superClass__.compile.call(this, o); + }; + ReturnNode.prototype.compileNode = function(o) { if (this.expression.isStatement()) { o.asStatement = true; } @@ -354,6 +353,9 @@ } return node === this; }; + ValueNode.prototype.compile = function(o) { + return !o.top || this.properties.length ? ValueNode.__superClass__.compile.call(this, o) : this.base.compile(o); + }; ValueNode.prototype.compileNode = function(o) { var _b, _c, baseline, complete, i, only, op, part, prop, props, temp; only = del(o, 'onlyFirst'); @@ -1310,11 +1312,15 @@ ParentheticalNode.prototype.makeReturn = function() { return this.expression.makeReturn(); }; + ParentheticalNode.prototype.topSensitive = function() { + return true; + }; ParentheticalNode.prototype.compileNode = function(o) { - var code, l; + var code, l, top; + top = del(o, 'top'); code = this.expression.compile(o); if (this.isStatement()) { - return code; + return (top ? ("" + this.tab + code + ";") : code); } l = code.length; if (code.substr(l - 1, 1) === ';') { diff --git a/src/nodes.coffee b/src/nodes.coffee index 19a843b883..e06bb7a532 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -266,16 +266,15 @@ exports.ReturnNode: class ReturnNode extends BaseNode constructor: (expression) -> @expression: expression - topSensitive: -> - true - makeReturn: -> this - compileNode: (o) -> + compile: (o) -> expr: @expression.makeReturn() - return expr.compile(o) unless expr instanceof ReturnNode - del o, 'top' + return expr.compile o unless expr instanceof ReturnNode + super o + + compileNode: (o) -> o.asStatement: true if @expression.isStatement() "${@tab}return ${@expression.compile(o)};" @@ -336,15 +335,19 @@ exports.ValueNode: class ValueNode extends BaseNode while node instanceof CallNode then node: node.variable node is this + # Override compile to unwrap the value when possible. + compile: (o) -> + if not o.top or @properties.length then super(o) else @base.compile(o) + # We compile a value to JavaScript by compiling and joining each property. # Things get much more insteresting if the chain of properties has *soak* # operators `?.` interspersed. Then we have to take care not to accidentally # evaluate a anything twice when building the soak chain. compileNode: (o) -> - only: del(o, 'onlyFirst') - op: del(o, 'operation') + only: del o, 'onlyFirst' + op: del o, 'operation' props: if only then @properties[0...@properties.length - 1] else @properties - o.chainRoot: or this + o.chainRoot: or this baseline: @base.compile o baseline: "($baseline)" if @hasProperties() and (@base instanceof ObjectNode or @isNumber()) complete: @last: baseline @@ -1175,9 +1178,14 @@ exports.ParentheticalNode: class ParentheticalNode extends BaseNode makeReturn: -> @expression.makeReturn() + topSensitive: -> + yes + compileNode: (o) -> + top: del o, 'top' code: @expression.compile(o) - return code if @isStatement() + if @isStatement() + return (if top then "$@tab$code;" else code) l: code.length code: code.substr(o, l-1) if code.substr(l-1, 1) is ';' if @expression instanceof AssignNode then code else "($code)" From 49020208f9e45127aad2dd0eb78126c7f777823a Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sat, 10 Jul 2010 11:17:44 -0400 Subject: [PATCH 27/33] better printing for OpNodes with running with --nodes --- src/nodes.coffee | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/nodes.coffee b/src/nodes.coffee index e06bb7a532..275d9b350f 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -111,9 +111,10 @@ exports.BaseNode: class BaseNode # `toString` representation of the node, for inspecting the parse tree. # This is what `coffee --nodes` prints out. - toString: (idt) -> + toString: (idt, override) -> idt: or '' - '\n' + idt + @class + (child.toString(idt + TAB) for child in @collectChildren()).join('') + children: (child.toString idt + TAB for child in @collectChildren()).join('') + '\n' + idt + (override or @class) + children eachChild: (func) -> return unless @children @@ -1014,6 +1015,9 @@ exports.OpNode: class OpNode extends BaseNode isChainable: -> indexOf(@CHAINABLE, @operator) >= 0 + toString: (idt) -> + super(idt, @class + ' ' + @operator) + compileNode: (o) -> o.operation: true return @compileChain(o) if @isChainable() and @first.unwrap() instanceof OpNode and @first.unwrap().isChainable() From 1c7d51a2c477acbaa86154735da4aa60345f8661 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sat, 10 Jul 2010 11:27:43 -0400 Subject: [PATCH 28/33] fixing issue #485, unary minus following an existential operator. --- lib/grammar.js | 4 ++-- lib/lexer.js | 7 ++++++- lib/nodes.js | 10 +++++++--- lib/parser.js | 14 ++++---------- src/grammar.coffee | 4 ++-- src/lexer.coffee | 9 ++++++--- test/test_existence.coffee | 5 +++++ 7 files changed, 32 insertions(+), 21 deletions(-) diff --git a/lib/grammar.js b/lib/grammar.js index 3254e977cb..f6205aefd8 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -565,7 +565,7 @@ return new OpNode('&&', $1, $3); }), o("Expression || Expression", function() { return new OpNode('||', $1, $3); - }), o("Expression ? Expression", function() { + }), o("Expression OP? Expression", function() { return new OpNode('?', $1, $3); }), o("Expression -= Expression", function() { return new OpNode('-=', $1, $3); @@ -596,7 +596,7 @@ }) ] }; - operators = [["left", '?'], ["nonassoc", 'UMINUS', 'UPLUS', '!', '!!', '~', '++', '--'], ["left", '*', '/', '%'], ["left", '+', '-'], ["left", '<<', '>>', '>>>'], ["left", '&', '|', '^'], ["left", '<=', '<', '>', '>='], ["right", 'DELETE', 'INSTANCEOF', 'TYPEOF'], ["left", '==', '!='], ["left", '&&', '||'], ["right", '-=', '+=', '/=', '*=', '%=', '||=', '&&=', '?='], ["left", '.'], ["right", 'INDENT'], ["left", 'OUTDENT'], ["right", 'WHEN', 'LEADING_WHEN', 'IN', 'OF', 'BY', 'THROW'], ["right", 'FOR', 'WHILE', 'UNTIL', 'LOOP', 'NEW', 'SUPER', 'CLASS'], ["left", 'EXTENDS'], ["right", 'ASSIGN', 'RETURN'], ["right", '->', '=>', 'UNLESS', 'IF', 'ELSE']]; + operators = [["left", '?'], ["nonassoc", 'UMINUS', 'UPLUS', '!', '!!', '~', '++', '--'], ["left", '*', '/', '%'], ["left", '+', '-'], ["left", '<<', '>>', '>>>'], ["left", '&', '|', '^'], ["left", '<=', '<', '>', '>='], ["right", 'DELETE', 'INSTANCEOF', 'TYPEOF'], ["left", '==', '!='], ["left", '&&', '||', 'OP?'], ["right", '-=', '+=', '/=', '*=', '%=', '||=', '&&=', '?='], ["left", '.'], ["right", 'INDENT'], ["left", 'OUTDENT'], ["right", 'WHEN', 'LEADING_WHEN', 'IN', 'OF', 'BY', 'THROW'], ["right", 'FOR', 'WHILE', 'UNTIL', 'LOOP', 'NEW', 'SUPER', 'CLASS'], ["left", 'EXTENDS'], ["right", 'ASSIGN', 'RETURN'], ["right", '->', '=>', 'UNLESS', 'IF', 'ELSE']]; tokens = []; _a = grammar; for (name in _a) { if (__hasProp.call(_a, name)) { diff --git a/lib/lexer.js b/lib/lexer.js index 377d127375..6a108bb026 100644 --- a/lib/lexer.js +++ b/lib/lexer.js @@ -306,6 +306,8 @@ } } else if (value === ';') { tag = 'TERMINATOR'; + } else if (value === '?' && prevSpaced) { + tag = 'OP?'; } else if (include(CALLABLE, this.tag()) && !prevSpaced) { if (value === '(') { tag = 'CALL_START'; @@ -363,6 +365,9 @@ }; Lexer.prototype.tagHalfAssignment = function(tag) { var last; + if (tag === 'OP?') { + tag = '?'; + } last = this.tokens.pop(); this.tokens.push([("" + tag + "="), ("" + tag + "="), last[2]]); return true; @@ -600,7 +605,7 @@ NOT_REGEX = ['NUMBER', 'REGEX', '++', '--', 'FALSE', 'NULL', 'TRUE', ']']; CALLABLE = ['IDENTIFIER', 'SUPER', ')', ']', '}', 'STRING', '@', 'THIS', '?', '::']; LINE_BREAK = ['INDENT', 'OUTDENT', 'TERMINATOR']; - HALF_ASSIGNMENTS = ['-', '+', '/', '*', '%', '||', '&&', '?']; + HALF_ASSIGNMENTS = ['-', '+', '/', '*', '%', '||', '&&', '?', 'OP?']; CONVERSIONS = { 'and': '&&', 'or': '||', diff --git a/lib/nodes.js b/lib/nodes.js index 2a94644b20..d34918569e 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -96,10 +96,10 @@ BaseNode.prototype.traverse = function(block) { return this.traverseChildren(true, block); }; - BaseNode.prototype.toString = function(idt) { - var _b, _c, _d, _e, child; + BaseNode.prototype.toString = function(idt, override) { + var _b, _c, _d, _e, child, children; idt = idt || ''; - return '\n' + idt + this['class'] + (function() { + children = (function() { _b = []; _d = this.collectChildren(); for (_c = 0, _e = _d.length; _c < _e; _c++) { child = _d[_c]; @@ -107,6 +107,7 @@ } return _b; }).call(this).join(''); + return '\n' + idt + (override || this['class']) + children; }; BaseNode.prototype.eachChild = function(func) { var _b, _c, _d, _e, _f, _g, _h, attr, child; @@ -1114,6 +1115,9 @@ OpNode.prototype.isChainable = function() { return indexOf(this.CHAINABLE, this.operator) >= 0; }; + OpNode.prototype.toString = function(idt) { + return OpNode.__superClass__.toString.call(this, idt, this['class'] + ' ' + this.operator); + }; OpNode.prototype.compileNode = function(o) { o.operation = true; if (this.isChainable() && this.first.unwrap() instanceof OpNode && this.first.unwrap().isChainable()) { diff --git a/lib/parser.js b/lib/parser.js index a782a1c291..56c7d7d76c 100755 --- a/lib/parser.js +++ b/lib/parser.js @@ -2,8 +2,8 @@ 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,"Value":14,"Call":15,"Code":16,"Operation":17,"Assign":18,"If":19,"Try":20,"While":21,"For":22,"Switch":23,"Extends":24,"Class":25,"Splat":26,"Existence":27,"Comment":28,"INDENT":29,"OUTDENT":30,"Identifier":31,"IDENTIFIER":32,"AlphaNumeric":33,"NUMBER":34,"STRING":35,"Literal":36,"JS":37,"REGEX":38,"TRUE":39,"FALSE":40,"YES":41,"NO":42,"ON":43,"OFF":44,"Assignable":45,"ASSIGN":46,"AssignObj":47,"RETURN":48,"HERECOMMENT":49,"?":50,"PARAM_START":51,"ParamList":52,"PARAM_END":53,"FuncGlyph":54,"->":55,"=>":56,"OptComma":57,",":58,"Param":59,"PARAM":60,".":61,"SimpleAssignable":62,"Accessor":63,"Invocation":64,"ThisProperty":65,"Array":66,"Object":67,"Parenthetical":68,"Range":69,"This":70,"NULL":71,"PROPERTY_ACCESS":72,"PROTOTYPE_ACCESS":73,"::":74,"SOAK_ACCESS":75,"Index":76,"Slice":77,"INDEX_START":78,"INDEX_END":79,"INDEX_SOAK":80,"INDEX_PROTO":81,"{":82,"AssignList":83,"}":84,"CLASS":85,"EXTENDS":86,"ClassBody":87,"ClassAssign":88,"Super":89,"NEW":90,"Arguments":91,"CALL_START":92,"ArgList":93,"CALL_END":94,"SUPER":95,"THIS":96,"@":97,"[":98,"]":99,"SimpleArgs":100,"TRY":101,"Catch":102,"FINALLY":103,"CATCH":104,"THROW":105,"(":106,")":107,"WhileSource":108,"WHILE":109,"WHEN":110,"UNTIL":111,"Loop":112,"LOOP":113,"FOR":114,"ForVariables":115,"ForSource":116,"ForValue":117,"IN":118,"OF":119,"BY":120,"SWITCH":121,"Whens":122,"ELSE":123,"When":124,"LEADING_WHEN":125,"IfBlock":126,"IF":127,"UNLESS":128,"!":129,"!!":130,"-":131,"+":132,"~":133,"--":134,"++":135,"DELETE":136,"TYPEOF":137,"*":138,"/":139,"%":140,"<<":141,">>":142,">>>":143,"&":144,"|":145,"^":146,"<=":147,"<":148,">":149,">=":150,"==":151,"!=":152,"&&":153,"||":154,"-=":155,"+=":156,"/=":157,"*=":158,"%=":159,"||=":160,"&&=":161,"?=":162,"INSTANCEOF":163,"$accept":0,"$end":1}, -terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","29":"INDENT","30":"OUTDENT","32":"IDENTIFIER","34":"NUMBER","35":"STRING","37":"JS","38":"REGEX","39":"TRUE","40":"FALSE","41":"YES","42":"NO","43":"ON","44":"OFF","46":"ASSIGN","48":"RETURN","49":"HERECOMMENT","50":"?","51":"PARAM_START","53":"PARAM_END","55":"->","56":"=>","58":",","60":"PARAM","61":".","71":"NULL","72":"PROPERTY_ACCESS","73":"PROTOTYPE_ACCESS","74":"::","75":"SOAK_ACCESS","78":"INDEX_START","79":"INDEX_END","80":"INDEX_SOAK","81":"INDEX_PROTO","82":"{","84":"}","85":"CLASS","86":"EXTENDS","90":"NEW","92":"CALL_START","94":"CALL_END","95":"SUPER","96":"THIS","97":"@","98":"[","99":"]","101":"TRY","103":"FINALLY","104":"CATCH","105":"THROW","106":"(","107":")","109":"WHILE","110":"WHEN","111":"UNTIL","113":"LOOP","114":"FOR","118":"IN","119":"OF","120":"BY","121":"SWITCH","123":"ELSE","125":"LEADING_WHEN","127":"IF","128":"UNLESS","129":"!","130":"!!","131":"-","132":"+","133":"~","134":"--","135":"++","136":"DELETE","137":"TYPEOF","138":"*","139":"/","140":"%","141":"<<","142":">>","143":">>>","144":"&","145":"|","146":"^","147":"<=","148":"<","149":">","150":">=","151":"==","152":"!=","153":"&&","154":"||","155":"-=","156":"+=","157":"/=","158":"*=","159":"%=","160":"||=","161":"&&=","162":"?=","163":"INSTANCEOF"}, +symbols_: {"error":2,"Root":3,"TERMINATOR":4,"Body":5,"Block":6,"Line":7,"Expression":8,"Statement":9,"Return":10,"Throw":11,"BREAK":12,"CONTINUE":13,"Value":14,"Call":15,"Code":16,"Operation":17,"Assign":18,"If":19,"Try":20,"While":21,"For":22,"Switch":23,"Extends":24,"Class":25,"Splat":26,"Existence":27,"Comment":28,"INDENT":29,"OUTDENT":30,"Identifier":31,"IDENTIFIER":32,"AlphaNumeric":33,"NUMBER":34,"STRING":35,"Literal":36,"JS":37,"REGEX":38,"TRUE":39,"FALSE":40,"YES":41,"NO":42,"ON":43,"OFF":44,"Assignable":45,"ASSIGN":46,"AssignObj":47,"RETURN":48,"HERECOMMENT":49,"?":50,"PARAM_START":51,"ParamList":52,"PARAM_END":53,"FuncGlyph":54,"->":55,"=>":56,"OptComma":57,",":58,"Param":59,"PARAM":60,".":61,"SimpleAssignable":62,"Accessor":63,"Invocation":64,"ThisProperty":65,"Array":66,"Object":67,"Parenthetical":68,"Range":69,"This":70,"NULL":71,"PROPERTY_ACCESS":72,"PROTOTYPE_ACCESS":73,"::":74,"SOAK_ACCESS":75,"Index":76,"Slice":77,"INDEX_START":78,"INDEX_END":79,"INDEX_SOAK":80,"INDEX_PROTO":81,"{":82,"AssignList":83,"}":84,"CLASS":85,"EXTENDS":86,"ClassBody":87,"ClassAssign":88,"Super":89,"NEW":90,"Arguments":91,"CALL_START":92,"ArgList":93,"CALL_END":94,"SUPER":95,"THIS":96,"@":97,"[":98,"]":99,"SimpleArgs":100,"TRY":101,"Catch":102,"FINALLY":103,"CATCH":104,"THROW":105,"(":106,")":107,"WhileSource":108,"WHILE":109,"WHEN":110,"UNTIL":111,"Loop":112,"LOOP":113,"FOR":114,"ForVariables":115,"ForSource":116,"ForValue":117,"IN":118,"OF":119,"BY":120,"SWITCH":121,"Whens":122,"ELSE":123,"When":124,"LEADING_WHEN":125,"IfBlock":126,"IF":127,"UNLESS":128,"!":129,"!!":130,"-":131,"+":132,"~":133,"--":134,"++":135,"DELETE":136,"TYPEOF":137,"*":138,"/":139,"%":140,"<<":141,">>":142,">>>":143,"&":144,"|":145,"^":146,"<=":147,"<":148,">":149,">=":150,"==":151,"!=":152,"&&":153,"||":154,"OP?":155,"-=":156,"+=":157,"/=":158,"*=":159,"%=":160,"||=":161,"&&=":162,"?=":163,"INSTANCEOF":164,"$accept":0,"$end":1}, +terminals_: {"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","29":"INDENT","30":"OUTDENT","32":"IDENTIFIER","34":"NUMBER","35":"STRING","37":"JS","38":"REGEX","39":"TRUE","40":"FALSE","41":"YES","42":"NO","43":"ON","44":"OFF","46":"ASSIGN","48":"RETURN","49":"HERECOMMENT","50":"?","51":"PARAM_START","53":"PARAM_END","55":"->","56":"=>","58":",","60":"PARAM","61":".","71":"NULL","72":"PROPERTY_ACCESS","73":"PROTOTYPE_ACCESS","74":"::","75":"SOAK_ACCESS","78":"INDEX_START","79":"INDEX_END","80":"INDEX_SOAK","81":"INDEX_PROTO","82":"{","84":"}","85":"CLASS","86":"EXTENDS","90":"NEW","92":"CALL_START","94":"CALL_END","95":"SUPER","96":"THIS","97":"@","98":"[","99":"]","101":"TRY","103":"FINALLY","104":"CATCH","105":"THROW","106":"(","107":")","109":"WHILE","110":"WHEN","111":"UNTIL","113":"LOOP","114":"FOR","118":"IN","119":"OF","120":"BY","121":"SWITCH","123":"ELSE","125":"LEADING_WHEN","127":"IF","128":"UNLESS","129":"!","130":"!!","131":"-","132":"+","133":"~","134":"--","135":"++","136":"DELETE","137":"TYPEOF","138":"*","139":"/","140":"%","141":"<<","142":">>","143":">>>","144":"&","145":"|","146":"^","147":"<=","148":"<","149":">","150":">=","151":"==","152":"!=","153":"&&","154":"||","155":"OP?","156":"-=","157":"+=","158":"/=","159":"*=","160":"%=","161":"||=","162":"&&=","163":"?=","164":"INSTANCEOF"}, productions_: [0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[31,1],[33,1],[33,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[18,3],[47,1],[47,1],[47,3],[47,3],[47,1],[10,2],[10,1],[28,1],[27,2],[16,5],[16,2],[54,1],[54,1],[57,0],[57,1],[52,0],[52,1],[52,3],[59,1],[59,4],[26,4],[62,1],[62,2],[62,2],[62,1],[45,1],[45,1],[45,1],[14,1],[14,1],[14,1],[14,1],[14,1],[14,1],[63,2],[63,2],[63,1],[63,2],[63,1],[63,1],[76,3],[76,2],[76,2],[67,4],[83,0],[83,1],[83,3],[83,4],[83,6],[25,2],[25,4],[25,5],[25,7],[88,1],[88,3],[87,0],[87,1],[87,3],[15,1],[15,1],[15,2],[15,2],[24,3],[64,2],[64,2],[91,4],[89,2],[70,1],[70,1],[65,2],[69,6],[69,7],[77,6],[77,7],[66,4],[93,0],[93,1],[93,3],[93,4],[93,6],[100,1],[100,3],[20,3],[20,4],[20,5],[102,3],[11,2],[68,3],[108,2],[108,4],[108,2],[108,4],[21,2],[21,2],[21,2],[21,1],[112,2],[112,2],[22,4],[22,4],[22,4],[117,1],[117,1],[117,1],[115,1],[115,3],[116,2],[116,2],[116,4],[116,4],[116,4],[116,6],[116,6],[23,5],[23,7],[23,4],[23,6],[122,1],[122,2],[124,3],[124,4],[126,3],[126,3],[126,5],[126,3],[19,1],[19,3],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,4],[17,4]], performAction: function anonymous(yytext,yyleng,yylineno,yy) { @@ -265,13 +265,7 @@ case 124:this.$ = $$[$0-6+1-1].concat($$[$0-6+4-1]); break; case 125:this.$ = $$[$0-1+1-1]; break; -case 126:this.$ = (function () { - if ($$[$0-3+1-1] instanceof Array) { - return $$[$0-3+1-1].concat([$$[$0-3+3-1]]); - } else { - return [$$[$0-3+1-1]].concat([$$[$0-3+3-1]]); - } - }()); +case 126:this.$ = $$[$0-3+1-1] instanceof Array ? $$[$0-3+1-1].concat([$$[$0-3+3-1]]) : [$$[$0-3+1-1]].concat([$$[$0-3+3-1]]); break; case 127:this.$ = new TryNode($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); break; @@ -505,7 +499,7 @@ case 218:this.$ = new OpNode('!', new ParentheticalNode(new OpNode('in', $$[$0-4 break; } }, -table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[3]},{"1":[2,2],"28":88,"49":[1,56]},{"1":[2,3],"4":[1,89]},{"4":[1,90]},{"1":[2,5],"4":[2,5],"30":[2,5]},{"5":91,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[1,92],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,8],"4":[2,8],"30":[2,8],"50":[1,114],"61":[1,131],"107":[2,8],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,9],"4":[2,9],"30":[2,9],"107":[2,9],"108":134,"109":[1,79],"111":[1,80],"114":[1,135],"127":[1,132],"128":[1,133]},{"1":[2,14],"4":[2,14],"29":[2,14],"30":[2,14],"50":[2,14],"58":[2,14],"61":[2,14],"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,14],"80":[1,146],"81":[1,147],"84":[2,14],"91":136,"92":[1,138],"94":[2,14],"99":[2,14],"107":[2,14],"109":[2,14],"110":[2,14],"111":[2,14],"114":[2,14],"118":[2,14],"119":[2,14],"120":[2,14],"127":[2,14],"128":[2,14],"129":[2,14],"131":[2,14],"132":[2,14],"134":[2,14],"135":[2,14],"138":[2,14],"139":[2,14],"140":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[2,14],"148":[2,14],"149":[2,14],"150":[2,14],"151":[2,14],"152":[2,14],"153":[2,14],"154":[2,14],"155":[2,14],"156":[2,14],"157":[2,14],"158":[2,14],"159":[2,14],"160":[2,14],"161":[2,14],"162":[2,14],"163":[2,14]},{"1":[2,15],"4":[2,15],"29":[2,15],"30":[2,15],"50":[2,15],"58":[2,15],"61":[2,15],"79":[2,15],"84":[2,15],"94":[2,15],"99":[2,15],"107":[2,15],"109":[2,15],"110":[2,15],"111":[2,15],"114":[2,15],"118":[2,15],"119":[2,15],"120":[2,15],"127":[2,15],"128":[2,15],"129":[2,15],"131":[2,15],"132":[2,15],"134":[2,15],"135":[2,15],"138":[2,15],"139":[2,15],"140":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[2,15],"149":[2,15],"150":[2,15],"151":[2,15],"152":[2,15],"153":[2,15],"154":[2,15],"155":[2,15],"156":[2,15],"157":[2,15],"158":[2,15],"159":[2,15],"160":[2,15],"161":[2,15],"162":[2,15],"163":[2,15]},{"1":[2,16],"4":[2,16],"29":[2,16],"30":[2,16],"50":[2,16],"58":[2,16],"61":[2,16],"79":[2,16],"84":[2,16],"94":[2,16],"99":[2,16],"107":[2,16],"109":[2,16],"110":[2,16],"111":[2,16],"114":[2,16],"118":[2,16],"119":[2,16],"120":[2,16],"127":[2,16],"128":[2,16],"129":[2,16],"131":[2,16],"132":[2,16],"134":[2,16],"135":[2,16],"138":[2,16],"139":[2,16],"140":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"148":[2,16],"149":[2,16],"150":[2,16],"151":[2,16],"152":[2,16],"153":[2,16],"154":[2,16],"155":[2,16],"156":[2,16],"157":[2,16],"158":[2,16],"159":[2,16],"160":[2,16],"161":[2,16],"162":[2,16],"163":[2,16]},{"1":[2,17],"4":[2,17],"29":[2,17],"30":[2,17],"50":[2,17],"58":[2,17],"61":[2,17],"79":[2,17],"84":[2,17],"94":[2,17],"99":[2,17],"107":[2,17],"109":[2,17],"110":[2,17],"111":[2,17],"114":[2,17],"118":[2,17],"119":[2,17],"120":[2,17],"127":[2,17],"128":[2,17],"129":[2,17],"131":[2,17],"132":[2,17],"134":[2,17],"135":[2,17],"138":[2,17],"139":[2,17],"140":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"148":[2,17],"149":[2,17],"150":[2,17],"151":[2,17],"152":[2,17],"153":[2,17],"154":[2,17],"155":[2,17],"156":[2,17],"157":[2,17],"158":[2,17],"159":[2,17],"160":[2,17],"161":[2,17],"162":[2,17],"163":[2,17]},{"1":[2,18],"4":[2,18],"29":[2,18],"30":[2,18],"50":[2,18],"58":[2,18],"61":[2,18],"79":[2,18],"84":[2,18],"94":[2,18],"99":[2,18],"107":[2,18],"109":[2,18],"110":[2,18],"111":[2,18],"114":[2,18],"118":[2,18],"119":[2,18],"120":[2,18],"127":[2,18],"128":[2,18],"129":[2,18],"131":[2,18],"132":[2,18],"134":[2,18],"135":[2,18],"138":[2,18],"139":[2,18],"140":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"148":[2,18],"149":[2,18],"150":[2,18],"151":[2,18],"152":[2,18],"153":[2,18],"154":[2,18],"155":[2,18],"156":[2,18],"157":[2,18],"158":[2,18],"159":[2,18],"160":[2,18],"161":[2,18],"162":[2,18],"163":[2,18]},{"1":[2,19],"4":[2,19],"29":[2,19],"30":[2,19],"50":[2,19],"58":[2,19],"61":[2,19],"79":[2,19],"84":[2,19],"94":[2,19],"99":[2,19],"107":[2,19],"109":[2,19],"110":[2,19],"111":[2,19],"114":[2,19],"118":[2,19],"119":[2,19],"120":[2,19],"127":[2,19],"128":[2,19],"129":[2,19],"131":[2,19],"132":[2,19],"134":[2,19],"135":[2,19],"138":[2,19],"139":[2,19],"140":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"148":[2,19],"149":[2,19],"150":[2,19],"151":[2,19],"152":[2,19],"153":[2,19],"154":[2,19],"155":[2,19],"156":[2,19],"157":[2,19],"158":[2,19],"159":[2,19],"160":[2,19],"161":[2,19],"162":[2,19],"163":[2,19]},{"1":[2,20],"4":[2,20],"29":[2,20],"30":[2,20],"50":[2,20],"58":[2,20],"61":[2,20],"79":[2,20],"84":[2,20],"94":[2,20],"99":[2,20],"107":[2,20],"109":[2,20],"110":[2,20],"111":[2,20],"114":[2,20],"118":[2,20],"119":[2,20],"120":[2,20],"127":[2,20],"128":[2,20],"129":[2,20],"131":[2,20],"132":[2,20],"134":[2,20],"135":[2,20],"138":[2,20],"139":[2,20],"140":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"148":[2,20],"149":[2,20],"150":[2,20],"151":[2,20],"152":[2,20],"153":[2,20],"154":[2,20],"155":[2,20],"156":[2,20],"157":[2,20],"158":[2,20],"159":[2,20],"160":[2,20],"161":[2,20],"162":[2,20],"163":[2,20]},{"1":[2,21],"4":[2,21],"29":[2,21],"30":[2,21],"50":[2,21],"58":[2,21],"61":[2,21],"79":[2,21],"84":[2,21],"94":[2,21],"99":[2,21],"107":[2,21],"109":[2,21],"110":[2,21],"111":[2,21],"114":[2,21],"118":[2,21],"119":[2,21],"120":[2,21],"127":[2,21],"128":[2,21],"129":[2,21],"131":[2,21],"132":[2,21],"134":[2,21],"135":[2,21],"138":[2,21],"139":[2,21],"140":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"148":[2,21],"149":[2,21],"150":[2,21],"151":[2,21],"152":[2,21],"153":[2,21],"154":[2,21],"155":[2,21],"156":[2,21],"157":[2,21],"158":[2,21],"159":[2,21],"160":[2,21],"161":[2,21],"162":[2,21],"163":[2,21]},{"1":[2,22],"4":[2,22],"29":[2,22],"30":[2,22],"50":[2,22],"58":[2,22],"61":[2,22],"79":[2,22],"84":[2,22],"94":[2,22],"99":[2,22],"107":[2,22],"109":[2,22],"110":[2,22],"111":[2,22],"114":[2,22],"118":[2,22],"119":[2,22],"120":[2,22],"127":[2,22],"128":[2,22],"129":[2,22],"131":[2,22],"132":[2,22],"134":[2,22],"135":[2,22],"138":[2,22],"139":[2,22],"140":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"148":[2,22],"149":[2,22],"150":[2,22],"151":[2,22],"152":[2,22],"153":[2,22],"154":[2,22],"155":[2,22],"156":[2,22],"157":[2,22],"158":[2,22],"159":[2,22],"160":[2,22],"161":[2,22],"162":[2,22],"163":[2,22]},{"1":[2,23],"4":[2,23],"29":[2,23],"30":[2,23],"50":[2,23],"58":[2,23],"61":[2,23],"79":[2,23],"84":[2,23],"94":[2,23],"99":[2,23],"107":[2,23],"109":[2,23],"110":[2,23],"111":[2,23],"114":[2,23],"118":[2,23],"119":[2,23],"120":[2,23],"127":[2,23],"128":[2,23],"129":[2,23],"131":[2,23],"132":[2,23],"134":[2,23],"135":[2,23],"138":[2,23],"139":[2,23],"140":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"148":[2,23],"149":[2,23],"150":[2,23],"151":[2,23],"152":[2,23],"153":[2,23],"154":[2,23],"155":[2,23],"156":[2,23],"157":[2,23],"158":[2,23],"159":[2,23],"160":[2,23],"161":[2,23],"162":[2,23],"163":[2,23]},{"1":[2,24],"4":[2,24],"29":[2,24],"30":[2,24],"50":[2,24],"58":[2,24],"61":[2,24],"79":[2,24],"84":[2,24],"94":[2,24],"99":[2,24],"107":[2,24],"109":[2,24],"110":[2,24],"111":[2,24],"114":[2,24],"118":[2,24],"119":[2,24],"120":[2,24],"127":[2,24],"128":[2,24],"129":[2,24],"131":[2,24],"132":[2,24],"134":[2,24],"135":[2,24],"138":[2,24],"139":[2,24],"140":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"148":[2,24],"149":[2,24],"150":[2,24],"151":[2,24],"152":[2,24],"153":[2,24],"154":[2,24],"155":[2,24],"156":[2,24],"157":[2,24],"158":[2,24],"159":[2,24],"160":[2,24],"161":[2,24],"162":[2,24],"163":[2,24]},{"1":[2,25],"4":[2,25],"29":[2,25],"30":[2,25],"50":[2,25],"58":[2,25],"61":[2,25],"79":[2,25],"84":[2,25],"94":[2,25],"99":[2,25],"107":[2,25],"109":[2,25],"110":[2,25],"111":[2,25],"114":[2,25],"118":[2,25],"119":[2,25],"120":[2,25],"127":[2,25],"128":[2,25],"129":[2,25],"131":[2,25],"132":[2,25],"134":[2,25],"135":[2,25],"138":[2,25],"139":[2,25],"140":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"148":[2,25],"149":[2,25],"150":[2,25],"151":[2,25],"152":[2,25],"153":[2,25],"154":[2,25],"155":[2,25],"156":[2,25],"157":[2,25],"158":[2,25],"159":[2,25],"160":[2,25],"161":[2,25],"162":[2,25],"163":[2,25]},{"1":[2,26],"4":[2,26],"29":[2,26],"30":[2,26],"50":[2,26],"58":[2,26],"61":[2,26],"79":[2,26],"84":[2,26],"94":[2,26],"99":[2,26],"107":[2,26],"109":[2,26],"110":[2,26],"111":[2,26],"114":[2,26],"118":[2,26],"119":[2,26],"120":[2,26],"127":[2,26],"128":[2,26],"129":[2,26],"131":[2,26],"132":[2,26],"134":[2,26],"135":[2,26],"138":[2,26],"139":[2,26],"140":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"148":[2,26],"149":[2,26],"150":[2,26],"151":[2,26],"152":[2,26],"153":[2,26],"154":[2,26],"155":[2,26],"156":[2,26],"157":[2,26],"158":[2,26],"159":[2,26],"160":[2,26],"161":[2,26],"162":[2,26],"163":[2,26]},{"1":[2,27],"4":[2,27],"29":[2,27],"30":[2,27],"50":[2,27],"58":[2,27],"61":[2,27],"79":[2,27],"84":[2,27],"94":[2,27],"99":[2,27],"107":[2,27],"109":[2,27],"110":[2,27],"111":[2,27],"114":[2,27],"118":[2,27],"119":[2,27],"120":[2,27],"127":[2,27],"128":[2,27],"129":[2,27],"131":[2,27],"132":[2,27],"134":[2,27],"135":[2,27],"138":[2,27],"139":[2,27],"140":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"148":[2,27],"149":[2,27],"150":[2,27],"151":[2,27],"152":[2,27],"153":[2,27],"154":[2,27],"155":[2,27],"156":[2,27],"157":[2,27],"158":[2,27],"159":[2,27],"160":[2,27],"161":[2,27],"162":[2,27],"163":[2,27]},{"1":[2,28],"4":[2,28],"29":[2,28],"30":[2,28],"50":[2,28],"58":[2,28],"61":[2,28],"79":[2,28],"84":[2,28],"94":[2,28],"99":[2,28],"107":[2,28],"109":[2,28],"110":[2,28],"111":[2,28],"114":[2,28],"118":[2,28],"119":[2,28],"120":[2,28],"127":[2,28],"128":[2,28],"129":[2,28],"131":[2,28],"132":[2,28],"134":[2,28],"135":[2,28],"138":[2,28],"139":[2,28],"140":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"148":[2,28],"149":[2,28],"150":[2,28],"151":[2,28],"152":[2,28],"153":[2,28],"154":[2,28],"155":[2,28],"156":[2,28],"157":[2,28],"158":[2,28],"159":[2,28],"160":[2,28],"161":[2,28],"162":[2,28],"163":[2,28]},{"1":[2,10],"4":[2,10],"30":[2,10],"107":[2,10],"109":[2,10],"111":[2,10],"114":[2,10],"127":[2,10],"128":[2,10]},{"1":[2,11],"4":[2,11],"30":[2,11],"107":[2,11],"109":[2,11],"111":[2,11],"114":[2,11],"127":[2,11],"128":[2,11]},{"1":[2,12],"4":[2,12],"30":[2,12],"107":[2,12],"109":[2,12],"111":[2,12],"114":[2,12],"127":[2,12],"128":[2,12]},{"1":[2,13],"4":[2,13],"30":[2,13],"107":[2,13],"109":[2,13],"111":[2,13],"114":[2,13],"127":[2,13],"128":[2,13]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"46":[1,148],"50":[2,73],"58":[2,73],"61":[2,73],"72":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"78":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"84":[2,73],"92":[2,73],"94":[2,73],"99":[2,73],"107":[2,73],"109":[2,73],"110":[2,73],"111":[2,73],"114":[2,73],"118":[2,73],"119":[2,73],"120":[2,73],"127":[2,73],"128":[2,73],"129":[2,73],"131":[2,73],"132":[2,73],"134":[2,73],"135":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73]},{"1":[2,74],"4":[2,74],"29":[2,74],"30":[2,74],"50":[2,74],"58":[2,74],"61":[2,74],"72":[2,74],"73":[2,74],"74":[2,74],"75":[2,74],"78":[2,74],"79":[2,74],"80":[2,74],"81":[2,74],"84":[2,74],"92":[2,74],"94":[2,74],"99":[2,74],"107":[2,74],"109":[2,74],"110":[2,74],"111":[2,74],"114":[2,74],"118":[2,74],"119":[2,74],"120":[2,74],"127":[2,74],"128":[2,74],"129":[2,74],"131":[2,74],"132":[2,74],"134":[2,74],"135":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74],"151":[2,74],"152":[2,74],"153":[2,74],"154":[2,74],"155":[2,74],"156":[2,74],"157":[2,74],"158":[2,74],"159":[2,74],"160":[2,74],"161":[2,74],"162":[2,74],"163":[2,74]},{"1":[2,75],"4":[2,75],"29":[2,75],"30":[2,75],"50":[2,75],"58":[2,75],"61":[2,75],"72":[2,75],"73":[2,75],"74":[2,75],"75":[2,75],"78":[2,75],"79":[2,75],"80":[2,75],"81":[2,75],"84":[2,75],"92":[2,75],"94":[2,75],"99":[2,75],"107":[2,75],"109":[2,75],"110":[2,75],"111":[2,75],"114":[2,75],"118":[2,75],"119":[2,75],"120":[2,75],"127":[2,75],"128":[2,75],"129":[2,75],"131":[2,75],"132":[2,75],"134":[2,75],"135":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75],"162":[2,75],"163":[2,75]},{"1":[2,76],"4":[2,76],"29":[2,76],"30":[2,76],"50":[2,76],"58":[2,76],"61":[2,76],"72":[2,76],"73":[2,76],"74":[2,76],"75":[2,76],"78":[2,76],"79":[2,76],"80":[2,76],"81":[2,76],"84":[2,76],"92":[2,76],"94":[2,76],"99":[2,76],"107":[2,76],"109":[2,76],"110":[2,76],"111":[2,76],"114":[2,76],"118":[2,76],"119":[2,76],"120":[2,76],"127":[2,76],"128":[2,76],"129":[2,76],"131":[2,76],"132":[2,76],"134":[2,76],"135":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76],"162":[2,76],"163":[2,76]},{"1":[2,77],"4":[2,77],"29":[2,77],"30":[2,77],"50":[2,77],"58":[2,77],"61":[2,77],"72":[2,77],"73":[2,77],"74":[2,77],"75":[2,77],"78":[2,77],"79":[2,77],"80":[2,77],"81":[2,77],"84":[2,77],"92":[2,77],"94":[2,77],"99":[2,77],"107":[2,77],"109":[2,77],"110":[2,77],"111":[2,77],"114":[2,77],"118":[2,77],"119":[2,77],"120":[2,77],"127":[2,77],"128":[2,77],"129":[2,77],"131":[2,77],"132":[2,77],"134":[2,77],"135":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77],"151":[2,77],"152":[2,77],"153":[2,77],"154":[2,77],"155":[2,77],"156":[2,77],"157":[2,77],"158":[2,77],"159":[2,77],"160":[2,77],"161":[2,77],"162":[2,77],"163":[2,77]},{"1":[2,78],"4":[2,78],"29":[2,78],"30":[2,78],"50":[2,78],"58":[2,78],"61":[2,78],"72":[2,78],"73":[2,78],"74":[2,78],"75":[2,78],"78":[2,78],"79":[2,78],"80":[2,78],"81":[2,78],"84":[2,78],"92":[2,78],"94":[2,78],"99":[2,78],"107":[2,78],"109":[2,78],"110":[2,78],"111":[2,78],"114":[2,78],"118":[2,78],"119":[2,78],"120":[2,78],"127":[2,78],"128":[2,78],"129":[2,78],"131":[2,78],"132":[2,78],"134":[2,78],"135":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78],"151":[2,78],"152":[2,78],"153":[2,78],"154":[2,78],"155":[2,78],"156":[2,78],"157":[2,78],"158":[2,78],"159":[2,78],"160":[2,78],"161":[2,78],"162":[2,78],"163":[2,78]},{"1":[2,103],"4":[2,103],"29":[2,103],"30":[2,103],"50":[2,103],"58":[2,103],"61":[2,103],"63":150,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,103],"80":[1,146],"81":[1,147],"84":[2,103],"91":149,"92":[1,138],"94":[2,103],"99":[2,103],"107":[2,103],"109":[2,103],"110":[2,103],"111":[2,103],"114":[2,103],"118":[2,103],"119":[2,103],"120":[2,103],"127":[2,103],"128":[2,103],"129":[2,103],"131":[2,103],"132":[2,103],"134":[2,103],"135":[2,103],"138":[2,103],"139":[2,103],"140":[2,103],"141":[2,103],"142":[2,103],"143":[2,103],"144":[2,103],"145":[2,103],"146":[2,103],"147":[2,103],"148":[2,103],"149":[2,103],"150":[2,103],"151":[2,103],"152":[2,103],"153":[2,103],"154":[2,103],"155":[2,103],"156":[2,103],"157":[2,103],"158":[2,103],"159":[2,103],"160":[2,103],"161":[2,103],"162":[2,103],"163":[2,103]},{"1":[2,104],"4":[2,104],"29":[2,104],"30":[2,104],"50":[2,104],"58":[2,104],"61":[2,104],"79":[2,104],"84":[2,104],"94":[2,104],"99":[2,104],"107":[2,104],"109":[2,104],"110":[2,104],"111":[2,104],"114":[2,104],"118":[2,104],"119":[2,104],"120":[2,104],"127":[2,104],"128":[2,104],"129":[2,104],"131":[2,104],"132":[2,104],"134":[2,104],"135":[2,104],"138":[2,104],"139":[2,104],"140":[2,104],"141":[2,104],"142":[2,104],"143":[2,104],"144":[2,104],"145":[2,104],"146":[2,104],"147":[2,104],"148":[2,104],"149":[2,104],"150":[2,104],"151":[2,104],"152":[2,104],"153":[2,104],"154":[2,104],"155":[2,104],"156":[2,104],"157":[2,104],"158":[2,104],"159":[2,104],"160":[2,104],"161":[2,104],"162":[2,104],"163":[2,104]},{"14":152,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":153,"62":154,"64":151,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"52":155,"53":[2,60],"58":[2,60],"59":156,"60":[1,157]},{"4":[1,159],"6":158,"29":[1,6]},{"8":160,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":162,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":163,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":164,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":165,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":166,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":167,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":168,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":169,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,170],"4":[2,170],"29":[2,170],"30":[2,170],"50":[2,170],"58":[2,170],"61":[2,170],"79":[2,170],"84":[2,170],"94":[2,170],"99":[2,170],"107":[2,170],"109":[2,170],"110":[2,170],"111":[2,170],"114":[2,170],"118":[2,170],"119":[2,170],"120":[2,170],"123":[1,170],"127":[2,170],"128":[2,170],"129":[2,170],"131":[2,170],"132":[2,170],"134":[2,170],"135":[2,170],"138":[2,170],"139":[2,170],"140":[2,170],"141":[2,170],"142":[2,170],"143":[2,170],"144":[2,170],"145":[2,170],"146":[2,170],"147":[2,170],"148":[2,170],"149":[2,170],"150":[2,170],"151":[2,170],"152":[2,170],"153":[2,170],"154":[2,170],"155":[2,170],"156":[2,170],"157":[2,170],"158":[2,170],"159":[2,170],"160":[2,170],"161":[2,170],"162":[2,170],"163":[2,170]},{"4":[1,159],"6":171,"29":[1,6]},{"4":[1,159],"6":172,"29":[1,6]},{"1":[2,140],"4":[2,140],"29":[2,140],"30":[2,140],"50":[2,140],"58":[2,140],"61":[2,140],"79":[2,140],"84":[2,140],"94":[2,140],"99":[2,140],"107":[2,140],"109":[2,140],"110":[2,140],"111":[2,140],"114":[2,140],"118":[2,140],"119":[2,140],"120":[2,140],"127":[2,140],"128":[2,140],"129":[2,140],"131":[2,140],"132":[2,140],"134":[2,140],"135":[2,140],"138":[2,140],"139":[2,140],"140":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140],"148":[2,140],"149":[2,140],"150":[2,140],"151":[2,140],"152":[2,140],"153":[2,140],"154":[2,140],"155":[2,140],"156":[2,140],"157":[2,140],"158":[2,140],"159":[2,140],"160":[2,140],"161":[2,140],"162":[2,140],"163":[2,140]},{"31":175,"32":[1,87],"66":176,"67":177,"82":[1,84],"98":[1,178],"115":173,"117":174},{"8":179,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,180],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"46":[2,70],"50":[2,70],"58":[2,70],"61":[2,70],"72":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"78":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"84":[2,70],"86":[1,181],"92":[2,70],"94":[2,70],"99":[2,70],"107":[2,70],"109":[2,70],"110":[2,70],"111":[2,70],"114":[2,70],"118":[2,70],"119":[2,70],"120":[2,70],"127":[2,70],"128":[2,70],"129":[2,70],"131":[2,70],"132":[2,70],"134":[2,70],"135":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70]},{"14":183,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":153,"62":182,"64":184,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,52],"4":[2,52],"29":[2,52],"30":[2,52],"50":[2,52],"58":[2,52],"61":[2,52],"79":[2,52],"84":[2,52],"94":[2,52],"99":[2,52],"103":[2,52],"104":[2,52],"107":[2,52],"109":[2,52],"110":[2,52],"111":[2,52],"114":[2,52],"118":[2,52],"119":[2,52],"120":[2,52],"123":[2,52],"125":[2,52],"127":[2,52],"128":[2,52],"129":[2,52],"131":[2,52],"132":[2,52],"134":[2,52],"135":[2,52],"138":[2,52],"139":[2,52],"140":[2,52],"141":[2,52],"142":[2,52],"143":[2,52],"144":[2,52],"145":[2,52],"146":[2,52],"147":[2,52],"148":[2,52],"149":[2,52],"150":[2,52],"151":[2,52],"152":[2,52],"153":[2,52],"154":[2,52],"155":[2,52],"156":[2,52],"157":[2,52],"158":[2,52],"159":[2,52],"160":[2,52],"161":[2,52],"162":[2,52],"163":[2,52]},{"1":[2,51],"4":[2,51],"8":185,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,51],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"107":[2,51],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[2,51],"128":[2,51],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":186,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,71],"4":[2,71],"29":[2,71],"30":[2,71],"46":[2,71],"50":[2,71],"58":[2,71],"61":[2,71],"72":[2,71],"73":[2,71],"74":[2,71],"75":[2,71],"78":[2,71],"79":[2,71],"80":[2,71],"81":[2,71],"84":[2,71],"92":[2,71],"94":[2,71],"99":[2,71],"107":[2,71],"109":[2,71],"110":[2,71],"111":[2,71],"114":[2,71],"118":[2,71],"119":[2,71],"120":[2,71],"127":[2,71],"128":[2,71],"129":[2,71],"131":[2,71],"132":[2,71],"134":[2,71],"135":[2,71],"138":[2,71],"139":[2,71],"140":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71],"162":[2,71],"163":[2,71]},{"1":[2,72],"4":[2,72],"29":[2,72],"30":[2,72],"46":[2,72],"50":[2,72],"58":[2,72],"61":[2,72],"72":[2,72],"73":[2,72],"74":[2,72],"75":[2,72],"78":[2,72],"79":[2,72],"80":[2,72],"81":[2,72],"84":[2,72],"92":[2,72],"94":[2,72],"99":[2,72],"107":[2,72],"109":[2,72],"110":[2,72],"111":[2,72],"114":[2,72],"118":[2,72],"119":[2,72],"120":[2,72],"127":[2,72],"128":[2,72],"129":[2,72],"131":[2,72],"132":[2,72],"134":[2,72],"135":[2,72],"138":[2,72],"139":[2,72],"140":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72],"162":[2,72],"163":[2,72]},{"1":[2,35],"4":[2,35],"29":[2,35],"30":[2,35],"50":[2,35],"58":[2,35],"61":[2,35],"72":[2,35],"73":[2,35],"74":[2,35],"75":[2,35],"78":[2,35],"79":[2,35],"80":[2,35],"81":[2,35],"84":[2,35],"92":[2,35],"94":[2,35],"99":[2,35],"107":[2,35],"109":[2,35],"110":[2,35],"111":[2,35],"114":[2,35],"118":[2,35],"119":[2,35],"120":[2,35],"127":[2,35],"128":[2,35],"129":[2,35],"131":[2,35],"132":[2,35],"134":[2,35],"135":[2,35],"138":[2,35],"139":[2,35],"140":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35],"151":[2,35],"152":[2,35],"153":[2,35],"154":[2,35],"155":[2,35],"156":[2,35],"157":[2,35],"158":[2,35],"159":[2,35],"160":[2,35],"161":[2,35],"162":[2,35],"163":[2,35]},{"1":[2,36],"4":[2,36],"29":[2,36],"30":[2,36],"50":[2,36],"58":[2,36],"61":[2,36],"72":[2,36],"73":[2,36],"74":[2,36],"75":[2,36],"78":[2,36],"79":[2,36],"80":[2,36],"81":[2,36],"84":[2,36],"92":[2,36],"94":[2,36],"99":[2,36],"107":[2,36],"109":[2,36],"110":[2,36],"111":[2,36],"114":[2,36],"118":[2,36],"119":[2,36],"120":[2,36],"127":[2,36],"128":[2,36],"129":[2,36],"131":[2,36],"132":[2,36],"134":[2,36],"135":[2,36],"138":[2,36],"139":[2,36],"140":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36],"151":[2,36],"152":[2,36],"153":[2,36],"154":[2,36],"155":[2,36],"156":[2,36],"157":[2,36],"158":[2,36],"159":[2,36],"160":[2,36],"161":[2,36],"162":[2,36],"163":[2,36]},{"1":[2,37],"4":[2,37],"29":[2,37],"30":[2,37],"50":[2,37],"58":[2,37],"61":[2,37],"72":[2,37],"73":[2,37],"74":[2,37],"75":[2,37],"78":[2,37],"79":[2,37],"80":[2,37],"81":[2,37],"84":[2,37],"92":[2,37],"94":[2,37],"99":[2,37],"107":[2,37],"109":[2,37],"110":[2,37],"111":[2,37],"114":[2,37],"118":[2,37],"119":[2,37],"120":[2,37],"127":[2,37],"128":[2,37],"129":[2,37],"131":[2,37],"132":[2,37],"134":[2,37],"135":[2,37],"138":[2,37],"139":[2,37],"140":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37],"151":[2,37],"152":[2,37],"153":[2,37],"154":[2,37],"155":[2,37],"156":[2,37],"157":[2,37],"158":[2,37],"159":[2,37],"160":[2,37],"161":[2,37],"162":[2,37],"163":[2,37]},{"1":[2,38],"4":[2,38],"29":[2,38],"30":[2,38],"50":[2,38],"58":[2,38],"61":[2,38],"72":[2,38],"73":[2,38],"74":[2,38],"75":[2,38],"78":[2,38],"79":[2,38],"80":[2,38],"81":[2,38],"84":[2,38],"92":[2,38],"94":[2,38],"99":[2,38],"107":[2,38],"109":[2,38],"110":[2,38],"111":[2,38],"114":[2,38],"118":[2,38],"119":[2,38],"120":[2,38],"127":[2,38],"128":[2,38],"129":[2,38],"131":[2,38],"132":[2,38],"134":[2,38],"135":[2,38],"138":[2,38],"139":[2,38],"140":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38],"151":[2,38],"152":[2,38],"153":[2,38],"154":[2,38],"155":[2,38],"156":[2,38],"157":[2,38],"158":[2,38],"159":[2,38],"160":[2,38],"161":[2,38],"162":[2,38],"163":[2,38]},{"1":[2,39],"4":[2,39],"29":[2,39],"30":[2,39],"50":[2,39],"58":[2,39],"61":[2,39],"72":[2,39],"73":[2,39],"74":[2,39],"75":[2,39],"78":[2,39],"79":[2,39],"80":[2,39],"81":[2,39],"84":[2,39],"92":[2,39],"94":[2,39],"99":[2,39],"107":[2,39],"109":[2,39],"110":[2,39],"111":[2,39],"114":[2,39],"118":[2,39],"119":[2,39],"120":[2,39],"127":[2,39],"128":[2,39],"129":[2,39],"131":[2,39],"132":[2,39],"134":[2,39],"135":[2,39],"138":[2,39],"139":[2,39],"140":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39],"151":[2,39],"152":[2,39],"153":[2,39],"154":[2,39],"155":[2,39],"156":[2,39],"157":[2,39],"158":[2,39],"159":[2,39],"160":[2,39],"161":[2,39],"162":[2,39],"163":[2,39]},{"1":[2,40],"4":[2,40],"29":[2,40],"30":[2,40],"50":[2,40],"58":[2,40],"61":[2,40],"72":[2,40],"73":[2,40],"74":[2,40],"75":[2,40],"78":[2,40],"79":[2,40],"80":[2,40],"81":[2,40],"84":[2,40],"92":[2,40],"94":[2,40],"99":[2,40],"107":[2,40],"109":[2,40],"110":[2,40],"111":[2,40],"114":[2,40],"118":[2,40],"119":[2,40],"120":[2,40],"127":[2,40],"128":[2,40],"129":[2,40],"131":[2,40],"132":[2,40],"134":[2,40],"135":[2,40],"138":[2,40],"139":[2,40],"140":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40],"151":[2,40],"152":[2,40],"153":[2,40],"154":[2,40],"155":[2,40],"156":[2,40],"157":[2,40],"158":[2,40],"159":[2,40],"160":[2,40],"161":[2,40],"162":[2,40],"163":[2,40]},{"1":[2,41],"4":[2,41],"29":[2,41],"30":[2,41],"50":[2,41],"58":[2,41],"61":[2,41],"72":[2,41],"73":[2,41],"74":[2,41],"75":[2,41],"78":[2,41],"79":[2,41],"80":[2,41],"81":[2,41],"84":[2,41],"92":[2,41],"94":[2,41],"99":[2,41],"107":[2,41],"109":[2,41],"110":[2,41],"111":[2,41],"114":[2,41],"118":[2,41],"119":[2,41],"120":[2,41],"127":[2,41],"128":[2,41],"129":[2,41],"131":[2,41],"132":[2,41],"134":[2,41],"135":[2,41],"138":[2,41],"139":[2,41],"140":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41],"151":[2,41],"152":[2,41],"153":[2,41],"154":[2,41],"155":[2,41],"156":[2,41],"157":[2,41],"158":[2,41],"159":[2,41],"160":[2,41],"161":[2,41],"162":[2,41],"163":[2,41]},{"1":[2,42],"4":[2,42],"29":[2,42],"30":[2,42],"50":[2,42],"58":[2,42],"61":[2,42],"72":[2,42],"73":[2,42],"74":[2,42],"75":[2,42],"78":[2,42],"79":[2,42],"80":[2,42],"81":[2,42],"84":[2,42],"92":[2,42],"94":[2,42],"99":[2,42],"107":[2,42],"109":[2,42],"110":[2,42],"111":[2,42],"114":[2,42],"118":[2,42],"119":[2,42],"120":[2,42],"127":[2,42],"128":[2,42],"129":[2,42],"131":[2,42],"132":[2,42],"134":[2,42],"135":[2,42],"138":[2,42],"139":[2,42],"140":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"148":[2,42],"149":[2,42],"150":[2,42],"151":[2,42],"152":[2,42],"153":[2,42],"154":[2,42],"155":[2,42],"156":[2,42],"157":[2,42],"158":[2,42],"159":[2,42],"160":[2,42],"161":[2,42],"162":[2,42],"163":[2,42]},{"1":[2,43],"4":[2,43],"29":[2,43],"30":[2,43],"50":[2,43],"58":[2,43],"61":[2,43],"72":[2,43],"73":[2,43],"74":[2,43],"75":[2,43],"78":[2,43],"79":[2,43],"80":[2,43],"81":[2,43],"84":[2,43],"92":[2,43],"94":[2,43],"99":[2,43],"107":[2,43],"109":[2,43],"110":[2,43],"111":[2,43],"114":[2,43],"118":[2,43],"119":[2,43],"120":[2,43],"127":[2,43],"128":[2,43],"129":[2,43],"131":[2,43],"132":[2,43],"134":[2,43],"135":[2,43],"138":[2,43],"139":[2,43],"140":[2,43],"141":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43],"148":[2,43],"149":[2,43],"150":[2,43],"151":[2,43],"152":[2,43],"153":[2,43],"154":[2,43],"155":[2,43],"156":[2,43],"157":[2,43],"158":[2,43],"159":[2,43],"160":[2,43],"161":[2,43],"162":[2,43],"163":[2,43]},{"7":187,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,120],"8":188,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":189,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,120],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,112],"4":[2,112],"29":[2,112],"30":[2,112],"50":[2,112],"58":[2,112],"61":[2,112],"72":[2,112],"73":[2,112],"74":[2,112],"75":[2,112],"78":[2,112],"79":[2,112],"80":[2,112],"81":[2,112],"84":[2,112],"92":[2,112],"94":[2,112],"99":[2,112],"107":[2,112],"109":[2,112],"110":[2,112],"111":[2,112],"114":[2,112],"118":[2,112],"119":[2,112],"120":[2,112],"127":[2,112],"128":[2,112],"129":[2,112],"131":[2,112],"132":[2,112],"134":[2,112],"135":[2,112],"138":[2,112],"139":[2,112],"140":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"147":[2,112],"148":[2,112],"149":[2,112],"150":[2,112],"151":[2,112],"152":[2,112],"153":[2,112],"154":[2,112],"155":[2,112],"156":[2,112],"157":[2,112],"158":[2,112],"159":[2,112],"160":[2,112],"161":[2,112],"162":[2,112],"163":[2,112]},{"1":[2,113],"4":[2,113],"29":[2,113],"30":[2,113],"31":190,"32":[1,87],"50":[2,113],"58":[2,113],"61":[2,113],"72":[2,113],"73":[2,113],"74":[2,113],"75":[2,113],"78":[2,113],"79":[2,113],"80":[2,113],"81":[2,113],"84":[2,113],"92":[2,113],"94":[2,113],"99":[2,113],"107":[2,113],"109":[2,113],"110":[2,113],"111":[2,113],"114":[2,113],"118":[2,113],"119":[2,113],"120":[2,113],"127":[2,113],"128":[2,113],"129":[2,113],"131":[2,113],"132":[2,113],"134":[2,113],"135":[2,113],"138":[2,113],"139":[2,113],"140":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"147":[2,113],"148":[2,113],"149":[2,113],"150":[2,113],"151":[2,113],"152":[2,113],"153":[2,113],"154":[2,113],"155":[2,113],"156":[2,113],"157":[2,113],"158":[2,113],"159":[2,113],"160":[2,113],"161":[2,113],"162":[2,113],"163":[2,113]},{"91":191,"92":[1,138]},{"4":[2,56],"29":[2,56]},{"4":[2,57],"29":[2,57]},{"8":192,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":193,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":194,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":195,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[1,159],"6":196,"8":197,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,66],"4":[2,66],"29":[2,66],"30":[2,66],"46":[2,66],"50":[2,66],"58":[2,66],"61":[2,66],"72":[2,66],"73":[2,66],"74":[2,66],"75":[2,66],"78":[2,66],"79":[2,66],"80":[2,66],"81":[2,66],"84":[2,66],"86":[2,66],"92":[2,66],"94":[2,66],"99":[2,66],"107":[2,66],"109":[2,66],"110":[2,66],"111":[2,66],"114":[2,66],"118":[2,66],"119":[2,66],"120":[2,66],"127":[2,66],"128":[2,66],"129":[2,66],"131":[2,66],"132":[2,66],"134":[2,66],"135":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66],"162":[2,66],"163":[2,66]},{"1":[2,69],"4":[2,69],"29":[2,69],"30":[2,69],"46":[2,69],"50":[2,69],"58":[2,69],"61":[2,69],"72":[2,69],"73":[2,69],"74":[2,69],"75":[2,69],"78":[2,69],"79":[2,69],"80":[2,69],"81":[2,69],"84":[2,69],"86":[2,69],"92":[2,69],"94":[2,69],"99":[2,69],"107":[2,69],"109":[2,69],"110":[2,69],"111":[2,69],"114":[2,69],"118":[2,69],"119":[2,69],"120":[2,69],"127":[2,69],"128":[2,69],"129":[2,69],"131":[2,69],"132":[2,69],"134":[2,69],"135":[2,69],"138":[2,69],"139":[2,69],"140":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69],"162":[2,69],"163":[2,69]},{"4":[2,89],"28":202,"29":[2,89],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":199,"49":[1,56],"58":[2,89],"83":198,"84":[2,89]},{"1":[2,33],"4":[2,33],"29":[2,33],"30":[2,33],"46":[2,33],"50":[2,33],"58":[2,33],"61":[2,33],"72":[2,33],"73":[2,33],"74":[2,33],"75":[2,33],"78":[2,33],"79":[2,33],"80":[2,33],"81":[2,33],"84":[2,33],"92":[2,33],"94":[2,33],"99":[2,33],"107":[2,33],"109":[2,33],"110":[2,33],"111":[2,33],"114":[2,33],"118":[2,33],"119":[2,33],"120":[2,33],"127":[2,33],"128":[2,33],"129":[2,33],"131":[2,33],"132":[2,33],"134":[2,33],"135":[2,33],"138":[2,33],"139":[2,33],"140":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33],"151":[2,33],"152":[2,33],"153":[2,33],"154":[2,33],"155":[2,33],"156":[2,33],"157":[2,33],"158":[2,33],"159":[2,33],"160":[2,33],"161":[2,33],"162":[2,33],"163":[2,33]},{"1":[2,34],"4":[2,34],"29":[2,34],"30":[2,34],"46":[2,34],"50":[2,34],"58":[2,34],"61":[2,34],"72":[2,34],"73":[2,34],"74":[2,34],"75":[2,34],"78":[2,34],"79":[2,34],"80":[2,34],"81":[2,34],"84":[2,34],"92":[2,34],"94":[2,34],"99":[2,34],"107":[2,34],"109":[2,34],"110":[2,34],"111":[2,34],"114":[2,34],"118":[2,34],"119":[2,34],"120":[2,34],"127":[2,34],"128":[2,34],"129":[2,34],"131":[2,34],"132":[2,34],"134":[2,34],"135":[2,34],"138":[2,34],"139":[2,34],"140":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34],"151":[2,34],"152":[2,34],"153":[2,34],"154":[2,34],"155":[2,34],"156":[2,34],"157":[2,34],"158":[2,34],"159":[2,34],"160":[2,34],"161":[2,34],"162":[2,34],"163":[2,34]},{"1":[2,32],"4":[2,32],"29":[2,32],"30":[2,32],"46":[2,32],"50":[2,32],"58":[2,32],"61":[2,32],"72":[2,32],"73":[2,32],"74":[2,32],"75":[2,32],"78":[2,32],"79":[2,32],"80":[2,32],"81":[2,32],"84":[2,32],"86":[2,32],"92":[2,32],"94":[2,32],"99":[2,32],"107":[2,32],"109":[2,32],"110":[2,32],"111":[2,32],"114":[2,32],"118":[2,32],"119":[2,32],"120":[2,32],"127":[2,32],"128":[2,32],"129":[2,32],"131":[2,32],"132":[2,32],"134":[2,32],"135":[2,32],"138":[2,32],"139":[2,32],"140":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32],"151":[2,32],"152":[2,32],"153":[2,32],"154":[2,32],"155":[2,32],"156":[2,32],"157":[2,32],"158":[2,32],"159":[2,32],"160":[2,32],"161":[2,32],"162":[2,32],"163":[2,32]},{"1":[2,31],"4":[2,31],"29":[2,31],"30":[2,31],"50":[2,31],"58":[2,31],"61":[2,31],"79":[2,31],"84":[2,31],"94":[2,31],"99":[2,31],"103":[2,31],"104":[2,31],"107":[2,31],"109":[2,31],"110":[2,31],"111":[2,31],"114":[2,31],"118":[2,31],"119":[2,31],"120":[2,31],"123":[2,31],"125":[2,31],"127":[2,31],"128":[2,31],"129":[2,31],"131":[2,31],"132":[2,31],"134":[2,31],"135":[2,31],"138":[2,31],"139":[2,31],"140":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31],"149":[2,31],"150":[2,31],"151":[2,31],"152":[2,31],"153":[2,31],"154":[2,31],"155":[2,31],"156":[2,31],"157":[2,31],"158":[2,31],"159":[2,31],"160":[2,31],"161":[2,31],"162":[2,31],"163":[2,31]},{"1":[2,7],"4":[2,7],"7":203,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,7],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,4]},{"4":[1,89],"30":[1,204]},{"1":[2,30],"4":[2,30],"29":[2,30],"30":[2,30],"50":[2,30],"58":[2,30],"61":[2,30],"79":[2,30],"84":[2,30],"94":[2,30],"99":[2,30],"103":[2,30],"104":[2,30],"107":[2,30],"109":[2,30],"110":[2,30],"111":[2,30],"114":[2,30],"118":[2,30],"119":[2,30],"120":[2,30],"123":[2,30],"125":[2,30],"127":[2,30],"128":[2,30],"129":[2,30],"131":[2,30],"132":[2,30],"134":[2,30],"135":[2,30],"138":[2,30],"139":[2,30],"140":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"148":[2,30],"149":[2,30],"150":[2,30],"151":[2,30],"152":[2,30],"153":[2,30],"154":[2,30],"155":[2,30],"156":[2,30],"157":[2,30],"158":[2,30],"159":[2,30],"160":[2,30],"161":[2,30],"162":[2,30],"163":[2,30]},{"1":[2,184],"4":[2,184],"29":[2,184],"30":[2,184],"50":[2,184],"58":[2,184],"61":[2,184],"79":[2,184],"84":[2,184],"94":[2,184],"99":[2,184],"107":[2,184],"109":[2,184],"110":[2,184],"111":[2,184],"114":[2,184],"118":[2,184],"119":[2,184],"120":[2,184],"127":[2,184],"128":[2,184],"129":[2,184],"131":[2,184],"132":[2,184],"134":[2,184],"135":[2,184],"138":[2,184],"139":[2,184],"140":[2,184],"141":[2,184],"142":[2,184],"143":[2,184],"144":[2,184],"145":[2,184],"146":[2,184],"147":[2,184],"148":[2,184],"149":[2,184],"150":[2,184],"151":[2,184],"152":[2,184],"153":[2,184],"154":[2,184],"155":[2,184],"156":[2,184],"157":[2,184],"158":[2,184],"159":[2,184],"160":[2,184],"161":[2,184],"162":[2,184],"163":[2,184]},{"1":[2,185],"4":[2,185],"29":[2,185],"30":[2,185],"50":[2,185],"58":[2,185],"61":[2,185],"79":[2,185],"84":[2,185],"94":[2,185],"99":[2,185],"107":[2,185],"109":[2,185],"110":[2,185],"111":[2,185],"114":[2,185],"118":[2,185],"119":[2,185],"120":[2,185],"127":[2,185],"128":[2,185],"129":[2,185],"131":[2,185],"132":[2,185],"134":[2,185],"135":[2,185],"138":[2,185],"139":[2,185],"140":[2,185],"141":[2,185],"142":[2,185],"143":[2,185],"144":[2,185],"145":[2,185],"146":[2,185],"147":[2,185],"148":[2,185],"149":[2,185],"150":[2,185],"151":[2,185],"152":[2,185],"153":[2,185],"154":[2,185],"155":[2,185],"156":[2,185],"157":[2,185],"158":[2,185],"159":[2,185],"160":[2,185],"161":[2,185],"162":[2,185],"163":[2,185]},{"8":205,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":206,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":207,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":208,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":209,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":210,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":211,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":212,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":213,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":214,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":215,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":216,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":217,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":218,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":219,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":220,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":221,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":222,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":223,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,53],"4":[2,53],"8":224,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,53],"30":[2,53],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"50":[2,53],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,53],"61":[2,53],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"79":[2,53],"82":[1,84],"84":[2,53],"85":[1,55],"89":35,"90":[1,36],"94":[2,53],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,53],"101":[1,49],"105":[1,58],"106":[1,70],"107":[2,53],"108":50,"109":[2,53],"110":[2,53],"111":[2,53],"112":51,"113":[1,81],"114":[2,53],"118":[2,53],"119":[2,53],"120":[2,53],"121":[1,53],"126":48,"127":[2,53],"128":[2,53],"129":[2,53],"130":[1,40],"131":[2,53],"132":[2,53],"133":[1,43],"134":[2,53],"135":[2,53],"136":[1,46],"137":[1,47],"138":[2,53],"139":[2,53],"140":[2,53],"141":[2,53],"142":[2,53],"143":[2,53],"144":[2,53],"145":[2,53],"146":[2,53],"147":[2,53],"148":[2,53],"149":[2,53],"150":[2,53],"151":[2,53],"152":[2,53],"153":[2,53],"154":[2,53],"155":[2,53],"156":[2,53],"157":[2,53],"158":[2,53],"159":[2,53],"160":[2,53],"161":[2,53],"162":[2,53],"163":[2,53]},{"8":225,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":226,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":227,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":228,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":229,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":230,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":231,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":232,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":233,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":234,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":235,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"118":[1,236],"119":[1,237]},{"8":238,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":239,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,139],"4":[2,139],"29":[2,139],"30":[2,139],"50":[2,139],"58":[2,139],"61":[2,139],"79":[2,139],"84":[2,139],"94":[2,139],"99":[2,139],"107":[2,139],"109":[2,139],"110":[2,139],"111":[2,139],"114":[2,139],"118":[2,139],"119":[2,139],"120":[2,139],"127":[2,139],"128":[2,139],"129":[2,139],"131":[2,139],"132":[2,139],"134":[2,139],"135":[2,139],"138":[2,139],"139":[2,139],"140":[2,139],"141":[2,139],"142":[2,139],"143":[2,139],"144":[2,139],"145":[2,139],"146":[2,139],"147":[2,139],"148":[2,139],"149":[2,139],"150":[2,139],"151":[2,139],"152":[2,139],"153":[2,139],"154":[2,139],"155":[2,139],"156":[2,139],"157":[2,139],"158":[2,139],"159":[2,139],"160":[2,139],"161":[2,139],"162":[2,139],"163":[2,139]},{"31":175,"32":[1,87],"66":176,"67":177,"82":[1,84],"98":[1,178],"115":240,"117":174},{"61":[1,241]},{"8":242,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":243,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,138],"4":[2,138],"29":[2,138],"30":[2,138],"50":[2,138],"58":[2,138],"61":[2,138],"79":[2,138],"84":[2,138],"94":[2,138],"99":[2,138],"107":[2,138],"109":[2,138],"110":[2,138],"111":[2,138],"114":[2,138],"118":[2,138],"119":[2,138],"120":[2,138],"127":[2,138],"128":[2,138],"129":[2,138],"131":[2,138],"132":[2,138],"134":[2,138],"135":[2,138],"138":[2,138],"139":[2,138],"140":[2,138],"141":[2,138],"142":[2,138],"143":[2,138],"144":[2,138],"145":[2,138],"146":[2,138],"147":[2,138],"148":[2,138],"149":[2,138],"150":[2,138],"151":[2,138],"152":[2,138],"153":[2,138],"154":[2,138],"155":[2,138],"156":[2,138],"157":[2,138],"158":[2,138],"159":[2,138],"160":[2,138],"161":[2,138],"162":[2,138],"163":[2,138]},{"31":175,"32":[1,87],"66":176,"67":177,"82":[1,84],"98":[1,178],"115":244,"117":174},{"1":[2,108],"4":[2,108],"29":[2,108],"30":[2,108],"50":[2,108],"58":[2,108],"61":[2,108],"72":[2,108],"73":[2,108],"74":[2,108],"75":[2,108],"78":[2,108],"79":[2,108],"80":[2,108],"81":[2,108],"84":[2,108],"92":[2,108],"94":[2,108],"99":[2,108],"107":[2,108],"109":[2,108],"110":[2,108],"111":[2,108],"114":[2,108],"118":[2,108],"119":[2,108],"120":[2,108],"127":[2,108],"128":[2,108],"129":[2,108],"131":[2,108],"132":[2,108],"134":[2,108],"135":[2,108],"138":[2,108],"139":[2,108],"140":[2,108],"141":[2,108],"142":[2,108],"143":[2,108],"144":[2,108],"145":[2,108],"146":[2,108],"147":[2,108],"148":[2,108],"149":[2,108],"150":[2,108],"151":[2,108],"152":[2,108],"153":[2,108],"154":[2,108],"155":[2,108],"156":[2,108],"157":[2,108],"158":[2,108],"159":[2,108],"160":[2,108],"161":[2,108],"162":[2,108],"163":[2,108]},{"1":[2,67],"4":[2,67],"29":[2,67],"30":[2,67],"46":[2,67],"50":[2,67],"58":[2,67],"61":[2,67],"72":[2,67],"73":[2,67],"74":[2,67],"75":[2,67],"78":[2,67],"79":[2,67],"80":[2,67],"81":[2,67],"84":[2,67],"86":[2,67],"92":[2,67],"94":[2,67],"99":[2,67],"107":[2,67],"109":[2,67],"110":[2,67],"111":[2,67],"114":[2,67],"118":[2,67],"119":[2,67],"120":[2,67],"127":[2,67],"128":[2,67],"129":[2,67],"131":[2,67],"132":[2,67],"134":[2,67],"135":[2,67],"138":[2,67],"139":[2,67],"140":[2,67],"141":[2,67],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67],"162":[2,67],"163":[2,67]},{"4":[2,120],"8":246,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":245,"94":[2,120],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"31":247,"32":[1,87]},{"31":248,"32":[1,87]},{"1":[2,81],"4":[2,81],"29":[2,81],"30":[2,81],"46":[2,81],"50":[2,81],"58":[2,81],"61":[2,81],"72":[2,81],"73":[2,81],"74":[2,81],"75":[2,81],"78":[2,81],"79":[2,81],"80":[2,81],"81":[2,81],"84":[2,81],"86":[2,81],"92":[2,81],"94":[2,81],"99":[2,81],"107":[2,81],"109":[2,81],"110":[2,81],"111":[2,81],"114":[2,81],"118":[2,81],"119":[2,81],"120":[2,81],"127":[2,81],"128":[2,81],"129":[2,81],"131":[2,81],"132":[2,81],"134":[2,81],"135":[2,81],"138":[2,81],"139":[2,81],"140":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81],"151":[2,81],"152":[2,81],"153":[2,81],"154":[2,81],"155":[2,81],"156":[2,81],"157":[2,81],"158":[2,81],"159":[2,81],"160":[2,81],"161":[2,81],"162":[2,81],"163":[2,81]},{"31":249,"32":[1,87]},{"1":[2,83],"4":[2,83],"29":[2,83],"30":[2,83],"46":[2,83],"50":[2,83],"58":[2,83],"61":[2,83],"72":[2,83],"73":[2,83],"74":[2,83],"75":[2,83],"78":[2,83],"79":[2,83],"80":[2,83],"81":[2,83],"84":[2,83],"86":[2,83],"92":[2,83],"94":[2,83],"99":[2,83],"107":[2,83],"109":[2,83],"110":[2,83],"111":[2,83],"114":[2,83],"118":[2,83],"119":[2,83],"120":[2,83],"127":[2,83],"128":[2,83],"129":[2,83],"131":[2,83],"132":[2,83],"134":[2,83],"135":[2,83],"138":[2,83],"139":[2,83],"140":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83],"151":[2,83],"152":[2,83],"153":[2,83],"154":[2,83],"155":[2,83],"156":[2,83],"157":[2,83],"158":[2,83],"159":[2,83],"160":[2,83],"161":[2,83],"162":[2,83],"163":[2,83]},{"1":[2,84],"4":[2,84],"29":[2,84],"30":[2,84],"46":[2,84],"50":[2,84],"58":[2,84],"61":[2,84],"72":[2,84],"73":[2,84],"74":[2,84],"75":[2,84],"78":[2,84],"79":[2,84],"80":[2,84],"81":[2,84],"84":[2,84],"86":[2,84],"92":[2,84],"94":[2,84],"99":[2,84],"107":[2,84],"109":[2,84],"110":[2,84],"111":[2,84],"114":[2,84],"118":[2,84],"119":[2,84],"120":[2,84],"127":[2,84],"128":[2,84],"129":[2,84],"131":[2,84],"132":[2,84],"134":[2,84],"135":[2,84],"138":[2,84],"139":[2,84],"140":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84],"151":[2,84],"152":[2,84],"153":[2,84],"154":[2,84],"155":[2,84],"156":[2,84],"157":[2,84],"158":[2,84],"159":[2,84],"160":[2,84],"161":[2,84],"162":[2,84],"163":[2,84]},{"8":250,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"76":251,"78":[1,252],"80":[1,146],"81":[1,147]},{"76":253,"78":[1,252],"80":[1,146],"81":[1,147]},{"8":254,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,109],"4":[2,109],"29":[2,109],"30":[2,109],"50":[2,109],"58":[2,109],"61":[2,109],"72":[2,109],"73":[2,109],"74":[2,109],"75":[2,109],"78":[2,109],"79":[2,109],"80":[2,109],"81":[2,109],"84":[2,109],"92":[2,109],"94":[2,109],"99":[2,109],"107":[2,109],"109":[2,109],"110":[2,109],"111":[2,109],"114":[2,109],"118":[2,109],"119":[2,109],"120":[2,109],"127":[2,109],"128":[2,109],"129":[2,109],"131":[2,109],"132":[2,109],"134":[2,109],"135":[2,109],"138":[2,109],"139":[2,109],"140":[2,109],"141":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"147":[2,109],"148":[2,109],"149":[2,109],"150":[2,109],"151":[2,109],"152":[2,109],"153":[2,109],"154":[2,109],"155":[2,109],"156":[2,109],"157":[2,109],"158":[2,109],"159":[2,109],"160":[2,109],"161":[2,109],"162":[2,109],"163":[2,109]},{"1":[2,68],"4":[2,68],"29":[2,68],"30":[2,68],"46":[2,68],"50":[2,68],"58":[2,68],"61":[2,68],"72":[2,68],"73":[2,68],"74":[2,68],"75":[2,68],"78":[2,68],"79":[2,68],"80":[2,68],"81":[2,68],"84":[2,68],"86":[2,68],"92":[2,68],"94":[2,68],"99":[2,68],"107":[2,68],"109":[2,68],"110":[2,68],"111":[2,68],"114":[2,68],"118":[2,68],"119":[2,68],"120":[2,68],"127":[2,68],"128":[2,68],"129":[2,68],"131":[2,68],"132":[2,68],"134":[2,68],"135":[2,68],"138":[2,68],"139":[2,68],"140":[2,68],"141":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68],"162":[2,68],"163":[2,68]},{"1":[2,105],"4":[2,105],"29":[2,105],"30":[2,105],"50":[2,105],"58":[2,105],"61":[2,105],"63":150,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,105],"80":[1,146],"81":[1,147],"84":[2,105],"91":149,"92":[1,138],"94":[2,105],"99":[2,105],"107":[2,105],"109":[2,105],"110":[2,105],"111":[2,105],"114":[2,105],"118":[2,105],"119":[2,105],"120":[2,105],"127":[2,105],"128":[2,105],"129":[2,105],"131":[2,105],"132":[2,105],"134":[2,105],"135":[2,105],"138":[2,105],"139":[2,105],"140":[2,105],"141":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"148":[2,105],"149":[2,105],"150":[2,105],"151":[2,105],"152":[2,105],"153":[2,105],"154":[2,105],"155":[2,105],"156":[2,105],"157":[2,105],"158":[2,105],"159":[2,105],"160":[2,105],"161":[2,105],"162":[2,105],"163":[2,105]},{"1":[2,106],"4":[2,106],"29":[2,106],"30":[2,106],"50":[2,106],"58":[2,106],"61":[2,106],"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,106],"80":[1,146],"81":[1,147],"84":[2,106],"91":136,"92":[1,138],"94":[2,106],"99":[2,106],"107":[2,106],"109":[2,106],"110":[2,106],"111":[2,106],"114":[2,106],"118":[2,106],"119":[2,106],"120":[2,106],"127":[2,106],"128":[2,106],"129":[2,106],"131":[2,106],"132":[2,106],"134":[2,106],"135":[2,106],"138":[2,106],"139":[2,106],"140":[2,106],"141":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"148":[2,106],"149":[2,106],"150":[2,106],"151":[2,106],"152":[2,106],"153":[2,106],"154":[2,106],"155":[2,106],"156":[2,106],"157":[2,106],"158":[2,106],"159":[2,106],"160":[2,106],"161":[2,106],"162":[2,106],"163":[2,106]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"50":[2,73],"58":[2,73],"61":[2,73],"72":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"78":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"84":[2,73],"92":[2,73],"94":[2,73],"99":[2,73],"107":[2,73],"109":[2,73],"110":[2,73],"111":[2,73],"114":[2,73],"118":[2,73],"119":[2,73],"120":[2,73],"127":[2,73],"128":[2,73],"129":[2,73],"131":[2,73],"132":[2,73],"134":[2,73],"135":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"50":[2,70],"58":[2,70],"61":[2,70],"72":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"78":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"84":[2,70],"92":[2,70],"94":[2,70],"99":[2,70],"107":[2,70],"109":[2,70],"110":[2,70],"111":[2,70],"114":[2,70],"118":[2,70],"119":[2,70],"120":[2,70],"127":[2,70],"128":[2,70],"129":[2,70],"131":[2,70],"132":[2,70],"134":[2,70],"135":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70]},{"53":[1,255],"58":[1,256]},{"53":[2,61],"58":[2,61],"61":[1,257]},{"53":[2,63],"58":[2,63],"61":[2,63]},{"1":[2,55],"4":[2,55],"29":[2,55],"30":[2,55],"50":[2,55],"58":[2,55],"61":[2,55],"79":[2,55],"84":[2,55],"94":[2,55],"99":[2,55],"107":[2,55],"109":[2,55],"110":[2,55],"111":[2,55],"114":[2,55],"118":[2,55],"119":[2,55],"120":[2,55],"127":[2,55],"128":[2,55],"129":[2,55],"131":[2,55],"132":[2,55],"134":[2,55],"135":[2,55],"138":[2,55],"139":[2,55],"140":[2,55],"141":[2,55],"142":[2,55],"143":[2,55],"144":[2,55],"145":[2,55],"146":[2,55],"147":[2,55],"148":[2,55],"149":[2,55],"150":[2,55],"151":[2,55],"152":[2,55],"153":[2,55],"154":[2,55],"155":[2,55],"156":[2,55],"157":[2,55],"158":[2,55],"159":[2,55],"160":[2,55],"161":[2,55],"162":[2,55],"163":[2,55]},{"28":88,"49":[1,56]},{"1":[2,175],"4":[2,175],"29":[2,175],"30":[2,175],"50":[1,114],"58":[2,175],"61":[2,175],"79":[2,175],"84":[2,175],"94":[2,175],"99":[2,175],"107":[2,175],"108":129,"109":[2,175],"110":[2,175],"111":[2,175],"114":[2,175],"118":[2,175],"119":[2,175],"120":[2,175],"127":[2,175],"128":[2,175],"131":[2,175],"132":[2,175],"138":[2,175],"139":[2,175],"140":[2,175],"141":[2,175],"142":[2,175],"143":[2,175],"144":[2,175],"145":[2,175],"146":[2,175],"147":[2,175],"148":[2,175],"149":[2,175],"150":[2,175],"151":[2,175],"152":[2,175],"153":[2,175],"154":[2,175],"155":[2,175],"156":[2,175],"157":[2,175],"158":[2,175],"159":[2,175],"160":[2,175],"161":[2,175],"162":[2,175],"163":[2,175]},{"108":134,"109":[1,79],"111":[1,80],"114":[1,135],"127":[1,132],"128":[1,133]},{"1":[2,176],"4":[2,176],"29":[2,176],"30":[2,176],"50":[1,114],"58":[2,176],"61":[2,176],"79":[2,176],"84":[2,176],"94":[2,176],"99":[2,176],"107":[2,176],"108":129,"109":[2,176],"110":[2,176],"111":[2,176],"114":[2,176],"118":[2,176],"119":[2,176],"120":[2,176],"127":[2,176],"128":[2,176],"131":[2,176],"132":[2,176],"138":[2,176],"139":[2,176],"140":[2,176],"141":[2,176],"142":[2,176],"143":[2,176],"144":[2,176],"145":[2,176],"146":[2,176],"147":[2,176],"148":[2,176],"149":[2,176],"150":[2,176],"151":[2,176],"152":[2,176],"153":[2,176],"154":[2,176],"155":[2,176],"156":[2,176],"157":[2,176],"158":[2,176],"159":[2,176],"160":[2,176],"161":[2,176],"162":[2,176],"163":[2,176]},{"1":[2,177],"4":[2,177],"29":[2,177],"30":[2,177],"50":[1,114],"58":[2,177],"61":[2,177],"79":[2,177],"84":[2,177],"94":[2,177],"99":[2,177],"107":[2,177],"108":129,"109":[2,177],"110":[2,177],"111":[2,177],"114":[2,177],"118":[2,177],"119":[2,177],"120":[2,177],"127":[2,177],"128":[2,177],"131":[2,177],"132":[2,177],"138":[2,177],"139":[2,177],"140":[2,177],"141":[2,177],"142":[2,177],"143":[2,177],"144":[2,177],"145":[2,177],"146":[2,177],"147":[2,177],"148":[2,177],"149":[2,177],"150":[2,177],"151":[2,177],"152":[2,177],"153":[2,177],"154":[2,177],"155":[2,177],"156":[2,177],"157":[2,177],"158":[2,177],"159":[2,177],"160":[2,177],"161":[2,177],"162":[2,177],"163":[2,177]},{"1":[2,178],"4":[2,178],"29":[2,178],"30":[2,178],"50":[1,114],"58":[2,178],"61":[2,178],"79":[2,178],"84":[2,178],"94":[2,178],"99":[2,178],"107":[2,178],"108":129,"109":[2,178],"110":[2,178],"111":[2,178],"114":[2,178],"118":[2,178],"119":[2,178],"120":[2,178],"127":[2,178],"128":[2,178],"131":[2,178],"132":[2,178],"138":[2,178],"139":[2,178],"140":[2,178],"141":[2,178],"142":[2,178],"143":[2,178],"144":[2,178],"145":[2,178],"146":[2,178],"147":[2,178],"148":[2,178],"149":[2,178],"150":[2,178],"151":[2,178],"152":[2,178],"153":[2,178],"154":[2,178],"155":[2,178],"156":[2,178],"157":[2,178],"158":[2,178],"159":[2,178],"160":[2,178],"161":[2,178],"162":[2,178],"163":[2,178]},{"1":[2,179],"4":[2,179],"29":[2,179],"30":[2,179],"50":[1,114],"58":[2,179],"61":[2,179],"79":[2,179],"84":[2,179],"94":[2,179],"99":[2,179],"107":[2,179],"108":129,"109":[2,179],"110":[2,179],"111":[2,179],"114":[2,179],"118":[2,179],"119":[2,179],"120":[2,179],"127":[2,179],"128":[2,179],"131":[2,179],"132":[2,179],"138":[2,179],"139":[2,179],"140":[2,179],"141":[2,179],"142":[2,179],"143":[2,179],"144":[2,179],"145":[2,179],"146":[2,179],"147":[2,179],"148":[2,179],"149":[2,179],"150":[2,179],"151":[2,179],"152":[2,179],"153":[2,179],"154":[2,179],"155":[2,179],"156":[2,179],"157":[2,179],"158":[2,179],"159":[2,179],"160":[2,179],"161":[2,179],"162":[2,179],"163":[2,179]},{"1":[2,180],"4":[2,180],"29":[2,180],"30":[2,180],"50":[1,114],"58":[2,180],"61":[2,180],"79":[2,180],"84":[2,180],"94":[2,180],"99":[2,180],"107":[2,180],"108":129,"109":[2,180],"110":[2,180],"111":[2,180],"114":[2,180],"118":[2,180],"119":[2,180],"120":[2,180],"127":[2,180],"128":[2,180],"131":[2,180],"132":[2,180],"138":[2,180],"139":[2,180],"140":[2,180],"141":[2,180],"142":[2,180],"143":[2,180],"144":[2,180],"145":[2,180],"146":[2,180],"147":[2,180],"148":[2,180],"149":[2,180],"150":[2,180],"151":[2,180],"152":[2,180],"153":[2,180],"154":[2,180],"155":[2,180],"156":[2,180],"157":[2,180],"158":[2,180],"159":[2,180],"160":[2,180],"161":[2,180],"162":[2,180],"163":[2,180]},{"1":[2,181],"4":[2,181],"29":[2,181],"30":[2,181],"50":[1,114],"58":[2,181],"61":[2,181],"79":[2,181],"84":[2,181],"94":[2,181],"99":[2,181],"107":[2,181],"108":129,"109":[2,181],"110":[2,181],"111":[2,181],"114":[2,181],"118":[2,181],"119":[2,181],"120":[2,181],"127":[2,181],"128":[2,181],"131":[2,181],"132":[2,181],"138":[2,181],"139":[2,181],"140":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"148":[2,181],"149":[2,181],"150":[2,181],"151":[2,181],"152":[2,181],"153":[2,181],"154":[2,181],"155":[2,181],"156":[2,181],"157":[2,181],"158":[2,181],"159":[2,181],"160":[2,181],"161":[2,181],"162":[2,181],"163":[2,181]},{"1":[2,182],"4":[2,182],"29":[2,182],"30":[2,182],"50":[1,114],"58":[2,182],"61":[2,182],"79":[2,182],"84":[2,182],"94":[2,182],"99":[2,182],"107":[2,182],"108":129,"109":[2,182],"110":[2,182],"111":[2,182],"114":[2,182],"118":[2,182],"119":[2,182],"120":[2,182],"127":[2,182],"128":[2,182],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,182],"152":[2,182],"153":[2,182],"154":[2,182],"155":[2,182],"156":[2,182],"157":[2,182],"158":[2,182],"159":[2,182],"160":[2,182],"161":[2,182],"162":[2,182],"163":[1,123]},{"1":[2,183],"4":[2,183],"29":[2,183],"30":[2,183],"50":[1,114],"58":[2,183],"61":[2,183],"79":[2,183],"84":[2,183],"94":[2,183],"99":[2,183],"107":[2,183],"108":129,"109":[2,183],"110":[2,183],"111":[2,183],"114":[2,183],"118":[2,183],"119":[2,183],"120":[2,183],"127":[2,183],"128":[2,183],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,183],"152":[2,183],"153":[2,183],"154":[2,183],"155":[2,183],"156":[2,183],"157":[2,183],"158":[2,183],"159":[2,183],"160":[2,183],"161":[2,183],"162":[2,183],"163":[1,123]},{"4":[1,159],"6":259,"29":[1,6],"127":[1,258]},{"102":260,"103":[1,261],"104":[1,262]},{"1":[2,137],"4":[2,137],"29":[2,137],"30":[2,137],"50":[2,137],"58":[2,137],"61":[2,137],"79":[2,137],"84":[2,137],"94":[2,137],"99":[2,137],"107":[2,137],"109":[2,137],"110":[2,137],"111":[2,137],"114":[2,137],"118":[2,137],"119":[2,137],"120":[2,137],"127":[2,137],"128":[2,137],"129":[2,137],"131":[2,137],"132":[2,137],"134":[2,137],"135":[2,137],"138":[2,137],"139":[2,137],"140":[2,137],"141":[2,137],"142":[2,137],"143":[2,137],"144":[2,137],"145":[2,137],"146":[2,137],"147":[2,137],"148":[2,137],"149":[2,137],"150":[2,137],"151":[2,137],"152":[2,137],"153":[2,137],"154":[2,137],"155":[2,137],"156":[2,137],"157":[2,137],"158":[2,137],"159":[2,137],"160":[2,137],"161":[2,137],"162":[2,137],"163":[2,137]},{"116":263,"118":[1,264],"119":[1,265]},{"58":[1,266],"118":[2,149],"119":[2,149]},{"58":[2,146],"118":[2,146],"119":[2,146]},{"58":[2,147],"118":[2,147],"119":[2,147]},{"58":[2,148],"118":[2,148],"119":[2,148]},{"4":[2,120],"8":246,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":189,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,120],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"29":[1,267],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"122":268,"124":269,"125":[1,270]},{"14":271,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":153,"62":154,"64":184,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,94],"4":[2,94],"29":[1,273],"30":[2,94],"50":[2,94],"58":[2,94],"61":[2,94],"72":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"78":[2,70],"79":[2,94],"80":[2,70],"81":[2,70],"84":[2,94],"86":[1,272],"92":[2,70],"94":[2,94],"99":[2,94],"107":[2,94],"109":[2,94],"110":[2,94],"111":[2,94],"114":[2,94],"118":[2,94],"119":[2,94],"120":[2,94],"127":[2,94],"128":[2,94],"129":[2,94],"131":[2,94],"132":[2,94],"134":[2,94],"135":[2,94],"138":[2,94],"139":[2,94],"140":[2,94],"141":[2,94],"142":[2,94],"143":[2,94],"144":[2,94],"145":[2,94],"146":[2,94],"147":[2,94],"148":[2,94],"149":[2,94],"150":[2,94],"151":[2,94],"152":[2,94],"153":[2,94],"154":[2,94],"155":[2,94],"156":[2,94],"157":[2,94],"158":[2,94],"159":[2,94],"160":[2,94],"161":[2,94],"162":[2,94],"163":[2,94]},{"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"80":[1,146],"81":[1,147],"91":136,"92":[1,138]},{"63":150,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"80":[1,146],"81":[1,147],"91":149,"92":[1,138]},{"1":[2,50],"4":[2,50],"30":[2,50],"50":[1,114],"61":[1,131],"107":[2,50],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[2,50],"128":[2,50],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,131],"4":[2,131],"30":[2,131],"50":[1,114],"61":[1,131],"107":[2,131],"108":129,"109":[2,131],"111":[2,131],"114":[2,131],"118":[1,124],"119":[1,125],"127":[2,131],"128":[2,131],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"107":[1,274]},{"4":[2,121],"29":[2,121],"50":[1,114],"58":[2,121],"61":[1,275],"99":[2,121],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,58],"29":[2,58],"57":276,"58":[1,277],"99":[2,58]},{"1":[2,114],"4":[2,114],"29":[2,114],"30":[2,114],"46":[2,114],"50":[2,114],"58":[2,114],"61":[2,114],"72":[2,114],"73":[2,114],"74":[2,114],"75":[2,114],"78":[2,114],"79":[2,114],"80":[2,114],"81":[2,114],"84":[2,114],"86":[2,114],"92":[2,114],"94":[2,114],"99":[2,114],"107":[2,114],"109":[2,114],"110":[2,114],"111":[2,114],"114":[2,114],"118":[2,114],"119":[2,114],"120":[2,114],"127":[2,114],"128":[2,114],"129":[2,114],"131":[2,114],"132":[2,114],"134":[2,114],"135":[2,114],"138":[2,114],"139":[2,114],"140":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"147":[2,114],"148":[2,114],"149":[2,114],"150":[2,114],"151":[2,114],"152":[2,114],"153":[2,114],"154":[2,114],"155":[2,114],"156":[2,114],"157":[2,114],"158":[2,114],"159":[2,114],"160":[2,114],"161":[2,114],"162":[2,114],"163":[2,114]},{"1":[2,111],"4":[2,111],"29":[2,111],"30":[2,111],"50":[2,111],"58":[2,111],"61":[2,111],"79":[2,111],"84":[2,111],"94":[2,111],"99":[2,111],"107":[2,111],"109":[2,111],"110":[2,111],"111":[2,111],"114":[2,111],"118":[2,111],"119":[2,111],"120":[2,111],"127":[2,111],"128":[2,111],"129":[2,111],"131":[2,111],"132":[2,111],"134":[2,111],"135":[2,111],"138":[2,111],"139":[2,111],"140":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"147":[2,111],"148":[2,111],"149":[2,111],"150":[2,111],"151":[2,111],"152":[2,111],"153":[2,111],"154":[2,111],"155":[2,111],"156":[2,111],"157":[2,111],"158":[2,111],"159":[2,111],"160":[2,111],"161":[2,111],"162":[2,111],"163":[2,111]},{"4":[1,159],"6":278,"29":[1,6],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,159],"6":279,"29":[1,6],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,133],"4":[2,133],"29":[2,133],"30":[2,133],"50":[1,114],"58":[2,133],"61":[1,131],"79":[2,133],"84":[2,133],"94":[2,133],"99":[2,133],"107":[2,133],"108":129,"109":[1,79],"110":[1,280],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,133],"127":[2,133],"128":[2,133],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,135],"4":[2,135],"29":[2,135],"30":[2,135],"50":[1,114],"58":[2,135],"61":[1,131],"79":[2,135],"84":[2,135],"94":[2,135],"99":[2,135],"107":[2,135],"108":129,"109":[1,79],"110":[1,281],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,135],"127":[2,135],"128":[2,135],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,141],"4":[2,141],"29":[2,141],"30":[2,141],"50":[2,141],"58":[2,141],"61":[2,141],"79":[2,141],"84":[2,141],"94":[2,141],"99":[2,141],"107":[2,141],"109":[2,141],"110":[2,141],"111":[2,141],"114":[2,141],"118":[2,141],"119":[2,141],"120":[2,141],"127":[2,141],"128":[2,141],"129":[2,141],"131":[2,141],"132":[2,141],"134":[2,141],"135":[2,141],"138":[2,141],"139":[2,141],"140":[2,141],"141":[2,141],"142":[2,141],"143":[2,141],"144":[2,141],"145":[2,141],"146":[2,141],"147":[2,141],"148":[2,141],"149":[2,141],"150":[2,141],"151":[2,141],"152":[2,141],"153":[2,141],"154":[2,141],"155":[2,141],"156":[2,141],"157":[2,141],"158":[2,141],"159":[2,141],"160":[2,141],"161":[2,141],"162":[2,141],"163":[2,141]},{"1":[2,142],"4":[2,142],"29":[2,142],"30":[2,142],"50":[1,114],"58":[2,142],"61":[1,131],"79":[2,142],"84":[2,142],"94":[2,142],"99":[2,142],"107":[2,142],"108":129,"109":[1,79],"110":[2,142],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,142],"127":[2,142],"128":[2,142],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,58],"29":[2,58],"57":282,"58":[1,283],"84":[2,58]},{"4":[2,90],"29":[2,90],"30":[2,90],"58":[2,90],"84":[2,90]},{"4":[2,45],"29":[2,45],"30":[2,45],"46":[1,284],"58":[2,45],"84":[2,45]},{"4":[2,46],"29":[2,46],"30":[2,46],"46":[1,285],"58":[2,46],"84":[2,46]},{"4":[2,49],"29":[2,49],"30":[2,49],"58":[2,49],"84":[2,49]},{"1":[2,6],"4":[2,6],"30":[2,6]},{"1":[2,29],"4":[2,29],"29":[2,29],"30":[2,29],"50":[2,29],"58":[2,29],"61":[2,29],"79":[2,29],"84":[2,29],"94":[2,29],"99":[2,29],"103":[2,29],"104":[2,29],"107":[2,29],"109":[2,29],"110":[2,29],"111":[2,29],"114":[2,29],"118":[2,29],"119":[2,29],"120":[2,29],"123":[2,29],"125":[2,29],"127":[2,29],"128":[2,29],"129":[2,29],"131":[2,29],"132":[2,29],"134":[2,29],"135":[2,29],"138":[2,29],"139":[2,29],"140":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"148":[2,29],"149":[2,29],"150":[2,29],"151":[2,29],"152":[2,29],"153":[2,29],"154":[2,29],"155":[2,29],"156":[2,29],"157":[2,29],"158":[2,29],"159":[2,29],"160":[2,29],"161":[2,29],"162":[2,29],"163":[2,29]},{"1":[2,186],"4":[2,186],"29":[2,186],"30":[2,186],"50":[1,114],"58":[2,186],"61":[2,186],"79":[2,186],"84":[2,186],"94":[2,186],"99":[2,186],"107":[2,186],"108":129,"109":[2,186],"110":[2,186],"111":[2,186],"114":[2,186],"118":[2,186],"119":[2,186],"120":[2,186],"127":[2,186],"128":[2,186],"129":[1,126],"131":[2,186],"132":[2,186],"134":[1,93],"135":[1,94],"138":[2,186],"139":[2,186],"140":[2,186],"141":[2,186],"142":[2,186],"143":[2,186],"144":[2,186],"145":[2,186],"146":[2,186],"147":[2,186],"148":[2,186],"149":[2,186],"150":[2,186],"151":[2,186],"152":[2,186],"153":[2,186],"154":[2,186],"155":[2,186],"156":[2,186],"157":[2,186],"158":[2,186],"159":[2,186],"160":[2,186],"161":[2,186],"162":[2,186],"163":[2,186]},{"1":[2,187],"4":[2,187],"29":[2,187],"30":[2,187],"50":[1,114],"58":[2,187],"61":[2,187],"79":[2,187],"84":[2,187],"94":[2,187],"99":[2,187],"107":[2,187],"108":129,"109":[2,187],"110":[2,187],"111":[2,187],"114":[2,187],"118":[2,187],"119":[2,187],"120":[2,187],"127":[2,187],"128":[2,187],"129":[1,126],"131":[2,187],"132":[2,187],"134":[1,93],"135":[1,94],"138":[2,187],"139":[2,187],"140":[2,187],"141":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"146":[2,187],"147":[2,187],"148":[2,187],"149":[2,187],"150":[2,187],"151":[2,187],"152":[2,187],"153":[2,187],"154":[2,187],"155":[2,187],"156":[2,187],"157":[2,187],"158":[2,187],"159":[2,187],"160":[2,187],"161":[2,187],"162":[2,187],"163":[2,187]},{"1":[2,188],"4":[2,188],"29":[2,188],"30":[2,188],"50":[1,114],"58":[2,188],"61":[2,188],"79":[2,188],"84":[2,188],"94":[2,188],"99":[2,188],"107":[2,188],"108":129,"109":[2,188],"110":[2,188],"111":[2,188],"114":[2,188],"118":[2,188],"119":[2,188],"120":[2,188],"127":[2,188],"128":[2,188],"129":[1,126],"131":[2,188],"132":[2,188],"134":[1,93],"135":[1,94],"138":[2,188],"139":[2,188],"140":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"147":[2,188],"148":[2,188],"149":[2,188],"150":[2,188],"151":[2,188],"152":[2,188],"153":[2,188],"154":[2,188],"155":[2,188],"156":[2,188],"157":[2,188],"158":[2,188],"159":[2,188],"160":[2,188],"161":[2,188],"162":[2,188],"163":[2,188]},{"1":[2,189],"4":[2,189],"29":[2,189],"30":[2,189],"50":[1,114],"58":[2,189],"61":[2,189],"79":[2,189],"84":[2,189],"94":[2,189],"99":[2,189],"107":[2,189],"108":129,"109":[2,189],"110":[2,189],"111":[2,189],"114":[2,189],"118":[2,189],"119":[2,189],"120":[2,189],"127":[2,189],"128":[2,189],"129":[1,126],"131":[2,189],"132":[2,189],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"148":[2,189],"149":[2,189],"150":[2,189],"151":[2,189],"152":[2,189],"153":[2,189],"154":[2,189],"155":[2,189],"156":[2,189],"157":[2,189],"158":[2,189],"159":[2,189],"160":[2,189],"161":[2,189],"162":[2,189],"163":[2,189]},{"1":[2,190],"4":[2,190],"29":[2,190],"30":[2,190],"50":[1,114],"58":[2,190],"61":[2,190],"79":[2,190],"84":[2,190],"94":[2,190],"99":[2,190],"107":[2,190],"108":129,"109":[2,190],"110":[2,190],"111":[2,190],"114":[2,190],"118":[2,190],"119":[2,190],"120":[2,190],"127":[2,190],"128":[2,190],"129":[1,126],"131":[2,190],"132":[2,190],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,190],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"148":[2,190],"149":[2,190],"150":[2,190],"151":[2,190],"152":[2,190],"153":[2,190],"154":[2,190],"155":[2,190],"156":[2,190],"157":[2,190],"158":[2,190],"159":[2,190],"160":[2,190],"161":[2,190],"162":[2,190],"163":[2,190]},{"1":[2,191],"4":[2,191],"29":[2,191],"30":[2,191],"50":[1,114],"58":[2,191],"61":[2,191],"79":[2,191],"84":[2,191],"94":[2,191],"99":[2,191],"107":[2,191],"108":129,"109":[2,191],"110":[2,191],"111":[2,191],"114":[2,191],"118":[2,191],"119":[2,191],"120":[2,191],"127":[2,191],"128":[2,191],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,191],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"148":[2,191],"149":[2,191],"150":[2,191],"151":[2,191],"152":[2,191],"153":[2,191],"154":[2,191],"155":[2,191],"156":[2,191],"157":[2,191],"158":[2,191],"159":[2,191],"160":[2,191],"161":[2,191],"162":[2,191],"163":[2,191]},{"1":[2,192],"4":[2,192],"29":[2,192],"30":[2,192],"50":[1,114],"58":[2,192],"61":[2,192],"79":[2,192],"84":[2,192],"94":[2,192],"99":[2,192],"107":[2,192],"108":129,"109":[2,192],"110":[2,192],"111":[2,192],"114":[2,192],"118":[2,192],"119":[2,192],"120":[2,192],"127":[2,192],"128":[2,192],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,192],"142":[2,192],"143":[2,192],"144":[2,192],"145":[2,192],"146":[2,192],"147":[2,192],"148":[2,192],"149":[2,192],"150":[2,192],"151":[2,192],"152":[2,192],"153":[2,192],"154":[2,192],"155":[2,192],"156":[2,192],"157":[2,192],"158":[2,192],"159":[2,192],"160":[2,192],"161":[2,192],"162":[2,192],"163":[2,192]},{"1":[2,193],"4":[2,193],"29":[2,193],"30":[2,193],"50":[1,114],"58":[2,193],"61":[2,193],"79":[2,193],"84":[2,193],"94":[2,193],"99":[2,193],"107":[2,193],"108":129,"109":[2,193],"110":[2,193],"111":[2,193],"114":[2,193],"118":[2,193],"119":[2,193],"120":[2,193],"127":[2,193],"128":[2,193],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,193],"142":[2,193],"143":[2,193],"144":[2,193],"145":[2,193],"146":[2,193],"147":[2,193],"148":[2,193],"149":[2,193],"150":[2,193],"151":[2,193],"152":[2,193],"153":[2,193],"154":[2,193],"155":[2,193],"156":[2,193],"157":[2,193],"158":[2,193],"159":[2,193],"160":[2,193],"161":[2,193],"162":[2,193],"163":[2,193]},{"1":[2,194],"4":[2,194],"29":[2,194],"30":[2,194],"50":[1,114],"58":[2,194],"61":[2,194],"79":[2,194],"84":[2,194],"94":[2,194],"99":[2,194],"107":[2,194],"108":129,"109":[2,194],"110":[2,194],"111":[2,194],"114":[2,194],"118":[2,194],"119":[2,194],"120":[2,194],"127":[2,194],"128":[2,194],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[2,194],"145":[2,194],"146":[2,194],"147":[2,194],"148":[2,194],"149":[2,194],"150":[2,194],"151":[2,194],"152":[2,194],"153":[2,194],"154":[2,194],"155":[2,194],"156":[2,194],"157":[2,194],"158":[2,194],"159":[2,194],"160":[2,194],"161":[2,194],"162":[2,194],"163":[2,194]},{"1":[2,195],"4":[2,195],"29":[2,195],"30":[2,195],"50":[1,114],"58":[2,195],"61":[2,195],"79":[2,195],"84":[2,195],"94":[2,195],"99":[2,195],"107":[2,195],"108":129,"109":[2,195],"110":[2,195],"111":[2,195],"114":[2,195],"118":[2,195],"119":[2,195],"120":[2,195],"127":[2,195],"128":[2,195],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[2,195],"145":[2,195],"146":[2,195],"147":[2,195],"148":[2,195],"149":[2,195],"150":[2,195],"151":[2,195],"152":[2,195],"153":[2,195],"154":[2,195],"155":[2,195],"156":[2,195],"157":[2,195],"158":[2,195],"159":[2,195],"160":[2,195],"161":[2,195],"162":[2,195],"163":[2,195]},{"1":[2,196],"4":[2,196],"29":[2,196],"30":[2,196],"50":[1,114],"58":[2,196],"61":[2,196],"79":[2,196],"84":[2,196],"94":[2,196],"99":[2,196],"107":[2,196],"108":129,"109":[2,196],"110":[2,196],"111":[2,196],"114":[2,196],"118":[2,196],"119":[2,196],"120":[2,196],"127":[2,196],"128":[2,196],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[2,196],"145":[2,196],"146":[2,196],"147":[2,196],"148":[2,196],"149":[2,196],"150":[2,196],"151":[2,196],"152":[2,196],"153":[2,196],"154":[2,196],"155":[2,196],"156":[2,196],"157":[2,196],"158":[2,196],"159":[2,196],"160":[2,196],"161":[2,196],"162":[2,196],"163":[2,196]},{"1":[2,197],"4":[2,197],"29":[2,197],"30":[2,197],"50":[1,114],"58":[2,197],"61":[2,197],"79":[2,197],"84":[2,197],"94":[2,197],"99":[2,197],"107":[2,197],"108":129,"109":[2,197],"110":[2,197],"111":[2,197],"114":[2,197],"118":[2,197],"119":[2,197],"120":[2,197],"127":[2,197],"128":[2,197],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,197],"148":[2,197],"149":[2,197],"150":[2,197],"151":[2,197],"152":[2,197],"153":[2,197],"154":[2,197],"155":[2,197],"156":[2,197],"157":[2,197],"158":[2,197],"159":[2,197],"160":[2,197],"161":[2,197],"162":[2,197],"163":[2,197]},{"1":[2,198],"4":[2,198],"29":[2,198],"30":[2,198],"50":[1,114],"58":[2,198],"61":[2,198],"79":[2,198],"84":[2,198],"94":[2,198],"99":[2,198],"107":[2,198],"108":129,"109":[2,198],"110":[2,198],"111":[2,198],"114":[2,198],"118":[2,198],"119":[2,198],"120":[2,198],"127":[2,198],"128":[2,198],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,198],"148":[2,198],"149":[2,198],"150":[2,198],"151":[2,198],"152":[2,198],"153":[2,198],"154":[2,198],"155":[2,198],"156":[2,198],"157":[2,198],"158":[2,198],"159":[2,198],"160":[2,198],"161":[2,198],"162":[2,198],"163":[2,198]},{"1":[2,199],"4":[2,199],"29":[2,199],"30":[2,199],"50":[1,114],"58":[2,199],"61":[2,199],"79":[2,199],"84":[2,199],"94":[2,199],"99":[2,199],"107":[2,199],"108":129,"109":[2,199],"110":[2,199],"111":[2,199],"114":[2,199],"118":[2,199],"119":[2,199],"120":[2,199],"127":[2,199],"128":[2,199],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,199],"148":[2,199],"149":[2,199],"150":[2,199],"151":[2,199],"152":[2,199],"153":[2,199],"154":[2,199],"155":[2,199],"156":[2,199],"157":[2,199],"158":[2,199],"159":[2,199],"160":[2,199],"161":[2,199],"162":[2,199],"163":[2,199]},{"1":[2,200],"4":[2,200],"29":[2,200],"30":[2,200],"50":[1,114],"58":[2,200],"61":[2,200],"79":[2,200],"84":[2,200],"94":[2,200],"99":[2,200],"107":[2,200],"108":129,"109":[2,200],"110":[2,200],"111":[2,200],"114":[2,200],"118":[2,200],"119":[2,200],"120":[2,200],"127":[2,200],"128":[2,200],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,200],"148":[2,200],"149":[2,200],"150":[2,200],"151":[2,200],"152":[2,200],"153":[2,200],"154":[2,200],"155":[2,200],"156":[2,200],"157":[2,200],"158":[2,200],"159":[2,200],"160":[2,200],"161":[2,200],"162":[2,200],"163":[2,200]},{"1":[2,201],"4":[2,201],"29":[2,201],"30":[2,201],"50":[1,114],"58":[2,201],"61":[2,201],"79":[2,201],"84":[2,201],"94":[2,201],"99":[2,201],"107":[2,201],"108":129,"109":[2,201],"110":[2,201],"111":[2,201],"114":[2,201],"118":[2,201],"119":[2,201],"120":[2,201],"127":[2,201],"128":[2,201],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,201],"152":[2,201],"153":[2,201],"154":[2,201],"155":[2,201],"156":[2,201],"157":[2,201],"158":[2,201],"159":[2,201],"160":[2,201],"161":[2,201],"162":[2,201],"163":[1,123]},{"1":[2,202],"4":[2,202],"29":[2,202],"30":[2,202],"50":[1,114],"58":[2,202],"61":[2,202],"79":[2,202],"84":[2,202],"94":[2,202],"99":[2,202],"107":[2,202],"108":129,"109":[2,202],"110":[2,202],"111":[2,202],"114":[2,202],"118":[2,202],"119":[2,202],"120":[2,202],"127":[2,202],"128":[2,202],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,202],"152":[2,202],"153":[2,202],"154":[2,202],"155":[2,202],"156":[2,202],"157":[2,202],"158":[2,202],"159":[2,202],"160":[2,202],"161":[2,202],"162":[2,202],"163":[1,123]},{"1":[2,203],"4":[2,203],"29":[2,203],"30":[2,203],"50":[1,114],"58":[2,203],"61":[2,203],"79":[2,203],"84":[2,203],"94":[2,203],"99":[2,203],"107":[2,203],"108":129,"109":[2,203],"110":[2,203],"111":[2,203],"114":[2,203],"118":[2,203],"119":[2,203],"120":[2,203],"127":[2,203],"128":[2,203],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[2,203],"154":[2,203],"155":[2,203],"156":[2,203],"157":[2,203],"158":[2,203],"159":[2,203],"160":[2,203],"161":[2,203],"162":[2,203],"163":[1,123]},{"1":[2,204],"4":[2,204],"29":[2,204],"30":[2,204],"50":[1,114],"58":[2,204],"61":[2,204],"79":[2,204],"84":[2,204],"94":[2,204],"99":[2,204],"107":[2,204],"108":129,"109":[2,204],"110":[2,204],"111":[2,204],"114":[2,204],"118":[2,204],"119":[2,204],"120":[2,204],"127":[2,204],"128":[2,204],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[2,204],"154":[2,204],"155":[2,204],"156":[2,204],"157":[2,204],"158":[2,204],"159":[2,204],"160":[2,204],"161":[2,204],"162":[2,204],"163":[1,123]},{"1":[2,205],"4":[2,205],"29":[2,205],"30":[2,205],"50":[2,205],"58":[2,205],"61":[2,205],"79":[2,205],"84":[2,205],"94":[2,205],"99":[2,205],"107":[2,205],"108":129,"109":[2,205],"110":[2,205],"111":[2,205],"114":[2,205],"118":[2,205],"119":[2,205],"120":[2,205],"127":[2,205],"128":[2,205],"129":[2,205],"131":[2,205],"132":[2,205],"134":[2,205],"135":[2,205],"138":[2,205],"139":[2,205],"140":[2,205],"141":[2,205],"142":[2,205],"143":[2,205],"144":[2,205],"145":[2,205],"146":[2,205],"147":[2,205],"148":[2,205],"149":[2,205],"150":[2,205],"151":[2,205],"152":[2,205],"153":[2,205],"154":[2,205],"155":[2,205],"156":[2,205],"157":[2,205],"158":[2,205],"159":[2,205],"160":[2,205],"161":[2,205],"162":[2,205],"163":[2,205]},{"1":[2,206],"4":[2,206],"29":[2,206],"30":[2,206],"50":[1,114],"58":[2,206],"61":[2,206],"79":[2,206],"84":[2,206],"94":[2,206],"99":[2,206],"107":[2,206],"108":129,"109":[2,206],"110":[2,206],"111":[2,206],"114":[2,206],"118":[2,206],"119":[2,206],"120":[2,206],"127":[2,206],"128":[2,206],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,207],"4":[2,207],"29":[2,207],"30":[2,207],"50":[1,114],"58":[2,207],"61":[2,207],"79":[2,207],"84":[2,207],"94":[2,207],"99":[2,207],"107":[2,207],"108":129,"109":[2,207],"110":[2,207],"111":[2,207],"114":[2,207],"118":[2,207],"119":[2,207],"120":[2,207],"127":[2,207],"128":[2,207],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,208],"4":[2,208],"29":[2,208],"30":[2,208],"50":[1,114],"58":[2,208],"61":[2,208],"79":[2,208],"84":[2,208],"94":[2,208],"99":[2,208],"107":[2,208],"108":129,"109":[2,208],"110":[2,208],"111":[2,208],"114":[2,208],"118":[2,208],"119":[2,208],"120":[2,208],"127":[2,208],"128":[2,208],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,209],"4":[2,209],"29":[2,209],"30":[2,209],"50":[1,114],"58":[2,209],"61":[2,209],"79":[2,209],"84":[2,209],"94":[2,209],"99":[2,209],"107":[2,209],"108":129,"109":[2,209],"110":[2,209],"111":[2,209],"114":[2,209],"118":[2,209],"119":[2,209],"120":[2,209],"127":[2,209],"128":[2,209],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,210],"4":[2,210],"29":[2,210],"30":[2,210],"50":[1,114],"58":[2,210],"61":[2,210],"79":[2,210],"84":[2,210],"94":[2,210],"99":[2,210],"107":[2,210],"108":129,"109":[2,210],"110":[2,210],"111":[2,210],"114":[2,210],"118":[2,210],"119":[2,210],"120":[2,210],"127":[2,210],"128":[2,210],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,211],"4":[2,211],"29":[2,211],"30":[2,211],"50":[1,114],"58":[2,211],"61":[2,211],"79":[2,211],"84":[2,211],"94":[2,211],"99":[2,211],"107":[2,211],"108":129,"109":[2,211],"110":[2,211],"111":[2,211],"114":[2,211],"118":[2,211],"119":[2,211],"120":[2,211],"127":[2,211],"128":[2,211],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,212],"4":[2,212],"29":[2,212],"30":[2,212],"50":[1,114],"58":[2,212],"61":[2,212],"79":[2,212],"84":[2,212],"94":[2,212],"99":[2,212],"107":[2,212],"108":129,"109":[2,212],"110":[2,212],"111":[2,212],"114":[2,212],"118":[2,212],"119":[2,212],"120":[2,212],"127":[2,212],"128":[2,212],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,213],"4":[2,213],"29":[2,213],"30":[2,213],"50":[1,114],"58":[2,213],"61":[2,213],"79":[2,213],"84":[2,213],"94":[2,213],"99":[2,213],"107":[2,213],"108":129,"109":[2,213],"110":[2,213],"111":[2,213],"114":[2,213],"118":[2,213],"119":[2,213],"120":[2,213],"127":[2,213],"128":[2,213],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,214],"4":[2,214],"29":[2,214],"30":[2,214],"50":[1,114],"58":[2,214],"61":[2,214],"79":[2,214],"84":[2,214],"94":[2,214],"99":[2,214],"107":[2,214],"108":129,"109":[2,214],"110":[2,214],"111":[2,214],"114":[2,214],"118":[2,214],"119":[2,214],"120":[2,214],"127":[2,214],"128":[2,214],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,214],"152":[2,214],"153":[2,214],"154":[2,214],"155":[2,214],"156":[2,214],"157":[2,214],"158":[2,214],"159":[2,214],"160":[2,214],"161":[2,214],"162":[2,214],"163":[1,123]},{"1":[2,215],"4":[2,215],"29":[2,215],"30":[2,215],"50":[1,114],"58":[2,215],"61":[1,131],"79":[2,215],"84":[2,215],"94":[2,215],"99":[2,215],"107":[2,215],"108":129,"109":[2,215],"110":[2,215],"111":[2,215],"114":[2,215],"118":[1,124],"119":[1,125],"120":[2,215],"127":[2,215],"128":[2,215],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,216],"4":[2,216],"29":[2,216],"30":[2,216],"50":[1,114],"58":[2,216],"61":[1,131],"79":[2,216],"84":[2,216],"94":[2,216],"99":[2,216],"107":[2,216],"108":129,"109":[2,216],"110":[2,216],"111":[2,216],"114":[2,216],"118":[1,124],"119":[1,125],"120":[2,216],"127":[2,216],"128":[2,216],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"8":286,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":287,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,172],"4":[2,172],"29":[2,172],"30":[2,172],"50":[1,114],"58":[2,172],"61":[1,131],"79":[2,172],"84":[2,172],"94":[2,172],"99":[2,172],"107":[2,172],"108":129,"109":[1,79],"110":[2,172],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,172],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,174],"4":[2,174],"29":[2,174],"30":[2,174],"50":[1,114],"58":[2,174],"61":[1,131],"79":[2,174],"84":[2,174],"94":[2,174],"99":[2,174],"107":[2,174],"108":129,"109":[1,79],"110":[2,174],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,174],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"116":288,"118":[1,264],"119":[1,265]},{"61":[1,289]},{"1":[2,171],"4":[2,171],"29":[2,171],"30":[2,171],"50":[1,114],"58":[2,171],"61":[1,131],"79":[2,171],"84":[2,171],"94":[2,171],"99":[2,171],"107":[2,171],"108":129,"109":[1,79],"110":[2,171],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,171],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,173],"4":[2,173],"29":[2,173],"30":[2,173],"50":[1,114],"58":[2,173],"61":[1,131],"79":[2,173],"84":[2,173],"94":[2,173],"99":[2,173],"107":[2,173],"108":129,"109":[1,79],"110":[2,173],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,173],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"116":290,"118":[1,264],"119":[1,265]},{"4":[2,58],"29":[2,58],"57":291,"58":[1,277],"94":[2,58]},{"4":[2,121],"29":[2,121],"30":[2,121],"50":[1,114],"58":[2,121],"61":[1,131],"94":[2,121],"99":[2,121],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,79],"4":[2,79],"29":[2,79],"30":[2,79],"46":[2,79],"50":[2,79],"58":[2,79],"61":[2,79],"72":[2,79],"73":[2,79],"74":[2,79],"75":[2,79],"78":[2,79],"79":[2,79],"80":[2,79],"81":[2,79],"84":[2,79],"86":[2,79],"92":[2,79],"94":[2,79],"99":[2,79],"107":[2,79],"109":[2,79],"110":[2,79],"111":[2,79],"114":[2,79],"118":[2,79],"119":[2,79],"120":[2,79],"127":[2,79],"128":[2,79],"129":[2,79],"131":[2,79],"132":[2,79],"134":[2,79],"135":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79],"151":[2,79],"152":[2,79],"153":[2,79],"154":[2,79],"155":[2,79],"156":[2,79],"157":[2,79],"158":[2,79],"159":[2,79],"160":[2,79],"161":[2,79],"162":[2,79],"163":[2,79]},{"1":[2,80],"4":[2,80],"29":[2,80],"30":[2,80],"46":[2,80],"50":[2,80],"58":[2,80],"61":[2,80],"72":[2,80],"73":[2,80],"74":[2,80],"75":[2,80],"78":[2,80],"79":[2,80],"80":[2,80],"81":[2,80],"84":[2,80],"86":[2,80],"92":[2,80],"94":[2,80],"99":[2,80],"107":[2,80],"109":[2,80],"110":[2,80],"111":[2,80],"114":[2,80],"118":[2,80],"119":[2,80],"120":[2,80],"127":[2,80],"128":[2,80],"129":[2,80],"131":[2,80],"132":[2,80],"134":[2,80],"135":[2,80],"138":[2,80],"139":[2,80],"140":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80],"151":[2,80],"152":[2,80],"153":[2,80],"154":[2,80],"155":[2,80],"156":[2,80],"157":[2,80],"158":[2,80],"159":[2,80],"160":[2,80],"161":[2,80],"162":[2,80],"163":[2,80]},{"1":[2,82],"4":[2,82],"29":[2,82],"30":[2,82],"46":[2,82],"50":[2,82],"58":[2,82],"61":[2,82],"72":[2,82],"73":[2,82],"74":[2,82],"75":[2,82],"78":[2,82],"79":[2,82],"80":[2,82],"81":[2,82],"84":[2,82],"86":[2,82],"92":[2,82],"94":[2,82],"99":[2,82],"107":[2,82],"109":[2,82],"110":[2,82],"111":[2,82],"114":[2,82],"118":[2,82],"119":[2,82],"120":[2,82],"127":[2,82],"128":[2,82],"129":[2,82],"131":[2,82],"132":[2,82],"134":[2,82],"135":[2,82],"138":[2,82],"139":[2,82],"140":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82],"151":[2,82],"152":[2,82],"153":[2,82],"154":[2,82],"155":[2,82],"156":[2,82],"157":[2,82],"158":[2,82],"159":[2,82],"160":[2,82],"161":[2,82],"162":[2,82],"163":[2,82]},{"50":[1,114],"61":[1,293],"79":[1,292],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,86],"4":[2,86],"29":[2,86],"30":[2,86],"46":[2,86],"50":[2,86],"58":[2,86],"61":[2,86],"72":[2,86],"73":[2,86],"74":[2,86],"75":[2,86],"78":[2,86],"79":[2,86],"80":[2,86],"81":[2,86],"84":[2,86],"86":[2,86],"92":[2,86],"94":[2,86],"99":[2,86],"107":[2,86],"109":[2,86],"110":[2,86],"111":[2,86],"114":[2,86],"118":[2,86],"119":[2,86],"120":[2,86],"127":[2,86],"128":[2,86],"129":[2,86],"131":[2,86],"132":[2,86],"134":[2,86],"135":[2,86],"138":[2,86],"139":[2,86],"140":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"148":[2,86],"149":[2,86],"150":[2,86],"151":[2,86],"152":[2,86],"153":[2,86],"154":[2,86],"155":[2,86],"156":[2,86],"157":[2,86],"158":[2,86],"159":[2,86],"160":[2,86],"161":[2,86],"162":[2,86],"163":[2,86]},{"8":294,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,87],"4":[2,87],"29":[2,87],"30":[2,87],"46":[2,87],"50":[2,87],"58":[2,87],"61":[2,87],"72":[2,87],"73":[2,87],"74":[2,87],"75":[2,87],"78":[2,87],"79":[2,87],"80":[2,87],"81":[2,87],"84":[2,87],"86":[2,87],"92":[2,87],"94":[2,87],"99":[2,87],"107":[2,87],"109":[2,87],"110":[2,87],"111":[2,87],"114":[2,87],"118":[2,87],"119":[2,87],"120":[2,87],"127":[2,87],"128":[2,87],"129":[2,87],"131":[2,87],"132":[2,87],"134":[2,87],"135":[2,87],"138":[2,87],"139":[2,87],"140":[2,87],"141":[2,87],"142":[2,87],"143":[2,87],"144":[2,87],"145":[2,87],"146":[2,87],"147":[2,87],"148":[2,87],"149":[2,87],"150":[2,87],"151":[2,87],"152":[2,87],"153":[2,87],"154":[2,87],"155":[2,87],"156":[2,87],"157":[2,87],"158":[2,87],"159":[2,87],"160":[2,87],"161":[2,87],"162":[2,87],"163":[2,87]},{"1":[2,44],"4":[2,44],"29":[2,44],"30":[2,44],"50":[1,114],"58":[2,44],"61":[1,131],"79":[2,44],"84":[2,44],"94":[2,44],"99":[2,44],"107":[2,44],"108":129,"109":[1,79],"110":[2,44],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,44],"127":[2,44],"128":[2,44],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"54":295,"55":[1,75],"56":[1,76]},{"59":296,"60":[1,157]},{"61":[1,297]},{"8":298,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,169],"4":[2,169],"29":[2,169],"30":[2,169],"50":[2,169],"58":[2,169],"61":[2,169],"79":[2,169],"84":[2,169],"94":[2,169],"99":[2,169],"107":[2,169],"109":[2,169],"110":[2,169],"111":[2,169],"114":[2,169],"118":[2,169],"119":[2,169],"120":[2,169],"123":[2,169],"127":[2,169],"128":[2,169],"129":[2,169],"131":[2,169],"132":[2,169],"134":[2,169],"135":[2,169],"138":[2,169],"139":[2,169],"140":[2,169],"141":[2,169],"142":[2,169],"143":[2,169],"144":[2,169],"145":[2,169],"146":[2,169],"147":[2,169],"148":[2,169],"149":[2,169],"150":[2,169],"151":[2,169],"152":[2,169],"153":[2,169],"154":[2,169],"155":[2,169],"156":[2,169],"157":[2,169],"158":[2,169],"159":[2,169],"160":[2,169],"161":[2,169],"162":[2,169],"163":[2,169]},{"1":[2,127],"4":[2,127],"29":[2,127],"30":[2,127],"50":[2,127],"58":[2,127],"61":[2,127],"79":[2,127],"84":[2,127],"94":[2,127],"99":[2,127],"103":[1,299],"107":[2,127],"109":[2,127],"110":[2,127],"111":[2,127],"114":[2,127],"118":[2,127],"119":[2,127],"120":[2,127],"127":[2,127],"128":[2,127],"129":[2,127],"131":[2,127],"132":[2,127],"134":[2,127],"135":[2,127],"138":[2,127],"139":[2,127],"140":[2,127],"141":[2,127],"142":[2,127],"143":[2,127],"144":[2,127],"145":[2,127],"146":[2,127],"147":[2,127],"148":[2,127],"149":[2,127],"150":[2,127],"151":[2,127],"152":[2,127],"153":[2,127],"154":[2,127],"155":[2,127],"156":[2,127],"157":[2,127],"158":[2,127],"159":[2,127],"160":[2,127],"161":[2,127],"162":[2,127],"163":[2,127]},{"4":[1,159],"6":300,"29":[1,6]},{"31":301,"32":[1,87]},{"4":[1,159],"6":302,"29":[1,6]},{"8":303,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":304,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"31":175,"32":[1,87],"66":176,"67":177,"82":[1,84],"98":[1,178],"117":305},{"122":306,"124":269,"125":[1,270]},{"30":[1,307],"123":[1,308],"124":309,"125":[1,270]},{"30":[2,162],"123":[2,162],"125":[2,162]},{"8":311,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"100":310,"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,107],"4":[2,107],"29":[2,107],"30":[2,107],"50":[2,107],"58":[2,107],"61":[2,107],"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,107],"80":[1,146],"81":[1,147],"84":[2,107],"91":136,"92":[1,138],"94":[2,107],"99":[2,107],"107":[2,107],"109":[2,107],"110":[2,107],"111":[2,107],"114":[2,107],"118":[2,107],"119":[2,107],"120":[2,107],"127":[2,107],"128":[2,107],"129":[2,107],"131":[2,107],"132":[2,107],"134":[2,107],"135":[2,107],"138":[2,107],"139":[2,107],"140":[2,107],"141":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"148":[2,107],"149":[2,107],"150":[2,107],"151":[2,107],"152":[2,107],"153":[2,107],"154":[2,107],"155":[2,107],"156":[2,107],"157":[2,107],"158":[2,107],"159":[2,107],"160":[2,107],"161":[2,107],"162":[2,107],"163":[2,107]},{"14":312,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":153,"62":154,"64":184,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"4":[2,100],"28":202,"30":[2,100],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":315,"49":[1,56],"65":316,"87":313,"88":314,"97":[1,317]},{"1":[2,132],"4":[2,132],"29":[2,132],"30":[2,132],"50":[2,132],"58":[2,132],"61":[2,132],"72":[2,132],"73":[2,132],"74":[2,132],"75":[2,132],"78":[2,132],"79":[2,132],"80":[2,132],"81":[2,132],"84":[2,132],"92":[2,132],"94":[2,132],"99":[2,132],"107":[2,132],"109":[2,132],"110":[2,132],"111":[2,132],"114":[2,132],"118":[2,132],"119":[2,132],"120":[2,132],"127":[2,132],"128":[2,132],"129":[2,132],"131":[2,132],"132":[2,132],"134":[2,132],"135":[2,132],"138":[2,132],"139":[2,132],"140":[2,132],"141":[2,132],"142":[2,132],"143":[2,132],"144":[2,132],"145":[2,132],"146":[2,132],"147":[2,132],"148":[2,132],"149":[2,132],"150":[2,132],"151":[2,132],"152":[2,132],"153":[2,132],"154":[2,132],"155":[2,132],"156":[2,132],"157":[2,132],"158":[2,132],"159":[2,132],"160":[2,132],"161":[2,132],"162":[2,132],"163":[2,132]},{"61":[1,318]},{"4":[1,320],"29":[1,321],"99":[1,319]},{"4":[2,59],"8":322,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,59],"30":[2,59],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"94":[2,59],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,59],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,166],"4":[2,166],"29":[2,166],"30":[2,166],"50":[2,166],"58":[2,166],"61":[2,166],"79":[2,166],"84":[2,166],"94":[2,166],"99":[2,166],"107":[2,166],"109":[2,166],"110":[2,166],"111":[2,166],"114":[2,166],"118":[2,166],"119":[2,166],"120":[2,166],"123":[2,166],"127":[2,166],"128":[2,166],"129":[2,166],"131":[2,166],"132":[2,166],"134":[2,166],"135":[2,166],"138":[2,166],"139":[2,166],"140":[2,166],"141":[2,166],"142":[2,166],"143":[2,166],"144":[2,166],"145":[2,166],"146":[2,166],"147":[2,166],"148":[2,166],"149":[2,166],"150":[2,166],"151":[2,166],"152":[2,166],"153":[2,166],"154":[2,166],"155":[2,166],"156":[2,166],"157":[2,166],"158":[2,166],"159":[2,166],"160":[2,166],"161":[2,166],"162":[2,166],"163":[2,166]},{"1":[2,167],"4":[2,167],"29":[2,167],"30":[2,167],"50":[2,167],"58":[2,167],"61":[2,167],"79":[2,167],"84":[2,167],"94":[2,167],"99":[2,167],"107":[2,167],"109":[2,167],"110":[2,167],"111":[2,167],"114":[2,167],"118":[2,167],"119":[2,167],"120":[2,167],"123":[2,167],"127":[2,167],"128":[2,167],"129":[2,167],"131":[2,167],"132":[2,167],"134":[2,167],"135":[2,167],"138":[2,167],"139":[2,167],"140":[2,167],"141":[2,167],"142":[2,167],"143":[2,167],"144":[2,167],"145":[2,167],"146":[2,167],"147":[2,167],"148":[2,167],"149":[2,167],"150":[2,167],"151":[2,167],"152":[2,167],"153":[2,167],"154":[2,167],"155":[2,167],"156":[2,167],"157":[2,167],"158":[2,167],"159":[2,167],"160":[2,167],"161":[2,167],"162":[2,167],"163":[2,167]},{"8":323,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":324,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[1,326],"29":[1,327],"84":[1,325]},{"4":[2,59],"28":202,"29":[2,59],"30":[2,59],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":328,"49":[1,56],"84":[2,59]},{"8":329,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":330,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,217],"4":[2,217],"29":[2,217],"30":[2,217],"50":[1,114],"58":[2,217],"61":[2,217],"79":[2,217],"84":[2,217],"94":[2,217],"99":[2,217],"107":[2,217],"108":129,"109":[2,217],"110":[2,217],"111":[2,217],"114":[2,217],"118":[2,217],"119":[2,217],"120":[2,217],"127":[2,217],"128":[2,217],"131":[2,217],"132":[2,217],"138":[2,217],"139":[2,217],"140":[2,217],"141":[2,217],"142":[2,217],"143":[2,217],"144":[2,217],"145":[2,217],"146":[2,217],"147":[2,217],"148":[2,217],"149":[2,217],"150":[2,217],"151":[2,217],"152":[2,217],"153":[2,217],"154":[2,217],"155":[2,217],"156":[2,217],"157":[2,217],"158":[2,217],"159":[2,217],"160":[2,217],"161":[2,217],"162":[2,217],"163":[2,217]},{"1":[2,218],"4":[2,218],"29":[2,218],"30":[2,218],"50":[1,114],"58":[2,218],"61":[2,218],"79":[2,218],"84":[2,218],"94":[2,218],"99":[2,218],"107":[2,218],"108":129,"109":[2,218],"110":[2,218],"111":[2,218],"114":[2,218],"118":[2,218],"119":[2,218],"120":[2,218],"127":[2,218],"128":[2,218],"131":[2,218],"132":[2,218],"138":[2,218],"139":[2,218],"140":[2,218],"141":[2,218],"142":[2,218],"143":[2,218],"144":[2,218],"145":[2,218],"146":[2,218],"147":[2,218],"148":[2,218],"149":[2,218],"150":[2,218],"151":[2,218],"152":[2,218],"153":[2,218],"154":[2,218],"155":[2,218],"156":[2,218],"157":[2,218],"158":[2,218],"159":[2,218],"160":[2,218],"161":[2,218],"162":[2,218],"163":[2,218]},{"1":[2,144],"4":[2,144],"29":[2,144],"30":[2,144],"50":[2,144],"58":[2,144],"61":[2,144],"79":[2,144],"84":[2,144],"94":[2,144],"99":[2,144],"107":[2,144],"109":[2,144],"110":[2,144],"111":[2,144],"114":[2,144],"118":[2,144],"119":[2,144],"120":[2,144],"127":[2,144],"128":[2,144],"129":[2,144],"131":[2,144],"132":[2,144],"134":[2,144],"135":[2,144],"138":[2,144],"139":[2,144],"140":[2,144],"141":[2,144],"142":[2,144],"143":[2,144],"144":[2,144],"145":[2,144],"146":[2,144],"147":[2,144],"148":[2,144],"149":[2,144],"150":[2,144],"151":[2,144],"152":[2,144],"153":[2,144],"154":[2,144],"155":[2,144],"156":[2,144],"157":[2,144],"158":[2,144],"159":[2,144],"160":[2,144],"161":[2,144],"162":[2,144],"163":[2,144]},{"1":[2,65],"4":[2,65],"29":[2,65],"30":[2,65],"50":[2,65],"58":[2,65],"61":[2,65],"79":[2,65],"84":[2,65],"94":[2,65],"99":[2,65],"107":[2,65],"109":[2,65],"110":[2,65],"111":[2,65],"114":[2,65],"118":[2,65],"119":[2,65],"120":[2,65],"127":[2,65],"128":[2,65],"129":[2,65],"131":[2,65],"132":[2,65],"134":[2,65],"135":[2,65],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65]},{"1":[2,143],"4":[2,143],"29":[2,143],"30":[2,143],"50":[2,143],"58":[2,143],"61":[2,143],"79":[2,143],"84":[2,143],"94":[2,143],"99":[2,143],"107":[2,143],"109":[2,143],"110":[2,143],"111":[2,143],"114":[2,143],"118":[2,143],"119":[2,143],"120":[2,143],"127":[2,143],"128":[2,143],"129":[2,143],"131":[2,143],"132":[2,143],"134":[2,143],"135":[2,143],"138":[2,143],"139":[2,143],"140":[2,143],"141":[2,143],"142":[2,143],"143":[2,143],"144":[2,143],"145":[2,143],"146":[2,143],"147":[2,143],"148":[2,143],"149":[2,143],"150":[2,143],"151":[2,143],"152":[2,143],"153":[2,143],"154":[2,143],"155":[2,143],"156":[2,143],"157":[2,143],"158":[2,143],"159":[2,143],"160":[2,143],"161":[2,143],"162":[2,143],"163":[2,143]},{"4":[1,320],"29":[1,321],"94":[1,331]},{"1":[2,85],"4":[2,85],"29":[2,85],"30":[2,85],"46":[2,85],"50":[2,85],"58":[2,85],"61":[2,85],"72":[2,85],"73":[2,85],"74":[2,85],"75":[2,85],"78":[2,85],"79":[2,85],"80":[2,85],"81":[2,85],"84":[2,85],"86":[2,85],"92":[2,85],"94":[2,85],"99":[2,85],"107":[2,85],"109":[2,85],"110":[2,85],"111":[2,85],"114":[2,85],"118":[2,85],"119":[2,85],"120":[2,85],"127":[2,85],"128":[2,85],"129":[2,85],"131":[2,85],"132":[2,85],"134":[2,85],"135":[2,85],"138":[2,85],"139":[2,85],"140":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"148":[2,85],"149":[2,85],"150":[2,85],"151":[2,85],"152":[2,85],"153":[2,85],"154":[2,85],"155":[2,85],"156":[2,85],"157":[2,85],"158":[2,85],"159":[2,85],"160":[2,85],"161":[2,85],"162":[2,85],"163":[2,85]},{"61":[1,332]},{"50":[1,114],"61":[1,131],"79":[1,292],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,159],"6":333,"29":[1,6]},{"53":[2,62],"58":[2,62],"61":[1,257]},{"61":[1,334]},{"4":[1,159],"6":335,"29":[1,6],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,159],"6":336,"29":[1,6]},{"1":[2,128],"4":[2,128],"29":[2,128],"30":[2,128],"50":[2,128],"58":[2,128],"61":[2,128],"79":[2,128],"84":[2,128],"94":[2,128],"99":[2,128],"107":[2,128],"109":[2,128],"110":[2,128],"111":[2,128],"114":[2,128],"118":[2,128],"119":[2,128],"120":[2,128],"127":[2,128],"128":[2,128],"129":[2,128],"131":[2,128],"132":[2,128],"134":[2,128],"135":[2,128],"138":[2,128],"139":[2,128],"140":[2,128],"141":[2,128],"142":[2,128],"143":[2,128],"144":[2,128],"145":[2,128],"146":[2,128],"147":[2,128],"148":[2,128],"149":[2,128],"150":[2,128],"151":[2,128],"152":[2,128],"153":[2,128],"154":[2,128],"155":[2,128],"156":[2,128],"157":[2,128],"158":[2,128],"159":[2,128],"160":[2,128],"161":[2,128],"162":[2,128],"163":[2,128]},{"4":[1,159],"6":337,"29":[1,6]},{"1":[2,145],"4":[2,145],"29":[2,145],"30":[2,145],"50":[2,145],"58":[2,145],"61":[2,145],"79":[2,145],"84":[2,145],"94":[2,145],"99":[2,145],"107":[2,145],"109":[2,145],"110":[2,145],"111":[2,145],"114":[2,145],"118":[2,145],"119":[2,145],"120":[2,145],"127":[2,145],"128":[2,145],"129":[2,145],"131":[2,145],"132":[2,145],"134":[2,145],"135":[2,145],"138":[2,145],"139":[2,145],"140":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"146":[2,145],"147":[2,145],"148":[2,145],"149":[2,145],"150":[2,145],"151":[2,145],"152":[2,145],"153":[2,145],"154":[2,145],"155":[2,145],"156":[2,145],"157":[2,145],"158":[2,145],"159":[2,145],"160":[2,145],"161":[2,145],"162":[2,145],"163":[2,145]},{"1":[2,151],"4":[2,151],"29":[2,151],"30":[2,151],"50":[1,114],"58":[2,151],"61":[1,131],"79":[2,151],"84":[2,151],"94":[2,151],"99":[2,151],"107":[2,151],"108":129,"109":[2,151],"110":[1,338],"111":[2,151],"114":[2,151],"118":[1,124],"119":[1,125],"120":[1,339],"127":[2,151],"128":[2,151],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,152],"4":[2,152],"29":[2,152],"30":[2,152],"50":[1,114],"58":[2,152],"61":[1,131],"79":[2,152],"84":[2,152],"94":[2,152],"99":[2,152],"107":[2,152],"108":129,"109":[2,152],"110":[1,340],"111":[2,152],"114":[2,152],"118":[1,124],"119":[1,125],"120":[2,152],"127":[2,152],"128":[2,152],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"118":[2,150],"119":[2,150]},{"30":[1,341],"123":[1,342],"124":309,"125":[1,270]},{"1":[2,160],"4":[2,160],"29":[2,160],"30":[2,160],"50":[2,160],"58":[2,160],"61":[2,160],"79":[2,160],"84":[2,160],"94":[2,160],"99":[2,160],"107":[2,160],"109":[2,160],"110":[2,160],"111":[2,160],"114":[2,160],"118":[2,160],"119":[2,160],"120":[2,160],"127":[2,160],"128":[2,160],"129":[2,160],"131":[2,160],"132":[2,160],"134":[2,160],"135":[2,160],"138":[2,160],"139":[2,160],"140":[2,160],"141":[2,160],"142":[2,160],"143":[2,160],"144":[2,160],"145":[2,160],"146":[2,160],"147":[2,160],"148":[2,160],"149":[2,160],"150":[2,160],"151":[2,160],"152":[2,160],"153":[2,160],"154":[2,160],"155":[2,160],"156":[2,160],"157":[2,160],"158":[2,160],"159":[2,160],"160":[2,160],"161":[2,160],"162":[2,160],"163":[2,160]},{"4":[1,159],"6":343,"29":[1,6]},{"30":[2,163],"123":[2,163],"125":[2,163]},{"4":[1,159],"6":344,"29":[1,6],"58":[1,345]},{"4":[2,125],"29":[2,125],"50":[1,114],"58":[2,125],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,95],"4":[2,95],"29":[1,346],"30":[2,95],"50":[2,95],"58":[2,95],"61":[2,95],"63":137,"72":[1,139],"73":[1,140],"74":[1,141],"75":[1,142],"76":143,"77":144,"78":[1,145],"79":[2,95],"80":[1,146],"81":[1,147],"84":[2,95],"91":136,"92":[1,138],"94":[2,95],"99":[2,95],"107":[2,95],"109":[2,95],"110":[2,95],"111":[2,95],"114":[2,95],"118":[2,95],"119":[2,95],"120":[2,95],"127":[2,95],"128":[2,95],"129":[2,95],"131":[2,95],"132":[2,95],"134":[2,95],"135":[2,95],"138":[2,95],"139":[2,95],"140":[2,95],"141":[2,95],"142":[2,95],"143":[2,95],"144":[2,95],"145":[2,95],"146":[2,95],"147":[2,95],"148":[2,95],"149":[2,95],"150":[2,95],"151":[2,95],"152":[2,95],"153":[2,95],"154":[2,95],"155":[2,95],"156":[2,95],"157":[2,95],"158":[2,95],"159":[2,95],"160":[2,95],"161":[2,95],"162":[2,95],"163":[2,95]},{"4":[1,348],"30":[1,347]},{"4":[2,101],"30":[2,101]},{"4":[2,98],"30":[2,98]},{"46":[1,349]},{"31":190,"32":[1,87]},{"8":350,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"61":[1,351],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,119],"4":[2,119],"29":[2,119],"30":[2,119],"46":[2,119],"50":[2,119],"58":[2,119],"61":[2,119],"72":[2,119],"73":[2,119],"74":[2,119],"75":[2,119],"78":[2,119],"79":[2,119],"80":[2,119],"81":[2,119],"84":[2,119],"92":[2,119],"94":[2,119],"99":[2,119],"107":[2,119],"109":[2,119],"110":[2,119],"111":[2,119],"114":[2,119],"118":[2,119],"119":[2,119],"120":[2,119],"127":[2,119],"128":[2,119],"129":[2,119],"131":[2,119],"132":[2,119],"134":[2,119],"135":[2,119],"138":[2,119],"139":[2,119],"140":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"146":[2,119],"147":[2,119],"148":[2,119],"149":[2,119],"150":[2,119],"151":[2,119],"152":[2,119],"153":[2,119],"154":[2,119],"155":[2,119],"156":[2,119],"157":[2,119],"158":[2,119],"159":[2,119],"160":[2,119],"161":[2,119],"162":[2,119],"163":[2,119]},{"8":352,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,120],"8":246,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"30":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":353,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,122],"29":[2,122],"30":[2,122],"50":[1,114],"58":[2,122],"61":[1,131],"94":[2,122],"99":[2,122],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,134],"4":[2,134],"29":[2,134],"30":[2,134],"50":[1,114],"58":[2,134],"61":[1,131],"79":[2,134],"84":[2,134],"94":[2,134],"99":[2,134],"107":[2,134],"108":129,"109":[1,79],"110":[2,134],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,134],"127":[2,134],"128":[2,134],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,136],"4":[2,136],"29":[2,136],"30":[2,136],"50":[1,114],"58":[2,136],"61":[1,131],"79":[2,136],"84":[2,136],"94":[2,136],"99":[2,136],"107":[2,136],"108":129,"109":[1,79],"110":[2,136],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,136],"127":[2,136],"128":[2,136],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,88],"4":[2,88],"29":[2,88],"30":[2,88],"46":[2,88],"50":[2,88],"58":[2,88],"61":[2,88],"72":[2,88],"73":[2,88],"74":[2,88],"75":[2,88],"78":[2,88],"79":[2,88],"80":[2,88],"81":[2,88],"84":[2,88],"92":[2,88],"94":[2,88],"99":[2,88],"107":[2,88],"109":[2,88],"110":[2,88],"111":[2,88],"114":[2,88],"118":[2,88],"119":[2,88],"120":[2,88],"127":[2,88],"128":[2,88],"129":[2,88],"131":[2,88],"132":[2,88],"134":[2,88],"135":[2,88],"138":[2,88],"139":[2,88],"140":[2,88],"141":[2,88],"142":[2,88],"143":[2,88],"144":[2,88],"145":[2,88],"146":[2,88],"147":[2,88],"148":[2,88],"149":[2,88],"150":[2,88],"151":[2,88],"152":[2,88],"153":[2,88],"154":[2,88],"155":[2,88],"156":[2,88],"157":[2,88],"158":[2,88],"159":[2,88],"160":[2,88],"161":[2,88],"162":[2,88],"163":[2,88]},{"28":202,"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":354,"49":[1,56]},{"4":[2,89],"28":202,"29":[2,89],"30":[2,89],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":199,"49":[1,56],"58":[2,89],"83":355},{"4":[2,91],"29":[2,91],"30":[2,91],"58":[2,91],"84":[2,91]},{"4":[2,47],"29":[2,47],"30":[2,47],"50":[1,114],"58":[2,47],"61":[1,131],"84":[2,47],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,48],"29":[2,48],"30":[2,48],"50":[1,114],"58":[2,48],"61":[1,131],"84":[2,48],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,110],"4":[2,110],"29":[2,110],"30":[2,110],"50":[2,110],"58":[2,110],"61":[2,110],"72":[2,110],"73":[2,110],"74":[2,110],"75":[2,110],"78":[2,110],"79":[2,110],"80":[2,110],"81":[2,110],"84":[2,110],"92":[2,110],"94":[2,110],"99":[2,110],"107":[2,110],"109":[2,110],"110":[2,110],"111":[2,110],"114":[2,110],"118":[2,110],"119":[2,110],"120":[2,110],"127":[2,110],"128":[2,110],"129":[2,110],"131":[2,110],"132":[2,110],"134":[2,110],"135":[2,110],"138":[2,110],"139":[2,110],"140":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"147":[2,110],"148":[2,110],"149":[2,110],"150":[2,110],"151":[2,110],"152":[2,110],"153":[2,110],"154":[2,110],"155":[2,110],"156":[2,110],"157":[2,110],"158":[2,110],"159":[2,110],"160":[2,110],"161":[2,110],"162":[2,110],"163":[2,110]},{"8":356,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"61":[1,357],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,54],"4":[2,54],"29":[2,54],"30":[2,54],"50":[2,54],"58":[2,54],"61":[2,54],"79":[2,54],"84":[2,54],"94":[2,54],"99":[2,54],"107":[2,54],"109":[2,54],"110":[2,54],"111":[2,54],"114":[2,54],"118":[2,54],"119":[2,54],"120":[2,54],"127":[2,54],"128":[2,54],"129":[2,54],"131":[2,54],"132":[2,54],"134":[2,54],"135":[2,54],"138":[2,54],"139":[2,54],"140":[2,54],"141":[2,54],"142":[2,54],"143":[2,54],"144":[2,54],"145":[2,54],"146":[2,54],"147":[2,54],"148":[2,54],"149":[2,54],"150":[2,54],"151":[2,54],"152":[2,54],"153":[2,54],"154":[2,54],"155":[2,54],"156":[2,54],"157":[2,54],"158":[2,54],"159":[2,54],"160":[2,54],"161":[2,54],"162":[2,54],"163":[2,54]},{"53":[2,64],"58":[2,64],"61":[2,64]},{"1":[2,168],"4":[2,168],"29":[2,168],"30":[2,168],"50":[2,168],"58":[2,168],"61":[2,168],"79":[2,168],"84":[2,168],"94":[2,168],"99":[2,168],"107":[2,168],"109":[2,168],"110":[2,168],"111":[2,168],"114":[2,168],"118":[2,168],"119":[2,168],"120":[2,168],"123":[2,168],"127":[2,168],"128":[2,168],"129":[2,168],"131":[2,168],"132":[2,168],"134":[2,168],"135":[2,168],"138":[2,168],"139":[2,168],"140":[2,168],"141":[2,168],"142":[2,168],"143":[2,168],"144":[2,168],"145":[2,168],"146":[2,168],"147":[2,168],"148":[2,168],"149":[2,168],"150":[2,168],"151":[2,168],"152":[2,168],"153":[2,168],"154":[2,168],"155":[2,168],"156":[2,168],"157":[2,168],"158":[2,168],"159":[2,168],"160":[2,168],"161":[2,168],"162":[2,168],"163":[2,168]},{"1":[2,129],"4":[2,129],"29":[2,129],"30":[2,129],"50":[2,129],"58":[2,129],"61":[2,129],"79":[2,129],"84":[2,129],"94":[2,129],"99":[2,129],"107":[2,129],"109":[2,129],"110":[2,129],"111":[2,129],"114":[2,129],"118":[2,129],"119":[2,129],"120":[2,129],"127":[2,129],"128":[2,129],"129":[2,129],"131":[2,129],"132":[2,129],"134":[2,129],"135":[2,129],"138":[2,129],"139":[2,129],"140":[2,129],"141":[2,129],"142":[2,129],"143":[2,129],"144":[2,129],"145":[2,129],"146":[2,129],"147":[2,129],"148":[2,129],"149":[2,129],"150":[2,129],"151":[2,129],"152":[2,129],"153":[2,129],"154":[2,129],"155":[2,129],"156":[2,129],"157":[2,129],"158":[2,129],"159":[2,129],"160":[2,129],"161":[2,129],"162":[2,129],"163":[2,129]},{"1":[2,130],"4":[2,130],"29":[2,130],"30":[2,130],"50":[2,130],"58":[2,130],"61":[2,130],"79":[2,130],"84":[2,130],"94":[2,130],"99":[2,130],"103":[2,130],"107":[2,130],"109":[2,130],"110":[2,130],"111":[2,130],"114":[2,130],"118":[2,130],"119":[2,130],"120":[2,130],"127":[2,130],"128":[2,130],"129":[2,130],"131":[2,130],"132":[2,130],"134":[2,130],"135":[2,130],"138":[2,130],"139":[2,130],"140":[2,130],"141":[2,130],"142":[2,130],"143":[2,130],"144":[2,130],"145":[2,130],"146":[2,130],"147":[2,130],"148":[2,130],"149":[2,130],"150":[2,130],"151":[2,130],"152":[2,130],"153":[2,130],"154":[2,130],"155":[2,130],"156":[2,130],"157":[2,130],"158":[2,130],"159":[2,130],"160":[2,130],"161":[2,130],"162":[2,130],"163":[2,130]},{"8":358,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":359,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":360,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,158],"4":[2,158],"29":[2,158],"30":[2,158],"50":[2,158],"58":[2,158],"61":[2,158],"79":[2,158],"84":[2,158],"94":[2,158],"99":[2,158],"107":[2,158],"109":[2,158],"110":[2,158],"111":[2,158],"114":[2,158],"118":[2,158],"119":[2,158],"120":[2,158],"127":[2,158],"128":[2,158],"129":[2,158],"131":[2,158],"132":[2,158],"134":[2,158],"135":[2,158],"138":[2,158],"139":[2,158],"140":[2,158],"141":[2,158],"142":[2,158],"143":[2,158],"144":[2,158],"145":[2,158],"146":[2,158],"147":[2,158],"148":[2,158],"149":[2,158],"150":[2,158],"151":[2,158],"152":[2,158],"153":[2,158],"154":[2,158],"155":[2,158],"156":[2,158],"157":[2,158],"158":[2,158],"159":[2,158],"160":[2,158],"161":[2,158],"162":[2,158],"163":[2,158]},{"4":[1,159],"6":361,"29":[1,6]},{"30":[1,362]},{"4":[1,363],"30":[2,164],"123":[2,164],"125":[2,164]},{"8":364,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,100],"28":202,"30":[2,100],"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":315,"49":[1,56],"65":316,"87":365,"88":314,"97":[1,317]},{"1":[2,96],"4":[2,96],"29":[2,96],"30":[2,96],"50":[2,96],"58":[2,96],"61":[2,96],"79":[2,96],"84":[2,96],"94":[2,96],"99":[2,96],"107":[2,96],"109":[2,96],"110":[2,96],"111":[2,96],"114":[2,96],"118":[2,96],"119":[2,96],"120":[2,96],"127":[2,96],"128":[2,96],"129":[2,96],"131":[2,96],"132":[2,96],"134":[2,96],"135":[2,96],"138":[2,96],"139":[2,96],"140":[2,96],"141":[2,96],"142":[2,96],"143":[2,96],"144":[2,96],"145":[2,96],"146":[2,96],"147":[2,96],"148":[2,96],"149":[2,96],"150":[2,96],"151":[2,96],"152":[2,96],"153":[2,96],"154":[2,96],"155":[2,96],"156":[2,96],"157":[2,96],"158":[2,96],"159":[2,96],"160":[2,96],"161":[2,96],"162":[2,96],"163":[2,96]},{"28":202,"31":200,"32":[1,87],"33":201,"34":[1,85],"35":[1,86],"47":315,"49":[1,56],"65":316,"88":366,"97":[1,317]},{"8":367,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"50":[1,114],"61":[1,131],"99":[1,368],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,65],"8":369,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,65],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"50":[2,65],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,65],"61":[2,65],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,65],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[2,65],"111":[2,65],"112":51,"113":[1,81],"114":[2,65],"118":[2,65],"119":[2,65],"121":[1,53],"126":48,"127":[2,65],"128":[2,65],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65]},{"4":[2,123],"29":[2,123],"30":[2,123],"50":[1,114],"58":[2,123],"61":[1,131],"94":[2,123],"99":[2,123],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[2,58],"29":[2,58],"30":[2,58],"57":370,"58":[1,277]},{"4":[2,92],"29":[2,92],"30":[2,92],"58":[2,92],"84":[2,92]},{"4":[2,58],"29":[2,58],"30":[2,58],"57":371,"58":[1,283]},{"50":[1,114],"61":[1,131],"79":[1,372],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"8":373,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"50":[2,65],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"61":[2,65],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"79":[2,65],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[2,65],"111":[2,65],"112":51,"113":[1,81],"114":[2,65],"118":[2,65],"119":[2,65],"121":[1,53],"126":48,"127":[2,65],"128":[2,65],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65]},{"1":[2,153],"4":[2,153],"29":[2,153],"30":[2,153],"50":[1,114],"58":[2,153],"61":[1,131],"79":[2,153],"84":[2,153],"94":[2,153],"99":[2,153],"107":[2,153],"108":129,"109":[2,153],"110":[2,153],"111":[2,153],"114":[2,153],"118":[1,124],"119":[1,125],"120":[1,374],"127":[2,153],"128":[2,153],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,155],"4":[2,155],"29":[2,155],"30":[2,155],"50":[1,114],"58":[2,155],"61":[1,131],"79":[2,155],"84":[2,155],"94":[2,155],"99":[2,155],"107":[2,155],"108":129,"109":[2,155],"110":[1,375],"111":[2,155],"114":[2,155],"118":[1,124],"119":[1,125],"120":[2,155],"127":[2,155],"128":[2,155],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,154],"4":[2,154],"29":[2,154],"30":[2,154],"50":[1,114],"58":[2,154],"61":[1,131],"79":[2,154],"84":[2,154],"94":[2,154],"99":[2,154],"107":[2,154],"108":129,"109":[2,154],"110":[2,154],"111":[2,154],"114":[2,154],"118":[1,124],"119":[1,125],"120":[2,154],"127":[2,154],"128":[2,154],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"30":[1,376]},{"1":[2,161],"4":[2,161],"29":[2,161],"30":[2,161],"50":[2,161],"58":[2,161],"61":[2,161],"79":[2,161],"84":[2,161],"94":[2,161],"99":[2,161],"107":[2,161],"109":[2,161],"110":[2,161],"111":[2,161],"114":[2,161],"118":[2,161],"119":[2,161],"120":[2,161],"127":[2,161],"128":[2,161],"129":[2,161],"131":[2,161],"132":[2,161],"134":[2,161],"135":[2,161],"138":[2,161],"139":[2,161],"140":[2,161],"141":[2,161],"142":[2,161],"143":[2,161],"144":[2,161],"145":[2,161],"146":[2,161],"147":[2,161],"148":[2,161],"149":[2,161],"150":[2,161],"151":[2,161],"152":[2,161],"153":[2,161],"154":[2,161],"155":[2,161],"156":[2,161],"157":[2,161],"158":[2,161],"159":[2,161],"160":[2,161],"161":[2,161],"162":[2,161],"163":[2,161]},{"30":[2,165],"123":[2,165],"125":[2,165]},{"4":[2,126],"29":[2,126],"50":[1,114],"58":[2,126],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,348],"30":[1,377]},{"4":[2,102],"30":[2,102]},{"4":[2,99],"30":[2,99],"50":[1,114],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,115],"4":[2,115],"29":[2,115],"30":[2,115],"50":[2,115],"58":[2,115],"61":[2,115],"72":[2,115],"73":[2,115],"74":[2,115],"75":[2,115],"78":[2,115],"79":[2,115],"80":[2,115],"81":[2,115],"84":[2,115],"92":[2,115],"94":[2,115],"99":[2,115],"107":[2,115],"109":[2,115],"110":[2,115],"111":[2,115],"114":[2,115],"118":[2,115],"119":[2,115],"120":[2,115],"127":[2,115],"128":[2,115],"129":[2,115],"131":[2,115],"132":[2,115],"134":[2,115],"135":[2,115],"138":[2,115],"139":[2,115],"140":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"147":[2,115],"148":[2,115],"149":[2,115],"150":[2,115],"151":[2,115],"152":[2,115],"153":[2,115],"154":[2,115],"155":[2,115],"156":[2,115],"157":[2,115],"158":[2,115],"159":[2,115],"160":[2,115],"161":[2,115],"162":[2,115],"163":[2,115]},{"50":[1,114],"61":[1,131],"99":[1,378],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"4":[1,320],"29":[1,321],"30":[1,379]},{"4":[1,326],"29":[1,327],"30":[1,380]},{"1":[2,117],"4":[2,117],"29":[2,117],"30":[2,117],"46":[2,117],"50":[2,117],"58":[2,117],"61":[2,117],"72":[2,117],"73":[2,117],"74":[2,117],"75":[2,117],"78":[2,117],"79":[2,117],"80":[2,117],"81":[2,117],"84":[2,117],"86":[2,117],"92":[2,117],"94":[2,117],"99":[2,117],"107":[2,117],"109":[2,117],"110":[2,117],"111":[2,117],"114":[2,117],"118":[2,117],"119":[2,117],"120":[2,117],"127":[2,117],"128":[2,117],"129":[2,117],"131":[2,117],"132":[2,117],"134":[2,117],"135":[2,117],"138":[2,117],"139":[2,117],"140":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"146":[2,117],"147":[2,117],"148":[2,117],"149":[2,117],"150":[2,117],"151":[2,117],"152":[2,117],"153":[2,117],"154":[2,117],"155":[2,117],"156":[2,117],"157":[2,117],"158":[2,117],"159":[2,117],"160":[2,117],"161":[2,117],"162":[2,117],"163":[2,117]},{"50":[1,114],"61":[1,131],"79":[1,381],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"8":382,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":383,"9":161,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,159],"4":[2,159],"29":[2,159],"30":[2,159],"50":[2,159],"58":[2,159],"61":[2,159],"79":[2,159],"84":[2,159],"94":[2,159],"99":[2,159],"107":[2,159],"109":[2,159],"110":[2,159],"111":[2,159],"114":[2,159],"118":[2,159],"119":[2,159],"120":[2,159],"127":[2,159],"128":[2,159],"129":[2,159],"131":[2,159],"132":[2,159],"134":[2,159],"135":[2,159],"138":[2,159],"139":[2,159],"140":[2,159],"141":[2,159],"142":[2,159],"143":[2,159],"144":[2,159],"145":[2,159],"146":[2,159],"147":[2,159],"148":[2,159],"149":[2,159],"150":[2,159],"151":[2,159],"152":[2,159],"153":[2,159],"154":[2,159],"155":[2,159],"156":[2,159],"157":[2,159],"158":[2,159],"159":[2,159],"160":[2,159],"161":[2,159],"162":[2,159],"163":[2,159]},{"1":[2,97],"4":[2,97],"29":[2,97],"30":[2,97],"50":[2,97],"58":[2,97],"61":[2,97],"79":[2,97],"84":[2,97],"94":[2,97],"99":[2,97],"107":[2,97],"109":[2,97],"110":[2,97],"111":[2,97],"114":[2,97],"118":[2,97],"119":[2,97],"120":[2,97],"127":[2,97],"128":[2,97],"129":[2,97],"131":[2,97],"132":[2,97],"134":[2,97],"135":[2,97],"138":[2,97],"139":[2,97],"140":[2,97],"141":[2,97],"142":[2,97],"143":[2,97],"144":[2,97],"145":[2,97],"146":[2,97],"147":[2,97],"148":[2,97],"149":[2,97],"150":[2,97],"151":[2,97],"152":[2,97],"153":[2,97],"154":[2,97],"155":[2,97],"156":[2,97],"157":[2,97],"158":[2,97],"159":[2,97],"160":[2,97],"161":[2,97],"162":[2,97],"163":[2,97]},{"1":[2,116],"4":[2,116],"29":[2,116],"30":[2,116],"50":[2,116],"58":[2,116],"61":[2,116],"72":[2,116],"73":[2,116],"74":[2,116],"75":[2,116],"78":[2,116],"79":[2,116],"80":[2,116],"81":[2,116],"84":[2,116],"92":[2,116],"94":[2,116],"99":[2,116],"107":[2,116],"109":[2,116],"110":[2,116],"111":[2,116],"114":[2,116],"118":[2,116],"119":[2,116],"120":[2,116],"127":[2,116],"128":[2,116],"129":[2,116],"131":[2,116],"132":[2,116],"134":[2,116],"135":[2,116],"138":[2,116],"139":[2,116],"140":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"146":[2,116],"147":[2,116],"148":[2,116],"149":[2,116],"150":[2,116],"151":[2,116],"152":[2,116],"153":[2,116],"154":[2,116],"155":[2,116],"156":[2,116],"157":[2,116],"158":[2,116],"159":[2,116],"160":[2,116],"161":[2,116],"162":[2,116],"163":[2,116]},{"4":[2,124],"29":[2,124],"30":[2,124],"58":[2,124],"94":[2,124],"99":[2,124]},{"4":[2,93],"29":[2,93],"30":[2,93],"58":[2,93],"84":[2,93]},{"1":[2,118],"4":[2,118],"29":[2,118],"30":[2,118],"46":[2,118],"50":[2,118],"58":[2,118],"61":[2,118],"72":[2,118],"73":[2,118],"74":[2,118],"75":[2,118],"78":[2,118],"79":[2,118],"80":[2,118],"81":[2,118],"84":[2,118],"86":[2,118],"92":[2,118],"94":[2,118],"99":[2,118],"107":[2,118],"109":[2,118],"110":[2,118],"111":[2,118],"114":[2,118],"118":[2,118],"119":[2,118],"120":[2,118],"127":[2,118],"128":[2,118],"129":[2,118],"131":[2,118],"132":[2,118],"134":[2,118],"135":[2,118],"138":[2,118],"139":[2,118],"140":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"146":[2,118],"147":[2,118],"148":[2,118],"149":[2,118],"150":[2,118],"151":[2,118],"152":[2,118],"153":[2,118],"154":[2,118],"155":[2,118],"156":[2,118],"157":[2,118],"158":[2,118],"159":[2,118],"160":[2,118],"161":[2,118],"162":[2,118],"163":[2,118]},{"1":[2,156],"4":[2,156],"29":[2,156],"30":[2,156],"50":[1,114],"58":[2,156],"61":[1,131],"79":[2,156],"84":[2,156],"94":[2,156],"99":[2,156],"107":[2,156],"108":129,"109":[2,156],"110":[2,156],"111":[2,156],"114":[2,156],"118":[1,124],"119":[1,125],"120":[2,156],"127":[2,156],"128":[2,156],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]},{"1":[2,157],"4":[2,157],"29":[2,157],"30":[2,157],"50":[1,114],"58":[2,157],"61":[1,131],"79":[2,157],"84":[2,157],"94":[2,157],"99":[2,157],"107":[2,157],"108":129,"109":[2,157],"110":[2,157],"111":[2,157],"114":[2,157],"118":[1,124],"119":[1,125],"120":[2,157],"127":[2,157],"128":[2,157],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,115],"156":[1,116],"157":[1,117],"158":[1,118],"159":[1,119],"160":[1,120],"161":[1,121],"162":[1,122],"163":[1,123]}], +table: [{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[3]},{"1":[2,2],"28":88,"49":[1,56]},{"1":[2,3],"4":[1,89]},{"4":[1,90]},{"1":[2,5],"4":[2,5],"30":[2,5]},{"5":91,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[1,92],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,8],"4":[2,8],"30":[2,8],"50":[1,132],"61":[1,131],"107":[2,8],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,9],"4":[2,9],"30":[2,9],"107":[2,9],"108":135,"109":[1,79],"111":[1,80],"114":[1,136],"127":[1,133],"128":[1,134]},{"1":[2,14],"4":[2,14],"29":[2,14],"30":[2,14],"50":[2,14],"58":[2,14],"61":[2,14],"63":138,"72":[1,140],"73":[1,141],"74":[1,142],"75":[1,143],"76":144,"77":145,"78":[1,146],"79":[2,14],"80":[1,147],"81":[1,148],"84":[2,14],"91":137,"92":[1,139],"94":[2,14],"99":[2,14],"107":[2,14],"109":[2,14],"110":[2,14],"111":[2,14],"114":[2,14],"118":[2,14],"119":[2,14],"120":[2,14],"127":[2,14],"128":[2,14],"129":[2,14],"131":[2,14],"132":[2,14],"134":[2,14],"135":[2,14],"138":[2,14],"139":[2,14],"140":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[2,14],"148":[2,14],"149":[2,14],"150":[2,14],"151":[2,14],"152":[2,14],"153":[2,14],"154":[2,14],"155":[2,14],"156":[2,14],"157":[2,14],"158":[2,14],"159":[2,14],"160":[2,14],"161":[2,14],"162":[2,14],"163":[2,14],"164":[2,14]},{"1":[2,15],"4":[2,15],"29":[2,15],"30":[2,15],"50":[2,15],"58":[2,15],"61":[2,15],"79":[2,15],"84":[2,15],"94":[2,15],"99":[2,15],"107":[2,15],"109":[2,15],"110":[2,15],"111":[2,15],"114":[2,15],"118":[2,15],"119":[2,15],"120":[2,15],"127":[2,15],"128":[2,15],"129":[2,15],"131":[2,15],"132":[2,15],"134":[2,15],"135":[2,15],"138":[2,15],"139":[2,15],"140":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[2,15],"149":[2,15],"150":[2,15],"151":[2,15],"152":[2,15],"153":[2,15],"154":[2,15],"155":[2,15],"156":[2,15],"157":[2,15],"158":[2,15],"159":[2,15],"160":[2,15],"161":[2,15],"162":[2,15],"163":[2,15],"164":[2,15]},{"1":[2,16],"4":[2,16],"29":[2,16],"30":[2,16],"50":[2,16],"58":[2,16],"61":[2,16],"79":[2,16],"84":[2,16],"94":[2,16],"99":[2,16],"107":[2,16],"109":[2,16],"110":[2,16],"111":[2,16],"114":[2,16],"118":[2,16],"119":[2,16],"120":[2,16],"127":[2,16],"128":[2,16],"129":[2,16],"131":[2,16],"132":[2,16],"134":[2,16],"135":[2,16],"138":[2,16],"139":[2,16],"140":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"148":[2,16],"149":[2,16],"150":[2,16],"151":[2,16],"152":[2,16],"153":[2,16],"154":[2,16],"155":[2,16],"156":[2,16],"157":[2,16],"158":[2,16],"159":[2,16],"160":[2,16],"161":[2,16],"162":[2,16],"163":[2,16],"164":[2,16]},{"1":[2,17],"4":[2,17],"29":[2,17],"30":[2,17],"50":[2,17],"58":[2,17],"61":[2,17],"79":[2,17],"84":[2,17],"94":[2,17],"99":[2,17],"107":[2,17],"109":[2,17],"110":[2,17],"111":[2,17],"114":[2,17],"118":[2,17],"119":[2,17],"120":[2,17],"127":[2,17],"128":[2,17],"129":[2,17],"131":[2,17],"132":[2,17],"134":[2,17],"135":[2,17],"138":[2,17],"139":[2,17],"140":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"148":[2,17],"149":[2,17],"150":[2,17],"151":[2,17],"152":[2,17],"153":[2,17],"154":[2,17],"155":[2,17],"156":[2,17],"157":[2,17],"158":[2,17],"159":[2,17],"160":[2,17],"161":[2,17],"162":[2,17],"163":[2,17],"164":[2,17]},{"1":[2,18],"4":[2,18],"29":[2,18],"30":[2,18],"50":[2,18],"58":[2,18],"61":[2,18],"79":[2,18],"84":[2,18],"94":[2,18],"99":[2,18],"107":[2,18],"109":[2,18],"110":[2,18],"111":[2,18],"114":[2,18],"118":[2,18],"119":[2,18],"120":[2,18],"127":[2,18],"128":[2,18],"129":[2,18],"131":[2,18],"132":[2,18],"134":[2,18],"135":[2,18],"138":[2,18],"139":[2,18],"140":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"148":[2,18],"149":[2,18],"150":[2,18],"151":[2,18],"152":[2,18],"153":[2,18],"154":[2,18],"155":[2,18],"156":[2,18],"157":[2,18],"158":[2,18],"159":[2,18],"160":[2,18],"161":[2,18],"162":[2,18],"163":[2,18],"164":[2,18]},{"1":[2,19],"4":[2,19],"29":[2,19],"30":[2,19],"50":[2,19],"58":[2,19],"61":[2,19],"79":[2,19],"84":[2,19],"94":[2,19],"99":[2,19],"107":[2,19],"109":[2,19],"110":[2,19],"111":[2,19],"114":[2,19],"118":[2,19],"119":[2,19],"120":[2,19],"127":[2,19],"128":[2,19],"129":[2,19],"131":[2,19],"132":[2,19],"134":[2,19],"135":[2,19],"138":[2,19],"139":[2,19],"140":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"148":[2,19],"149":[2,19],"150":[2,19],"151":[2,19],"152":[2,19],"153":[2,19],"154":[2,19],"155":[2,19],"156":[2,19],"157":[2,19],"158":[2,19],"159":[2,19],"160":[2,19],"161":[2,19],"162":[2,19],"163":[2,19],"164":[2,19]},{"1":[2,20],"4":[2,20],"29":[2,20],"30":[2,20],"50":[2,20],"58":[2,20],"61":[2,20],"79":[2,20],"84":[2,20],"94":[2,20],"99":[2,20],"107":[2,20],"109":[2,20],"110":[2,20],"111":[2,20],"114":[2,20],"118":[2,20],"119":[2,20],"120":[2,20],"127":[2,20],"128":[2,20],"129":[2,20],"131":[2,20],"132":[2,20],"134":[2,20],"135":[2,20],"138":[2,20],"139":[2,20],"140":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"148":[2,20],"149":[2,20],"150":[2,20],"151":[2,20],"152":[2,20],"153":[2,20],"154":[2,20],"155":[2,20],"156":[2,20],"157":[2,20],"158":[2,20],"159":[2,20],"160":[2,20],"161":[2,20],"162":[2,20],"163":[2,20],"164":[2,20]},{"1":[2,21],"4":[2,21],"29":[2,21],"30":[2,21],"50":[2,21],"58":[2,21],"61":[2,21],"79":[2,21],"84":[2,21],"94":[2,21],"99":[2,21],"107":[2,21],"109":[2,21],"110":[2,21],"111":[2,21],"114":[2,21],"118":[2,21],"119":[2,21],"120":[2,21],"127":[2,21],"128":[2,21],"129":[2,21],"131":[2,21],"132":[2,21],"134":[2,21],"135":[2,21],"138":[2,21],"139":[2,21],"140":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"148":[2,21],"149":[2,21],"150":[2,21],"151":[2,21],"152":[2,21],"153":[2,21],"154":[2,21],"155":[2,21],"156":[2,21],"157":[2,21],"158":[2,21],"159":[2,21],"160":[2,21],"161":[2,21],"162":[2,21],"163":[2,21],"164":[2,21]},{"1":[2,22],"4":[2,22],"29":[2,22],"30":[2,22],"50":[2,22],"58":[2,22],"61":[2,22],"79":[2,22],"84":[2,22],"94":[2,22],"99":[2,22],"107":[2,22],"109":[2,22],"110":[2,22],"111":[2,22],"114":[2,22],"118":[2,22],"119":[2,22],"120":[2,22],"127":[2,22],"128":[2,22],"129":[2,22],"131":[2,22],"132":[2,22],"134":[2,22],"135":[2,22],"138":[2,22],"139":[2,22],"140":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"148":[2,22],"149":[2,22],"150":[2,22],"151":[2,22],"152":[2,22],"153":[2,22],"154":[2,22],"155":[2,22],"156":[2,22],"157":[2,22],"158":[2,22],"159":[2,22],"160":[2,22],"161":[2,22],"162":[2,22],"163":[2,22],"164":[2,22]},{"1":[2,23],"4":[2,23],"29":[2,23],"30":[2,23],"50":[2,23],"58":[2,23],"61":[2,23],"79":[2,23],"84":[2,23],"94":[2,23],"99":[2,23],"107":[2,23],"109":[2,23],"110":[2,23],"111":[2,23],"114":[2,23],"118":[2,23],"119":[2,23],"120":[2,23],"127":[2,23],"128":[2,23],"129":[2,23],"131":[2,23],"132":[2,23],"134":[2,23],"135":[2,23],"138":[2,23],"139":[2,23],"140":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"148":[2,23],"149":[2,23],"150":[2,23],"151":[2,23],"152":[2,23],"153":[2,23],"154":[2,23],"155":[2,23],"156":[2,23],"157":[2,23],"158":[2,23],"159":[2,23],"160":[2,23],"161":[2,23],"162":[2,23],"163":[2,23],"164":[2,23]},{"1":[2,24],"4":[2,24],"29":[2,24],"30":[2,24],"50":[2,24],"58":[2,24],"61":[2,24],"79":[2,24],"84":[2,24],"94":[2,24],"99":[2,24],"107":[2,24],"109":[2,24],"110":[2,24],"111":[2,24],"114":[2,24],"118":[2,24],"119":[2,24],"120":[2,24],"127":[2,24],"128":[2,24],"129":[2,24],"131":[2,24],"132":[2,24],"134":[2,24],"135":[2,24],"138":[2,24],"139":[2,24],"140":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"148":[2,24],"149":[2,24],"150":[2,24],"151":[2,24],"152":[2,24],"153":[2,24],"154":[2,24],"155":[2,24],"156":[2,24],"157":[2,24],"158":[2,24],"159":[2,24],"160":[2,24],"161":[2,24],"162":[2,24],"163":[2,24],"164":[2,24]},{"1":[2,25],"4":[2,25],"29":[2,25],"30":[2,25],"50":[2,25],"58":[2,25],"61":[2,25],"79":[2,25],"84":[2,25],"94":[2,25],"99":[2,25],"107":[2,25],"109":[2,25],"110":[2,25],"111":[2,25],"114":[2,25],"118":[2,25],"119":[2,25],"120":[2,25],"127":[2,25],"128":[2,25],"129":[2,25],"131":[2,25],"132":[2,25],"134":[2,25],"135":[2,25],"138":[2,25],"139":[2,25],"140":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"148":[2,25],"149":[2,25],"150":[2,25],"151":[2,25],"152":[2,25],"153":[2,25],"154":[2,25],"155":[2,25],"156":[2,25],"157":[2,25],"158":[2,25],"159":[2,25],"160":[2,25],"161":[2,25],"162":[2,25],"163":[2,25],"164":[2,25]},{"1":[2,26],"4":[2,26],"29":[2,26],"30":[2,26],"50":[2,26],"58":[2,26],"61":[2,26],"79":[2,26],"84":[2,26],"94":[2,26],"99":[2,26],"107":[2,26],"109":[2,26],"110":[2,26],"111":[2,26],"114":[2,26],"118":[2,26],"119":[2,26],"120":[2,26],"127":[2,26],"128":[2,26],"129":[2,26],"131":[2,26],"132":[2,26],"134":[2,26],"135":[2,26],"138":[2,26],"139":[2,26],"140":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"148":[2,26],"149":[2,26],"150":[2,26],"151":[2,26],"152":[2,26],"153":[2,26],"154":[2,26],"155":[2,26],"156":[2,26],"157":[2,26],"158":[2,26],"159":[2,26],"160":[2,26],"161":[2,26],"162":[2,26],"163":[2,26],"164":[2,26]},{"1":[2,27],"4":[2,27],"29":[2,27],"30":[2,27],"50":[2,27],"58":[2,27],"61":[2,27],"79":[2,27],"84":[2,27],"94":[2,27],"99":[2,27],"107":[2,27],"109":[2,27],"110":[2,27],"111":[2,27],"114":[2,27],"118":[2,27],"119":[2,27],"120":[2,27],"127":[2,27],"128":[2,27],"129":[2,27],"131":[2,27],"132":[2,27],"134":[2,27],"135":[2,27],"138":[2,27],"139":[2,27],"140":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"148":[2,27],"149":[2,27],"150":[2,27],"151":[2,27],"152":[2,27],"153":[2,27],"154":[2,27],"155":[2,27],"156":[2,27],"157":[2,27],"158":[2,27],"159":[2,27],"160":[2,27],"161":[2,27],"162":[2,27],"163":[2,27],"164":[2,27]},{"1":[2,28],"4":[2,28],"29":[2,28],"30":[2,28],"50":[2,28],"58":[2,28],"61":[2,28],"79":[2,28],"84":[2,28],"94":[2,28],"99":[2,28],"107":[2,28],"109":[2,28],"110":[2,28],"111":[2,28],"114":[2,28],"118":[2,28],"119":[2,28],"120":[2,28],"127":[2,28],"128":[2,28],"129":[2,28],"131":[2,28],"132":[2,28],"134":[2,28],"135":[2,28],"138":[2,28],"139":[2,28],"140":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"148":[2,28],"149":[2,28],"150":[2,28],"151":[2,28],"152":[2,28],"153":[2,28],"154":[2,28],"155":[2,28],"156":[2,28],"157":[2,28],"158":[2,28],"159":[2,28],"160":[2,28],"161":[2,28],"162":[2,28],"163":[2,28],"164":[2,28]},{"1":[2,10],"4":[2,10],"30":[2,10],"107":[2,10],"109":[2,10],"111":[2,10],"114":[2,10],"127":[2,10],"128":[2,10]},{"1":[2,11],"4":[2,11],"30":[2,11],"107":[2,11],"109":[2,11],"111":[2,11],"114":[2,11],"127":[2,11],"128":[2,11]},{"1":[2,12],"4":[2,12],"30":[2,12],"107":[2,12],"109":[2,12],"111":[2,12],"114":[2,12],"127":[2,12],"128":[2,12]},{"1":[2,13],"4":[2,13],"30":[2,13],"107":[2,13],"109":[2,13],"111":[2,13],"114":[2,13],"127":[2,13],"128":[2,13]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"46":[1,149],"50":[2,73],"58":[2,73],"61":[2,73],"72":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"78":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"84":[2,73],"92":[2,73],"94":[2,73],"99":[2,73],"107":[2,73],"109":[2,73],"110":[2,73],"111":[2,73],"114":[2,73],"118":[2,73],"119":[2,73],"120":[2,73],"127":[2,73],"128":[2,73],"129":[2,73],"131":[2,73],"132":[2,73],"134":[2,73],"135":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73],"164":[2,73]},{"1":[2,74],"4":[2,74],"29":[2,74],"30":[2,74],"50":[2,74],"58":[2,74],"61":[2,74],"72":[2,74],"73":[2,74],"74":[2,74],"75":[2,74],"78":[2,74],"79":[2,74],"80":[2,74],"81":[2,74],"84":[2,74],"92":[2,74],"94":[2,74],"99":[2,74],"107":[2,74],"109":[2,74],"110":[2,74],"111":[2,74],"114":[2,74],"118":[2,74],"119":[2,74],"120":[2,74],"127":[2,74],"128":[2,74],"129":[2,74],"131":[2,74],"132":[2,74],"134":[2,74],"135":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74],"151":[2,74],"152":[2,74],"153":[2,74],"154":[2,74],"155":[2,74],"156":[2,74],"157":[2,74],"158":[2,74],"159":[2,74],"160":[2,74],"161":[2,74],"162":[2,74],"163":[2,74],"164":[2,74]},{"1":[2,75],"4":[2,75],"29":[2,75],"30":[2,75],"50":[2,75],"58":[2,75],"61":[2,75],"72":[2,75],"73":[2,75],"74":[2,75],"75":[2,75],"78":[2,75],"79":[2,75],"80":[2,75],"81":[2,75],"84":[2,75],"92":[2,75],"94":[2,75],"99":[2,75],"107":[2,75],"109":[2,75],"110":[2,75],"111":[2,75],"114":[2,75],"118":[2,75],"119":[2,75],"120":[2,75],"127":[2,75],"128":[2,75],"129":[2,75],"131":[2,75],"132":[2,75],"134":[2,75],"135":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75],"162":[2,75],"163":[2,75],"164":[2,75]},{"1":[2,76],"4":[2,76],"29":[2,76],"30":[2,76],"50":[2,76],"58":[2,76],"61":[2,76],"72":[2,76],"73":[2,76],"74":[2,76],"75":[2,76],"78":[2,76],"79":[2,76],"80":[2,76],"81":[2,76],"84":[2,76],"92":[2,76],"94":[2,76],"99":[2,76],"107":[2,76],"109":[2,76],"110":[2,76],"111":[2,76],"114":[2,76],"118":[2,76],"119":[2,76],"120":[2,76],"127":[2,76],"128":[2,76],"129":[2,76],"131":[2,76],"132":[2,76],"134":[2,76],"135":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76],"162":[2,76],"163":[2,76],"164":[2,76]},{"1":[2,77],"4":[2,77],"29":[2,77],"30":[2,77],"50":[2,77],"58":[2,77],"61":[2,77],"72":[2,77],"73":[2,77],"74":[2,77],"75":[2,77],"78":[2,77],"79":[2,77],"80":[2,77],"81":[2,77],"84":[2,77],"92":[2,77],"94":[2,77],"99":[2,77],"107":[2,77],"109":[2,77],"110":[2,77],"111":[2,77],"114":[2,77],"118":[2,77],"119":[2,77],"120":[2,77],"127":[2,77],"128":[2,77],"129":[2,77],"131":[2,77],"132":[2,77],"134":[2,77],"135":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77],"151":[2,77],"152":[2,77],"153":[2,77],"154":[2,77],"155":[2,77],"156":[2,77],"157":[2,77],"158":[2,77],"159":[2,77],"160":[2,77],"161":[2,77],"162":[2,77],"163":[2,77],"164":[2,77]},{"1":[2,78],"4":[2,78],"29":[2,78],"30":[2,78],"50":[2,78],"58":[2,78],"61":[2,78],"72":[2,78],"73":[2,78],"74":[2,78],"75":[2,78],"78":[2,78],"79":[2,78],"80":[2,78],"81":[2,78],"84":[2,78],"92":[2,78],"94":[2,78],"99":[2,78],"107":[2,78],"109":[2,78],"110":[2,78],"111":[2,78],"114":[2,78],"118":[2,78],"119":[2,78],"120":[2,78],"127":[2,78],"128":[2,78],"129":[2,78],"131":[2,78],"132":[2,78],"134":[2,78],"135":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78],"151":[2,78],"152":[2,78],"153":[2,78],"154":[2,78],"155":[2,78],"156":[2,78],"157":[2,78],"158":[2,78],"159":[2,78],"160":[2,78],"161":[2,78],"162":[2,78],"163":[2,78],"164":[2,78]},{"1":[2,103],"4":[2,103],"29":[2,103],"30":[2,103],"50":[2,103],"58":[2,103],"61":[2,103],"63":151,"72":[1,140],"73":[1,141],"74":[1,142],"75":[1,143],"76":144,"77":145,"78":[1,146],"79":[2,103],"80":[1,147],"81":[1,148],"84":[2,103],"91":150,"92":[1,139],"94":[2,103],"99":[2,103],"107":[2,103],"109":[2,103],"110":[2,103],"111":[2,103],"114":[2,103],"118":[2,103],"119":[2,103],"120":[2,103],"127":[2,103],"128":[2,103],"129":[2,103],"131":[2,103],"132":[2,103],"134":[2,103],"135":[2,103],"138":[2,103],"139":[2,103],"140":[2,103],"141":[2,103],"142":[2,103],"143":[2,103],"144":[2,103],"145":[2,103],"146":[2,103],"147":[2,103],"148":[2,103],"149":[2,103],"150":[2,103],"151":[2,103],"152":[2,103],"153":[2,103],"154":[2,103],"155":[2,103],"156":[2,103],"157":[2,103],"158":[2,103],"159":[2,103],"160":[2,103],"161":[2,103],"162":[2,103],"163":[2,103],"164":[2,103]},{"1":[2,104],"4":[2,104],"29":[2,104],"30":[2,104],"50":[2,104],"58":[2,104],"61":[2,104],"79":[2,104],"84":[2,104],"94":[2,104],"99":[2,104],"107":[2,104],"109":[2,104],"110":[2,104],"111":[2,104],"114":[2,104],"118":[2,104],"119":[2,104],"120":[2,104],"127":[2,104],"128":[2,104],"129":[2,104],"131":[2,104],"132":[2,104],"134":[2,104],"135":[2,104],"138":[2,104],"139":[2,104],"140":[2,104],"141":[2,104],"142":[2,104],"143":[2,104],"144":[2,104],"145":[2,104],"146":[2,104],"147":[2,104],"148":[2,104],"149":[2,104],"150":[2,104],"151":[2,104],"152":[2,104],"153":[2,104],"154":[2,104],"155":[2,104],"156":[2,104],"157":[2,104],"158":[2,104],"159":[2,104],"160":[2,104],"161":[2,104],"162":[2,104],"163":[2,104],"164":[2,104]},{"14":153,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":154,"62":155,"64":152,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"52":156,"53":[2,60],"58":[2,60],"59":157,"60":[1,158]},{"4":[1,160],"6":159,"29":[1,6]},{"8":161,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":163,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":164,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":165,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":166,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":167,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":168,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":169,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":170,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,170],"4":[2,170],"29":[2,170],"30":[2,170],"50":[2,170],"58":[2,170],"61":[2,170],"79":[2,170],"84":[2,170],"94":[2,170],"99":[2,170],"107":[2,170],"109":[2,170],"110":[2,170],"111":[2,170],"114":[2,170],"118":[2,170],"119":[2,170],"120":[2,170],"123":[1,171],"127":[2,170],"128":[2,170],"129":[2,170],"131":[2,170],"132":[2,170],"134":[2,170],"135":[2,170],"138":[2,170],"139":[2,170],"140":[2,170],"141":[2,170],"142":[2,170],"143":[2,170],"144":[2,170],"145":[2,170],"146":[2,170],"147":[2,170],"148":[2,170],"149":[2,170],"150":[2,170],"151":[2,170],"152":[2,170],"153":[2,170],"154":[2,170],"155":[2,170],"156":[2,170],"157":[2,170],"158":[2,170],"159":[2,170],"160":[2,170],"161":[2,170],"162":[2,170],"163":[2,170],"164":[2,170]},{"4":[1,160],"6":172,"29":[1,6]},{"4":[1,160],"6":173,"29":[1,6]},{"1":[2,140],"4":[2,140],"29":[2,140],"30":[2,140],"50":[2,140],"58":[2,140],"61":[2,140],"79":[2,140],"84":[2,140],"94":[2,140],"99":[2,140],"107":[2,140],"109":[2,140],"110":[2,140],"111":[2,140],"114":[2,140],"118":[2,140],"119":[2,140],"120":[2,140],"127":[2,140],"128":[2,140],"129":[2,140],"131":[2,140],"132":[2,140],"134":[2,140],"135":[2,140],"138":[2,140],"139":[2,140],"140":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140],"148":[2,140],"149":[2,140],"150":[2,140],"151":[2,140],"152":[2,140],"153":[2,140],"154":[2,140],"155":[2,140],"156":[2,140],"157":[2,140],"158":[2,140],"159":[2,140],"160":[2,140],"161":[2,140],"162":[2,140],"163":[2,140],"164":[2,140]},{"31":176,"32":[1,87],"66":177,"67":178,"82":[1,84],"98":[1,179],"115":174,"117":175},{"8":180,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,181],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"46":[2,70],"50":[2,70],"58":[2,70],"61":[2,70],"72":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"78":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"84":[2,70],"86":[1,182],"92":[2,70],"94":[2,70],"99":[2,70],"107":[2,70],"109":[2,70],"110":[2,70],"111":[2,70],"114":[2,70],"118":[2,70],"119":[2,70],"120":[2,70],"127":[2,70],"128":[2,70],"129":[2,70],"131":[2,70],"132":[2,70],"134":[2,70],"135":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70],"164":[2,70]},{"14":184,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":154,"62":183,"64":185,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,52],"4":[2,52],"29":[2,52],"30":[2,52],"50":[2,52],"58":[2,52],"61":[2,52],"79":[2,52],"84":[2,52],"94":[2,52],"99":[2,52],"103":[2,52],"104":[2,52],"107":[2,52],"109":[2,52],"110":[2,52],"111":[2,52],"114":[2,52],"118":[2,52],"119":[2,52],"120":[2,52],"123":[2,52],"125":[2,52],"127":[2,52],"128":[2,52],"129":[2,52],"131":[2,52],"132":[2,52],"134":[2,52],"135":[2,52],"138":[2,52],"139":[2,52],"140":[2,52],"141":[2,52],"142":[2,52],"143":[2,52],"144":[2,52],"145":[2,52],"146":[2,52],"147":[2,52],"148":[2,52],"149":[2,52],"150":[2,52],"151":[2,52],"152":[2,52],"153":[2,52],"154":[2,52],"155":[2,52],"156":[2,52],"157":[2,52],"158":[2,52],"159":[2,52],"160":[2,52],"161":[2,52],"162":[2,52],"163":[2,52],"164":[2,52]},{"1":[2,51],"4":[2,51],"8":186,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,51],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"107":[2,51],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[2,51],"128":[2,51],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":187,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,71],"4":[2,71],"29":[2,71],"30":[2,71],"46":[2,71],"50":[2,71],"58":[2,71],"61":[2,71],"72":[2,71],"73":[2,71],"74":[2,71],"75":[2,71],"78":[2,71],"79":[2,71],"80":[2,71],"81":[2,71],"84":[2,71],"92":[2,71],"94":[2,71],"99":[2,71],"107":[2,71],"109":[2,71],"110":[2,71],"111":[2,71],"114":[2,71],"118":[2,71],"119":[2,71],"120":[2,71],"127":[2,71],"128":[2,71],"129":[2,71],"131":[2,71],"132":[2,71],"134":[2,71],"135":[2,71],"138":[2,71],"139":[2,71],"140":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71],"162":[2,71],"163":[2,71],"164":[2,71]},{"1":[2,72],"4":[2,72],"29":[2,72],"30":[2,72],"46":[2,72],"50":[2,72],"58":[2,72],"61":[2,72],"72":[2,72],"73":[2,72],"74":[2,72],"75":[2,72],"78":[2,72],"79":[2,72],"80":[2,72],"81":[2,72],"84":[2,72],"92":[2,72],"94":[2,72],"99":[2,72],"107":[2,72],"109":[2,72],"110":[2,72],"111":[2,72],"114":[2,72],"118":[2,72],"119":[2,72],"120":[2,72],"127":[2,72],"128":[2,72],"129":[2,72],"131":[2,72],"132":[2,72],"134":[2,72],"135":[2,72],"138":[2,72],"139":[2,72],"140":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72],"162":[2,72],"163":[2,72],"164":[2,72]},{"1":[2,35],"4":[2,35],"29":[2,35],"30":[2,35],"50":[2,35],"58":[2,35],"61":[2,35],"72":[2,35],"73":[2,35],"74":[2,35],"75":[2,35],"78":[2,35],"79":[2,35],"80":[2,35],"81":[2,35],"84":[2,35],"92":[2,35],"94":[2,35],"99":[2,35],"107":[2,35],"109":[2,35],"110":[2,35],"111":[2,35],"114":[2,35],"118":[2,35],"119":[2,35],"120":[2,35],"127":[2,35],"128":[2,35],"129":[2,35],"131":[2,35],"132":[2,35],"134":[2,35],"135":[2,35],"138":[2,35],"139":[2,35],"140":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35],"151":[2,35],"152":[2,35],"153":[2,35],"154":[2,35],"155":[2,35],"156":[2,35],"157":[2,35],"158":[2,35],"159":[2,35],"160":[2,35],"161":[2,35],"162":[2,35],"163":[2,35],"164":[2,35]},{"1":[2,36],"4":[2,36],"29":[2,36],"30":[2,36],"50":[2,36],"58":[2,36],"61":[2,36],"72":[2,36],"73":[2,36],"74":[2,36],"75":[2,36],"78":[2,36],"79":[2,36],"80":[2,36],"81":[2,36],"84":[2,36],"92":[2,36],"94":[2,36],"99":[2,36],"107":[2,36],"109":[2,36],"110":[2,36],"111":[2,36],"114":[2,36],"118":[2,36],"119":[2,36],"120":[2,36],"127":[2,36],"128":[2,36],"129":[2,36],"131":[2,36],"132":[2,36],"134":[2,36],"135":[2,36],"138":[2,36],"139":[2,36],"140":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36],"151":[2,36],"152":[2,36],"153":[2,36],"154":[2,36],"155":[2,36],"156":[2,36],"157":[2,36],"158":[2,36],"159":[2,36],"160":[2,36],"161":[2,36],"162":[2,36],"163":[2,36],"164":[2,36]},{"1":[2,37],"4":[2,37],"29":[2,37],"30":[2,37],"50":[2,37],"58":[2,37],"61":[2,37],"72":[2,37],"73":[2,37],"74":[2,37],"75":[2,37],"78":[2,37],"79":[2,37],"80":[2,37],"81":[2,37],"84":[2,37],"92":[2,37],"94":[2,37],"99":[2,37],"107":[2,37],"109":[2,37],"110":[2,37],"111":[2,37],"114":[2,37],"118":[2,37],"119":[2,37],"120":[2,37],"127":[2,37],"128":[2,37],"129":[2,37],"131":[2,37],"132":[2,37],"134":[2,37],"135":[2,37],"138":[2,37],"139":[2,37],"140":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37],"151":[2,37],"152":[2,37],"153":[2,37],"154":[2,37],"155":[2,37],"156":[2,37],"157":[2,37],"158":[2,37],"159":[2,37],"160":[2,37],"161":[2,37],"162":[2,37],"163":[2,37],"164":[2,37]},{"1":[2,38],"4":[2,38],"29":[2,38],"30":[2,38],"50":[2,38],"58":[2,38],"61":[2,38],"72":[2,38],"73":[2,38],"74":[2,38],"75":[2,38],"78":[2,38],"79":[2,38],"80":[2,38],"81":[2,38],"84":[2,38],"92":[2,38],"94":[2,38],"99":[2,38],"107":[2,38],"109":[2,38],"110":[2,38],"111":[2,38],"114":[2,38],"118":[2,38],"119":[2,38],"120":[2,38],"127":[2,38],"128":[2,38],"129":[2,38],"131":[2,38],"132":[2,38],"134":[2,38],"135":[2,38],"138":[2,38],"139":[2,38],"140":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38],"151":[2,38],"152":[2,38],"153":[2,38],"154":[2,38],"155":[2,38],"156":[2,38],"157":[2,38],"158":[2,38],"159":[2,38],"160":[2,38],"161":[2,38],"162":[2,38],"163":[2,38],"164":[2,38]},{"1":[2,39],"4":[2,39],"29":[2,39],"30":[2,39],"50":[2,39],"58":[2,39],"61":[2,39],"72":[2,39],"73":[2,39],"74":[2,39],"75":[2,39],"78":[2,39],"79":[2,39],"80":[2,39],"81":[2,39],"84":[2,39],"92":[2,39],"94":[2,39],"99":[2,39],"107":[2,39],"109":[2,39],"110":[2,39],"111":[2,39],"114":[2,39],"118":[2,39],"119":[2,39],"120":[2,39],"127":[2,39],"128":[2,39],"129":[2,39],"131":[2,39],"132":[2,39],"134":[2,39],"135":[2,39],"138":[2,39],"139":[2,39],"140":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39],"151":[2,39],"152":[2,39],"153":[2,39],"154":[2,39],"155":[2,39],"156":[2,39],"157":[2,39],"158":[2,39],"159":[2,39],"160":[2,39],"161":[2,39],"162":[2,39],"163":[2,39],"164":[2,39]},{"1":[2,40],"4":[2,40],"29":[2,40],"30":[2,40],"50":[2,40],"58":[2,40],"61":[2,40],"72":[2,40],"73":[2,40],"74":[2,40],"75":[2,40],"78":[2,40],"79":[2,40],"80":[2,40],"81":[2,40],"84":[2,40],"92":[2,40],"94":[2,40],"99":[2,40],"107":[2,40],"109":[2,40],"110":[2,40],"111":[2,40],"114":[2,40],"118":[2,40],"119":[2,40],"120":[2,40],"127":[2,40],"128":[2,40],"129":[2,40],"131":[2,40],"132":[2,40],"134":[2,40],"135":[2,40],"138":[2,40],"139":[2,40],"140":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40],"151":[2,40],"152":[2,40],"153":[2,40],"154":[2,40],"155":[2,40],"156":[2,40],"157":[2,40],"158":[2,40],"159":[2,40],"160":[2,40],"161":[2,40],"162":[2,40],"163":[2,40],"164":[2,40]},{"1":[2,41],"4":[2,41],"29":[2,41],"30":[2,41],"50":[2,41],"58":[2,41],"61":[2,41],"72":[2,41],"73":[2,41],"74":[2,41],"75":[2,41],"78":[2,41],"79":[2,41],"80":[2,41],"81":[2,41],"84":[2,41],"92":[2,41],"94":[2,41],"99":[2,41],"107":[2,41],"109":[2,41],"110":[2,41],"111":[2,41],"114":[2,41],"118":[2,41],"119":[2,41],"120":[2,41],"127":[2,41],"128":[2,41],"129":[2,41],"131":[2,41],"132":[2,41],"134":[2,41],"135":[2,41],"138":[2,41],"139":[2,41],"140":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41],"151":[2,41],"152":[2,41],"153":[2,41],"154":[2,41],"155":[2,41],"156":[2,41],"157":[2,41],"158":[2,41],"159":[2,41],"160":[2,41],"161":[2,41],"162":[2,41],"163":[2,41],"164":[2,41]},{"1":[2,42],"4":[2,42],"29":[2,42],"30":[2,42],"50":[2,42],"58":[2,42],"61":[2,42],"72":[2,42],"73":[2,42],"74":[2,42],"75":[2,42],"78":[2,42],"79":[2,42],"80":[2,42],"81":[2,42],"84":[2,42],"92":[2,42],"94":[2,42],"99":[2,42],"107":[2,42],"109":[2,42],"110":[2,42],"111":[2,42],"114":[2,42],"118":[2,42],"119":[2,42],"120":[2,42],"127":[2,42],"128":[2,42],"129":[2,42],"131":[2,42],"132":[2,42],"134":[2,42],"135":[2,42],"138":[2,42],"139":[2,42],"140":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"148":[2,42],"149":[2,42],"150":[2,42],"151":[2,42],"152":[2,42],"153":[2,42],"154":[2,42],"155":[2,42],"156":[2,42],"157":[2,42],"158":[2,42],"159":[2,42],"160":[2,42],"161":[2,42],"162":[2,42],"163":[2,42],"164":[2,42]},{"1":[2,43],"4":[2,43],"29":[2,43],"30":[2,43],"50":[2,43],"58":[2,43],"61":[2,43],"72":[2,43],"73":[2,43],"74":[2,43],"75":[2,43],"78":[2,43],"79":[2,43],"80":[2,43],"81":[2,43],"84":[2,43],"92":[2,43],"94":[2,43],"99":[2,43],"107":[2,43],"109":[2,43],"110":[2,43],"111":[2,43],"114":[2,43],"118":[2,43],"119":[2,43],"120":[2,43],"127":[2,43],"128":[2,43],"129":[2,43],"131":[2,43],"132":[2,43],"134":[2,43],"135":[2,43],"138":[2,43],"139":[2,43],"140":[2,43],"141":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43],"148":[2,43],"149":[2,43],"150":[2,43],"151":[2,43],"152":[2,43],"153":[2,43],"154":[2,43],"155":[2,43],"156":[2,43],"157":[2,43],"158":[2,43],"159":[2,43],"160":[2,43],"161":[2,43],"162":[2,43],"163":[2,43],"164":[2,43]},{"7":188,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,120],"8":189,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":190,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,120],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,112],"4":[2,112],"29":[2,112],"30":[2,112],"50":[2,112],"58":[2,112],"61":[2,112],"72":[2,112],"73":[2,112],"74":[2,112],"75":[2,112],"78":[2,112],"79":[2,112],"80":[2,112],"81":[2,112],"84":[2,112],"92":[2,112],"94":[2,112],"99":[2,112],"107":[2,112],"109":[2,112],"110":[2,112],"111":[2,112],"114":[2,112],"118":[2,112],"119":[2,112],"120":[2,112],"127":[2,112],"128":[2,112],"129":[2,112],"131":[2,112],"132":[2,112],"134":[2,112],"135":[2,112],"138":[2,112],"139":[2,112],"140":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"147":[2,112],"148":[2,112],"149":[2,112],"150":[2,112],"151":[2,112],"152":[2,112],"153":[2,112],"154":[2,112],"155":[2,112],"156":[2,112],"157":[2,112],"158":[2,112],"159":[2,112],"160":[2,112],"161":[2,112],"162":[2,112],"163":[2,112],"164":[2,112]},{"1":[2,113],"4":[2,113],"29":[2,113],"30":[2,113],"31":191,"32":[1,87],"50":[2,113],"58":[2,113],"61":[2,113],"72":[2,113],"73":[2,113],"74":[2,113],"75":[2,113],"78":[2,113],"79":[2,113],"80":[2,113],"81":[2,113],"84":[2,113],"92":[2,113],"94":[2,113],"99":[2,113],"107":[2,113],"109":[2,113],"110":[2,113],"111":[2,113],"114":[2,113],"118":[2,113],"119":[2,113],"120":[2,113],"127":[2,113],"128":[2,113],"129":[2,113],"131":[2,113],"132":[2,113],"134":[2,113],"135":[2,113],"138":[2,113],"139":[2,113],"140":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"147":[2,113],"148":[2,113],"149":[2,113],"150":[2,113],"151":[2,113],"152":[2,113],"153":[2,113],"154":[2,113],"155":[2,113],"156":[2,113],"157":[2,113],"158":[2,113],"159":[2,113],"160":[2,113],"161":[2,113],"162":[2,113],"163":[2,113],"164":[2,113]},{"91":192,"92":[1,139]},{"4":[2,56],"29":[2,56]},{"4":[2,57],"29":[2,57]},{"8":193,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":194,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":195,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":196,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[1,160],"6":197,"8":198,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,66],"4":[2,66],"29":[2,66],"30":[2,66],"46":[2,66],"50":[2,66],"58":[2,66],"61":[2,66],"72":[2,66],"73":[2,66],"74":[2,66],"75":[2,66],"78":[2,66],"79":[2,66],"80":[2,66],"81":[2,66],"84":[2,66],"86":[2,66],"92":[2,66],"94":[2,66],"99":[2,66],"107":[2,66],"109":[2,66],"110":[2,66],"111":[2,66],"114":[2,66],"118":[2,66],"119":[2,66],"120":[2,66],"127":[2,66],"128":[2,66],"129":[2,66],"131":[2,66],"132":[2,66],"134":[2,66],"135":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66],"162":[2,66],"163":[2,66],"164":[2,66]},{"1":[2,69],"4":[2,69],"29":[2,69],"30":[2,69],"46":[2,69],"50":[2,69],"58":[2,69],"61":[2,69],"72":[2,69],"73":[2,69],"74":[2,69],"75":[2,69],"78":[2,69],"79":[2,69],"80":[2,69],"81":[2,69],"84":[2,69],"86":[2,69],"92":[2,69],"94":[2,69],"99":[2,69],"107":[2,69],"109":[2,69],"110":[2,69],"111":[2,69],"114":[2,69],"118":[2,69],"119":[2,69],"120":[2,69],"127":[2,69],"128":[2,69],"129":[2,69],"131":[2,69],"132":[2,69],"134":[2,69],"135":[2,69],"138":[2,69],"139":[2,69],"140":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69],"162":[2,69],"163":[2,69],"164":[2,69]},{"4":[2,89],"28":203,"29":[2,89],"31":201,"32":[1,87],"33":202,"34":[1,85],"35":[1,86],"47":200,"49":[1,56],"58":[2,89],"83":199,"84":[2,89]},{"1":[2,33],"4":[2,33],"29":[2,33],"30":[2,33],"46":[2,33],"50":[2,33],"58":[2,33],"61":[2,33],"72":[2,33],"73":[2,33],"74":[2,33],"75":[2,33],"78":[2,33],"79":[2,33],"80":[2,33],"81":[2,33],"84":[2,33],"92":[2,33],"94":[2,33],"99":[2,33],"107":[2,33],"109":[2,33],"110":[2,33],"111":[2,33],"114":[2,33],"118":[2,33],"119":[2,33],"120":[2,33],"127":[2,33],"128":[2,33],"129":[2,33],"131":[2,33],"132":[2,33],"134":[2,33],"135":[2,33],"138":[2,33],"139":[2,33],"140":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33],"151":[2,33],"152":[2,33],"153":[2,33],"154":[2,33],"155":[2,33],"156":[2,33],"157":[2,33],"158":[2,33],"159":[2,33],"160":[2,33],"161":[2,33],"162":[2,33],"163":[2,33],"164":[2,33]},{"1":[2,34],"4":[2,34],"29":[2,34],"30":[2,34],"46":[2,34],"50":[2,34],"58":[2,34],"61":[2,34],"72":[2,34],"73":[2,34],"74":[2,34],"75":[2,34],"78":[2,34],"79":[2,34],"80":[2,34],"81":[2,34],"84":[2,34],"92":[2,34],"94":[2,34],"99":[2,34],"107":[2,34],"109":[2,34],"110":[2,34],"111":[2,34],"114":[2,34],"118":[2,34],"119":[2,34],"120":[2,34],"127":[2,34],"128":[2,34],"129":[2,34],"131":[2,34],"132":[2,34],"134":[2,34],"135":[2,34],"138":[2,34],"139":[2,34],"140":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34],"151":[2,34],"152":[2,34],"153":[2,34],"154":[2,34],"155":[2,34],"156":[2,34],"157":[2,34],"158":[2,34],"159":[2,34],"160":[2,34],"161":[2,34],"162":[2,34],"163":[2,34],"164":[2,34]},{"1":[2,32],"4":[2,32],"29":[2,32],"30":[2,32],"46":[2,32],"50":[2,32],"58":[2,32],"61":[2,32],"72":[2,32],"73":[2,32],"74":[2,32],"75":[2,32],"78":[2,32],"79":[2,32],"80":[2,32],"81":[2,32],"84":[2,32],"86":[2,32],"92":[2,32],"94":[2,32],"99":[2,32],"107":[2,32],"109":[2,32],"110":[2,32],"111":[2,32],"114":[2,32],"118":[2,32],"119":[2,32],"120":[2,32],"127":[2,32],"128":[2,32],"129":[2,32],"131":[2,32],"132":[2,32],"134":[2,32],"135":[2,32],"138":[2,32],"139":[2,32],"140":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32],"151":[2,32],"152":[2,32],"153":[2,32],"154":[2,32],"155":[2,32],"156":[2,32],"157":[2,32],"158":[2,32],"159":[2,32],"160":[2,32],"161":[2,32],"162":[2,32],"163":[2,32],"164":[2,32]},{"1":[2,31],"4":[2,31],"29":[2,31],"30":[2,31],"50":[2,31],"58":[2,31],"61":[2,31],"79":[2,31],"84":[2,31],"94":[2,31],"99":[2,31],"103":[2,31],"104":[2,31],"107":[2,31],"109":[2,31],"110":[2,31],"111":[2,31],"114":[2,31],"118":[2,31],"119":[2,31],"120":[2,31],"123":[2,31],"125":[2,31],"127":[2,31],"128":[2,31],"129":[2,31],"131":[2,31],"132":[2,31],"134":[2,31],"135":[2,31],"138":[2,31],"139":[2,31],"140":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31],"149":[2,31],"150":[2,31],"151":[2,31],"152":[2,31],"153":[2,31],"154":[2,31],"155":[2,31],"156":[2,31],"157":[2,31],"158":[2,31],"159":[2,31],"160":[2,31],"161":[2,31],"162":[2,31],"163":[2,31],"164":[2,31]},{"1":[2,7],"4":[2,7],"7":204,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,7],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,4]},{"4":[1,89],"30":[1,205]},{"1":[2,30],"4":[2,30],"29":[2,30],"30":[2,30],"50":[2,30],"58":[2,30],"61":[2,30],"79":[2,30],"84":[2,30],"94":[2,30],"99":[2,30],"103":[2,30],"104":[2,30],"107":[2,30],"109":[2,30],"110":[2,30],"111":[2,30],"114":[2,30],"118":[2,30],"119":[2,30],"120":[2,30],"123":[2,30],"125":[2,30],"127":[2,30],"128":[2,30],"129":[2,30],"131":[2,30],"132":[2,30],"134":[2,30],"135":[2,30],"138":[2,30],"139":[2,30],"140":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"148":[2,30],"149":[2,30],"150":[2,30],"151":[2,30],"152":[2,30],"153":[2,30],"154":[2,30],"155":[2,30],"156":[2,30],"157":[2,30],"158":[2,30],"159":[2,30],"160":[2,30],"161":[2,30],"162":[2,30],"163":[2,30],"164":[2,30]},{"1":[2,184],"4":[2,184],"29":[2,184],"30":[2,184],"50":[2,184],"58":[2,184],"61":[2,184],"79":[2,184],"84":[2,184],"94":[2,184],"99":[2,184],"107":[2,184],"109":[2,184],"110":[2,184],"111":[2,184],"114":[2,184],"118":[2,184],"119":[2,184],"120":[2,184],"127":[2,184],"128":[2,184],"129":[2,184],"131":[2,184],"132":[2,184],"134":[2,184],"135":[2,184],"138":[2,184],"139":[2,184],"140":[2,184],"141":[2,184],"142":[2,184],"143":[2,184],"144":[2,184],"145":[2,184],"146":[2,184],"147":[2,184],"148":[2,184],"149":[2,184],"150":[2,184],"151":[2,184],"152":[2,184],"153":[2,184],"154":[2,184],"155":[2,184],"156":[2,184],"157":[2,184],"158":[2,184],"159":[2,184],"160":[2,184],"161":[2,184],"162":[2,184],"163":[2,184],"164":[2,184]},{"1":[2,185],"4":[2,185],"29":[2,185],"30":[2,185],"50":[2,185],"58":[2,185],"61":[2,185],"79":[2,185],"84":[2,185],"94":[2,185],"99":[2,185],"107":[2,185],"109":[2,185],"110":[2,185],"111":[2,185],"114":[2,185],"118":[2,185],"119":[2,185],"120":[2,185],"127":[2,185],"128":[2,185],"129":[2,185],"131":[2,185],"132":[2,185],"134":[2,185],"135":[2,185],"138":[2,185],"139":[2,185],"140":[2,185],"141":[2,185],"142":[2,185],"143":[2,185],"144":[2,185],"145":[2,185],"146":[2,185],"147":[2,185],"148":[2,185],"149":[2,185],"150":[2,185],"151":[2,185],"152":[2,185],"153":[2,185],"154":[2,185],"155":[2,185],"156":[2,185],"157":[2,185],"158":[2,185],"159":[2,185],"160":[2,185],"161":[2,185],"162":[2,185],"163":[2,185],"164":[2,185]},{"8":206,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":207,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":208,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":209,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":210,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":211,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":212,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":213,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":214,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":215,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":216,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":217,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":218,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":219,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":220,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":221,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":222,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":223,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":224,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":225,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":226,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":227,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":228,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":229,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":230,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":231,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":232,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":233,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":234,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":235,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":236,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"118":[1,237],"119":[1,238]},{"8":239,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":240,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,139],"4":[2,139],"29":[2,139],"30":[2,139],"50":[2,139],"58":[2,139],"61":[2,139],"79":[2,139],"84":[2,139],"94":[2,139],"99":[2,139],"107":[2,139],"109":[2,139],"110":[2,139],"111":[2,139],"114":[2,139],"118":[2,139],"119":[2,139],"120":[2,139],"127":[2,139],"128":[2,139],"129":[2,139],"131":[2,139],"132":[2,139],"134":[2,139],"135":[2,139],"138":[2,139],"139":[2,139],"140":[2,139],"141":[2,139],"142":[2,139],"143":[2,139],"144":[2,139],"145":[2,139],"146":[2,139],"147":[2,139],"148":[2,139],"149":[2,139],"150":[2,139],"151":[2,139],"152":[2,139],"153":[2,139],"154":[2,139],"155":[2,139],"156":[2,139],"157":[2,139],"158":[2,139],"159":[2,139],"160":[2,139],"161":[2,139],"162":[2,139],"163":[2,139],"164":[2,139]},{"31":176,"32":[1,87],"66":177,"67":178,"82":[1,84],"98":[1,179],"115":241,"117":175},{"61":[1,242]},{"1":[2,53],"4":[2,53],"29":[2,53],"30":[2,53],"50":[2,53],"58":[2,53],"61":[2,53],"79":[2,53],"84":[2,53],"94":[2,53],"99":[2,53],"107":[2,53],"109":[2,53],"110":[2,53],"111":[2,53],"114":[2,53],"118":[2,53],"119":[2,53],"120":[2,53],"127":[2,53],"128":[2,53],"129":[2,53],"131":[2,53],"132":[2,53],"134":[2,53],"135":[2,53],"138":[2,53],"139":[2,53],"140":[2,53],"141":[2,53],"142":[2,53],"143":[2,53],"144":[2,53],"145":[2,53],"146":[2,53],"147":[2,53],"148":[2,53],"149":[2,53],"150":[2,53],"151":[2,53],"152":[2,53],"153":[2,53],"154":[2,53],"155":[2,53],"156":[2,53],"157":[2,53],"158":[2,53],"159":[2,53],"160":[2,53],"161":[2,53],"162":[2,53],"163":[2,53],"164":[2,53]},{"8":243,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":244,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,138],"4":[2,138],"29":[2,138],"30":[2,138],"50":[2,138],"58":[2,138],"61":[2,138],"79":[2,138],"84":[2,138],"94":[2,138],"99":[2,138],"107":[2,138],"109":[2,138],"110":[2,138],"111":[2,138],"114":[2,138],"118":[2,138],"119":[2,138],"120":[2,138],"127":[2,138],"128":[2,138],"129":[2,138],"131":[2,138],"132":[2,138],"134":[2,138],"135":[2,138],"138":[2,138],"139":[2,138],"140":[2,138],"141":[2,138],"142":[2,138],"143":[2,138],"144":[2,138],"145":[2,138],"146":[2,138],"147":[2,138],"148":[2,138],"149":[2,138],"150":[2,138],"151":[2,138],"152":[2,138],"153":[2,138],"154":[2,138],"155":[2,138],"156":[2,138],"157":[2,138],"158":[2,138],"159":[2,138],"160":[2,138],"161":[2,138],"162":[2,138],"163":[2,138],"164":[2,138]},{"31":176,"32":[1,87],"66":177,"67":178,"82":[1,84],"98":[1,179],"115":245,"117":175},{"1":[2,108],"4":[2,108],"29":[2,108],"30":[2,108],"50":[2,108],"58":[2,108],"61":[2,108],"72":[2,108],"73":[2,108],"74":[2,108],"75":[2,108],"78":[2,108],"79":[2,108],"80":[2,108],"81":[2,108],"84":[2,108],"92":[2,108],"94":[2,108],"99":[2,108],"107":[2,108],"109":[2,108],"110":[2,108],"111":[2,108],"114":[2,108],"118":[2,108],"119":[2,108],"120":[2,108],"127":[2,108],"128":[2,108],"129":[2,108],"131":[2,108],"132":[2,108],"134":[2,108],"135":[2,108],"138":[2,108],"139":[2,108],"140":[2,108],"141":[2,108],"142":[2,108],"143":[2,108],"144":[2,108],"145":[2,108],"146":[2,108],"147":[2,108],"148":[2,108],"149":[2,108],"150":[2,108],"151":[2,108],"152":[2,108],"153":[2,108],"154":[2,108],"155":[2,108],"156":[2,108],"157":[2,108],"158":[2,108],"159":[2,108],"160":[2,108],"161":[2,108],"162":[2,108],"163":[2,108],"164":[2,108]},{"1":[2,67],"4":[2,67],"29":[2,67],"30":[2,67],"46":[2,67],"50":[2,67],"58":[2,67],"61":[2,67],"72":[2,67],"73":[2,67],"74":[2,67],"75":[2,67],"78":[2,67],"79":[2,67],"80":[2,67],"81":[2,67],"84":[2,67],"86":[2,67],"92":[2,67],"94":[2,67],"99":[2,67],"107":[2,67],"109":[2,67],"110":[2,67],"111":[2,67],"114":[2,67],"118":[2,67],"119":[2,67],"120":[2,67],"127":[2,67],"128":[2,67],"129":[2,67],"131":[2,67],"132":[2,67],"134":[2,67],"135":[2,67],"138":[2,67],"139":[2,67],"140":[2,67],"141":[2,67],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67],"162":[2,67],"163":[2,67],"164":[2,67]},{"4":[2,120],"8":247,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":246,"94":[2,120],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"31":248,"32":[1,87]},{"31":249,"32":[1,87]},{"1":[2,81],"4":[2,81],"29":[2,81],"30":[2,81],"46":[2,81],"50":[2,81],"58":[2,81],"61":[2,81],"72":[2,81],"73":[2,81],"74":[2,81],"75":[2,81],"78":[2,81],"79":[2,81],"80":[2,81],"81":[2,81],"84":[2,81],"86":[2,81],"92":[2,81],"94":[2,81],"99":[2,81],"107":[2,81],"109":[2,81],"110":[2,81],"111":[2,81],"114":[2,81],"118":[2,81],"119":[2,81],"120":[2,81],"127":[2,81],"128":[2,81],"129":[2,81],"131":[2,81],"132":[2,81],"134":[2,81],"135":[2,81],"138":[2,81],"139":[2,81],"140":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81],"151":[2,81],"152":[2,81],"153":[2,81],"154":[2,81],"155":[2,81],"156":[2,81],"157":[2,81],"158":[2,81],"159":[2,81],"160":[2,81],"161":[2,81],"162":[2,81],"163":[2,81],"164":[2,81]},{"31":250,"32":[1,87]},{"1":[2,83],"4":[2,83],"29":[2,83],"30":[2,83],"46":[2,83],"50":[2,83],"58":[2,83],"61":[2,83],"72":[2,83],"73":[2,83],"74":[2,83],"75":[2,83],"78":[2,83],"79":[2,83],"80":[2,83],"81":[2,83],"84":[2,83],"86":[2,83],"92":[2,83],"94":[2,83],"99":[2,83],"107":[2,83],"109":[2,83],"110":[2,83],"111":[2,83],"114":[2,83],"118":[2,83],"119":[2,83],"120":[2,83],"127":[2,83],"128":[2,83],"129":[2,83],"131":[2,83],"132":[2,83],"134":[2,83],"135":[2,83],"138":[2,83],"139":[2,83],"140":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83],"151":[2,83],"152":[2,83],"153":[2,83],"154":[2,83],"155":[2,83],"156":[2,83],"157":[2,83],"158":[2,83],"159":[2,83],"160":[2,83],"161":[2,83],"162":[2,83],"163":[2,83],"164":[2,83]},{"1":[2,84],"4":[2,84],"29":[2,84],"30":[2,84],"46":[2,84],"50":[2,84],"58":[2,84],"61":[2,84],"72":[2,84],"73":[2,84],"74":[2,84],"75":[2,84],"78":[2,84],"79":[2,84],"80":[2,84],"81":[2,84],"84":[2,84],"86":[2,84],"92":[2,84],"94":[2,84],"99":[2,84],"107":[2,84],"109":[2,84],"110":[2,84],"111":[2,84],"114":[2,84],"118":[2,84],"119":[2,84],"120":[2,84],"127":[2,84],"128":[2,84],"129":[2,84],"131":[2,84],"132":[2,84],"134":[2,84],"135":[2,84],"138":[2,84],"139":[2,84],"140":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84],"151":[2,84],"152":[2,84],"153":[2,84],"154":[2,84],"155":[2,84],"156":[2,84],"157":[2,84],"158":[2,84],"159":[2,84],"160":[2,84],"161":[2,84],"162":[2,84],"163":[2,84],"164":[2,84]},{"8":251,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"76":252,"78":[1,253],"80":[1,147],"81":[1,148]},{"76":254,"78":[1,253],"80":[1,147],"81":[1,148]},{"8":255,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,109],"4":[2,109],"29":[2,109],"30":[2,109],"50":[2,109],"58":[2,109],"61":[2,109],"72":[2,109],"73":[2,109],"74":[2,109],"75":[2,109],"78":[2,109],"79":[2,109],"80":[2,109],"81":[2,109],"84":[2,109],"92":[2,109],"94":[2,109],"99":[2,109],"107":[2,109],"109":[2,109],"110":[2,109],"111":[2,109],"114":[2,109],"118":[2,109],"119":[2,109],"120":[2,109],"127":[2,109],"128":[2,109],"129":[2,109],"131":[2,109],"132":[2,109],"134":[2,109],"135":[2,109],"138":[2,109],"139":[2,109],"140":[2,109],"141":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"147":[2,109],"148":[2,109],"149":[2,109],"150":[2,109],"151":[2,109],"152":[2,109],"153":[2,109],"154":[2,109],"155":[2,109],"156":[2,109],"157":[2,109],"158":[2,109],"159":[2,109],"160":[2,109],"161":[2,109],"162":[2,109],"163":[2,109],"164":[2,109]},{"1":[2,68],"4":[2,68],"29":[2,68],"30":[2,68],"46":[2,68],"50":[2,68],"58":[2,68],"61":[2,68],"72":[2,68],"73":[2,68],"74":[2,68],"75":[2,68],"78":[2,68],"79":[2,68],"80":[2,68],"81":[2,68],"84":[2,68],"86":[2,68],"92":[2,68],"94":[2,68],"99":[2,68],"107":[2,68],"109":[2,68],"110":[2,68],"111":[2,68],"114":[2,68],"118":[2,68],"119":[2,68],"120":[2,68],"127":[2,68],"128":[2,68],"129":[2,68],"131":[2,68],"132":[2,68],"134":[2,68],"135":[2,68],"138":[2,68],"139":[2,68],"140":[2,68],"141":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68],"162":[2,68],"163":[2,68],"164":[2,68]},{"1":[2,105],"4":[2,105],"29":[2,105],"30":[2,105],"50":[2,105],"58":[2,105],"61":[2,105],"63":151,"72":[1,140],"73":[1,141],"74":[1,142],"75":[1,143],"76":144,"77":145,"78":[1,146],"79":[2,105],"80":[1,147],"81":[1,148],"84":[2,105],"91":150,"92":[1,139],"94":[2,105],"99":[2,105],"107":[2,105],"109":[2,105],"110":[2,105],"111":[2,105],"114":[2,105],"118":[2,105],"119":[2,105],"120":[2,105],"127":[2,105],"128":[2,105],"129":[2,105],"131":[2,105],"132":[2,105],"134":[2,105],"135":[2,105],"138":[2,105],"139":[2,105],"140":[2,105],"141":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"148":[2,105],"149":[2,105],"150":[2,105],"151":[2,105],"152":[2,105],"153":[2,105],"154":[2,105],"155":[2,105],"156":[2,105],"157":[2,105],"158":[2,105],"159":[2,105],"160":[2,105],"161":[2,105],"162":[2,105],"163":[2,105],"164":[2,105]},{"1":[2,106],"4":[2,106],"29":[2,106],"30":[2,106],"50":[2,106],"58":[2,106],"61":[2,106],"63":138,"72":[1,140],"73":[1,141],"74":[1,142],"75":[1,143],"76":144,"77":145,"78":[1,146],"79":[2,106],"80":[1,147],"81":[1,148],"84":[2,106],"91":137,"92":[1,139],"94":[2,106],"99":[2,106],"107":[2,106],"109":[2,106],"110":[2,106],"111":[2,106],"114":[2,106],"118":[2,106],"119":[2,106],"120":[2,106],"127":[2,106],"128":[2,106],"129":[2,106],"131":[2,106],"132":[2,106],"134":[2,106],"135":[2,106],"138":[2,106],"139":[2,106],"140":[2,106],"141":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"148":[2,106],"149":[2,106],"150":[2,106],"151":[2,106],"152":[2,106],"153":[2,106],"154":[2,106],"155":[2,106],"156":[2,106],"157":[2,106],"158":[2,106],"159":[2,106],"160":[2,106],"161":[2,106],"162":[2,106],"163":[2,106],"164":[2,106]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"50":[2,73],"58":[2,73],"61":[2,73],"72":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"78":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"84":[2,73],"92":[2,73],"94":[2,73],"99":[2,73],"107":[2,73],"109":[2,73],"110":[2,73],"111":[2,73],"114":[2,73],"118":[2,73],"119":[2,73],"120":[2,73],"127":[2,73],"128":[2,73],"129":[2,73],"131":[2,73],"132":[2,73],"134":[2,73],"135":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73],"164":[2,73]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"50":[2,70],"58":[2,70],"61":[2,70],"72":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"78":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"84":[2,70],"92":[2,70],"94":[2,70],"99":[2,70],"107":[2,70],"109":[2,70],"110":[2,70],"111":[2,70],"114":[2,70],"118":[2,70],"119":[2,70],"120":[2,70],"127":[2,70],"128":[2,70],"129":[2,70],"131":[2,70],"132":[2,70],"134":[2,70],"135":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70],"164":[2,70]},{"53":[1,256],"58":[1,257]},{"53":[2,61],"58":[2,61],"61":[1,258]},{"53":[2,63],"58":[2,63],"61":[2,63]},{"1":[2,55],"4":[2,55],"29":[2,55],"30":[2,55],"50":[2,55],"58":[2,55],"61":[2,55],"79":[2,55],"84":[2,55],"94":[2,55],"99":[2,55],"107":[2,55],"109":[2,55],"110":[2,55],"111":[2,55],"114":[2,55],"118":[2,55],"119":[2,55],"120":[2,55],"127":[2,55],"128":[2,55],"129":[2,55],"131":[2,55],"132":[2,55],"134":[2,55],"135":[2,55],"138":[2,55],"139":[2,55],"140":[2,55],"141":[2,55],"142":[2,55],"143":[2,55],"144":[2,55],"145":[2,55],"146":[2,55],"147":[2,55],"148":[2,55],"149":[2,55],"150":[2,55],"151":[2,55],"152":[2,55],"153":[2,55],"154":[2,55],"155":[2,55],"156":[2,55],"157":[2,55],"158":[2,55],"159":[2,55],"160":[2,55],"161":[2,55],"162":[2,55],"163":[2,55],"164":[2,55]},{"28":88,"49":[1,56]},{"1":[2,175],"4":[2,175],"29":[2,175],"30":[2,175],"50":[1,132],"58":[2,175],"61":[2,175],"79":[2,175],"84":[2,175],"94":[2,175],"99":[2,175],"107":[2,175],"108":129,"109":[2,175],"110":[2,175],"111":[2,175],"114":[2,175],"118":[2,175],"119":[2,175],"120":[2,175],"127":[2,175],"128":[2,175],"131":[2,175],"132":[2,175],"138":[2,175],"139":[2,175],"140":[2,175],"141":[2,175],"142":[2,175],"143":[2,175],"144":[2,175],"145":[2,175],"146":[2,175],"147":[2,175],"148":[2,175],"149":[2,175],"150":[2,175],"151":[2,175],"152":[2,175],"153":[2,175],"154":[2,175],"155":[2,175],"156":[2,175],"157":[2,175],"158":[2,175],"159":[2,175],"160":[2,175],"161":[2,175],"162":[2,175],"163":[2,175],"164":[2,175]},{"108":135,"109":[1,79],"111":[1,80],"114":[1,136],"127":[1,133],"128":[1,134]},{"1":[2,176],"4":[2,176],"29":[2,176],"30":[2,176],"50":[1,132],"58":[2,176],"61":[2,176],"79":[2,176],"84":[2,176],"94":[2,176],"99":[2,176],"107":[2,176],"108":129,"109":[2,176],"110":[2,176],"111":[2,176],"114":[2,176],"118":[2,176],"119":[2,176],"120":[2,176],"127":[2,176],"128":[2,176],"131":[2,176],"132":[2,176],"138":[2,176],"139":[2,176],"140":[2,176],"141":[2,176],"142":[2,176],"143":[2,176],"144":[2,176],"145":[2,176],"146":[2,176],"147":[2,176],"148":[2,176],"149":[2,176],"150":[2,176],"151":[2,176],"152":[2,176],"153":[2,176],"154":[2,176],"155":[2,176],"156":[2,176],"157":[2,176],"158":[2,176],"159":[2,176],"160":[2,176],"161":[2,176],"162":[2,176],"163":[2,176],"164":[2,176]},{"1":[2,177],"4":[2,177],"29":[2,177],"30":[2,177],"50":[1,132],"58":[2,177],"61":[2,177],"79":[2,177],"84":[2,177],"94":[2,177],"99":[2,177],"107":[2,177],"108":129,"109":[2,177],"110":[2,177],"111":[2,177],"114":[2,177],"118":[2,177],"119":[2,177],"120":[2,177],"127":[2,177],"128":[2,177],"131":[2,177],"132":[2,177],"138":[2,177],"139":[2,177],"140":[2,177],"141":[2,177],"142":[2,177],"143":[2,177],"144":[2,177],"145":[2,177],"146":[2,177],"147":[2,177],"148":[2,177],"149":[2,177],"150":[2,177],"151":[2,177],"152":[2,177],"153":[2,177],"154":[2,177],"155":[2,177],"156":[2,177],"157":[2,177],"158":[2,177],"159":[2,177],"160":[2,177],"161":[2,177],"162":[2,177],"163":[2,177],"164":[2,177]},{"1":[2,178],"4":[2,178],"29":[2,178],"30":[2,178],"50":[1,132],"58":[2,178],"61":[2,178],"79":[2,178],"84":[2,178],"94":[2,178],"99":[2,178],"107":[2,178],"108":129,"109":[2,178],"110":[2,178],"111":[2,178],"114":[2,178],"118":[2,178],"119":[2,178],"120":[2,178],"127":[2,178],"128":[2,178],"131":[2,178],"132":[2,178],"138":[2,178],"139":[2,178],"140":[2,178],"141":[2,178],"142":[2,178],"143":[2,178],"144":[2,178],"145":[2,178],"146":[2,178],"147":[2,178],"148":[2,178],"149":[2,178],"150":[2,178],"151":[2,178],"152":[2,178],"153":[2,178],"154":[2,178],"155":[2,178],"156":[2,178],"157":[2,178],"158":[2,178],"159":[2,178],"160":[2,178],"161":[2,178],"162":[2,178],"163":[2,178],"164":[2,178]},{"1":[2,179],"4":[2,179],"29":[2,179],"30":[2,179],"50":[1,132],"58":[2,179],"61":[2,179],"79":[2,179],"84":[2,179],"94":[2,179],"99":[2,179],"107":[2,179],"108":129,"109":[2,179],"110":[2,179],"111":[2,179],"114":[2,179],"118":[2,179],"119":[2,179],"120":[2,179],"127":[2,179],"128":[2,179],"131":[2,179],"132":[2,179],"138":[2,179],"139":[2,179],"140":[2,179],"141":[2,179],"142":[2,179],"143":[2,179],"144":[2,179],"145":[2,179],"146":[2,179],"147":[2,179],"148":[2,179],"149":[2,179],"150":[2,179],"151":[2,179],"152":[2,179],"153":[2,179],"154":[2,179],"155":[2,179],"156":[2,179],"157":[2,179],"158":[2,179],"159":[2,179],"160":[2,179],"161":[2,179],"162":[2,179],"163":[2,179],"164":[2,179]},{"1":[2,180],"4":[2,180],"29":[2,180],"30":[2,180],"50":[1,132],"58":[2,180],"61":[2,180],"79":[2,180],"84":[2,180],"94":[2,180],"99":[2,180],"107":[2,180],"108":129,"109":[2,180],"110":[2,180],"111":[2,180],"114":[2,180],"118":[2,180],"119":[2,180],"120":[2,180],"127":[2,180],"128":[2,180],"131":[2,180],"132":[2,180],"138":[2,180],"139":[2,180],"140":[2,180],"141":[2,180],"142":[2,180],"143":[2,180],"144":[2,180],"145":[2,180],"146":[2,180],"147":[2,180],"148":[2,180],"149":[2,180],"150":[2,180],"151":[2,180],"152":[2,180],"153":[2,180],"154":[2,180],"155":[2,180],"156":[2,180],"157":[2,180],"158":[2,180],"159":[2,180],"160":[2,180],"161":[2,180],"162":[2,180],"163":[2,180],"164":[2,180]},{"1":[2,181],"4":[2,181],"29":[2,181],"30":[2,181],"50":[1,132],"58":[2,181],"61":[2,181],"79":[2,181],"84":[2,181],"94":[2,181],"99":[2,181],"107":[2,181],"108":129,"109":[2,181],"110":[2,181],"111":[2,181],"114":[2,181],"118":[2,181],"119":[2,181],"120":[2,181],"127":[2,181],"128":[2,181],"131":[2,181],"132":[2,181],"138":[2,181],"139":[2,181],"140":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"148":[2,181],"149":[2,181],"150":[2,181],"151":[2,181],"152":[2,181],"153":[2,181],"154":[2,181],"155":[2,181],"156":[2,181],"157":[2,181],"158":[2,181],"159":[2,181],"160":[2,181],"161":[2,181],"162":[2,181],"163":[2,181],"164":[2,181]},{"1":[2,182],"4":[2,182],"29":[2,182],"30":[2,182],"50":[1,132],"58":[2,182],"61":[2,182],"79":[2,182],"84":[2,182],"94":[2,182],"99":[2,182],"107":[2,182],"108":129,"109":[2,182],"110":[2,182],"111":[2,182],"114":[2,182],"118":[2,182],"119":[2,182],"120":[2,182],"127":[2,182],"128":[2,182],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,182],"152":[2,182],"153":[2,182],"154":[2,182],"155":[2,182],"156":[2,182],"157":[2,182],"158":[2,182],"159":[2,182],"160":[2,182],"161":[2,182],"162":[2,182],"163":[2,182],"164":[1,123]},{"1":[2,183],"4":[2,183],"29":[2,183],"30":[2,183],"50":[1,132],"58":[2,183],"61":[2,183],"79":[2,183],"84":[2,183],"94":[2,183],"99":[2,183],"107":[2,183],"108":129,"109":[2,183],"110":[2,183],"111":[2,183],"114":[2,183],"118":[2,183],"119":[2,183],"120":[2,183],"127":[2,183],"128":[2,183],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,183],"152":[2,183],"153":[2,183],"154":[2,183],"155":[2,183],"156":[2,183],"157":[2,183],"158":[2,183],"159":[2,183],"160":[2,183],"161":[2,183],"162":[2,183],"163":[2,183],"164":[1,123]},{"4":[1,160],"6":260,"29":[1,6],"127":[1,259]},{"102":261,"103":[1,262],"104":[1,263]},{"1":[2,137],"4":[2,137],"29":[2,137],"30":[2,137],"50":[2,137],"58":[2,137],"61":[2,137],"79":[2,137],"84":[2,137],"94":[2,137],"99":[2,137],"107":[2,137],"109":[2,137],"110":[2,137],"111":[2,137],"114":[2,137],"118":[2,137],"119":[2,137],"120":[2,137],"127":[2,137],"128":[2,137],"129":[2,137],"131":[2,137],"132":[2,137],"134":[2,137],"135":[2,137],"138":[2,137],"139":[2,137],"140":[2,137],"141":[2,137],"142":[2,137],"143":[2,137],"144":[2,137],"145":[2,137],"146":[2,137],"147":[2,137],"148":[2,137],"149":[2,137],"150":[2,137],"151":[2,137],"152":[2,137],"153":[2,137],"154":[2,137],"155":[2,137],"156":[2,137],"157":[2,137],"158":[2,137],"159":[2,137],"160":[2,137],"161":[2,137],"162":[2,137],"163":[2,137],"164":[2,137]},{"116":264,"118":[1,265],"119":[1,266]},{"58":[1,267],"118":[2,149],"119":[2,149]},{"58":[2,146],"118":[2,146],"119":[2,146]},{"58":[2,147],"118":[2,147],"119":[2,147]},{"58":[2,148],"118":[2,148],"119":[2,148]},{"4":[2,120],"8":247,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":190,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,120],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"29":[1,268],"50":[1,132],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"122":269,"124":270,"125":[1,271]},{"14":272,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":154,"62":155,"64":185,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,94],"4":[2,94],"29":[1,274],"30":[2,94],"50":[2,94],"58":[2,94],"61":[2,94],"72":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"78":[2,70],"79":[2,94],"80":[2,70],"81":[2,70],"84":[2,94],"86":[1,273],"92":[2,70],"94":[2,94],"99":[2,94],"107":[2,94],"109":[2,94],"110":[2,94],"111":[2,94],"114":[2,94],"118":[2,94],"119":[2,94],"120":[2,94],"127":[2,94],"128":[2,94],"129":[2,94],"131":[2,94],"132":[2,94],"134":[2,94],"135":[2,94],"138":[2,94],"139":[2,94],"140":[2,94],"141":[2,94],"142":[2,94],"143":[2,94],"144":[2,94],"145":[2,94],"146":[2,94],"147":[2,94],"148":[2,94],"149":[2,94],"150":[2,94],"151":[2,94],"152":[2,94],"153":[2,94],"154":[2,94],"155":[2,94],"156":[2,94],"157":[2,94],"158":[2,94],"159":[2,94],"160":[2,94],"161":[2,94],"162":[2,94],"163":[2,94],"164":[2,94]},{"63":138,"72":[1,140],"73":[1,141],"74":[1,142],"75":[1,143],"76":144,"77":145,"78":[1,146],"80":[1,147],"81":[1,148],"91":137,"92":[1,139]},{"63":151,"72":[1,140],"73":[1,141],"74":[1,142],"75":[1,143],"76":144,"77":145,"78":[1,146],"80":[1,147],"81":[1,148],"91":150,"92":[1,139]},{"1":[2,50],"4":[2,50],"30":[2,50],"50":[1,132],"61":[1,131],"107":[2,50],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[2,50],"128":[2,50],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,131],"4":[2,131],"30":[2,131],"50":[1,132],"61":[1,131],"107":[2,131],"108":129,"109":[2,131],"111":[2,131],"114":[2,131],"118":[1,124],"119":[1,125],"127":[2,131],"128":[2,131],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"107":[1,275]},{"4":[2,121],"29":[2,121],"50":[1,132],"58":[2,121],"61":[1,276],"99":[2,121],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[2,58],"29":[2,58],"57":277,"58":[1,278],"99":[2,58]},{"1":[2,114],"4":[2,114],"29":[2,114],"30":[2,114],"46":[2,114],"50":[2,114],"58":[2,114],"61":[2,114],"72":[2,114],"73":[2,114],"74":[2,114],"75":[2,114],"78":[2,114],"79":[2,114],"80":[2,114],"81":[2,114],"84":[2,114],"86":[2,114],"92":[2,114],"94":[2,114],"99":[2,114],"107":[2,114],"109":[2,114],"110":[2,114],"111":[2,114],"114":[2,114],"118":[2,114],"119":[2,114],"120":[2,114],"127":[2,114],"128":[2,114],"129":[2,114],"131":[2,114],"132":[2,114],"134":[2,114],"135":[2,114],"138":[2,114],"139":[2,114],"140":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"147":[2,114],"148":[2,114],"149":[2,114],"150":[2,114],"151":[2,114],"152":[2,114],"153":[2,114],"154":[2,114],"155":[2,114],"156":[2,114],"157":[2,114],"158":[2,114],"159":[2,114],"160":[2,114],"161":[2,114],"162":[2,114],"163":[2,114],"164":[2,114]},{"1":[2,111],"4":[2,111],"29":[2,111],"30":[2,111],"50":[2,111],"58":[2,111],"61":[2,111],"79":[2,111],"84":[2,111],"94":[2,111],"99":[2,111],"107":[2,111],"109":[2,111],"110":[2,111],"111":[2,111],"114":[2,111],"118":[2,111],"119":[2,111],"120":[2,111],"127":[2,111],"128":[2,111],"129":[2,111],"131":[2,111],"132":[2,111],"134":[2,111],"135":[2,111],"138":[2,111],"139":[2,111],"140":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"147":[2,111],"148":[2,111],"149":[2,111],"150":[2,111],"151":[2,111],"152":[2,111],"153":[2,111],"154":[2,111],"155":[2,111],"156":[2,111],"157":[2,111],"158":[2,111],"159":[2,111],"160":[2,111],"161":[2,111],"162":[2,111],"163":[2,111],"164":[2,111]},{"4":[1,160],"6":279,"29":[1,6],"50":[1,132],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[1,160],"6":280,"29":[1,6],"50":[1,132],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,133],"4":[2,133],"29":[2,133],"30":[2,133],"50":[1,132],"58":[2,133],"61":[1,131],"79":[2,133],"84":[2,133],"94":[2,133],"99":[2,133],"107":[2,133],"108":129,"109":[1,79],"110":[1,281],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,133],"127":[2,133],"128":[2,133],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,135],"4":[2,135],"29":[2,135],"30":[2,135],"50":[1,132],"58":[2,135],"61":[1,131],"79":[2,135],"84":[2,135],"94":[2,135],"99":[2,135],"107":[2,135],"108":129,"109":[1,79],"110":[1,282],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,135],"127":[2,135],"128":[2,135],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,141],"4":[2,141],"29":[2,141],"30":[2,141],"50":[2,141],"58":[2,141],"61":[2,141],"79":[2,141],"84":[2,141],"94":[2,141],"99":[2,141],"107":[2,141],"109":[2,141],"110":[2,141],"111":[2,141],"114":[2,141],"118":[2,141],"119":[2,141],"120":[2,141],"127":[2,141],"128":[2,141],"129":[2,141],"131":[2,141],"132":[2,141],"134":[2,141],"135":[2,141],"138":[2,141],"139":[2,141],"140":[2,141],"141":[2,141],"142":[2,141],"143":[2,141],"144":[2,141],"145":[2,141],"146":[2,141],"147":[2,141],"148":[2,141],"149":[2,141],"150":[2,141],"151":[2,141],"152":[2,141],"153":[2,141],"154":[2,141],"155":[2,141],"156":[2,141],"157":[2,141],"158":[2,141],"159":[2,141],"160":[2,141],"161":[2,141],"162":[2,141],"163":[2,141],"164":[2,141]},{"1":[2,142],"4":[2,142],"29":[2,142],"30":[2,142],"50":[1,132],"58":[2,142],"61":[1,131],"79":[2,142],"84":[2,142],"94":[2,142],"99":[2,142],"107":[2,142],"108":129,"109":[1,79],"110":[2,142],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,142],"127":[2,142],"128":[2,142],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[2,58],"29":[2,58],"57":283,"58":[1,284],"84":[2,58]},{"4":[2,90],"29":[2,90],"30":[2,90],"58":[2,90],"84":[2,90]},{"4":[2,45],"29":[2,45],"30":[2,45],"46":[1,285],"58":[2,45],"84":[2,45]},{"4":[2,46],"29":[2,46],"30":[2,46],"46":[1,286],"58":[2,46],"84":[2,46]},{"4":[2,49],"29":[2,49],"30":[2,49],"58":[2,49],"84":[2,49]},{"1":[2,6],"4":[2,6],"30":[2,6]},{"1":[2,29],"4":[2,29],"29":[2,29],"30":[2,29],"50":[2,29],"58":[2,29],"61":[2,29],"79":[2,29],"84":[2,29],"94":[2,29],"99":[2,29],"103":[2,29],"104":[2,29],"107":[2,29],"109":[2,29],"110":[2,29],"111":[2,29],"114":[2,29],"118":[2,29],"119":[2,29],"120":[2,29],"123":[2,29],"125":[2,29],"127":[2,29],"128":[2,29],"129":[2,29],"131":[2,29],"132":[2,29],"134":[2,29],"135":[2,29],"138":[2,29],"139":[2,29],"140":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"148":[2,29],"149":[2,29],"150":[2,29],"151":[2,29],"152":[2,29],"153":[2,29],"154":[2,29],"155":[2,29],"156":[2,29],"157":[2,29],"158":[2,29],"159":[2,29],"160":[2,29],"161":[2,29],"162":[2,29],"163":[2,29],"164":[2,29]},{"1":[2,186],"4":[2,186],"29":[2,186],"30":[2,186],"50":[1,132],"58":[2,186],"61":[2,186],"79":[2,186],"84":[2,186],"94":[2,186],"99":[2,186],"107":[2,186],"108":129,"109":[2,186],"110":[2,186],"111":[2,186],"114":[2,186],"118":[2,186],"119":[2,186],"120":[2,186],"127":[2,186],"128":[2,186],"129":[1,126],"131":[2,186],"132":[2,186],"134":[1,93],"135":[1,94],"138":[2,186],"139":[2,186],"140":[2,186],"141":[2,186],"142":[2,186],"143":[2,186],"144":[2,186],"145":[2,186],"146":[2,186],"147":[2,186],"148":[2,186],"149":[2,186],"150":[2,186],"151":[2,186],"152":[2,186],"153":[2,186],"154":[2,186],"155":[2,186],"156":[2,186],"157":[2,186],"158":[2,186],"159":[2,186],"160":[2,186],"161":[2,186],"162":[2,186],"163":[2,186],"164":[2,186]},{"1":[2,187],"4":[2,187],"29":[2,187],"30":[2,187],"50":[1,132],"58":[2,187],"61":[2,187],"79":[2,187],"84":[2,187],"94":[2,187],"99":[2,187],"107":[2,187],"108":129,"109":[2,187],"110":[2,187],"111":[2,187],"114":[2,187],"118":[2,187],"119":[2,187],"120":[2,187],"127":[2,187],"128":[2,187],"129":[1,126],"131":[2,187],"132":[2,187],"134":[1,93],"135":[1,94],"138":[2,187],"139":[2,187],"140":[2,187],"141":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"146":[2,187],"147":[2,187],"148":[2,187],"149":[2,187],"150":[2,187],"151":[2,187],"152":[2,187],"153":[2,187],"154":[2,187],"155":[2,187],"156":[2,187],"157":[2,187],"158":[2,187],"159":[2,187],"160":[2,187],"161":[2,187],"162":[2,187],"163":[2,187],"164":[2,187]},{"1":[2,188],"4":[2,188],"29":[2,188],"30":[2,188],"50":[1,132],"58":[2,188],"61":[2,188],"79":[2,188],"84":[2,188],"94":[2,188],"99":[2,188],"107":[2,188],"108":129,"109":[2,188],"110":[2,188],"111":[2,188],"114":[2,188],"118":[2,188],"119":[2,188],"120":[2,188],"127":[2,188],"128":[2,188],"129":[1,126],"131":[2,188],"132":[2,188],"134":[1,93],"135":[1,94],"138":[2,188],"139":[2,188],"140":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"147":[2,188],"148":[2,188],"149":[2,188],"150":[2,188],"151":[2,188],"152":[2,188],"153":[2,188],"154":[2,188],"155":[2,188],"156":[2,188],"157":[2,188],"158":[2,188],"159":[2,188],"160":[2,188],"161":[2,188],"162":[2,188],"163":[2,188],"164":[2,188]},{"1":[2,189],"4":[2,189],"29":[2,189],"30":[2,189],"50":[1,132],"58":[2,189],"61":[2,189],"79":[2,189],"84":[2,189],"94":[2,189],"99":[2,189],"107":[2,189],"108":129,"109":[2,189],"110":[2,189],"111":[2,189],"114":[2,189],"118":[2,189],"119":[2,189],"120":[2,189],"127":[2,189],"128":[2,189],"129":[1,126],"131":[2,189],"132":[2,189],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"148":[2,189],"149":[2,189],"150":[2,189],"151":[2,189],"152":[2,189],"153":[2,189],"154":[2,189],"155":[2,189],"156":[2,189],"157":[2,189],"158":[2,189],"159":[2,189],"160":[2,189],"161":[2,189],"162":[2,189],"163":[2,189],"164":[2,189]},{"1":[2,190],"4":[2,190],"29":[2,190],"30":[2,190],"50":[1,132],"58":[2,190],"61":[2,190],"79":[2,190],"84":[2,190],"94":[2,190],"99":[2,190],"107":[2,190],"108":129,"109":[2,190],"110":[2,190],"111":[2,190],"114":[2,190],"118":[2,190],"119":[2,190],"120":[2,190],"127":[2,190],"128":[2,190],"129":[1,126],"131":[2,190],"132":[2,190],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,190],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"148":[2,190],"149":[2,190],"150":[2,190],"151":[2,190],"152":[2,190],"153":[2,190],"154":[2,190],"155":[2,190],"156":[2,190],"157":[2,190],"158":[2,190],"159":[2,190],"160":[2,190],"161":[2,190],"162":[2,190],"163":[2,190],"164":[2,190]},{"1":[2,191],"4":[2,191],"29":[2,191],"30":[2,191],"50":[1,132],"58":[2,191],"61":[2,191],"79":[2,191],"84":[2,191],"94":[2,191],"99":[2,191],"107":[2,191],"108":129,"109":[2,191],"110":[2,191],"111":[2,191],"114":[2,191],"118":[2,191],"119":[2,191],"120":[2,191],"127":[2,191],"128":[2,191],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,191],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"148":[2,191],"149":[2,191],"150":[2,191],"151":[2,191],"152":[2,191],"153":[2,191],"154":[2,191],"155":[2,191],"156":[2,191],"157":[2,191],"158":[2,191],"159":[2,191],"160":[2,191],"161":[2,191],"162":[2,191],"163":[2,191],"164":[2,191]},{"1":[2,192],"4":[2,192],"29":[2,192],"30":[2,192],"50":[1,132],"58":[2,192],"61":[2,192],"79":[2,192],"84":[2,192],"94":[2,192],"99":[2,192],"107":[2,192],"108":129,"109":[2,192],"110":[2,192],"111":[2,192],"114":[2,192],"118":[2,192],"119":[2,192],"120":[2,192],"127":[2,192],"128":[2,192],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,192],"142":[2,192],"143":[2,192],"144":[2,192],"145":[2,192],"146":[2,192],"147":[2,192],"148":[2,192],"149":[2,192],"150":[2,192],"151":[2,192],"152":[2,192],"153":[2,192],"154":[2,192],"155":[2,192],"156":[2,192],"157":[2,192],"158":[2,192],"159":[2,192],"160":[2,192],"161":[2,192],"162":[2,192],"163":[2,192],"164":[2,192]},{"1":[2,193],"4":[2,193],"29":[2,193],"30":[2,193],"50":[1,132],"58":[2,193],"61":[2,193],"79":[2,193],"84":[2,193],"94":[2,193],"99":[2,193],"107":[2,193],"108":129,"109":[2,193],"110":[2,193],"111":[2,193],"114":[2,193],"118":[2,193],"119":[2,193],"120":[2,193],"127":[2,193],"128":[2,193],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,193],"142":[2,193],"143":[2,193],"144":[2,193],"145":[2,193],"146":[2,193],"147":[2,193],"148":[2,193],"149":[2,193],"150":[2,193],"151":[2,193],"152":[2,193],"153":[2,193],"154":[2,193],"155":[2,193],"156":[2,193],"157":[2,193],"158":[2,193],"159":[2,193],"160":[2,193],"161":[2,193],"162":[2,193],"163":[2,193],"164":[2,193]},{"1":[2,194],"4":[2,194],"29":[2,194],"30":[2,194],"50":[1,132],"58":[2,194],"61":[2,194],"79":[2,194],"84":[2,194],"94":[2,194],"99":[2,194],"107":[2,194],"108":129,"109":[2,194],"110":[2,194],"111":[2,194],"114":[2,194],"118":[2,194],"119":[2,194],"120":[2,194],"127":[2,194],"128":[2,194],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[2,194],"145":[2,194],"146":[2,194],"147":[2,194],"148":[2,194],"149":[2,194],"150":[2,194],"151":[2,194],"152":[2,194],"153":[2,194],"154":[2,194],"155":[2,194],"156":[2,194],"157":[2,194],"158":[2,194],"159":[2,194],"160":[2,194],"161":[2,194],"162":[2,194],"163":[2,194],"164":[2,194]},{"1":[2,195],"4":[2,195],"29":[2,195],"30":[2,195],"50":[1,132],"58":[2,195],"61":[2,195],"79":[2,195],"84":[2,195],"94":[2,195],"99":[2,195],"107":[2,195],"108":129,"109":[2,195],"110":[2,195],"111":[2,195],"114":[2,195],"118":[2,195],"119":[2,195],"120":[2,195],"127":[2,195],"128":[2,195],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[2,195],"145":[2,195],"146":[2,195],"147":[2,195],"148":[2,195],"149":[2,195],"150":[2,195],"151":[2,195],"152":[2,195],"153":[2,195],"154":[2,195],"155":[2,195],"156":[2,195],"157":[2,195],"158":[2,195],"159":[2,195],"160":[2,195],"161":[2,195],"162":[2,195],"163":[2,195],"164":[2,195]},{"1":[2,196],"4":[2,196],"29":[2,196],"30":[2,196],"50":[1,132],"58":[2,196],"61":[2,196],"79":[2,196],"84":[2,196],"94":[2,196],"99":[2,196],"107":[2,196],"108":129,"109":[2,196],"110":[2,196],"111":[2,196],"114":[2,196],"118":[2,196],"119":[2,196],"120":[2,196],"127":[2,196],"128":[2,196],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[2,196],"145":[2,196],"146":[2,196],"147":[2,196],"148":[2,196],"149":[2,196],"150":[2,196],"151":[2,196],"152":[2,196],"153":[2,196],"154":[2,196],"155":[2,196],"156":[2,196],"157":[2,196],"158":[2,196],"159":[2,196],"160":[2,196],"161":[2,196],"162":[2,196],"163":[2,196],"164":[2,196]},{"1":[2,197],"4":[2,197],"29":[2,197],"30":[2,197],"50":[1,132],"58":[2,197],"61":[2,197],"79":[2,197],"84":[2,197],"94":[2,197],"99":[2,197],"107":[2,197],"108":129,"109":[2,197],"110":[2,197],"111":[2,197],"114":[2,197],"118":[2,197],"119":[2,197],"120":[2,197],"127":[2,197],"128":[2,197],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,197],"148":[2,197],"149":[2,197],"150":[2,197],"151":[2,197],"152":[2,197],"153":[2,197],"154":[2,197],"155":[2,197],"156":[2,197],"157":[2,197],"158":[2,197],"159":[2,197],"160":[2,197],"161":[2,197],"162":[2,197],"163":[2,197],"164":[2,197]},{"1":[2,198],"4":[2,198],"29":[2,198],"30":[2,198],"50":[1,132],"58":[2,198],"61":[2,198],"79":[2,198],"84":[2,198],"94":[2,198],"99":[2,198],"107":[2,198],"108":129,"109":[2,198],"110":[2,198],"111":[2,198],"114":[2,198],"118":[2,198],"119":[2,198],"120":[2,198],"127":[2,198],"128":[2,198],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,198],"148":[2,198],"149":[2,198],"150":[2,198],"151":[2,198],"152":[2,198],"153":[2,198],"154":[2,198],"155":[2,198],"156":[2,198],"157":[2,198],"158":[2,198],"159":[2,198],"160":[2,198],"161":[2,198],"162":[2,198],"163":[2,198],"164":[2,198]},{"1":[2,199],"4":[2,199],"29":[2,199],"30":[2,199],"50":[1,132],"58":[2,199],"61":[2,199],"79":[2,199],"84":[2,199],"94":[2,199],"99":[2,199],"107":[2,199],"108":129,"109":[2,199],"110":[2,199],"111":[2,199],"114":[2,199],"118":[2,199],"119":[2,199],"120":[2,199],"127":[2,199],"128":[2,199],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,199],"148":[2,199],"149":[2,199],"150":[2,199],"151":[2,199],"152":[2,199],"153":[2,199],"154":[2,199],"155":[2,199],"156":[2,199],"157":[2,199],"158":[2,199],"159":[2,199],"160":[2,199],"161":[2,199],"162":[2,199],"163":[2,199],"164":[2,199]},{"1":[2,200],"4":[2,200],"29":[2,200],"30":[2,200],"50":[1,132],"58":[2,200],"61":[2,200],"79":[2,200],"84":[2,200],"94":[2,200],"99":[2,200],"107":[2,200],"108":129,"109":[2,200],"110":[2,200],"111":[2,200],"114":[2,200],"118":[2,200],"119":[2,200],"120":[2,200],"127":[2,200],"128":[2,200],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,200],"148":[2,200],"149":[2,200],"150":[2,200],"151":[2,200],"152":[2,200],"153":[2,200],"154":[2,200],"155":[2,200],"156":[2,200],"157":[2,200],"158":[2,200],"159":[2,200],"160":[2,200],"161":[2,200],"162":[2,200],"163":[2,200],"164":[2,200]},{"1":[2,201],"4":[2,201],"29":[2,201],"30":[2,201],"50":[1,132],"58":[2,201],"61":[2,201],"79":[2,201],"84":[2,201],"94":[2,201],"99":[2,201],"107":[2,201],"108":129,"109":[2,201],"110":[2,201],"111":[2,201],"114":[2,201],"118":[2,201],"119":[2,201],"120":[2,201],"127":[2,201],"128":[2,201],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,201],"152":[2,201],"153":[2,201],"154":[2,201],"155":[2,201],"156":[2,201],"157":[2,201],"158":[2,201],"159":[2,201],"160":[2,201],"161":[2,201],"162":[2,201],"163":[2,201],"164":[1,123]},{"1":[2,202],"4":[2,202],"29":[2,202],"30":[2,202],"50":[1,132],"58":[2,202],"61":[2,202],"79":[2,202],"84":[2,202],"94":[2,202],"99":[2,202],"107":[2,202],"108":129,"109":[2,202],"110":[2,202],"111":[2,202],"114":[2,202],"118":[2,202],"119":[2,202],"120":[2,202],"127":[2,202],"128":[2,202],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,202],"152":[2,202],"153":[2,202],"154":[2,202],"155":[2,202],"156":[2,202],"157":[2,202],"158":[2,202],"159":[2,202],"160":[2,202],"161":[2,202],"162":[2,202],"163":[2,202],"164":[1,123]},{"1":[2,203],"4":[2,203],"29":[2,203],"30":[2,203],"50":[1,132],"58":[2,203],"61":[2,203],"79":[2,203],"84":[2,203],"94":[2,203],"99":[2,203],"107":[2,203],"108":129,"109":[2,203],"110":[2,203],"111":[2,203],"114":[2,203],"118":[2,203],"119":[2,203],"120":[2,203],"127":[2,203],"128":[2,203],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[2,203],"154":[2,203],"155":[2,203],"156":[2,203],"157":[2,203],"158":[2,203],"159":[2,203],"160":[2,203],"161":[2,203],"162":[2,203],"163":[2,203],"164":[1,123]},{"1":[2,204],"4":[2,204],"29":[2,204],"30":[2,204],"50":[1,132],"58":[2,204],"61":[2,204],"79":[2,204],"84":[2,204],"94":[2,204],"99":[2,204],"107":[2,204],"108":129,"109":[2,204],"110":[2,204],"111":[2,204],"114":[2,204],"118":[2,204],"119":[2,204],"120":[2,204],"127":[2,204],"128":[2,204],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[2,204],"154":[2,204],"155":[2,204],"156":[2,204],"157":[2,204],"158":[2,204],"159":[2,204],"160":[2,204],"161":[2,204],"162":[2,204],"163":[2,204],"164":[1,123]},{"1":[2,205],"4":[2,205],"29":[2,205],"30":[2,205],"50":[1,132],"58":[2,205],"61":[2,205],"79":[2,205],"84":[2,205],"94":[2,205],"99":[2,205],"107":[2,205],"108":129,"109":[2,205],"110":[2,205],"111":[2,205],"114":[2,205],"118":[2,205],"119":[2,205],"120":[2,205],"127":[2,205],"128":[2,205],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[2,205],"154":[2,205],"155":[2,205],"156":[2,205],"157":[2,205],"158":[2,205],"159":[2,205],"160":[2,205],"161":[2,205],"162":[2,205],"163":[2,205],"164":[1,123]},{"1":[2,206],"4":[2,206],"29":[2,206],"30":[2,206],"50":[1,132],"58":[2,206],"61":[2,206],"79":[2,206],"84":[2,206],"94":[2,206],"99":[2,206],"107":[2,206],"108":129,"109":[2,206],"110":[2,206],"111":[2,206],"114":[2,206],"118":[2,206],"119":[2,206],"120":[2,206],"127":[2,206],"128":[2,206],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,207],"4":[2,207],"29":[2,207],"30":[2,207],"50":[1,132],"58":[2,207],"61":[2,207],"79":[2,207],"84":[2,207],"94":[2,207],"99":[2,207],"107":[2,207],"108":129,"109":[2,207],"110":[2,207],"111":[2,207],"114":[2,207],"118":[2,207],"119":[2,207],"120":[2,207],"127":[2,207],"128":[2,207],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,208],"4":[2,208],"29":[2,208],"30":[2,208],"50":[1,132],"58":[2,208],"61":[2,208],"79":[2,208],"84":[2,208],"94":[2,208],"99":[2,208],"107":[2,208],"108":129,"109":[2,208],"110":[2,208],"111":[2,208],"114":[2,208],"118":[2,208],"119":[2,208],"120":[2,208],"127":[2,208],"128":[2,208],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,209],"4":[2,209],"29":[2,209],"30":[2,209],"50":[1,132],"58":[2,209],"61":[2,209],"79":[2,209],"84":[2,209],"94":[2,209],"99":[2,209],"107":[2,209],"108":129,"109":[2,209],"110":[2,209],"111":[2,209],"114":[2,209],"118":[2,209],"119":[2,209],"120":[2,209],"127":[2,209],"128":[2,209],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,210],"4":[2,210],"29":[2,210],"30":[2,210],"50":[1,132],"58":[2,210],"61":[2,210],"79":[2,210],"84":[2,210],"94":[2,210],"99":[2,210],"107":[2,210],"108":129,"109":[2,210],"110":[2,210],"111":[2,210],"114":[2,210],"118":[2,210],"119":[2,210],"120":[2,210],"127":[2,210],"128":[2,210],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,211],"4":[2,211],"29":[2,211],"30":[2,211],"50":[1,132],"58":[2,211],"61":[2,211],"79":[2,211],"84":[2,211],"94":[2,211],"99":[2,211],"107":[2,211],"108":129,"109":[2,211],"110":[2,211],"111":[2,211],"114":[2,211],"118":[2,211],"119":[2,211],"120":[2,211],"127":[2,211],"128":[2,211],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,212],"4":[2,212],"29":[2,212],"30":[2,212],"50":[1,132],"58":[2,212],"61":[2,212],"79":[2,212],"84":[2,212],"94":[2,212],"99":[2,212],"107":[2,212],"108":129,"109":[2,212],"110":[2,212],"111":[2,212],"114":[2,212],"118":[2,212],"119":[2,212],"120":[2,212],"127":[2,212],"128":[2,212],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,213],"4":[2,213],"29":[2,213],"30":[2,213],"50":[1,132],"58":[2,213],"61":[2,213],"79":[2,213],"84":[2,213],"94":[2,213],"99":[2,213],"107":[2,213],"108":129,"109":[2,213],"110":[2,213],"111":[2,213],"114":[2,213],"118":[2,213],"119":[2,213],"120":[2,213],"127":[2,213],"128":[2,213],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,214],"4":[2,214],"29":[2,214],"30":[2,214],"50":[1,132],"58":[2,214],"61":[2,214],"79":[2,214],"84":[2,214],"94":[2,214],"99":[2,214],"107":[2,214],"108":129,"109":[2,214],"110":[2,214],"111":[2,214],"114":[2,214],"118":[2,214],"119":[2,214],"120":[2,214],"127":[2,214],"128":[2,214],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,214],"152":[2,214],"153":[2,214],"154":[2,214],"155":[2,214],"156":[2,214],"157":[2,214],"158":[2,214],"159":[2,214],"160":[2,214],"161":[2,214],"162":[2,214],"163":[2,214],"164":[1,123]},{"1":[2,215],"4":[2,215],"29":[2,215],"30":[2,215],"50":[1,132],"58":[2,215],"61":[1,131],"79":[2,215],"84":[2,215],"94":[2,215],"99":[2,215],"107":[2,215],"108":129,"109":[2,215],"110":[2,215],"111":[2,215],"114":[2,215],"118":[1,124],"119":[1,125],"120":[2,215],"127":[2,215],"128":[2,215],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,216],"4":[2,216],"29":[2,216],"30":[2,216],"50":[1,132],"58":[2,216],"61":[1,131],"79":[2,216],"84":[2,216],"94":[2,216],"99":[2,216],"107":[2,216],"108":129,"109":[2,216],"110":[2,216],"111":[2,216],"114":[2,216],"118":[1,124],"119":[1,125],"120":[2,216],"127":[2,216],"128":[2,216],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"8":287,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":288,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,172],"4":[2,172],"29":[2,172],"30":[2,172],"50":[1,132],"58":[2,172],"61":[1,131],"79":[2,172],"84":[2,172],"94":[2,172],"99":[2,172],"107":[2,172],"108":129,"109":[1,79],"110":[2,172],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,172],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,174],"4":[2,174],"29":[2,174],"30":[2,174],"50":[1,132],"58":[2,174],"61":[1,131],"79":[2,174],"84":[2,174],"94":[2,174],"99":[2,174],"107":[2,174],"108":129,"109":[1,79],"110":[2,174],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,174],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"116":289,"118":[1,265],"119":[1,266]},{"61":[1,290]},{"1":[2,171],"4":[2,171],"29":[2,171],"30":[2,171],"50":[1,132],"58":[2,171],"61":[1,131],"79":[2,171],"84":[2,171],"94":[2,171],"99":[2,171],"107":[2,171],"108":129,"109":[1,79],"110":[2,171],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,171],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,173],"4":[2,173],"29":[2,173],"30":[2,173],"50":[1,132],"58":[2,173],"61":[1,131],"79":[2,173],"84":[2,173],"94":[2,173],"99":[2,173],"107":[2,173],"108":129,"109":[1,79],"110":[2,173],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,173],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"116":291,"118":[1,265],"119":[1,266]},{"4":[2,58],"29":[2,58],"57":292,"58":[1,278],"94":[2,58]},{"4":[2,121],"29":[2,121],"30":[2,121],"50":[1,132],"58":[2,121],"61":[1,131],"94":[2,121],"99":[2,121],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,79],"4":[2,79],"29":[2,79],"30":[2,79],"46":[2,79],"50":[2,79],"58":[2,79],"61":[2,79],"72":[2,79],"73":[2,79],"74":[2,79],"75":[2,79],"78":[2,79],"79":[2,79],"80":[2,79],"81":[2,79],"84":[2,79],"86":[2,79],"92":[2,79],"94":[2,79],"99":[2,79],"107":[2,79],"109":[2,79],"110":[2,79],"111":[2,79],"114":[2,79],"118":[2,79],"119":[2,79],"120":[2,79],"127":[2,79],"128":[2,79],"129":[2,79],"131":[2,79],"132":[2,79],"134":[2,79],"135":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79],"151":[2,79],"152":[2,79],"153":[2,79],"154":[2,79],"155":[2,79],"156":[2,79],"157":[2,79],"158":[2,79],"159":[2,79],"160":[2,79],"161":[2,79],"162":[2,79],"163":[2,79],"164":[2,79]},{"1":[2,80],"4":[2,80],"29":[2,80],"30":[2,80],"46":[2,80],"50":[2,80],"58":[2,80],"61":[2,80],"72":[2,80],"73":[2,80],"74":[2,80],"75":[2,80],"78":[2,80],"79":[2,80],"80":[2,80],"81":[2,80],"84":[2,80],"86":[2,80],"92":[2,80],"94":[2,80],"99":[2,80],"107":[2,80],"109":[2,80],"110":[2,80],"111":[2,80],"114":[2,80],"118":[2,80],"119":[2,80],"120":[2,80],"127":[2,80],"128":[2,80],"129":[2,80],"131":[2,80],"132":[2,80],"134":[2,80],"135":[2,80],"138":[2,80],"139":[2,80],"140":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80],"151":[2,80],"152":[2,80],"153":[2,80],"154":[2,80],"155":[2,80],"156":[2,80],"157":[2,80],"158":[2,80],"159":[2,80],"160":[2,80],"161":[2,80],"162":[2,80],"163":[2,80],"164":[2,80]},{"1":[2,82],"4":[2,82],"29":[2,82],"30":[2,82],"46":[2,82],"50":[2,82],"58":[2,82],"61":[2,82],"72":[2,82],"73":[2,82],"74":[2,82],"75":[2,82],"78":[2,82],"79":[2,82],"80":[2,82],"81":[2,82],"84":[2,82],"86":[2,82],"92":[2,82],"94":[2,82],"99":[2,82],"107":[2,82],"109":[2,82],"110":[2,82],"111":[2,82],"114":[2,82],"118":[2,82],"119":[2,82],"120":[2,82],"127":[2,82],"128":[2,82],"129":[2,82],"131":[2,82],"132":[2,82],"134":[2,82],"135":[2,82],"138":[2,82],"139":[2,82],"140":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82],"151":[2,82],"152":[2,82],"153":[2,82],"154":[2,82],"155":[2,82],"156":[2,82],"157":[2,82],"158":[2,82],"159":[2,82],"160":[2,82],"161":[2,82],"162":[2,82],"163":[2,82],"164":[2,82]},{"50":[1,132],"61":[1,294],"79":[1,293],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,86],"4":[2,86],"29":[2,86],"30":[2,86],"46":[2,86],"50":[2,86],"58":[2,86],"61":[2,86],"72":[2,86],"73":[2,86],"74":[2,86],"75":[2,86],"78":[2,86],"79":[2,86],"80":[2,86],"81":[2,86],"84":[2,86],"86":[2,86],"92":[2,86],"94":[2,86],"99":[2,86],"107":[2,86],"109":[2,86],"110":[2,86],"111":[2,86],"114":[2,86],"118":[2,86],"119":[2,86],"120":[2,86],"127":[2,86],"128":[2,86],"129":[2,86],"131":[2,86],"132":[2,86],"134":[2,86],"135":[2,86],"138":[2,86],"139":[2,86],"140":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"148":[2,86],"149":[2,86],"150":[2,86],"151":[2,86],"152":[2,86],"153":[2,86],"154":[2,86],"155":[2,86],"156":[2,86],"157":[2,86],"158":[2,86],"159":[2,86],"160":[2,86],"161":[2,86],"162":[2,86],"163":[2,86],"164":[2,86]},{"8":295,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,87],"4":[2,87],"29":[2,87],"30":[2,87],"46":[2,87],"50":[2,87],"58":[2,87],"61":[2,87],"72":[2,87],"73":[2,87],"74":[2,87],"75":[2,87],"78":[2,87],"79":[2,87],"80":[2,87],"81":[2,87],"84":[2,87],"86":[2,87],"92":[2,87],"94":[2,87],"99":[2,87],"107":[2,87],"109":[2,87],"110":[2,87],"111":[2,87],"114":[2,87],"118":[2,87],"119":[2,87],"120":[2,87],"127":[2,87],"128":[2,87],"129":[2,87],"131":[2,87],"132":[2,87],"134":[2,87],"135":[2,87],"138":[2,87],"139":[2,87],"140":[2,87],"141":[2,87],"142":[2,87],"143":[2,87],"144":[2,87],"145":[2,87],"146":[2,87],"147":[2,87],"148":[2,87],"149":[2,87],"150":[2,87],"151":[2,87],"152":[2,87],"153":[2,87],"154":[2,87],"155":[2,87],"156":[2,87],"157":[2,87],"158":[2,87],"159":[2,87],"160":[2,87],"161":[2,87],"162":[2,87],"163":[2,87],"164":[2,87]},{"1":[2,44],"4":[2,44],"29":[2,44],"30":[2,44],"50":[1,132],"58":[2,44],"61":[1,131],"79":[2,44],"84":[2,44],"94":[2,44],"99":[2,44],"107":[2,44],"108":129,"109":[1,79],"110":[2,44],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,44],"127":[2,44],"128":[2,44],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"54":296,"55":[1,75],"56":[1,76]},{"59":297,"60":[1,158]},{"61":[1,298]},{"8":299,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,169],"4":[2,169],"29":[2,169],"30":[2,169],"50":[2,169],"58":[2,169],"61":[2,169],"79":[2,169],"84":[2,169],"94":[2,169],"99":[2,169],"107":[2,169],"109":[2,169],"110":[2,169],"111":[2,169],"114":[2,169],"118":[2,169],"119":[2,169],"120":[2,169],"123":[2,169],"127":[2,169],"128":[2,169],"129":[2,169],"131":[2,169],"132":[2,169],"134":[2,169],"135":[2,169],"138":[2,169],"139":[2,169],"140":[2,169],"141":[2,169],"142":[2,169],"143":[2,169],"144":[2,169],"145":[2,169],"146":[2,169],"147":[2,169],"148":[2,169],"149":[2,169],"150":[2,169],"151":[2,169],"152":[2,169],"153":[2,169],"154":[2,169],"155":[2,169],"156":[2,169],"157":[2,169],"158":[2,169],"159":[2,169],"160":[2,169],"161":[2,169],"162":[2,169],"163":[2,169],"164":[2,169]},{"1":[2,127],"4":[2,127],"29":[2,127],"30":[2,127],"50":[2,127],"58":[2,127],"61":[2,127],"79":[2,127],"84":[2,127],"94":[2,127],"99":[2,127],"103":[1,300],"107":[2,127],"109":[2,127],"110":[2,127],"111":[2,127],"114":[2,127],"118":[2,127],"119":[2,127],"120":[2,127],"127":[2,127],"128":[2,127],"129":[2,127],"131":[2,127],"132":[2,127],"134":[2,127],"135":[2,127],"138":[2,127],"139":[2,127],"140":[2,127],"141":[2,127],"142":[2,127],"143":[2,127],"144":[2,127],"145":[2,127],"146":[2,127],"147":[2,127],"148":[2,127],"149":[2,127],"150":[2,127],"151":[2,127],"152":[2,127],"153":[2,127],"154":[2,127],"155":[2,127],"156":[2,127],"157":[2,127],"158":[2,127],"159":[2,127],"160":[2,127],"161":[2,127],"162":[2,127],"163":[2,127],"164":[2,127]},{"4":[1,160],"6":301,"29":[1,6]},{"31":302,"32":[1,87]},{"4":[1,160],"6":303,"29":[1,6]},{"8":304,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":305,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"31":176,"32":[1,87],"66":177,"67":178,"82":[1,84],"98":[1,179],"117":306},{"122":307,"124":270,"125":[1,271]},{"30":[1,308],"123":[1,309],"124":310,"125":[1,271]},{"30":[2,162],"123":[2,162],"125":[2,162]},{"8":312,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"100":311,"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,107],"4":[2,107],"29":[2,107],"30":[2,107],"50":[2,107],"58":[2,107],"61":[2,107],"63":138,"72":[1,140],"73":[1,141],"74":[1,142],"75":[1,143],"76":144,"77":145,"78":[1,146],"79":[2,107],"80":[1,147],"81":[1,148],"84":[2,107],"91":137,"92":[1,139],"94":[2,107],"99":[2,107],"107":[2,107],"109":[2,107],"110":[2,107],"111":[2,107],"114":[2,107],"118":[2,107],"119":[2,107],"120":[2,107],"127":[2,107],"128":[2,107],"129":[2,107],"131":[2,107],"132":[2,107],"134":[2,107],"135":[2,107],"138":[2,107],"139":[2,107],"140":[2,107],"141":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"148":[2,107],"149":[2,107],"150":[2,107],"151":[2,107],"152":[2,107],"153":[2,107],"154":[2,107],"155":[2,107],"156":[2,107],"157":[2,107],"158":[2,107],"159":[2,107],"160":[2,107],"161":[2,107],"162":[2,107],"163":[2,107],"164":[2,107]},{"14":313,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":154,"62":155,"64":185,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"4":[2,100],"28":203,"30":[2,100],"31":201,"32":[1,87],"33":202,"34":[1,85],"35":[1,86],"47":316,"49":[1,56],"65":317,"87":314,"88":315,"97":[1,318]},{"1":[2,132],"4":[2,132],"29":[2,132],"30":[2,132],"50":[2,132],"58":[2,132],"61":[2,132],"72":[2,132],"73":[2,132],"74":[2,132],"75":[2,132],"78":[2,132],"79":[2,132],"80":[2,132],"81":[2,132],"84":[2,132],"92":[2,132],"94":[2,132],"99":[2,132],"107":[2,132],"109":[2,132],"110":[2,132],"111":[2,132],"114":[2,132],"118":[2,132],"119":[2,132],"120":[2,132],"127":[2,132],"128":[2,132],"129":[2,132],"131":[2,132],"132":[2,132],"134":[2,132],"135":[2,132],"138":[2,132],"139":[2,132],"140":[2,132],"141":[2,132],"142":[2,132],"143":[2,132],"144":[2,132],"145":[2,132],"146":[2,132],"147":[2,132],"148":[2,132],"149":[2,132],"150":[2,132],"151":[2,132],"152":[2,132],"153":[2,132],"154":[2,132],"155":[2,132],"156":[2,132],"157":[2,132],"158":[2,132],"159":[2,132],"160":[2,132],"161":[2,132],"162":[2,132],"163":[2,132],"164":[2,132]},{"61":[1,319]},{"4":[1,321],"29":[1,322],"99":[1,320]},{"4":[2,59],"8":323,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,59],"30":[2,59],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"94":[2,59],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,59],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,166],"4":[2,166],"29":[2,166],"30":[2,166],"50":[2,166],"58":[2,166],"61":[2,166],"79":[2,166],"84":[2,166],"94":[2,166],"99":[2,166],"107":[2,166],"109":[2,166],"110":[2,166],"111":[2,166],"114":[2,166],"118":[2,166],"119":[2,166],"120":[2,166],"123":[2,166],"127":[2,166],"128":[2,166],"129":[2,166],"131":[2,166],"132":[2,166],"134":[2,166],"135":[2,166],"138":[2,166],"139":[2,166],"140":[2,166],"141":[2,166],"142":[2,166],"143":[2,166],"144":[2,166],"145":[2,166],"146":[2,166],"147":[2,166],"148":[2,166],"149":[2,166],"150":[2,166],"151":[2,166],"152":[2,166],"153":[2,166],"154":[2,166],"155":[2,166],"156":[2,166],"157":[2,166],"158":[2,166],"159":[2,166],"160":[2,166],"161":[2,166],"162":[2,166],"163":[2,166],"164":[2,166]},{"1":[2,167],"4":[2,167],"29":[2,167],"30":[2,167],"50":[2,167],"58":[2,167],"61":[2,167],"79":[2,167],"84":[2,167],"94":[2,167],"99":[2,167],"107":[2,167],"109":[2,167],"110":[2,167],"111":[2,167],"114":[2,167],"118":[2,167],"119":[2,167],"120":[2,167],"123":[2,167],"127":[2,167],"128":[2,167],"129":[2,167],"131":[2,167],"132":[2,167],"134":[2,167],"135":[2,167],"138":[2,167],"139":[2,167],"140":[2,167],"141":[2,167],"142":[2,167],"143":[2,167],"144":[2,167],"145":[2,167],"146":[2,167],"147":[2,167],"148":[2,167],"149":[2,167],"150":[2,167],"151":[2,167],"152":[2,167],"153":[2,167],"154":[2,167],"155":[2,167],"156":[2,167],"157":[2,167],"158":[2,167],"159":[2,167],"160":[2,167],"161":[2,167],"162":[2,167],"163":[2,167],"164":[2,167]},{"8":324,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":325,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[1,327],"29":[1,328],"84":[1,326]},{"4":[2,59],"28":203,"29":[2,59],"30":[2,59],"31":201,"32":[1,87],"33":202,"34":[1,85],"35":[1,86],"47":329,"49":[1,56],"84":[2,59]},{"8":330,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":331,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,217],"4":[2,217],"29":[2,217],"30":[2,217],"50":[1,132],"58":[2,217],"61":[2,217],"79":[2,217],"84":[2,217],"94":[2,217],"99":[2,217],"107":[2,217],"108":129,"109":[2,217],"110":[2,217],"111":[2,217],"114":[2,217],"118":[2,217],"119":[2,217],"120":[2,217],"127":[2,217],"128":[2,217],"131":[2,217],"132":[2,217],"138":[2,217],"139":[2,217],"140":[2,217],"141":[2,217],"142":[2,217],"143":[2,217],"144":[2,217],"145":[2,217],"146":[2,217],"147":[2,217],"148":[2,217],"149":[2,217],"150":[2,217],"151":[2,217],"152":[2,217],"153":[2,217],"154":[2,217],"155":[2,217],"156":[2,217],"157":[2,217],"158":[2,217],"159":[2,217],"160":[2,217],"161":[2,217],"162":[2,217],"163":[2,217],"164":[2,217]},{"1":[2,218],"4":[2,218],"29":[2,218],"30":[2,218],"50":[1,132],"58":[2,218],"61":[2,218],"79":[2,218],"84":[2,218],"94":[2,218],"99":[2,218],"107":[2,218],"108":129,"109":[2,218],"110":[2,218],"111":[2,218],"114":[2,218],"118":[2,218],"119":[2,218],"120":[2,218],"127":[2,218],"128":[2,218],"131":[2,218],"132":[2,218],"138":[2,218],"139":[2,218],"140":[2,218],"141":[2,218],"142":[2,218],"143":[2,218],"144":[2,218],"145":[2,218],"146":[2,218],"147":[2,218],"148":[2,218],"149":[2,218],"150":[2,218],"151":[2,218],"152":[2,218],"153":[2,218],"154":[2,218],"155":[2,218],"156":[2,218],"157":[2,218],"158":[2,218],"159":[2,218],"160":[2,218],"161":[2,218],"162":[2,218],"163":[2,218],"164":[2,218]},{"1":[2,144],"4":[2,144],"29":[2,144],"30":[2,144],"50":[2,144],"58":[2,144],"61":[2,144],"79":[2,144],"84":[2,144],"94":[2,144],"99":[2,144],"107":[2,144],"109":[2,144],"110":[2,144],"111":[2,144],"114":[2,144],"118":[2,144],"119":[2,144],"120":[2,144],"127":[2,144],"128":[2,144],"129":[2,144],"131":[2,144],"132":[2,144],"134":[2,144],"135":[2,144],"138":[2,144],"139":[2,144],"140":[2,144],"141":[2,144],"142":[2,144],"143":[2,144],"144":[2,144],"145":[2,144],"146":[2,144],"147":[2,144],"148":[2,144],"149":[2,144],"150":[2,144],"151":[2,144],"152":[2,144],"153":[2,144],"154":[2,144],"155":[2,144],"156":[2,144],"157":[2,144],"158":[2,144],"159":[2,144],"160":[2,144],"161":[2,144],"162":[2,144],"163":[2,144],"164":[2,144]},{"1":[2,65],"4":[2,65],"29":[2,65],"30":[2,65],"50":[2,65],"58":[2,65],"61":[2,65],"79":[2,65],"84":[2,65],"94":[2,65],"99":[2,65],"107":[2,65],"109":[2,65],"110":[2,65],"111":[2,65],"114":[2,65],"118":[2,65],"119":[2,65],"120":[2,65],"127":[2,65],"128":[2,65],"129":[2,65],"131":[2,65],"132":[2,65],"134":[2,65],"135":[2,65],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65],"164":[2,65]},{"1":[2,143],"4":[2,143],"29":[2,143],"30":[2,143],"50":[2,143],"58":[2,143],"61":[2,143],"79":[2,143],"84":[2,143],"94":[2,143],"99":[2,143],"107":[2,143],"109":[2,143],"110":[2,143],"111":[2,143],"114":[2,143],"118":[2,143],"119":[2,143],"120":[2,143],"127":[2,143],"128":[2,143],"129":[2,143],"131":[2,143],"132":[2,143],"134":[2,143],"135":[2,143],"138":[2,143],"139":[2,143],"140":[2,143],"141":[2,143],"142":[2,143],"143":[2,143],"144":[2,143],"145":[2,143],"146":[2,143],"147":[2,143],"148":[2,143],"149":[2,143],"150":[2,143],"151":[2,143],"152":[2,143],"153":[2,143],"154":[2,143],"155":[2,143],"156":[2,143],"157":[2,143],"158":[2,143],"159":[2,143],"160":[2,143],"161":[2,143],"162":[2,143],"163":[2,143],"164":[2,143]},{"4":[1,321],"29":[1,322],"94":[1,332]},{"1":[2,85],"4":[2,85],"29":[2,85],"30":[2,85],"46":[2,85],"50":[2,85],"58":[2,85],"61":[2,85],"72":[2,85],"73":[2,85],"74":[2,85],"75":[2,85],"78":[2,85],"79":[2,85],"80":[2,85],"81":[2,85],"84":[2,85],"86":[2,85],"92":[2,85],"94":[2,85],"99":[2,85],"107":[2,85],"109":[2,85],"110":[2,85],"111":[2,85],"114":[2,85],"118":[2,85],"119":[2,85],"120":[2,85],"127":[2,85],"128":[2,85],"129":[2,85],"131":[2,85],"132":[2,85],"134":[2,85],"135":[2,85],"138":[2,85],"139":[2,85],"140":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"148":[2,85],"149":[2,85],"150":[2,85],"151":[2,85],"152":[2,85],"153":[2,85],"154":[2,85],"155":[2,85],"156":[2,85],"157":[2,85],"158":[2,85],"159":[2,85],"160":[2,85],"161":[2,85],"162":[2,85],"163":[2,85],"164":[2,85]},{"61":[1,333]},{"50":[1,132],"61":[1,131],"79":[1,293],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[1,160],"6":334,"29":[1,6]},{"53":[2,62],"58":[2,62],"61":[1,258]},{"61":[1,335]},{"4":[1,160],"6":336,"29":[1,6],"50":[1,132],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[1,160],"6":337,"29":[1,6]},{"1":[2,128],"4":[2,128],"29":[2,128],"30":[2,128],"50":[2,128],"58":[2,128],"61":[2,128],"79":[2,128],"84":[2,128],"94":[2,128],"99":[2,128],"107":[2,128],"109":[2,128],"110":[2,128],"111":[2,128],"114":[2,128],"118":[2,128],"119":[2,128],"120":[2,128],"127":[2,128],"128":[2,128],"129":[2,128],"131":[2,128],"132":[2,128],"134":[2,128],"135":[2,128],"138":[2,128],"139":[2,128],"140":[2,128],"141":[2,128],"142":[2,128],"143":[2,128],"144":[2,128],"145":[2,128],"146":[2,128],"147":[2,128],"148":[2,128],"149":[2,128],"150":[2,128],"151":[2,128],"152":[2,128],"153":[2,128],"154":[2,128],"155":[2,128],"156":[2,128],"157":[2,128],"158":[2,128],"159":[2,128],"160":[2,128],"161":[2,128],"162":[2,128],"163":[2,128],"164":[2,128]},{"4":[1,160],"6":338,"29":[1,6]},{"1":[2,145],"4":[2,145],"29":[2,145],"30":[2,145],"50":[2,145],"58":[2,145],"61":[2,145],"79":[2,145],"84":[2,145],"94":[2,145],"99":[2,145],"107":[2,145],"109":[2,145],"110":[2,145],"111":[2,145],"114":[2,145],"118":[2,145],"119":[2,145],"120":[2,145],"127":[2,145],"128":[2,145],"129":[2,145],"131":[2,145],"132":[2,145],"134":[2,145],"135":[2,145],"138":[2,145],"139":[2,145],"140":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"146":[2,145],"147":[2,145],"148":[2,145],"149":[2,145],"150":[2,145],"151":[2,145],"152":[2,145],"153":[2,145],"154":[2,145],"155":[2,145],"156":[2,145],"157":[2,145],"158":[2,145],"159":[2,145],"160":[2,145],"161":[2,145],"162":[2,145],"163":[2,145],"164":[2,145]},{"1":[2,151],"4":[2,151],"29":[2,151],"30":[2,151],"50":[1,132],"58":[2,151],"61":[1,131],"79":[2,151],"84":[2,151],"94":[2,151],"99":[2,151],"107":[2,151],"108":129,"109":[2,151],"110":[1,339],"111":[2,151],"114":[2,151],"118":[1,124],"119":[1,125],"120":[1,340],"127":[2,151],"128":[2,151],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,152],"4":[2,152],"29":[2,152],"30":[2,152],"50":[1,132],"58":[2,152],"61":[1,131],"79":[2,152],"84":[2,152],"94":[2,152],"99":[2,152],"107":[2,152],"108":129,"109":[2,152],"110":[1,341],"111":[2,152],"114":[2,152],"118":[1,124],"119":[1,125],"120":[2,152],"127":[2,152],"128":[2,152],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"118":[2,150],"119":[2,150]},{"30":[1,342],"123":[1,343],"124":310,"125":[1,271]},{"1":[2,160],"4":[2,160],"29":[2,160],"30":[2,160],"50":[2,160],"58":[2,160],"61":[2,160],"79":[2,160],"84":[2,160],"94":[2,160],"99":[2,160],"107":[2,160],"109":[2,160],"110":[2,160],"111":[2,160],"114":[2,160],"118":[2,160],"119":[2,160],"120":[2,160],"127":[2,160],"128":[2,160],"129":[2,160],"131":[2,160],"132":[2,160],"134":[2,160],"135":[2,160],"138":[2,160],"139":[2,160],"140":[2,160],"141":[2,160],"142":[2,160],"143":[2,160],"144":[2,160],"145":[2,160],"146":[2,160],"147":[2,160],"148":[2,160],"149":[2,160],"150":[2,160],"151":[2,160],"152":[2,160],"153":[2,160],"154":[2,160],"155":[2,160],"156":[2,160],"157":[2,160],"158":[2,160],"159":[2,160],"160":[2,160],"161":[2,160],"162":[2,160],"163":[2,160],"164":[2,160]},{"4":[1,160],"6":344,"29":[1,6]},{"30":[2,163],"123":[2,163],"125":[2,163]},{"4":[1,160],"6":345,"29":[1,6],"58":[1,346]},{"4":[2,125],"29":[2,125],"50":[1,132],"58":[2,125],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,95],"4":[2,95],"29":[1,347],"30":[2,95],"50":[2,95],"58":[2,95],"61":[2,95],"63":138,"72":[1,140],"73":[1,141],"74":[1,142],"75":[1,143],"76":144,"77":145,"78":[1,146],"79":[2,95],"80":[1,147],"81":[1,148],"84":[2,95],"91":137,"92":[1,139],"94":[2,95],"99":[2,95],"107":[2,95],"109":[2,95],"110":[2,95],"111":[2,95],"114":[2,95],"118":[2,95],"119":[2,95],"120":[2,95],"127":[2,95],"128":[2,95],"129":[2,95],"131":[2,95],"132":[2,95],"134":[2,95],"135":[2,95],"138":[2,95],"139":[2,95],"140":[2,95],"141":[2,95],"142":[2,95],"143":[2,95],"144":[2,95],"145":[2,95],"146":[2,95],"147":[2,95],"148":[2,95],"149":[2,95],"150":[2,95],"151":[2,95],"152":[2,95],"153":[2,95],"154":[2,95],"155":[2,95],"156":[2,95],"157":[2,95],"158":[2,95],"159":[2,95],"160":[2,95],"161":[2,95],"162":[2,95],"163":[2,95],"164":[2,95]},{"4":[1,349],"30":[1,348]},{"4":[2,101],"30":[2,101]},{"4":[2,98],"30":[2,98]},{"46":[1,350]},{"31":191,"32":[1,87]},{"8":351,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"61":[1,352],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,119],"4":[2,119],"29":[2,119],"30":[2,119],"46":[2,119],"50":[2,119],"58":[2,119],"61":[2,119],"72":[2,119],"73":[2,119],"74":[2,119],"75":[2,119],"78":[2,119],"79":[2,119],"80":[2,119],"81":[2,119],"84":[2,119],"92":[2,119],"94":[2,119],"99":[2,119],"107":[2,119],"109":[2,119],"110":[2,119],"111":[2,119],"114":[2,119],"118":[2,119],"119":[2,119],"120":[2,119],"127":[2,119],"128":[2,119],"129":[2,119],"131":[2,119],"132":[2,119],"134":[2,119],"135":[2,119],"138":[2,119],"139":[2,119],"140":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"146":[2,119],"147":[2,119],"148":[2,119],"149":[2,119],"150":[2,119],"151":[2,119],"152":[2,119],"153":[2,119],"154":[2,119],"155":[2,119],"156":[2,119],"157":[2,119],"158":[2,119],"159":[2,119],"160":[2,119],"161":[2,119],"162":[2,119],"163":[2,119],"164":[2,119]},{"8":353,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,120],"8":247,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"30":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":354,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,122],"29":[2,122],"30":[2,122],"50":[1,132],"58":[2,122],"61":[1,131],"94":[2,122],"99":[2,122],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,134],"4":[2,134],"29":[2,134],"30":[2,134],"50":[1,132],"58":[2,134],"61":[1,131],"79":[2,134],"84":[2,134],"94":[2,134],"99":[2,134],"107":[2,134],"108":129,"109":[1,79],"110":[2,134],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,134],"127":[2,134],"128":[2,134],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,136],"4":[2,136],"29":[2,136],"30":[2,136],"50":[1,132],"58":[2,136],"61":[1,131],"79":[2,136],"84":[2,136],"94":[2,136],"99":[2,136],"107":[2,136],"108":129,"109":[1,79],"110":[2,136],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,136],"127":[2,136],"128":[2,136],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,88],"4":[2,88],"29":[2,88],"30":[2,88],"46":[2,88],"50":[2,88],"58":[2,88],"61":[2,88],"72":[2,88],"73":[2,88],"74":[2,88],"75":[2,88],"78":[2,88],"79":[2,88],"80":[2,88],"81":[2,88],"84":[2,88],"92":[2,88],"94":[2,88],"99":[2,88],"107":[2,88],"109":[2,88],"110":[2,88],"111":[2,88],"114":[2,88],"118":[2,88],"119":[2,88],"120":[2,88],"127":[2,88],"128":[2,88],"129":[2,88],"131":[2,88],"132":[2,88],"134":[2,88],"135":[2,88],"138":[2,88],"139":[2,88],"140":[2,88],"141":[2,88],"142":[2,88],"143":[2,88],"144":[2,88],"145":[2,88],"146":[2,88],"147":[2,88],"148":[2,88],"149":[2,88],"150":[2,88],"151":[2,88],"152":[2,88],"153":[2,88],"154":[2,88],"155":[2,88],"156":[2,88],"157":[2,88],"158":[2,88],"159":[2,88],"160":[2,88],"161":[2,88],"162":[2,88],"163":[2,88],"164":[2,88]},{"28":203,"31":201,"32":[1,87],"33":202,"34":[1,85],"35":[1,86],"47":355,"49":[1,56]},{"4":[2,89],"28":203,"29":[2,89],"30":[2,89],"31":201,"32":[1,87],"33":202,"34":[1,85],"35":[1,86],"47":200,"49":[1,56],"58":[2,89],"83":356},{"4":[2,91],"29":[2,91],"30":[2,91],"58":[2,91],"84":[2,91]},{"4":[2,47],"29":[2,47],"30":[2,47],"50":[1,132],"58":[2,47],"61":[1,131],"84":[2,47],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[2,48],"29":[2,48],"30":[2,48],"50":[1,132],"58":[2,48],"61":[1,131],"84":[2,48],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,110],"4":[2,110],"29":[2,110],"30":[2,110],"50":[2,110],"58":[2,110],"61":[2,110],"72":[2,110],"73":[2,110],"74":[2,110],"75":[2,110],"78":[2,110],"79":[2,110],"80":[2,110],"81":[2,110],"84":[2,110],"92":[2,110],"94":[2,110],"99":[2,110],"107":[2,110],"109":[2,110],"110":[2,110],"111":[2,110],"114":[2,110],"118":[2,110],"119":[2,110],"120":[2,110],"127":[2,110],"128":[2,110],"129":[2,110],"131":[2,110],"132":[2,110],"134":[2,110],"135":[2,110],"138":[2,110],"139":[2,110],"140":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"147":[2,110],"148":[2,110],"149":[2,110],"150":[2,110],"151":[2,110],"152":[2,110],"153":[2,110],"154":[2,110],"155":[2,110],"156":[2,110],"157":[2,110],"158":[2,110],"159":[2,110],"160":[2,110],"161":[2,110],"162":[2,110],"163":[2,110],"164":[2,110]},{"8":357,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"61":[1,358],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,54],"4":[2,54],"29":[2,54],"30":[2,54],"50":[2,54],"58":[2,54],"61":[2,54],"79":[2,54],"84":[2,54],"94":[2,54],"99":[2,54],"107":[2,54],"109":[2,54],"110":[2,54],"111":[2,54],"114":[2,54],"118":[2,54],"119":[2,54],"120":[2,54],"127":[2,54],"128":[2,54],"129":[2,54],"131":[2,54],"132":[2,54],"134":[2,54],"135":[2,54],"138":[2,54],"139":[2,54],"140":[2,54],"141":[2,54],"142":[2,54],"143":[2,54],"144":[2,54],"145":[2,54],"146":[2,54],"147":[2,54],"148":[2,54],"149":[2,54],"150":[2,54],"151":[2,54],"152":[2,54],"153":[2,54],"154":[2,54],"155":[2,54],"156":[2,54],"157":[2,54],"158":[2,54],"159":[2,54],"160":[2,54],"161":[2,54],"162":[2,54],"163":[2,54],"164":[2,54]},{"53":[2,64],"58":[2,64],"61":[2,64]},{"1":[2,168],"4":[2,168],"29":[2,168],"30":[2,168],"50":[2,168],"58":[2,168],"61":[2,168],"79":[2,168],"84":[2,168],"94":[2,168],"99":[2,168],"107":[2,168],"109":[2,168],"110":[2,168],"111":[2,168],"114":[2,168],"118":[2,168],"119":[2,168],"120":[2,168],"123":[2,168],"127":[2,168],"128":[2,168],"129":[2,168],"131":[2,168],"132":[2,168],"134":[2,168],"135":[2,168],"138":[2,168],"139":[2,168],"140":[2,168],"141":[2,168],"142":[2,168],"143":[2,168],"144":[2,168],"145":[2,168],"146":[2,168],"147":[2,168],"148":[2,168],"149":[2,168],"150":[2,168],"151":[2,168],"152":[2,168],"153":[2,168],"154":[2,168],"155":[2,168],"156":[2,168],"157":[2,168],"158":[2,168],"159":[2,168],"160":[2,168],"161":[2,168],"162":[2,168],"163":[2,168],"164":[2,168]},{"1":[2,129],"4":[2,129],"29":[2,129],"30":[2,129],"50":[2,129],"58":[2,129],"61":[2,129],"79":[2,129],"84":[2,129],"94":[2,129],"99":[2,129],"107":[2,129],"109":[2,129],"110":[2,129],"111":[2,129],"114":[2,129],"118":[2,129],"119":[2,129],"120":[2,129],"127":[2,129],"128":[2,129],"129":[2,129],"131":[2,129],"132":[2,129],"134":[2,129],"135":[2,129],"138":[2,129],"139":[2,129],"140":[2,129],"141":[2,129],"142":[2,129],"143":[2,129],"144":[2,129],"145":[2,129],"146":[2,129],"147":[2,129],"148":[2,129],"149":[2,129],"150":[2,129],"151":[2,129],"152":[2,129],"153":[2,129],"154":[2,129],"155":[2,129],"156":[2,129],"157":[2,129],"158":[2,129],"159":[2,129],"160":[2,129],"161":[2,129],"162":[2,129],"163":[2,129],"164":[2,129]},{"1":[2,130],"4":[2,130],"29":[2,130],"30":[2,130],"50":[2,130],"58":[2,130],"61":[2,130],"79":[2,130],"84":[2,130],"94":[2,130],"99":[2,130],"103":[2,130],"107":[2,130],"109":[2,130],"110":[2,130],"111":[2,130],"114":[2,130],"118":[2,130],"119":[2,130],"120":[2,130],"127":[2,130],"128":[2,130],"129":[2,130],"131":[2,130],"132":[2,130],"134":[2,130],"135":[2,130],"138":[2,130],"139":[2,130],"140":[2,130],"141":[2,130],"142":[2,130],"143":[2,130],"144":[2,130],"145":[2,130],"146":[2,130],"147":[2,130],"148":[2,130],"149":[2,130],"150":[2,130],"151":[2,130],"152":[2,130],"153":[2,130],"154":[2,130],"155":[2,130],"156":[2,130],"157":[2,130],"158":[2,130],"159":[2,130],"160":[2,130],"161":[2,130],"162":[2,130],"163":[2,130],"164":[2,130]},{"8":359,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":360,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":361,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,158],"4":[2,158],"29":[2,158],"30":[2,158],"50":[2,158],"58":[2,158],"61":[2,158],"79":[2,158],"84":[2,158],"94":[2,158],"99":[2,158],"107":[2,158],"109":[2,158],"110":[2,158],"111":[2,158],"114":[2,158],"118":[2,158],"119":[2,158],"120":[2,158],"127":[2,158],"128":[2,158],"129":[2,158],"131":[2,158],"132":[2,158],"134":[2,158],"135":[2,158],"138":[2,158],"139":[2,158],"140":[2,158],"141":[2,158],"142":[2,158],"143":[2,158],"144":[2,158],"145":[2,158],"146":[2,158],"147":[2,158],"148":[2,158],"149":[2,158],"150":[2,158],"151":[2,158],"152":[2,158],"153":[2,158],"154":[2,158],"155":[2,158],"156":[2,158],"157":[2,158],"158":[2,158],"159":[2,158],"160":[2,158],"161":[2,158],"162":[2,158],"163":[2,158],"164":[2,158]},{"4":[1,160],"6":362,"29":[1,6]},{"30":[1,363]},{"4":[1,364],"30":[2,164],"123":[2,164],"125":[2,164]},{"8":365,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,100],"28":203,"30":[2,100],"31":201,"32":[1,87],"33":202,"34":[1,85],"35":[1,86],"47":316,"49":[1,56],"65":317,"87":366,"88":315,"97":[1,318]},{"1":[2,96],"4":[2,96],"29":[2,96],"30":[2,96],"50":[2,96],"58":[2,96],"61":[2,96],"79":[2,96],"84":[2,96],"94":[2,96],"99":[2,96],"107":[2,96],"109":[2,96],"110":[2,96],"111":[2,96],"114":[2,96],"118":[2,96],"119":[2,96],"120":[2,96],"127":[2,96],"128":[2,96],"129":[2,96],"131":[2,96],"132":[2,96],"134":[2,96],"135":[2,96],"138":[2,96],"139":[2,96],"140":[2,96],"141":[2,96],"142":[2,96],"143":[2,96],"144":[2,96],"145":[2,96],"146":[2,96],"147":[2,96],"148":[2,96],"149":[2,96],"150":[2,96],"151":[2,96],"152":[2,96],"153":[2,96],"154":[2,96],"155":[2,96],"156":[2,96],"157":[2,96],"158":[2,96],"159":[2,96],"160":[2,96],"161":[2,96],"162":[2,96],"163":[2,96],"164":[2,96]},{"28":203,"31":201,"32":[1,87],"33":202,"34":[1,85],"35":[1,86],"47":316,"49":[1,56],"65":317,"88":367,"97":[1,318]},{"8":368,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"50":[1,132],"61":[1,131],"99":[1,369],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[2,65],"8":370,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,65],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"50":[2,65],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,65],"61":[2,65],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,65],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[2,65],"111":[2,65],"112":51,"113":[1,81],"114":[2,65],"118":[2,65],"119":[2,65],"121":[1,53],"126":48,"127":[2,65],"128":[2,65],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65],"164":[2,65]},{"4":[2,123],"29":[2,123],"30":[2,123],"50":[1,132],"58":[2,123],"61":[1,131],"94":[2,123],"99":[2,123],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[2,58],"29":[2,58],"30":[2,58],"57":371,"58":[1,278]},{"4":[2,92],"29":[2,92],"30":[2,92],"58":[2,92],"84":[2,92]},{"4":[2,58],"29":[2,58],"30":[2,58],"57":372,"58":[1,284]},{"50":[1,132],"61":[1,131],"79":[1,373],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"8":374,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"50":[2,65],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"61":[2,65],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"79":[2,65],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[2,65],"111":[2,65],"112":51,"113":[1,81],"114":[2,65],"118":[2,65],"119":[2,65],"121":[1,53],"126":48,"127":[2,65],"128":[2,65],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65],"164":[2,65]},{"1":[2,153],"4":[2,153],"29":[2,153],"30":[2,153],"50":[1,132],"58":[2,153],"61":[1,131],"79":[2,153],"84":[2,153],"94":[2,153],"99":[2,153],"107":[2,153],"108":129,"109":[2,153],"110":[2,153],"111":[2,153],"114":[2,153],"118":[1,124],"119":[1,125],"120":[1,375],"127":[2,153],"128":[2,153],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,155],"4":[2,155],"29":[2,155],"30":[2,155],"50":[1,132],"58":[2,155],"61":[1,131],"79":[2,155],"84":[2,155],"94":[2,155],"99":[2,155],"107":[2,155],"108":129,"109":[2,155],"110":[1,376],"111":[2,155],"114":[2,155],"118":[1,124],"119":[1,125],"120":[2,155],"127":[2,155],"128":[2,155],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,154],"4":[2,154],"29":[2,154],"30":[2,154],"50":[1,132],"58":[2,154],"61":[1,131],"79":[2,154],"84":[2,154],"94":[2,154],"99":[2,154],"107":[2,154],"108":129,"109":[2,154],"110":[2,154],"111":[2,154],"114":[2,154],"118":[1,124],"119":[1,125],"120":[2,154],"127":[2,154],"128":[2,154],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"30":[1,377]},{"1":[2,161],"4":[2,161],"29":[2,161],"30":[2,161],"50":[2,161],"58":[2,161],"61":[2,161],"79":[2,161],"84":[2,161],"94":[2,161],"99":[2,161],"107":[2,161],"109":[2,161],"110":[2,161],"111":[2,161],"114":[2,161],"118":[2,161],"119":[2,161],"120":[2,161],"127":[2,161],"128":[2,161],"129":[2,161],"131":[2,161],"132":[2,161],"134":[2,161],"135":[2,161],"138":[2,161],"139":[2,161],"140":[2,161],"141":[2,161],"142":[2,161],"143":[2,161],"144":[2,161],"145":[2,161],"146":[2,161],"147":[2,161],"148":[2,161],"149":[2,161],"150":[2,161],"151":[2,161],"152":[2,161],"153":[2,161],"154":[2,161],"155":[2,161],"156":[2,161],"157":[2,161],"158":[2,161],"159":[2,161],"160":[2,161],"161":[2,161],"162":[2,161],"163":[2,161],"164":[2,161]},{"30":[2,165],"123":[2,165],"125":[2,165]},{"4":[2,126],"29":[2,126],"50":[1,132],"58":[2,126],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[1,349],"30":[1,378]},{"4":[2,102],"30":[2,102]},{"4":[2,99],"30":[2,99],"50":[1,132],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,115],"4":[2,115],"29":[2,115],"30":[2,115],"50":[2,115],"58":[2,115],"61":[2,115],"72":[2,115],"73":[2,115],"74":[2,115],"75":[2,115],"78":[2,115],"79":[2,115],"80":[2,115],"81":[2,115],"84":[2,115],"92":[2,115],"94":[2,115],"99":[2,115],"107":[2,115],"109":[2,115],"110":[2,115],"111":[2,115],"114":[2,115],"118":[2,115],"119":[2,115],"120":[2,115],"127":[2,115],"128":[2,115],"129":[2,115],"131":[2,115],"132":[2,115],"134":[2,115],"135":[2,115],"138":[2,115],"139":[2,115],"140":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"147":[2,115],"148":[2,115],"149":[2,115],"150":[2,115],"151":[2,115],"152":[2,115],"153":[2,115],"154":[2,115],"155":[2,115],"156":[2,115],"157":[2,115],"158":[2,115],"159":[2,115],"160":[2,115],"161":[2,115],"162":[2,115],"163":[2,115],"164":[2,115]},{"50":[1,132],"61":[1,131],"99":[1,379],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[1,321],"29":[1,322],"30":[1,380]},{"4":[1,327],"29":[1,328],"30":[1,381]},{"1":[2,117],"4":[2,117],"29":[2,117],"30":[2,117],"46":[2,117],"50":[2,117],"58":[2,117],"61":[2,117],"72":[2,117],"73":[2,117],"74":[2,117],"75":[2,117],"78":[2,117],"79":[2,117],"80":[2,117],"81":[2,117],"84":[2,117],"86":[2,117],"92":[2,117],"94":[2,117],"99":[2,117],"107":[2,117],"109":[2,117],"110":[2,117],"111":[2,117],"114":[2,117],"118":[2,117],"119":[2,117],"120":[2,117],"127":[2,117],"128":[2,117],"129":[2,117],"131":[2,117],"132":[2,117],"134":[2,117],"135":[2,117],"138":[2,117],"139":[2,117],"140":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"146":[2,117],"147":[2,117],"148":[2,117],"149":[2,117],"150":[2,117],"151":[2,117],"152":[2,117],"153":[2,117],"154":[2,117],"155":[2,117],"156":[2,117],"157":[2,117],"158":[2,117],"159":[2,117],"160":[2,117],"161":[2,117],"162":[2,117],"163":[2,117],"164":[2,117]},{"50":[1,132],"61":[1,131],"79":[1,382],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"8":383,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":384,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,159],"4":[2,159],"29":[2,159],"30":[2,159],"50":[2,159],"58":[2,159],"61":[2,159],"79":[2,159],"84":[2,159],"94":[2,159],"99":[2,159],"107":[2,159],"109":[2,159],"110":[2,159],"111":[2,159],"114":[2,159],"118":[2,159],"119":[2,159],"120":[2,159],"127":[2,159],"128":[2,159],"129":[2,159],"131":[2,159],"132":[2,159],"134":[2,159],"135":[2,159],"138":[2,159],"139":[2,159],"140":[2,159],"141":[2,159],"142":[2,159],"143":[2,159],"144":[2,159],"145":[2,159],"146":[2,159],"147":[2,159],"148":[2,159],"149":[2,159],"150":[2,159],"151":[2,159],"152":[2,159],"153":[2,159],"154":[2,159],"155":[2,159],"156":[2,159],"157":[2,159],"158":[2,159],"159":[2,159],"160":[2,159],"161":[2,159],"162":[2,159],"163":[2,159],"164":[2,159]},{"1":[2,97],"4":[2,97],"29":[2,97],"30":[2,97],"50":[2,97],"58":[2,97],"61":[2,97],"79":[2,97],"84":[2,97],"94":[2,97],"99":[2,97],"107":[2,97],"109":[2,97],"110":[2,97],"111":[2,97],"114":[2,97],"118":[2,97],"119":[2,97],"120":[2,97],"127":[2,97],"128":[2,97],"129":[2,97],"131":[2,97],"132":[2,97],"134":[2,97],"135":[2,97],"138":[2,97],"139":[2,97],"140":[2,97],"141":[2,97],"142":[2,97],"143":[2,97],"144":[2,97],"145":[2,97],"146":[2,97],"147":[2,97],"148":[2,97],"149":[2,97],"150":[2,97],"151":[2,97],"152":[2,97],"153":[2,97],"154":[2,97],"155":[2,97],"156":[2,97],"157":[2,97],"158":[2,97],"159":[2,97],"160":[2,97],"161":[2,97],"162":[2,97],"163":[2,97],"164":[2,97]},{"1":[2,116],"4":[2,116],"29":[2,116],"30":[2,116],"50":[2,116],"58":[2,116],"61":[2,116],"72":[2,116],"73":[2,116],"74":[2,116],"75":[2,116],"78":[2,116],"79":[2,116],"80":[2,116],"81":[2,116],"84":[2,116],"92":[2,116],"94":[2,116],"99":[2,116],"107":[2,116],"109":[2,116],"110":[2,116],"111":[2,116],"114":[2,116],"118":[2,116],"119":[2,116],"120":[2,116],"127":[2,116],"128":[2,116],"129":[2,116],"131":[2,116],"132":[2,116],"134":[2,116],"135":[2,116],"138":[2,116],"139":[2,116],"140":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"146":[2,116],"147":[2,116],"148":[2,116],"149":[2,116],"150":[2,116],"151":[2,116],"152":[2,116],"153":[2,116],"154":[2,116],"155":[2,116],"156":[2,116],"157":[2,116],"158":[2,116],"159":[2,116],"160":[2,116],"161":[2,116],"162":[2,116],"163":[2,116],"164":[2,116]},{"4":[2,124],"29":[2,124],"30":[2,124],"58":[2,124],"94":[2,124],"99":[2,124]},{"4":[2,93],"29":[2,93],"30":[2,93],"58":[2,93],"84":[2,93]},{"1":[2,118],"4":[2,118],"29":[2,118],"30":[2,118],"46":[2,118],"50":[2,118],"58":[2,118],"61":[2,118],"72":[2,118],"73":[2,118],"74":[2,118],"75":[2,118],"78":[2,118],"79":[2,118],"80":[2,118],"81":[2,118],"84":[2,118],"86":[2,118],"92":[2,118],"94":[2,118],"99":[2,118],"107":[2,118],"109":[2,118],"110":[2,118],"111":[2,118],"114":[2,118],"118":[2,118],"119":[2,118],"120":[2,118],"127":[2,118],"128":[2,118],"129":[2,118],"131":[2,118],"132":[2,118],"134":[2,118],"135":[2,118],"138":[2,118],"139":[2,118],"140":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"146":[2,118],"147":[2,118],"148":[2,118],"149":[2,118],"150":[2,118],"151":[2,118],"152":[2,118],"153":[2,118],"154":[2,118],"155":[2,118],"156":[2,118],"157":[2,118],"158":[2,118],"159":[2,118],"160":[2,118],"161":[2,118],"162":[2,118],"163":[2,118],"164":[2,118]},{"1":[2,156],"4":[2,156],"29":[2,156],"30":[2,156],"50":[1,132],"58":[2,156],"61":[1,131],"79":[2,156],"84":[2,156],"94":[2,156],"99":[2,156],"107":[2,156],"108":129,"109":[2,156],"110":[2,156],"111":[2,156],"114":[2,156],"118":[1,124],"119":[1,125],"120":[2,156],"127":[2,156],"128":[2,156],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,157],"4":[2,157],"29":[2,157],"30":[2,157],"50":[1,132],"58":[2,157],"61":[1,131],"79":[2,157],"84":[2,157],"94":[2,157],"99":[2,157],"107":[2,157],"108":129,"109":[2,157],"110":[2,157],"111":[2,157],"114":[2,157],"118":[1,124],"119":[1,125],"120":[2,157],"127":[2,157],"128":[2,157],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]}], defaultActions: {"90":[2,4]}, parseError: function parseError(str, hash) { throw new Error(str); diff --git a/src/grammar.coffee b/src/grammar.coffee index 9602555c5a..0c1f07f344 100644 --- a/src/grammar.coffee +++ b/src/grammar.coffee @@ -538,7 +538,7 @@ grammar: { o "Expression && Expression", -> new OpNode '&&', $1, $3 o "Expression || Expression", -> new OpNode '||', $1, $3 - o "Expression ? Expression", -> new OpNode '?', $1, $3 + o "Expression OP? Expression", -> new OpNode '?', $1, $3 o "Expression -= Expression", -> new OpNode '-=', $1, $3 o "Expression += Expression", -> new OpNode '+=', $1, $3 @@ -579,7 +579,7 @@ operators: [ ["left", '<=', '<', '>', '>='] ["right", 'DELETE', 'INSTANCEOF', 'TYPEOF'] ["left", '==', '!='] - ["left", '&&', '||'] + ["left", '&&', '||', 'OP?'] ["right", '-=', '+=', '/=', '*=', '%=', '||=', '&&=', '?='] ["left", '.'] ["right", 'INDENT'] diff --git a/src/lexer.coffee b/src/lexer.coffee index d1e5d2a33b..e43c7c2597 100644 --- a/src/lexer.coffee +++ b/src/lexer.coffee @@ -98,8 +98,8 @@ exports.Lexer: class Lexer else if include(RESERVED, id) @identifierError id unless forcedIdentifier - tag: id: CONVERSIONS[id] if include COFFEE_ALIASES, id - return @tagHalfAssignment tag if @prev() and @prev()[0] is 'ASSIGN' and include HALF_ASSIGNMENTS, tag + tag: id: CONVERSIONS[id] if include COFFEE_ALIASES, id + return @tagHalfAssignment tag if @prev() and @prev()[0] is 'ASSIGN' and include HALF_ASSIGNMENTS, tag @token tag, id @token ']', ']' if close_index true @@ -264,6 +264,8 @@ exports.Lexer: class Lexer @assignmentError() if include JS_FORBIDDEN, @value else if value is ';' tag: 'TERMINATOR' + else if value is '?' and prevSpaced + tag: 'OP?' else if include(CALLABLE, @tag()) and not prevSpaced if value is '(' tag: 'CALL_START' @@ -309,6 +311,7 @@ exports.Lexer: class Lexer # Tag a half assignment. tagHalfAssignment: (tag) -> + tag: '?' if tag is 'OP?' last: @tokens.pop() @tokens.push ["$tag=", "$tag=", last[2]] true @@ -554,7 +557,7 @@ CALLABLE: ['IDENTIFIER', 'SUPER', ')', ']', '}', 'STRING', '@', 'THIS', '?', ':: LINE_BREAK: ['INDENT', 'OUTDENT', 'TERMINATOR'] # Half-assignments... -HALF_ASSIGNMENTS: ['-', '+', '/', '*', '%', '||', '&&', '?'] +HALF_ASSIGNMENTS: ['-', '+', '/', '*', '%', '||', '&&', '?', 'OP?'] # Conversions from CoffeeScript operators into JavaScript ones. CONVERSIONS: { diff --git a/test/test_existence.coffee b/test/test_existence.coffee index 0843c9c43a..250e330e40 100644 --- a/test/test_existence.coffee +++ b/test/test_existence.coffee @@ -78,3 +78,8 @@ ok result # Safely calls values off of non-existent variables. result: nothing?.value ok result is undefined + + +# Assign to the result of an exsitential operation with a minus. +x: null ? - 1 +ok x is - 1 From 9ff8433f218e72cbf516004293fc7bc9456d7319 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sat, 10 Jul 2010 11:54:59 -0400 Subject: [PATCH 29/33] fixing previously-escaped-inner-quotes-in-double-quoted-heredoc-interpolations. Issue #479 --- lib/lexer.js | 1 + src/lexer.coffee | 1 + test/test_string_interpolation.coffee | 5 +++++ 3 files changed, 7 insertions(+) diff --git a/lib/lexer.js b/lib/lexer.js index 6a108bb026..aff91a0ec5 100644 --- a/lib/lexer.js +++ b/lib/lexer.js @@ -480,6 +480,7 @@ } inner = expr.substring(2, expr.length - 1); if (inner.length) { + inner = inner.replace(new RegExp('\\\\' + quote, 'g'), quote); nested = lexer.tokenize(("(" + inner + ")"), { line: this.line }); diff --git a/src/lexer.coffee b/src/lexer.coffee index e43c7c2597..2b1b07b8f3 100644 --- a/src/lexer.coffee +++ b/src/lexer.coffee @@ -409,6 +409,7 @@ exports.Lexer: class Lexer tokens.push ['STRING', "$quote${ str.substring(pi, i) }$quote"] if pi < i inner: expr.substring(2, expr.length - 1) if inner.length + inner: inner.replace new RegExp('\\\\' + quote, 'g'), quote nested: lexer.tokenize "($inner)", {line: @line} (tok[0]: ')') for tok, idx in nested when tok[0] is 'CALL_END' nested.pop() diff --git a/test/test_string_interpolation.coffee b/test/test_string_interpolation.coffee index c1ea542f74..61a0a86fd8 100644 --- a/test/test_string_interpolation.coffee +++ b/test/test_string_interpolation.coffee @@ -64,6 +64,11 @@ ok "Hello ${world ? "$hello"}" is 'Hello World' ok "Hello ${"${"${obj["name"]}" + '!'}"}" is 'Hello Joe!' +a: """ + Hello ${ "Joe" } + """ +ok a is "Hello Joe" + a: 1 b: 2 c: 3 From 15a2b7d69a10ceb133945761b5f2a6df34122203 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sat, 10 Jul 2010 14:52:54 -0400 Subject: [PATCH 30/33] Fixing issue number #486 (which is debatable). Allowing an unparenthesized if/else ternary as a trailing parameter to a call. --- lib/rewriter.js | 2 +- src/rewriter.coffee | 2 +- test/test_functions.coffee | 7 +++++++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/lib/rewriter.js b/lib/rewriter.js index dec7f5f621..82311dd8c0 100644 --- a/lib/rewriter.js +++ b/lib/rewriter.js @@ -168,7 +168,7 @@ stack.push(0); return 1; } - if (open && !token.generated && (!post || include(IMPLICIT_END, tag))) { + if (open && !token.generated && prev[0] !== ',' && (!post || include(IMPLICIT_END, tag))) { j = 1; while ((typeof (_d = (nx = this.tokens[i + j])) !== "undefined" && _d !== null) && include(IMPLICIT_END, nx[0])) { j++; diff --git a/src/rewriter.coffee b/src/rewriter.coffee index 95a08da3ac..62a004cf89 100644 --- a/src/rewriter.coffee +++ b/src/rewriter.coffee @@ -137,7 +137,7 @@ exports.Rewriter: class Rewriter return size stack.push 0 return 1 - if open and !token.generated and (!post or include(IMPLICIT_END, tag)) + if open and !token.generated and prev[0] isnt ',' and (!post or include(IMPLICIT_END, tag)) j: 1; j++ while (nx: @tokens[i + j])? and include(IMPLICIT_END, nx[0]) if nx? and nx[0] is ',' @tokens.splice(i, 1) if tag is 'TERMINATOR' diff --git a/test/test_functions.coffee b/test/test_functions.coffee index 8c67610dd1..cb8c855361 100644 --- a/test/test_functions.coffee +++ b/test/test_functions.coffee @@ -157,6 +157,13 @@ result: sum -> ok result is 20 + +# Implicit call with a trailing if statement as a param. +func: -> arguments[1] +result: func 'one', if false then 100 else 13 +ok result is 13 + + # Test more function passing: result: sum( -> 1 + 2 From 3d6cdfa6361dd55a2c5c403767efd451bc4ae6f4 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sat, 10 Jul 2010 15:36:54 -0400 Subject: [PATCH 31/33] making it possible to pass in command-line arguments to a hash-banged coffee script. Ticket #473 --- lib/command.js | 4 ++++ src/command.coffee | 9 ++++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/lib/command.js b/lib/command.js index be19a8175d..1898d2d9d0 100644 --- a/lib/command.js +++ b/lib/command.js @@ -39,6 +39,10 @@ flags = sources.slice((separator + 1), sources.length); sources = sources.slice(0, separator); } + if (options.run) { + flags = sources.slice(1, sources.length + 1).concat(flags); + sources = [sources[0]]; + } process.ARGV = (process.argv = flags); return compileScripts(); }; diff --git a/src/command.coffee b/src/command.coffee index 2b59686a2b..90e3213dfe 100644 --- a/src/command.coffee +++ b/src/command.coffee @@ -49,14 +49,17 @@ exports.run: -> return usage() if options.help return version() if options.version return require './repl' if options.interactive - return compileStdio() if options.stdio - return compileScript 'console', sources[0] if options.eval + return compileStdio() if options.stdio + return compileScript 'console', sources[0] if options.eval return require './repl' unless sources.length separator: sources.indexOf '--' flags: [] if separator >= 0 - flags: sources[(separator + 1)...sources.length] + flags: sources[(separator + 1)...sources.length] sources: sources[0...separator] + if options.run + flags: sources[1..sources.length].concat flags + sources: [sources[0]] process.ARGV: process.argv: flags compileScripts() From 2a7a26482aaf11791449b6c6947088652207f4b2 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sun, 11 Jul 2010 09:57:42 -0400 Subject: [PATCH 32/33] fixing optparse to behave nicely in the presence of hashbangs -- stop parsing after the first non-option argument, and pass the rest along -- and adding an OptionParser test. --- lib/command.js | 4 ++-- lib/optparse.js | 19 +++++++++++-------- src/command.coffee | 6 +++--- src/optparse.coffee | 11 ++++++++--- test/test_option_parser.coffee | 20 ++++++++++++++++++++ 5 files changed, 44 insertions(+), 16 deletions(-) create mode 100644 test/test_option_parser.coffee diff --git a/lib/command.js b/lib/command.js index 1898d2d9d0..ebefbb450f 100644 --- a/lib/command.js +++ b/lib/command.js @@ -191,10 +191,10 @@ parseOptions = function() { var o; optionParser = new optparse.OptionParser(SWITCHES, BANNER); - o = (options = optionParser.parse(process.argv)); + o = (options = optionParser.parse(process.argv.slice(2, process.argv.length))); options.run = !(o.compile || o.print || o.lint); options.print = !!(o.print || (o.eval || o.stdio && o.compile)); - sources = options.arguments.slice(2, options.arguments.length); + sources = options.arguments; return sources; }; compileOptions = function(source) { diff --git a/lib/optparse.js b/lib/optparse.js index e6461a6fd7..f2e9ff6132 100755 --- a/lib/optparse.js +++ b/lib/optparse.js @@ -7,19 +7,21 @@ return this; }; OptionParser.prototype.parse = function(args) { - var _a, _b, _c, arg, isOption, matchedRule, options, rule; + var _a, _b, _c, _d, _e, arg, i, isOption, matchedRule, options, rule; options = { arguments: [] }; args = normalizeArguments(args); - while ((arg = args.shift())) { + _a = args; + for (i = 0, _b = _a.length; i < _b; i++) { + arg = _a[i]; isOption = !!(arg.match(LONG_FLAG) || arg.match(SHORT_FLAG)); matchedRule = false; - _b = this.rules; - for (_a = 0, _c = _b.length; _a < _c; _a++) { - rule = _b[_a]; + _d = this.rules; + for (_c = 0, _e = _d.length; _c < _e; _c++) { + rule = _d[_c]; if (rule.shortFlag === arg || rule.longFlag === arg) { - options[rule.name] = rule.hasArgument ? args.shift() : true; + options[rule.name] = rule.hasArgument ? args[i + 1] : true; matchedRule = true; break; } @@ -27,8 +29,9 @@ if (isOption && !matchedRule) { throw new Error("unrecognized option: " + arg); } - if (!(isOption)) { - options.arguments.push(arg); + if (!isOption) { + options.arguments = args.slice(i, args.length); + break; } } return options; diff --git a/src/command.coffee b/src/command.coffee index 90e3213dfe..2b476a6046 100644 --- a/src/command.coffee +++ b/src/command.coffee @@ -154,11 +154,11 @@ printTokens: (tokens) -> # Use the [OptionParser module](optparse.html) to extract all options from # `process.argv` that are specified in `SWITCHES`. parseOptions: -> - optionParser: new optparse.OptionParser SWITCHES, BANNER - o: options: optionParser.parse(process.argv) + optionParser: new optparse.OptionParser SWITCHES, BANNER + o: options: optionParser.parse(process.argv[2...process.argv.length]) options.run: not (o.compile or o.print or o.lint) options.print: !! (o.print or (o.eval or o.stdio and o.compile)) - sources: options.arguments[2...options.arguments.length] + sources: options.arguments # The compile-time options to pass to the CoffeeScript compiler. compileOptions: (source) -> diff --git a/src/optparse.coffee b/src/optparse.coffee index 94645e6077..b3979ab628 100644 --- a/src/optparse.coffee +++ b/src/optparse.coffee @@ -3,6 +3,9 @@ # # parser: new OptionParser switches, helpBanner # options: parser.parse process.argv +# +# The first non-option is considered to be the start of the file (and file +# option) list, and all subsequent arguments are left unparsed. exports.OptionParser: class OptionParser # Initialize with a list of valid options, in the form: @@ -22,16 +25,18 @@ exports.OptionParser: class OptionParser parse: (args) -> options: {arguments: []} args: normalizeArguments args - while (arg: args.shift()) + for arg, i in args isOption: !!(arg.match(LONG_FLAG) or arg.match(SHORT_FLAG)) matchedRule: no for rule in @rules if rule.shortFlag is arg or rule.longFlag is arg - options[rule.name]: if rule.hasArgument then args.shift() else true + options[rule.name]: if rule.hasArgument then args[i + 1] else true matchedRule: yes break throw new Error "unrecognized option: $arg" if isOption and not matchedRule - options.arguments.push arg unless isOption + if not isOption + options.arguments: args[i...args.length] + break options # Return the help text for this **OptionParser**, listing and describing all diff --git a/test/test_option_parser.coffee b/test/test_option_parser.coffee new file mode 100644 index 0000000000..fe8bcfce4f --- /dev/null +++ b/test/test_option_parser.coffee @@ -0,0 +1,20 @@ +# Ensure that the OptionParser handles arguments correctly. + +{OptionParser}: require './../lib/optparse' + +opt: new OptionParser [ + ['-r', '--required [DIR]', 'desc required'] + ['-o', '--optional', 'desc optional'] +] + +result: opt.parse ['one', 'two', 'three', '-r', 'dir'] + +ok result.arguments.length is 5 +ok result.arguments[3] is '-r' + +result: opt.parse ['--optional', '-r', 'folder', 'one', 'two'] + +ok result.optional is true +ok result.required is 'folder' +ok result.arguments.join(' ') is 'folder one two' + From e40d25e4bd3eacb0a278121e86895843a322206c Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sun, 11 Jul 2010 10:40:44 -0400 Subject: [PATCH 33/33] rebuilding docs and compressed version for CoffeeScript 0.7.1 --- Cakefile | 4 +- Rakefile | 2 +- documentation/docs/coffee-script.html | 2 +- documentation/docs/command.html | 15 +- documentation/docs/grammar.html | 114 ++++++------ documentation/docs/lexer.html | 31 ++-- documentation/docs/nodes.html | 258 +++++++++++++++----------- documentation/docs/optparse.html | 13 +- documentation/docs/rewriter.html | 55 ++++-- documentation/index.html.erb | 12 +- examples/blocks.coffee | 2 +- extras/coffee-script.js | 4 +- index.html | 16 +- lib/coffee-script.js | 2 +- package.json | 2 +- src/coffee-script.coffee | 2 +- 16 files changed, 319 insertions(+), 215 deletions(-) diff --git a/Cakefile b/Cakefile index d9387c4734..09c8a65815 100644 --- a/Cakefile +++ b/Cakefile @@ -94,14 +94,14 @@ task 'loc', 'count the lines of source code in CoffeeScript', -> task 'test', 'run the CoffeeScript language test suite', -> helpers.extend global, require 'assert' passedTests: failedTests: 0 - startTime: new Date() + startTime: new Date originalOk: ok helpers.extend global, { ok: (args...) -> passedTests += 1; originalOk(args...) CoffeeScript: CoffeeScript } process.addListener 'exit', -> - time: ((new Date() - startTime) / 1000).toFixed(2) + time: ((new Date - startTime) / 1000).toFixed(2) message: "passed $passedTests tests in $time seconds$reset" if failedTests log "failed $failedTests and $message", red diff --git a/Rakefile b/Rakefile index 4db3fcd84b..6e6f1ca8f4 100644 --- a/Rakefile +++ b/Rakefile @@ -6,7 +6,7 @@ require 'yui/compressor' HEADER = <<-EOS /** - * CoffeeScript Compiler v0.7.0 + * CoffeeScript Compiler v0.7.1 * http://coffeescript.org * * Copyright 2010, Jeremy Ashkenas diff --git a/documentation/docs/coffee-script.html b/documentation/docs/coffee-script.html index c10229482d..59611f9b10 100644 --- a/documentation/docs/coffee-script.html +++ b/documentation/docs/coffee-script.html @@ -16,7 +16,7 @@ this.exports: this.CoffeeScript: {} Lexer: this.Lexer parser: this.parser - helpers: this.helpers
    #

    The current CoffeeScript version number.

    exports.VERSION: '0.7.0'
    #

    Instantiate a Lexer for our use here.

    lexer: new Lexer()
    #

    Compile a string of CoffeeScript code to JavaScript, using the Coffee/Jison + helpers: this.helpers

    #

    The current CoffeeScript version number.

    exports.VERSION: '0.7.1'
    #

    Instantiate a Lexer for our use here.

    lexer: new Lexer
    #

    Compile a string of CoffeeScript code to JavaScript, using the Coffee/Jison compiler.

    exports.compile: compile: (code, options) ->
       options: or {}
       try
    diff --git a/documentation/docs/command.html b/documentation/docs/command.html
    index 6121fe82dd..30665e0096 100644
    --- a/documentation/docs/command.html
    +++ b/documentation/docs/command.html
    @@ -34,14 +34,17 @@
       return usage()                              if options.help
       return version()                            if options.version
       return require './repl'                     if options.interactive
    -  return compileStdio()                      if options.stdio
    -  return compileScript 'console', sources[0] if options.eval
    +  return compileStdio()                       if options.stdio
    +  return compileScript 'console', sources[0]  if options.eval
       return require './repl'                     unless sources.length
       separator: sources.indexOf '--'
       flags: []
       if separator >= 0
    -    flags: sources[(separator + 1)...sources.length]
    +    flags:   sources[(separator + 1)...sources.length]
         sources: sources[0...separator]
    +  if options.run
    +    flags:   sources[1..sources.length].concat flags
    +    sources: [sources[0]]
       process.ARGV: process.argv: flags
       compileScripts()
    #

    Asynchronously read in each CoffeeScript in a list of source files and compile them. If a directory is passed, recursively compile all @@ -112,11 +115,11 @@ "[$tag $value]" puts strings.join(' ')

    #

    Use the OptionParser module to extract all options from process.argv that are specified in SWITCHES.

    parseOptions: ->
    -  optionParser: new optparse.OptionParser SWITCHES, BANNER
    -  o: options:    optionParser.parse(process.argv)
    +  optionParser:  new optparse.OptionParser SWITCHES, BANNER
    +  o: options:    optionParser.parse(process.argv[2...process.argv.length])
       options.run:   not (o.compile or o.print or o.lint)
       options.print: !!  (o.print or (o.eval or o.stdio and o.compile))
    -  sources:       options.arguments[2...options.arguments.length]
    #

    The compile-time options to pass to the CoffeeScript compiler.

    compileOptions: (source) ->
    +  sources:       options.arguments
    #

    The compile-time options to pass to the CoffeeScript compiler.

    compileOptions: (source) ->
       o: {source}
       o.noWrap: options['no-wrap']
       o
    #

    Print the --help usage message and exit.

    usage: ->
    diff --git a/documentation/docs/grammar.html b/documentation/docs/grammar.html
    index 8e108cc789..59b980fafa 100644
    --- a/documentation/docs/grammar.html
    +++ b/documentation/docs/grammar.html
    @@ -33,8 +33,8 @@
     for the UNLESS terminal, and $3 would be the value of the second
     Expression.

    grammar: {
    #

    The Root is the top-level node in the syntax tree. Since we parse bottom-up, all parsing must end here.

      Root: [
    -    o "",                                       -> new Expressions()
    -    o "TERMINATOR",                             -> new Expressions()
    +    o "",                                       -> new Expressions
    +    o "TERMINATOR",                             -> new Expressions
         o "Body"
         o "Block TERMINATOR"
       ]
    #

    Any list of statements and expressions, seperated by line breaks or semicolons.

      Body: [
    @@ -67,11 +67,13 @@
         o "Class"
         o "Splat"
         o "Existence"
    +    o "Comment"
       ]
    #

    A an indented block of expressions. Note that the Rewriter will convert some postfix forms into blocks for us, by adjusting the token stream.

      Block: [
         o "INDENT Body OUTDENT",                    -> $2
    -    o "INDENT OUTDENT",                         -> new Expressions()
    +    o "INDENT OUTDENT",                         -> new Expressions
    +    o "TERMINATOR Comment",                     -> Expressions.wrap [$2]
       ]
    #

    A literal identifier, a variable name or property.

      Identifier: [
         o "IDENTIFIER",                             -> new LiteralNode $1
       ]
    #

    Alphanumerics are separated from the other Literal matchers because @@ -97,43 +99,46 @@ o "AlphaNumeric" o "Identifier ASSIGN Expression", -> new AssignNode new ValueNode($1), $3, 'object' o "AlphaNumeric ASSIGN Expression", -> new AssignNode new ValueNode($1), $3, 'object' + o "Comment" ]

    #

    A return statement from a function body.

      Return: [
         o "RETURN Expression",                      -> new ReturnNode $2
         o "RETURN",                                 -> new ReturnNode new ValueNode new LiteralNode 'null'
    -  ]
    #

    The existential operator.

      Existence: [
    +  ]
    #

    A block comment.

      Comment: [
    +    o "HERECOMMENT",                            -> new CommentNode $1
    +  ]
    #

    The existential operator.

      Existence: [
         o "Expression ?",                           -> new ExistenceNode $1
    -  ]
    #

    The Code node is the function literal. It's defined by an indented block + ]

    #

    The Code node is the function literal. It's defined by an indented block of Expressions preceded by a function arrow, with an optional parameter list.

      Code: [
         o "PARAM_START ParamList PARAM_END FuncGlyph Block", -> new CodeNode $2, $5, $4
         o "FuncGlyph Block",                        -> new CodeNode [], $2, $1
    -  ]
    #

    CoffeeScript has two different symbols for functions. -> is for ordinary + ]

    #

    CoffeeScript has two different symbols for functions. -> is for ordinary functions, and => is for functions bound to the current value of this.

      FuncGlyph: [
         o "->",                                     -> 'func'
         o "=>",                                     -> 'boundfunc'
    -  ]
    #

    An optional, trailing comma.

      OptComma: [
    +  ]
    #

    An optional, trailing comma.

      OptComma: [
         o ''
         o ','
    -  ]
    #

    The list of parameters that a function accepts can be of any length.

      ParamList: [
    +  ]
    #

    The list of parameters that a function accepts can be of any length.

      ParamList: [
         o "",                                       -> []
         o "Param",                                  -> [$1]
         o "ParamList , Param",                      -> $1.concat [$3]
    -  ]
    #

    A single parameter in a function definition can be ordinary, or a splat + ]

    #

    A single parameter in a function definition can be ordinary, or a splat that hoovers up the remaining arguments.

      Param: [
         o "PARAM",                                  -> new LiteralNode $1
         o "Param . . .",                            -> new SplatNode $1
    -  ]
    #

    A splat that occurs outside of a parameter list.

      Splat: [
    +  ]
    #

    A splat that occurs outside of a parameter list.

      Splat: [
         o "Expression . . .",                       -> new SplatNode $1
    -  ]
    #

    Variables and properties that can be assigned to.

      SimpleAssignable: [
    +  ]
    #

    Variables and properties that can be assigned to.

      SimpleAssignable: [
         o "Identifier",                             -> new ValueNode $1
         o "Value Accessor",                         -> $1.push $2
         o "Invocation Accessor",                    -> new ValueNode $1, [$2]
         o "ThisProperty"
    -  ]
    #

    Everything that can be assigned to.

      Assignable: [
    +  ]
    #

    Everything that can be assigned to.

      Assignable: [
         o "SimpleAssignable"
         o "Array",                                  -> new ValueNode $1
         o "Object",                                 -> new ValueNode $1
    -  ]
    #

    The types of things that can be treated as values -- assigned to, invoked + ]

    #

    The types of things that can be treated as values -- assigned to, invoked as functions, indexed into, named as a class, etc.

      Value: [
         o "Assignable"
         o "Literal",                                -> new ValueNode $1
    @@ -141,7 +146,7 @@
         o "Range",                                  -> new ValueNode $1
         o "This"
         o "NULL",                                   -> new ValueNode new LiteralNode 'null'
    -  ]
    #

    The general group of accessors into an object, by property, by prototype + ]

    #

    The general group of accessors into an object, by property, by prototype or by array index or slice.

      Accessor: [
         o "PROPERTY_ACCESS Identifier",             -> new AccessorNode $2
         o "PROTOTYPE_ACCESS Identifier",            -> new AccessorNode $2, 'prototype'
    @@ -149,61 +154,62 @@
         o "SOAK_ACCESS Identifier",                 -> new AccessorNode $2, 'soak'
         o "Index"
         o "Slice",                                  -> new SliceNode $1
    -  ]
    #

    Indexing into an object or array using bracket notation.

      Index: [
    +  ]
    #

    Indexing into an object or array using bracket notation.

      Index: [
         o "INDEX_START Expression INDEX_END",       -> new IndexNode $2
         o "INDEX_SOAK Index",                       -> $2.soakNode: yes; $2
         o "INDEX_PROTO Index",                      -> $2.proto: yes; $2
    -  ]
    #

    In CoffeeScript, an object literal is simply a list of assignments.

      Object: [
    +  ]
    #

    In CoffeeScript, an object literal is simply a list of assignments.

      Object: [
         o "{ AssignList OptComma }",                -> new ObjectNode $2
    -  ]
    #

    Assignment of properties within an object literal can be separated by + ]

    #

    Assignment of properties within an object literal can be separated by comma, as in JavaScript, or simply by newline.

      AssignList: [
         o "",                                       -> []
         o "AssignObj",                              -> [$1]
         o "AssignList , AssignObj",                 -> $1.concat [$3]
         o "AssignList OptComma TERMINATOR AssignObj", -> $1.concat [$4]
         o "AssignList OptComma INDENT AssignList OptComma OUTDENT", -> $1.concat $4
    -  ]
    #

    Class definitions have optional bodies of prototype property assignments, + ]

    #

    Class definitions have optional bodies of prototype property assignments, and optional references to the superclass.

      Class: [
         o "CLASS SimpleAssignable",                 -> new ClassNode $2
         o "CLASS SimpleAssignable EXTENDS Value",   -> new ClassNode $2, $4
         o "CLASS SimpleAssignable INDENT ClassBody OUTDENT", -> new ClassNode $2, null, $4
         o "CLASS SimpleAssignable EXTENDS Value INDENT ClassBody OUTDENT", -> new ClassNode $2, $4, $6
    -  ]
    #

    Assignments that can happen directly inside a class declaration.

      ClassAssign: [
    +  ]
    #

    Assignments that can happen directly inside a class declaration.

      ClassAssign: [
         o "AssignObj",                              -> $1
         o "ThisProperty ASSIGN Expression",         -> new AssignNode new ValueNode($1), $3, 'this'
    -  ]
    #

    A list of assignments to a class.

      ClassBody: [
    +  ]
    #

    A list of assignments to a class.

      ClassBody: [
         o "",                                       -> []
         o "ClassAssign",                            -> [$1]
         o "ClassBody TERMINATOR ClassAssign",       -> $1.concat $3
    -  ]
    #

    The three flavors of function call: normal, object instantiation with new, + ]

    #

    The three flavors of function call: normal, object instantiation with new, and calling super()

      Call: [
         o "Invocation"
    -    o "NEW Invocation",                         -> $2.newInstance()
         o "Super"
    -  ]
    #

    Extending an object by setting its prototype chain to reference a parent + o "NEW Invocation", -> $2.newInstance() + o "NEW Value", -> (new CallNode($2, [])).newInstance() + ]

    #

    Extending an object by setting its prototype chain to reference a parent object.

      Extends: [
         o "SimpleAssignable EXTENDS Value",         -> new ExtendsNode $1, $3
    -  ]
    #

    Ordinary function invocation, or a chained series of calls.

      Invocation: [
    +  ]
    #

    Ordinary function invocation, or a chained series of calls.

      Invocation: [
         o "Value Arguments",                        -> new CallNode $1, $2
         o "Invocation Arguments",                   -> new CallNode $1, $2
    -  ]
    #

    The list of arguments to a function call.

      Arguments: [
    +  ]
    #

    The list of arguments to a function call.

      Arguments: [
         o "CALL_START ArgList OptComma CALL_END",   -> $2
    -  ]
    #

    Calling super.

      Super: [
    +  ]
    #

    Calling super.

      Super: [
         o "SUPER Arguments",                        -> new CallNode 'super', $2
    -  ]
    #

    A reference to the this current object.

      This: [
    +  ]
    #

    A reference to the this current object.

      This: [
         o "THIS",                                   -> new ValueNode new LiteralNode 'this'
         o "@",                                      -> new ValueNode new LiteralNode 'this'
    -  ]
    #

    A reference to a property on this.

      ThisProperty: [
    +  ]
    #

    A reference to a property on this.

      ThisProperty: [
         o "@ Identifier",                           -> new ValueNode new LiteralNode('this'), [new AccessorNode($2)]
    -  ]
    #

    The CoffeeScript range literal.

      Range: [
    +  ]
    #

    The CoffeeScript range literal.

      Range: [
         o "[ Expression . . Expression ]",          -> new RangeNode $2, $5
         o "[ Expression . . . Expression ]",        -> new RangeNode $2, $6, true
    -  ]
    #

    The slice literal.

      Slice: [
    +  ]
    #

    The slice literal.

      Slice: [
         o "INDEX_START Expression . . Expression INDEX_END", -> new RangeNode $2, $5
         o "INDEX_START Expression . . . Expression INDEX_END", -> new RangeNode $2, $6, true
    -  ]
    #

    The array literal.

      Array: [
    +  ]
    #

    The array literal.

      Array: [
         o "[ ArgList OptComma ]",                   -> new ArrayNode $2
    -  ]
    #

    The ArgList is both the list of objects passed into a function call, + ]

    #

    The ArgList is both the list of objects passed into a function call, as well as the contents of an array literal (i.e. comma-separated expressions). Newlines work as well.

      ArgList: [
         o "",                                       -> []
    @@ -211,31 +217,31 @@
         o "ArgList , Expression",                   -> $1.concat [$3]
         o "ArgList OptComma TERMINATOR Expression", -> $1.concat [$4]
         o "ArgList OptComma INDENT ArgList OptComma OUTDENT", -> $1.concat $4
    -  ]
    #

    Just simple, comma-separated, required arguments (no fancy syntax). We need + ]

    #

    Just simple, comma-separated, required arguments (no fancy syntax). We need this to be separate from the ArgList for use in Switch blocks, where having the newlines wouldn't make sense.

      SimpleArgs: [
         o "Expression"
         o "SimpleArgs , Expression",                ->
           if $1 instanceof Array then $1.concat([$3]) else [$1].concat([$3])
    -  ]
    #

    The variants of try/catch/finally exception handling blocks.

      Try: [
    +  ]
    #

    The variants of try/catch/finally exception handling blocks.

      Try: [
         o "TRY Block Catch",                        -> new TryNode $2, $3[0], $3[1]
         o "TRY Block FINALLY Block",                -> new TryNode $2, null, null, $4
         o "TRY Block Catch FINALLY Block",          -> new TryNode $2, $3[0], $3[1], $5
    -  ]
    #

    A catch clause names its error and runs a block of code.

      Catch: [
    +  ]
    #

    A catch clause names its error and runs a block of code.

      Catch: [
         o "CATCH Identifier Block",                 -> [$2, $3]
    -  ]
    #

    Throw an exception object.

      Throw: [
    +  ]
    #

    Throw an exception object.

      Throw: [
         o "THROW Expression",                       -> new ThrowNode $2
    -  ]
    #

    Parenthetical expressions. Note that the Parenthetical is a Value, + ]

    #

    Parenthetical expressions. Note that the Parenthetical is a Value, not an Expression, so if you need to use an expression in a place where only values are accepted, wrapping it in parentheses will always do the trick.

      Parenthetical: [
         o "( Line )",                               -> new ParentheticalNode $2
    -  ]
    #

    The condition portion of a while loop.

      WhileSource: [
    +  ]
    #

    The condition portion of a while loop.

      WhileSource: [
         o "WHILE Expression",                       -> new WhileNode $2
         o "WHILE Expression WHEN Expression",       -> new WhileNode $2, {guard : $4}
         o "UNTIL Expression",                       -> new WhileNode $2, {invert: true}
         o "UNTIL Expression WHEN Expression",       -> new WhileNode $2, {invert: true, guard: $4}
    -  ]
    #

    The while loop can either be normal, with a block of expressions to execute, + ]

    #

    The while loop can either be normal, with a block of expressions to execute, or postfix, with a single expression. There is no do..while.

      While: [
         o "WhileSource Block",                      -> $1.addBody $2
         o "Statement WhileSource",                  -> $2.addBody Expressions.wrap [$1]
    @@ -246,23 +252,23 @@
       Loop: [
         o "LOOP Block",                             -> new WhileNode(new LiteralNode 'true').addBody $2
         o "LOOP Expression",                        -> new WhileNode(new LiteralNode 'true').addBody Expressions.wrap [$2]
    -  ]
    #

    Array, object, and range comprehensions, at the most generic level. + ]

    #

    Array, object, and range comprehensions, at the most generic level. Comprehensions can either be normal, with a block of expressions to execute, or postfix, with a single expression.

      For: [
         o "Statement FOR ForVariables ForSource",   -> new ForNode $1, $4, $3[0], $3[1]
         o "Expression FOR ForVariables ForSource",  -> new ForNode $1, $4, $3[0], $3[1]
         o "FOR ForVariables ForSource Block",       -> new ForNode $4, $3, $2[0], $2[1]
    -  ]
    #

    An array of all accepted values for a variable inside the loop. This + ]

    #

    An array of all accepted values for a variable inside the loop. This enables support for pattern matching.

      ForValue: [
         o "Identifier"
         o "Array",                                  -> new ValueNode $1
         o "Object",                                 -> new ValueNode $1
    -  ]
    #

    An array or range comprehension has variables for the current element and + ]

    #

    An array or range comprehension has variables for the current element and (optional) reference to the current index. Or, key, value, in the case of object comprehensions.

      ForVariables: [
         o "ForValue",                               -> [$1]
         o "ForValue , ForValue",                    -> [$1, $3]
    -  ]
    #

    The source of a comprehension is an array or object with an optional guard + ]

    #

    The source of a comprehension is an array or object with an optional guard clause. If it's an array comprehension, you can also choose to step through in fixed-size increments.

      ForSource: [
         o "IN Expression",                               -> {source: $2}
    @@ -272,34 +278,34 @@
         o "IN Expression BY Expression",                 -> {source: $2, step:   $4}
         o "IN Expression WHEN Expression BY Expression", -> {source: $2, guard: $4, step:   $6}
         o "IN Expression BY Expression WHEN Expression", -> {source: $2, step:   $4, guard: $6}
    -  ]
    #

    The CoffeeScript switch/when/else block replaces the JavaScript + ]

    #

    The CoffeeScript switch/when/else block replaces the JavaScript switch/case/default by compiling into an if-else chain.

      Switch: [
         o "SWITCH Expression INDENT Whens OUTDENT", -> $4.switchesOver $2
         o "SWITCH Expression INDENT Whens ELSE Block OUTDENT", -> $4.switchesOver($2).addElse $6, true
         o "SWITCH INDENT Whens OUTDENT",            -> $3
         o "SWITCH INDENT Whens ELSE Block OUTDENT", -> $3.addElse $5, true
    -  ]
    #

    The inner list of whens is left recursive. At code-generation time, the + ]

    #

    The inner list of whens is left recursive. At code-generation time, the IfNode will rewrite them into a proper chain.

      Whens: [
         o "When"
         o "Whens When",                             -> $1.addElse $2
    -  ]
    #

    An individual When clause, with action.

      When: [
    +  ]
    #

    An individual When clause, with action.

      When: [
         o "LEADING_WHEN SimpleArgs Block",            -> new IfNode $2, $3, {statement: true}
         o "LEADING_WHEN SimpleArgs Block TERMINATOR", -> new IfNode $2, $3, {statement: true}
    -  ]
    #

    The most basic form of if is a condition and an action. The following + ]

    #

    The most basic form of if is a condition and an action. The following if-related rules are broken up along these lines in order to avoid ambiguity.

      IfBlock: [
         o "IF Expression Block",                    -> new IfNode $2, $3
         o "UNLESS Expression Block",                -> new IfNode $2, $3, {invert: true}
         o "IfBlock ELSE IF Expression Block",       -> $1.addElse (new IfNode($4, $5)).forceStatement()
         o "IfBlock ELSE Block",                     -> $1.addElse $3
    -  ]
    #

    The full complement of if expressions, including postfix one-liner + ]

    #

    The full complement of if expressions, including postfix one-liner if and unless.

      If: [
         o "IfBlock"
         o "Statement IF Expression",                -> new IfNode $3, Expressions.wrap([$1]), {statement: true}
         o "Expression IF Expression",               -> new IfNode $3, Expressions.wrap([$1]), {statement: true}
         o "Statement UNLESS Expression",            -> new IfNode $3, Expressions.wrap([$1]), {statement: true, invert: true}
         o "Expression UNLESS Expression",           -> new IfNode $3, Expressions.wrap([$1]), {statement: true, invert: true}
    -  ]
    #

    Arithmetic and logical operators, working on one or more operands. + ]

    #

    Arithmetic and logical operators, working on one or more operands. Here they are grouped by order of precedence. The actual precedence rules are defined at the bottom of the page. It would be shorter if we could combine most of these rules into a single generic Operand OpSymbol Operand @@ -341,7 +347,7 @@ o "Expression && Expression", -> new OpNode '&&', $1, $3 o "Expression || Expression", -> new OpNode '||', $1, $3 - o "Expression ? Expression", -> new OpNode '?', $1, $3 + o "Expression OP? Expression", -> new OpNode '?', $1, $3 o "Expression -= Expression", -> new OpNode '-=', $1, $3 o "Expression += Expression", -> new OpNode '+=', $1, $3 @@ -359,7 +365,7 @@ o "Expression ! OF Expression", -> new OpNode '!', new ParentheticalNode new OpNode 'in', $1, $4 ] -}

    #

    Precedence

    #

    Operators at the top of this list have higher precedence than the ones lower +}

    #

    Precedence

    #

    Operators at the top of this list have higher precedence than the ones lower down. Following these rules is what makes 2 + 3 * 4 parse as:

    2 + (3 * 4)
    @@ -378,7 +384,7 @@
       ["left",      '<=', '<', '>', '>=']
       ["right",     'DELETE', 'INSTANCEOF', 'TYPEOF']
       ["left",      '==', '!=']
    -  ["left",      '&&', '||']
    +  ["left",      '&&', '||', 'OP?']
       ["right",     '-=', '+=', '/=', '*=', '%=', '||=', '&&=', '?=']
       ["left",      '.']
       ["right",     'INDENT']
    @@ -388,7 +394,7 @@
       ["left",      'EXTENDS']
       ["right",     'ASSIGN', 'RETURN']
       ["right",     '->', '=>', 'UNLESS', 'IF', 'ELSE']
    -]
    #

    Wrapping Up

    #

    Finally, now what we have our grammar and our operators, we can create +]

    #

    Wrapping Up

    #

    Finally, now what we have our grammar and our operators, we can create our Jison.Parser. We do this by processing all of our rules, recording all terminals (every symbol which does not appear as the name of a rule above) as "tokens".

    tokens: []
    @@ -397,7 +403,7 @@
         for token in alt[0].split ' '
           tokens.push token unless grammar[token]
         alt[1] = "return ${alt[1]}" if name is 'Root'
    -    alt
    #

    Initialize the Parser with our list of terminal tokens, our grammar + alt

    #

    Initialize the Parser with our list of terminal tokens, our grammar rules, and the name of the root. Reverse the operators because Jison orders precedence from low to high, and we have it high to low (as in Yacc).

    exports.parser: new Parser {
    diff --git a/documentation/docs/lexer.html b/documentation/docs/lexer.html
    index 978897db5b..37be4ea1c2 100644
    --- a/documentation/docs/lexer.html
    +++ b/documentation/docs/lexer.html
    @@ -40,7 +40,7 @@
           @extractNextToken()
         @closeIndentation()
         return @tokens if o.rewrite is off
    -    (new Rewriter()).rewrite @tokens
    #

    At every position, run through this list of attempted matches, + (new Rewriter).rewrite @tokens

    #

    At every position, run through this list of attempted matches, short-circuiting if any of them succeed. Their order determines precedence: @literalToken is the fallback catch-all.

      extractNextToken: ->
         return if @identifierToken()
    @@ -75,8 +75,8 @@
           else if include(RESERVED, id)
             @identifierError id
         unless forcedIdentifier
    -      tag: id: CONVERSIONS[id]         if include COFFEE_ALIASES, id
    -      return @tagHalfAssignment tag  if @prev() and @prev()[0] is 'ASSIGN' and include HALF_ASSIGNMENTS, tag
    +      tag: id: CONVERSIONS[id]      if include COFFEE_ALIASES, id
    +      return @tagHalfAssignment tag if @prev() and @prev()[0] is 'ASSIGN' and include HALF_ASSIGNMENTS, tag
         @token tag, id
         @token ']', ']' if close_index
         true
    #

    Matches numbers, including decimals, hex, and exponential notation. @@ -106,6 +106,10 @@ return false unless match: @chunk.match(COMMENT) @line: + count match[1], "\n" @i: + match[1].length + if match[2] + comment: @sanitizeHeredoc match[2], {herecomment: true} + @token 'HERECOMMENT', comment.split MULTILINER + @token 'TERMINATOR', '\n' true

    #

    Matches JavaScript interpolated directly into the source via backticks.

      jsToken: ->
         return false unless starts @chunk, '`'
         return false unless script: @balancedToken ['`', '`']
    @@ -199,6 +203,8 @@
           @assignmentError() if include JS_FORBIDDEN, @value
         else if value is ';'
           tag: 'TERMINATOR'
    +    else if value is '?' and prevSpaced
    +      tag: 'OP?'
         else if include(CALLABLE, @tag()) and not prevSpaced
           if value is '('
             tag: 'CALL_START'
    @@ -223,14 +229,16 @@
             @tag 1, 'PROPERTY_ACCESS'
         else
           prev[0] is '@'
    -    if accessor then 'accessor' else false
    #

    Sanitize a heredoc by escaping internal double quotes and + if accessor then 'accessor' else false

    #

    Sanitize a heredoc or herecomment by escaping internal double quotes and erasing all external indentation on the left-hand side.

      sanitizeHeredoc: (doc, options) ->
         while match: HEREDOC_INDENT.exec doc
           attempt: if match[2]? then match[2] else match[3]
           indent: attempt if not indent or attempt.length < indent.length
    -    doc.replace(new RegExp("^" +indent, 'gm'), '')
    -       .replace(MULTILINER, "\\n")
    +    doc: doc.replace(new RegExp("^" +indent, 'gm'), '')
    +    return doc if options.herecomment
    +    doc.replace(MULTILINER, "\\n")
            .replace(new RegExp(options.quote, 'g'), "\\$options.quote")
    #

    Tag a half assignment.

      tagHalfAssignment: (tag) ->
    +    tag:  '?' if tag is 'OP?'
         last: @tokens.pop()
         @tokens.push ["$tag=", "$tag=", last[2]]
         true
    #

    A source of ambiguity in our grammar used to be parameter lists in function @@ -293,7 +301,7 @@ if str.length < 3 or not starts str, '"' @token 'STRING', str else - lexer: new Lexer() + lexer: new Lexer tokens: [] quote: str.substring 0, 1 [i, pi]: [1, 1] @@ -311,6 +319,7 @@ tokens.push ['STRING', "$quote${ str.substring(pi, i) }$quote"] if pi < i inner: expr.substring(2, expr.length - 1) if inner.length + inner: inner.replace new RegExp('\\\\' + quote, 'g'), quote nested: lexer.tokenize "($inner)", {line: @line} (tok[0]: ')') for tok, idx in nested when tok[0] is 'CALL_END' nested.pop() @@ -375,9 +384,9 @@ NUMBER : /^(((\b0(x|X)[0-9a-fA-F]+)|((\b[0-9]+(\.[0-9]+)?|\.[0-9]+)(e[+\-]?[0-9]+)?)))\b/i HEREDOC : /^("{6}|'{6}|"{3}\n?([\s\S]*?)\n?([ \t]*)"{3}|'{3}\n?([\s\S]*?)\n?([ \t]*)'{3})/ INTERPOLATION : /^\$([a-zA-Z_@]\w*(\.\w+)*)/ -OPERATOR : /^([+\*&|\/\-%=<>:!?]+)([ \t]*)/ +OPERATOR : /^(-[\-=>]?|\+[+=]?|[*&|\/%=<>:!?]+)([ \t]*)/ WHITESPACE : /^([ \t]+)/ -COMMENT : /^(\s*#{3}(?!#)[ \t]*\n+([\s\S]*?)[ \t]*\n+[ \t]*#{3}|(\s*#[^\n]*)+)/ +COMMENT : /^(\s*#{3}(?!#)[ \t]*\n+([\s\S]*?)[ \t]*\n+[ \t]*#{3}|(\s*#(?!##[^#])[^\n]*)+)/ CODE : /^((-|=)>)/ MULTI_DENT : /^((\n([ \t]*))+)(\.)?/ LAST_DENTS : /\n([ \t]*)/g @@ -390,7 +399,7 @@ STRING_NEWLINES : /\n[ \t]*/g NO_NEWLINE : /^([+\*&|\/\-%=<>:!.\\][<>=&|]*|and|or|is|isnt|not|delete|typeof|instanceof)$/ HEREDOC_INDENT : /(\n+([ \t]*)|^([ \t]+))/g -ASSIGNED : /^([a-zA-Z\$_]\w*[ \t]*?[:=])/ +ASSIGNED : /^([a-zA-Z\$_]\w*[ \t]*?[:=][^=])/ NEXT_CHARACTER : /^\s*(\S)/

    #

    Tokens which a regular expression will never immediately follow, but which a division operator might.

    @@ -402,7 +411,7 @@ parentheses or bracket following these tokens will be recorded as the start of a function invocation or indexing operation.

    CALLABLE: ['IDENTIFIER', 'SUPER', ')', ']', '}', 'STRING', '@', 'THIS', '?', '::']
    #

    Tokens that, when immediately preceding a WHEN, indicate that the WHEN occurs at the start of a line. We disambiguate these from trailing whens to -avoid an ambiguity in the grammar.

    LINE_BREAK: ['INDENT', 'OUTDENT', 'TERMINATOR']
    #

    Half-assignments...

    HALF_ASSIGNMENTS: ['-', '+', '/', '*', '%', '||', '&&', '?']
    #

    Conversions from CoffeeScript operators into JavaScript ones.

    CONVERSIONS: {
    +avoid an ambiguity in the grammar.

    LINE_BREAK: ['INDENT', 'OUTDENT', 'TERMINATOR']
    #

    Half-assignments...

    HALF_ASSIGNMENTS: ['-', '+', '/', '*', '%', '||', '&&', '?', 'OP?']
    #

    Conversions from CoffeeScript operators into JavaScript ones.

    CONVERSIONS: {
       'and':  '&&'
       'or':   '||'
       'is':   '=='
    diff --git a/documentation/docs/nodes.html b/documentation/docs/nodes.html
    index 58176fc095..167f6a6e2a 100644
    --- a/documentation/docs/nodes.html
    +++ b/documentation/docs/nodes.html
    @@ -33,7 +33,7 @@
           del @options, 'chainRoot' unless this instanceof AccessorNode or this instanceof IndexNode
         top:      if @topSensitive() then @options.top else del @options, 'top'
         closure:  @isStatement() and not @isPureStatement() and not top and
    -              not @options.asStatement and
    +              not @options.asStatement and not (this instanceof CommentNode) and
                   not @containsPureStatement()
         if closure then @compileClosure(@options) else @compileNode(@options)
    #

    Statements converted into expressions via closure-wrapping share a scope object with their parent closure, to preserve the expected lexical scope.

      compileClosure: (o) ->
    @@ -70,9 +70,10 @@
         this instanceof type or @contains (n) -> n instanceof type
    #

    Convenience for the most common use of contains. Does the node contain a pure statement?

      containsPureStatement: ->
         @isPureStatement() or @contains (n) -> n.isPureStatement()
    #

    Perform an in-order traversal of the AST. Crosses scope boundaries.

      traverse: (block) -> @traverseChildren true, block
    #

    toString representation of the node, for inspecting the parse tree. -This is what coffee --nodes prints out.

      toString: (idt) ->
    +This is what coffee --nodes prints out.

      toString: (idt, override) ->
         idt: or ''
    -    '\n' + idt + @class + (child.toString(idt + TAB) for child in @collectChildren()).join('')
    +    children: (child.toString idt + TAB for child in @collectChildren()).join('')
    +    '\n' + idt + (override or @class) + children
     
       eachChild: (func) ->
         return unless @children
    @@ -92,9 +93,9 @@
     will override these with custom logic, if needed.

      class:     'BaseNode'
       children: []
     
    -  unwrap:            -> this
    +  unwrap:           -> this
       isStatement:      -> no
    -  isPureStatement: -> no
    +  isPureStatement:  -> no
       topSensitive:     -> no
    #

    Expressions

    #

    The expressions body is the list of expressions that forms the body of an indented block of code -- the implementation of a function, a clause in an if, switch, or try, and so on...

    exports.Expressions: class Expressions extends BaseNode
    @@ -115,6 +116,7 @@
     ensures that the final expression is returned.

      makeReturn: ->
         idx:  @expressions.length - 1
         last: @expressions[idx]
    +    last: @expressions[idx: - 1] if last instanceof CommentNode
         return this if not last or last instanceof ReturnNode
         @expressions[idx]: last.makeReturn()
         this
    #

    An Expressions is the only node that can serve as the root.

      compile: (o) ->
    @@ -128,14 +130,14 @@
     clean up obvious double-parentheses.

      compileRoot: (o) ->
         o.indent: @tab: if o.noWrap then '' else TAB
         o.scope: new Scope(null, this, null)
    -    code: if o.globals then @compileNode(o) else @compileWithDeclarations(o)
    +    code: @compileWithDeclarations(o)
         code: code.replace(TRAILING_WHITESPACE, '')
         code: code.replace(DOUBLE_PARENS, '($1)')
         if o.noWrap then code else "(function(){\n$code\n})();\n"
    #

    Compile the expressions body for the contents of a function, with declarations of all inner variables pushed up to the top.

      compileWithDeclarations: (o) ->
         code: @compileNode(o)
         code: "${@tab}var ${o.scope.compiledAssignments()};\n$code"  if o.scope.hasAssignments(this)
    -    code: "${@tab}var ${o.scope.compiledDeclarations()};\n$code" if o.scope.hasDeclarations(this)
    +    code: "${@tab}var ${o.scope.compiledDeclarations()};\n$code" if not o.globals and o.scope.hasDeclarations(this)
         code
    #

    Compiles a single expression within the expressions body. If we need to return the result, and it's an expression, simply return it. If it's a statement, ask the statement to do so.

      compileExpression: (node, o) ->
    @@ -173,16 +175,15 @@
       constructor: (expression) ->
         @expression: expression
     
    -  topSensitive: ->
    -    true
    -
       makeReturn: ->
         this
     
    -  compileNode: (o) ->
    +  compile: (o) ->
         expr: @expression.makeReturn()
    -    return expr.compile(o) unless expr instanceof ReturnNode
    -    del o, 'top'
    +    return expr.compile o unless expr instanceof ReturnNode
    +    super o
    +
    +  compileNode: (o) ->
         o.asStatement: true if @expression.isStatement()
         "${@tab}return ${@expression.compile(o)};"
    #

    ValueNode

    #

    A value, variable or literal or parenthesized, indexed or dotted into, or vanilla.

    exports.ValueNode: class ValueNode extends BaseNode
    @@ -217,14 +218,15 @@
         return true if this is o.chainRoot and @properties[0] instanceof AccessorNode
         node: o.chainRoot.base or o.chainRoot.variable
         while node instanceof CallNode then node: node.variable
    -    node is this
    #

    We compile a value to JavaScript by compiling and joining each property. + node is this

    #

    Override compile to unwrap the value when possible.

      compile: (o) ->
    +    if not o.top or @properties.length then super(o) else @base.compile(o)
    #

    We compile a value to JavaScript by compiling and joining each property. Things get much more insteresting if the chain of properties has soak operators ?. interspersed. Then we have to take care not to accidentally evaluate a anything twice when building the soak chain.

      compileNode: (o) ->
    -    only:         del(o, 'onlyFirst')
    -    op:           del(o, 'operation')
    +    only:         del o, 'onlyFirst'
    +    op:           del o, 'operation'
         props:        if only then @properties[0...@properties.length - 1] else @properties
    -    o.chainRoot: or this
    +    o.chainRoot:  or this
         baseline:     @base.compile o
         baseline:     "($baseline)" if @hasProperties() and (@base instanceof ObjectNode or @isNumber())
         complete:     @last: baseline
    @@ -243,7 +245,21 @@
             complete: + part
             @last: part
     
    -    if op and @wrapped then "($complete)" else complete
    #

    CallNode

    #

    Node for a function invocation. Takes care of converting super() calls into + if op and @wrapped then "($complete)" else complete

    #

    CommentNode

    #

    CoffeeScript passes through block comments as JavaScript block comments +at the same position.

    exports.CommentNode: class CommentNode extends BaseNode
    +
    +  class: 'CommentNode'
    +  isStatement: -> yes
    +
    +  constructor: (lines) ->
    +    @lines: lines
    +
    +  makeReturn: ->
    +    this
    +
    +  compileNode: (o) ->
    +    sep: "\n$@tab"
    +    "$@tab/*$sep${ @lines.join(sep) }\n$@tab*/"
    #

    CallNode

    #

    Node for a function invocation. Takes care of converting super() calls into calls against the prototype's function of the same name.

    exports.CallNode: class CallNode extends BaseNode
     
       class:     'CallNode'
    @@ -255,18 +271,18 @@
         @variable:  if @isSuper then null else variable
         @args:      (args or [])
         @compileSplatArguments: (o) ->
    -      SplatNode.compileMixedArray.call(this, @args, o)
    #

    Tag this invocation as creating a new instance.

      newInstance: ->
    +      SplatNode.compileMixedArray.call(this, @args, o)
    #

    Tag this invocation as creating a new instance.

      newInstance: ->
         @isNew: true
         this
     
       prefix: ->
    -    if @isNew then 'new ' else ''
    #

    Grab the reference to the superclass' implementation of the current method.

      superReference: (o) ->
    +    if @isNew then 'new ' else ''
    #

    Grab the reference to the superclass' implementation of the current method.

      superReference: (o) ->
         methname: o.scope.method.name
         meth: if o.scope.method.proto
           "${o.scope.method.proto}.__superClass__.$methname"
         else if methname
           "${methname}.__superClass__.constructor"
    -    else throw new Error "cannot call super on an anonymous function."
    #

    Compile a vanilla function call.

      compileNode: (o) ->
    +    else throw new Error "cannot call super on an anonymous function."
    #

    Compile a vanilla function call.

      compileNode: (o) ->
         o.chainRoot: this unless o.chainRoot
         for arg in @args when arg instanceof SplatNode
           compilation: @compileSplat(o)
    @@ -274,9 +290,9 @@
           args: (arg.compile(o) for arg in @args).join(', ')
           compilation: if @isSuper then @compileSuper(args, o)
           else "${@prefix()}${@variable.compile(o)}($args)"
    -    if o.operation and @wrapped then "($compilation)" else compilation
    #

    super() is converted into a call against the superclass's implementation + if o.operation and @wrapped then "($compilation)" else compilation

    #

    super() is converted into a call against the superclass's implementation of the current function.

      compileSuper: (args, o) ->
    -    "${@superReference(o)}.call(this${ if args.length then ', ' else '' }$args)"
    #

    If you call a function with a splat, it's converted into a JavaScript + "${@superReference(o)}.call(this${ if args.length then ', ' else '' }$args)"

    #

    If you call a function with a splat, it's converted into a JavaScript .apply() call to allow an array of arguments to be passed.

      compileSplat: (o) ->
         meth: if @variable then @variable.compile(o) else @superReference(o)
         obj:  @variable and @variable.source or 'this'
    @@ -284,7 +300,7 @@
           temp: o.scope.freeVariable()
           obj:  temp
           meth: "($temp = ${ @variable.source })${ @variable.last }"
    -    "${@prefix()}${meth}.apply($obj, ${ @compileSplatArguments(o) })"
    #

    ExtendsNode

    #

    Node to extend an object's prototype with an ancestor object. + "${@prefix()}${meth}.apply($obj, ${ @compileSplatArguments(o) })"

    #

    ExtendsNode

    #

    Node to extend an object's prototype with an ancestor object. After goog.inherits from the Closure Library.

    exports.ExtendsNode: class ExtendsNode extends BaseNode
     
    @@ -293,9 +309,9 @@
     
       constructor: (child, parent) ->
         @child: child
    -    @parent: parent
    #

    Hooks one constructor into another's prototype chain.

      compileNode: (o) ->
    +    @parent: parent
    #

    Hooks one constructor into another's prototype chain.

      compileNode: (o) ->
         ref:  new ValueNode literal utility 'extends'
    -    (new CallNode ref, [@child, @parent]).compile o
    #

    AccessorNode

    #

    A . accessor into a property of a value, or the :: shorthand for + (new CallNode ref, [@child, @parent]).compile o

    #

    AccessorNode

    #

    A . accessor into a property of a value, or the :: shorthand for an accessor into the object's prototype.

    exports.AccessorNode: class AccessorNode extends BaseNode
     
       class:     'AccessorNode'
    @@ -310,7 +326,7 @@
         name: @name.compile o
         o.chainRoot.wrapped: or @soakNode
         namePart: if name.match(IS_STRING) then "[$name]" else ".$name"
    -    @prototype + namePart
    #

    IndexNode

    #

    A [ ... ] indexed accessor into an array or object.

    exports.IndexNode: class IndexNode extends BaseNode
    +    @prototype + namePart
    #

    IndexNode

    #

    A [ ... ] indexed accessor into an array or object.

    exports.IndexNode: class IndexNode extends BaseNode
     
       class:     'IndexNode'
       children: ['index']
    @@ -322,7 +338,7 @@
         o.chainRoot.wrapped: or @soakNode
         idx: @index.compile o
         prefix: if @proto then '.prototype' else ''
    -    "$prefix[$idx]"
    #

    RangeNode

    #

    A range literal. Ranges can be used to extract portions (slices) of arrays, + "$prefix[$idx]"

    #

    RangeNode

    #

    A range literal. Ranges can be used to extract portions (slices) of arrays, to specify a range for comprehensions, or as a value, to be expanded into the corresponding array of integers at runtime.

    exports.RangeNode: class RangeNode extends BaseNode
     
    @@ -332,14 +348,14 @@
       constructor: (from, to, exclusive) ->
         @from: from
         @to: to
    -    @exclusive: !!exclusive
    #

    Compiles the range's source variables -- where it starts and where it ends. + @exclusive: !!exclusive

    #

    Compiles the range's source variables -- where it starts and where it ends. But only if they need to be cached to avoid double evaluation.

      compileVariables: (o) ->
         [@from, @fromVar]: @from.compileReference o
         [@to, @toVar]:     @to.compileReference o
         parts: []
         parts.push @from.compile o if @from isnt @fromVar
         parts.push @to.compile o if @to isnt @toVar
    -    if parts.length then "${parts.join('; ')};\n$o.indent" else ''
    #

    When compiled normally, the range returns the contents of the for loop + if parts.length then "${parts.join('; ')};" else ''

    #

    When compiled normally, the range returns the contents of the for loop needed to iterate over the values in the range. Used by comprehensions.

      compileNode: (o) ->
         return    @compileArray(o) unless o.index
         idx:      del o, 'index'
    @@ -348,17 +364,19 @@
         step:     if step then step.compile(o) else '1'
         equals:   if @exclusive then '' else '='
         op:       if starts(step, '-') then ">$equals" else "<$equals"
    -    "$vars; ${idx} $op ${@toVar.compile(o)}; $idx += $step"
    #

    When used as a value, expand the range into the equivalent array.

      compileArray: (o) ->
    +    "$vars; ${idx} $op ${@toVar.compile(o)}; $idx += $step"
    #

    When used as a value, expand the range into the equivalent array.

      compileArray: (o) ->
         idt:    @idt 1
         vars:   @compileVariables(merge(o, {indent: idt}))
         equals: if @exclusive then '' else '='
         from:   @fromVar.compile o
         to:     @toVar.compile o
    +    result: o.scope.freeVariable()
    +    i:      o.scope.freeVariable()
         clause: "$from <= $to ?"
    -    pre:    "\n${idt}a = [];${vars}"
    -    body:   "var i = $from; ($clause i <$equals $to : i >$equals $to); ($clause i += 1 : i -= 1)"
    -    post:   "a.push(i);\n${idt}return a;\n$o.indent"
    -    "(function(){${pre}for ($body) $post}).call(this)"
    #

    SliceNode

    #

    An array slice literal. Unlike JavaScript's Array#slice, the second parameter + pre: "\n${idt}${result} = []; ${vars}" + body: "var $i = $from; $clause $i <$equals $to : $i >$equals $to; $clause $i += 1 : $i -= 1" + post: "{ ${result}.push($i) };\n${idt}return $result;\n$o.indent" + "(function(){${pre}\n${idt}for ($body)$post}).call(this)"

    #

    SliceNode

    #

    An array slice literal. Unlike JavaScript's Array#slice, the second parameter specifies the index of the end of the slice, just as the first parameter is the index of the beginning.

    exports.SliceNode: class SliceNode extends BaseNode
     
    @@ -372,7 +390,7 @@
         from:       @range.from.compile(o)
         to:         @range.to.compile(o)
         plusPart:  if @range.exclusive then '' else ' + 1'
    -    ".slice($from, $to$plusPart)"
    #

    ObjectNode

    #

    An object literal, nothing fancy.

    exports.ObjectNode: class ObjectNode extends BaseNode
    +    ".slice($from, $to$plusPart)"
    #

    ObjectNode

    #

    An object literal, nothing fancy.

    exports.ObjectNode: class ObjectNode extends BaseNode
     
       class:     'ObjectNode'
       children: ['properties']
    @@ -382,14 +400,18 @@
     
       compileNode: (o) ->
         o.indent: @idt 1
    -    last: @properties.length - 1
    +    nonComments: prop for prop in @properties when not (prop instanceof CommentNode)
    +    lastNoncom:  nonComments[nonComments.length - 1]
         props: for prop, i in @properties
    -      join:   if i is last then '' else ',\n'
    -      prop:   new AssignNode prop, prop, 'object' unless prop instanceof AssignNode
    -      @idt(1) + prop.compile(o) + join
    +      join:   ",\n"
    +      join:   "\n" if (prop is lastNoncom) or (prop instanceof CommentNode)
    +      join:   '' if i is @properties.length - 1
    +      indent: if prop instanceof CommentNode then '' else @idt 1
    +      prop:   new AssignNode prop, prop, 'object' unless prop instanceof AssignNode or prop instanceof CommentNode
    +      indent + prop.compile(o) + join
         props: props.join('')
         inner: if props then '\n' + props + '\n' + @idt() else ''
    -    "{$inner}"
    #

    ArrayNode

    #

    An array literal.

    exports.ArrayNode: class ArrayNode extends BaseNode
    +    "{$inner}"
    #

    ArrayNode

    #

    An array literal.

    exports.ArrayNode: class ArrayNode extends BaseNode
     
       class:     'ArrayNode'
       children: ['objects']
    @@ -406,6 +428,8 @@
           code: obj.compile(o)
           if obj instanceof SplatNode
             return @compileSplatLiteral @objects, o
    +      else if obj instanceof CommentNode
    +        objects.push "\n$code\n$o.indent"
           else if i is @objects.length - 1
             objects.push code
           else
    @@ -414,11 +438,11 @@
         if indexOf(objects, '\n') >= 0
           "[\n${@idt(1)}$objects\n$@tab]"
         else
    -      "[$objects]"
    #

    ClassNode

    #

    The CoffeeScript class definition.

    exports.ClassNode: class ClassNode extends BaseNode
    +      "[$objects]"
    #

    ClassNode

    #

    The CoffeeScript class definition.

    exports.ClassNode: class ClassNode extends BaseNode
     
       class:        'ClassNode'
       children:     ['variable', 'parent', 'properties']
    -  isStatement:  -> yes
    #

    Initialize a ClassNode with its name, an optional superclass, and a + isStatement: -> yes

    #

    Initialize a ClassNode with its name, an optional superclass, and a list of prototype property assignments.

      constructor: (variable, parent, props) ->
         @variable: variable
         @parent: parent
    @@ -427,11 +451,11 @@
     
       makeReturn: ->
         @returns: true
    -    this
    #

    Instead of generating the JavaScript string directly, we build up the + this

    #

    Instead of generating the JavaScript string directly, we build up the equivalent syntax tree and compile that, in pieces. You can see the constructor, property assignments, and inheritance getting built out below.

      compileNode: (o) ->
         extension:  @parent and new ExtendsNode(@variable, @parent)
    -    props:      new Expressions()
    +    props:      new Expressions
         o.top:      true
         me:         null
         className:  @variable.compile o
    @@ -443,11 +467,12 @@
             new CallNode(applied, [literal('this'), literal('arguments')])
           ]))
         else
    -      constructor: new CodeNode()
    +      constructor: new CodeNode
     
         for prop in @properties
           [pvar, func]: [prop.variable, prop.value]
           if pvar and pvar.base.value is 'constructor' and func instanceof CodeNode
    +        throw new Error "cannot define a constructor as a bound function." if func.bound
             func.name: className
             func.body.push new ReturnNode literal 'this'
             @variable: new ValueNode @variable
    @@ -472,8 +497,8 @@
         props:     if props.empty() then '' else props.compile(o) + '\n'
         extension: if extension     then @idt() + extension.compile(o) + ';\n' else ''
         returns:   if @returns      then new ReturnNode(@variable).compile(o)  else ''
    -    "$construct$extension$props$returns"
    #

    AssignNode

    #

    The AssignNode is used to assign a local variable to value, or to set the -property of an object -- including within object literals.

    exports.AssignNode: class AssignNode extends BaseNode
    #

    Matchers for detecting prototype assignments.

      PROTO_ASSIGN: /^(\S+)\.prototype/
    +    "$construct$extension$props$returns"
    #

    AssignNode

    #

    The AssignNode is used to assign a local variable to value, or to set the +property of an object -- including within object literals.

    exports.AssignNode: class AssignNode extends BaseNode
    #

    Matchers for detecting prototype assignments.

      PROTO_ASSIGN: /^(\S+)\.prototype/
       LEADING_DOT:  /^\.(prototype\.)?/
     
       class:     'AssignNode'
    @@ -494,7 +519,7 @@
         return new Expressions [this, new ReturnNode(@variable)]
     
       isStatement: ->
    -    @isValue() and (@variable.isArray() or @variable.isObject())
    #

    Compile an assignment, delegating to compilePatternMatch or + @isValue() and (@variable.isArray() or @variable.isObject())

    #

    Compile an assignment, delegating to compilePatternMatch or compileSplice if appropriate. Keep track of the name of the base object we've been assigned to, for correct internal references. If the variable has not been seen yet within the current scope, declare it.

      compileNode: (o) ->
    @@ -514,7 +539,7 @@
         o.scope.find name unless @isValue() and (@variable.hasProperties() or @variable.namespaced)
         val: "$name = $val"
         return "$@tab$val;" if stmt
    -    if top then val else "($val)"
    #

    Brief implementation of recursive pattern matching, when assigning array or + if top then val else "($val)"

    #

    Brief implementation of recursive pattern matching, when assigning array or object literals to a value. Peeks at their properties to assign inner names. See the ECMAScript Harmony Wiki for details.

      compilePatternMatch: (o) ->
    @@ -524,10 +549,10 @@
         o.top: true
         o.asStatement: true
         splat: false
    -    for obj, i in @variable.base.objects
    #

    A regular array pattern-match.

          idx: i
    +    for obj, i in @variable.base.objects
    #

    A regular array pattern-match.

          idx: i
           if @variable.isObject()
    -        if obj instanceof AssignNode
    #

    A regular object pattern-match.

              [obj, idx]: [obj.value, obj.variable.base]
    -        else
    #

    A shorthand {a, b, c}: val pattern-match.

              idx: obj
    +        if obj instanceof AssignNode
    #

    A regular object pattern-match.

              [obj, idx]: [obj.value, obj.variable.base]
    +        else
    #

    A shorthand {a, b, c}: val pattern-match.

              idx: obj
           if not (obj instanceof ValueNode or obj instanceof SplatNode)
             throw new Error 'pattern matching must use only identifiers on the left-hand side.'
           isString: idx.value and idx.value.match IS_STRING
    @@ -542,7 +567,7 @@
             val: new ValueNode(literal(valVar), [new accessClass(idx)])
           assigns.push(new AssignNode(obj, val).compile(o))
         code: assigns.join("\n")
    -    code
    #

    Compile the assignment from an array splice literal, using JavaScript's + code

    #

    Compile the assignment from an array splice literal, using JavaScript's Array#splice method.

      compileSplice: (o) ->
         name:   @variable.compile merge o, {onlyFirst: true}
         l:      @variable.properties.length
    @@ -551,7 +576,7 @@
         from:   range.from.compile(o)
         to:     range.to.compile(o) + ' - ' + from + plus
         val:    @value.compile(o)
    -    "${name}.splice.apply($name, [$from, $to].concat($val))"
    #

    CodeNode

    #

    A function definition. This is the only node that creates a new Scope. + "${name}.splice.apply($name, [$from, $to].concat($val))"

    #

    CodeNode

    #

    A function definition. This is the only node that creates a new Scope. When for the purposes of walking the contents of a function body, the CodeNode has no children -- they're within the inner scope.

    exports.CodeNode: class CodeNode extends BaseNode
     
    @@ -560,8 +585,8 @@
     
       constructor: (params, body, tag) ->
         @params:  params or []
    -    @body:    body or new Expressions()
    -    @bound:   tag is 'boundfunc'
    #

    Compilation creates a new scope unless explicitly asked to share with the + @body: body or new Expressions + @bound: tag is 'boundfunc'

    #

    Compilation creates a new scope unless explicitly asked to share with the outer scope. Handles splat parameters in the parameter list by peeking at the JavaScript arguments objects. If the function is bound with the => arrow, generates a wrapper that saves the current value of this through @@ -599,13 +624,13 @@ "(function(__this) {\n${@idt(1)}var __func = $func;\n${@idt(1)}return $inner\n$@tab})(this)" topSensitive: -> - true

    #

    Short-circuit traverseChildren method to prevent it from crossing scope boundaries + true

    #

    Short-circuit traverseChildren method to prevent it from crossing scope boundaries unless crossScope is true

      traverseChildren: (crossScope, func) -> super(crossScope, func) if crossScope
     
       toString: (idt) ->
         idt: or ''
         children: (child.toString(idt + TAB) for child in @collectChildren()).join('')
    -    "\n$idt$children"
    #

    SplatNode

    #

    A splat, either as a parameter to a function, an argument to a call, + "\n$idt$children"

    #

    SplatNode

    #

    A splat, either as a parameter to a function, an argument to a call, or as part of a destructuring assignment.

    exports.SplatNode: class SplatNode extends BaseNode
     
       class:     'SplatNode'
    @@ -616,7 +641,7 @@
         @name: name
     
       compileNode: (o) ->
    -    if @index? then @compileParam(o) else @name.compile(o)
    #

    Compiling a parameter splat means recovering the parameters that succeed + 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
    @@ -627,10 +652,10 @@
         for trailing, idx in @trailings
           pos: @trailings.length - idx
           o.scope.assign(trailing.compile(o), "arguments[$variadic ? $len - $pos : ${@index + idx}]")
    -    "$name = ${utility('slice')}.call(arguments, $@index, $len - ${@trailings.length})"
    #

    A compiling a splat as a destructuring assignment means slicing arguments + "$name = ${utility('slice')}.call(arguments, $@index, $len - ${@trailings.length})"

    #

    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 ", ${name}.length - $trailings" else ''
    -    "${utility 'slice'}.call($name, $index$trail)"
    #

    Utility function that converts arbitrary number of elements, mixed with + "${utility 'slice'}.call($name, $index$trail)"

    #

    Utility function that converts arbitrary number of elements, mixed with splats, to a proper array

      @compileMixedArray: (list, o) ->
         args: []
         i: 0
    @@ -648,7 +673,7 @@
               code: "[$code]"
           args.push(if i is 0 then code else ".concat($code)")
           i: + 1
    -    args.join('')
    #

    WhileNode

    #

    A while loop, the only sort of low-level loop exposed by CoffeeScript. From + args.join('')

    #

    WhileNode

    #

    A while loop, the only sort of low-level loop exposed by CoffeeScript. From it, all other loops can be manufactured. Useful in cases where you need more flexibility or more speed than a comprehension can provide.

    exports.WhileNode: class WhileNode extends BaseNode
     
    @@ -672,7 +697,7 @@
         this
     
       topSensitive: ->
    -    true
    #

    The main difference from a JavaScript while is that the CoffeeScript + true

    #

    The main difference from a JavaScript while is that the CoffeeScript while can be used as a part of a larger expression -- while loops may return an array containing the computed result of each iteration.

      compileNode: (o) ->
         top:        del(o, 'top') and not @returns
    @@ -690,12 +715,12 @@
           post: '\n' + new ReturnNode(literal(rvar)).compile(merge(o, {indent: @idt()}))
         else
           post: ''
    -    "$pre {\n${ @body.compile(o) }\n$@tab}$post"
    #

    OpNode

    #

    Simple Arithmetic and logical operations. Performs some conversion from -CoffeeScript operations into their JavaScript equivalents.

    exports.OpNode: class OpNode extends BaseNode
    #

    The map of conversions from CoffeeScript to JavaScript symbols.

      CONVERSIONS: {
    +    "$pre {\n${ @body.compile(o) }\n$@tab}$post"
    #

    OpNode

    #

    Simple Arithmetic and logical operations. Performs some conversion from +CoffeeScript operations into their JavaScript equivalents.

    exports.OpNode: class OpNode extends BaseNode
    #

    The map of conversions from CoffeeScript to JavaScript symbols.

      CONVERSIONS: {
         '==': '==='
         '!=': '!=='
    -  }
    #

    The list of operators for which we perform -Python-style comparison chaining.

      CHAINABLE:        ['<', '>', '>=', '<=', '===', '!==']
    #

    Our assignment operators that have no JavaScript equivalent.

      ASSIGNMENT:       ['||=', '&&=', '?=']
    #

    Operators must come before their operands with a space.

      PREFIX_OPERATORS: ['typeof', 'delete']
    +  }
    #

    The list of operators for which we perform +Python-style comparison chaining.

      CHAINABLE:        ['<', '>', '>=', '<=', '===', '!==']
    #

    Our assignment operators that have no JavaScript equivalent.

      ASSIGNMENT:       ['||=', '&&=', '?=']
    #

    Operators must come before their operands with a space.

      PREFIX_OPERATORS: ['typeof', 'delete']
     
       class:     'OpNode'
       children: ['first', 'second']
    @@ -712,13 +737,16 @@
       isChainable: ->
         indexOf(@CHAINABLE, @operator) >= 0
     
    +  toString: (idt) ->
    +    super(idt, @class + ' ' + @operator)
    +
       compileNode: (o) ->
         o.operation: true
         return @compileChain(o)      if @isChainable() and @first.unwrap() instanceof OpNode and @first.unwrap().isChainable()
         return @compileAssignment(o) if indexOf(@ASSIGNMENT, @operator) >= 0
         return @compileUnary(o)      if @isUnary()
         return @compileExistence(o)  if @operator is '?'
    -    [@first.compile(o), @operator, @second.compile(o)].join ' '
    #

    Mimic Python's chained comparisons when multiple comparison operators are + [@first.compile(o), @operator, @second.compile(o)].join ' '

    #

    Mimic Python's chained comparisons when multiple comparison operators are used sequentially. For example:

    bin/coffee -e "puts 50 < 65 > 10"
    @@ -727,21 +755,21 @@
         shared: @first.unwrap().second
         [@first.second, shared]: shared.compileReference(o) if shared.containsType CallNode
         [first, second, shared]: [@first.compile(o), @second.compile(o), shared.compile(o)]
    -    "($first) && ($shared $@operator $second)"
    #

    When compiling a conditional assignment, take care to ensure that the + "($first) && ($shared $@operator $second)"

    #

    When compiling a conditional assignment, take care to ensure that the operands are only evaluated once, even though we have to reference them more than once.

      compileAssignment: (o) ->
         [first, second]: [@first.compile(o), @second.compile(o)]
         o.scope.find(first) if first.match(IDENTIFIER)
         return "$first = ${ ExistenceNode.compileTest(o, @first) } ? $first : $second" if @operator is '?='
    -    "$first = $first ${ @operator.substr(0, 2) } $second"
    #

    If this is an existence operator, we delegate to ExistenceNode.compileTest + "$first = $first ${ @operator.substr(0, 2) } $second"

    #

    If this is an existence operator, we delegate to ExistenceNode.compileTest to give us the safe references for the variables.

      compileExistence: (o) ->
         [first, second]: [@first.compile(o), @second.compile(o)]
         test: ExistenceNode.compileTest(o, @first)
    -    "$test ? $first : $second"
    #

    Compile a unary OpNode.

      compileUnary: (o) ->
    +    "$test ? $first : $second"
    #

    Compile a unary OpNode.

      compileUnary: (o) ->
         space: if indexOf(@PREFIX_OPERATORS, @operator) >= 0 then ' ' else ''
         parts: [@operator, space, @first.compile(o)]
         parts: parts.reverse() if @flip
    -    parts.join('')
    #

    InNode

    exports.InNode: class InNode extends BaseNode
    +    parts.join('')
    #

    InNode

    exports.InNode: class InNode extends BaseNode
     
       class:    'InNode'
       children: ['object', 'array']
    @@ -766,7 +794,7 @@
         [@arr1, @arr2]: @array.compileReference o, {precompile: yes}
         [i, l]: [o.scope.freeVariable(), o.scope.freeVariable()]
         prefix: if @obj1 isnt @obj2 then @obj1 + '; ' else ''
    -    "!!(function(){ ${prefix}for (var $i=0, $l=${@arr1}.length; $i<$l; $i++) if (${@arr2}[$i] === $@obj2) return true; })()"
    #

    TryNode

    #

    A classic try/catch/finally block.

    exports.TryNode: class TryNode extends BaseNode
    +    "!!(function(){ ${prefix}for (var $i=0, $l=${@arr1}.length; $i<$l; $i++) if (${@arr2}[$i] === $@obj2) return true; }).call(this)"
    #

    TryNode

    #

    A classic try/catch/finally block.

    exports.TryNode: class TryNode extends BaseNode
     
       class:        'TryNode'
       children:     ['attempt', 'recovery', 'ensure']
    @@ -781,7 +809,7 @@
       makeReturn: ->
         @attempt: @attempt.makeReturn() if @attempt
         @recovery: @recovery.makeReturn() if @recovery
    -    this
    #

    Compilation is more or less as you would expect -- the finally clause + this

    #

    Compilation is more or less as you would expect -- the finally clause is optional, the catch is not.

      compileNode: (o) ->
         o.indent:     @idt 1
         o.top:        true
    @@ -789,18 +817,18 @@
         errorPart:   if @error then " (${ @error.compile(o) }) " else ' '
         catchPart:   if @recovery then " catch$errorPart{\n${ @recovery.compile(o) }\n$@tab}" else ''
         finallyPart: (@ensure or '') and ' finally {\n' + @ensure.compile(merge(o)) + "\n$@tab}"
    -    "${@tab}try {\n$attemptPart\n$@tab}$catchPart$finallyPart"
    #

    ThrowNode

    #

    Simple node to throw an exception.

    exports.ThrowNode: class ThrowNode extends BaseNode
    +    "${@tab}try {\n$attemptPart\n$@tab}$catchPart$finallyPart"
    #

    ThrowNode

    #

    Simple node to throw an exception.

    exports.ThrowNode: class ThrowNode extends BaseNode
     
       class:         'ThrowNode'
       children:     ['expression']
       isStatement: -> yes
     
       constructor: (expression) ->
    -    @expression: expression
    #

    A ThrowNode is already a return, of sorts...

      makeReturn: ->
    +    @expression: expression
    #

    A ThrowNode is already a return, of sorts...

      makeReturn: ->
         return this
     
       compileNode: (o) ->
    -    "${@tab}throw ${@expression.compile(o)};"
    #

    ExistenceNode

    #

    Checks a variable for existence -- not null and not undefined. This is + "${@tab}throw ${@expression.compile(o)};"

    #

    ExistenceNode

    #

    Checks a variable for existence -- not null and not undefined. This is similar to .nil? in Ruby, and avoids having to consult a JavaScript truth table.

    exports.ExistenceNode: class ExistenceNode extends BaseNode
     
    @@ -811,11 +839,11 @@
         @expression: expression
     
       compileNode: (o) ->
    -    ExistenceNode.compileTest(o, @expression)
    #

    The meat of the ExistenceNode is in this static compileTest method + ExistenceNode.compileTest(o, @expression)

    #

    The meat of the ExistenceNode is in this static compileTest method because other nodes like to check the existence of their variables as well. Be careful not to double-evaluate anything.

      @compileTest: (o, variable) ->
         [first, second]: variable.compileReference o
    -    "(typeof ${first.compile(o)} !== \"undefined\" && ${second.compile(o)} !== null)"
    #

    ParentheticalNode

    #

    An extra set of parentheses, specified explicitly in the source. At one time + "(typeof ${first.compile(o)} !== \"undefined\" && ${second.compile(o)} !== null)"

    #

    ParentheticalNode

    #

    An extra set of parentheses, specified explicitly in the source. At one time we tried to clean up the results by detecting and removing redundant parentheses, but no longer -- you can put in as many as you please.

    @@ -833,12 +861,17 @@ makeReturn: -> @expression.makeReturn() + topSensitive: -> + yes + compileNode: (o) -> + top: del o, 'top' code: @expression.compile(o) - return code if @isStatement() + if @isStatement() + return (if top then "$@tab$code;" else code) l: code.length code: code.substr(o, l-1) if code.substr(l-1, 1) is ';' - if @expression instanceof AssignNode then code else "($code)"
    #

    ForNode

    #

    CoffeeScript's replacement for the for loop is our array and object + if @expression instanceof AssignNode then code else "($code)"

    #

    ForNode

    #

    CoffeeScript's replacement for the for loop is our array and object comprehensions, that compile into for loops here. They also act as an expression, able to return the result of each filtered iteration.

    @@ -873,7 +906,7 @@ compileReturnValue: (val, o) -> return '\n' + new ReturnNode(literal(val)).compile(o) if @returns return '\n' + val if val - ''
    #

    Welcome to the hairiest method in all of CoffeeScript. Handles the inner + ''

    #

    Welcome to the hairiest method in all of CoffeeScript. Handles the inner loop, filtering, stepping, and result saving for array, object, and range comprehensions. Some of the generated code can be shared in common, and some cannot.

      compileNode: (o) ->
    @@ -891,13 +924,14 @@
         varPart:        ''
         body:           Expressions.wrap([@body])
         if range
    -      sourcePart:   source.compileVariables o
    +      sourcePart:   source.compileVariables(o)
    +      sourcePart:   + "\n$o.indent" if sourcePart
           forPart:      source.compile merge o, {index: ivar, step: @step}
         else
           svar:         scope.freeVariable()
           sourcePart:   "$svar = ${ @source.compile(o) };"
           if @pattern
    -        namePart:   new AssignNode(@name, literal("$svar[$ivar]")).compile(merge o, {indent: @idt(1), top: true}) + "\n"
    +        namePart:   new AssignNode(@name, literal("$svar[$ivar]")).compile(merge o, {indent: @idt(1), top: true}) + '\n'
           else
             namePart:   "$name = $svar[$ivar]" if name
           unless @object
    @@ -916,13 +950,13 @@
           body.unshift  literal "var $index = $ivar" if index
           body:         ClosureNode.wrap(body, true)
         else
    -      varPart:      "${@idt(1)}$namePart;\n" if namePart
    +      varPart:      (namePart or '') and (if @pattern then namePart else "${@idt(1)}$namePart;\n")
         if @object
           forPart:      "$ivar in $svar) { if (${utility('hasProp')}.call($svar, $ivar)"
         body:           body.compile(merge(o, {indent: @idt(1), top: true}))
         vars:           if range then name else "$name, $ivar"
         close:          if @object then '}}' else '}'
    -    "${sourcePart}for ($forPart) {\n$varPart$body\n$@tab$close$returnResult"
    #

    IfNode

    #

    If/else statements. Our switch/when will be compiled into this. Acts as an + "${sourcePart}for ($forPart) {\n$varPart$body\n$@tab$close$returnResult"

    #

    IfNode

    #

    If/else statements. Our switch/when will be compiled into this. Acts as an expression by pushing down requested returns to the last line of each clause.

    Single-expression IfNodes are compiled into ternary operators if possible, @@ -934,20 +968,20 @@ constructor: (condition, body, tags) -> @condition: condition @body: body - @elseBody: null + @elseBody: null @tags: tags or {} @condition: new OpNode('!', new ParentheticalNode(@condition)) if @tags.invert - @isChain: false + @isChain: false bodyNode: -> @body?.unwrap() elseBodyNode: -> @elseBody?.unwrap() forceStatement: -> @tags.statement: true - this

    #

    Tag a chain of IfNodes with their object(s) to switch on for equality + this

    #

    Tag a chain of IfNodes with their object(s) to switch on for equality tests. rewriteSwitch will perform the actual change at compile time.

      switchesOver: (expression) ->
         @switchSubject: expression
    -    this
    #

    Rewrite a chain of IfNodes with their switch condition for equality. + this

    #

    Rewrite a chain of IfNodes with their switch condition for equality. Ensure that the switch expression isn't evaluated more than once.

      rewriteSwitch: (o) ->
         @assigner: @switchSubject
         unless (@switchSubject.unwrap() instanceof LiteralNode)
    @@ -957,14 +991,14 @@
         @condition: for cond, i in flatten [@condition]
           cond: new ParentheticalNode(cond) if cond instanceof OpNode
           new OpNode('==', (if i is 0 then @assigner else @switchSubject), cond)
    -    @elseBodyNode().switchesOver(@switchSubject) if @isChain
    #

    prevent this rewrite from happening again

        @switchSubject: undefined
    -    this
    #

    Rewrite a chain of IfNodes to add a default case as the final else.

      addElse: (elseBody, statement) ->
    +    @elseBodyNode().switchesOver(@switchSubject) if @isChain
    #

    prevent this rewrite from happening again

        @switchSubject: undefined
    +    this
    #

    Rewrite a chain of IfNodes to add a default case as the final else.

      addElse: (elseBody, statement) ->
         if @isChain
           @elseBodyNode().addElse elseBody, statement
         else
           @isChain: elseBody instanceof IfNode
           @elseBody: @ensureExpressions elseBody
    -    this
    #

    The IfNode only compiles into a statement if either of its bodies needs + this

    #

    The IfNode only compiles into a statement if either of its bodies needs to be a statement. Otherwise a ternary is safe.

      isStatement: ->
         @statement: or !!(@tags.statement or @bodyNode().isStatement() or (@elseBody and @elseBodyNode().isStatement()))
     
    @@ -975,12 +1009,15 @@
         if @isStatement() then @compileStatement(o) else @compileTernary(o)
     
       makeReturn: ->
    -    @body:      and @ensureExpressions(@body.makeReturn())
    -    @elseBody:  and @ensureExpressions(@elseBody.makeReturn())
    -    this
    +    if @isStatement()
    +      @body:      and @ensureExpressions(@body.makeReturn())
    +      @elseBody:  and @ensureExpressions(@elseBody.makeReturn())
    +      this
    +    else
    +      new ReturnNode this
     
       ensureExpressions: (node) ->
    -    if node instanceof Expressions then node else new Expressions [node]
    #

    Compile the IfNode as a regular if-else statement. Flattened chains + if node instanceof Expressions then node else new Expressions [node]

    #

    Compile the IfNode as a regular if-else statement. Flattened chains force inner else bodies into statement form.

      compileStatement: (o) ->
         @rewriteSwitch(o) if @switchSubject
         child:        del o, 'chainChild'
    @@ -996,10 +1033,10 @@
           ' else ' + @elseBodyNode().compile(merge(o, {indent: @idt(), chainChild: true}))
         else
           " else {\n${ @elseBody.compile(o) }\n$@tab}"
    -    "$ifPart$elsePart"
    #

    Compile the IfNode as a ternary operator.

      compileTernary: (o) ->
    +    "$ifPart$elsePart"
    #

    Compile the IfNode as a ternary operator.

      compileTernary: (o) ->
         ifPart:    @condition.compile(o) + ' ? ' + @bodyNode().compile(o)
         elsePart:  if @elseBody then @elseBodyNode().compile(o) else 'null'
    -    "$ifPart : $elsePart"
    #

    Faux-Nodes

    #

    PushNode

    #

    Faux-nodes are never created by the grammar, but are used during code + "$ifPart : $elsePart"

    #

    Faux-Nodes

    #

    PushNode

    #

    Faux-nodes are never created by the grammar, but are used during code generation to generate other combinations of nodes. The PushNode creates the tree for array.push(value), which is helpful for recording the result arrays from comprehensions.

    PushNode: exports.PushNode: {
    @@ -1011,14 +1048,17 @@
           new ValueNode(literal(array), [new AccessorNode(literal('push'))]), [expr]
         )])
     
    -}
    #

    ClosureNode

    #

    A faux-node used to wrap an expressions body in a closure.

    ClosureNode: exports.ClosureNode: {
    #

    Wrap the expressions body, unless it contains a pure statement, +}

    #

    ClosureNode

    #

    A faux-node used to wrap an expressions body in a closure.

    ClosureNode: exports.ClosureNode: {
    #

    Wrap the expressions body, unless it contains a pure statement, in which case, no dice. If the body mentions this or arguments, then make sure that the closure wrapper preserves the original values.

      wrap: (expressions, statement) ->
         return expressions if expressions.containsPureStatement()
         func: new ParentheticalNode(new CodeNode([], Expressions.wrap([expressions])))
         args: []
    -    mentionsArgs: expressions.contains (n) -> (n instanceof LiteralNode) and (n.value is 'arguments')
    -    mentionsThis: expressions.contains (n) -> (n instanceof LiteralNode) and (n.value is 'this')
    +    mentionsArgs: expressions.contains (n) ->
    +      n instanceof LiteralNode and (n.value is 'arguments')
    +    mentionsThis: expressions.contains (n) ->
    +      (n instanceof LiteralNode and (n.value is 'this')) or
    +      (n instanceof CodeNode and n.bound)
         if mentionsArgs or mentionsThis
           meth: literal(if mentionsArgs then 'apply' else 'call')
           args: [literal('this')]
    @@ -1027,7 +1067,7 @@
         call: new CallNode(func, args)
         if statement then Expressions.wrap([call]) else call
     
    -}
    #

    Utility Functions

    UTILITIES: {
    #

    Correctly set up a prototype chain for inheritance, including a reference +}

    #

    Utility Functions

    UTILITIES: {
    #

    Correctly set up a prototype chain for inheritance, including a reference to the superclass for super() calls. See: goog.inherits.

      __extends:  """
                   function(child, parent) {
    @@ -1037,13 +1077,13 @@
                       child.prototype = new ctor();
                       child.prototype.constructor = child;
                     }
    -              """
    #

    Shortcuts to speed up the lookup time for native functions.

      __hasProp: 'Object.prototype.hasOwnProperty'
    +              """
    #

    Shortcuts to speed up the lookup time for native functions.

      __hasProp: 'Object.prototype.hasOwnProperty'
       __slice:   'Array.prototype.slice'
     
    -}
    #

    Constants

    #

    Tabs are two spaces for pretty printing.

    TAB: '  '
    #

    Trim out all trailing whitespace, so that the generated code plays nice -with Git.

    TRAILING_WHITESPACE: /[ \t]+$/gm
    #

    Obvious redundant parentheses should be removed.

    DOUBLE_PARENS: /\(\(([^\(\)\n]*)\)\)/g
    #

    Keep these identifier regexes in sync with the Lexer.

    IDENTIFIER: /^[a-zA-Z\$_](\w|\$)*$/
    -NUMBER    : /^(((\b0(x|X)[0-9a-fA-F]+)|((\b[0-9]+(\.[0-9]+)?|\.[0-9]+)(e[+\-]?[0-9]+)?)))\b$/i
    #

    Is a literal value a string?

    IS_STRING: /^['"]/
    #

    Utility Functions

    #

    Handy helper for a generating LiteralNode.

    literal: (name) ->
    -  new LiteralNode(name)
    #

    Helper for ensuring that utility functions are assigned at the top level.

    utility: (name) ->
    +}
    #

    Constants

    #

    Tabs are two spaces for pretty printing.

    TAB: '  '
    #

    Trim out all trailing whitespace, so that the generated code plays nice +with Git.

    TRAILING_WHITESPACE: /[ \t]+$/gm
    #

    Obvious redundant parentheses should be removed.

    DOUBLE_PARENS: /\(\(([^\(\)\n]*)\)\)/g
    #

    Keep these identifier regexes in sync with the Lexer.

    IDENTIFIER: /^[a-zA-Z\$_](\w|\$)*$/
    +NUMBER    : /^(((\b0(x|X)[0-9a-fA-F]+)|((\b[0-9]+(\.[0-9]+)?|\.[0-9]+)(e[+\-]?[0-9]+)?)))\b$/i
    #

    Is a literal value a string?

    IS_STRING: /^['"]/
    #

    Utility Functions

    #

    Handy helper for a generating LiteralNode.

    literal: (name) ->
    +  new LiteralNode(name)
    #

    Helper for ensuring that utility functions are assigned at the top level.

    utility: (name) ->
       ref: "__$name"
       Scope.root.assign ref, UTILITIES[ref]
       ref
    diff --git a/documentation/docs/optparse.html b/documentation/docs/optparse.html
    index 85091f2ae2..b1aa7432e5 100644
    --- a/documentation/docs/optparse.html
    +++ b/documentation/docs/optparse.html
    @@ -3,7 +3,10 @@
     
     
    parser:  new OptionParser switches, helpBanner
     options: parser.parse process.argv
    -
    exports.OptionParser: class OptionParser
    #

    Initialize with a list of valid options, in the form:

    +
    + +

    The first non-option is considered to be the start of the file (and file +option) list, and all subsequent arguments are left unparsed.

    exports.OptionParser: class OptionParser
    #

    Initialize with a list of valid options, in the form:

    [short-flag, long-flag, description]
     
    @@ -17,16 +20,18 @@ flag. Instead, you're responsible for interpreting the options object.

      parse: (args) ->
         options: {arguments: []}
         args: normalizeArguments args
    -    while (arg: args.shift())
    +    for arg, i in args
           isOption: !!(arg.match(LONG_FLAG) or arg.match(SHORT_FLAG))
           matchedRule: no
           for rule in @rules
             if rule.shortFlag is arg or rule.longFlag is arg
    -          options[rule.name]: if rule.hasArgument then args.shift() else true
    +          options[rule.name]: if rule.hasArgument then args[i + 1] else true
               matchedRule: yes
               break
           throw new Error "unrecognized option: $arg" if isOption and not matchedRule
    -      options.arguments.push arg unless isOption
    +      if not isOption
    +        options.arguments: args[i...args.length]
    +        break
         options
    #

    Return the help text for this OptionParser, listing and describing all of the valid options, for --help and such.

      help: ->
         lines: ['Available options:']
    diff --git a/documentation/docs/rewriter.html b/documentation/docs/rewriter.html
    index 57f82dbba8..636c4d45d9 100644
    --- a/documentation/docs/rewriter.html
    +++ b/documentation/docs/rewriter.html
    @@ -14,6 +14,7 @@
     like this. The order of these passes matters -- indentation must be
     corrected before implicit parentheses can be wrapped around blocks of code.

      rewrite: (tokens) ->
         @tokens: tokens
    +    @adjustComments()
         @removeLeadingNewlines()
         @removeMidExpressionNewlines()
         @closeOpenCallsAndIndexes()
    @@ -31,14 +32,32 @@
           break unless @tokens[i]
           move: block @tokens[i - 1], @tokens[i], @tokens[i + 1], i
           i: + move
    -    true
    #

    Leading newlines would introduce an ambiguity in the grammar, so we + true

    #

    Massage newlines and indentations so that comments don't have to be +correctly indented, or appear on a line of their own.

      adjustComments: ->
    +    @scanTokens (prev, token, post, i) =>
    +      return 1 unless token[0] is 'HERECOMMENT'
    +      [before, after]: [@tokens[i - 2], @tokens[i + 2]]
    +      if after and after[0] is 'INDENT'
    +        @tokens.splice i + 2, 1
    +        if before and before[0] is 'OUTDENT' and post and prev[0] is post[0] is 'TERMINATOR'
    +          @tokens.splice i - 2, 1
    +        else
    +          @tokens.splice i, 0, after
    +      else if prev and prev[0] not in ['TERMINATOR', 'INDENT', 'OUTDENT']
    +        if post and post[0] is 'TERMINATOR' and after and after[0] is 'OUTDENT'
    +          @tokens.splice(i + 3, 0, @tokens.splice(i, 2)...)
    +          @tokens.splice(i + 3, 0, ['TERMINATOR', "\n", prev[2]])
    +        else
    +          @tokens.splice i, 0, ['TERMINATOR', "\n", prev[2]]
    +        return 2
    +      return 1
    #

    Leading newlines would introduce an ambiguity in the grammar, so we dispatch them here.

      removeLeadingNewlines: ->
    -    @tokens.shift() while @tokens[0] and @tokens[0][0] is 'TERMINATOR'
    #

    Some blocks occur in the middle of expressions -- when we're expecting + @tokens.shift() while @tokens[0] and @tokens[0][0] is 'TERMINATOR'

    #

    Some blocks occur in the middle of expressions -- when we're expecting this, remove their trailing newlines.

      removeMidExpressionNewlines: ->
         @scanTokens (prev, token, post, i) =>
           return 1 unless post and include(EXPRESSION_CLOSE, post[0]) and token[0] is 'TERMINATOR'
           @tokens.splice i, 1
    -      return 0
    #

    The lexer has tagged the opening parenthesis of a method call, and the + return 0

    #

    The lexer has tagged the opening parenthesis of a method call, and the opening bracket of an indexing operation. Match them with their paired close.

      closeOpenCallsAndIndexes: ->
         parens:   [0]
    @@ -61,7 +80,7 @@
                 token[0]: 'INDEX_END'
               else
                 brackets[brackets.length - 1]: - 1
    -      return 1
    #

    Methods may be optionally called without parentheses, for simple cases. + return 1

    #

    Methods may be optionally called without parentheses, for simple cases. Insert the implicit parentheses here, so that the parser doesn't have to deal with them.

      addImplicitParentheses: ->
         stack: [0]
    @@ -88,7 +107,7 @@
               return size
             stack.push 0
             return 1
    -      if open and !token.generated and (!post or include(IMPLICIT_END, tag))
    +      if open and !token.generated and prev[0] isnt ',' and (!post or include(IMPLICIT_END, tag))
             j: 1; j++ while (nx: @tokens[i + j])? and include(IMPLICIT_END, nx[0])
             if nx? and nx[0] is ','
               @tokens.splice(i, 1) if tag is 'TERMINATOR'
    @@ -99,20 +118,23 @@
           if tag isnt 'OUTDENT' and include EXPRESSION_END, tag
             stack[stack.length - 2]: + stack.pop()
             return 1
    -      return 1
    #

    Because our grammar is LALR(1), it can't handle some single-line + return 1

    #

    Because our grammar is LALR(1), it can't handle some single-line expressions that lack ending delimiters. The Rewriter adds the implicit blocks, so it doesn't need to. ')' can close a single-line block, but we need to make sure it's balanced.

      addImplicitIndentation: ->
         @scanTokens (prev, token, post, i) =>
           if token[0] is 'ELSE' and prev[0] isnt 'OUTDENT'
    -        @tokens.splice i, 0, ['INDENT', 2, token[2]], ['OUTDENT', 2, token[2]]
    +        @tokens.splice i, 0, @indentation(token)...
             return 2
    +      if token[0] is 'CATCH' and @tokens[i + 2][0] is 'TERMINATOR'
    +        @tokens.splice i + 2, 0, @indentation(token)...
    +        return 4
           return 1 unless include(SINGLE_LINERS, token[0]) and
             post[0] isnt 'INDENT' and
             not (token[0] is 'ELSE' and post[0] is 'IF')
           starter: token[0]
    -      indent: ['INDENT', 2, token[2]]
    -      indent.generated: true
    +      [indent, outdent]: @indentation token
    +      indent.generated: outdent.generated: true
           @tokens.splice i + 1, 0, indent
           idx: i + 1
           parens: 0
    @@ -125,15 +147,13 @@
                 (tok[0] is ')' and parens is 0)) and
                 not (tok[0] is 'ELSE' and starter not in ['IF', 'THEN'])
               insertion: if pre[0] is "," then idx - 1 else idx
    -          outdent: ['OUTDENT', 2, token[2]]
    -          outdent.generated: true
               @tokens.splice insertion, 0, outdent
               break
             parens: + 1 if tok[0] is '('
             parens: - 1 if tok[0] is ')'
           return 1 unless token[0] is 'THEN'
           @tokens.splice i, 1
    -      return 0
    #

    Ensure that all listed pairs of tokens are correctly balanced throughout + return 0

    #

    Ensure that all listed pairs of tokens are correctly balanced throughout the course of the token stream.

      ensureBalance: (pairs) ->
         levels: {}
         openLine: {}
    @@ -151,7 +171,7 @@
         if unclosed.length
           open: unclosed[0]
           line: openLine[open] + 1
    -      throw new Error "unclosed $open on line $line"
    #

    We'd like to support syntax like this:

    + throw new Error "unclosed $open on line $line"
    #

    We'd like to support syntax like this:

    el.click((event) ->
       el.hide())
    @@ -198,16 +218,17 @@
                 @tokens.splice i, 0, val
               return 1
           else
    -        return 1
    #

    Constants

    #

    List of the token pairs that must be balanced.

    BALANCED_PAIRS: [['(', ')'], ['[', ']'], ['{', '}'], ['INDENT', 'OUTDENT'],
    -  ['PARAM_START', 'PARAM_END'], ['CALL_START', 'CALL_END'], ['INDEX_START', 'INDEX_END']]
    #

    The inverse mappings of BALANCED_PAIRS we're trying to fix up, so we can + return 1

    #

    Generate the indentation tokens, based on another token on the same line.

      indentation: (token) ->
    +    [['INDENT', 2, token[2]], ['OUTDENT', 2, token[2]]]
    #

    Constants

    #

    List of the token pairs that must be balanced.

    BALANCED_PAIRS: [['(', ')'], ['[', ']'], ['{', '}'], ['INDENT', 'OUTDENT'],
    +  ['PARAM_START', 'PARAM_END'], ['CALL_START', 'CALL_END'], ['INDEX_START', 'INDEX_END']]
    #

    The inverse mappings of BALANCED_PAIRS we're trying to fix up, so we can look things up from either end.

    INVERSES: {}
     for pair in BALANCED_PAIRS
       INVERSES[pair[0]]: pair[1]
    -  INVERSES[pair[1]]: pair[0]
    #

    The tokens that signal the start of a balanced pair.

    EXPRESSION_START: pair[0] for pair in BALANCED_PAIRS
    #

    The tokens that signal the end of a balanced pair.

    EXPRESSION_END:   pair[1] for pair in BALANCED_PAIRS
    #

    Tokens that indicate the close of a clause of an expression.

    EXPRESSION_CLOSE: ['CATCH', 'WHEN', 'ELSE', 'FINALLY'].concat EXPRESSION_END
    #

    Tokens that, if followed by an IMPLICIT_CALL, indicate a function invocation.

    IMPLICIT_FUNC:  ['IDENTIFIER', 'SUPER', ')', 'CALL_END', ']', 'INDEX_END', '@']
    #

    If preceded by an IMPLICIT_FUNC, indicates a function invocation.

    IMPLICIT_CALL:  ['IDENTIFIER', 'NUMBER', 'STRING', 'JS', 'REGEX', 'NEW', 'PARAM_START',
    +  INVERSES[pair[1]]: pair[0]
    #

    The tokens that signal the start of a balanced pair.

    EXPRESSION_START: pair[0] for pair in BALANCED_PAIRS
    #

    The tokens that signal the end of a balanced pair.

    EXPRESSION_END:   pair[1] for pair in BALANCED_PAIRS
    #

    Tokens that indicate the close of a clause of an expression.

    EXPRESSION_CLOSE: ['CATCH', 'WHEN', 'ELSE', 'FINALLY'].concat EXPRESSION_END
    #

    Tokens that, if followed by an IMPLICIT_CALL, indicate a function invocation.

    IMPLICIT_FUNC:  ['IDENTIFIER', 'SUPER', ')', 'CALL_END', ']', 'INDEX_END', '@']
    #

    If preceded by an IMPLICIT_FUNC, indicates a function invocation.

    IMPLICIT_CALL:  ['IDENTIFIER', 'NUMBER', 'STRING', 'JS', 'REGEX', 'NEW', 'PARAM_START',
                      'TRY', 'DELETE', 'TYPEOF', 'SWITCH',
                      'TRUE', 'FALSE', 'YES', 'NO', 'ON', 'OFF', '!', '!!',
                      'THIS', 'NULL',
    -                 '@', '->', '=>', '[', '(', '{']
    #

    Tokens indicating that the implicit call must enclose a block of expressions.

    IMPLICIT_BLOCK: ['->', '=>', '{', '[', ',']
    #

    Tokens that always mark the end of an implicit call for single-liners.

    IMPLICIT_END:   ['IF', 'UNLESS', 'FOR', 'WHILE', 'UNTIL', 'LOOP', 'TERMINATOR', 'INDENT'].concat EXPRESSION_END
    #

    Single-line flavors of block expressions that have unclosed endings. + '@', '->', '=>', '[', '(', '{']

    #

    Tokens indicating that the implicit call must enclose a block of expressions.

    IMPLICIT_BLOCK: ['->', '=>', '{', '[', ',']
    #

    Tokens that always mark the end of an implicit call for single-liners.

    IMPLICIT_END:   ['IF', 'UNLESS', 'FOR', 'WHILE', 'UNTIL', 'LOOP', 'TERMINATOR', 'INDENT'].concat EXPRESSION_END
    #

    Single-line flavors of block expressions that have unclosed endings. The grammar can't disambiguate them, so we insert the implicit indentation.

    SINGLE_LINERS: ['ELSE', "->", "=>", 'TRY', 'FINALLY', 'THEN']
     SINGLE_CLOSERS: ['TERMINATOR', 'CATCH', 'FINALLY', 'ELSE', 'OUTDENT', 'LEADING_WHEN']
     
    diff --git a/documentation/index.html.erb b/documentation/index.html.erb
    index 6bab4894bb..90540bef5b 100644
    --- a/documentation/index.html.erb
    +++ b/documentation/index.html.erb
    @@ -129,7 +129,7 @@ alert reverse '.eeffoC yrT'

    Latest Version: - 0.7.0 + 0.7.1

    @@ -175,7 +175,7 @@ alert reverse '.eeffoC yrT' Then clone the CoffeeScript source repository from GitHub, or download the latest - release: 0.7.0. + release: 0.7.1. To install the CoffeeScript compiler system-wide under /usr/local, open the directory and run:

    @@ -948,6 +948,14 @@ coffee --print app/scripts/*.coffee > concatenation.js Change Log

    +

    + 0.7.1 + Block-style comments are now passed through and printed as JavaScript block + comments -- making them useful for licenses and copyright headers. Better + support for running coffee scripts standalone via hashbangs. + Improved syntax errors for tokens that are not in the grammar. +

    +

    0.7.0 Official CoffeeScript variable style is now camelCase, as in JavaScript. diff --git a/examples/blocks.coffee b/examples/blocks.coffee index a7ad347f9a..6cd04dcf29 100644 --- a/examples/blocks.coffee +++ b/examples/blocks.coffee @@ -33,7 +33,7 @@ File.open: (path, mode, block) -> # Write. write: (location, data) -> - path = new Pathname location + path: new Pathname location raise "Location does not exist" unless path.exists() File.open path, 'w', (file) -> diff --git a/extras/coffee-script.js b/extras/coffee-script.js index 5a66819eb8..8154c65b93 100644 --- a/extras/coffee-script.js +++ b/extras/coffee-script.js @@ -1,8 +1,8 @@ /** - * CoffeeScript Compiler v0.7.0 + * CoffeeScript Compiler v0.7.1 * http://coffeescript.org * * Copyright 2010, Jeremy Ashkenas * Released under the MIT License */ -(function(){var compact,count,del,extend,flatten,helpers,include,indexOf,merge,starts;var __hasProp=Object.prototype.hasOwnProperty;if(!(typeof process!=="undefined"&&process!==null)){this.exports=this}helpers=(exports.helpers={});helpers.indexOf=(indexOf=function(array,item,from){var _a,_b,index,other;if(array.indexOf){return array.indexOf(item,from)}_a=array;for(index=0,_b=_a.length;index<_b;index++){other=_a[index];if(other===item&&(!from||(from<=index))){return index}}return -1});helpers.include=(include=function(list,value){return indexOf(list,value)>=0});helpers.starts=(starts=function(string,literal,start){return string.substring(start,(start||0)+literal.length)===literal});helpers.compact=(compact=function(array){var _a,_b,_c,_d,item;_a=[];_c=array;for(_b=0,_d=_c.length;_b<_d;_b++){item=_c[_b];item?_a.push(item):null}return _a});helpers.count=(count=function(string,letter){var num,pos;num=0;pos=indexOf(string,letter);while(pos!==-1){num+=1;pos=indexOf(string,letter,pos+1)}return num});helpers.merge=(merge=function(options,overrides){var _a,_b,fresh,key,val;fresh={};_a=options;for(key in _a){if(__hasProp.call(_a,key)){val=_a[key];(fresh[key]=val)}}if(overrides){_b=overrides;for(key in _b){if(__hasProp.call(_b,key)){val=_b[key];(fresh[key]=val)}}}return fresh});helpers.extend=(extend=function(object,properties){var _a,_b,key,val;_a=[];_b=properties;for(key in _b){if(__hasProp.call(_b,key)){val=_b[key];_a.push(object[key]=val)}}return _a});helpers.flatten=(flatten=function(array){var _a,_b,_c,item,memo;memo=[];_b=array;for(_a=0,_c=_b.length;_a<_c;_a++){item=_b[_a];item instanceof Array?(memo=memo.concat(item)):memo.push(item)}return memo});helpers.del=(del=function(obj,key){var val;val=obj[key];delete obj[key];return val})})();(function(){var BALANCED_PAIRS,EXPRESSION_CLOSE,EXPRESSION_END,EXPRESSION_START,IMPLICIT_BLOCK,IMPLICIT_CALL,IMPLICIT_END,IMPLICIT_FUNC,INVERSES,Rewriter,SINGLE_CLOSERS,SINGLE_LINERS,_a,_b,_c,_d,_e,_f,_g,_h,_i,_j,_k,_l,_m,helpers,include,pair;var __hasProp=Object.prototype.hasOwnProperty;if(typeof process!=="undefined"&&process!==null){_a=require("./helpers");helpers=_a.helpers}else{this.exports=this;helpers=this.helpers}_b=helpers;include=_b.include;exports.Rewriter=(function(){Rewriter=function(){};Rewriter.prototype.rewrite=function(tokens){this.tokens=tokens;this.removeLeadingNewlines();this.removeMidExpressionNewlines();this.closeOpenCallsAndIndexes();this.addImplicitIndentation();this.addImplicitParentheses();this.ensureBalance(BALANCED_PAIRS);this.rewriteClosingParens();return this.tokens};Rewriter.prototype.scanTokens=function(block){var i,move;i=0;while(true){if(!(this.tokens[i])){break}move=block(this.tokens[i-1],this.tokens[i],this.tokens[i+1],i);i+=move}return true};Rewriter.prototype.removeLeadingNewlines=function(){var _c;_c=[];while(this.tokens[0]&&this.tokens[0][0]==="TERMINATOR"){_c.push(this.tokens.shift())}return _c};Rewriter.prototype.removeMidExpressionNewlines=function(){return this.scanTokens((function(__this){var __func=function(prev,token,post,i){if(!(post&&include(EXPRESSION_CLOSE,post[0])&&token[0]==="TERMINATOR")){return 1}this.tokens.splice(i,1);return 0};return(function(){return __func.apply(__this,arguments)})})(this))};Rewriter.prototype.closeOpenCallsAndIndexes=function(){var brackets,parens;parens=[0];brackets=[0];return this.scanTokens((function(__this){var __func=function(prev,token,post,i){var _c;if((_c=token[0])==="CALL_START"){parens.push(0)}else{if(_c==="INDEX_START"){brackets.push(0)}else{if(_c==="("){parens[parens.length-1]+=1}else{if(_c==="["){brackets[brackets.length-1]+=1}else{if(_c===")"){if(parens[parens.length-1]===0){parens.pop();token[0]="CALL_END"}else{parens[parens.length-1]-=1}}else{if(_c==="]"){if(brackets[brackets.length-1]===0){brackets.pop();token[0]="INDEX_END"}else{brackets[brackets.length-1]-=1}}}}}}}return 1};return(function(){return __func.apply(__this,arguments)})})(this))};Rewriter.prototype.addImplicitParentheses=function(){var closeCalls,stack;stack=[0];closeCalls=(function(__this){var __func=function(i){var _c,size,tmp;(_c=stack[stack.length-1]);for(tmp=0;tmp<_c;tmp+=1){this.tokens.splice(i,0,["CALL_END",")",this.tokens[i][2]])}size=stack[stack.length-1]+1;stack[stack.length-1]=0;return size};return(function(){return __func.apply(__this,arguments)})})(this);return this.scanTokens((function(__this){var __func=function(prev,token,post,i){var _c,_d,j,nx,open,size,tag;tag=token[0];if(tag==="OUTDENT"){stack[stack.length-2]+=stack.pop()}open=stack[stack.length-1]>0;if(prev&&prev.spaced&&include(IMPLICIT_FUNC,prev[0])&&include(IMPLICIT_CALL,tag)&&!(tag==="!"&&(("IN"===(_c=post[0])||"OF"===_c)))){this.tokens.splice(i,0,["CALL_START","(",token[2]]);stack[stack.length-1]+=1;if(include(EXPRESSION_START,tag)){stack.push(0)}return 2}if(include(EXPRESSION_START,tag)){if(tag==="INDENT"&&!token.generated&&open&&!(prev&&include(IMPLICIT_BLOCK,prev[0]))){size=closeCalls(i);stack.push(0);return size}stack.push(0);return 1}if(open&&!token.generated&&(!post||include(IMPLICIT_END,tag))){j=1;while((typeof(_d=(nx=this.tokens[i+j]))!=="undefined"&&_d!==null)&&include(IMPLICIT_END,nx[0])){j++}if((typeof nx!=="undefined"&&nx!==null)&&nx[0]===","){if(tag==="TERMINATOR"){this.tokens.splice(i,1)}}else{size=closeCalls(i);if(tag!=="OUTDENT"&&include(EXPRESSION_END,tag)){stack.pop()}return size}}if(tag!=="OUTDENT"&&include(EXPRESSION_END,tag)){stack[stack.length-2]+=stack.pop();return 1}return 1};return(function(){return __func.apply(__this,arguments)})})(this))};Rewriter.prototype.addImplicitIndentation=function(){return this.scanTokens((function(__this){var __func=function(prev,token,post,i){var idx,indent,insertion,outdent,parens,pre,starter,tok;if(token[0]==="ELSE"&&prev[0]!=="OUTDENT"){this.tokens.splice(i,0,["INDENT",2,token[2]],["OUTDENT",2,token[2]]);return 2}if(!(include(SINGLE_LINERS,token[0])&&post[0]!=="INDENT"&&!(token[0]==="ELSE"&&post[0]==="IF"))){return 1}starter=token[0];indent=["INDENT",2,token[2]];indent.generated=true;this.tokens.splice(i+1,0,indent);idx=i+1;parens=0;while(true){idx+=1;tok=this.tokens[idx];pre=this.tokens[idx-1];if((!tok||(include(SINGLE_CLOSERS,tok[0])&&tok[1]!==";"&&parens===0)||(tok[0]===")"&&parens===0))&&!(tok[0]==="ELSE"&&!("IF"===starter||"THEN"===starter))){insertion=pre[0]===","?idx-1:idx;outdent=["OUTDENT",2,token[2]];outdent.generated=true;this.tokens.splice(insertion,0,outdent);break}if(tok[0]==="("){parens+=1}if(tok[0]===")"){parens-=1}}if(!(token[0]==="THEN")){return 1}this.tokens.splice(i,1);return 0};return(function(){return __func.apply(__this,arguments)})})(this))};Rewriter.prototype.ensureBalance=function(pairs){var _c,_d,key,levels,line,open,openLine,unclosed,value;levels={};openLine={};this.scanTokens((function(__this){var __func=function(prev,token,post,i){var _c,_d,_e,_f,close,open,pair;_d=pairs;for(_c=0,_e=_d.length;_c<_e;_c++){pair=_d[_c];_f=pair;open=_f[0];close=_f[1];levels[open]=levels[open]||0;if(token[0]===open){if(levels[open]===0){openLine[open]=token[2]}levels[open]+=1}if(token[0]===close){levels[open]-=1}if(levels[open]<0){throw new Error(("too many "+(token[1])+" on line "+(token[2]+1)))}}return 1};return(function(){return __func.apply(__this,arguments)})})(this));unclosed=(function(){_c=[];_d=levels;for(key in _d){if(__hasProp.call(_d,key)){value=_d[key];value>0?_c.push(key):null}}return _c})();if(unclosed.length){open=unclosed[0];line=openLine[open]+1;throw new Error("unclosed "+open+" on line "+line)}};Rewriter.prototype.rewriteClosingParens=function(){var _c,debt,key,stack,val;stack=[];debt={};_c=INVERSES;for(key in _c){if(__hasProp.call(_c,key)){val=_c[key];(debt[key]=0)}}return this.scanTokens((function(__this){var __func=function(prev,token,post,i){var inv,match,mtag,oppos,tag;tag=token[0];inv=INVERSES[token[0]];if(include(EXPRESSION_START,tag)){stack.push(token);return 1}else{if(include(EXPRESSION_END,tag)){if(debt[inv]>0){debt[inv]-=1;this.tokens.splice(i,1);return 0}else{match=stack.pop();mtag=match[0];oppos=INVERSES[mtag];if(tag===oppos){return 1}debt[mtag]+=1;val=[oppos,mtag==="INDENT"?match[1]:oppos];if((this.tokens[i+2]==undefined?undefined:this.tokens[i+2][0])===mtag){this.tokens.splice(i+3,0,val);stack.push(match)}else{this.tokens.splice(i,0,val)}return 1}}else{return 1}}};return(function(){return __func.apply(__this,arguments)})})(this))};return Rewriter})();BALANCED_PAIRS=[["(",")"],["[","]"],["{","}"],["INDENT","OUTDENT"],["PARAM_START","PARAM_END"],["CALL_START","CALL_END"],["INDEX_START","INDEX_END"]];INVERSES={};_d=BALANCED_PAIRS;for(_c=0,_e=_d.length;_c<_e;_c++){pair=_d[_c];INVERSES[pair[0]]=pair[1];INVERSES[pair[1]]=pair[0]}EXPRESSION_START=(function(){_f=[];_h=BALANCED_PAIRS;for(_g=0,_i=_h.length;_g<_i;_g++){pair=_h[_g];_f.push(pair[0])}return _f})();EXPRESSION_END=(function(){_j=[];_l=BALANCED_PAIRS;for(_k=0,_m=_l.length;_k<_m;_k++){pair=_l[_k];_j.push(pair[1])}return _j})();EXPRESSION_CLOSE=["CATCH","WHEN","ELSE","FINALLY"].concat(EXPRESSION_END);IMPLICIT_FUNC=["IDENTIFIER","SUPER",")","CALL_END","]","INDEX_END","@"];IMPLICIT_CALL=["IDENTIFIER","NUMBER","STRING","JS","REGEX","NEW","PARAM_START","TRY","DELETE","TYPEOF","SWITCH","TRUE","FALSE","YES","NO","ON","OFF","!","!!","THIS","NULL","@","->","=>","[","(","{"];IMPLICIT_BLOCK=["->","=>","{","[",","];IMPLICIT_END=["IF","UNLESS","FOR","WHILE","UNTIL","LOOP","TERMINATOR","INDENT"].concat(EXPRESSION_END);SINGLE_LINERS=["ELSE","->","=>","TRY","FINALLY","THEN"];SINGLE_CLOSERS=["TERMINATOR","CATCH","FINALLY","ELSE","OUTDENT","LEADING_WHEN"]})();(function(){var ASSIGNED,ASSIGNMENT,CALLABLE,CODE,COFFEE_ALIASES,COFFEE_KEYWORDS,COMMENT,CONVERSIONS,HALF_ASSIGNMENTS,HEREDOC,HEREDOC_INDENT,IDENTIFIER,INTERPOLATION,JS_CLEANER,JS_FORBIDDEN,JS_KEYWORDS,LAST_DENT,LAST_DENTS,LINE_BREAK,Lexer,MULTILINER,MULTI_DENT,NEXT_CHARACTER,NOT_REGEX,NO_NEWLINE,NUMBER,OPERATOR,REGEX_END,REGEX_ESCAPE,REGEX_INTERPOLATION,REGEX_START,RESERVED,Rewriter,STRING_NEWLINES,WHITESPACE,_a,_b,_c,compact,count,helpers,include,starts;var __slice=Array.prototype.slice;if(typeof process!=="undefined"&&process!==null){_a=require("./rewriter");Rewriter=_a.Rewriter;_b=require("./helpers");helpers=_b.helpers}else{this.exports=this;Rewriter=this.Rewriter;helpers=this.helpers}_c=helpers;include=_c.include;count=_c.count;starts=_c.starts;compact=_c.compact;exports.Lexer=(function(){Lexer=function(){};Lexer.prototype.tokenize=function(code,options){var o;code=code.replace(/(\r|\s+$)/g,"");o=options||{};this.code=code;this.i=0;this.line=o.line||0;this.indent=0;this.outdebt=0;this.indents=[];this.tokens=[];while(this.i=1;delimited=__slice.call(arguments,0,_d-0);return this.balancedString(this.chunk,delimited)};Lexer.prototype.lineToken=function(){var diff,indent,nextCharacter,noNewlines,prev,size;if(!(indent=this.match(MULTI_DENT,1))){return false}this.line+=count(indent,"\n");this.i+=indent.length;prev=this.prev(2);size=indent.match(LAST_DENTS).reverse()[0].match(LAST_DENT)[1].length;nextCharacter=this.match(NEXT_CHARACTER,1);noNewlines=nextCharacter==="."||nextCharacter===","||this.unfinished();if(size===this.indent){if(noNewlines){return this.suppressNewlines()}return this.newlineToken(indent)}else{if(size>this.indent){if(noNewlines){return this.suppressNewlines()}diff=size-this.indent;this.token("INDENT",diff);this.indents.push(diff)}else{this.outdentToken(this.indent-size,noNewlines)}}this.indent=size;return true};Lexer.prototype.outdentToken=function(moveOut,noNewlines){var lastIndent;if(moveOut>-this.outdebt){while(moveOut>0&&this.indents.length){lastIndent=this.indents.pop();this.token("OUTDENT",lastIndent);moveOut-=lastIndent}}else{this.outdebt+=moveOut}if(!(noNewlines)){this.outdebt=moveOut}if(!(this.tag()==="TERMINATOR"||noNewlines)){this.token("TERMINATOR","\n")}return true};Lexer.prototype.whitespaceToken=function(){var prev,space;if(!(space=this.match(WHITESPACE,1))){return false}prev=this.prev();if(prev){prev.spaced=true}this.i+=space.length;return true};Lexer.prototype.newlineToken=function(newlines){if(!(this.tag()==="TERMINATOR")){this.token("TERMINATOR","\n")}return true};Lexer.prototype.suppressNewlines=function(){if(this.value()==="\\"){this.tokens.pop()}return true};Lexer.prototype.literalToken=function(){var match,prevSpaced,space,tag,value;match=this.chunk.match(OPERATOR);value=match&&match[1];space=match&&match[2];if(value&&value.match(CODE)){this.tagParameters()}value=value||this.chunk.substr(0,1);prevSpaced=this.prev()&&this.prev().spaced;tag=value;if(value.match(ASSIGNMENT)){tag="ASSIGN";if(include(JS_FORBIDDEN,this.value)){this.assignmentError()}}else{if(value===";"){tag="TERMINATOR"}else{if(include(CALLABLE,this.tag())&&!prevSpaced){if(value==="("){tag="CALL_START"}else{if(value==="["){tag="INDEX_START";if(this.tag()==="?"){this.tag(1,"INDEX_SOAK")}if(this.tag()==="::"){this.tag(1,"INDEX_PROTO")}}}}}}this.i+=value.length;if(space&&prevSpaced&&this.prev()[0]==="ASSIGN"&&include(HALF_ASSIGNMENTS,tag)){return this.tagHalfAssignment(tag)}this.token(tag,value);return true};Lexer.prototype.tagAccessor=function(){var accessor,prev;if((!(prev=this.prev()))||(prev&&prev.spaced)){return false}accessor=(function(){if(prev[1]==="::"){return this.tag(1,"PROTOTYPE_ACCESS")}else{if(prev[1]==="."&&!(this.value(2)===".")){if(this.tag(2)==="?"){this.tag(1,"SOAK_ACCESS");return this.tokens.splice(-2,1)}else{return this.tag(1,"PROPERTY_ACCESS")}}else{return prev[0]==="@"}}}).call(this);if(accessor){return"accessor"}else{return false}};Lexer.prototype.sanitizeHeredoc=function(doc,options){var _d,attempt,indent,match;while(match=HEREDOC_INDENT.exec(doc)){attempt=(typeof(_d=match[2])!=="undefined"&&_d!==null)?match[2]:match[3];if(!indent||attempt.length1;if(interpolated){this.token("(","(")}_h=tokens;for(i=0,_i=_h.length;i<_i;i++){token=_h[i];_j=token;tag=_j[0];value=_j[1];if(tag==="TOKENS"){this.tokens=this.tokens.concat(value)}else{if(tag==="STRING"&&escapeQuotes){escaped=value.substring(1,value.length-1).replace(/"/g,'\\"');this.token(tag,('"'+escaped+'"'))}else{this.token(tag,value)}}if(i:!?]+)([ \t]*)/;WHITESPACE=/^([ \t]+)/;COMMENT=/^(\s*#{3}(?!#)[ \t]*\n+([\s\S]*?)[ \t]*\n+[ \t]*#{3}|(\s*#[^\n]*)+)/;CODE=/^((-|=)>)/;MULTI_DENT=/^((\n([ \t]*))+)(\.)?/;LAST_DENTS=/\n([ \t]*)/g;LAST_DENT=/\n([ \t]*)/;ASSIGNMENT=/^[:=]$/;REGEX_START=/^\/[^\/ ]/;REGEX_INTERPOLATION=/([^\\]\$[a-zA-Z_@]|[^\\]\$\{.*[^\\]\})/;REGEX_END=/^(([imgy]{1,4})\b|\W|$)/;REGEX_ESCAPE=/\\[^\$]/g;JS_CLEANER=/(^`|`$)/g;MULTILINER=/\n/g;STRING_NEWLINES=/\n[ \t]*/g;NO_NEWLINE=/^([+\*&|\/\-%=<>:!.\\][<>=&|]*|and|or|is|isnt|not|delete|typeof|instanceof)$/;HEREDOC_INDENT=/(\n+([ \t]*)|^([ \t]+))/g;ASSIGNED=/^([a-zA-Z\$_]\w*[ \t]*?[:=])/;NEXT_CHARACTER=/^\s*(\S)/;NOT_REGEX=["NUMBER","REGEX","++","--","FALSE","NULL","TRUE","]"];CALLABLE=["IDENTIFIER","SUPER",")","]","}","STRING","@","THIS","?","::"];LINE_BREAK=["INDENT","OUTDENT","TERMINATOR"];HALF_ASSIGNMENTS=["-","+","/","*","%","||","&&","?"];CONVERSIONS={and:"&&",or:"||",is:"==",isnt:"!=",not:"!"}})();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,Value:14,Call:15,Code:16,Operation:17,Assign:18,If:19,Try:20,While:21,For:22,Switch:23,Extends:24,Class:25,Splat:26,Existence:27,INDENT:28,OUTDENT:29,Identifier:30,IDENTIFIER:31,AlphaNumeric:32,NUMBER:33,STRING:34,Literal:35,JS:36,REGEX:37,TRUE:38,FALSE:39,YES:40,NO:41,ON:42,OFF:43,Assignable:44,ASSIGN:45,AssignObj:46,RETURN:47,"?":48,PARAM_START:49,ParamList:50,PARAM_END:51,FuncGlyph:52,"->":53,"=>":54,OptComma:55,",":56,Param:57,PARAM:58,".":59,SimpleAssignable:60,Accessor:61,Invocation:62,ThisProperty:63,Array:64,Object:65,Parenthetical:66,Range:67,This:68,NULL:69,PROPERTY_ACCESS:70,PROTOTYPE_ACCESS:71,"::":72,SOAK_ACCESS:73,Index:74,Slice:75,INDEX_START:76,INDEX_END:77,INDEX_SOAK:78,INDEX_PROTO:79,"{":80,AssignList:81,"}":82,CLASS:83,EXTENDS:84,ClassBody:85,ClassAssign:86,NEW:87,Super:88,Arguments:89,CALL_START:90,ArgList:91,CALL_END:92,SUPER:93,THIS:94,"@":95,"[":96,"]":97,SimpleArgs:98,TRY:99,Catch:100,FINALLY:101,CATCH:102,THROW:103,"(":104,")":105,WhileSource:106,WHILE:107,WHEN:108,UNTIL:109,Loop:110,LOOP:111,FOR:112,ForVariables:113,ForSource:114,ForValue:115,IN:116,OF:117,BY:118,SWITCH:119,Whens:120,ELSE:121,When:122,LEADING_WHEN:123,IfBlock:124,IF:125,UNLESS:126,"!":127,"!!":128,"-":129,"+":130,"~":131,"--":132,"++":133,DELETE:134,TYPEOF:135,"*":136,"/":137,"%":138,"<<":139,">>":140,">>>":141,"&":142,"|":143,"^":144,"<=":145,"<":146,">":147,">=":148,"==":149,"!=":150,"&&":151,"||":152,"-=":153,"+=":154,"/=":155,"*=":156,"%=":157,"||=":158,"&&=":159,"?=":160,INSTANCEOF:161,"$accept":0,"$end":1},terminals_:{"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","28":"INDENT","29":"OUTDENT","31":"IDENTIFIER","33":"NUMBER","34":"STRING","36":"JS","37":"REGEX","38":"TRUE","39":"FALSE","40":"YES","41":"NO","42":"ON","43":"OFF","45":"ASSIGN","47":"RETURN","48":"?","49":"PARAM_START","51":"PARAM_END","53":"->","54":"=>","56":",","58":"PARAM","59":".","69":"NULL","70":"PROPERTY_ACCESS","71":"PROTOTYPE_ACCESS","72":"::","73":"SOAK_ACCESS","76":"INDEX_START","77":"INDEX_END","78":"INDEX_SOAK","79":"INDEX_PROTO","80":"{","82":"}","83":"CLASS","84":"EXTENDS","87":"NEW","90":"CALL_START","92":"CALL_END","93":"SUPER","94":"THIS","95":"@","96":"[","97":"]","99":"TRY","101":"FINALLY","102":"CATCH","103":"THROW","104":"(","105":")","107":"WHILE","108":"WHEN","109":"UNTIL","111":"LOOP","112":"FOR","116":"IN","117":"OF","118":"BY","119":"SWITCH","121":"ELSE","123":"LEADING_WHEN","125":"IF","126":"UNLESS","127":"!","128":"!!","129":"-","130":"+","131":"~","132":"--","133":"++","134":"DELETE","135":"TYPEOF","136":"*","137":"/","138":"%","139":"<<","140":">>","141":">>>","142":"&","143":"|","144":"^","145":"<=","146":"<","147":">","148":">=","149":"==","150":"!=","151":"&&","152":"||","153":"-=","154":"+=","155":"/=","156":"*=","157":"%=","158":"||=","159":"&&=","160":"?=","161":"INSTANCEOF"},productions_:[0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[30,1],[32,1],[32,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[18,3],[46,1],[46,1],[46,3],[46,3],[10,2],[10,1],[27,2],[16,5],[16,2],[52,1],[52,1],[55,0],[55,1],[50,0],[50,1],[50,3],[57,1],[57,4],[26,4],[60,1],[60,2],[60,2],[60,1],[44,1],[44,1],[44,1],[14,1],[14,1],[14,1],[14,1],[14,1],[14,1],[61,2],[61,2],[61,1],[61,2],[61,1],[61,1],[74,3],[74,2],[74,2],[65,4],[81,0],[81,1],[81,3],[81,4],[81,6],[25,2],[25,4],[25,5],[25,7],[86,1],[86,3],[85,0],[85,1],[85,3],[15,1],[15,2],[15,1],[24,3],[62,2],[62,2],[89,4],[88,2],[68,1],[68,1],[63,2],[67,6],[67,7],[75,6],[75,7],[64,4],[91,0],[91,1],[91,3],[91,4],[91,6],[98,1],[98,3],[20,3],[20,4],[20,5],[100,3],[11,2],[66,3],[106,2],[106,4],[106,2],[106,4],[21,2],[21,2],[21,2],[21,1],[110,2],[110,2],[22,4],[22,4],[22,4],[115,1],[115,1],[115,1],[113,1],[113,3],[114,2],[114,2],[114,4],[114,4],[114,4],[114,6],[114,6],[23,5],[23,7],[23,4],[23,6],[120,1],[120,2],[122,3],[122,4],[124,3],[124,3],[124,5],[124,3],[19,1],[19,3],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,4],[17,4]],performAction:function anonymous(yytext,yyleng,yylineno,yy){var $$=arguments[5],$0=arguments[5].length;switch(arguments[4]){case 1:return this.$=new Expressions();break;case 2:return this.$=new Expressions();break;case 3:return this.$=$$[$0-1+1-1];break;case 4:return this.$=$$[$0-2+1-1];break;case 5:this.$=Expressions.wrap([$$[$0-1+1-1]]);break;case 6:this.$=$$[$0-3+1-1].push($$[$0-3+3-1]);break;case 7:this.$=$$[$0-2+1-1];break;case 8:this.$=$$[$0-1+1-1];break;case 9:this.$=$$[$0-1+1-1];break;case 10:this.$=$$[$0-1+1-1];break;case 11:this.$=$$[$0-1+1-1];break;case 12:this.$=new LiteralNode($$[$0-1+1-1]);break;case 13:this.$=new LiteralNode($$[$0-1+1-1]);break;case 14:this.$=$$[$0-1+1-1];break;case 15:this.$=$$[$0-1+1-1];break;case 16:this.$=$$[$0-1+1-1];break;case 17:this.$=$$[$0-1+1-1];break;case 18:this.$=$$[$0-1+1-1];break;case 19:this.$=$$[$0-1+1-1];break;case 20:this.$=$$[$0-1+1-1];break;case 21:this.$=$$[$0-1+1-1];break;case 22:this.$=$$[$0-1+1-1];break;case 23:this.$=$$[$0-1+1-1];break;case 24:this.$=$$[$0-1+1-1];break;case 25:this.$=$$[$0-1+1-1];break;case 26:this.$=$$[$0-1+1-1];break;case 27:this.$=$$[$0-1+1-1];break;case 28:this.$=$$[$0-3+2-1];break;case 29:this.$=new Expressions();break;case 30:this.$=new LiteralNode($$[$0-1+1-1]);break;case 31:this.$=new LiteralNode($$[$0-1+1-1]);break;case 32:this.$=new LiteralNode($$[$0-1+1-1]);break;case 33:this.$=$$[$0-1+1-1];break;case 34:this.$=new LiteralNode($$[$0-1+1-1]);break;case 35:this.$=new LiteralNode($$[$0-1+1-1]);break;case 36:this.$=new LiteralNode(true);break;case 37:this.$=new LiteralNode(false);break;case 38:this.$=new LiteralNode(true);break;case 39:this.$=new LiteralNode(false);break;case 40:this.$=new LiteralNode(true);break;case 41:this.$=new LiteralNode(false);break;case 42:this.$=new AssignNode($$[$0-3+1-1],$$[$0-3+3-1]);break;case 43:this.$=new ValueNode($$[$0-1+1-1]);break;case 44:this.$=$$[$0-1+1-1];break;case 45:this.$=new AssignNode(new ValueNode($$[$0-3+1-1]),$$[$0-3+3-1],"object");break;case 46:this.$=new AssignNode(new ValueNode($$[$0-3+1-1]),$$[$0-3+3-1],"object");break;case 47:this.$=new ReturnNode($$[$0-2+2-1]);break;case 48:this.$=new ReturnNode(new ValueNode(new LiteralNode("null")));break;case 49:this.$=new ExistenceNode($$[$0-2+1-1]);break;case 50:this.$=new CodeNode($$[$0-5+2-1],$$[$0-5+5-1],$$[$0-5+4-1]);break;case 51:this.$=new CodeNode([],$$[$0-2+2-1],$$[$0-2+1-1]);break;case 52:this.$="func";break;case 53:this.$="boundfunc";break;case 54:this.$=$$[$0-1+1-1];break;case 55:this.$=$$[$0-1+1-1];break;case 56:this.$=[];break;case 57:this.$=[$$[$0-1+1-1]];break;case 58:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 59:this.$=new LiteralNode($$[$0-1+1-1]);break;case 60:this.$=new SplatNode($$[$0-4+1-1]);break;case 61:this.$=new SplatNode($$[$0-4+1-1]);break;case 62:this.$=new ValueNode($$[$0-1+1-1]);break;case 63:this.$=$$[$0-2+1-1].push($$[$0-2+2-1]);break;case 64:this.$=new ValueNode($$[$0-2+1-1],[$$[$0-2+2-1]]);break;case 65:this.$=$$[$0-1+1-1];break;case 66:this.$=$$[$0-1+1-1];break;case 67:this.$=new ValueNode($$[$0-1+1-1]);break;case 68:this.$=new ValueNode($$[$0-1+1-1]);break;case 69:this.$=$$[$0-1+1-1];break;case 70:this.$=new ValueNode($$[$0-1+1-1]);break;case 71:this.$=new ValueNode($$[$0-1+1-1]);break;case 72:this.$=new ValueNode($$[$0-1+1-1]);break;case 73:this.$=$$[$0-1+1-1];break;case 74:this.$=new ValueNode(new LiteralNode("null"));break;case 75:this.$=new AccessorNode($$[$0-2+2-1]);break;case 76:this.$=new AccessorNode($$[$0-2+2-1],"prototype");break;case 77:this.$=new AccessorNode(new LiteralNode("prototype"));break;case 78:this.$=new AccessorNode($$[$0-2+2-1],"soak");break;case 79:this.$=$$[$0-1+1-1];break;case 80:this.$=new SliceNode($$[$0-1+1-1]);break;case 81:this.$=new IndexNode($$[$0-3+2-1]);break;case 82:this.$=(function(){$$[$0-2+2-1].soakNode=true;return $$[$0-2+2-1]}());break;case 83:this.$=(function(){$$[$0-2+2-1].proto=true;return $$[$0-2+2-1]}());break;case 84:this.$=new ObjectNode($$[$0-4+2-1]);break;case 85:this.$=[];break;case 86:this.$=[$$[$0-1+1-1]];break;case 87:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 88:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 89:this.$=$$[$0-6+1-1].concat($$[$0-6+4-1]);break;case 90:this.$=new ClassNode($$[$0-2+2-1]);break;case 91:this.$=new ClassNode($$[$0-4+2-1],$$[$0-4+4-1]);break;case 92:this.$=new ClassNode($$[$0-5+2-1],null,$$[$0-5+4-1]);break;case 93:this.$=new ClassNode($$[$0-7+2-1],$$[$0-7+4-1],$$[$0-7+6-1]);break;case 94:this.$=$$[$0-1+1-1];break;case 95:this.$=new AssignNode(new ValueNode($$[$0-3+1-1]),$$[$0-3+3-1],"this");break;case 96:this.$=[];break;case 97:this.$=[$$[$0-1+1-1]];break;case 98:this.$=$$[$0-3+1-1].concat($$[$0-3+3-1]);break;case 99:this.$=$$[$0-1+1-1];break;case 100:this.$=$$[$0-2+2-1].newInstance();break;case 101:this.$=$$[$0-1+1-1];break;case 102:this.$=new ExtendsNode($$[$0-3+1-1],$$[$0-3+3-1]);break;case 103:this.$=new CallNode($$[$0-2+1-1],$$[$0-2+2-1]);break;case 104:this.$=new CallNode($$[$0-2+1-1],$$[$0-2+2-1]);break;case 105:this.$=$$[$0-4+2-1];break;case 106:this.$=new CallNode("super",$$[$0-2+2-1]);break;case 107:this.$=new ValueNode(new LiteralNode("this"));break;case 108:this.$=new ValueNode(new LiteralNode("this"));break;case 109:this.$=new ValueNode(new LiteralNode("this"),[new AccessorNode($$[$0-2+2-1])]);break;case 110:this.$=new RangeNode($$[$0-6+2-1],$$[$0-6+5-1]);break;case 111:this.$=new RangeNode($$[$0-7+2-1],$$[$0-7+6-1],true);break;case 112:this.$=new RangeNode($$[$0-6+2-1],$$[$0-6+5-1]);break;case 113:this.$=new RangeNode($$[$0-7+2-1],$$[$0-7+6-1],true);break;case 114:this.$=new ArrayNode($$[$0-4+2-1]);break;case 115:this.$=[];break;case 116:this.$=[$$[$0-1+1-1]];break;case 117:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 118:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 119:this.$=$$[$0-6+1-1].concat($$[$0-6+4-1]);break;case 120:this.$=$$[$0-1+1-1];break;case 121:this.$=(function(){if($$[$0-3+1-1] instanceof Array){return $$[$0-3+1-1].concat([$$[$0-3+3-1]])}else{return[$$[$0-3+1-1]].concat([$$[$0-3+3-1]])}}());break;case 122:this.$=new TryNode($$[$0-3+2-1],$$[$0-3+3-1][0],$$[$0-3+3-1][1]);break;case 123:this.$=new TryNode($$[$0-4+2-1],null,null,$$[$0-4+4-1]);break;case 124:this.$=new TryNode($$[$0-5+2-1],$$[$0-5+3-1][0],$$[$0-5+3-1][1],$$[$0-5+5-1]);break;case 125:this.$=[$$[$0-3+2-1],$$[$0-3+3-1]];break;case 126:this.$=new ThrowNode($$[$0-2+2-1]);break;case 127:this.$=new ParentheticalNode($$[$0-3+2-1]);break;case 128:this.$=new WhileNode($$[$0-2+2-1]);break;case 129:this.$=new WhileNode($$[$0-4+2-1],{guard:$$[$0-4+4-1]});break;case 130:this.$=new WhileNode($$[$0-2+2-1],{invert:true});break;case 131:this.$=new WhileNode($$[$0-4+2-1],{invert:true,guard:$$[$0-4+4-1]});break;case 132:this.$=$$[$0-2+1-1].addBody($$[$0-2+2-1]);break;case 133:this.$=$$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]]));break;case 134:this.$=$$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]]));break;case 135:this.$=$$[$0-1+1-1];break;case 136:this.$=new WhileNode(new LiteralNode("true")).addBody($$[$0-2+2-1]);break;case 137:this.$=new WhileNode(new LiteralNode("true")).addBody(Expressions.wrap([$$[$0-2+2-1]]));break;case 138:this.$=new ForNode($$[$0-4+1-1],$$[$0-4+4-1],$$[$0-4+3-1][0],$$[$0-4+3-1][1]);break;case 139:this.$=new ForNode($$[$0-4+1-1],$$[$0-4+4-1],$$[$0-4+3-1][0],$$[$0-4+3-1][1]);break;case 140:this.$=new ForNode($$[$0-4+4-1],$$[$0-4+3-1],$$[$0-4+2-1][0],$$[$0-4+2-1][1]);break;case 141:this.$=$$[$0-1+1-1];break;case 142:this.$=new ValueNode($$[$0-1+1-1]);break;case 143:this.$=new ValueNode($$[$0-1+1-1]);break;case 144:this.$=[$$[$0-1+1-1]];break;case 145:this.$=[$$[$0-3+1-1],$$[$0-3+3-1]];break;case 146:this.$={source:$$[$0-2+2-1]};break;case 147:this.$={source:$$[$0-2+2-1],object:true};break;case 148:this.$={source:$$[$0-4+2-1],guard:$$[$0-4+4-1]};break;case 149:this.$={source:$$[$0-4+2-1],guard:$$[$0-4+4-1],object:true};break;case 150:this.$={source:$$[$0-4+2-1],step:$$[$0-4+4-1]};break;case 151:this.$={source:$$[$0-6+2-1],guard:$$[$0-6+4-1],step:$$[$0-6+6-1]};break;case 152:this.$={source:$$[$0-6+2-1],step:$$[$0-6+4-1],guard:$$[$0-6+6-1]};break;case 153:this.$=$$[$0-5+4-1].switchesOver($$[$0-5+2-1]);break;case 154:this.$=$$[$0-7+4-1].switchesOver($$[$0-7+2-1]).addElse($$[$0-7+6-1],true);break;case 155:this.$=$$[$0-4+3-1];break;case 156:this.$=$$[$0-6+3-1].addElse($$[$0-6+5-1],true);break;case 157:this.$=$$[$0-1+1-1];break;case 158:this.$=$$[$0-2+1-1].addElse($$[$0-2+2-1]);break;case 159:this.$=new IfNode($$[$0-3+2-1],$$[$0-3+3-1],{statement:true});break;case 160:this.$=new IfNode($$[$0-4+2-1],$$[$0-4+3-1],{statement:true});break;case 161:this.$=new IfNode($$[$0-3+2-1],$$[$0-3+3-1]);break;case 162:this.$=new IfNode($$[$0-3+2-1],$$[$0-3+3-1],{invert:true});break;case 163:this.$=$$[$0-5+1-1].addElse((new IfNode($$[$0-5+4-1],$$[$0-5+5-1])).forceStatement());break;case 164:this.$=$$[$0-3+1-1].addElse($$[$0-3+3-1]);break;case 165:this.$=$$[$0-1+1-1];break;case 166:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),{statement:true});break;case 167:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),{statement:true});break;case 168:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),{statement:true,invert:true});break;case 169:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),{statement:true,invert:true});break;case 170:this.$=new OpNode("!",$$[$0-2+2-1]);break;case 171:this.$=new OpNode("!!",$$[$0-2+2-1]);break;case 172:this.$=new OpNode("-",$$[$0-2+2-1]);break;case 173:this.$=new OpNode("+",$$[$0-2+2-1]);break;case 174:this.$=new OpNode("~",$$[$0-2+2-1]);break;case 175:this.$=new OpNode("--",$$[$0-2+2-1]);break;case 176:this.$=new OpNode("++",$$[$0-2+2-1]);break;case 177:this.$=new OpNode("delete",$$[$0-2+2-1]);break;case 178:this.$=new OpNode("typeof",$$[$0-2+2-1]);break;case 179:this.$=new OpNode("--",$$[$0-2+1-1],null,true);break;case 180:this.$=new OpNode("++",$$[$0-2+1-1],null,true);break;case 181:this.$=new OpNode("*",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 182:this.$=new OpNode("/",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 183:this.$=new OpNode("%",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 184:this.$=new OpNode("+",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 185:this.$=new OpNode("-",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 186:this.$=new OpNode("<<",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 187:this.$=new OpNode(">>",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 188:this.$=new OpNode(">>>",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 189:this.$=new OpNode("&",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 190:this.$=new OpNode("|",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 191:this.$=new OpNode("^",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 192:this.$=new OpNode("<=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 193:this.$=new OpNode("<",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 194:this.$=new OpNode(">",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 195:this.$=new OpNode(">=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 196:this.$=new OpNode("==",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 197:this.$=new OpNode("!=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 198:this.$=new OpNode("&&",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 199:this.$=new OpNode("||",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 200:this.$=new OpNode("?",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 201:this.$=new OpNode("-=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 202:this.$=new OpNode("+=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 203:this.$=new OpNode("/=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 204:this.$=new OpNode("*=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 205:this.$=new OpNode("%=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 206:this.$=new OpNode("||=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 207:this.$=new OpNode("&&=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 208:this.$=new OpNode("?=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 209:this.$=new OpNode("instanceof",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 210:this.$=new InNode($$[$0-3+1-1],$$[$0-3+3-1]);break;case 211:this.$=new OpNode("in",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 212:this.$=new OpNode("!",new InNode($$[$0-4+1-1],$$[$0-4+4-1]));break;case 213:this.$=new OpNode("!",new ParentheticalNode(new OpNode("in",$$[$0-4+1-1],$$[$0-4+4-1])));break}},table:[{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,6],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[3]},{"1":[2,2]},{"1":[2,3],"4":[1,86]},{"4":[1,87]},{"1":[2,5],"4":[2,5],"29":[2,5]},{"5":88,"7":5,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[1,89],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,8],"4":[2,8],"29":[2,8],"48":[1,111],"59":[1,128],"105":[2,8],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,9],"4":[2,9],"29":[2,9],"105":[2,9],"106":131,"107":[1,77],"109":[1,78],"112":[1,132],"125":[1,129],"126":[1,130]},{"1":[2,14],"4":[2,14],"28":[2,14],"29":[2,14],"48":[2,14],"56":[2,14],"59":[2,14],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,14],"78":[1,143],"79":[1,144],"82":[2,14],"89":133,"90":[1,135],"92":[2,14],"97":[2,14],"105":[2,14],"107":[2,14],"108":[2,14],"109":[2,14],"112":[2,14],"116":[2,14],"117":[2,14],"118":[2,14],"125":[2,14],"126":[2,14],"127":[2,14],"129":[2,14],"130":[2,14],"132":[2,14],"133":[2,14],"136":[2,14],"137":[2,14],"138":[2,14],"139":[2,14],"140":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[2,14],"148":[2,14],"149":[2,14],"150":[2,14],"151":[2,14],"152":[2,14],"153":[2,14],"154":[2,14],"155":[2,14],"156":[2,14],"157":[2,14],"158":[2,14],"159":[2,14],"160":[2,14],"161":[2,14]},{"1":[2,15],"4":[2,15],"28":[2,15],"29":[2,15],"48":[2,15],"56":[2,15],"59":[2,15],"77":[2,15],"82":[2,15],"92":[2,15],"97":[2,15],"105":[2,15],"107":[2,15],"108":[2,15],"109":[2,15],"112":[2,15],"116":[2,15],"117":[2,15],"118":[2,15],"125":[2,15],"126":[2,15],"127":[2,15],"129":[2,15],"130":[2,15],"132":[2,15],"133":[2,15],"136":[2,15],"137":[2,15],"138":[2,15],"139":[2,15],"140":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[2,15],"149":[2,15],"150":[2,15],"151":[2,15],"152":[2,15],"153":[2,15],"154":[2,15],"155":[2,15],"156":[2,15],"157":[2,15],"158":[2,15],"159":[2,15],"160":[2,15],"161":[2,15]},{"1":[2,16],"4":[2,16],"28":[2,16],"29":[2,16],"48":[2,16],"56":[2,16],"59":[2,16],"77":[2,16],"82":[2,16],"92":[2,16],"97":[2,16],"105":[2,16],"107":[2,16],"108":[2,16],"109":[2,16],"112":[2,16],"116":[2,16],"117":[2,16],"118":[2,16],"125":[2,16],"126":[2,16],"127":[2,16],"129":[2,16],"130":[2,16],"132":[2,16],"133":[2,16],"136":[2,16],"137":[2,16],"138":[2,16],"139":[2,16],"140":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"148":[2,16],"149":[2,16],"150":[2,16],"151":[2,16],"152":[2,16],"153":[2,16],"154":[2,16],"155":[2,16],"156":[2,16],"157":[2,16],"158":[2,16],"159":[2,16],"160":[2,16],"161":[2,16]},{"1":[2,17],"4":[2,17],"28":[2,17],"29":[2,17],"48":[2,17],"56":[2,17],"59":[2,17],"77":[2,17],"82":[2,17],"92":[2,17],"97":[2,17],"105":[2,17],"107":[2,17],"108":[2,17],"109":[2,17],"112":[2,17],"116":[2,17],"117":[2,17],"118":[2,17],"125":[2,17],"126":[2,17],"127":[2,17],"129":[2,17],"130":[2,17],"132":[2,17],"133":[2,17],"136":[2,17],"137":[2,17],"138":[2,17],"139":[2,17],"140":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"148":[2,17],"149":[2,17],"150":[2,17],"151":[2,17],"152":[2,17],"153":[2,17],"154":[2,17],"155":[2,17],"156":[2,17],"157":[2,17],"158":[2,17],"159":[2,17],"160":[2,17],"161":[2,17]},{"1":[2,18],"4":[2,18],"28":[2,18],"29":[2,18],"48":[2,18],"56":[2,18],"59":[2,18],"77":[2,18],"82":[2,18],"92":[2,18],"97":[2,18],"105":[2,18],"107":[2,18],"108":[2,18],"109":[2,18],"112":[2,18],"116":[2,18],"117":[2,18],"118":[2,18],"125":[2,18],"126":[2,18],"127":[2,18],"129":[2,18],"130":[2,18],"132":[2,18],"133":[2,18],"136":[2,18],"137":[2,18],"138":[2,18],"139":[2,18],"140":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"148":[2,18],"149":[2,18],"150":[2,18],"151":[2,18],"152":[2,18],"153":[2,18],"154":[2,18],"155":[2,18],"156":[2,18],"157":[2,18],"158":[2,18],"159":[2,18],"160":[2,18],"161":[2,18]},{"1":[2,19],"4":[2,19],"28":[2,19],"29":[2,19],"48":[2,19],"56":[2,19],"59":[2,19],"77":[2,19],"82":[2,19],"92":[2,19],"97":[2,19],"105":[2,19],"107":[2,19],"108":[2,19],"109":[2,19],"112":[2,19],"116":[2,19],"117":[2,19],"118":[2,19],"125":[2,19],"126":[2,19],"127":[2,19],"129":[2,19],"130":[2,19],"132":[2,19],"133":[2,19],"136":[2,19],"137":[2,19],"138":[2,19],"139":[2,19],"140":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"148":[2,19],"149":[2,19],"150":[2,19],"151":[2,19],"152":[2,19],"153":[2,19],"154":[2,19],"155":[2,19],"156":[2,19],"157":[2,19],"158":[2,19],"159":[2,19],"160":[2,19],"161":[2,19]},{"1":[2,20],"4":[2,20],"28":[2,20],"29":[2,20],"48":[2,20],"56":[2,20],"59":[2,20],"77":[2,20],"82":[2,20],"92":[2,20],"97":[2,20],"105":[2,20],"107":[2,20],"108":[2,20],"109":[2,20],"112":[2,20],"116":[2,20],"117":[2,20],"118":[2,20],"125":[2,20],"126":[2,20],"127":[2,20],"129":[2,20],"130":[2,20],"132":[2,20],"133":[2,20],"136":[2,20],"137":[2,20],"138":[2,20],"139":[2,20],"140":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"148":[2,20],"149":[2,20],"150":[2,20],"151":[2,20],"152":[2,20],"153":[2,20],"154":[2,20],"155":[2,20],"156":[2,20],"157":[2,20],"158":[2,20],"159":[2,20],"160":[2,20],"161":[2,20]},{"1":[2,21],"4":[2,21],"28":[2,21],"29":[2,21],"48":[2,21],"56":[2,21],"59":[2,21],"77":[2,21],"82":[2,21],"92":[2,21],"97":[2,21],"105":[2,21],"107":[2,21],"108":[2,21],"109":[2,21],"112":[2,21],"116":[2,21],"117":[2,21],"118":[2,21],"125":[2,21],"126":[2,21],"127":[2,21],"129":[2,21],"130":[2,21],"132":[2,21],"133":[2,21],"136":[2,21],"137":[2,21],"138":[2,21],"139":[2,21],"140":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"148":[2,21],"149":[2,21],"150":[2,21],"151":[2,21],"152":[2,21],"153":[2,21],"154":[2,21],"155":[2,21],"156":[2,21],"157":[2,21],"158":[2,21],"159":[2,21],"160":[2,21],"161":[2,21]},{"1":[2,22],"4":[2,22],"28":[2,22],"29":[2,22],"48":[2,22],"56":[2,22],"59":[2,22],"77":[2,22],"82":[2,22],"92":[2,22],"97":[2,22],"105":[2,22],"107":[2,22],"108":[2,22],"109":[2,22],"112":[2,22],"116":[2,22],"117":[2,22],"118":[2,22],"125":[2,22],"126":[2,22],"127":[2,22],"129":[2,22],"130":[2,22],"132":[2,22],"133":[2,22],"136":[2,22],"137":[2,22],"138":[2,22],"139":[2,22],"140":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"148":[2,22],"149":[2,22],"150":[2,22],"151":[2,22],"152":[2,22],"153":[2,22],"154":[2,22],"155":[2,22],"156":[2,22],"157":[2,22],"158":[2,22],"159":[2,22],"160":[2,22],"161":[2,22]},{"1":[2,23],"4":[2,23],"28":[2,23],"29":[2,23],"48":[2,23],"56":[2,23],"59":[2,23],"77":[2,23],"82":[2,23],"92":[2,23],"97":[2,23],"105":[2,23],"107":[2,23],"108":[2,23],"109":[2,23],"112":[2,23],"116":[2,23],"117":[2,23],"118":[2,23],"125":[2,23],"126":[2,23],"127":[2,23],"129":[2,23],"130":[2,23],"132":[2,23],"133":[2,23],"136":[2,23],"137":[2,23],"138":[2,23],"139":[2,23],"140":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"148":[2,23],"149":[2,23],"150":[2,23],"151":[2,23],"152":[2,23],"153":[2,23],"154":[2,23],"155":[2,23],"156":[2,23],"157":[2,23],"158":[2,23],"159":[2,23],"160":[2,23],"161":[2,23]},{"1":[2,24],"4":[2,24],"28":[2,24],"29":[2,24],"48":[2,24],"56":[2,24],"59":[2,24],"77":[2,24],"82":[2,24],"92":[2,24],"97":[2,24],"105":[2,24],"107":[2,24],"108":[2,24],"109":[2,24],"112":[2,24],"116":[2,24],"117":[2,24],"118":[2,24],"125":[2,24],"126":[2,24],"127":[2,24],"129":[2,24],"130":[2,24],"132":[2,24],"133":[2,24],"136":[2,24],"137":[2,24],"138":[2,24],"139":[2,24],"140":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"148":[2,24],"149":[2,24],"150":[2,24],"151":[2,24],"152":[2,24],"153":[2,24],"154":[2,24],"155":[2,24],"156":[2,24],"157":[2,24],"158":[2,24],"159":[2,24],"160":[2,24],"161":[2,24]},{"1":[2,25],"4":[2,25],"28":[2,25],"29":[2,25],"48":[2,25],"56":[2,25],"59":[2,25],"77":[2,25],"82":[2,25],"92":[2,25],"97":[2,25],"105":[2,25],"107":[2,25],"108":[2,25],"109":[2,25],"112":[2,25],"116":[2,25],"117":[2,25],"118":[2,25],"125":[2,25],"126":[2,25],"127":[2,25],"129":[2,25],"130":[2,25],"132":[2,25],"133":[2,25],"136":[2,25],"137":[2,25],"138":[2,25],"139":[2,25],"140":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"148":[2,25],"149":[2,25],"150":[2,25],"151":[2,25],"152":[2,25],"153":[2,25],"154":[2,25],"155":[2,25],"156":[2,25],"157":[2,25],"158":[2,25],"159":[2,25],"160":[2,25],"161":[2,25]},{"1":[2,26],"4":[2,26],"28":[2,26],"29":[2,26],"48":[2,26],"56":[2,26],"59":[2,26],"77":[2,26],"82":[2,26],"92":[2,26],"97":[2,26],"105":[2,26],"107":[2,26],"108":[2,26],"109":[2,26],"112":[2,26],"116":[2,26],"117":[2,26],"118":[2,26],"125":[2,26],"126":[2,26],"127":[2,26],"129":[2,26],"130":[2,26],"132":[2,26],"133":[2,26],"136":[2,26],"137":[2,26],"138":[2,26],"139":[2,26],"140":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"148":[2,26],"149":[2,26],"150":[2,26],"151":[2,26],"152":[2,26],"153":[2,26],"154":[2,26],"155":[2,26],"156":[2,26],"157":[2,26],"158":[2,26],"159":[2,26],"160":[2,26],"161":[2,26]},{"1":[2,27],"4":[2,27],"28":[2,27],"29":[2,27],"48":[2,27],"56":[2,27],"59":[2,27],"77":[2,27],"82":[2,27],"92":[2,27],"97":[2,27],"105":[2,27],"107":[2,27],"108":[2,27],"109":[2,27],"112":[2,27],"116":[2,27],"117":[2,27],"118":[2,27],"125":[2,27],"126":[2,27],"127":[2,27],"129":[2,27],"130":[2,27],"132":[2,27],"133":[2,27],"136":[2,27],"137":[2,27],"138":[2,27],"139":[2,27],"140":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"148":[2,27],"149":[2,27],"150":[2,27],"151":[2,27],"152":[2,27],"153":[2,27],"154":[2,27],"155":[2,27],"156":[2,27],"157":[2,27],"158":[2,27],"159":[2,27],"160":[2,27],"161":[2,27]},{"1":[2,10],"4":[2,10],"29":[2,10],"105":[2,10],"107":[2,10],"109":[2,10],"112":[2,10],"125":[2,10],"126":[2,10]},{"1":[2,11],"4":[2,11],"29":[2,11],"105":[2,11],"107":[2,11],"109":[2,11],"112":[2,11],"125":[2,11],"126":[2,11]},{"1":[2,12],"4":[2,12],"29":[2,12],"105":[2,12],"107":[2,12],"109":[2,12],"112":[2,12],"125":[2,12],"126":[2,12]},{"1":[2,13],"4":[2,13],"29":[2,13],"105":[2,13],"107":[2,13],"109":[2,13],"112":[2,13],"125":[2,13],"126":[2,13]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"45":[1,145],"48":[2,69],"56":[2,69],"59":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"77":[2,69],"78":[2,69],"79":[2,69],"82":[2,69],"90":[2,69],"92":[2,69],"97":[2,69],"105":[2,69],"107":[2,69],"108":[2,69],"109":[2,69],"112":[2,69],"116":[2,69],"117":[2,69],"118":[2,69],"125":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"132":[2,69],"133":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69],"140":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69]},{"1":[2,70],"4":[2,70],"28":[2,70],"29":[2,70],"48":[2,70],"56":[2,70],"59":[2,70],"70":[2,70],"71":[2,70],"72":[2,70],"73":[2,70],"76":[2,70],"77":[2,70],"78":[2,70],"79":[2,70],"82":[2,70],"90":[2,70],"92":[2,70],"97":[2,70],"105":[2,70],"107":[2,70],"108":[2,70],"109":[2,70],"112":[2,70],"116":[2,70],"117":[2,70],"118":[2,70],"125":[2,70],"126":[2,70],"127":[2,70],"129":[2,70],"130":[2,70],"132":[2,70],"133":[2,70],"136":[2,70],"137":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70]},{"1":[2,71],"4":[2,71],"28":[2,71],"29":[2,71],"48":[2,71],"56":[2,71],"59":[2,71],"70":[2,71],"71":[2,71],"72":[2,71],"73":[2,71],"76":[2,71],"77":[2,71],"78":[2,71],"79":[2,71],"82":[2,71],"90":[2,71],"92":[2,71],"97":[2,71],"105":[2,71],"107":[2,71],"108":[2,71],"109":[2,71],"112":[2,71],"116":[2,71],"117":[2,71],"118":[2,71],"125":[2,71],"126":[2,71],"127":[2,71],"129":[2,71],"130":[2,71],"132":[2,71],"133":[2,71],"136":[2,71],"137":[2,71],"138":[2,71],"139":[2,71],"140":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71]},{"1":[2,72],"4":[2,72],"28":[2,72],"29":[2,72],"48":[2,72],"56":[2,72],"59":[2,72],"70":[2,72],"71":[2,72],"72":[2,72],"73":[2,72],"76":[2,72],"77":[2,72],"78":[2,72],"79":[2,72],"82":[2,72],"90":[2,72],"92":[2,72],"97":[2,72],"105":[2,72],"107":[2,72],"108":[2,72],"109":[2,72],"112":[2,72],"116":[2,72],"117":[2,72],"118":[2,72],"125":[2,72],"126":[2,72],"127":[2,72],"129":[2,72],"130":[2,72],"132":[2,72],"133":[2,72],"136":[2,72],"137":[2,72],"138":[2,72],"139":[2,72],"140":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72]},{"1":[2,73],"4":[2,73],"28":[2,73],"29":[2,73],"48":[2,73],"56":[2,73],"59":[2,73],"70":[2,73],"71":[2,73],"72":[2,73],"73":[2,73],"76":[2,73],"77":[2,73],"78":[2,73],"79":[2,73],"82":[2,73],"90":[2,73],"92":[2,73],"97":[2,73],"105":[2,73],"107":[2,73],"108":[2,73],"109":[2,73],"112":[2,73],"116":[2,73],"117":[2,73],"118":[2,73],"125":[2,73],"126":[2,73],"127":[2,73],"129":[2,73],"130":[2,73],"132":[2,73],"133":[2,73],"136":[2,73],"137":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73]},{"1":[2,74],"4":[2,74],"28":[2,74],"29":[2,74],"48":[2,74],"56":[2,74],"59":[2,74],"70":[2,74],"71":[2,74],"72":[2,74],"73":[2,74],"76":[2,74],"77":[2,74],"78":[2,74],"79":[2,74],"82":[2,74],"90":[2,74],"92":[2,74],"97":[2,74],"105":[2,74],"107":[2,74],"108":[2,74],"109":[2,74],"112":[2,74],"116":[2,74],"117":[2,74],"118":[2,74],"125":[2,74],"126":[2,74],"127":[2,74],"129":[2,74],"130":[2,74],"132":[2,74],"133":[2,74],"136":[2,74],"137":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74],"151":[2,74],"152":[2,74],"153":[2,74],"154":[2,74],"155":[2,74],"156":[2,74],"157":[2,74],"158":[2,74],"159":[2,74],"160":[2,74],"161":[2,74]},{"1":[2,99],"4":[2,99],"28":[2,99],"29":[2,99],"48":[2,99],"56":[2,99],"59":[2,99],"61":147,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,99],"78":[1,143],"79":[1,144],"82":[2,99],"89":146,"90":[1,135],"92":[2,99],"97":[2,99],"105":[2,99],"107":[2,99],"108":[2,99],"109":[2,99],"112":[2,99],"116":[2,99],"117":[2,99],"118":[2,99],"125":[2,99],"126":[2,99],"127":[2,99],"129":[2,99],"130":[2,99],"132":[2,99],"133":[2,99],"136":[2,99],"137":[2,99],"138":[2,99],"139":[2,99],"140":[2,99],"141":[2,99],"142":[2,99],"143":[2,99],"144":[2,99],"145":[2,99],"146":[2,99],"147":[2,99],"148":[2,99],"149":[2,99],"150":[2,99],"151":[2,99],"152":[2,99],"153":[2,99],"154":[2,99],"155":[2,99],"156":[2,99],"157":[2,99],"158":[2,99],"159":[2,99],"160":[2,99],"161":[2,99]},{"14":149,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":151,"62":148,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"1":[2,101],"4":[2,101],"28":[2,101],"29":[2,101],"48":[2,101],"56":[2,101],"59":[2,101],"77":[2,101],"82":[2,101],"92":[2,101],"97":[2,101],"105":[2,101],"107":[2,101],"108":[2,101],"109":[2,101],"112":[2,101],"116":[2,101],"117":[2,101],"118":[2,101],"125":[2,101],"126":[2,101],"127":[2,101],"129":[2,101],"130":[2,101],"132":[2,101],"133":[2,101],"136":[2,101],"137":[2,101],"138":[2,101],"139":[2,101],"140":[2,101],"141":[2,101],"142":[2,101],"143":[2,101],"144":[2,101],"145":[2,101],"146":[2,101],"147":[2,101],"148":[2,101],"149":[2,101],"150":[2,101],"151":[2,101],"152":[2,101],"153":[2,101],"154":[2,101],"155":[2,101],"156":[2,101],"157":[2,101],"158":[2,101],"159":[2,101],"160":[2,101],"161":[2,101]},{"50":152,"51":[2,56],"56":[2,56],"57":153,"58":[1,154]},{"6":155,"28":[1,6]},{"8":156,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":158,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":159,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":160,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":161,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":162,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":163,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":164,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":165,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,165],"4":[2,165],"28":[2,165],"29":[2,165],"48":[2,165],"56":[2,165],"59":[2,165],"77":[2,165],"82":[2,165],"92":[2,165],"97":[2,165],"105":[2,165],"107":[2,165],"108":[2,165],"109":[2,165],"112":[2,165],"116":[2,165],"117":[2,165],"118":[2,165],"121":[1,166],"125":[2,165],"126":[2,165],"127":[2,165],"129":[2,165],"130":[2,165],"132":[2,165],"133":[2,165],"136":[2,165],"137":[2,165],"138":[2,165],"139":[2,165],"140":[2,165],"141":[2,165],"142":[2,165],"143":[2,165],"144":[2,165],"145":[2,165],"146":[2,165],"147":[2,165],"148":[2,165],"149":[2,165],"150":[2,165],"151":[2,165],"152":[2,165],"153":[2,165],"154":[2,165],"155":[2,165],"156":[2,165],"157":[2,165],"158":[2,165],"159":[2,165],"160":[2,165],"161":[2,165]},{"6":167,"28":[1,6]},{"6":168,"28":[1,6]},{"1":[2,135],"4":[2,135],"28":[2,135],"29":[2,135],"48":[2,135],"56":[2,135],"59":[2,135],"77":[2,135],"82":[2,135],"92":[2,135],"97":[2,135],"105":[2,135],"107":[2,135],"108":[2,135],"109":[2,135],"112":[2,135],"116":[2,135],"117":[2,135],"118":[2,135],"125":[2,135],"126":[2,135],"127":[2,135],"129":[2,135],"130":[2,135],"132":[2,135],"133":[2,135],"136":[2,135],"137":[2,135],"138":[2,135],"139":[2,135],"140":[2,135],"141":[2,135],"142":[2,135],"143":[2,135],"144":[2,135],"145":[2,135],"146":[2,135],"147":[2,135],"148":[2,135],"149":[2,135],"150":[2,135],"151":[2,135],"152":[2,135],"153":[2,135],"154":[2,135],"155":[2,135],"156":[2,135],"157":[2,135],"158":[2,135],"159":[2,135],"160":[2,135],"161":[2,135]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"113":169,"115":170},{"8":175,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,176],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,66],"4":[2,66],"28":[2,66],"29":[2,66],"45":[2,66],"48":[2,66],"56":[2,66],"59":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,66],"78":[2,66],"79":[2,66],"82":[2,66],"84":[1,177],"90":[2,66],"92":[2,66],"97":[2,66],"105":[2,66],"107":[2,66],"108":[2,66],"109":[2,66],"112":[2,66],"116":[2,66],"117":[2,66],"118":[2,66],"125":[2,66],"126":[2,66],"127":[2,66],"129":[2,66],"130":[2,66],"132":[2,66],"133":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66]},{"14":149,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":178,"62":179,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"1":[2,48],"4":[2,48],"8":180,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[2,48],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"105":[2,48],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[2,48],"126":[2,48],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":181,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,67],"4":[2,67],"28":[2,67],"29":[2,67],"45":[2,67],"48":[2,67],"56":[2,67],"59":[2,67],"70":[2,67],"71":[2,67],"72":[2,67],"73":[2,67],"76":[2,67],"77":[2,67],"78":[2,67],"79":[2,67],"82":[2,67],"90":[2,67],"92":[2,67],"97":[2,67],"105":[2,67],"107":[2,67],"108":[2,67],"109":[2,67],"112":[2,67],"116":[2,67],"117":[2,67],"118":[2,67],"125":[2,67],"126":[2,67],"127":[2,67],"129":[2,67],"130":[2,67],"132":[2,67],"133":[2,67],"136":[2,67],"137":[2,67],"138":[2,67],"139":[2,67],"140":[2,67],"141":[2,67],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67]},{"1":[2,68],"4":[2,68],"28":[2,68],"29":[2,68],"45":[2,68],"48":[2,68],"56":[2,68],"59":[2,68],"70":[2,68],"71":[2,68],"72":[2,68],"73":[2,68],"76":[2,68],"77":[2,68],"78":[2,68],"79":[2,68],"82":[2,68],"90":[2,68],"92":[2,68],"97":[2,68],"105":[2,68],"107":[2,68],"108":[2,68],"109":[2,68],"112":[2,68],"116":[2,68],"117":[2,68],"118":[2,68],"125":[2,68],"126":[2,68],"127":[2,68],"129":[2,68],"130":[2,68],"132":[2,68],"133":[2,68],"136":[2,68],"137":[2,68],"138":[2,68],"139":[2,68],"140":[2,68],"141":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68]},{"1":[2,33],"4":[2,33],"28":[2,33],"29":[2,33],"48":[2,33],"56":[2,33],"59":[2,33],"70":[2,33],"71":[2,33],"72":[2,33],"73":[2,33],"76":[2,33],"77":[2,33],"78":[2,33],"79":[2,33],"82":[2,33],"90":[2,33],"92":[2,33],"97":[2,33],"105":[2,33],"107":[2,33],"108":[2,33],"109":[2,33],"112":[2,33],"116":[2,33],"117":[2,33],"118":[2,33],"125":[2,33],"126":[2,33],"127":[2,33],"129":[2,33],"130":[2,33],"132":[2,33],"133":[2,33],"136":[2,33],"137":[2,33],"138":[2,33],"139":[2,33],"140":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33],"151":[2,33],"152":[2,33],"153":[2,33],"154":[2,33],"155":[2,33],"156":[2,33],"157":[2,33],"158":[2,33],"159":[2,33],"160":[2,33],"161":[2,33]},{"1":[2,34],"4":[2,34],"28":[2,34],"29":[2,34],"48":[2,34],"56":[2,34],"59":[2,34],"70":[2,34],"71":[2,34],"72":[2,34],"73":[2,34],"76":[2,34],"77":[2,34],"78":[2,34],"79":[2,34],"82":[2,34],"90":[2,34],"92":[2,34],"97":[2,34],"105":[2,34],"107":[2,34],"108":[2,34],"109":[2,34],"112":[2,34],"116":[2,34],"117":[2,34],"118":[2,34],"125":[2,34],"126":[2,34],"127":[2,34],"129":[2,34],"130":[2,34],"132":[2,34],"133":[2,34],"136":[2,34],"137":[2,34],"138":[2,34],"139":[2,34],"140":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34],"151":[2,34],"152":[2,34],"153":[2,34],"154":[2,34],"155":[2,34],"156":[2,34],"157":[2,34],"158":[2,34],"159":[2,34],"160":[2,34],"161":[2,34]},{"1":[2,35],"4":[2,35],"28":[2,35],"29":[2,35],"48":[2,35],"56":[2,35],"59":[2,35],"70":[2,35],"71":[2,35],"72":[2,35],"73":[2,35],"76":[2,35],"77":[2,35],"78":[2,35],"79":[2,35],"82":[2,35],"90":[2,35],"92":[2,35],"97":[2,35],"105":[2,35],"107":[2,35],"108":[2,35],"109":[2,35],"112":[2,35],"116":[2,35],"117":[2,35],"118":[2,35],"125":[2,35],"126":[2,35],"127":[2,35],"129":[2,35],"130":[2,35],"132":[2,35],"133":[2,35],"136":[2,35],"137":[2,35],"138":[2,35],"139":[2,35],"140":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35],"151":[2,35],"152":[2,35],"153":[2,35],"154":[2,35],"155":[2,35],"156":[2,35],"157":[2,35],"158":[2,35],"159":[2,35],"160":[2,35],"161":[2,35]},{"1":[2,36],"4":[2,36],"28":[2,36],"29":[2,36],"48":[2,36],"56":[2,36],"59":[2,36],"70":[2,36],"71":[2,36],"72":[2,36],"73":[2,36],"76":[2,36],"77":[2,36],"78":[2,36],"79":[2,36],"82":[2,36],"90":[2,36],"92":[2,36],"97":[2,36],"105":[2,36],"107":[2,36],"108":[2,36],"109":[2,36],"112":[2,36],"116":[2,36],"117":[2,36],"118":[2,36],"125":[2,36],"126":[2,36],"127":[2,36],"129":[2,36],"130":[2,36],"132":[2,36],"133":[2,36],"136":[2,36],"137":[2,36],"138":[2,36],"139":[2,36],"140":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36],"151":[2,36],"152":[2,36],"153":[2,36],"154":[2,36],"155":[2,36],"156":[2,36],"157":[2,36],"158":[2,36],"159":[2,36],"160":[2,36],"161":[2,36]},{"1":[2,37],"4":[2,37],"28":[2,37],"29":[2,37],"48":[2,37],"56":[2,37],"59":[2,37],"70":[2,37],"71":[2,37],"72":[2,37],"73":[2,37],"76":[2,37],"77":[2,37],"78":[2,37],"79":[2,37],"82":[2,37],"90":[2,37],"92":[2,37],"97":[2,37],"105":[2,37],"107":[2,37],"108":[2,37],"109":[2,37],"112":[2,37],"116":[2,37],"117":[2,37],"118":[2,37],"125":[2,37],"126":[2,37],"127":[2,37],"129":[2,37],"130":[2,37],"132":[2,37],"133":[2,37],"136":[2,37],"137":[2,37],"138":[2,37],"139":[2,37],"140":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37],"151":[2,37],"152":[2,37],"153":[2,37],"154":[2,37],"155":[2,37],"156":[2,37],"157":[2,37],"158":[2,37],"159":[2,37],"160":[2,37],"161":[2,37]},{"1":[2,38],"4":[2,38],"28":[2,38],"29":[2,38],"48":[2,38],"56":[2,38],"59":[2,38],"70":[2,38],"71":[2,38],"72":[2,38],"73":[2,38],"76":[2,38],"77":[2,38],"78":[2,38],"79":[2,38],"82":[2,38],"90":[2,38],"92":[2,38],"97":[2,38],"105":[2,38],"107":[2,38],"108":[2,38],"109":[2,38],"112":[2,38],"116":[2,38],"117":[2,38],"118":[2,38],"125":[2,38],"126":[2,38],"127":[2,38],"129":[2,38],"130":[2,38],"132":[2,38],"133":[2,38],"136":[2,38],"137":[2,38],"138":[2,38],"139":[2,38],"140":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38],"151":[2,38],"152":[2,38],"153":[2,38],"154":[2,38],"155":[2,38],"156":[2,38],"157":[2,38],"158":[2,38],"159":[2,38],"160":[2,38],"161":[2,38]},{"1":[2,39],"4":[2,39],"28":[2,39],"29":[2,39],"48":[2,39],"56":[2,39],"59":[2,39],"70":[2,39],"71":[2,39],"72":[2,39],"73":[2,39],"76":[2,39],"77":[2,39],"78":[2,39],"79":[2,39],"82":[2,39],"90":[2,39],"92":[2,39],"97":[2,39],"105":[2,39],"107":[2,39],"108":[2,39],"109":[2,39],"112":[2,39],"116":[2,39],"117":[2,39],"118":[2,39],"125":[2,39],"126":[2,39],"127":[2,39],"129":[2,39],"130":[2,39],"132":[2,39],"133":[2,39],"136":[2,39],"137":[2,39],"138":[2,39],"139":[2,39],"140":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39],"151":[2,39],"152":[2,39],"153":[2,39],"154":[2,39],"155":[2,39],"156":[2,39],"157":[2,39],"158":[2,39],"159":[2,39],"160":[2,39],"161":[2,39]},{"1":[2,40],"4":[2,40],"28":[2,40],"29":[2,40],"48":[2,40],"56":[2,40],"59":[2,40],"70":[2,40],"71":[2,40],"72":[2,40],"73":[2,40],"76":[2,40],"77":[2,40],"78":[2,40],"79":[2,40],"82":[2,40],"90":[2,40],"92":[2,40],"97":[2,40],"105":[2,40],"107":[2,40],"108":[2,40],"109":[2,40],"112":[2,40],"116":[2,40],"117":[2,40],"118":[2,40],"125":[2,40],"126":[2,40],"127":[2,40],"129":[2,40],"130":[2,40],"132":[2,40],"133":[2,40],"136":[2,40],"137":[2,40],"138":[2,40],"139":[2,40],"140":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40],"151":[2,40],"152":[2,40],"153":[2,40],"154":[2,40],"155":[2,40],"156":[2,40],"157":[2,40],"158":[2,40],"159":[2,40],"160":[2,40],"161":[2,40]},{"1":[2,41],"4":[2,41],"28":[2,41],"29":[2,41],"48":[2,41],"56":[2,41],"59":[2,41],"70":[2,41],"71":[2,41],"72":[2,41],"73":[2,41],"76":[2,41],"77":[2,41],"78":[2,41],"79":[2,41],"82":[2,41],"90":[2,41],"92":[2,41],"97":[2,41],"105":[2,41],"107":[2,41],"108":[2,41],"109":[2,41],"112":[2,41],"116":[2,41],"117":[2,41],"118":[2,41],"125":[2,41],"126":[2,41],"127":[2,41],"129":[2,41],"130":[2,41],"132":[2,41],"133":[2,41],"136":[2,41],"137":[2,41],"138":[2,41],"139":[2,41],"140":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41],"151":[2,41],"152":[2,41],"153":[2,41],"154":[2,41],"155":[2,41],"156":[2,41],"157":[2,41],"158":[2,41],"159":[2,41],"160":[2,41],"161":[2,41]},{"7":182,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,115],"8":183,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,115],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,115],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"91":184,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,115],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,107],"4":[2,107],"28":[2,107],"29":[2,107],"48":[2,107],"56":[2,107],"59":[2,107],"70":[2,107],"71":[2,107],"72":[2,107],"73":[2,107],"76":[2,107],"77":[2,107],"78":[2,107],"79":[2,107],"82":[2,107],"90":[2,107],"92":[2,107],"97":[2,107],"105":[2,107],"107":[2,107],"108":[2,107],"109":[2,107],"112":[2,107],"116":[2,107],"117":[2,107],"118":[2,107],"125":[2,107],"126":[2,107],"127":[2,107],"129":[2,107],"130":[2,107],"132":[2,107],"133":[2,107],"136":[2,107],"137":[2,107],"138":[2,107],"139":[2,107],"140":[2,107],"141":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"148":[2,107],"149":[2,107],"150":[2,107],"151":[2,107],"152":[2,107],"153":[2,107],"154":[2,107],"155":[2,107],"156":[2,107],"157":[2,107],"158":[2,107],"159":[2,107],"160":[2,107],"161":[2,107]},{"1":[2,108],"4":[2,108],"28":[2,108],"29":[2,108],"30":185,"31":[1,85],"48":[2,108],"56":[2,108],"59":[2,108],"70":[2,108],"71":[2,108],"72":[2,108],"73":[2,108],"76":[2,108],"77":[2,108],"78":[2,108],"79":[2,108],"82":[2,108],"90":[2,108],"92":[2,108],"97":[2,108],"105":[2,108],"107":[2,108],"108":[2,108],"109":[2,108],"112":[2,108],"116":[2,108],"117":[2,108],"118":[2,108],"125":[2,108],"126":[2,108],"127":[2,108],"129":[2,108],"130":[2,108],"132":[2,108],"133":[2,108],"136":[2,108],"137":[2,108],"138":[2,108],"139":[2,108],"140":[2,108],"141":[2,108],"142":[2,108],"143":[2,108],"144":[2,108],"145":[2,108],"146":[2,108],"147":[2,108],"148":[2,108],"149":[2,108],"150":[2,108],"151":[2,108],"152":[2,108],"153":[2,108],"154":[2,108],"155":[2,108],"156":[2,108],"157":[2,108],"158":[2,108],"159":[2,108],"160":[2,108],"161":[2,108]},{"89":186,"90":[1,135]},{"28":[2,52]},{"28":[2,53]},{"8":187,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":188,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":189,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":190,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"6":191,"8":192,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[1,6],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,62],"4":[2,62],"28":[2,62],"29":[2,62],"45":[2,62],"48":[2,62],"56":[2,62],"59":[2,62],"70":[2,62],"71":[2,62],"72":[2,62],"73":[2,62],"76":[2,62],"77":[2,62],"78":[2,62],"79":[2,62],"82":[2,62],"84":[2,62],"90":[2,62],"92":[2,62],"97":[2,62],"105":[2,62],"107":[2,62],"108":[2,62],"109":[2,62],"112":[2,62],"116":[2,62],"117":[2,62],"118":[2,62],"125":[2,62],"126":[2,62],"127":[2,62],"129":[2,62],"130":[2,62],"132":[2,62],"133":[2,62],"136":[2,62],"137":[2,62],"138":[2,62],"139":[2,62],"140":[2,62],"141":[2,62],"142":[2,62],"143":[2,62],"144":[2,62],"145":[2,62],"146":[2,62],"147":[2,62],"148":[2,62],"149":[2,62],"150":[2,62],"151":[2,62],"152":[2,62],"153":[2,62],"154":[2,62],"155":[2,62],"156":[2,62],"157":[2,62],"158":[2,62],"159":[2,62],"160":[2,62],"161":[2,62]},{"1":[2,65],"4":[2,65],"28":[2,65],"29":[2,65],"45":[2,65],"48":[2,65],"56":[2,65],"59":[2,65],"70":[2,65],"71":[2,65],"72":[2,65],"73":[2,65],"76":[2,65],"77":[2,65],"78":[2,65],"79":[2,65],"82":[2,65],"84":[2,65],"90":[2,65],"92":[2,65],"97":[2,65],"105":[2,65],"107":[2,65],"108":[2,65],"109":[2,65],"112":[2,65],"116":[2,65],"117":[2,65],"118":[2,65],"125":[2,65],"126":[2,65],"127":[2,65],"129":[2,65],"130":[2,65],"132":[2,65],"133":[2,65],"136":[2,65],"137":[2,65],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65]},{"4":[2,85],"28":[2,85],"30":195,"31":[1,85],"32":196,"33":[1,83],"34":[1,84],"46":194,"56":[2,85],"81":193,"82":[2,85]},{"1":[2,31],"4":[2,31],"28":[2,31],"29":[2,31],"45":[2,31],"48":[2,31],"56":[2,31],"59":[2,31],"70":[2,31],"71":[2,31],"72":[2,31],"73":[2,31],"76":[2,31],"77":[2,31],"78":[2,31],"79":[2,31],"82":[2,31],"90":[2,31],"92":[2,31],"97":[2,31],"105":[2,31],"107":[2,31],"108":[2,31],"109":[2,31],"112":[2,31],"116":[2,31],"117":[2,31],"118":[2,31],"125":[2,31],"126":[2,31],"127":[2,31],"129":[2,31],"130":[2,31],"132":[2,31],"133":[2,31],"136":[2,31],"137":[2,31],"138":[2,31],"139":[2,31],"140":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31],"149":[2,31],"150":[2,31],"151":[2,31],"152":[2,31],"153":[2,31],"154":[2,31],"155":[2,31],"156":[2,31],"157":[2,31],"158":[2,31],"159":[2,31],"160":[2,31],"161":[2,31]},{"1":[2,32],"4":[2,32],"28":[2,32],"29":[2,32],"45":[2,32],"48":[2,32],"56":[2,32],"59":[2,32],"70":[2,32],"71":[2,32],"72":[2,32],"73":[2,32],"76":[2,32],"77":[2,32],"78":[2,32],"79":[2,32],"82":[2,32],"90":[2,32],"92":[2,32],"97":[2,32],"105":[2,32],"107":[2,32],"108":[2,32],"109":[2,32],"112":[2,32],"116":[2,32],"117":[2,32],"118":[2,32],"125":[2,32],"126":[2,32],"127":[2,32],"129":[2,32],"130":[2,32],"132":[2,32],"133":[2,32],"136":[2,32],"137":[2,32],"138":[2,32],"139":[2,32],"140":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32],"151":[2,32],"152":[2,32],"153":[2,32],"154":[2,32],"155":[2,32],"156":[2,32],"157":[2,32],"158":[2,32],"159":[2,32],"160":[2,32],"161":[2,32]},{"1":[2,30],"4":[2,30],"28":[2,30],"29":[2,30],"45":[2,30],"48":[2,30],"56":[2,30],"59":[2,30],"70":[2,30],"71":[2,30],"72":[2,30],"73":[2,30],"76":[2,30],"77":[2,30],"78":[2,30],"79":[2,30],"82":[2,30],"84":[2,30],"90":[2,30],"92":[2,30],"97":[2,30],"105":[2,30],"107":[2,30],"108":[2,30],"109":[2,30],"112":[2,30],"116":[2,30],"117":[2,30],"118":[2,30],"125":[2,30],"126":[2,30],"127":[2,30],"129":[2,30],"130":[2,30],"132":[2,30],"133":[2,30],"136":[2,30],"137":[2,30],"138":[2,30],"139":[2,30],"140":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"148":[2,30],"149":[2,30],"150":[2,30],"151":[2,30],"152":[2,30],"153":[2,30],"154":[2,30],"155":[2,30],"156":[2,30],"157":[2,30],"158":[2,30],"159":[2,30],"160":[2,30],"161":[2,30]},{"1":[2,7],"4":[2,7],"7":197,"8":7,"9":8,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"29":[2,7],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,4]},{"4":[1,86],"29":[1,198]},{"1":[2,29],"4":[2,29],"28":[2,29],"29":[2,29],"48":[2,29],"56":[2,29],"59":[2,29],"77":[2,29],"82":[2,29],"92":[2,29],"97":[2,29],"101":[2,29],"102":[2,29],"105":[2,29],"107":[2,29],"108":[2,29],"109":[2,29],"112":[2,29],"116":[2,29],"117":[2,29],"118":[2,29],"121":[2,29],"123":[2,29],"125":[2,29],"126":[2,29],"127":[2,29],"129":[2,29],"130":[2,29],"132":[2,29],"133":[2,29],"136":[2,29],"137":[2,29],"138":[2,29],"139":[2,29],"140":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"148":[2,29],"149":[2,29],"150":[2,29],"151":[2,29],"152":[2,29],"153":[2,29],"154":[2,29],"155":[2,29],"156":[2,29],"157":[2,29],"158":[2,29],"159":[2,29],"160":[2,29],"161":[2,29]},{"1":[2,179],"4":[2,179],"28":[2,179],"29":[2,179],"48":[2,179],"56":[2,179],"59":[2,179],"77":[2,179],"82":[2,179],"92":[2,179],"97":[2,179],"105":[2,179],"107":[2,179],"108":[2,179],"109":[2,179],"112":[2,179],"116":[2,179],"117":[2,179],"118":[2,179],"125":[2,179],"126":[2,179],"127":[2,179],"129":[2,179],"130":[2,179],"132":[2,179],"133":[2,179],"136":[2,179],"137":[2,179],"138":[2,179],"139":[2,179],"140":[2,179],"141":[2,179],"142":[2,179],"143":[2,179],"144":[2,179],"145":[2,179],"146":[2,179],"147":[2,179],"148":[2,179],"149":[2,179],"150":[2,179],"151":[2,179],"152":[2,179],"153":[2,179],"154":[2,179],"155":[2,179],"156":[2,179],"157":[2,179],"158":[2,179],"159":[2,179],"160":[2,179],"161":[2,179]},{"1":[2,180],"4":[2,180],"28":[2,180],"29":[2,180],"48":[2,180],"56":[2,180],"59":[2,180],"77":[2,180],"82":[2,180],"92":[2,180],"97":[2,180],"105":[2,180],"107":[2,180],"108":[2,180],"109":[2,180],"112":[2,180],"116":[2,180],"117":[2,180],"118":[2,180],"125":[2,180],"126":[2,180],"127":[2,180],"129":[2,180],"130":[2,180],"132":[2,180],"133":[2,180],"136":[2,180],"137":[2,180],"138":[2,180],"139":[2,180],"140":[2,180],"141":[2,180],"142":[2,180],"143":[2,180],"144":[2,180],"145":[2,180],"146":[2,180],"147":[2,180],"148":[2,180],"149":[2,180],"150":[2,180],"151":[2,180],"152":[2,180],"153":[2,180],"154":[2,180],"155":[2,180],"156":[2,180],"157":[2,180],"158":[2,180],"159":[2,180],"160":[2,180],"161":[2,180]},{"8":199,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":200,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":201,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":202,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":203,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":204,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":205,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":206,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":207,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":208,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":209,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":210,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":211,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":212,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":213,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":214,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":215,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":216,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":217,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,49],"4":[2,49],"8":218,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,49],"29":[2,49],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"48":[2,49],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,49],"59":[2,49],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"77":[2,49],"80":[1,82],"82":[2,49],"83":[1,54],"87":[1,34],"88":35,"92":[2,49],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,49],"99":[1,48],"103":[1,56],"104":[1,68],"105":[2,49],"106":49,"107":[2,49],"108":[2,49],"109":[2,49],"110":50,"111":[1,79],"112":[2,49],"116":[2,49],"117":[2,49],"118":[2,49],"119":[1,52],"124":47,"125":[2,49],"126":[2,49],"127":[2,49],"128":[1,39],"129":[2,49],"130":[2,49],"131":[1,42],"132":[2,49],"133":[2,49],"134":[1,45],"135":[1,46],"136":[2,49],"137":[2,49],"138":[2,49],"139":[2,49],"140":[2,49],"141":[2,49],"142":[2,49],"143":[2,49],"144":[2,49],"145":[2,49],"146":[2,49],"147":[2,49],"148":[2,49],"149":[2,49],"150":[2,49],"151":[2,49],"152":[2,49],"153":[2,49],"154":[2,49],"155":[2,49],"156":[2,49],"157":[2,49],"158":[2,49],"159":[2,49],"160":[2,49],"161":[2,49]},{"8":219,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":220,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":221,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":222,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":223,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":224,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":225,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":226,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":227,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":228,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":229,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"116":[1,230],"117":[1,231]},{"8":232,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":233,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,134],"4":[2,134],"28":[2,134],"29":[2,134],"48":[2,134],"56":[2,134],"59":[2,134],"77":[2,134],"82":[2,134],"92":[2,134],"97":[2,134],"105":[2,134],"107":[2,134],"108":[2,134],"109":[2,134],"112":[2,134],"116":[2,134],"117":[2,134],"118":[2,134],"125":[2,134],"126":[2,134],"127":[2,134],"129":[2,134],"130":[2,134],"132":[2,134],"133":[2,134],"136":[2,134],"137":[2,134],"138":[2,134],"139":[2,134],"140":[2,134],"141":[2,134],"142":[2,134],"143":[2,134],"144":[2,134],"145":[2,134],"146":[2,134],"147":[2,134],"148":[2,134],"149":[2,134],"150":[2,134],"151":[2,134],"152":[2,134],"153":[2,134],"154":[2,134],"155":[2,134],"156":[2,134],"157":[2,134],"158":[2,134],"159":[2,134],"160":[2,134],"161":[2,134]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"113":234,"115":170},{"59":[1,235]},{"8":236,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":237,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,133],"4":[2,133],"28":[2,133],"29":[2,133],"48":[2,133],"56":[2,133],"59":[2,133],"77":[2,133],"82":[2,133],"92":[2,133],"97":[2,133],"105":[2,133],"107":[2,133],"108":[2,133],"109":[2,133],"112":[2,133],"116":[2,133],"117":[2,133],"118":[2,133],"125":[2,133],"126":[2,133],"127":[2,133],"129":[2,133],"130":[2,133],"132":[2,133],"133":[2,133],"136":[2,133],"137":[2,133],"138":[2,133],"139":[2,133],"140":[2,133],"141":[2,133],"142":[2,133],"143":[2,133],"144":[2,133],"145":[2,133],"146":[2,133],"147":[2,133],"148":[2,133],"149":[2,133],"150":[2,133],"151":[2,133],"152":[2,133],"153":[2,133],"154":[2,133],"155":[2,133],"156":[2,133],"157":[2,133],"158":[2,133],"159":[2,133],"160":[2,133],"161":[2,133]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"113":238,"115":170},{"1":[2,103],"4":[2,103],"28":[2,103],"29":[2,103],"48":[2,103],"56":[2,103],"59":[2,103],"70":[2,103],"71":[2,103],"72":[2,103],"73":[2,103],"76":[2,103],"77":[2,103],"78":[2,103],"79":[2,103],"82":[2,103],"90":[2,103],"92":[2,103],"97":[2,103],"105":[2,103],"107":[2,103],"108":[2,103],"109":[2,103],"112":[2,103],"116":[2,103],"117":[2,103],"118":[2,103],"125":[2,103],"126":[2,103],"127":[2,103],"129":[2,103],"130":[2,103],"132":[2,103],"133":[2,103],"136":[2,103],"137":[2,103],"138":[2,103],"139":[2,103],"140":[2,103],"141":[2,103],"142":[2,103],"143":[2,103],"144":[2,103],"145":[2,103],"146":[2,103],"147":[2,103],"148":[2,103],"149":[2,103],"150":[2,103],"151":[2,103],"152":[2,103],"153":[2,103],"154":[2,103],"155":[2,103],"156":[2,103],"157":[2,103],"158":[2,103],"159":[2,103],"160":[2,103],"161":[2,103]},{"1":[2,63],"4":[2,63],"28":[2,63],"29":[2,63],"45":[2,63],"48":[2,63],"56":[2,63],"59":[2,63],"70":[2,63],"71":[2,63],"72":[2,63],"73":[2,63],"76":[2,63],"77":[2,63],"78":[2,63],"79":[2,63],"82":[2,63],"84":[2,63],"90":[2,63],"92":[2,63],"97":[2,63],"105":[2,63],"107":[2,63],"108":[2,63],"109":[2,63],"112":[2,63],"116":[2,63],"117":[2,63],"118":[2,63],"125":[2,63],"126":[2,63],"127":[2,63],"129":[2,63],"130":[2,63],"132":[2,63],"133":[2,63],"136":[2,63],"137":[2,63],"138":[2,63],"139":[2,63],"140":[2,63],"141":[2,63],"142":[2,63],"143":[2,63],"144":[2,63],"145":[2,63],"146":[2,63],"147":[2,63],"148":[2,63],"149":[2,63],"150":[2,63],"151":[2,63],"152":[2,63],"153":[2,63],"154":[2,63],"155":[2,63],"156":[2,63],"157":[2,63],"158":[2,63],"159":[2,63],"160":[2,63],"161":[2,63]},{"4":[2,115],"8":240,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,115],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,115],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"91":239,"92":[2,115],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"30":241,"31":[1,85]},{"30":242,"31":[1,85]},{"1":[2,77],"4":[2,77],"28":[2,77],"29":[2,77],"45":[2,77],"48":[2,77],"56":[2,77],"59":[2,77],"70":[2,77],"71":[2,77],"72":[2,77],"73":[2,77],"76":[2,77],"77":[2,77],"78":[2,77],"79":[2,77],"82":[2,77],"84":[2,77],"90":[2,77],"92":[2,77],"97":[2,77],"105":[2,77],"107":[2,77],"108":[2,77],"109":[2,77],"112":[2,77],"116":[2,77],"117":[2,77],"118":[2,77],"125":[2,77],"126":[2,77],"127":[2,77],"129":[2,77],"130":[2,77],"132":[2,77],"133":[2,77],"136":[2,77],"137":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77],"151":[2,77],"152":[2,77],"153":[2,77],"154":[2,77],"155":[2,77],"156":[2,77],"157":[2,77],"158":[2,77],"159":[2,77],"160":[2,77],"161":[2,77]},{"30":243,"31":[1,85]},{"1":[2,79],"4":[2,79],"28":[2,79],"29":[2,79],"45":[2,79],"48":[2,79],"56":[2,79],"59":[2,79],"70":[2,79],"71":[2,79],"72":[2,79],"73":[2,79],"76":[2,79],"77":[2,79],"78":[2,79],"79":[2,79],"82":[2,79],"84":[2,79],"90":[2,79],"92":[2,79],"97":[2,79],"105":[2,79],"107":[2,79],"108":[2,79],"109":[2,79],"112":[2,79],"116":[2,79],"117":[2,79],"118":[2,79],"125":[2,79],"126":[2,79],"127":[2,79],"129":[2,79],"130":[2,79],"132":[2,79],"133":[2,79],"136":[2,79],"137":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79],"151":[2,79],"152":[2,79],"153":[2,79],"154":[2,79],"155":[2,79],"156":[2,79],"157":[2,79],"158":[2,79],"159":[2,79],"160":[2,79],"161":[2,79]},{"1":[2,80],"4":[2,80],"28":[2,80],"29":[2,80],"45":[2,80],"48":[2,80],"56":[2,80],"59":[2,80],"70":[2,80],"71":[2,80],"72":[2,80],"73":[2,80],"76":[2,80],"77":[2,80],"78":[2,80],"79":[2,80],"82":[2,80],"84":[2,80],"90":[2,80],"92":[2,80],"97":[2,80],"105":[2,80],"107":[2,80],"108":[2,80],"109":[2,80],"112":[2,80],"116":[2,80],"117":[2,80],"118":[2,80],"125":[2,80],"126":[2,80],"127":[2,80],"129":[2,80],"130":[2,80],"132":[2,80],"133":[2,80],"136":[2,80],"137":[2,80],"138":[2,80],"139":[2,80],"140":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80],"151":[2,80],"152":[2,80],"153":[2,80],"154":[2,80],"155":[2,80],"156":[2,80],"157":[2,80],"158":[2,80],"159":[2,80],"160":[2,80],"161":[2,80]},{"8":244,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"74":245,"76":[1,246],"78":[1,143],"79":[1,144]},{"74":247,"76":[1,246],"78":[1,143],"79":[1,144]},{"8":248,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,104],"4":[2,104],"28":[2,104],"29":[2,104],"48":[2,104],"56":[2,104],"59":[2,104],"70":[2,104],"71":[2,104],"72":[2,104],"73":[2,104],"76":[2,104],"77":[2,104],"78":[2,104],"79":[2,104],"82":[2,104],"90":[2,104],"92":[2,104],"97":[2,104],"105":[2,104],"107":[2,104],"108":[2,104],"109":[2,104],"112":[2,104],"116":[2,104],"117":[2,104],"118":[2,104],"125":[2,104],"126":[2,104],"127":[2,104],"129":[2,104],"130":[2,104],"132":[2,104],"133":[2,104],"136":[2,104],"137":[2,104],"138":[2,104],"139":[2,104],"140":[2,104],"141":[2,104],"142":[2,104],"143":[2,104],"144":[2,104],"145":[2,104],"146":[2,104],"147":[2,104],"148":[2,104],"149":[2,104],"150":[2,104],"151":[2,104],"152":[2,104],"153":[2,104],"154":[2,104],"155":[2,104],"156":[2,104],"157":[2,104],"158":[2,104],"159":[2,104],"160":[2,104],"161":[2,104]},{"1":[2,64],"4":[2,64],"28":[2,64],"29":[2,64],"45":[2,64],"48":[2,64],"56":[2,64],"59":[2,64],"70":[2,64],"71":[2,64],"72":[2,64],"73":[2,64],"76":[2,64],"77":[2,64],"78":[2,64],"79":[2,64],"82":[2,64],"84":[2,64],"90":[2,64],"92":[2,64],"97":[2,64],"105":[2,64],"107":[2,64],"108":[2,64],"109":[2,64],"112":[2,64],"116":[2,64],"117":[2,64],"118":[2,64],"125":[2,64],"126":[2,64],"127":[2,64],"129":[2,64],"130":[2,64],"132":[2,64],"133":[2,64],"136":[2,64],"137":[2,64],"138":[2,64],"139":[2,64],"140":[2,64],"141":[2,64],"142":[2,64],"143":[2,64],"144":[2,64],"145":[2,64],"146":[2,64],"147":[2,64],"148":[2,64],"149":[2,64],"150":[2,64],"151":[2,64],"152":[2,64],"153":[2,64],"154":[2,64],"155":[2,64],"156":[2,64],"157":[2,64],"158":[2,64],"159":[2,64],"160":[2,64],"161":[2,64]},{"1":[2,100],"4":[2,100],"28":[2,100],"29":[2,100],"48":[2,100],"56":[2,100],"59":[2,100],"61":147,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,100],"78":[1,143],"79":[1,144],"82":[2,100],"89":146,"90":[1,135],"92":[2,100],"97":[2,100],"105":[2,100],"107":[2,100],"108":[2,100],"109":[2,100],"112":[2,100],"116":[2,100],"117":[2,100],"118":[2,100],"125":[2,100],"126":[2,100],"127":[2,100],"129":[2,100],"130":[2,100],"132":[2,100],"133":[2,100],"136":[2,100],"137":[2,100],"138":[2,100],"139":[2,100],"140":[2,100],"141":[2,100],"142":[2,100],"143":[2,100],"144":[2,100],"145":[2,100],"146":[2,100],"147":[2,100],"148":[2,100],"149":[2,100],"150":[2,100],"151":[2,100],"152":[2,100],"153":[2,100],"154":[2,100],"155":[2,100],"156":[2,100],"157":[2,100],"158":[2,100],"159":[2,100],"160":[2,100],"161":[2,100]},{"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"78":[1,143],"79":[1,144],"89":133,"90":[1,135]},{"1":[2,69],"4":[2,69],"28":[2,69],"29":[2,69],"48":[2,69],"56":[2,69],"59":[2,69],"70":[2,69],"71":[2,69],"72":[2,69],"73":[2,69],"76":[2,69],"77":[2,69],"78":[2,69],"79":[2,69],"82":[2,69],"90":[2,69],"92":[2,69],"97":[2,69],"105":[2,69],"107":[2,69],"108":[2,69],"109":[2,69],"112":[2,69],"116":[2,69],"117":[2,69],"118":[2,69],"125":[2,69],"126":[2,69],"127":[2,69],"129":[2,69],"130":[2,69],"132":[2,69],"133":[2,69],"136":[2,69],"137":[2,69],"138":[2,69],"139":[2,69],"140":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69]},{"1":[2,66],"4":[2,66],"28":[2,66],"29":[2,66],"48":[2,66],"56":[2,66],"59":[2,66],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,66],"78":[2,66],"79":[2,66],"82":[2,66],"90":[2,66],"92":[2,66],"97":[2,66],"105":[2,66],"107":[2,66],"108":[2,66],"109":[2,66],"112":[2,66],"116":[2,66],"117":[2,66],"118":[2,66],"125":[2,66],"126":[2,66],"127":[2,66],"129":[2,66],"130":[2,66],"132":[2,66],"133":[2,66],"136":[2,66],"137":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66]},{"51":[1,249],"56":[1,250]},{"51":[2,57],"56":[2,57],"59":[1,251]},{"51":[2,59],"56":[2,59],"59":[2,59]},{"1":[2,51],"4":[2,51],"28":[2,51],"29":[2,51],"48":[2,51],"56":[2,51],"59":[2,51],"77":[2,51],"82":[2,51],"92":[2,51],"97":[2,51],"105":[2,51],"107":[2,51],"108":[2,51],"109":[2,51],"112":[2,51],"116":[2,51],"117":[2,51],"118":[2,51],"125":[2,51],"126":[2,51],"127":[2,51],"129":[2,51],"130":[2,51],"132":[2,51],"133":[2,51],"136":[2,51],"137":[2,51],"138":[2,51],"139":[2,51],"140":[2,51],"141":[2,51],"142":[2,51],"143":[2,51],"144":[2,51],"145":[2,51],"146":[2,51],"147":[2,51],"148":[2,51],"149":[2,51],"150":[2,51],"151":[2,51],"152":[2,51],"153":[2,51],"154":[2,51],"155":[2,51],"156":[2,51],"157":[2,51],"158":[2,51],"159":[2,51],"160":[2,51],"161":[2,51]},{"1":[2,170],"4":[2,170],"28":[2,170],"29":[2,170],"48":[1,111],"56":[2,170],"59":[2,170],"77":[2,170],"82":[2,170],"92":[2,170],"97":[2,170],"105":[2,170],"106":126,"107":[2,170],"108":[2,170],"109":[2,170],"112":[2,170],"116":[2,170],"117":[2,170],"118":[2,170],"125":[2,170],"126":[2,170],"129":[2,170],"130":[2,170],"136":[2,170],"137":[2,170],"138":[2,170],"139":[2,170],"140":[2,170],"141":[2,170],"142":[2,170],"143":[2,170],"144":[2,170],"145":[2,170],"146":[2,170],"147":[2,170],"148":[2,170],"149":[2,170],"150":[2,170],"151":[2,170],"152":[2,170],"153":[2,170],"154":[2,170],"155":[2,170],"156":[2,170],"157":[2,170],"158":[2,170],"159":[2,170],"160":[2,170],"161":[2,170]},{"106":131,"107":[1,77],"109":[1,78],"112":[1,132],"125":[1,129],"126":[1,130]},{"1":[2,171],"4":[2,171],"28":[2,171],"29":[2,171],"48":[1,111],"56":[2,171],"59":[2,171],"77":[2,171],"82":[2,171],"92":[2,171],"97":[2,171],"105":[2,171],"106":126,"107":[2,171],"108":[2,171],"109":[2,171],"112":[2,171],"116":[2,171],"117":[2,171],"118":[2,171],"125":[2,171],"126":[2,171],"129":[2,171],"130":[2,171],"136":[2,171],"137":[2,171],"138":[2,171],"139":[2,171],"140":[2,171],"141":[2,171],"142":[2,171],"143":[2,171],"144":[2,171],"145":[2,171],"146":[2,171],"147":[2,171],"148":[2,171],"149":[2,171],"150":[2,171],"151":[2,171],"152":[2,171],"153":[2,171],"154":[2,171],"155":[2,171],"156":[2,171],"157":[2,171],"158":[2,171],"159":[2,171],"160":[2,171],"161":[2,171]},{"1":[2,172],"4":[2,172],"28":[2,172],"29":[2,172],"48":[1,111],"56":[2,172],"59":[2,172],"77":[2,172],"82":[2,172],"92":[2,172],"97":[2,172],"105":[2,172],"106":126,"107":[2,172],"108":[2,172],"109":[2,172],"112":[2,172],"116":[2,172],"117":[2,172],"118":[2,172],"125":[2,172],"126":[2,172],"129":[2,172],"130":[2,172],"136":[2,172],"137":[2,172],"138":[2,172],"139":[2,172],"140":[2,172],"141":[2,172],"142":[2,172],"143":[2,172],"144":[2,172],"145":[2,172],"146":[2,172],"147":[2,172],"148":[2,172],"149":[2,172],"150":[2,172],"151":[2,172],"152":[2,172],"153":[2,172],"154":[2,172],"155":[2,172],"156":[2,172],"157":[2,172],"158":[2,172],"159":[2,172],"160":[2,172],"161":[2,172]},{"1":[2,173],"4":[2,173],"28":[2,173],"29":[2,173],"48":[1,111],"56":[2,173],"59":[2,173],"77":[2,173],"82":[2,173],"92":[2,173],"97":[2,173],"105":[2,173],"106":126,"107":[2,173],"108":[2,173],"109":[2,173],"112":[2,173],"116":[2,173],"117":[2,173],"118":[2,173],"125":[2,173],"126":[2,173],"129":[2,173],"130":[2,173],"136":[2,173],"137":[2,173],"138":[2,173],"139":[2,173],"140":[2,173],"141":[2,173],"142":[2,173],"143":[2,173],"144":[2,173],"145":[2,173],"146":[2,173],"147":[2,173],"148":[2,173],"149":[2,173],"150":[2,173],"151":[2,173],"152":[2,173],"153":[2,173],"154":[2,173],"155":[2,173],"156":[2,173],"157":[2,173],"158":[2,173],"159":[2,173],"160":[2,173],"161":[2,173]},{"1":[2,174],"4":[2,174],"28":[2,174],"29":[2,174],"48":[1,111],"56":[2,174],"59":[2,174],"77":[2,174],"82":[2,174],"92":[2,174],"97":[2,174],"105":[2,174],"106":126,"107":[2,174],"108":[2,174],"109":[2,174],"112":[2,174],"116":[2,174],"117":[2,174],"118":[2,174],"125":[2,174],"126":[2,174],"129":[2,174],"130":[2,174],"136":[2,174],"137":[2,174],"138":[2,174],"139":[2,174],"140":[2,174],"141":[2,174],"142":[2,174],"143":[2,174],"144":[2,174],"145":[2,174],"146":[2,174],"147":[2,174],"148":[2,174],"149":[2,174],"150":[2,174],"151":[2,174],"152":[2,174],"153":[2,174],"154":[2,174],"155":[2,174],"156":[2,174],"157":[2,174],"158":[2,174],"159":[2,174],"160":[2,174],"161":[2,174]},{"1":[2,175],"4":[2,175],"28":[2,175],"29":[2,175],"48":[1,111],"56":[2,175],"59":[2,175],"77":[2,175],"82":[2,175],"92":[2,175],"97":[2,175],"105":[2,175],"106":126,"107":[2,175],"108":[2,175],"109":[2,175],"112":[2,175],"116":[2,175],"117":[2,175],"118":[2,175],"125":[2,175],"126":[2,175],"129":[2,175],"130":[2,175],"136":[2,175],"137":[2,175],"138":[2,175],"139":[2,175],"140":[2,175],"141":[2,175],"142":[2,175],"143":[2,175],"144":[2,175],"145":[2,175],"146":[2,175],"147":[2,175],"148":[2,175],"149":[2,175],"150":[2,175],"151":[2,175],"152":[2,175],"153":[2,175],"154":[2,175],"155":[2,175],"156":[2,175],"157":[2,175],"158":[2,175],"159":[2,175],"160":[2,175],"161":[2,175]},{"1":[2,176],"4":[2,176],"28":[2,176],"29":[2,176],"48":[1,111],"56":[2,176],"59":[2,176],"77":[2,176],"82":[2,176],"92":[2,176],"97":[2,176],"105":[2,176],"106":126,"107":[2,176],"108":[2,176],"109":[2,176],"112":[2,176],"116":[2,176],"117":[2,176],"118":[2,176],"125":[2,176],"126":[2,176],"129":[2,176],"130":[2,176],"136":[2,176],"137":[2,176],"138":[2,176],"139":[2,176],"140":[2,176],"141":[2,176],"142":[2,176],"143":[2,176],"144":[2,176],"145":[2,176],"146":[2,176],"147":[2,176],"148":[2,176],"149":[2,176],"150":[2,176],"151":[2,176],"152":[2,176],"153":[2,176],"154":[2,176],"155":[2,176],"156":[2,176],"157":[2,176],"158":[2,176],"159":[2,176],"160":[2,176],"161":[2,176]},{"1":[2,177],"4":[2,177],"28":[2,177],"29":[2,177],"48":[1,111],"56":[2,177],"59":[2,177],"77":[2,177],"82":[2,177],"92":[2,177],"97":[2,177],"105":[2,177],"106":126,"107":[2,177],"108":[2,177],"109":[2,177],"112":[2,177],"116":[2,177],"117":[2,177],"118":[2,177],"125":[2,177],"126":[2,177],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,177],"150":[2,177],"151":[2,177],"152":[2,177],"153":[2,177],"154":[2,177],"155":[2,177],"156":[2,177],"157":[2,177],"158":[2,177],"159":[2,177],"160":[2,177],"161":[1,120]},{"1":[2,178],"4":[2,178],"28":[2,178],"29":[2,178],"48":[1,111],"56":[2,178],"59":[2,178],"77":[2,178],"82":[2,178],"92":[2,178],"97":[2,178],"105":[2,178],"106":126,"107":[2,178],"108":[2,178],"109":[2,178],"112":[2,178],"116":[2,178],"117":[2,178],"118":[2,178],"125":[2,178],"126":[2,178],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,178],"150":[2,178],"151":[2,178],"152":[2,178],"153":[2,178],"154":[2,178],"155":[2,178],"156":[2,178],"157":[2,178],"158":[2,178],"159":[2,178],"160":[2,178],"161":[1,120]},{"6":253,"28":[1,6],"125":[1,252]},{"100":254,"101":[1,255],"102":[1,256]},{"1":[2,132],"4":[2,132],"28":[2,132],"29":[2,132],"48":[2,132],"56":[2,132],"59":[2,132],"77":[2,132],"82":[2,132],"92":[2,132],"97":[2,132],"105":[2,132],"107":[2,132],"108":[2,132],"109":[2,132],"112":[2,132],"116":[2,132],"117":[2,132],"118":[2,132],"125":[2,132],"126":[2,132],"127":[2,132],"129":[2,132],"130":[2,132],"132":[2,132],"133":[2,132],"136":[2,132],"137":[2,132],"138":[2,132],"139":[2,132],"140":[2,132],"141":[2,132],"142":[2,132],"143":[2,132],"144":[2,132],"145":[2,132],"146":[2,132],"147":[2,132],"148":[2,132],"149":[2,132],"150":[2,132],"151":[2,132],"152":[2,132],"153":[2,132],"154":[2,132],"155":[2,132],"156":[2,132],"157":[2,132],"158":[2,132],"159":[2,132],"160":[2,132],"161":[2,132]},{"114":257,"116":[1,258],"117":[1,259]},{"56":[1,260],"116":[2,144],"117":[2,144]},{"56":[2,141],"116":[2,141],"117":[2,141]},{"56":[2,142],"116":[2,142],"117":[2,142]},{"56":[2,143],"116":[2,143],"117":[2,143]},{"4":[2,115],"8":240,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,115],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,115],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"91":184,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,115],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"28":[1,261],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"120":262,"122":263,"123":[1,264]},{"14":265,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":151,"62":179,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"1":[2,90],"4":[2,90],"28":[1,267],"29":[2,90],"48":[2,90],"56":[2,90],"59":[2,90],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,90],"78":[2,66],"79":[2,66],"82":[2,90],"84":[1,266],"90":[2,66],"92":[2,90],"97":[2,90],"105":[2,90],"107":[2,90],"108":[2,90],"109":[2,90],"112":[2,90],"116":[2,90],"117":[2,90],"118":[2,90],"125":[2,90],"126":[2,90],"127":[2,90],"129":[2,90],"130":[2,90],"132":[2,90],"133":[2,90],"136":[2,90],"137":[2,90],"138":[2,90],"139":[2,90],"140":[2,90],"141":[2,90],"142":[2,90],"143":[2,90],"144":[2,90],"145":[2,90],"146":[2,90],"147":[2,90],"148":[2,90],"149":[2,90],"150":[2,90],"151":[2,90],"152":[2,90],"153":[2,90],"154":[2,90],"155":[2,90],"156":[2,90],"157":[2,90],"158":[2,90],"159":[2,90],"160":[2,90],"161":[2,90]},{"61":147,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"78":[1,143],"79":[1,144],"89":146,"90":[1,135]},{"1":[2,47],"4":[2,47],"29":[2,47],"48":[1,111],"59":[1,128],"105":[2,47],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[2,47],"126":[2,47],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,126],"4":[2,126],"29":[2,126],"48":[1,111],"59":[1,128],"105":[2,126],"106":126,"107":[2,126],"109":[2,126],"112":[2,126],"116":[1,121],"117":[1,122],"125":[2,126],"126":[2,126],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"105":[1,268]},{"4":[2,116],"28":[2,116],"48":[1,111],"56":[2,116],"59":[1,269],"97":[2,116],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,54],"28":[2,54],"55":270,"56":[1,271],"97":[2,54]},{"1":[2,109],"4":[2,109],"28":[2,109],"29":[2,109],"45":[2,109],"48":[2,109],"56":[2,109],"59":[2,109],"70":[2,109],"71":[2,109],"72":[2,109],"73":[2,109],"76":[2,109],"77":[2,109],"78":[2,109],"79":[2,109],"82":[2,109],"84":[2,109],"90":[2,109],"92":[2,109],"97":[2,109],"105":[2,109],"107":[2,109],"108":[2,109],"109":[2,109],"112":[2,109],"116":[2,109],"117":[2,109],"118":[2,109],"125":[2,109],"126":[2,109],"127":[2,109],"129":[2,109],"130":[2,109],"132":[2,109],"133":[2,109],"136":[2,109],"137":[2,109],"138":[2,109],"139":[2,109],"140":[2,109],"141":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"147":[2,109],"148":[2,109],"149":[2,109],"150":[2,109],"151":[2,109],"152":[2,109],"153":[2,109],"154":[2,109],"155":[2,109],"156":[2,109],"157":[2,109],"158":[2,109],"159":[2,109],"160":[2,109],"161":[2,109]},{"1":[2,106],"4":[2,106],"28":[2,106],"29":[2,106],"48":[2,106],"56":[2,106],"59":[2,106],"77":[2,106],"82":[2,106],"92":[2,106],"97":[2,106],"105":[2,106],"107":[2,106],"108":[2,106],"109":[2,106],"112":[2,106],"116":[2,106],"117":[2,106],"118":[2,106],"125":[2,106],"126":[2,106],"127":[2,106],"129":[2,106],"130":[2,106],"132":[2,106],"133":[2,106],"136":[2,106],"137":[2,106],"138":[2,106],"139":[2,106],"140":[2,106],"141":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"148":[2,106],"149":[2,106],"150":[2,106],"151":[2,106],"152":[2,106],"153":[2,106],"154":[2,106],"155":[2,106],"156":[2,106],"157":[2,106],"158":[2,106],"159":[2,106],"160":[2,106],"161":[2,106]},{"6":272,"28":[1,6],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"6":273,"28":[1,6],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,128],"4":[2,128],"28":[2,128],"29":[2,128],"48":[1,111],"56":[2,128],"59":[1,128],"77":[2,128],"82":[2,128],"92":[2,128],"97":[2,128],"105":[2,128],"106":126,"107":[1,77],"108":[1,274],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,128],"125":[2,128],"126":[2,128],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,130],"4":[2,130],"28":[2,130],"29":[2,130],"48":[1,111],"56":[2,130],"59":[1,128],"77":[2,130],"82":[2,130],"92":[2,130],"97":[2,130],"105":[2,130],"106":126,"107":[1,77],"108":[1,275],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,130],"125":[2,130],"126":[2,130],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,136],"4":[2,136],"28":[2,136],"29":[2,136],"48":[2,136],"56":[2,136],"59":[2,136],"77":[2,136],"82":[2,136],"92":[2,136],"97":[2,136],"105":[2,136],"107":[2,136],"108":[2,136],"109":[2,136],"112":[2,136],"116":[2,136],"117":[2,136],"118":[2,136],"125":[2,136],"126":[2,136],"127":[2,136],"129":[2,136],"130":[2,136],"132":[2,136],"133":[2,136],"136":[2,136],"137":[2,136],"138":[2,136],"139":[2,136],"140":[2,136],"141":[2,136],"142":[2,136],"143":[2,136],"144":[2,136],"145":[2,136],"146":[2,136],"147":[2,136],"148":[2,136],"149":[2,136],"150":[2,136],"151":[2,136],"152":[2,136],"153":[2,136],"154":[2,136],"155":[2,136],"156":[2,136],"157":[2,136],"158":[2,136],"159":[2,136],"160":[2,136],"161":[2,136]},{"1":[2,137],"4":[2,137],"28":[2,137],"29":[2,137],"48":[1,111],"56":[2,137],"59":[1,128],"77":[2,137],"82":[2,137],"92":[2,137],"97":[2,137],"105":[2,137],"106":126,"107":[1,77],"108":[2,137],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,137],"125":[2,137],"126":[2,137],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,54],"28":[2,54],"55":276,"56":[1,277],"82":[2,54]},{"4":[2,86],"28":[2,86],"29":[2,86],"56":[2,86],"82":[2,86]},{"4":[2,43],"28":[2,43],"29":[2,43],"45":[1,278],"56":[2,43],"82":[2,43]},{"4":[2,44],"28":[2,44],"29":[2,44],"45":[1,279],"56":[2,44],"82":[2,44]},{"1":[2,6],"4":[2,6],"29":[2,6]},{"1":[2,28],"4":[2,28],"28":[2,28],"29":[2,28],"48":[2,28],"56":[2,28],"59":[2,28],"77":[2,28],"82":[2,28],"92":[2,28],"97":[2,28],"101":[2,28],"102":[2,28],"105":[2,28],"107":[2,28],"108":[2,28],"109":[2,28],"112":[2,28],"116":[2,28],"117":[2,28],"118":[2,28],"121":[2,28],"123":[2,28],"125":[2,28],"126":[2,28],"127":[2,28],"129":[2,28],"130":[2,28],"132":[2,28],"133":[2,28],"136":[2,28],"137":[2,28],"138":[2,28],"139":[2,28],"140":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"148":[2,28],"149":[2,28],"150":[2,28],"151":[2,28],"152":[2,28],"153":[2,28],"154":[2,28],"155":[2,28],"156":[2,28],"157":[2,28],"158":[2,28],"159":[2,28],"160":[2,28],"161":[2,28]},{"1":[2,181],"4":[2,181],"28":[2,181],"29":[2,181],"48":[1,111],"56":[2,181],"59":[2,181],"77":[2,181],"82":[2,181],"92":[2,181],"97":[2,181],"105":[2,181],"106":126,"107":[2,181],"108":[2,181],"109":[2,181],"112":[2,181],"116":[2,181],"117":[2,181],"118":[2,181],"125":[2,181],"126":[2,181],"127":[1,123],"129":[2,181],"130":[2,181],"132":[1,90],"133":[1,91],"136":[2,181],"137":[2,181],"138":[2,181],"139":[2,181],"140":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"148":[2,181],"149":[2,181],"150":[2,181],"151":[2,181],"152":[2,181],"153":[2,181],"154":[2,181],"155":[2,181],"156":[2,181],"157":[2,181],"158":[2,181],"159":[2,181],"160":[2,181],"161":[2,181]},{"1":[2,182],"4":[2,182],"28":[2,182],"29":[2,182],"48":[1,111],"56":[2,182],"59":[2,182],"77":[2,182],"82":[2,182],"92":[2,182],"97":[2,182],"105":[2,182],"106":126,"107":[2,182],"108":[2,182],"109":[2,182],"112":[2,182],"116":[2,182],"117":[2,182],"118":[2,182],"125":[2,182],"126":[2,182],"127":[1,123],"129":[2,182],"130":[2,182],"132":[1,90],"133":[1,91],"136":[2,182],"137":[2,182],"138":[2,182],"139":[2,182],"140":[2,182],"141":[2,182],"142":[2,182],"143":[2,182],"144":[2,182],"145":[2,182],"146":[2,182],"147":[2,182],"148":[2,182],"149":[2,182],"150":[2,182],"151":[2,182],"152":[2,182],"153":[2,182],"154":[2,182],"155":[2,182],"156":[2,182],"157":[2,182],"158":[2,182],"159":[2,182],"160":[2,182],"161":[2,182]},{"1":[2,183],"4":[2,183],"28":[2,183],"29":[2,183],"48":[1,111],"56":[2,183],"59":[2,183],"77":[2,183],"82":[2,183],"92":[2,183],"97":[2,183],"105":[2,183],"106":126,"107":[2,183],"108":[2,183],"109":[2,183],"112":[2,183],"116":[2,183],"117":[2,183],"118":[2,183],"125":[2,183],"126":[2,183],"127":[1,123],"129":[2,183],"130":[2,183],"132":[1,90],"133":[1,91],"136":[2,183],"137":[2,183],"138":[2,183],"139":[2,183],"140":[2,183],"141":[2,183],"142":[2,183],"143":[2,183],"144":[2,183],"145":[2,183],"146":[2,183],"147":[2,183],"148":[2,183],"149":[2,183],"150":[2,183],"151":[2,183],"152":[2,183],"153":[2,183],"154":[2,183],"155":[2,183],"156":[2,183],"157":[2,183],"158":[2,183],"159":[2,183],"160":[2,183],"161":[2,183]},{"1":[2,184],"4":[2,184],"28":[2,184],"29":[2,184],"48":[1,111],"56":[2,184],"59":[2,184],"77":[2,184],"82":[2,184],"92":[2,184],"97":[2,184],"105":[2,184],"106":126,"107":[2,184],"108":[2,184],"109":[2,184],"112":[2,184],"116":[2,184],"117":[2,184],"118":[2,184],"125":[2,184],"126":[2,184],"127":[1,123],"129":[2,184],"130":[2,184],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,184],"140":[2,184],"141":[2,184],"142":[2,184],"143":[2,184],"144":[2,184],"145":[2,184],"146":[2,184],"147":[2,184],"148":[2,184],"149":[2,184],"150":[2,184],"151":[2,184],"152":[2,184],"153":[2,184],"154":[2,184],"155":[2,184],"156":[2,184],"157":[2,184],"158":[2,184],"159":[2,184],"160":[2,184],"161":[2,184]},{"1":[2,185],"4":[2,185],"28":[2,185],"29":[2,185],"48":[1,111],"56":[2,185],"59":[2,185],"77":[2,185],"82":[2,185],"92":[2,185],"97":[2,185],"105":[2,185],"106":126,"107":[2,185],"108":[2,185],"109":[2,185],"112":[2,185],"116":[2,185],"117":[2,185],"118":[2,185],"125":[2,185],"126":[2,185],"127":[1,123],"129":[2,185],"130":[2,185],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,185],"140":[2,185],"141":[2,185],"142":[2,185],"143":[2,185],"144":[2,185],"145":[2,185],"146":[2,185],"147":[2,185],"148":[2,185],"149":[2,185],"150":[2,185],"151":[2,185],"152":[2,185],"153":[2,185],"154":[2,185],"155":[2,185],"156":[2,185],"157":[2,185],"158":[2,185],"159":[2,185],"160":[2,185],"161":[2,185]},{"1":[2,186],"4":[2,186],"28":[2,186],"29":[2,186],"48":[1,111],"56":[2,186],"59":[2,186],"77":[2,186],"82":[2,186],"92":[2,186],"97":[2,186],"105":[2,186],"106":126,"107":[2,186],"108":[2,186],"109":[2,186],"112":[2,186],"116":[2,186],"117":[2,186],"118":[2,186],"125":[2,186],"126":[2,186],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,186],"140":[2,186],"141":[2,186],"142":[2,186],"143":[2,186],"144":[2,186],"145":[2,186],"146":[2,186],"147":[2,186],"148":[2,186],"149":[2,186],"150":[2,186],"151":[2,186],"152":[2,186],"153":[2,186],"154":[2,186],"155":[2,186],"156":[2,186],"157":[2,186],"158":[2,186],"159":[2,186],"160":[2,186],"161":[2,186]},{"1":[2,187],"4":[2,187],"28":[2,187],"29":[2,187],"48":[1,111],"56":[2,187],"59":[2,187],"77":[2,187],"82":[2,187],"92":[2,187],"97":[2,187],"105":[2,187],"106":126,"107":[2,187],"108":[2,187],"109":[2,187],"112":[2,187],"116":[2,187],"117":[2,187],"118":[2,187],"125":[2,187],"126":[2,187],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,187],"140":[2,187],"141":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"146":[2,187],"147":[2,187],"148":[2,187],"149":[2,187],"150":[2,187],"151":[2,187],"152":[2,187],"153":[2,187],"154":[2,187],"155":[2,187],"156":[2,187],"157":[2,187],"158":[2,187],"159":[2,187],"160":[2,187],"161":[2,187]},{"1":[2,188],"4":[2,188],"28":[2,188],"29":[2,188],"48":[1,111],"56":[2,188],"59":[2,188],"77":[2,188],"82":[2,188],"92":[2,188],"97":[2,188],"105":[2,188],"106":126,"107":[2,188],"108":[2,188],"109":[2,188],"112":[2,188],"116":[2,188],"117":[2,188],"118":[2,188],"125":[2,188],"126":[2,188],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[2,188],"140":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"147":[2,188],"148":[2,188],"149":[2,188],"150":[2,188],"151":[2,188],"152":[2,188],"153":[2,188],"154":[2,188],"155":[2,188],"156":[2,188],"157":[2,188],"158":[2,188],"159":[2,188],"160":[2,188],"161":[2,188]},{"1":[2,189],"4":[2,189],"28":[2,189],"29":[2,189],"48":[1,111],"56":[2,189],"59":[2,189],"77":[2,189],"82":[2,189],"92":[2,189],"97":[2,189],"105":[2,189],"106":126,"107":[2,189],"108":[2,189],"109":[2,189],"112":[2,189],"116":[2,189],"117":[2,189],"118":[2,189],"125":[2,189],"126":[2,189],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"148":[2,189],"149":[2,189],"150":[2,189],"151":[2,189],"152":[2,189],"153":[2,189],"154":[2,189],"155":[2,189],"156":[2,189],"157":[2,189],"158":[2,189],"159":[2,189],"160":[2,189],"161":[2,189]},{"1":[2,190],"4":[2,190],"28":[2,190],"29":[2,190],"48":[1,111],"56":[2,190],"59":[2,190],"77":[2,190],"82":[2,190],"92":[2,190],"97":[2,190],"105":[2,190],"106":126,"107":[2,190],"108":[2,190],"109":[2,190],"112":[2,190],"116":[2,190],"117":[2,190],"118":[2,190],"125":[2,190],"126":[2,190],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"148":[2,190],"149":[2,190],"150":[2,190],"151":[2,190],"152":[2,190],"153":[2,190],"154":[2,190],"155":[2,190],"156":[2,190],"157":[2,190],"158":[2,190],"159":[2,190],"160":[2,190],"161":[2,190]},{"1":[2,191],"4":[2,191],"28":[2,191],"29":[2,191],"48":[1,111],"56":[2,191],"59":[2,191],"77":[2,191],"82":[2,191],"92":[2,191],"97":[2,191],"105":[2,191],"106":126,"107":[2,191],"108":[2,191],"109":[2,191],"112":[2,191],"116":[2,191],"117":[2,191],"118":[2,191],"125":[2,191],"126":[2,191],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"148":[2,191],"149":[2,191],"150":[2,191],"151":[2,191],"152":[2,191],"153":[2,191],"154":[2,191],"155":[2,191],"156":[2,191],"157":[2,191],"158":[2,191],"159":[2,191],"160":[2,191],"161":[2,191]},{"1":[2,192],"4":[2,192],"28":[2,192],"29":[2,192],"48":[1,111],"56":[2,192],"59":[2,192],"77":[2,192],"82":[2,192],"92":[2,192],"97":[2,192],"105":[2,192],"106":126,"107":[2,192],"108":[2,192],"109":[2,192],"112":[2,192],"116":[2,192],"117":[2,192],"118":[2,192],"125":[2,192],"126":[2,192],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,192],"146":[2,192],"147":[2,192],"148":[2,192],"149":[2,192],"150":[2,192],"151":[2,192],"152":[2,192],"153":[2,192],"154":[2,192],"155":[2,192],"156":[2,192],"157":[2,192],"158":[2,192],"159":[2,192],"160":[2,192],"161":[2,192]},{"1":[2,193],"4":[2,193],"28":[2,193],"29":[2,193],"48":[1,111],"56":[2,193],"59":[2,193],"77":[2,193],"82":[2,193],"92":[2,193],"97":[2,193],"105":[2,193],"106":126,"107":[2,193],"108":[2,193],"109":[2,193],"112":[2,193],"116":[2,193],"117":[2,193],"118":[2,193],"125":[2,193],"126":[2,193],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,193],"146":[2,193],"147":[2,193],"148":[2,193],"149":[2,193],"150":[2,193],"151":[2,193],"152":[2,193],"153":[2,193],"154":[2,193],"155":[2,193],"156":[2,193],"157":[2,193],"158":[2,193],"159":[2,193],"160":[2,193],"161":[2,193]},{"1":[2,194],"4":[2,194],"28":[2,194],"29":[2,194],"48":[1,111],"56":[2,194],"59":[2,194],"77":[2,194],"82":[2,194],"92":[2,194],"97":[2,194],"105":[2,194],"106":126,"107":[2,194],"108":[2,194],"109":[2,194],"112":[2,194],"116":[2,194],"117":[2,194],"118":[2,194],"125":[2,194],"126":[2,194],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,194],"146":[2,194],"147":[2,194],"148":[2,194],"149":[2,194],"150":[2,194],"151":[2,194],"152":[2,194],"153":[2,194],"154":[2,194],"155":[2,194],"156":[2,194],"157":[2,194],"158":[2,194],"159":[2,194],"160":[2,194],"161":[2,194]},{"1":[2,195],"4":[2,195],"28":[2,195],"29":[2,195],"48":[1,111],"56":[2,195],"59":[2,195],"77":[2,195],"82":[2,195],"92":[2,195],"97":[2,195],"105":[2,195],"106":126,"107":[2,195],"108":[2,195],"109":[2,195],"112":[2,195],"116":[2,195],"117":[2,195],"118":[2,195],"125":[2,195],"126":[2,195],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,195],"146":[2,195],"147":[2,195],"148":[2,195],"149":[2,195],"150":[2,195],"151":[2,195],"152":[2,195],"153":[2,195],"154":[2,195],"155":[2,195],"156":[2,195],"157":[2,195],"158":[2,195],"159":[2,195],"160":[2,195],"161":[2,195]},{"1":[2,196],"4":[2,196],"28":[2,196],"29":[2,196],"48":[1,111],"56":[2,196],"59":[2,196],"77":[2,196],"82":[2,196],"92":[2,196],"97":[2,196],"105":[2,196],"106":126,"107":[2,196],"108":[2,196],"109":[2,196],"112":[2,196],"116":[2,196],"117":[2,196],"118":[2,196],"125":[2,196],"126":[2,196],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,196],"150":[2,196],"151":[2,196],"152":[2,196],"153":[2,196],"154":[2,196],"155":[2,196],"156":[2,196],"157":[2,196],"158":[2,196],"159":[2,196],"160":[2,196],"161":[1,120]},{"1":[2,197],"4":[2,197],"28":[2,197],"29":[2,197],"48":[1,111],"56":[2,197],"59":[2,197],"77":[2,197],"82":[2,197],"92":[2,197],"97":[2,197],"105":[2,197],"106":126,"107":[2,197],"108":[2,197],"109":[2,197],"112":[2,197],"116":[2,197],"117":[2,197],"118":[2,197],"125":[2,197],"126":[2,197],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,197],"150":[2,197],"151":[2,197],"152":[2,197],"153":[2,197],"154":[2,197],"155":[2,197],"156":[2,197],"157":[2,197],"158":[2,197],"159":[2,197],"160":[2,197],"161":[1,120]},{"1":[2,198],"4":[2,198],"28":[2,198],"29":[2,198],"48":[1,111],"56":[2,198],"59":[2,198],"77":[2,198],"82":[2,198],"92":[2,198],"97":[2,198],"105":[2,198],"106":126,"107":[2,198],"108":[2,198],"109":[2,198],"112":[2,198],"116":[2,198],"117":[2,198],"118":[2,198],"125":[2,198],"126":[2,198],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[2,198],"152":[2,198],"153":[2,198],"154":[2,198],"155":[2,198],"156":[2,198],"157":[2,198],"158":[2,198],"159":[2,198],"160":[2,198],"161":[1,120]},{"1":[2,199],"4":[2,199],"28":[2,199],"29":[2,199],"48":[1,111],"56":[2,199],"59":[2,199],"77":[2,199],"82":[2,199],"92":[2,199],"97":[2,199],"105":[2,199],"106":126,"107":[2,199],"108":[2,199],"109":[2,199],"112":[2,199],"116":[2,199],"117":[2,199],"118":[2,199],"125":[2,199],"126":[2,199],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[2,199],"152":[2,199],"153":[2,199],"154":[2,199],"155":[2,199],"156":[2,199],"157":[2,199],"158":[2,199],"159":[2,199],"160":[2,199],"161":[1,120]},{"1":[2,200],"4":[2,200],"28":[2,200],"29":[2,200],"48":[2,200],"56":[2,200],"59":[2,200],"77":[2,200],"82":[2,200],"92":[2,200],"97":[2,200],"105":[2,200],"106":126,"107":[2,200],"108":[2,200],"109":[2,200],"112":[2,200],"116":[2,200],"117":[2,200],"118":[2,200],"125":[2,200],"126":[2,200],"127":[2,200],"129":[2,200],"130":[2,200],"132":[2,200],"133":[2,200],"136":[2,200],"137":[2,200],"138":[2,200],"139":[2,200],"140":[2,200],"141":[2,200],"142":[2,200],"143":[2,200],"144":[2,200],"145":[2,200],"146":[2,200],"147":[2,200],"148":[2,200],"149":[2,200],"150":[2,200],"151":[2,200],"152":[2,200],"153":[2,200],"154":[2,200],"155":[2,200],"156":[2,200],"157":[2,200],"158":[2,200],"159":[2,200],"160":[2,200],"161":[2,200]},{"1":[2,201],"4":[2,201],"28":[2,201],"29":[2,201],"48":[1,111],"56":[2,201],"59":[2,201],"77":[2,201],"82":[2,201],"92":[2,201],"97":[2,201],"105":[2,201],"106":126,"107":[2,201],"108":[2,201],"109":[2,201],"112":[2,201],"116":[2,201],"117":[2,201],"118":[2,201],"125":[2,201],"126":[2,201],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,202],"4":[2,202],"28":[2,202],"29":[2,202],"48":[1,111],"56":[2,202],"59":[2,202],"77":[2,202],"82":[2,202],"92":[2,202],"97":[2,202],"105":[2,202],"106":126,"107":[2,202],"108":[2,202],"109":[2,202],"112":[2,202],"116":[2,202],"117":[2,202],"118":[2,202],"125":[2,202],"126":[2,202],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,203],"4":[2,203],"28":[2,203],"29":[2,203],"48":[1,111],"56":[2,203],"59":[2,203],"77":[2,203],"82":[2,203],"92":[2,203],"97":[2,203],"105":[2,203],"106":126,"107":[2,203],"108":[2,203],"109":[2,203],"112":[2,203],"116":[2,203],"117":[2,203],"118":[2,203],"125":[2,203],"126":[2,203],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,204],"4":[2,204],"28":[2,204],"29":[2,204],"48":[1,111],"56":[2,204],"59":[2,204],"77":[2,204],"82":[2,204],"92":[2,204],"97":[2,204],"105":[2,204],"106":126,"107":[2,204],"108":[2,204],"109":[2,204],"112":[2,204],"116":[2,204],"117":[2,204],"118":[2,204],"125":[2,204],"126":[2,204],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,205],"4":[2,205],"28":[2,205],"29":[2,205],"48":[1,111],"56":[2,205],"59":[2,205],"77":[2,205],"82":[2,205],"92":[2,205],"97":[2,205],"105":[2,205],"106":126,"107":[2,205],"108":[2,205],"109":[2,205],"112":[2,205],"116":[2,205],"117":[2,205],"118":[2,205],"125":[2,205],"126":[2,205],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,206],"4":[2,206],"28":[2,206],"29":[2,206],"48":[1,111],"56":[2,206],"59":[2,206],"77":[2,206],"82":[2,206],"92":[2,206],"97":[2,206],"105":[2,206],"106":126,"107":[2,206],"108":[2,206],"109":[2,206],"112":[2,206],"116":[2,206],"117":[2,206],"118":[2,206],"125":[2,206],"126":[2,206],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,207],"4":[2,207],"28":[2,207],"29":[2,207],"48":[1,111],"56":[2,207],"59":[2,207],"77":[2,207],"82":[2,207],"92":[2,207],"97":[2,207],"105":[2,207],"106":126,"107":[2,207],"108":[2,207],"109":[2,207],"112":[2,207],"116":[2,207],"117":[2,207],"118":[2,207],"125":[2,207],"126":[2,207],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,208],"4":[2,208],"28":[2,208],"29":[2,208],"48":[1,111],"56":[2,208],"59":[2,208],"77":[2,208],"82":[2,208],"92":[2,208],"97":[2,208],"105":[2,208],"106":126,"107":[2,208],"108":[2,208],"109":[2,208],"112":[2,208],"116":[2,208],"117":[2,208],"118":[2,208],"125":[2,208],"126":[2,208],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,209],"4":[2,209],"28":[2,209],"29":[2,209],"48":[1,111],"56":[2,209],"59":[2,209],"77":[2,209],"82":[2,209],"92":[2,209],"97":[2,209],"105":[2,209],"106":126,"107":[2,209],"108":[2,209],"109":[2,209],"112":[2,209],"116":[2,209],"117":[2,209],"118":[2,209],"125":[2,209],"126":[2,209],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[2,209],"150":[2,209],"151":[2,209],"152":[2,209],"153":[2,209],"154":[2,209],"155":[2,209],"156":[2,209],"157":[2,209],"158":[2,209],"159":[2,209],"160":[2,209],"161":[1,120]},{"1":[2,210],"4":[2,210],"28":[2,210],"29":[2,210],"48":[1,111],"56":[2,210],"59":[1,128],"77":[2,210],"82":[2,210],"92":[2,210],"97":[2,210],"105":[2,210],"106":126,"107":[2,210],"108":[2,210],"109":[2,210],"112":[2,210],"116":[1,121],"117":[1,122],"118":[2,210],"125":[2,210],"126":[2,210],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,211],"4":[2,211],"28":[2,211],"29":[2,211],"48":[1,111],"56":[2,211],"59":[1,128],"77":[2,211],"82":[2,211],"92":[2,211],"97":[2,211],"105":[2,211],"106":126,"107":[2,211],"108":[2,211],"109":[2,211],"112":[2,211],"116":[1,121],"117":[1,122],"118":[2,211],"125":[2,211],"126":[2,211],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"8":280,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":281,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,167],"4":[2,167],"28":[2,167],"29":[2,167],"48":[1,111],"56":[2,167],"59":[1,128],"77":[2,167],"82":[2,167],"92":[2,167],"97":[2,167],"105":[2,167],"106":126,"107":[1,77],"108":[2,167],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,167],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,169],"4":[2,169],"28":[2,169],"29":[2,169],"48":[1,111],"56":[2,169],"59":[1,128],"77":[2,169],"82":[2,169],"92":[2,169],"97":[2,169],"105":[2,169],"106":126,"107":[1,77],"108":[2,169],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,169],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"114":282,"116":[1,258],"117":[1,259]},{"59":[1,283]},{"1":[2,166],"4":[2,166],"28":[2,166],"29":[2,166],"48":[1,111],"56":[2,166],"59":[1,128],"77":[2,166],"82":[2,166],"92":[2,166],"97":[2,166],"105":[2,166],"106":126,"107":[1,77],"108":[2,166],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,166],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,168],"4":[2,168],"28":[2,168],"29":[2,168],"48":[1,111],"56":[2,168],"59":[1,128],"77":[2,168],"82":[2,168],"92":[2,168],"97":[2,168],"105":[2,168],"106":126,"107":[1,77],"108":[2,168],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,168],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"114":284,"116":[1,258],"117":[1,259]},{"4":[2,54],"28":[2,54],"55":285,"56":[1,271],"92":[2,54]},{"4":[2,116],"28":[2,116],"29":[2,116],"48":[1,111],"56":[2,116],"59":[1,128],"92":[2,116],"97":[2,116],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,75],"4":[2,75],"28":[2,75],"29":[2,75],"45":[2,75],"48":[2,75],"56":[2,75],"59":[2,75],"70":[2,75],"71":[2,75],"72":[2,75],"73":[2,75],"76":[2,75],"77":[2,75],"78":[2,75],"79":[2,75],"82":[2,75],"84":[2,75],"90":[2,75],"92":[2,75],"97":[2,75],"105":[2,75],"107":[2,75],"108":[2,75],"109":[2,75],"112":[2,75],"116":[2,75],"117":[2,75],"118":[2,75],"125":[2,75],"126":[2,75],"127":[2,75],"129":[2,75],"130":[2,75],"132":[2,75],"133":[2,75],"136":[2,75],"137":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75]},{"1":[2,76],"4":[2,76],"28":[2,76],"29":[2,76],"45":[2,76],"48":[2,76],"56":[2,76],"59":[2,76],"70":[2,76],"71":[2,76],"72":[2,76],"73":[2,76],"76":[2,76],"77":[2,76],"78":[2,76],"79":[2,76],"82":[2,76],"84":[2,76],"90":[2,76],"92":[2,76],"97":[2,76],"105":[2,76],"107":[2,76],"108":[2,76],"109":[2,76],"112":[2,76],"116":[2,76],"117":[2,76],"118":[2,76],"125":[2,76],"126":[2,76],"127":[2,76],"129":[2,76],"130":[2,76],"132":[2,76],"133":[2,76],"136":[2,76],"137":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76]},{"1":[2,78],"4":[2,78],"28":[2,78],"29":[2,78],"45":[2,78],"48":[2,78],"56":[2,78],"59":[2,78],"70":[2,78],"71":[2,78],"72":[2,78],"73":[2,78],"76":[2,78],"77":[2,78],"78":[2,78],"79":[2,78],"82":[2,78],"84":[2,78],"90":[2,78],"92":[2,78],"97":[2,78],"105":[2,78],"107":[2,78],"108":[2,78],"109":[2,78],"112":[2,78],"116":[2,78],"117":[2,78],"118":[2,78],"125":[2,78],"126":[2,78],"127":[2,78],"129":[2,78],"130":[2,78],"132":[2,78],"133":[2,78],"136":[2,78],"137":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78],"151":[2,78],"152":[2,78],"153":[2,78],"154":[2,78],"155":[2,78],"156":[2,78],"157":[2,78],"158":[2,78],"159":[2,78],"160":[2,78],"161":[2,78]},{"48":[1,111],"59":[1,287],"77":[1,286],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,82],"4":[2,82],"28":[2,82],"29":[2,82],"45":[2,82],"48":[2,82],"56":[2,82],"59":[2,82],"70":[2,82],"71":[2,82],"72":[2,82],"73":[2,82],"76":[2,82],"77":[2,82],"78":[2,82],"79":[2,82],"82":[2,82],"84":[2,82],"90":[2,82],"92":[2,82],"97":[2,82],"105":[2,82],"107":[2,82],"108":[2,82],"109":[2,82],"112":[2,82],"116":[2,82],"117":[2,82],"118":[2,82],"125":[2,82],"126":[2,82],"127":[2,82],"129":[2,82],"130":[2,82],"132":[2,82],"133":[2,82],"136":[2,82],"137":[2,82],"138":[2,82],"139":[2,82],"140":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82],"151":[2,82],"152":[2,82],"153":[2,82],"154":[2,82],"155":[2,82],"156":[2,82],"157":[2,82],"158":[2,82],"159":[2,82],"160":[2,82],"161":[2,82]},{"8":288,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,83],"4":[2,83],"28":[2,83],"29":[2,83],"45":[2,83],"48":[2,83],"56":[2,83],"59":[2,83],"70":[2,83],"71":[2,83],"72":[2,83],"73":[2,83],"76":[2,83],"77":[2,83],"78":[2,83],"79":[2,83],"82":[2,83],"84":[2,83],"90":[2,83],"92":[2,83],"97":[2,83],"105":[2,83],"107":[2,83],"108":[2,83],"109":[2,83],"112":[2,83],"116":[2,83],"117":[2,83],"118":[2,83],"125":[2,83],"126":[2,83],"127":[2,83],"129":[2,83],"130":[2,83],"132":[2,83],"133":[2,83],"136":[2,83],"137":[2,83],"138":[2,83],"139":[2,83],"140":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83],"151":[2,83],"152":[2,83],"153":[2,83],"154":[2,83],"155":[2,83],"156":[2,83],"157":[2,83],"158":[2,83],"159":[2,83],"160":[2,83],"161":[2,83]},{"1":[2,42],"4":[2,42],"28":[2,42],"29":[2,42],"48":[1,111],"56":[2,42],"59":[1,128],"77":[2,42],"82":[2,42],"92":[2,42],"97":[2,42],"105":[2,42],"106":126,"107":[1,77],"108":[2,42],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,42],"125":[2,42],"126":[2,42],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"52":289,"53":[1,73],"54":[1,74]},{"57":290,"58":[1,154]},{"59":[1,291]},{"8":292,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,164],"4":[2,164],"28":[2,164],"29":[2,164],"48":[2,164],"56":[2,164],"59":[2,164],"77":[2,164],"82":[2,164],"92":[2,164],"97":[2,164],"105":[2,164],"107":[2,164],"108":[2,164],"109":[2,164],"112":[2,164],"116":[2,164],"117":[2,164],"118":[2,164],"121":[2,164],"125":[2,164],"126":[2,164],"127":[2,164],"129":[2,164],"130":[2,164],"132":[2,164],"133":[2,164],"136":[2,164],"137":[2,164],"138":[2,164],"139":[2,164],"140":[2,164],"141":[2,164],"142":[2,164],"143":[2,164],"144":[2,164],"145":[2,164],"146":[2,164],"147":[2,164],"148":[2,164],"149":[2,164],"150":[2,164],"151":[2,164],"152":[2,164],"153":[2,164],"154":[2,164],"155":[2,164],"156":[2,164],"157":[2,164],"158":[2,164],"159":[2,164],"160":[2,164],"161":[2,164]},{"1":[2,122],"4":[2,122],"28":[2,122],"29":[2,122],"48":[2,122],"56":[2,122],"59":[2,122],"77":[2,122],"82":[2,122],"92":[2,122],"97":[2,122],"101":[1,293],"105":[2,122],"107":[2,122],"108":[2,122],"109":[2,122],"112":[2,122],"116":[2,122],"117":[2,122],"118":[2,122],"125":[2,122],"126":[2,122],"127":[2,122],"129":[2,122],"130":[2,122],"132":[2,122],"133":[2,122],"136":[2,122],"137":[2,122],"138":[2,122],"139":[2,122],"140":[2,122],"141":[2,122],"142":[2,122],"143":[2,122],"144":[2,122],"145":[2,122],"146":[2,122],"147":[2,122],"148":[2,122],"149":[2,122],"150":[2,122],"151":[2,122],"152":[2,122],"153":[2,122],"154":[2,122],"155":[2,122],"156":[2,122],"157":[2,122],"158":[2,122],"159":[2,122],"160":[2,122],"161":[2,122]},{"6":294,"28":[1,6]},{"30":295,"31":[1,85]},{"6":296,"28":[1,6]},{"8":297,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":298,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"30":171,"31":[1,85],"64":172,"65":173,"80":[1,82],"96":[1,174],"115":299},{"120":300,"122":263,"123":[1,264]},{"29":[1,301],"121":[1,302],"122":303,"123":[1,264]},{"29":[2,157],"121":[2,157],"123":[2,157]},{"8":305,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"98":304,"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,102],"4":[2,102],"28":[2,102],"29":[2,102],"48":[2,102],"56":[2,102],"59":[2,102],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,102],"78":[1,143],"79":[1,144],"82":[2,102],"89":133,"90":[1,135],"92":[2,102],"97":[2,102],"105":[2,102],"107":[2,102],"108":[2,102],"109":[2,102],"112":[2,102],"116":[2,102],"117":[2,102],"118":[2,102],"125":[2,102],"126":[2,102],"127":[2,102],"129":[2,102],"130":[2,102],"132":[2,102],"133":[2,102],"136":[2,102],"137":[2,102],"138":[2,102],"139":[2,102],"140":[2,102],"141":[2,102],"142":[2,102],"143":[2,102],"144":[2,102],"145":[2,102],"146":[2,102],"147":[2,102],"148":[2,102],"149":[2,102],"150":[2,102],"151":[2,102],"152":[2,102],"153":[2,102],"154":[2,102],"155":[2,102],"156":[2,102],"157":[2,102],"158":[2,102],"159":[2,102],"160":[2,102],"161":[2,102]},{"14":306,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":150,"60":151,"62":179,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"94":[1,70],"95":[1,71],"96":[1,69],"104":[1,68]},{"4":[2,96],"29":[2,96],"30":195,"31":[1,85],"32":196,"33":[1,83],"34":[1,84],"46":309,"63":310,"85":307,"86":308,"95":[1,311]},{"1":[2,127],"4":[2,127],"28":[2,127],"29":[2,127],"48":[2,127],"56":[2,127],"59":[2,127],"70":[2,127],"71":[2,127],"72":[2,127],"73":[2,127],"76":[2,127],"77":[2,127],"78":[2,127],"79":[2,127],"82":[2,127],"90":[2,127],"92":[2,127],"97":[2,127],"105":[2,127],"107":[2,127],"108":[2,127],"109":[2,127],"112":[2,127],"116":[2,127],"117":[2,127],"118":[2,127],"125":[2,127],"126":[2,127],"127":[2,127],"129":[2,127],"130":[2,127],"132":[2,127],"133":[2,127],"136":[2,127],"137":[2,127],"138":[2,127],"139":[2,127],"140":[2,127],"141":[2,127],"142":[2,127],"143":[2,127],"144":[2,127],"145":[2,127],"146":[2,127],"147":[2,127],"148":[2,127],"149":[2,127],"150":[2,127],"151":[2,127],"152":[2,127],"153":[2,127],"154":[2,127],"155":[2,127],"156":[2,127],"157":[2,127],"158":[2,127],"159":[2,127],"160":[2,127],"161":[2,127]},{"59":[1,312]},{"4":[1,314],"28":[1,315],"97":[1,313]},{"4":[2,55],"8":316,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,55],"29":[2,55],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"92":[2,55],"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,55],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,161],"4":[2,161],"28":[2,161],"29":[2,161],"48":[2,161],"56":[2,161],"59":[2,161],"77":[2,161],"82":[2,161],"92":[2,161],"97":[2,161],"105":[2,161],"107":[2,161],"108":[2,161],"109":[2,161],"112":[2,161],"116":[2,161],"117":[2,161],"118":[2,161],"121":[2,161],"125":[2,161],"126":[2,161],"127":[2,161],"129":[2,161],"130":[2,161],"132":[2,161],"133":[2,161],"136":[2,161],"137":[2,161],"138":[2,161],"139":[2,161],"140":[2,161],"141":[2,161],"142":[2,161],"143":[2,161],"144":[2,161],"145":[2,161],"146":[2,161],"147":[2,161],"148":[2,161],"149":[2,161],"150":[2,161],"151":[2,161],"152":[2,161],"153":[2,161],"154":[2,161],"155":[2,161],"156":[2,161],"157":[2,161],"158":[2,161],"159":[2,161],"160":[2,161],"161":[2,161]},{"1":[2,162],"4":[2,162],"28":[2,162],"29":[2,162],"48":[2,162],"56":[2,162],"59":[2,162],"77":[2,162],"82":[2,162],"92":[2,162],"97":[2,162],"105":[2,162],"107":[2,162],"108":[2,162],"109":[2,162],"112":[2,162],"116":[2,162],"117":[2,162],"118":[2,162],"121":[2,162],"125":[2,162],"126":[2,162],"127":[2,162],"129":[2,162],"130":[2,162],"132":[2,162],"133":[2,162],"136":[2,162],"137":[2,162],"138":[2,162],"139":[2,162],"140":[2,162],"141":[2,162],"142":[2,162],"143":[2,162],"144":[2,162],"145":[2,162],"146":[2,162],"147":[2,162],"148":[2,162],"149":[2,162],"150":[2,162],"151":[2,162],"152":[2,162],"153":[2,162],"154":[2,162],"155":[2,162],"156":[2,162],"157":[2,162],"158":[2,162],"159":[2,162],"160":[2,162],"161":[2,162]},{"8":317,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":318,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[1,320],"28":[1,321],"82":[1,319]},{"4":[2,55],"28":[2,55],"29":[2,55],"30":195,"31":[1,85],"32":196,"33":[1,83],"34":[1,84],"46":322,"82":[2,55]},{"8":323,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":324,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,212],"4":[2,212],"28":[2,212],"29":[2,212],"48":[1,111],"56":[2,212],"59":[2,212],"77":[2,212],"82":[2,212],"92":[2,212],"97":[2,212],"105":[2,212],"106":126,"107":[2,212],"108":[2,212],"109":[2,212],"112":[2,212],"116":[2,212],"117":[2,212],"118":[2,212],"125":[2,212],"126":[2,212],"129":[2,212],"130":[2,212],"136":[2,212],"137":[2,212],"138":[2,212],"139":[2,212],"140":[2,212],"141":[2,212],"142":[2,212],"143":[2,212],"144":[2,212],"145":[2,212],"146":[2,212],"147":[2,212],"148":[2,212],"149":[2,212],"150":[2,212],"151":[2,212],"152":[2,212],"153":[2,212],"154":[2,212],"155":[2,212],"156":[2,212],"157":[2,212],"158":[2,212],"159":[2,212],"160":[2,212],"161":[2,212]},{"1":[2,213],"4":[2,213],"28":[2,213],"29":[2,213],"48":[1,111],"56":[2,213],"59":[2,213],"77":[2,213],"82":[2,213],"92":[2,213],"97":[2,213],"105":[2,213],"106":126,"107":[2,213],"108":[2,213],"109":[2,213],"112":[2,213],"116":[2,213],"117":[2,213],"118":[2,213],"125":[2,213],"126":[2,213],"129":[2,213],"130":[2,213],"136":[2,213],"137":[2,213],"138":[2,213],"139":[2,213],"140":[2,213],"141":[2,213],"142":[2,213],"143":[2,213],"144":[2,213],"145":[2,213],"146":[2,213],"147":[2,213],"148":[2,213],"149":[2,213],"150":[2,213],"151":[2,213],"152":[2,213],"153":[2,213],"154":[2,213],"155":[2,213],"156":[2,213],"157":[2,213],"158":[2,213],"159":[2,213],"160":[2,213],"161":[2,213]},{"1":[2,139],"4":[2,139],"28":[2,139],"29":[2,139],"48":[2,139],"56":[2,139],"59":[2,139],"77":[2,139],"82":[2,139],"92":[2,139],"97":[2,139],"105":[2,139],"107":[2,139],"108":[2,139],"109":[2,139],"112":[2,139],"116":[2,139],"117":[2,139],"118":[2,139],"125":[2,139],"126":[2,139],"127":[2,139],"129":[2,139],"130":[2,139],"132":[2,139],"133":[2,139],"136":[2,139],"137":[2,139],"138":[2,139],"139":[2,139],"140":[2,139],"141":[2,139],"142":[2,139],"143":[2,139],"144":[2,139],"145":[2,139],"146":[2,139],"147":[2,139],"148":[2,139],"149":[2,139],"150":[2,139],"151":[2,139],"152":[2,139],"153":[2,139],"154":[2,139],"155":[2,139],"156":[2,139],"157":[2,139],"158":[2,139],"159":[2,139],"160":[2,139],"161":[2,139]},{"1":[2,61],"4":[2,61],"28":[2,61],"29":[2,61],"48":[2,61],"56":[2,61],"59":[2,61],"77":[2,61],"82":[2,61],"92":[2,61],"97":[2,61],"105":[2,61],"107":[2,61],"108":[2,61],"109":[2,61],"112":[2,61],"116":[2,61],"117":[2,61],"118":[2,61],"125":[2,61],"126":[2,61],"127":[2,61],"129":[2,61],"130":[2,61],"132":[2,61],"133":[2,61],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61],"161":[2,61]},{"1":[2,138],"4":[2,138],"28":[2,138],"29":[2,138],"48":[2,138],"56":[2,138],"59":[2,138],"77":[2,138],"82":[2,138],"92":[2,138],"97":[2,138],"105":[2,138],"107":[2,138],"108":[2,138],"109":[2,138],"112":[2,138],"116":[2,138],"117":[2,138],"118":[2,138],"125":[2,138],"126":[2,138],"127":[2,138],"129":[2,138],"130":[2,138],"132":[2,138],"133":[2,138],"136":[2,138],"137":[2,138],"138":[2,138],"139":[2,138],"140":[2,138],"141":[2,138],"142":[2,138],"143":[2,138],"144":[2,138],"145":[2,138],"146":[2,138],"147":[2,138],"148":[2,138],"149":[2,138],"150":[2,138],"151":[2,138],"152":[2,138],"153":[2,138],"154":[2,138],"155":[2,138],"156":[2,138],"157":[2,138],"158":[2,138],"159":[2,138],"160":[2,138],"161":[2,138]},{"4":[1,314],"28":[1,315],"92":[1,325]},{"1":[2,81],"4":[2,81],"28":[2,81],"29":[2,81],"45":[2,81],"48":[2,81],"56":[2,81],"59":[2,81],"70":[2,81],"71":[2,81],"72":[2,81],"73":[2,81],"76":[2,81],"77":[2,81],"78":[2,81],"79":[2,81],"82":[2,81],"84":[2,81],"90":[2,81],"92":[2,81],"97":[2,81],"105":[2,81],"107":[2,81],"108":[2,81],"109":[2,81],"112":[2,81],"116":[2,81],"117":[2,81],"118":[2,81],"125":[2,81],"126":[2,81],"127":[2,81],"129":[2,81],"130":[2,81],"132":[2,81],"133":[2,81],"136":[2,81],"137":[2,81],"138":[2,81],"139":[2,81],"140":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81],"151":[2,81],"152":[2,81],"153":[2,81],"154":[2,81],"155":[2,81],"156":[2,81],"157":[2,81],"158":[2,81],"159":[2,81],"160":[2,81],"161":[2,81]},{"59":[1,326]},{"48":[1,111],"59":[1,128],"77":[1,286],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"6":327,"28":[1,6]},{"51":[2,58],"56":[2,58],"59":[1,251]},{"59":[1,328]},{"6":329,"28":[1,6],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"6":330,"28":[1,6]},{"1":[2,123],"4":[2,123],"28":[2,123],"29":[2,123],"48":[2,123],"56":[2,123],"59":[2,123],"77":[2,123],"82":[2,123],"92":[2,123],"97":[2,123],"105":[2,123],"107":[2,123],"108":[2,123],"109":[2,123],"112":[2,123],"116":[2,123],"117":[2,123],"118":[2,123],"125":[2,123],"126":[2,123],"127":[2,123],"129":[2,123],"130":[2,123],"132":[2,123],"133":[2,123],"136":[2,123],"137":[2,123],"138":[2,123],"139":[2,123],"140":[2,123],"141":[2,123],"142":[2,123],"143":[2,123],"144":[2,123],"145":[2,123],"146":[2,123],"147":[2,123],"148":[2,123],"149":[2,123],"150":[2,123],"151":[2,123],"152":[2,123],"153":[2,123],"154":[2,123],"155":[2,123],"156":[2,123],"157":[2,123],"158":[2,123],"159":[2,123],"160":[2,123],"161":[2,123]},{"6":331,"28":[1,6]},{"1":[2,140],"4":[2,140],"28":[2,140],"29":[2,140],"48":[2,140],"56":[2,140],"59":[2,140],"77":[2,140],"82":[2,140],"92":[2,140],"97":[2,140],"105":[2,140],"107":[2,140],"108":[2,140],"109":[2,140],"112":[2,140],"116":[2,140],"117":[2,140],"118":[2,140],"125":[2,140],"126":[2,140],"127":[2,140],"129":[2,140],"130":[2,140],"132":[2,140],"133":[2,140],"136":[2,140],"137":[2,140],"138":[2,140],"139":[2,140],"140":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140],"148":[2,140],"149":[2,140],"150":[2,140],"151":[2,140],"152":[2,140],"153":[2,140],"154":[2,140],"155":[2,140],"156":[2,140],"157":[2,140],"158":[2,140],"159":[2,140],"160":[2,140],"161":[2,140]},{"1":[2,146],"4":[2,146],"28":[2,146],"29":[2,146],"48":[1,111],"56":[2,146],"59":[1,128],"77":[2,146],"82":[2,146],"92":[2,146],"97":[2,146],"105":[2,146],"106":126,"107":[2,146],"108":[1,332],"109":[2,146],"112":[2,146],"116":[1,121],"117":[1,122],"118":[1,333],"125":[2,146],"126":[2,146],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,147],"4":[2,147],"28":[2,147],"29":[2,147],"48":[1,111],"56":[2,147],"59":[1,128],"77":[2,147],"82":[2,147],"92":[2,147],"97":[2,147],"105":[2,147],"106":126,"107":[2,147],"108":[1,334],"109":[2,147],"112":[2,147],"116":[1,121],"117":[1,122],"118":[2,147],"125":[2,147],"126":[2,147],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"116":[2,145],"117":[2,145]},{"29":[1,335],"121":[1,336],"122":303,"123":[1,264]},{"1":[2,155],"4":[2,155],"28":[2,155],"29":[2,155],"48":[2,155],"56":[2,155],"59":[2,155],"77":[2,155],"82":[2,155],"92":[2,155],"97":[2,155],"105":[2,155],"107":[2,155],"108":[2,155],"109":[2,155],"112":[2,155],"116":[2,155],"117":[2,155],"118":[2,155],"125":[2,155],"126":[2,155],"127":[2,155],"129":[2,155],"130":[2,155],"132":[2,155],"133":[2,155],"136":[2,155],"137":[2,155],"138":[2,155],"139":[2,155],"140":[2,155],"141":[2,155],"142":[2,155],"143":[2,155],"144":[2,155],"145":[2,155],"146":[2,155],"147":[2,155],"148":[2,155],"149":[2,155],"150":[2,155],"151":[2,155],"152":[2,155],"153":[2,155],"154":[2,155],"155":[2,155],"156":[2,155],"157":[2,155],"158":[2,155],"159":[2,155],"160":[2,155],"161":[2,155]},{"6":337,"28":[1,6]},{"29":[2,158],"121":[2,158],"123":[2,158]},{"6":338,"28":[1,6],"56":[1,339]},{"28":[2,120],"48":[1,111],"56":[2,120],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,91],"4":[2,91],"28":[1,340],"29":[2,91],"48":[2,91],"56":[2,91],"59":[2,91],"61":134,"70":[1,136],"71":[1,137],"72":[1,138],"73":[1,139],"74":140,"75":141,"76":[1,142],"77":[2,91],"78":[1,143],"79":[1,144],"82":[2,91],"89":133,"90":[1,135],"92":[2,91],"97":[2,91],"105":[2,91],"107":[2,91],"108":[2,91],"109":[2,91],"112":[2,91],"116":[2,91],"117":[2,91],"118":[2,91],"125":[2,91],"126":[2,91],"127":[2,91],"129":[2,91],"130":[2,91],"132":[2,91],"133":[2,91],"136":[2,91],"137":[2,91],"138":[2,91],"139":[2,91],"140":[2,91],"141":[2,91],"142":[2,91],"143":[2,91],"144":[2,91],"145":[2,91],"146":[2,91],"147":[2,91],"148":[2,91],"149":[2,91],"150":[2,91],"151":[2,91],"152":[2,91],"153":[2,91],"154":[2,91],"155":[2,91],"156":[2,91],"157":[2,91],"158":[2,91],"159":[2,91],"160":[2,91],"161":[2,91]},{"4":[1,342],"29":[1,341]},{"4":[2,97],"29":[2,97]},{"4":[2,94],"29":[2,94]},{"45":[1,343]},{"30":185,"31":[1,85]},{"8":344,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"59":[1,345],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,114],"4":[2,114],"28":[2,114],"29":[2,114],"45":[2,114],"48":[2,114],"56":[2,114],"59":[2,114],"70":[2,114],"71":[2,114],"72":[2,114],"73":[2,114],"76":[2,114],"77":[2,114],"78":[2,114],"79":[2,114],"82":[2,114],"90":[2,114],"92":[2,114],"97":[2,114],"105":[2,114],"107":[2,114],"108":[2,114],"109":[2,114],"112":[2,114],"116":[2,114],"117":[2,114],"118":[2,114],"125":[2,114],"126":[2,114],"127":[2,114],"129":[2,114],"130":[2,114],"132":[2,114],"133":[2,114],"136":[2,114],"137":[2,114],"138":[2,114],"139":[2,114],"140":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"147":[2,114],"148":[2,114],"149":[2,114],"150":[2,114],"151":[2,114],"152":[2,114],"153":[2,114],"154":[2,114],"155":[2,114],"156":[2,114],"157":[2,114],"158":[2,114],"159":[2,114],"160":[2,114],"161":[2,114]},{"8":346,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,115],"8":240,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,115],"29":[2,115],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,115],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"91":347,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,117],"28":[2,117],"29":[2,117],"48":[1,111],"56":[2,117],"59":[1,128],"92":[2,117],"97":[2,117],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,129],"4":[2,129],"28":[2,129],"29":[2,129],"48":[1,111],"56":[2,129],"59":[1,128],"77":[2,129],"82":[2,129],"92":[2,129],"97":[2,129],"105":[2,129],"106":126,"107":[1,77],"108":[2,129],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,129],"125":[2,129],"126":[2,129],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,131],"4":[2,131],"28":[2,131],"29":[2,131],"48":[1,111],"56":[2,131],"59":[1,128],"77":[2,131],"82":[2,131],"92":[2,131],"97":[2,131],"105":[2,131],"106":126,"107":[1,77],"108":[2,131],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"118":[2,131],"125":[2,131],"126":[2,131],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,84],"4":[2,84],"28":[2,84],"29":[2,84],"45":[2,84],"48":[2,84],"56":[2,84],"59":[2,84],"70":[2,84],"71":[2,84],"72":[2,84],"73":[2,84],"76":[2,84],"77":[2,84],"78":[2,84],"79":[2,84],"82":[2,84],"90":[2,84],"92":[2,84],"97":[2,84],"105":[2,84],"107":[2,84],"108":[2,84],"109":[2,84],"112":[2,84],"116":[2,84],"117":[2,84],"118":[2,84],"125":[2,84],"126":[2,84],"127":[2,84],"129":[2,84],"130":[2,84],"132":[2,84],"133":[2,84],"136":[2,84],"137":[2,84],"138":[2,84],"139":[2,84],"140":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84],"151":[2,84],"152":[2,84],"153":[2,84],"154":[2,84],"155":[2,84],"156":[2,84],"157":[2,84],"158":[2,84],"159":[2,84],"160":[2,84],"161":[2,84]},{"30":195,"31":[1,85],"32":196,"33":[1,83],"34":[1,84],"46":348},{"4":[2,85],"28":[2,85],"29":[2,85],"30":195,"31":[1,85],"32":196,"33":[1,83],"34":[1,84],"46":194,"56":[2,85],"81":349},{"4":[2,87],"28":[2,87],"29":[2,87],"56":[2,87],"82":[2,87]},{"4":[2,45],"28":[2,45],"29":[2,45],"48":[1,111],"56":[2,45],"59":[1,128],"82":[2,45],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,46],"28":[2,46],"29":[2,46],"48":[1,111],"56":[2,46],"59":[1,128],"82":[2,46],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,105],"4":[2,105],"28":[2,105],"29":[2,105],"48":[2,105],"56":[2,105],"59":[2,105],"70":[2,105],"71":[2,105],"72":[2,105],"73":[2,105],"76":[2,105],"77":[2,105],"78":[2,105],"79":[2,105],"82":[2,105],"90":[2,105],"92":[2,105],"97":[2,105],"105":[2,105],"107":[2,105],"108":[2,105],"109":[2,105],"112":[2,105],"116":[2,105],"117":[2,105],"118":[2,105],"125":[2,105],"126":[2,105],"127":[2,105],"129":[2,105],"130":[2,105],"132":[2,105],"133":[2,105],"136":[2,105],"137":[2,105],"138":[2,105],"139":[2,105],"140":[2,105],"141":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"148":[2,105],"149":[2,105],"150":[2,105],"151":[2,105],"152":[2,105],"153":[2,105],"154":[2,105],"155":[2,105],"156":[2,105],"157":[2,105],"158":[2,105],"159":[2,105],"160":[2,105],"161":[2,105]},{"8":350,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"59":[1,351],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,50],"4":[2,50],"28":[2,50],"29":[2,50],"48":[2,50],"56":[2,50],"59":[2,50],"77":[2,50],"82":[2,50],"92":[2,50],"97":[2,50],"105":[2,50],"107":[2,50],"108":[2,50],"109":[2,50],"112":[2,50],"116":[2,50],"117":[2,50],"118":[2,50],"125":[2,50],"126":[2,50],"127":[2,50],"129":[2,50],"130":[2,50],"132":[2,50],"133":[2,50],"136":[2,50],"137":[2,50],"138":[2,50],"139":[2,50],"140":[2,50],"141":[2,50],"142":[2,50],"143":[2,50],"144":[2,50],"145":[2,50],"146":[2,50],"147":[2,50],"148":[2,50],"149":[2,50],"150":[2,50],"151":[2,50],"152":[2,50],"153":[2,50],"154":[2,50],"155":[2,50],"156":[2,50],"157":[2,50],"158":[2,50],"159":[2,50],"160":[2,50],"161":[2,50]},{"51":[2,60],"56":[2,60],"59":[2,60]},{"1":[2,163],"4":[2,163],"28":[2,163],"29":[2,163],"48":[2,163],"56":[2,163],"59":[2,163],"77":[2,163],"82":[2,163],"92":[2,163],"97":[2,163],"105":[2,163],"107":[2,163],"108":[2,163],"109":[2,163],"112":[2,163],"116":[2,163],"117":[2,163],"118":[2,163],"121":[2,163],"125":[2,163],"126":[2,163],"127":[2,163],"129":[2,163],"130":[2,163],"132":[2,163],"133":[2,163],"136":[2,163],"137":[2,163],"138":[2,163],"139":[2,163],"140":[2,163],"141":[2,163],"142":[2,163],"143":[2,163],"144":[2,163],"145":[2,163],"146":[2,163],"147":[2,163],"148":[2,163],"149":[2,163],"150":[2,163],"151":[2,163],"152":[2,163],"153":[2,163],"154":[2,163],"155":[2,163],"156":[2,163],"157":[2,163],"158":[2,163],"159":[2,163],"160":[2,163],"161":[2,163]},{"1":[2,124],"4":[2,124],"28":[2,124],"29":[2,124],"48":[2,124],"56":[2,124],"59":[2,124],"77":[2,124],"82":[2,124],"92":[2,124],"97":[2,124],"105":[2,124],"107":[2,124],"108":[2,124],"109":[2,124],"112":[2,124],"116":[2,124],"117":[2,124],"118":[2,124],"125":[2,124],"126":[2,124],"127":[2,124],"129":[2,124],"130":[2,124],"132":[2,124],"133":[2,124],"136":[2,124],"137":[2,124],"138":[2,124],"139":[2,124],"140":[2,124],"141":[2,124],"142":[2,124],"143":[2,124],"144":[2,124],"145":[2,124],"146":[2,124],"147":[2,124],"148":[2,124],"149":[2,124],"150":[2,124],"151":[2,124],"152":[2,124],"153":[2,124],"154":[2,124],"155":[2,124],"156":[2,124],"157":[2,124],"158":[2,124],"159":[2,124],"160":[2,124],"161":[2,124]},{"1":[2,125],"4":[2,125],"28":[2,125],"29":[2,125],"48":[2,125],"56":[2,125],"59":[2,125],"77":[2,125],"82":[2,125],"92":[2,125],"97":[2,125],"101":[2,125],"105":[2,125],"107":[2,125],"108":[2,125],"109":[2,125],"112":[2,125],"116":[2,125],"117":[2,125],"118":[2,125],"125":[2,125],"126":[2,125],"127":[2,125],"129":[2,125],"130":[2,125],"132":[2,125],"133":[2,125],"136":[2,125],"137":[2,125],"138":[2,125],"139":[2,125],"140":[2,125],"141":[2,125],"142":[2,125],"143":[2,125],"144":[2,125],"145":[2,125],"146":[2,125],"147":[2,125],"148":[2,125],"149":[2,125],"150":[2,125],"151":[2,125],"152":[2,125],"153":[2,125],"154":[2,125],"155":[2,125],"156":[2,125],"157":[2,125],"158":[2,125],"159":[2,125],"160":[2,125],"161":[2,125]},{"8":352,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":353,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":354,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,153],"4":[2,153],"28":[2,153],"29":[2,153],"48":[2,153],"56":[2,153],"59":[2,153],"77":[2,153],"82":[2,153],"92":[2,153],"97":[2,153],"105":[2,153],"107":[2,153],"108":[2,153],"109":[2,153],"112":[2,153],"116":[2,153],"117":[2,153],"118":[2,153],"125":[2,153],"126":[2,153],"127":[2,153],"129":[2,153],"130":[2,153],"132":[2,153],"133":[2,153],"136":[2,153],"137":[2,153],"138":[2,153],"139":[2,153],"140":[2,153],"141":[2,153],"142":[2,153],"143":[2,153],"144":[2,153],"145":[2,153],"146":[2,153],"147":[2,153],"148":[2,153],"149":[2,153],"150":[2,153],"151":[2,153],"152":[2,153],"153":[2,153],"154":[2,153],"155":[2,153],"156":[2,153],"157":[2,153],"158":[2,153],"159":[2,153],"160":[2,153],"161":[2,153]},{"6":355,"28":[1,6]},{"29":[1,356]},{"4":[1,357],"29":[2,159],"121":[2,159],"123":[2,159]},{"8":358,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"4":[2,96],"29":[2,96],"30":195,"31":[1,85],"32":196,"33":[1,83],"34":[1,84],"46":309,"63":310,"85":359,"86":308,"95":[1,311]},{"1":[2,92],"4":[2,92],"28":[2,92],"29":[2,92],"48":[2,92],"56":[2,92],"59":[2,92],"77":[2,92],"82":[2,92],"92":[2,92],"97":[2,92],"105":[2,92],"107":[2,92],"108":[2,92],"109":[2,92],"112":[2,92],"116":[2,92],"117":[2,92],"118":[2,92],"125":[2,92],"126":[2,92],"127":[2,92],"129":[2,92],"130":[2,92],"132":[2,92],"133":[2,92],"136":[2,92],"137":[2,92],"138":[2,92],"139":[2,92],"140":[2,92],"141":[2,92],"142":[2,92],"143":[2,92],"144":[2,92],"145":[2,92],"146":[2,92],"147":[2,92],"148":[2,92],"149":[2,92],"150":[2,92],"151":[2,92],"152":[2,92],"153":[2,92],"154":[2,92],"155":[2,92],"156":[2,92],"157":[2,92],"158":[2,92],"159":[2,92],"160":[2,92],"161":[2,92]},{"30":195,"31":[1,85],"32":196,"33":[1,83],"34":[1,84],"46":309,"63":310,"86":360,"95":[1,311]},{"8":361,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"48":[1,111],"59":[1,128],"97":[1,362],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,61],"8":363,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":[2,61],"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"48":[2,61],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"56":[2,61],"59":[2,61],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"97":[2,61],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[2,61],"109":[2,61],"110":50,"111":[1,79],"112":[2,61],"116":[2,61],"117":[2,61],"119":[1,52],"124":47,"125":[2,61],"126":[2,61],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61],"161":[2,61]},{"4":[2,118],"28":[2,118],"29":[2,118],"48":[1,111],"56":[2,118],"59":[1,128],"92":[2,118],"97":[2,118],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[2,54],"28":[2,54],"29":[2,54],"55":364,"56":[1,271]},{"4":[2,88],"28":[2,88],"29":[2,88],"56":[2,88],"82":[2,88]},{"4":[2,54],"28":[2,54],"29":[2,54],"55":365,"56":[1,277]},{"48":[1,111],"59":[1,128],"77":[1,366],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"8":367,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"48":[2,61],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"59":[2,61],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"77":[2,61],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[2,61],"109":[2,61],"110":50,"111":[1,79],"112":[2,61],"116":[2,61],"117":[2,61],"119":[1,52],"124":47,"125":[2,61],"126":[2,61],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[2,61],"137":[2,61],"138":[2,61],"139":[2,61],"140":[2,61],"141":[2,61],"142":[2,61],"143":[2,61],"144":[2,61],"145":[2,61],"146":[2,61],"147":[2,61],"148":[2,61],"149":[2,61],"150":[2,61],"151":[2,61],"152":[2,61],"153":[2,61],"154":[2,61],"155":[2,61],"156":[2,61],"157":[2,61],"158":[2,61],"159":[2,61],"160":[2,61],"161":[2,61]},{"1":[2,148],"4":[2,148],"28":[2,148],"29":[2,148],"48":[1,111],"56":[2,148],"59":[1,128],"77":[2,148],"82":[2,148],"92":[2,148],"97":[2,148],"105":[2,148],"106":126,"107":[2,148],"108":[2,148],"109":[2,148],"112":[2,148],"116":[1,121],"117":[1,122],"118":[1,368],"125":[2,148],"126":[2,148],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,150],"4":[2,150],"28":[2,150],"29":[2,150],"48":[1,111],"56":[2,150],"59":[1,128],"77":[2,150],"82":[2,150],"92":[2,150],"97":[2,150],"105":[2,150],"106":126,"107":[2,150],"108":[1,369],"109":[2,150],"112":[2,150],"116":[1,121],"117":[1,122],"118":[2,150],"125":[2,150],"126":[2,150],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,149],"4":[2,149],"28":[2,149],"29":[2,149],"48":[1,111],"56":[2,149],"59":[1,128],"77":[2,149],"82":[2,149],"92":[2,149],"97":[2,149],"105":[2,149],"106":126,"107":[2,149],"108":[2,149],"109":[2,149],"112":[2,149],"116":[1,121],"117":[1,122],"118":[2,149],"125":[2,149],"126":[2,149],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"29":[1,370]},{"1":[2,156],"4":[2,156],"28":[2,156],"29":[2,156],"48":[2,156],"56":[2,156],"59":[2,156],"77":[2,156],"82":[2,156],"92":[2,156],"97":[2,156],"105":[2,156],"107":[2,156],"108":[2,156],"109":[2,156],"112":[2,156],"116":[2,156],"117":[2,156],"118":[2,156],"125":[2,156],"126":[2,156],"127":[2,156],"129":[2,156],"130":[2,156],"132":[2,156],"133":[2,156],"136":[2,156],"137":[2,156],"138":[2,156],"139":[2,156],"140":[2,156],"141":[2,156],"142":[2,156],"143":[2,156],"144":[2,156],"145":[2,156],"146":[2,156],"147":[2,156],"148":[2,156],"149":[2,156],"150":[2,156],"151":[2,156],"152":[2,156],"153":[2,156],"154":[2,156],"155":[2,156],"156":[2,156],"157":[2,156],"158":[2,156],"159":[2,156],"160":[2,156],"161":[2,156]},{"29":[2,160],"121":[2,160],"123":[2,160]},{"28":[2,121],"48":[1,111],"56":[2,121],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[1,342],"29":[1,371]},{"4":[2,98],"29":[2,98]},{"4":[2,95],"29":[2,95],"48":[1,111],"59":[1,128],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,110],"4":[2,110],"28":[2,110],"29":[2,110],"48":[2,110],"56":[2,110],"59":[2,110],"70":[2,110],"71":[2,110],"72":[2,110],"73":[2,110],"76":[2,110],"77":[2,110],"78":[2,110],"79":[2,110],"82":[2,110],"90":[2,110],"92":[2,110],"97":[2,110],"105":[2,110],"107":[2,110],"108":[2,110],"109":[2,110],"112":[2,110],"116":[2,110],"117":[2,110],"118":[2,110],"125":[2,110],"126":[2,110],"127":[2,110],"129":[2,110],"130":[2,110],"132":[2,110],"133":[2,110],"136":[2,110],"137":[2,110],"138":[2,110],"139":[2,110],"140":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"147":[2,110],"148":[2,110],"149":[2,110],"150":[2,110],"151":[2,110],"152":[2,110],"153":[2,110],"154":[2,110],"155":[2,110],"156":[2,110],"157":[2,110],"158":[2,110],"159":[2,110],"160":[2,110],"161":[2,110]},{"48":[1,111],"59":[1,128],"97":[1,372],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"4":[1,314],"28":[1,315],"29":[1,373]},{"4":[1,320],"28":[1,321],"29":[1,374]},{"1":[2,112],"4":[2,112],"28":[2,112],"29":[2,112],"45":[2,112],"48":[2,112],"56":[2,112],"59":[2,112],"70":[2,112],"71":[2,112],"72":[2,112],"73":[2,112],"76":[2,112],"77":[2,112],"78":[2,112],"79":[2,112],"82":[2,112],"84":[2,112],"90":[2,112],"92":[2,112],"97":[2,112],"105":[2,112],"107":[2,112],"108":[2,112],"109":[2,112],"112":[2,112],"116":[2,112],"117":[2,112],"118":[2,112],"125":[2,112],"126":[2,112],"127":[2,112],"129":[2,112],"130":[2,112],"132":[2,112],"133":[2,112],"136":[2,112],"137":[2,112],"138":[2,112],"139":[2,112],"140":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"147":[2,112],"148":[2,112],"149":[2,112],"150":[2,112],"151":[2,112],"152":[2,112],"153":[2,112],"154":[2,112],"155":[2,112],"156":[2,112],"157":[2,112],"158":[2,112],"159":[2,112],"160":[2,112],"161":[2,112]},{"48":[1,111],"59":[1,128],"77":[1,375],"106":126,"107":[1,77],"109":[1,78],"112":[1,127],"116":[1,121],"117":[1,122],"125":[1,124],"126":[1,125],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"8":376,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"8":377,"9":157,"10":23,"11":24,"12":[1,25],"13":[1,26],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"30":80,"31":[1,85],"32":59,"33":[1,83],"34":[1,84],"35":28,"36":[1,60],"37":[1,61],"38":[1,62],"39":[1,63],"40":[1,64],"41":[1,65],"42":[1,66],"43":[1,67],"44":27,"47":[1,55],"49":[1,36],"52":37,"53":[1,73],"54":[1,74],"60":53,"62":33,"63":81,"64":57,"65":58,"66":29,"67":30,"68":31,"69":[1,32],"80":[1,82],"83":[1,54],"87":[1,34],"88":35,"93":[1,72],"94":[1,70],"95":[1,71],"96":[1,69],"99":[1,48],"103":[1,56],"104":[1,68],"106":49,"107":[1,77],"109":[1,78],"110":50,"111":[1,79],"112":[1,51],"119":[1,52],"124":47,"125":[1,75],"126":[1,76],"127":[1,38],"128":[1,39],"129":[1,40],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46]},{"1":[2,154],"4":[2,154],"28":[2,154],"29":[2,154],"48":[2,154],"56":[2,154],"59":[2,154],"77":[2,154],"82":[2,154],"92":[2,154],"97":[2,154],"105":[2,154],"107":[2,154],"108":[2,154],"109":[2,154],"112":[2,154],"116":[2,154],"117":[2,154],"118":[2,154],"125":[2,154],"126":[2,154],"127":[2,154],"129":[2,154],"130":[2,154],"132":[2,154],"133":[2,154],"136":[2,154],"137":[2,154],"138":[2,154],"139":[2,154],"140":[2,154],"141":[2,154],"142":[2,154],"143":[2,154],"144":[2,154],"145":[2,154],"146":[2,154],"147":[2,154],"148":[2,154],"149":[2,154],"150":[2,154],"151":[2,154],"152":[2,154],"153":[2,154],"154":[2,154],"155":[2,154],"156":[2,154],"157":[2,154],"158":[2,154],"159":[2,154],"160":[2,154],"161":[2,154]},{"1":[2,93],"4":[2,93],"28":[2,93],"29":[2,93],"48":[2,93],"56":[2,93],"59":[2,93],"77":[2,93],"82":[2,93],"92":[2,93],"97":[2,93],"105":[2,93],"107":[2,93],"108":[2,93],"109":[2,93],"112":[2,93],"116":[2,93],"117":[2,93],"118":[2,93],"125":[2,93],"126":[2,93],"127":[2,93],"129":[2,93],"130":[2,93],"132":[2,93],"133":[2,93],"136":[2,93],"137":[2,93],"138":[2,93],"139":[2,93],"140":[2,93],"141":[2,93],"142":[2,93],"143":[2,93],"144":[2,93],"145":[2,93],"146":[2,93],"147":[2,93],"148":[2,93],"149":[2,93],"150":[2,93],"151":[2,93],"152":[2,93],"153":[2,93],"154":[2,93],"155":[2,93],"156":[2,93],"157":[2,93],"158":[2,93],"159":[2,93],"160":[2,93],"161":[2,93]},{"1":[2,111],"4":[2,111],"28":[2,111],"29":[2,111],"48":[2,111],"56":[2,111],"59":[2,111],"70":[2,111],"71":[2,111],"72":[2,111],"73":[2,111],"76":[2,111],"77":[2,111],"78":[2,111],"79":[2,111],"82":[2,111],"90":[2,111],"92":[2,111],"97":[2,111],"105":[2,111],"107":[2,111],"108":[2,111],"109":[2,111],"112":[2,111],"116":[2,111],"117":[2,111],"118":[2,111],"125":[2,111],"126":[2,111],"127":[2,111],"129":[2,111],"130":[2,111],"132":[2,111],"133":[2,111],"136":[2,111],"137":[2,111],"138":[2,111],"139":[2,111],"140":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"147":[2,111],"148":[2,111],"149":[2,111],"150":[2,111],"151":[2,111],"152":[2,111],"153":[2,111],"154":[2,111],"155":[2,111],"156":[2,111],"157":[2,111],"158":[2,111],"159":[2,111],"160":[2,111],"161":[2,111]},{"4":[2,119],"28":[2,119],"29":[2,119],"56":[2,119],"92":[2,119],"97":[2,119]},{"4":[2,89],"28":[2,89],"29":[2,89],"56":[2,89],"82":[2,89]},{"1":[2,113],"4":[2,113],"28":[2,113],"29":[2,113],"45":[2,113],"48":[2,113],"56":[2,113],"59":[2,113],"70":[2,113],"71":[2,113],"72":[2,113],"73":[2,113],"76":[2,113],"77":[2,113],"78":[2,113],"79":[2,113],"82":[2,113],"84":[2,113],"90":[2,113],"92":[2,113],"97":[2,113],"105":[2,113],"107":[2,113],"108":[2,113],"109":[2,113],"112":[2,113],"116":[2,113],"117":[2,113],"118":[2,113],"125":[2,113],"126":[2,113],"127":[2,113],"129":[2,113],"130":[2,113],"132":[2,113],"133":[2,113],"136":[2,113],"137":[2,113],"138":[2,113],"139":[2,113],"140":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"147":[2,113],"148":[2,113],"149":[2,113],"150":[2,113],"151":[2,113],"152":[2,113],"153":[2,113],"154":[2,113],"155":[2,113],"156":[2,113],"157":[2,113],"158":[2,113],"159":[2,113],"160":[2,113],"161":[2,113]},{"1":[2,151],"4":[2,151],"28":[2,151],"29":[2,151],"48":[1,111],"56":[2,151],"59":[1,128],"77":[2,151],"82":[2,151],"92":[2,151],"97":[2,151],"105":[2,151],"106":126,"107":[2,151],"108":[2,151],"109":[2,151],"112":[2,151],"116":[1,121],"117":[1,122],"118":[2,151],"125":[2,151],"126":[2,151],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]},{"1":[2,152],"4":[2,152],"28":[2,152],"29":[2,152],"48":[1,111],"56":[2,152],"59":[1,128],"77":[2,152],"82":[2,152],"92":[2,152],"97":[2,152],"105":[2,152],"106":126,"107":[2,152],"108":[2,152],"109":[2,152],"112":[2,152],"116":[1,121],"117":[1,122],"118":[2,152],"125":[2,152],"126":[2,152],"127":[1,123],"129":[1,96],"130":[1,95],"132":[1,90],"133":[1,91],"136":[1,92],"137":[1,93],"138":[1,94],"139":[1,97],"140":[1,98],"141":[1,99],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120]}],defaultActions:{"2":[2,2],"73":[2,52],"74":[2,53],"87":[2,4]},parseError:function parseError(str,hash){throw new Error(str)},parse:function parse(input){var self=this,stack=[0],vstack=[null],table=this.table,yytext="",yylineno=0,yyleng=0,shifts=0,reductions=0,recovering=0,TERROR=2,EOF=1;this.lexer.setInput(input);this.lexer.yy=this.yy;this.yy.lexer=this.lexer;var parseError=this.yy.parseError=typeof this.yy.parseError=="function"?this.yy.parseError:this.parseError;function popStack(n){stack.length=stack.length-2*n;vstack.length=vstack.length-n}function checkRecover(st){for(var p in table[st]){if(p==TERROR){return true}}return false}function lex(){var token;token=self.lexer.lex()||1;if(typeof token!=="number"){token=self.symbols_[token]}return token}var symbol,preErrorSymbol,state,action,a,r,yyval={},p,len,newState,expected,recovered=false;while(true){state=stack[stack.length-1];if(this.defaultActions[state]){action=this.defaultActions[state]}else{if(symbol==null){symbol=lex()}action=table[state]&&table[state][symbol]}if(typeof action==="undefined"||!action.length||!action[0]){if(!recovering){expected=[];for(p in table[state]){if(this.terminals_[p]&&p>2){expected.push("'"+this.terminals_[p]+"'")}}if(this.lexer.showPosition){parseError.call(this,"Parse error on line "+(yylineno+1)+":\n"+this.lexer.showPosition()+"\nExpecting "+expected.join(", "),{text:this.lexer.match,token:this.terminals_[symbol]||symbol,line:this.lexer.yylineno,expected:expected})}else{parseError.call(this,"Parse error on line "+(yylineno+1)+": Unexpected '"+this.terminals_[symbol]+"'",{text:this.lexer.match,token:this.terminals_[symbol]||symbol,line:this.lexer.yylineno,expected:expected})}}if(recovering==3){if(symbol==EOF){throw"Parsing halted."}yyleng=this.lexer.yyleng;yytext=this.lexer.yytext;yylineno=this.lexer.yylineno;symbol=lex()}while(1){if(checkRecover(state)){break}if(state==0){throw"Parsing halted."}popStack(1);state=stack[stack.length-1]}preErrorSymbol=symbol;symbol=TERROR;state=stack[stack.length-1];action=table[state]&&table[state][TERROR];recovering=3}if(action[0] instanceof Array&&action.length>1){throw new Error("Parse Error: multiple actions possible at state: "+state+", token: "+symbol)}a=action;switch(a[0]){case 1:shifts++;stack.push(symbol);vstack.push(this.lexer.yytext);stack.push(a[1]);symbol=null;if(!preErrorSymbol){yyleng=this.lexer.yyleng;yytext=this.lexer.yytext;yylineno=this.lexer.yylineno;if(recovering>0){recovering--}}else{symbol=preErrorSymbol;preErrorSymbol=null}break;case 2:reductions++;len=this.productions_[a[1]][1];yyval.$=vstack[vstack.length-len];r=this.performAction.call(yyval,yytext,yyleng,yylineno,this.yy,a[1],vstack);if(typeof r!=="undefined"){return r}if(len){stack=stack.slice(0,-1*len*2);vstack=vstack.slice(0,-1*len)}stack.push(this.productions_[a[1]][0]);vstack.push(yyval.$);newState=table[stack[stack.length-2]][stack[stack.length-1]];stack.push(newState);break;case 3:this.reductionCount=reductions;this.shiftCount=shifts;return true}}return true}};return parser})();if(typeof require!=="undefined"){exports.parser=parser;exports.parse=function(){return parser.parse.apply(parser,arguments)};exports.main=function commonjsMain(args){if(!args[1]){throw new Error("Usage: "+args[0]+" FILE")}if(typeof process!=="undefined"){var source=require("fs").readFileSync(require("path").join(process.cwd(),args[1]),"utf8")}else{var cwd=require("file").path(require("file").cwd());var source=cwd.join(args[1]).read({charset:"utf-8"})}return exports.parser.parse(source)};if(require.main===module){exports.main(typeof process!=="undefined"?process.argv.slice(1):require("system").args)}}(function(){var Scope;var __hasProp=Object.prototype.hasOwnProperty;if(!(typeof process!=="undefined"&&process!==null)){this.exports=this}exports.Scope=(function(){Scope=function(parent,expressions,method){var _a;_a=[parent,expressions,method];this.parent=_a[0];this.expressions=_a[1];this.method=_a[2];this.variables={};if(this.parent){this.tempVar=this.parent.tempVar}else{Scope.root=this;this.tempVar="_a"}return this};Scope.root=null;Scope.prototype.find=function(name){if(this.check(name)){return true}this.variables[name]="var";return false};Scope.prototype.any=function(fn){var _a,k,v;_a=this.variables;for(v in _a){if(__hasProp.call(_a,v)){k=_a[v];if(fn(v,k)){return true}}}return false};Scope.prototype.parameter=function(name){this.variables[name]="param";return this.variables[name]};Scope.prototype.check=function(name){if(this.variables.hasOwnProperty(name)){return true}return !!(this.parent&&this.parent.check(name))};Scope.prototype.freeVariable=function(){var ordinal;while(this.check(this.tempVar)){ordinal=1+parseInt(this.tempVar.substr(1),36);this.tempVar="_"+ordinal.toString(36).replace(/\d/g,"a")}this.variables[this.tempVar]="var";return this.tempVar};Scope.prototype.assign=function(name,value){this.variables[name]={value:value,assigned:true};return this.variables[name]};Scope.prototype.hasDeclarations=function(body){return body===this.expressions&&this.any(function(k,val){return val==="var"})};Scope.prototype.hasAssignments=function(body){return body===this.expressions&&this.any(function(k,val){return val.assigned})};Scope.prototype.declaredVariables=function(){var _a,_b,key,val;return(function(){_a=[];_b=this.variables;for(key in _b){if(__hasProp.call(_b,key)){val=_b[key];val==="var"?_a.push(key):null}}return _a}).call(this).sort()};Scope.prototype.assignedVariables=function(){var _a,_b,key,val;_a=[];_b=this.variables;for(key in _b){if(__hasProp.call(_b,key)){val=_b[key];val.assigned?_a.push(""+key+" = "+val.value):null}}return _a};Scope.prototype.compiledDeclarations=function(){return this.declaredVariables().join(", ")};Scope.prototype.compiledAssignments=function(){return this.assignedVariables().join(", ")};return Scope}).call(this)})();(function(){var AccessorNode,ArrayNode,AssignNode,BaseNode,CallNode,ClassNode,ClosureNode,CodeNode,DOUBLE_PARENS,ExistenceNode,Expressions,ExtendsNode,ForNode,IDENTIFIER,IS_STRING,IfNode,InNode,IndexNode,LiteralNode,NUMBER,ObjectNode,OpNode,ParentheticalNode,PushNode,RangeNode,ReturnNode,Scope,SliceNode,SplatNode,TAB,TRAILING_WHITESPACE,ThrowNode,TryNode,UTILITIES,ValueNode,WhileNode,_a,compact,del,flatten,helpers,include,indexOf,literal,merge,starts,utility;var __extends=function(child,parent){var ctor=function(){};ctor.prototype=parent.prototype;child.__superClass__=parent.prototype;child.prototype=new ctor();child.prototype.constructor=child};if(typeof process!=="undefined"&&process!==null){Scope=require("./scope").Scope;helpers=require("./helpers").helpers}else{this.exports=this;helpers=this.helpers;Scope=this.Scope}_a=helpers;compact=_a.compact;flatten=_a.flatten;merge=_a.merge;del=_a.del;include=_a.include;indexOf=_a.indexOf;starts=_a.starts;exports.BaseNode=(function(){BaseNode=function(){};BaseNode.prototype.compile=function(o){var closure,top;this.options=merge(o||{});this.tab=o.indent;if(!(this instanceof ValueNode||this instanceof CallNode)){del(this.options,"operation");if(!(this instanceof AccessorNode||this instanceof IndexNode)){del(this.options,"chainRoot")}}top=this.topSensitive()?this.options.top:del(this.options,"top");closure=this.isStatement()&&!this.isPureStatement()&&!top&&!this.options.asStatement&&!this.containsPureStatement();if(closure){return this.compileClosure(this.options)}else{return this.compileNode(this.options)}};BaseNode.prototype.compileClosure=function(o){this.tab=o.indent;o.sharedScope=o.scope;return ClosureNode.wrap(this).compile(o)};BaseNode.prototype.compileReference=function(o,options){var compiled,pair,reference;pair=(function(){if(!(this instanceof CallNode||this instanceof ValueNode&&(!(this.base instanceof LiteralNode)||this.hasProperties()))){return[this,this]}else{reference=literal(o.scope.freeVariable());compiled=new AssignNode(reference,this);return[compiled,reference]}}).call(this);if(!(options&&options.precompile)){return pair}return[pair[0].compile(o),pair[1].compile(o)]};BaseNode.prototype.idt=function(tabs){var idt,num;idt=this.tab||"";num=(tabs||0)+1;while(num-=1){idt+=TAB}return idt};BaseNode.prototype.makeReturn=function(){return new ReturnNode(this)};BaseNode.prototype.contains=function(block){var contains;contains=false;this.traverseChildren(false,function(node){if(block(node)){contains=true;return false}});return contains};BaseNode.prototype.containsType=function(type){return this instanceof type||this.contains(function(n){return n instanceof type})};BaseNode.prototype.containsPureStatement=function(){return this.isPureStatement()||this.contains(function(n){return n.isPureStatement()})};BaseNode.prototype.traverse=function(block){return this.traverseChildren(true,block)};BaseNode.prototype.toString=function(idt){var _b,_c,_d,_e,child;idt=idt||"";return"\n"+idt+this["class"]+(function(){_b=[];_d=this.collectChildren();for(_c=0,_e=_d.length;_c<_e;_c++){child=_d[_c];_b.push(child.toString(idt+TAB))}return _b}).call(this).join("")};BaseNode.prototype.eachChild=function(func){var _b,_c,_d,_e,_f,_g,_h,attr,child;if(!(this.children)){return null}_b=[];_d=this.children;for(_c=0,_e=_d.length;_c<_e;_c++){attr=_d[_c];if(this[attr]){_g=flatten([this[attr]]);for(_f=0,_h=_g.length;_f<_h;_f++){child=_g[_f];if(func(child)===false){return null}}}}return _b};BaseNode.prototype.collectChildren=function(){var nodes;nodes=[];this.eachChild(function(node){return nodes.push(node)});return nodes};BaseNode.prototype.traverseChildren=function(crossScope,func){return this.eachChild(function(child){func.apply(this,arguments);if(child instanceof BaseNode){return child.traverseChildren(crossScope,func)}})};BaseNode.prototype["class"]="BaseNode";BaseNode.prototype.children=[];BaseNode.prototype.unwrap=function(){return this};BaseNode.prototype.isStatement=function(){return false};BaseNode.prototype.isPureStatement=function(){return false};BaseNode.prototype.topSensitive=function(){return false};return BaseNode})();exports.Expressions=(function(){Expressions=function(nodes){this.expressions=compact(flatten(nodes||[]));return this};__extends(Expressions,BaseNode);Expressions.prototype["class"]="Expressions";Expressions.prototype.children=["expressions"];Expressions.prototype.isStatement=function(){return true};Expressions.prototype.push=function(node){this.expressions.push(node);return this};Expressions.prototype.unshift=function(node){this.expressions.unshift(node);return this};Expressions.prototype.unwrap=function(){if(this.expressions.length===1){return this.expressions[0]}else{return this}};Expressions.prototype.empty=function(){return this.expressions.length===0};Expressions.prototype.makeReturn=function(){var idx,last;idx=this.expressions.length-1;last=this.expressions[idx];if(!last||last instanceof ReturnNode){return this}this.expressions[idx]=last.makeReturn();return this};Expressions.prototype.compile=function(o){o=o||{};if(o.scope){return Expressions.__superClass__.compile.call(this,o)}else{return this.compileRoot(o)}};Expressions.prototype.compileNode=function(o){var _b,_c,_d,_e,node;return(function(){_b=[];_d=this.expressions;for(_c=0,_e=_d.length;_c<_e;_c++){node=_d[_c];_b.push(this.compileExpression(node,merge(o)))}return _b}).call(this).join("\n")};Expressions.prototype.compileRoot=function(o){var code;o.indent=(this.tab=o.noWrap?"":TAB);o.scope=new Scope(null,this,null);code=o.globals?this.compileNode(o):this.compileWithDeclarations(o);code=code.replace(TRAILING_WHITESPACE,"");code=code.replace(DOUBLE_PARENS,"($1)");if(o.noWrap){return code}else{return"(function(){\n"+code+"\n})();\n"}};Expressions.prototype.compileWithDeclarations=function(o){var code;code=this.compileNode(o);if(o.scope.hasAssignments(this)){code=(""+(this.tab)+"var "+(o.scope.compiledAssignments())+";\n"+code)}if(o.scope.hasDeclarations(this)){code=(""+(this.tab)+"var "+(o.scope.compiledDeclarations())+";\n"+code)}return code};Expressions.prototype.compileExpression=function(node,o){var compiledNode;this.tab=o.indent;compiledNode=node.compile(merge(o,{top:true}));if(node.isStatement()){return compiledNode}else{return""+(this.idt())+compiledNode+";"}};return Expressions})();Expressions.wrap=function(nodes){if(nodes.length===1&&nodes[0] instanceof Expressions){return nodes[0]}return new Expressions(nodes)};exports.LiteralNode=(function(){LiteralNode=function(value){this.value=value;return this};__extends(LiteralNode,BaseNode);LiteralNode.prototype["class"]="LiteralNode";LiteralNode.prototype.isStatement=function(){return this.value==="break"||this.value==="continue"};LiteralNode.prototype.isPureStatement=LiteralNode.prototype.isStatement;LiteralNode.prototype.compileNode=function(o){var end,idt;idt=this.isStatement()?this.idt():"";end=this.isStatement()?";":"";return""+idt+this.value+end};LiteralNode.prototype.toString=function(idt){return' "'+this.value+'"'};return LiteralNode})();exports.ReturnNode=(function(){ReturnNode=function(expression){this.expression=expression;return this};__extends(ReturnNode,BaseNode);ReturnNode.prototype["class"]="ReturnNode";ReturnNode.prototype.isStatement=function(){return true};ReturnNode.prototype.isPureStatement=function(){return true};ReturnNode.prototype.children=["expression"];ReturnNode.prototype.topSensitive=function(){return true};ReturnNode.prototype.makeReturn=function(){return this};ReturnNode.prototype.compileNode=function(o){var expr;expr=this.expression.makeReturn();if(!(expr instanceof ReturnNode)){return expr.compile(o)}del(o,"top");if(this.expression.isStatement()){o.asStatement=true}return""+(this.tab)+"return "+(this.expression.compile(o))+";"};return ReturnNode})();exports.ValueNode=(function(){ValueNode=function(base,properties){this.base=base;this.properties=(properties||[]);return this};__extends(ValueNode,BaseNode);ValueNode.prototype.SOAK=" == undefined ? undefined : ";ValueNode.prototype["class"]="ValueNode";ValueNode.prototype.children=["base","properties"];ValueNode.prototype.push=function(prop){this.properties.push(prop);return this};ValueNode.prototype.hasProperties=function(){return !!this.properties.length};ValueNode.prototype.isArray=function(){return this.base instanceof ArrayNode&&!this.hasProperties()};ValueNode.prototype.isObject=function(){return this.base instanceof ObjectNode&&!this.hasProperties()};ValueNode.prototype.isSplice=function(){return this.hasProperties()&&this.properties[this.properties.length-1] instanceof SliceNode};ValueNode.prototype.makeReturn=function(){if(this.hasProperties()){return ValueNode.__superClass__.makeReturn.call(this)}else{return this.base.makeReturn()}};ValueNode.prototype.unwrap=function(){if(this.properties.length){return this}else{return this.base}};ValueNode.prototype.isStatement=function(){return this.base.isStatement&&this.base.isStatement()&&!this.hasProperties()};ValueNode.prototype.isNumber=function(){return this.base instanceof LiteralNode&&this.base.value.match(NUMBER)};ValueNode.prototype.isStart=function(o){var node;if(this===o.chainRoot&&this.properties[0] instanceof AccessorNode){return true}node=o.chainRoot.base||o.chainRoot.variable;while(node instanceof CallNode){node=node.variable}return node===this};ValueNode.prototype.compileNode=function(o){var _b,_c,baseline,complete,i,only,op,part,prop,props,temp;only=del(o,"onlyFirst");op=del(o,"operation");props=only?this.properties.slice(0,this.properties.length-1):this.properties;o.chainRoot=o.chainRoot||this;baseline=this.base.compile(o);if(this.hasProperties()&&(this.base instanceof ObjectNode||this.isNumber())){baseline=("("+baseline+")")}complete=(this.last=baseline);_b=props;for(i=0,_c=_b.length;i<_c;i++){prop=_b[i];this.source=baseline;if(prop.soakNode){if(this.base instanceof CallNode&&i===0){temp=o.scope.freeVariable();complete=("("+(baseline=temp)+" = ("+complete+"))")}if(i===0&&this.isStart(o)){complete=("typeof "+complete+' === "undefined" || '+baseline)}complete+=this.SOAK+(baseline+=prop.compile(o))}else{part=prop.compile(o);baseline+=part;complete+=part;this.last=part}}if(op&&this.wrapped){return"("+complete+")"}else{return complete}};return ValueNode})();exports.CallNode=(function(){CallNode=function(variable,args){this.isNew=false;this.isSuper=variable==="super";this.variable=this.isSuper?null:variable;this.args=(args||[]);this.compileSplatArguments=function(o){return SplatNode.compileMixedArray.call(this,this.args,o)};return this};__extends(CallNode,BaseNode);CallNode.prototype["class"]="CallNode";CallNode.prototype.children=["variable","args"];CallNode.prototype.newInstance=function(){this.isNew=true;return this};CallNode.prototype.prefix=function(){if(this.isNew){return"new "}else{return""}};CallNode.prototype.superReference=function(o){var meth,methname;methname=o.scope.method.name;meth=(function(){if(o.scope.method.proto){return""+(o.scope.method.proto)+".__superClass__."+methname}else{if(methname){return""+(methname)+".__superClass__.constructor"}else{throw new Error("cannot call super on an anonymous function.")}}})();return meth};CallNode.prototype.compileNode=function(o){var _b,_c,_d,_e,_f,_g,_h,arg,args,compilation;if(!(o.chainRoot)){o.chainRoot=this}_c=this.args;for(_b=0,_d=_c.length;_b<_d;_b++){arg=_c[_b];arg instanceof SplatNode?(compilation=this.compileSplat(o)):null}if(!(compilation)){args=(function(){_e=[];_g=this.args;for(_f=0,_h=_g.length;_f<_h;_f++){arg=_g[_f];_e.push(arg.compile(o))}return _e}).call(this).join(", ");compilation=this.isSuper?this.compileSuper(args,o):(""+(this.prefix())+(this.variable.compile(o))+"("+args+")")}if(o.operation&&this.wrapped){return"("+compilation+")"}else{return compilation}};CallNode.prototype.compileSuper=function(args,o){return""+(this.superReference(o))+".call(this"+(args.length?", ":"")+args+")"};CallNode.prototype.compileSplat=function(o){var meth,obj,temp;meth=this.variable?this.variable.compile(o):this.superReference(o);obj=this.variable&&this.variable.source||"this";if(obj.match(/\(/)){temp=o.scope.freeVariable();obj=temp;meth=("("+temp+" = "+(this.variable.source)+")"+(this.variable.last))}return""+(this.prefix())+(meth)+".apply("+obj+", "+(this.compileSplatArguments(o))+")"};return CallNode})();exports.ExtendsNode=(function(){ExtendsNode=function(child,parent){this.child=child;this.parent=parent;return this};__extends(ExtendsNode,BaseNode);ExtendsNode.prototype["class"]="ExtendsNode";ExtendsNode.prototype.children=["child","parent"];ExtendsNode.prototype.compileNode=function(o){var ref;ref=new ValueNode(literal(utility("extends")));return(new CallNode(ref,[this.child,this.parent])).compile(o)};return ExtendsNode})();exports.AccessorNode=(function(){AccessorNode=function(name,tag){this.name=name;this.prototype=tag==="prototype"?".prototype":"";this.soakNode=tag==="soak";return this};__extends(AccessorNode,BaseNode);AccessorNode.prototype["class"]="AccessorNode";AccessorNode.prototype.children=["name"];AccessorNode.prototype.compileNode=function(o){var name,namePart;name=this.name.compile(o);o.chainRoot.wrapped=o.chainRoot.wrapped||this.soakNode;namePart=name.match(IS_STRING)?("["+name+"]"):("."+name);return this.prototype+namePart};return AccessorNode})();exports.IndexNode=(function(){IndexNode=function(index){this.index=index;return this};__extends(IndexNode,BaseNode);IndexNode.prototype["class"]="IndexNode";IndexNode.prototype.children=["index"];IndexNode.prototype.compileNode=function(o){var idx,prefix;o.chainRoot.wrapped=o.chainRoot.wrapped||this.soakNode;idx=this.index.compile(o);prefix=this.proto?".prototype":"";return""+prefix+"["+idx+"]"};return IndexNode})();exports.RangeNode=(function(){RangeNode=function(from,to,exclusive){this.from=from;this.to=to;this.exclusive=!!exclusive;return this};__extends(RangeNode,BaseNode);RangeNode.prototype["class"]="RangeNode";RangeNode.prototype.children=["from","to"];RangeNode.prototype.compileVariables=function(o){var _b,_c,parts;_b=this.from.compileReference(o);this.from=_b[0];this.fromVar=_b[1];_c=this.to.compileReference(o);this.to=_c[0];this.toVar=_c[1];parts=[];if(this.from!==this.fromVar){parts.push(this.from.compile(o))}if(this.to!==this.toVar){parts.push(this.to.compile(o))}if(parts.length){return""+(parts.join("; "))+";\n"+o.indent}else{return""}};RangeNode.prototype.compileNode=function(o){var equals,idx,op,step,vars;if(!(o.index)){return this.compileArray(o)}idx=del(o,"index");step=del(o,"step");vars=(""+idx+" = "+(this.fromVar.compile(o)));step=step?step.compile(o):"1";equals=this.exclusive?"":"=";op=starts(step,"-")?(">"+equals):("<"+equals);return""+vars+"; "+(idx)+" "+op+" "+(this.toVar.compile(o))+"; "+idx+" += "+step};RangeNode.prototype.compileArray=function(o){var body,clause,equals,from,idt,post,pre,to,vars;idt=this.idt(1);vars=this.compileVariables(merge(o,{indent:idt}));equals=this.exclusive?"":"=";from=this.fromVar.compile(o);to=this.toVar.compile(o);clause=(""+from+" <= "+to+" ?");pre=("\n"+(idt)+"a = [];"+(vars));body=("var i = "+from+"; ("+clause+" i <"+equals+" "+to+" : i >"+equals+" "+to+"); ("+clause+" i += 1 : i -= 1)");post=("a.push(i);\n"+(idt)+"return a;\n"+o.indent);return"(function(){"+(pre)+"for ("+body+") "+post+"}).call(this)"};return RangeNode})();exports.SliceNode=(function(){SliceNode=function(range){this.range=range;return this};__extends(SliceNode,BaseNode);SliceNode.prototype["class"]="SliceNode";SliceNode.prototype.children=["range"];SliceNode.prototype.compileNode=function(o){var from,plusPart,to;from=this.range.from.compile(o);to=this.range.to.compile(o);plusPart=this.range.exclusive?"":" + 1";return".slice("+from+", "+to+plusPart+")"};return SliceNode})();exports.ObjectNode=(function(){ObjectNode=function(props){this.objects=(this.properties=props||[]);return this};__extends(ObjectNode,BaseNode);ObjectNode.prototype["class"]="ObjectNode";ObjectNode.prototype.children=["properties"];ObjectNode.prototype.compileNode=function(o){var _b,_c,_d,i,inner,join,last,prop,props;o.indent=this.idt(1);last=this.properties.length-1;props=(function(){_b=[];_c=this.properties;for(i=0,_d=_c.length;i<_d;i++){prop=_c[i];_b.push((function(){join=i===last?"":",\n";if(!(prop instanceof AssignNode)){prop=new AssignNode(prop,prop,"object")}return this.idt(1)+prop.compile(o)+join}).call(this))}return _b}).call(this);props=props.join("");inner=props?"\n"+props+"\n"+this.idt():"";return"{"+inner+"}"};return ObjectNode})();exports.ArrayNode=(function(){ArrayNode=function(objects){this.objects=objects||[];this.compileSplatLiteral=function(o){return SplatNode.compileMixedArray.call(this,this.objects,o)};return this};__extends(ArrayNode,BaseNode);ArrayNode.prototype["class"]="ArrayNode";ArrayNode.prototype.children=["objects"];ArrayNode.prototype.compileNode=function(o){var _b,_c,code,i,obj,objects;o.indent=this.idt(1);objects=[];_b=this.objects;for(i=0,_c=_b.length;i<_c;i++){obj=_b[i];code=obj.compile(o);if(obj instanceof SplatNode){return this.compileSplatLiteral(this.objects,o)}else{if(i===this.objects.length-1){objects.push(code)}else{objects.push(""+code+", ")}}}objects=objects.join("");if(indexOf(objects,"\n")>=0){return"[\n"+(this.idt(1))+objects+"\n"+this.tab+"]"}else{return"["+objects+"]"}};return ArrayNode})();exports.ClassNode=(function(){ClassNode=function(variable,parent,props){this.variable=variable;this.parent=parent;this.properties=props||[];this.returns=false;return this};__extends(ClassNode,BaseNode);ClassNode.prototype["class"]="ClassNode";ClassNode.prototype.children=["variable","parent","properties"];ClassNode.prototype.isStatement=function(){return true};ClassNode.prototype.makeReturn=function(){this.returns=true;return this};ClassNode.prototype.compileNode=function(o){var _b,_c,_d,_e,access,applied,className,constScope,construct,constructor,extension,func,me,pname,prop,props,pvar,returns,val;extension=this.parent&&new ExtendsNode(this.variable,this.parent);props=new Expressions();o.top=true;me=null;className=this.variable.compile(o);constScope=null;if(this.parent){applied=new ValueNode(this.parent,[new AccessorNode(literal("apply"))]);constructor=new CodeNode([],new Expressions([new CallNode(applied,[literal("this"),literal("arguments")])]))}else{constructor=new CodeNode()}_c=this.properties;for(_b=0,_d=_c.length;_b<_d;_b++){prop=_c[_b];_e=[prop.variable,prop.value];pvar=_e[0];func=_e[1];if(pvar&&pvar.base.value==="constructor"&&func instanceof CodeNode){func.name=className;func.body.push(new ReturnNode(literal("this")));this.variable=new ValueNode(this.variable);this.variable.namespaced=include(func.name,".");constructor=func;continue}if(func instanceof CodeNode&&func.bound){func.bound=false;constScope=constScope||new Scope(o.scope,constructor.body,constructor);me=me||constScope.freeVariable();pname=pvar.compile(o);if(constructor.body.empty()){constructor.body.push(new ReturnNode(literal("this")))}constructor.body.unshift(literal(("this."+(pname)+" = function(){ return "+(className)+".prototype."+(pname)+".apply("+me+", arguments); }")))}if(pvar){access=prop.context==="this"?pvar.base.properties[0]:new AccessorNode(pvar,"prototype");val=new ValueNode(this.variable,[access]);prop=new AssignNode(val,func)}props.push(prop)}if(me){constructor.body.unshift(literal(""+me+" = this"))}construct=this.idt()+(new AssignNode(this.variable,constructor)).compile(merge(o,{sharedScope:constScope}))+";\n";props=props.empty()?"":props.compile(o)+"\n";extension=extension?this.idt()+extension.compile(o)+";\n":"";returns=this.returns?new ReturnNode(this.variable).compile(o):"";return""+construct+extension+props+returns};return ClassNode})();exports.AssignNode=(function(){AssignNode=function(variable,value,context){this.variable=variable;this.value=value;this.context=context;return this};__extends(AssignNode,BaseNode);AssignNode.prototype.PROTO_ASSIGN=/^(\S+)\.prototype/;AssignNode.prototype.LEADING_DOT=/^\.(prototype\.)?/;AssignNode.prototype["class"]="AssignNode";AssignNode.prototype.children=["variable","value"];AssignNode.prototype.topSensitive=function(){return true};AssignNode.prototype.isValue=function(){return this.variable instanceof ValueNode};AssignNode.prototype.makeReturn=function(){return new Expressions([this,new ReturnNode(this.variable)])};AssignNode.prototype.isStatement=function(){return this.isValue()&&(this.variable.isArray()||this.variable.isObject())};AssignNode.prototype.compileNode=function(o){var last,match,name,proto,stmt,top,val;top=del(o,"top");if(this.isStatement()){return this.compilePatternMatch(o)}if(this.isValue()&&this.variable.isSplice()){return this.compileSplice(o)}stmt=del(o,"asStatement");name=this.variable.compile(o);last=this.isValue()?this.variable.last.replace(this.LEADING_DOT,""):name;match=name.match(this.PROTO_ASSIGN);proto=match&&match[1];if(this.value instanceof CodeNode){if(last.match(IDENTIFIER)){this.value.name=last}if(proto){this.value.proto=proto}}val=this.value.compile(o);if(this.context==="object"){return(""+name+": "+val)}if(!(this.isValue()&&(this.variable.hasProperties()||this.variable.namespaced))){o.scope.find(name)}val=(""+name+" = "+val);if(stmt){return(""+this.tab+val+";")}if(top){return val}else{return"("+val+")"}};AssignNode.prototype.compilePatternMatch=function(o){var _b,_c,_d,accessClass,assigns,code,i,idx,isString,obj,oindex,olength,splat,val,valVar,value;valVar=o.scope.freeVariable();value=this.value.isStatement()?ClosureNode.wrap(this.value):this.value;assigns=[(""+this.tab+valVar+" = "+(value.compile(o))+";")];o.top=true;o.asStatement=true;splat=false;_b=this.variable.base.objects;for(i=0,_c=_b.length;i<_c;i++){obj=_b[i];idx=i;if(this.variable.isObject()){if(obj instanceof AssignNode){_d=[obj.value,obj.variable.base];obj=_d[0];idx=_d[1]}else{idx=obj}}if(!(obj instanceof ValueNode||obj instanceof SplatNode)){throw new Error("pattern matching must use only identifiers on the left-hand side.")}isString=idx.value&&idx.value.match(IS_STRING);accessClass=isString||this.variable.isArray()?IndexNode:AccessorNode;if(obj instanceof SplatNode&&!splat){val=literal(obj.compileValue(o,valVar,(oindex=indexOf(this.variable.base.objects,obj)),(olength=this.variable.base.objects.length)-oindex-1));splat=true}else{if(typeof idx!=="object"){idx=literal(splat?(""+(valVar)+".length - "+(olength-idx)):idx)}val=new ValueNode(literal(valVar),[new accessClass(idx)])}assigns.push(new AssignNode(obj,val).compile(o))}code=assigns.join("\n");return code};AssignNode.prototype.compileSplice=function(o){var from,l,name,plus,range,to,val;name=this.variable.compile(merge(o,{onlyFirst:true}));l=this.variable.properties.length;range=this.variable.properties[l-1].range;plus=range.exclusive?"":" + 1";from=range.from.compile(o);to=range.to.compile(o)+" - "+from+plus;val=this.value.compile(o);return""+(name)+".splice.apply("+name+", ["+from+", "+to+"].concat("+val+"))"};return AssignNode})();exports.CodeNode=(function(){CodeNode=function(params,body,tag){this.params=params||[];this.body=body||new Expressions();this.bound=tag==="boundfunc";return this};__extends(CodeNode,BaseNode);CodeNode.prototype["class"]="CodeNode";CodeNode.prototype.children=["params","body"];CodeNode.prototype.compileNode=function(o){var _b,_c,_d,_e,_f,_g,_h,_i,_j,_k,code,func,i,inner,param,params,sharedScope,splat,top;sharedScope=del(o,"sharedScope");top=del(o,"top");o.scope=sharedScope||new Scope(o.scope,this.body,this);o.top=true;o.indent=this.idt(this.bound?2:1);del(o,"noWrap");del(o,"globals");i=0;splat=undefined;params=[];_c=this.params;for(_b=0,_d=_c.length;_b<_d;_b++){param=_c[_b];if(param instanceof SplatNode&&!(typeof splat!=="undefined"&&splat!==null)){splat=param;splat.index=i;splat.trailings=[];splat.arglength=this.params.length;this.body.unshift(splat)}else{if(typeof splat!=="undefined"&&splat!==null){splat.trailings.push(param)}else{params.push(param)}}i+=1}params=(function(){_e=[];_g=params;for(_f=0,_h=_g.length;_f<_h;_f++){param=_g[_f];_e.push(param.compile(o))}return _e})();this.body.makeReturn();_j=params;for(_i=0,_k=_j.length;_i<_k;_i++){param=_j[_i];(o.scope.parameter(param))}code=this.body.expressions.length?("\n"+(this.body.compileWithDeclarations(o))+"\n"):"";func=("function("+(params.join(", "))+") {"+code+(this.idt(this.bound?1:0))+"}");if(top&&!this.bound){func=("("+func+")")}if(!(this.bound)){return func}inner=("(function() {\n"+(this.idt(2))+"return __func.apply(__this, arguments);\n"+(this.idt(1))+"});");return"(function(__this) {\n"+(this.idt(1))+"var __func = "+func+";\n"+(this.idt(1))+"return "+inner+"\n"+this.tab+"})(this)"};CodeNode.prototype.topSensitive=function(){return true};CodeNode.prototype.traverseChildren=function(crossScope,func){if(crossScope){return CodeNode.__superClass__.traverseChildren.call(this,crossScope,func)}};CodeNode.prototype.toString=function(idt){var _b,_c,_d,_e,child,children;idt=idt||"";children=(function(){_b=[];_d=this.collectChildren();for(_c=0,_e=_d.length;_c<_e;_c++){child=_d[_c];_b.push(child.toString(idt+TAB))}return _b}).call(this).join("");return"\n"+idt+children};return CodeNode})();exports.SplatNode=(function(){SplatNode=function(name){if(!(name.compile)){name=literal(name)}this.name=name;return this};__extends(SplatNode,BaseNode);SplatNode.prototype["class"]="SplatNode";SplatNode.prototype.children=["name"];SplatNode.prototype.compileNode=function(o){var _b;if((typeof(_b=this.index)!=="undefined"&&_b!==null)){return this.compileParam(o)}else{return this.name.compile(o)}};SplatNode.prototype.compileParam=function(o){var _b,_c,idx,len,name,pos,trailing,variadic;name=this.name.compile(o);o.scope.find(name);len=o.scope.freeVariable();o.scope.assign(len,"arguments.length");variadic=o.scope.freeVariable();o.scope.assign(variadic,(""+len+" >= "+this.arglength));_b=this.trailings;for(idx=0,_c=_b.length;idx<_c;idx++){trailing=_b[idx];pos=this.trailings.length-idx;o.scope.assign(trailing.compile(o),("arguments["+variadic+" ? "+len+" - "+pos+" : "+(this.index+idx)+"]"))}return""+name+" = "+(utility("slice"))+".call(arguments, "+this.index+", "+len+" - "+(this.trailings.length)+")"};SplatNode.prototype.compileValue=function(o,name,index,trailings){var trail;trail=trailings?(", "+(name)+".length - "+trailings):"";return""+(utility("slice"))+".call("+name+", "+index+trail+")"};SplatNode.compileMixedArray=function(list,o){var _b,_c,_d,arg,args,code,i,prev;args=[];i=0;_c=list;for(_b=0,_d=_c.length;_b<_d;_b++){arg=_c[_b];code=arg.compile(o);if(!(arg instanceof SplatNode)){prev=args[i-1];if(i===1&&prev.substr(0,1)==="["&&prev.substr(prev.length-1,1)==="]"){args[i-1]=(""+(prev.substr(0,prev.length-1))+", "+code+"]");continue}else{if(i>1&&prev.substr(0,9)===".concat(["&&prev.substr(prev.length-2,2)==="])"){args[i-1]=(""+(prev.substr(0,prev.length-2))+", "+code+"])");continue}else{code=("["+code+"]")}}}args.push(i===0?code:(".concat("+code+")"));i+=1}return args.join("")};return SplatNode}).call(this);exports.WhileNode=(function(){WhileNode=function(condition,opts){if(opts&&opts.invert){if(condition instanceof OpNode){condition=new ParentheticalNode(condition)}condition=new OpNode("!",condition)}this.condition=condition;this.guard=opts&&opts.guard;return this};__extends(WhileNode,BaseNode);WhileNode.prototype["class"]="WhileNode";WhileNode.prototype.children=["condition","guard","body"];WhileNode.prototype.isStatement=function(){return true};WhileNode.prototype.addBody=function(body){this.body=body;return this};WhileNode.prototype.makeReturn=function(){this.returns=true;return this};WhileNode.prototype.topSensitive=function(){return true};WhileNode.prototype.compileNode=function(o){var cond,post,pre,rvar,set,top;top=del(o,"top")&&!this.returns;o.indent=this.idt(1);o.top=true;cond=this.condition.compile(o);set="";if(!(top)){rvar=o.scope.freeVariable();set=(""+this.tab+rvar+" = [];\n");if(this.body){this.body=PushNode.wrap(rvar,this.body)}}pre=(""+set+(this.tab)+"while ("+cond+")");if(this.guard){this.body=Expressions.wrap([new IfNode(this.guard,this.body)])}this.returns?(post="\n"+new ReturnNode(literal(rvar)).compile(merge(o,{indent:this.idt()}))):(post="");return""+pre+" {\n"+(this.body.compile(o))+"\n"+this.tab+"}"+post};return WhileNode})();exports.OpNode=(function(){OpNode=function(operator,first,second,flip){this.first=first;this.second=second;this.operator=this.CONVERSIONS[operator]||operator;this.flip=!!flip;return this};__extends(OpNode,BaseNode);OpNode.prototype.CONVERSIONS={"==":"===","!=":"!=="};OpNode.prototype.CHAINABLE=["<",">",">=","<=","===","!=="];OpNode.prototype.ASSIGNMENT=["||=","&&=","?="];OpNode.prototype.PREFIX_OPERATORS=["typeof","delete"];OpNode.prototype["class"]="OpNode";OpNode.prototype.children=["first","second"];OpNode.prototype.isUnary=function(){return !this.second};OpNode.prototype.isChainable=function(){return indexOf(this.CHAINABLE,this.operator)>=0};OpNode.prototype.compileNode=function(o){o.operation=true;if(this.isChainable()&&this.first.unwrap() instanceof OpNode&&this.first.unwrap().isChainable()){return this.compileChain(o)}if(indexOf(this.ASSIGNMENT,this.operator)>=0){return this.compileAssignment(o)}if(this.isUnary()){return this.compileUnary(o)}if(this.operator==="?"){return this.compileExistence(o)}return[this.first.compile(o),this.operator,this.second.compile(o)].join(" ")};OpNode.prototype.compileChain=function(o){var _b,_c,first,second,shared;shared=this.first.unwrap().second;if(shared.containsType(CallNode)){_b=shared.compileReference(o);this.first.second=_b[0];shared=_b[1]}_c=[this.first.compile(o),this.second.compile(o),shared.compile(o)];first=_c[0];second=_c[1];shared=_c[2];return"("+first+") && ("+shared+" "+this.operator+" "+second+")"};OpNode.prototype.compileAssignment=function(o){var _b,first,second;_b=[this.first.compile(o),this.second.compile(o)];first=_b[0];second=_b[1];if(first.match(IDENTIFIER)){o.scope.find(first)}if(this.operator==="?="){return(""+first+" = "+(ExistenceNode.compileTest(o,this.first))+" ? "+first+" : "+second)}return""+first+" = "+first+" "+(this.operator.substr(0,2))+" "+second};OpNode.prototype.compileExistence=function(o){var _b,first,second,test;_b=[this.first.compile(o),this.second.compile(o)];first=_b[0];second=_b[1];test=ExistenceNode.compileTest(o,this.first);return""+test+" ? "+first+" : "+second};OpNode.prototype.compileUnary=function(o){var parts,space;space=indexOf(this.PREFIX_OPERATORS,this.operator)>=0?" ":"";parts=[this.operator,space,this.first.compile(o)];if(this.flip){parts=parts.reverse()}return parts.join("")};return OpNode})();exports.InNode=(function(){InNode=function(object,array){this.object=object;this.array=array;return this};__extends(InNode,BaseNode);InNode.prototype["class"]="InNode";InNode.prototype.children=["object","array"];InNode.prototype.isArray=function(){return this.array instanceof ValueNode&&this.array.isArray()};InNode.prototype.compileNode=function(o){var _b;_b=this.object.compileReference(o,{precompile:true});this.obj1=_b[0];this.obj2=_b[1];if(this.isArray()){return this.compileOrTest(o)}else{return this.compileLoopTest(o)}};InNode.prototype.compileOrTest=function(o){var _b,_c,_d,i,item,tests;tests=(function(){_b=[];_c=this.array.base.objects;for(i=0,_d=_c.length;i<_d;i++){item=_c[i];_b.push((""+(item.compile(o))+" === "+(i?this.obj2:this.obj1)))}return _b}).call(this);return"("+(tests.join(" || "))+")"};InNode.prototype.compileLoopTest=function(o){var _b,_c,i,l,prefix;_b=this.array.compileReference(o,{precompile:true});this.arr1=_b[0];this.arr2=_b[1];_c=[o.scope.freeVariable(),o.scope.freeVariable()];i=_c[0];l=_c[1];prefix=this.obj1!==this.obj2?this.obj1+"; ":"";return"!!(function(){ "+(prefix)+"for (var "+i+"=0, "+l+"="+(this.arr1)+".length; "+i+"<"+l+"; "+i+"++) if ("+(this.arr2)+"["+i+"] === "+this.obj2+") return true; })()"};return InNode})();exports.TryNode=(function(){TryNode=function(attempt,error,recovery,ensure){this.attempt=attempt;this.recovery=recovery;this.ensure=ensure;this.error=error;return this};__extends(TryNode,BaseNode);TryNode.prototype["class"]="TryNode";TryNode.prototype.children=["attempt","recovery","ensure"];TryNode.prototype.isStatement=function(){return true};TryNode.prototype.makeReturn=function(){if(this.attempt){this.attempt=this.attempt.makeReturn()}if(this.recovery){this.recovery=this.recovery.makeReturn()}return this};TryNode.prototype.compileNode=function(o){var attemptPart,catchPart,errorPart,finallyPart;o.indent=this.idt(1);o.top=true;attemptPart=this.attempt.compile(o);errorPart=this.error?(" ("+(this.error.compile(o))+") "):" ";catchPart=this.recovery?(" catch"+errorPart+"{\n"+(this.recovery.compile(o))+"\n"+this.tab+"}"):"";finallyPart=(this.ensure||"")&&" finally {\n"+this.ensure.compile(merge(o))+("\n"+this.tab+"}");return""+(this.tab)+"try {\n"+attemptPart+"\n"+this.tab+"}"+catchPart+finallyPart};return TryNode})();exports.ThrowNode=(function(){ThrowNode=function(expression){this.expression=expression;return this};__extends(ThrowNode,BaseNode);ThrowNode.prototype["class"]="ThrowNode";ThrowNode.prototype.children=["expression"];ThrowNode.prototype.isStatement=function(){return true};ThrowNode.prototype.makeReturn=function(){return this};ThrowNode.prototype.compileNode=function(o){return""+(this.tab)+"throw "+(this.expression.compile(o))+";"};return ThrowNode})();exports.ExistenceNode=(function(){ExistenceNode=function(expression){this.expression=expression;return this};__extends(ExistenceNode,BaseNode);ExistenceNode.prototype["class"]="ExistenceNode";ExistenceNode.prototype.children=["expression"];ExistenceNode.prototype.compileNode=function(o){return ExistenceNode.compileTest(o,this.expression)};ExistenceNode.compileTest=function(o,variable){var _b,first,second;_b=variable.compileReference(o);first=_b[0];second=_b[1];return"(typeof "+(first.compile(o))+' !== "undefined" && '+(second.compile(o))+" !== null)"};return ExistenceNode}).call(this);exports.ParentheticalNode=(function(){ParentheticalNode=function(expression){this.expression=expression;return this};__extends(ParentheticalNode,BaseNode);ParentheticalNode.prototype["class"]="ParentheticalNode";ParentheticalNode.prototype.children=["expression"];ParentheticalNode.prototype.isStatement=function(){return this.expression.isStatement()};ParentheticalNode.prototype.makeReturn=function(){return this.expression.makeReturn()};ParentheticalNode.prototype.compileNode=function(o){var code,l;code=this.expression.compile(o);if(this.isStatement()){return code}l=code.length;if(code.substr(l-1,1)===";"){code=code.substr(o,l-1)}if(this.expression instanceof AssignNode){return code}else{return"("+code+")"}};return ParentheticalNode})();exports.ForNode=(function(){ForNode=function(body,source,name,index){var _b;this.body=body;this.name=name;this.index=index||null;this.source=source.source;this.guard=source.guard;this.step=source.step;this.object=!!source.object;if(this.object){_b=[this.index,this.name];this.name=_b[0];this.index=_b[1]}this.pattern=this.name instanceof ValueNode;if(this.index instanceof ValueNode){throw new Error("index cannot be a pattern matching expression")}this.returns=false;return this};__extends(ForNode,BaseNode);ForNode.prototype["class"]="ForNode";ForNode.prototype.children=["body","source","guard"];ForNode.prototype.isStatement=function(){return true};ForNode.prototype.topSensitive=function(){return true};ForNode.prototype.makeReturn=function(){this.returns=true;return this};ForNode.prototype.compileReturnValue=function(val,o){if(this.returns){return"\n"+new ReturnNode(literal(val)).compile(o)}if(val){return"\n"+val}return""};ForNode.prototype.compileNode=function(o){var body,close,codeInBody,forPart,index,ivar,lvar,name,namePart,range,returnResult,rvar,scope,source,sourcePart,stepPart,svar,topLevel,varPart,vars;topLevel=del(o,"top")&&!this.returns;range=this.source instanceof ValueNode&&this.source.base instanceof RangeNode&&!this.source.properties.length;source=range?this.source.base:this.source;codeInBody=this.body.contains(function(n){return n instanceof CodeNode});scope=o.scope;name=this.name&&this.name.compile(o);index=this.index&&this.index.compile(o);if(name&&!this.pattern&&!codeInBody){scope.find(name)}if(index){scope.find(index)}if(!(topLevel)){rvar=scope.freeVariable()}ivar=(function(){if(range){return name}else{if(codeInBody){return scope.freeVariable()}else{return index||scope.freeVariable()}}})();varPart="";body=Expressions.wrap([this.body]);if(range){sourcePart=source.compileVariables(o);forPart=source.compile(merge(o,{index:ivar,step:this.step}))}else{svar=scope.freeVariable();sourcePart=(""+svar+" = "+(this.source.compile(o))+";");if(this.pattern){namePart=new AssignNode(this.name,literal(""+svar+"["+ivar+"]")).compile(merge(o,{indent:this.idt(1),top:true}))+"\n"}else{if(name){namePart=(""+name+" = "+svar+"["+ivar+"]")}}if(!(this.object)){lvar=scope.freeVariable();stepPart=this.step?(""+ivar+" += "+(this.step.compile(o))):(""+ivar+"++");forPart=(""+ivar+" = 0, "+lvar+" = "+(svar)+".length; "+ivar+" < "+lvar+"; "+stepPart)}}sourcePart=(rvar?(""+rvar+" = []; "):"")+sourcePart;sourcePart=sourcePart?(""+this.tab+sourcePart+"\n"+this.tab):this.tab;returnResult=this.compileReturnValue(rvar,o);if(!(topLevel)){body=PushNode.wrap(rvar,body)}this.guard?(body=Expressions.wrap([new IfNode(this.guard,body)])):null;if(codeInBody){if(namePart){body.unshift(literal("var "+namePart))}if(index){body.unshift(literal("var "+index+" = "+ivar))}body=ClosureNode.wrap(body,true)}else{if(namePart){varPart=(""+(this.idt(1))+namePart+";\n")}}this.object?(forPart=(""+ivar+" in "+svar+") { if ("+(utility("hasProp"))+".call("+svar+", "+ivar+")")):null;body=body.compile(merge(o,{indent:this.idt(1),top:true}));vars=range?name:(""+name+", "+ivar);close=this.object?"}}":"}";return""+(sourcePart)+"for ("+forPart+") {\n"+varPart+body+"\n"+this.tab+close+returnResult};return ForNode})();exports.IfNode=(function(){IfNode=function(condition,body,tags){this.condition=condition;this.body=body;this.elseBody=null;this.tags=tags||{};if(this.tags.invert){this.condition=new OpNode("!",new ParentheticalNode(this.condition))}this.isChain=false;return this};__extends(IfNode,BaseNode);IfNode.prototype["class"]="IfNode";IfNode.prototype.children=["condition","switchSubject","body","elseBody","assigner"];IfNode.prototype.bodyNode=function(){return this.body==undefined?undefined:this.body.unwrap()};IfNode.prototype.elseBodyNode=function(){return this.elseBody==undefined?undefined:this.elseBody.unwrap()};IfNode.prototype.forceStatement=function(){this.tags.statement=true;return this};IfNode.prototype.switchesOver=function(expression){this.switchSubject=expression;return this};IfNode.prototype.rewriteSwitch=function(o){var _b,_c,_d,cond,i,variable;this.assigner=this.switchSubject;if(!((this.switchSubject.unwrap() instanceof LiteralNode))){variable=literal(o.scope.freeVariable());this.assigner=new AssignNode(variable,this.switchSubject);this.switchSubject=variable}this.condition=(function(){_b=[];_c=flatten([this.condition]);for(i=0,_d=_c.length;i<_d;i++){cond=_c[i];_b.push((function(){if(cond instanceof OpNode){cond=new ParentheticalNode(cond)}return new OpNode("==",(i===0?this.assigner:this.switchSubject),cond)}).call(this))}return _b}).call(this);if(this.isChain){this.elseBodyNode().switchesOver(this.switchSubject)}this.switchSubject=undefined;return this};IfNode.prototype.addElse=function(elseBody,statement){if(this.isChain){this.elseBodyNode().addElse(elseBody,statement)}else{this.isChain=elseBody instanceof IfNode;this.elseBody=this.ensureExpressions(elseBody)}return this};IfNode.prototype.isStatement=function(){return this.statement=this.statement||!!(this.tags.statement||this.bodyNode().isStatement()||(this.elseBody&&this.elseBodyNode().isStatement()))};IfNode.prototype.compileCondition=function(o){var _b,_c,_d,_e,cond;return(function(){_b=[];_d=flatten([this.condition]);for(_c=0,_e=_d.length;_c<_e;_c++){cond=_d[_c];_b.push(cond.compile(o))}return _b}).call(this).join(" || ")};IfNode.prototype.compileNode=function(o){if(this.isStatement()){return this.compileStatement(o)}else{return this.compileTernary(o)}};IfNode.prototype.makeReturn=function(){this.body=this.body&&this.ensureExpressions(this.body.makeReturn());this.elseBody=this.elseBody&&this.ensureExpressions(this.elseBody.makeReturn());return this};IfNode.prototype.ensureExpressions=function(node){if(node instanceof Expressions){return node}else{return new Expressions([node])}};IfNode.prototype.compileStatement=function(o){var body,child,comDent,condO,elsePart,ifDent,ifPart;if(this.switchSubject){this.rewriteSwitch(o)}child=del(o,"chainChild");condO=merge(o);o.indent=this.idt(1);o.top=true;ifDent=child?"":this.idt();comDent=child?this.idt():"";body=this.body.compile(o);ifPart=(""+(ifDent)+"if ("+(this.compileCondition(condO))+") {\n"+body+"\n"+this.tab+"}");if(!(this.elseBody)){return ifPart}elsePart=this.isChain?" else "+this.elseBodyNode().compile(merge(o,{indent:this.idt(),chainChild:true})):(" else {\n"+(this.elseBody.compile(o))+"\n"+this.tab+"}");return""+ifPart+elsePart};IfNode.prototype.compileTernary=function(o){var elsePart,ifPart;ifPart=this.condition.compile(o)+" ? "+this.bodyNode().compile(o);elsePart=this.elseBody?this.elseBodyNode().compile(o):"null";return""+ifPart+" : "+elsePart};return IfNode})();PushNode=(exports.PushNode={wrap:function(array,expressions){var expr;expr=expressions.unwrap();if(expr.isPureStatement()||expr.containsPureStatement()){return expressions}return Expressions.wrap([new CallNode(new ValueNode(literal(array),[new AccessorNode(literal("push"))]),[expr])])}});ClosureNode=(exports.ClosureNode={wrap:function(expressions,statement){var args,call,func,mentionsArgs,mentionsThis,meth;if(expressions.containsPureStatement()){return expressions}func=new ParentheticalNode(new CodeNode([],Expressions.wrap([expressions])));args=[];mentionsArgs=expressions.contains(function(n){return(n instanceof LiteralNode)&&(n.value==="arguments")});mentionsThis=expressions.contains(function(n){return(n instanceof LiteralNode)&&(n.value==="this")});if(mentionsArgs||mentionsThis){meth=literal(mentionsArgs?"apply":"call");args=[literal("this")];if(mentionsArgs){args.push(literal("arguments"))}func=new ValueNode(func,[new AccessorNode(meth)])}call=new CallNode(func,args);if(statement){return Expressions.wrap([call])}else{return call}}});UTILITIES={__extends:"function(child, parent) {\n var ctor = function(){ };\n ctor.prototype = parent.prototype;\n child.__superClass__ = parent.prototype;\n child.prototype = new ctor();\n child.prototype.constructor = child;\n }",__hasProp:"Object.prototype.hasOwnProperty",__slice:"Array.prototype.slice"};TAB=" ";TRAILING_WHITESPACE=/[ \t]+$/gm;DOUBLE_PARENS=/\(\(([^\(\)\n]*)\)\)/g;IDENTIFIER=/^[a-zA-Z\$_](\w|\$)*$/;NUMBER=/^(((\b0(x|X)[0-9a-fA-F]+)|((\b[0-9]+(\.[0-9]+)?|\.[0-9]+)(e[+\-]?[0-9]+)?)))\b$/i;IS_STRING=/^['"]/;literal=function(name){return new LiteralNode(name)};utility=function(name){var ref;ref=("__"+name);Scope.root.assign(ref,UTILITIES[ref]);return ref}})();(function(){var Lexer,compile,helpers,lexer,parser,path,processScripts;if(typeof process!=="undefined"&&process!==null){path=require("path");Lexer=require("./lexer").Lexer;parser=require("./parser").parser;helpers=require("./helpers").helpers;helpers.extend(global,require("./nodes"));require.registerExtension?require.registerExtension(".coffee",function(content){return compile(content)}):null}else{this.exports=(this.CoffeeScript={});Lexer=this.Lexer;parser=this.parser;helpers=this.helpers}exports.VERSION="0.7.0";lexer=new Lexer();exports.compile=(compile=function(code,options){options=options||{};try{return(parser.parse(lexer.tokenize(code))).compile(options)}catch(err){if(options.source){err.message=("In "+options.source+", "+err.message)}throw err}});exports.tokens=function(code){return lexer.tokenize(code)};exports.nodes=function(code){return parser.parse(lexer.tokenize(code))};exports.run=(function(code,options){var __dirname,__filename;module.filename=(__filename=options.source);__dirname=path.dirname(__filename);return eval(exports.compile(code,options))});parser.lexer={lex:function(){var token;token=this.tokens[this.pos]||[""];this.pos+=1;this.yylineno=token[2];this.yytext=token[1];return token[0]},setInput:function(tokens){this.tokens=tokens;this.pos=0;return this.pos},upcomingInput:function(){return""}};if((typeof document!=="undefined"&&document!==null)&&document.getElementsByTagName){processScripts=function(){var _a,_b,_c,_d,tag;_a=[];_c=document.getElementsByTagName("script");for(_b=0,_d=_c.length;_b<_d;_b++){tag=_c[_b];tag.type==="text/coffeescript"?_a.push(eval(exports.compile(tag.innerHTML))):null}return _a};if(window.addEventListener){window.addEventListener("load",processScripts,false)}else{if(window.attachEvent){window.attachEvent("onload",processScripts)}}}})(); \ No newline at end of file +(function(){var compact,count,del,extend,flatten,helpers,include,indexOf,merge,starts;var __hasProp=Object.prototype.hasOwnProperty;if(!(typeof process!=="undefined"&&process!==null)){this.exports=this}helpers=(exports.helpers={});helpers.indexOf=(indexOf=function(array,item,from){var _a,_b,index,other;if(array.indexOf){return array.indexOf(item,from)}_a=array;for(index=0,_b=_a.length;index<_b;index++){other=_a[index];if(other===item&&(!from||(from<=index))){return index}}return -1});helpers.include=(include=function(list,value){return indexOf(list,value)>=0});helpers.starts=(starts=function(string,literal,start){return string.substring(start,(start||0)+literal.length)===literal});helpers.compact=(compact=function(array){var _a,_b,_c,_d,item;_a=[];_c=array;for(_b=0,_d=_c.length;_b<_d;_b++){item=_c[_b];item?_a.push(item):null}return _a});helpers.count=(count=function(string,letter){var num,pos;num=0;pos=indexOf(string,letter);while(pos!==-1){num+=1;pos=indexOf(string,letter,pos+1)}return num});helpers.merge=(merge=function(options,overrides){var _a,_b,fresh,key,val;fresh={};_a=options;for(key in _a){if(__hasProp.call(_a,key)){val=_a[key];(fresh[key]=val)}}if(overrides){_b=overrides;for(key in _b){if(__hasProp.call(_b,key)){val=_b[key];(fresh[key]=val)}}}return fresh});helpers.extend=(extend=function(object,properties){var _a,_b,key,val;_a=[];_b=properties;for(key in _b){if(__hasProp.call(_b,key)){val=_b[key];_a.push(object[key]=val)}}return _a});helpers.flatten=(flatten=function(array){var _a,_b,_c,item,memo;memo=[];_b=array;for(_a=0,_c=_b.length;_a<_c;_a++){item=_b[_a];item instanceof Array?(memo=memo.concat(item)):memo.push(item)}return memo});helpers.del=(del=function(obj,key){var val;val=obj[key];delete obj[key];return val})})();(function(){var BALANCED_PAIRS,EXPRESSION_CLOSE,EXPRESSION_END,EXPRESSION_START,IMPLICIT_BLOCK,IMPLICIT_CALL,IMPLICIT_END,IMPLICIT_FUNC,INVERSES,Rewriter,SINGLE_CLOSERS,SINGLE_LINERS,_a,_b,_c,_d,_e,_f,_g,_h,_i,_j,_k,_l,_m,helpers,include,pair;var __hasProp=Object.prototype.hasOwnProperty;if(typeof process!=="undefined"&&process!==null){_a=require("./helpers");helpers=_a.helpers}else{this.exports=this;helpers=this.helpers}_b=helpers;include=_b.include;exports.Rewriter=(function(){Rewriter=function(){};Rewriter.prototype.rewrite=function(tokens){this.tokens=tokens;this.adjustComments();this.removeLeadingNewlines();this.removeMidExpressionNewlines();this.closeOpenCallsAndIndexes();this.addImplicitIndentation();this.addImplicitParentheses();this.ensureBalance(BALANCED_PAIRS);this.rewriteClosingParens();return this.tokens};Rewriter.prototype.scanTokens=function(block){var i,move;i=0;while(true){if(!(this.tokens[i])){break}move=block(this.tokens[i-1],this.tokens[i],this.tokens[i+1],i);i+=move}return true};Rewriter.prototype.adjustComments=function(){return this.scanTokens((function(__this){var __func=function(prev,token,post,i){var _c,_d,after,before;if(!(token[0]==="HERECOMMENT")){return 1}_c=[this.tokens[i-2],this.tokens[i+2]];before=_c[0];after=_c[1];if(after&&after[0]==="INDENT"){this.tokens.splice(i+2,1);before&&before[0]==="OUTDENT"&&post&&(prev[0]===post[0])&&(post[0]==="TERMINATOR")?this.tokens.splice(i-2,1):this.tokens.splice(i,0,after)}else{if(prev&&!("TERMINATOR"===(_d=prev[0])||"INDENT"===_d||"OUTDENT"===_d)){if(post&&post[0]==="TERMINATOR"&&after&&after[0]==="OUTDENT"){this.tokens.splice.apply(this.tokens,[i+3,0].concat(this.tokens.splice(i,2)));this.tokens.splice(i+3,0,["TERMINATOR","\n",prev[2]])}else{this.tokens.splice(i,0,["TERMINATOR","\n",prev[2]])}return 2}}return 1};return(function(){return __func.apply(__this,arguments)})})(this))};Rewriter.prototype.removeLeadingNewlines=function(){var _c;_c=[];while(this.tokens[0]&&this.tokens[0][0]==="TERMINATOR"){_c.push(this.tokens.shift())}return _c};Rewriter.prototype.removeMidExpressionNewlines=function(){return this.scanTokens((function(__this){var __func=function(prev,token,post,i){if(!(post&&include(EXPRESSION_CLOSE,post[0])&&token[0]==="TERMINATOR")){return 1}this.tokens.splice(i,1);return 0};return(function(){return __func.apply(__this,arguments)})})(this))};Rewriter.prototype.closeOpenCallsAndIndexes=function(){var brackets,parens;parens=[0];brackets=[0];return this.scanTokens((function(__this){var __func=function(prev,token,post,i){var _c;if((_c=token[0])==="CALL_START"){parens.push(0)}else{if(_c==="INDEX_START"){brackets.push(0)}else{if(_c==="("){parens[parens.length-1]+=1}else{if(_c==="["){brackets[brackets.length-1]+=1}else{if(_c===")"){if(parens[parens.length-1]===0){parens.pop();token[0]="CALL_END"}else{parens[parens.length-1]-=1}}else{if(_c==="]"){if(brackets[brackets.length-1]===0){brackets.pop();token[0]="INDEX_END"}else{brackets[brackets.length-1]-=1}}}}}}}return 1};return(function(){return __func.apply(__this,arguments)})})(this))};Rewriter.prototype.addImplicitParentheses=function(){var closeCalls,stack;stack=[0];closeCalls=(function(__this){var __func=function(i){var _c,size,tmp;(_c=stack[stack.length-1]);for(tmp=0;tmp<_c;tmp+=1){this.tokens.splice(i,0,["CALL_END",")",this.tokens[i][2]])}size=stack[stack.length-1]+1;stack[stack.length-1]=0;return size};return(function(){return __func.apply(__this,arguments)})})(this);return this.scanTokens((function(__this){var __func=function(prev,token,post,i){var _c,_d,j,nx,open,size,tag;tag=token[0];if(tag==="OUTDENT"){stack[stack.length-2]+=stack.pop()}open=stack[stack.length-1]>0;if(prev&&prev.spaced&&include(IMPLICIT_FUNC,prev[0])&&include(IMPLICIT_CALL,tag)&&!(tag==="!"&&(("IN"===(_c=post[0])||"OF"===_c)))){this.tokens.splice(i,0,["CALL_START","(",token[2]]);stack[stack.length-1]+=1;if(include(EXPRESSION_START,tag)){stack.push(0)}return 2}if(include(EXPRESSION_START,tag)){if(tag==="INDENT"&&!token.generated&&open&&!(prev&&include(IMPLICIT_BLOCK,prev[0]))){size=closeCalls(i);stack.push(0);return size}stack.push(0);return 1}if(open&&!token.generated&&prev[0]!==","&&(!post||include(IMPLICIT_END,tag))){j=1;while((typeof(_d=(nx=this.tokens[i+j]))!=="undefined"&&_d!==null)&&include(IMPLICIT_END,nx[0])){j++}if((typeof nx!=="undefined"&&nx!==null)&&nx[0]===","){if(tag==="TERMINATOR"){this.tokens.splice(i,1)}}else{size=closeCalls(i);if(tag!=="OUTDENT"&&include(EXPRESSION_END,tag)){stack.pop()}return size}}if(tag!=="OUTDENT"&&include(EXPRESSION_END,tag)){stack[stack.length-2]+=stack.pop();return 1}return 1};return(function(){return __func.apply(__this,arguments)})})(this))};Rewriter.prototype.addImplicitIndentation=function(){return this.scanTokens((function(__this){var __func=function(prev,token,post,i){var _c,idx,indent,insertion,outdent,parens,pre,starter,tok;if(token[0]==="ELSE"&&prev[0]!=="OUTDENT"){this.tokens.splice.apply(this.tokens,[i,0].concat(this.indentation(token)));return 2}if(token[0]==="CATCH"&&this.tokens[i+2][0]==="TERMINATOR"){this.tokens.splice.apply(this.tokens,[i+2,0].concat(this.indentation(token)));return 4}if(!(include(SINGLE_LINERS,token[0])&&post[0]!=="INDENT"&&!(token[0]==="ELSE"&&post[0]==="IF"))){return 1}starter=token[0];_c=this.indentation(token);indent=_c[0];outdent=_c[1];indent.generated=(outdent.generated=true);this.tokens.splice(i+1,0,indent);idx=i+1;parens=0;while(true){idx+=1;tok=this.tokens[idx];pre=this.tokens[idx-1];if((!tok||(include(SINGLE_CLOSERS,tok[0])&&tok[1]!==";"&&parens===0)||(tok[0]===")"&&parens===0))&&!(tok[0]==="ELSE"&&!("IF"===starter||"THEN"===starter))){insertion=pre[0]===","?idx-1:idx;this.tokens.splice(insertion,0,outdent);break}if(tok[0]==="("){parens+=1}if(tok[0]===")"){parens-=1}}if(!(token[0]==="THEN")){return 1}this.tokens.splice(i,1);return 0};return(function(){return __func.apply(__this,arguments)})})(this))};Rewriter.prototype.ensureBalance=function(pairs){var _c,_d,key,levels,line,open,openLine,unclosed,value;levels={};openLine={};this.scanTokens((function(__this){var __func=function(prev,token,post,i){var _c,_d,_e,_f,close,open,pair;_d=pairs;for(_c=0,_e=_d.length;_c<_e;_c++){pair=_d[_c];_f=pair;open=_f[0];close=_f[1];levels[open]=levels[open]||0;if(token[0]===open){if(levels[open]===0){openLine[open]=token[2]}levels[open]+=1}if(token[0]===close){levels[open]-=1}if(levels[open]<0){throw new Error(("too many "+(token[1])+" on line "+(token[2]+1)))}}return 1};return(function(){return __func.apply(__this,arguments)})})(this));unclosed=(function(){_c=[];_d=levels;for(key in _d){if(__hasProp.call(_d,key)){value=_d[key];value>0?_c.push(key):null}}return _c})();if(unclosed.length){open=unclosed[0];line=openLine[open]+1;throw new Error("unclosed "+open+" on line "+line)}};Rewriter.prototype.rewriteClosingParens=function(){var _c,debt,key,stack,val;stack=[];debt={};_c=INVERSES;for(key in _c){if(__hasProp.call(_c,key)){val=_c[key];(debt[key]=0)}}return this.scanTokens((function(__this){var __func=function(prev,token,post,i){var inv,match,mtag,oppos,tag;tag=token[0];inv=INVERSES[token[0]];if(include(EXPRESSION_START,tag)){stack.push(token);return 1}else{if(include(EXPRESSION_END,tag)){if(debt[inv]>0){debt[inv]-=1;this.tokens.splice(i,1);return 0}else{match=stack.pop();mtag=match[0];oppos=INVERSES[mtag];if(tag===oppos){return 1}debt[mtag]+=1;val=[oppos,mtag==="INDENT"?match[1]:oppos];if((this.tokens[i+2]==undefined?undefined:this.tokens[i+2][0])===mtag){this.tokens.splice(i+3,0,val);stack.push(match)}else{this.tokens.splice(i,0,val)}return 1}}else{return 1}}};return(function(){return __func.apply(__this,arguments)})})(this))};Rewriter.prototype.indentation=function(token){return[["INDENT",2,token[2]],["OUTDENT",2,token[2]]]};return Rewriter})();BALANCED_PAIRS=[["(",")"],["[","]"],["{","}"],["INDENT","OUTDENT"],["PARAM_START","PARAM_END"],["CALL_START","CALL_END"],["INDEX_START","INDEX_END"]];INVERSES={};_d=BALANCED_PAIRS;for(_c=0,_e=_d.length;_c<_e;_c++){pair=_d[_c];INVERSES[pair[0]]=pair[1];INVERSES[pair[1]]=pair[0]}EXPRESSION_START=(function(){_f=[];_h=BALANCED_PAIRS;for(_g=0,_i=_h.length;_g<_i;_g++){pair=_h[_g];_f.push(pair[0])}return _f})();EXPRESSION_END=(function(){_j=[];_l=BALANCED_PAIRS;for(_k=0,_m=_l.length;_k<_m;_k++){pair=_l[_k];_j.push(pair[1])}return _j})();EXPRESSION_CLOSE=["CATCH","WHEN","ELSE","FINALLY"].concat(EXPRESSION_END);IMPLICIT_FUNC=["IDENTIFIER","SUPER",")","CALL_END","]","INDEX_END","@"];IMPLICIT_CALL=["IDENTIFIER","NUMBER","STRING","JS","REGEX","NEW","PARAM_START","TRY","DELETE","TYPEOF","SWITCH","TRUE","FALSE","YES","NO","ON","OFF","!","!!","THIS","NULL","@","->","=>","[","(","{"];IMPLICIT_BLOCK=["->","=>","{","[",","];IMPLICIT_END=["IF","UNLESS","FOR","WHILE","UNTIL","LOOP","TERMINATOR","INDENT"].concat(EXPRESSION_END);SINGLE_LINERS=["ELSE","->","=>","TRY","FINALLY","THEN"];SINGLE_CLOSERS=["TERMINATOR","CATCH","FINALLY","ELSE","OUTDENT","LEADING_WHEN"]})();(function(){var ASSIGNED,ASSIGNMENT,CALLABLE,CODE,COFFEE_ALIASES,COFFEE_KEYWORDS,COMMENT,CONVERSIONS,HALF_ASSIGNMENTS,HEREDOC,HEREDOC_INDENT,IDENTIFIER,INTERPOLATION,JS_CLEANER,JS_FORBIDDEN,JS_KEYWORDS,LAST_DENT,LAST_DENTS,LINE_BREAK,Lexer,MULTILINER,MULTI_DENT,NEXT_CHARACTER,NOT_REGEX,NO_NEWLINE,NUMBER,OPERATOR,REGEX_END,REGEX_ESCAPE,REGEX_INTERPOLATION,REGEX_START,RESERVED,Rewriter,STRING_NEWLINES,WHITESPACE,_a,_b,_c,compact,count,helpers,include,starts;var __slice=Array.prototype.slice;if(typeof process!=="undefined"&&process!==null){_a=require("./rewriter");Rewriter=_a.Rewriter;_b=require("./helpers");helpers=_b.helpers}else{this.exports=this;Rewriter=this.Rewriter;helpers=this.helpers}_c=helpers;include=_c.include;count=_c.count;starts=_c.starts;compact=_c.compact;exports.Lexer=(function(){Lexer=function(){};Lexer.prototype.tokenize=function(code,options){var o;code=code.replace(/(\r|\s+$)/g,"");o=options||{};this.code=code;this.i=0;this.line=o.line||0;this.indent=0;this.outdebt=0;this.indents=[];this.tokens=[];while(this.i=1;delimited=__slice.call(arguments,0,_d-0);return this.balancedString(this.chunk,delimited)};Lexer.prototype.lineToken=function(){var diff,indent,nextCharacter,noNewlines,prev,size;if(!(indent=this.match(MULTI_DENT,1))){return false}this.line+=count(indent,"\n");this.i+=indent.length;prev=this.prev(2);size=indent.match(LAST_DENTS).reverse()[0].match(LAST_DENT)[1].length;nextCharacter=this.match(NEXT_CHARACTER,1);noNewlines=nextCharacter==="."||nextCharacter===","||this.unfinished();if(size===this.indent){if(noNewlines){return this.suppressNewlines()}return this.newlineToken(indent)}else{if(size>this.indent){if(noNewlines){return this.suppressNewlines()}diff=size-this.indent;this.token("INDENT",diff);this.indents.push(diff)}else{this.outdentToken(this.indent-size,noNewlines)}}this.indent=size;return true};Lexer.prototype.outdentToken=function(moveOut,noNewlines){var lastIndent;if(moveOut>-this.outdebt){while(moveOut>0&&this.indents.length){lastIndent=this.indents.pop();this.token("OUTDENT",lastIndent);moveOut-=lastIndent}}else{this.outdebt+=moveOut}if(!(noNewlines)){this.outdebt=moveOut}if(!(this.tag()==="TERMINATOR"||noNewlines)){this.token("TERMINATOR","\n")}return true};Lexer.prototype.whitespaceToken=function(){var prev,space;if(!(space=this.match(WHITESPACE,1))){return false}prev=this.prev();if(prev){prev.spaced=true}this.i+=space.length;return true};Lexer.prototype.newlineToken=function(newlines){if(!(this.tag()==="TERMINATOR")){this.token("TERMINATOR","\n")}return true};Lexer.prototype.suppressNewlines=function(){if(this.value()==="\\"){this.tokens.pop()}return true};Lexer.prototype.literalToken=function(){var match,prevSpaced,space,tag,value;match=this.chunk.match(OPERATOR);value=match&&match[1];space=match&&match[2];if(value&&value.match(CODE)){this.tagParameters()}value=value||this.chunk.substr(0,1);prevSpaced=this.prev()&&this.prev().spaced;tag=value;if(value.match(ASSIGNMENT)){tag="ASSIGN";if(include(JS_FORBIDDEN,this.value)){this.assignmentError()}}else{if(value===";"){tag="TERMINATOR"}else{if(value==="?"&&prevSpaced){tag="OP?"}else{if(include(CALLABLE,this.tag())&&!prevSpaced){if(value==="("){tag="CALL_START"}else{if(value==="["){tag="INDEX_START";if(this.tag()==="?"){this.tag(1,"INDEX_SOAK")}if(this.tag()==="::"){this.tag(1,"INDEX_PROTO")}}}}}}}this.i+=value.length;if(space&&prevSpaced&&this.prev()[0]==="ASSIGN"&&include(HALF_ASSIGNMENTS,tag)){return this.tagHalfAssignment(tag)}this.token(tag,value);return true};Lexer.prototype.tagAccessor=function(){var accessor,prev;if((!(prev=this.prev()))||(prev&&prev.spaced)){return false}accessor=(function(){if(prev[1]==="::"){return this.tag(1,"PROTOTYPE_ACCESS")}else{if(prev[1]==="."&&!(this.value(2)===".")){if(this.tag(2)==="?"){this.tag(1,"SOAK_ACCESS");return this.tokens.splice(-2,1)}else{return this.tag(1,"PROPERTY_ACCESS")}}else{return prev[0]==="@"}}}).call(this);return accessor?"accessor":false};Lexer.prototype.sanitizeHeredoc=function(doc,options){var _d,attempt,indent,match;while(match=HEREDOC_INDENT.exec(doc)){attempt=(typeof(_d=match[2])!=="undefined"&&_d!==null)?match[2]:match[3];if(!indent||attempt.length1;if(interpolated){this.token("(","(")}_h=tokens;for(i=0,_i=_h.length;i<_i;i++){token=_h[i];_j=token;tag=_j[0];value=_j[1];if(tag==="TOKENS"){this.tokens=this.tokens.concat(value)}else{if(tag==="STRING"&&escapeQuotes){escaped=value.substring(1,value.length-1).replace(/"/g,'\\"');this.token(tag,('"'+escaped+'"'))}else{this.token(tag,value)}}if(i]?|\+[+=]?|[*&|\/%=<>:!?]+)([ \t]*)/;WHITESPACE=/^([ \t]+)/;COMMENT=/^(\s*#{3}(?!#)[ \t]*\n+([\s\S]*?)[ \t]*\n+[ \t]*#{3}|(\s*#(?!##[^#])[^\n]*)+)/;CODE=/^((-|=)>)/;MULTI_DENT=/^((\n([ \t]*))+)(\.)?/;LAST_DENTS=/\n([ \t]*)/g;LAST_DENT=/\n([ \t]*)/;ASSIGNMENT=/^[:=]$/;REGEX_START=/^\/[^\/ ]/;REGEX_INTERPOLATION=/([^\\]\$[a-zA-Z_@]|[^\\]\$\{.*[^\\]\})/;REGEX_END=/^(([imgy]{1,4})\b|\W|$)/;REGEX_ESCAPE=/\\[^\$]/g;JS_CLEANER=/(^`|`$)/g;MULTILINER=/\n/g;STRING_NEWLINES=/\n[ \t]*/g;NO_NEWLINE=/^([+\*&|\/\-%=<>:!.\\][<>=&|]*|and|or|is|isnt|not|delete|typeof|instanceof)$/;HEREDOC_INDENT=/(\n+([ \t]*)|^([ \t]+))/g;ASSIGNED=/^([a-zA-Z\$_]\w*[ \t]*?[:=][^=])/;NEXT_CHARACTER=/^\s*(\S)/;NOT_REGEX=["NUMBER","REGEX","++","--","FALSE","NULL","TRUE","]"];CALLABLE=["IDENTIFIER","SUPER",")","]","}","STRING","@","THIS","?","::"];LINE_BREAK=["INDENT","OUTDENT","TERMINATOR"];HALF_ASSIGNMENTS=["-","+","/","*","%","||","&&","?","OP?"];CONVERSIONS={and:"&&",or:"||",is:"==",isnt:"!=",not:"!"}})();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,Value:14,Call:15,Code:16,Operation:17,Assign:18,If:19,Try:20,While:21,For:22,Switch:23,Extends:24,Class:25,Splat:26,Existence:27,Comment:28,INDENT:29,OUTDENT:30,Identifier:31,IDENTIFIER:32,AlphaNumeric:33,NUMBER:34,STRING:35,Literal:36,JS:37,REGEX:38,TRUE:39,FALSE:40,YES:41,NO:42,ON:43,OFF:44,Assignable:45,ASSIGN:46,AssignObj:47,RETURN:48,HERECOMMENT:49,"?":50,PARAM_START:51,ParamList:52,PARAM_END:53,FuncGlyph:54,"->":55,"=>":56,OptComma:57,",":58,Param:59,PARAM:60,".":61,SimpleAssignable:62,Accessor:63,Invocation:64,ThisProperty:65,Array:66,Object:67,Parenthetical:68,Range:69,This:70,NULL:71,PROPERTY_ACCESS:72,PROTOTYPE_ACCESS:73,"::":74,SOAK_ACCESS:75,Index:76,Slice:77,INDEX_START:78,INDEX_END:79,INDEX_SOAK:80,INDEX_PROTO:81,"{":82,AssignList:83,"}":84,CLASS:85,EXTENDS:86,ClassBody:87,ClassAssign:88,Super:89,NEW:90,Arguments:91,CALL_START:92,ArgList:93,CALL_END:94,SUPER:95,THIS:96,"@":97,"[":98,"]":99,SimpleArgs:100,TRY:101,Catch:102,FINALLY:103,CATCH:104,THROW:105,"(":106,")":107,WhileSource:108,WHILE:109,WHEN:110,UNTIL:111,Loop:112,LOOP:113,FOR:114,ForVariables:115,ForSource:116,ForValue:117,IN:118,OF:119,BY:120,SWITCH:121,Whens:122,ELSE:123,When:124,LEADING_WHEN:125,IfBlock:126,IF:127,UNLESS:128,"!":129,"!!":130,"-":131,"+":132,"~":133,"--":134,"++":135,DELETE:136,TYPEOF:137,"*":138,"/":139,"%":140,"<<":141,">>":142,">>>":143,"&":144,"|":145,"^":146,"<=":147,"<":148,">":149,">=":150,"==":151,"!=":152,"&&":153,"||":154,"OP?":155,"-=":156,"+=":157,"/=":158,"*=":159,"%=":160,"||=":161,"&&=":162,"?=":163,INSTANCEOF:164,"$accept":0,"$end":1},terminals_:{"2":"error","4":"TERMINATOR","12":"BREAK","13":"CONTINUE","29":"INDENT","30":"OUTDENT","32":"IDENTIFIER","34":"NUMBER","35":"STRING","37":"JS","38":"REGEX","39":"TRUE","40":"FALSE","41":"YES","42":"NO","43":"ON","44":"OFF","46":"ASSIGN","48":"RETURN","49":"HERECOMMENT","50":"?","51":"PARAM_START","53":"PARAM_END","55":"->","56":"=>","58":",","60":"PARAM","61":".","71":"NULL","72":"PROPERTY_ACCESS","73":"PROTOTYPE_ACCESS","74":"::","75":"SOAK_ACCESS","78":"INDEX_START","79":"INDEX_END","80":"INDEX_SOAK","81":"INDEX_PROTO","82":"{","84":"}","85":"CLASS","86":"EXTENDS","90":"NEW","92":"CALL_START","94":"CALL_END","95":"SUPER","96":"THIS","97":"@","98":"[","99":"]","101":"TRY","103":"FINALLY","104":"CATCH","105":"THROW","106":"(","107":")","109":"WHILE","110":"WHEN","111":"UNTIL","113":"LOOP","114":"FOR","118":"IN","119":"OF","120":"BY","121":"SWITCH","123":"ELSE","125":"LEADING_WHEN","127":"IF","128":"UNLESS","129":"!","130":"!!","131":"-","132":"+","133":"~","134":"--","135":"++","136":"DELETE","137":"TYPEOF","138":"*","139":"/","140":"%","141":"<<","142":">>","143":">>>","144":"&","145":"|","146":"^","147":"<=","148":"<","149":">","150":">=","151":"==","152":"!=","153":"&&","154":"||","155":"OP?","156":"-=","157":"+=","158":"/=","159":"*=","160":"%=","161":"||=","162":"&&=","163":"?=","164":"INSTANCEOF"},productions_:[0,[3,0],[3,1],[3,1],[3,2],[5,1],[5,3],[5,2],[7,1],[7,1],[9,1],[9,1],[9,1],[9,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[8,1],[6,3],[6,2],[6,2],[31,1],[33,1],[33,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[36,1],[18,3],[47,1],[47,1],[47,3],[47,3],[47,1],[10,2],[10,1],[28,1],[27,2],[16,5],[16,2],[54,1],[54,1],[57,0],[57,1],[52,0],[52,1],[52,3],[59,1],[59,4],[26,4],[62,1],[62,2],[62,2],[62,1],[45,1],[45,1],[45,1],[14,1],[14,1],[14,1],[14,1],[14,1],[14,1],[63,2],[63,2],[63,1],[63,2],[63,1],[63,1],[76,3],[76,2],[76,2],[67,4],[83,0],[83,1],[83,3],[83,4],[83,6],[25,2],[25,4],[25,5],[25,7],[88,1],[88,3],[87,0],[87,1],[87,3],[15,1],[15,1],[15,2],[15,2],[24,3],[64,2],[64,2],[91,4],[89,2],[70,1],[70,1],[65,2],[69,6],[69,7],[77,6],[77,7],[66,4],[93,0],[93,1],[93,3],[93,4],[93,6],[100,1],[100,3],[20,3],[20,4],[20,5],[102,3],[11,2],[68,3],[108,2],[108,4],[108,2],[108,4],[21,2],[21,2],[21,2],[21,1],[112,2],[112,2],[22,4],[22,4],[22,4],[117,1],[117,1],[117,1],[115,1],[115,3],[116,2],[116,2],[116,4],[116,4],[116,4],[116,6],[116,6],[23,5],[23,7],[23,4],[23,6],[122,1],[122,2],[124,3],[124,4],[126,3],[126,3],[126,5],[126,3],[19,1],[19,3],[19,3],[19,3],[19,3],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,2],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,3],[17,4],[17,4]],performAction:function anonymous(yytext,yyleng,yylineno,yy){var $$=arguments[5],$0=arguments[5].length;switch(arguments[4]){case 1:return this.$=new Expressions();break;case 2:return this.$=new Expressions();break;case 3:return this.$=$$[$0-1+1-1];break;case 4:return this.$=$$[$0-2+1-1];break;case 5:this.$=Expressions.wrap([$$[$0-1+1-1]]);break;case 6:this.$=$$[$0-3+1-1].push($$[$0-3+3-1]);break;case 7:this.$=$$[$0-2+1-1];break;case 8:this.$=$$[$0-1+1-1];break;case 9:this.$=$$[$0-1+1-1];break;case 10:this.$=$$[$0-1+1-1];break;case 11:this.$=$$[$0-1+1-1];break;case 12:this.$=new LiteralNode($$[$0-1+1-1]);break;case 13:this.$=new LiteralNode($$[$0-1+1-1]);break;case 14:this.$=$$[$0-1+1-1];break;case 15:this.$=$$[$0-1+1-1];break;case 16:this.$=$$[$0-1+1-1];break;case 17:this.$=$$[$0-1+1-1];break;case 18:this.$=$$[$0-1+1-1];break;case 19:this.$=$$[$0-1+1-1];break;case 20:this.$=$$[$0-1+1-1];break;case 21:this.$=$$[$0-1+1-1];break;case 22:this.$=$$[$0-1+1-1];break;case 23:this.$=$$[$0-1+1-1];break;case 24:this.$=$$[$0-1+1-1];break;case 25:this.$=$$[$0-1+1-1];break;case 26:this.$=$$[$0-1+1-1];break;case 27:this.$=$$[$0-1+1-1];break;case 28:this.$=$$[$0-1+1-1];break;case 29:this.$=$$[$0-3+2-1];break;case 30:this.$=new Expressions();break;case 31:this.$=Expressions.wrap([$$[$0-2+2-1]]);break;case 32:this.$=new LiteralNode($$[$0-1+1-1]);break;case 33:this.$=new LiteralNode($$[$0-1+1-1]);break;case 34:this.$=new LiteralNode($$[$0-1+1-1]);break;case 35:this.$=$$[$0-1+1-1];break;case 36:this.$=new LiteralNode($$[$0-1+1-1]);break;case 37:this.$=new LiteralNode($$[$0-1+1-1]);break;case 38:this.$=new LiteralNode(true);break;case 39:this.$=new LiteralNode(false);break;case 40:this.$=new LiteralNode(true);break;case 41:this.$=new LiteralNode(false);break;case 42:this.$=new LiteralNode(true);break;case 43:this.$=new LiteralNode(false);break;case 44:this.$=new AssignNode($$[$0-3+1-1],$$[$0-3+3-1]);break;case 45:this.$=new ValueNode($$[$0-1+1-1]);break;case 46:this.$=$$[$0-1+1-1];break;case 47:this.$=new AssignNode(new ValueNode($$[$0-3+1-1]),$$[$0-3+3-1],"object");break;case 48:this.$=new AssignNode(new ValueNode($$[$0-3+1-1]),$$[$0-3+3-1],"object");break;case 49:this.$=$$[$0-1+1-1];break;case 50:this.$=new ReturnNode($$[$0-2+2-1]);break;case 51:this.$=new ReturnNode(new ValueNode(new LiteralNode("null")));break;case 52:this.$=new CommentNode($$[$0-1+1-1]);break;case 53:this.$=new ExistenceNode($$[$0-2+1-1]);break;case 54:this.$=new CodeNode($$[$0-5+2-1],$$[$0-5+5-1],$$[$0-5+4-1]);break;case 55:this.$=new CodeNode([],$$[$0-2+2-1],$$[$0-2+1-1]);break;case 56:this.$="func";break;case 57:this.$="boundfunc";break;case 58:this.$=$$[$0-1+1-1];break;case 59:this.$=$$[$0-1+1-1];break;case 60:this.$=[];break;case 61:this.$=[$$[$0-1+1-1]];break;case 62:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 63:this.$=new LiteralNode($$[$0-1+1-1]);break;case 64:this.$=new SplatNode($$[$0-4+1-1]);break;case 65:this.$=new SplatNode($$[$0-4+1-1]);break;case 66:this.$=new ValueNode($$[$0-1+1-1]);break;case 67:this.$=$$[$0-2+1-1].push($$[$0-2+2-1]);break;case 68:this.$=new ValueNode($$[$0-2+1-1],[$$[$0-2+2-1]]);break;case 69:this.$=$$[$0-1+1-1];break;case 70:this.$=$$[$0-1+1-1];break;case 71:this.$=new ValueNode($$[$0-1+1-1]);break;case 72:this.$=new ValueNode($$[$0-1+1-1]);break;case 73:this.$=$$[$0-1+1-1];break;case 74:this.$=new ValueNode($$[$0-1+1-1]);break;case 75:this.$=new ValueNode($$[$0-1+1-1]);break;case 76:this.$=new ValueNode($$[$0-1+1-1]);break;case 77:this.$=$$[$0-1+1-1];break;case 78:this.$=new ValueNode(new LiteralNode("null"));break;case 79:this.$=new AccessorNode($$[$0-2+2-1]);break;case 80:this.$=new AccessorNode($$[$0-2+2-1],"prototype");break;case 81:this.$=new AccessorNode(new LiteralNode("prototype"));break;case 82:this.$=new AccessorNode($$[$0-2+2-1],"soak");break;case 83:this.$=$$[$0-1+1-1];break;case 84:this.$=new SliceNode($$[$0-1+1-1]);break;case 85:this.$=new IndexNode($$[$0-3+2-1]);break;case 86:this.$=(function(){$$[$0-2+2-1].soakNode=true;return $$[$0-2+2-1]}());break;case 87:this.$=(function(){$$[$0-2+2-1].proto=true;return $$[$0-2+2-1]}());break;case 88:this.$=new ObjectNode($$[$0-4+2-1]);break;case 89:this.$=[];break;case 90:this.$=[$$[$0-1+1-1]];break;case 91:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 92:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 93:this.$=$$[$0-6+1-1].concat($$[$0-6+4-1]);break;case 94:this.$=new ClassNode($$[$0-2+2-1]);break;case 95:this.$=new ClassNode($$[$0-4+2-1],$$[$0-4+4-1]);break;case 96:this.$=new ClassNode($$[$0-5+2-1],null,$$[$0-5+4-1]);break;case 97:this.$=new ClassNode($$[$0-7+2-1],$$[$0-7+4-1],$$[$0-7+6-1]);break;case 98:this.$=$$[$0-1+1-1];break;case 99:this.$=new AssignNode(new ValueNode($$[$0-3+1-1]),$$[$0-3+3-1],"this");break;case 100:this.$=[];break;case 101:this.$=[$$[$0-1+1-1]];break;case 102:this.$=$$[$0-3+1-1].concat($$[$0-3+3-1]);break;case 103:this.$=$$[$0-1+1-1];break;case 104:this.$=$$[$0-1+1-1];break;case 105:this.$=$$[$0-2+2-1].newInstance();break;case 106:this.$=(new CallNode($$[$0-2+2-1],[])).newInstance();break;case 107:this.$=new ExtendsNode($$[$0-3+1-1],$$[$0-3+3-1]);break;case 108:this.$=new CallNode($$[$0-2+1-1],$$[$0-2+2-1]);break;case 109:this.$=new CallNode($$[$0-2+1-1],$$[$0-2+2-1]);break;case 110:this.$=$$[$0-4+2-1];break;case 111:this.$=new CallNode("super",$$[$0-2+2-1]);break;case 112:this.$=new ValueNode(new LiteralNode("this"));break;case 113:this.$=new ValueNode(new LiteralNode("this"));break;case 114:this.$=new ValueNode(new LiteralNode("this"),[new AccessorNode($$[$0-2+2-1])]);break;case 115:this.$=new RangeNode($$[$0-6+2-1],$$[$0-6+5-1]);break;case 116:this.$=new RangeNode($$[$0-7+2-1],$$[$0-7+6-1],true);break;case 117:this.$=new RangeNode($$[$0-6+2-1],$$[$0-6+5-1]);break;case 118:this.$=new RangeNode($$[$0-7+2-1],$$[$0-7+6-1],true);break;case 119:this.$=new ArrayNode($$[$0-4+2-1]);break;case 120:this.$=[];break;case 121:this.$=[$$[$0-1+1-1]];break;case 122:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 123:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-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-3+1-1] instanceof Array?$$[$0-3+1-1].concat([$$[$0-3+3-1]]):[$$[$0-3+1-1]].concat([$$[$0-3+3-1]]);break;case 127:this.$=new TryNode($$[$0-3+2-1],$$[$0-3+3-1][0],$$[$0-3+3-1][1]);break;case 128:this.$=new TryNode($$[$0-4+2-1],null,null,$$[$0-4+4-1]);break;case 129:this.$=new TryNode($$[$0-5+2-1],$$[$0-5+3-1][0],$$[$0-5+3-1][1],$$[$0-5+5-1]);break;case 130:this.$=[$$[$0-3+2-1],$$[$0-3+3-1]];break;case 131:this.$=new ThrowNode($$[$0-2+2-1]);break;case 132:this.$=new ParentheticalNode($$[$0-3+2-1]);break;case 133:this.$=new WhileNode($$[$0-2+2-1]);break;case 134:this.$=new WhileNode($$[$0-4+2-1],{guard:$$[$0-4+4-1]});break;case 135:this.$=new WhileNode($$[$0-2+2-1],{invert:true});break;case 136:this.$=new WhileNode($$[$0-4+2-1],{invert:true,guard:$$[$0-4+4-1]});break;case 137:this.$=$$[$0-2+1-1].addBody($$[$0-2+2-1]);break;case 138:this.$=$$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]]));break;case 139:this.$=$$[$0-2+2-1].addBody(Expressions.wrap([$$[$0-2+1-1]]));break;case 140:this.$=$$[$0-1+1-1];break;case 141:this.$=new WhileNode(new LiteralNode("true")).addBody($$[$0-2+2-1]);break;case 142:this.$=new WhileNode(new LiteralNode("true")).addBody(Expressions.wrap([$$[$0-2+2-1]]));break;case 143:this.$=new ForNode($$[$0-4+1-1],$$[$0-4+4-1],$$[$0-4+3-1][0],$$[$0-4+3-1][1]);break;case 144:this.$=new ForNode($$[$0-4+1-1],$$[$0-4+4-1],$$[$0-4+3-1][0],$$[$0-4+3-1][1]);break;case 145:this.$=new ForNode($$[$0-4+4-1],$$[$0-4+3-1],$$[$0-4+2-1][0],$$[$0-4+2-1][1]);break;case 146:this.$=$$[$0-1+1-1];break;case 147:this.$=new ValueNode($$[$0-1+1-1]);break;case 148:this.$=new ValueNode($$[$0-1+1-1]);break;case 149:this.$=[$$[$0-1+1-1]];break;case 150:this.$=[$$[$0-3+1-1],$$[$0-3+3-1]];break;case 151:this.$={source:$$[$0-2+2-1]};break;case 152:this.$={source:$$[$0-2+2-1],object:true};break;case 153:this.$={source:$$[$0-4+2-1],guard:$$[$0-4+4-1]};break;case 154:this.$={source:$$[$0-4+2-1],guard:$$[$0-4+4-1],object:true};break;case 155:this.$={source:$$[$0-4+2-1],step:$$[$0-4+4-1]};break;case 156:this.$={source:$$[$0-6+2-1],guard:$$[$0-6+4-1],step:$$[$0-6+6-1]};break;case 157:this.$={source:$$[$0-6+2-1],step:$$[$0-6+4-1],guard:$$[$0-6+6-1]};break;case 158:this.$=$$[$0-5+4-1].switchesOver($$[$0-5+2-1]);break;case 159:this.$=$$[$0-7+4-1].switchesOver($$[$0-7+2-1]).addElse($$[$0-7+6-1],true);break;case 160:this.$=$$[$0-4+3-1];break;case 161:this.$=$$[$0-6+3-1].addElse($$[$0-6+5-1],true);break;case 162:this.$=$$[$0-1+1-1];break;case 163:this.$=$$[$0-2+1-1].addElse($$[$0-2+2-1]);break;case 164:this.$=new IfNode($$[$0-3+2-1],$$[$0-3+3-1],{statement:true});break;case 165:this.$=new IfNode($$[$0-4+2-1],$$[$0-4+3-1],{statement:true});break;case 166:this.$=new IfNode($$[$0-3+2-1],$$[$0-3+3-1]);break;case 167:this.$=new IfNode($$[$0-3+2-1],$$[$0-3+3-1],{invert:true});break;case 168:this.$=$$[$0-5+1-1].addElse((new IfNode($$[$0-5+4-1],$$[$0-5+5-1])).forceStatement());break;case 169:this.$=$$[$0-3+1-1].addElse($$[$0-3+3-1]);break;case 170:this.$=$$[$0-1+1-1];break;case 171:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),{statement:true});break;case 172:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),{statement:true});break;case 173:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),{statement:true,invert:true});break;case 174:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),{statement:true,invert:true});break;case 175:this.$=new OpNode("!",$$[$0-2+2-1]);break;case 176:this.$=new OpNode("!!",$$[$0-2+2-1]);break;case 177:this.$=new OpNode("-",$$[$0-2+2-1]);break;case 178:this.$=new OpNode("+",$$[$0-2+2-1]);break;case 179:this.$=new OpNode("~",$$[$0-2+2-1]);break;case 180:this.$=new OpNode("--",$$[$0-2+2-1]);break;case 181:this.$=new OpNode("++",$$[$0-2+2-1]);break;case 182:this.$=new OpNode("delete",$$[$0-2+2-1]);break;case 183:this.$=new OpNode("typeof",$$[$0-2+2-1]);break;case 184:this.$=new OpNode("--",$$[$0-2+1-1],null,true);break;case 185:this.$=new OpNode("++",$$[$0-2+1-1],null,true);break;case 186:this.$=new OpNode("*",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 187:this.$=new OpNode("/",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 188:this.$=new OpNode("%",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 189:this.$=new OpNode("+",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 190:this.$=new OpNode("-",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 191:this.$=new OpNode("<<",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 192:this.$=new OpNode(">>",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 193:this.$=new OpNode(">>>",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 194:this.$=new OpNode("&",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 195:this.$=new OpNode("|",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 196:this.$=new OpNode("^",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 197:this.$=new OpNode("<=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 198:this.$=new OpNode("<",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 199:this.$=new OpNode(">",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 200:this.$=new OpNode(">=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 201:this.$=new OpNode("==",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 202:this.$=new OpNode("!=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 203:this.$=new OpNode("&&",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 204:this.$=new OpNode("||",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 205:this.$=new OpNode("?",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 206:this.$=new OpNode("-=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 207:this.$=new OpNode("+=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 208:this.$=new OpNode("/=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 209:this.$=new OpNode("*=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 210:this.$=new OpNode("%=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 211:this.$=new OpNode("||=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 212:this.$=new OpNode("&&=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 213:this.$=new OpNode("?=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 214:this.$=new OpNode("instanceof",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 215:this.$=new InNode($$[$0-3+1-1],$$[$0-3+3-1]);break;case 216:this.$=new OpNode("in",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 217:this.$=new OpNode("!",new InNode($$[$0-4+1-1],$$[$0-4+4-1]));break;case 218:this.$=new OpNode("!",new ParentheticalNode(new OpNode("in",$$[$0-4+1-1],$$[$0-4+4-1])));break}},table:[{"1":[2,1],"3":1,"4":[1,2],"5":3,"6":4,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[3]},{"1":[2,2],"28":88,"49":[1,56]},{"1":[2,3],"4":[1,89]},{"4":[1,90]},{"1":[2,5],"4":[2,5],"30":[2,5]},{"5":91,"7":5,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[1,92],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,8],"4":[2,8],"30":[2,8],"50":[1,132],"61":[1,131],"107":[2,8],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,9],"4":[2,9],"30":[2,9],"107":[2,9],"108":135,"109":[1,79],"111":[1,80],"114":[1,136],"127":[1,133],"128":[1,134]},{"1":[2,14],"4":[2,14],"29":[2,14],"30":[2,14],"50":[2,14],"58":[2,14],"61":[2,14],"63":138,"72":[1,140],"73":[1,141],"74":[1,142],"75":[1,143],"76":144,"77":145,"78":[1,146],"79":[2,14],"80":[1,147],"81":[1,148],"84":[2,14],"91":137,"92":[1,139],"94":[2,14],"99":[2,14],"107":[2,14],"109":[2,14],"110":[2,14],"111":[2,14],"114":[2,14],"118":[2,14],"119":[2,14],"120":[2,14],"127":[2,14],"128":[2,14],"129":[2,14],"131":[2,14],"132":[2,14],"134":[2,14],"135":[2,14],"138":[2,14],"139":[2,14],"140":[2,14],"141":[2,14],"142":[2,14],"143":[2,14],"144":[2,14],"145":[2,14],"146":[2,14],"147":[2,14],"148":[2,14],"149":[2,14],"150":[2,14],"151":[2,14],"152":[2,14],"153":[2,14],"154":[2,14],"155":[2,14],"156":[2,14],"157":[2,14],"158":[2,14],"159":[2,14],"160":[2,14],"161":[2,14],"162":[2,14],"163":[2,14],"164":[2,14]},{"1":[2,15],"4":[2,15],"29":[2,15],"30":[2,15],"50":[2,15],"58":[2,15],"61":[2,15],"79":[2,15],"84":[2,15],"94":[2,15],"99":[2,15],"107":[2,15],"109":[2,15],"110":[2,15],"111":[2,15],"114":[2,15],"118":[2,15],"119":[2,15],"120":[2,15],"127":[2,15],"128":[2,15],"129":[2,15],"131":[2,15],"132":[2,15],"134":[2,15],"135":[2,15],"138":[2,15],"139":[2,15],"140":[2,15],"141":[2,15],"142":[2,15],"143":[2,15],"144":[2,15],"145":[2,15],"146":[2,15],"147":[2,15],"148":[2,15],"149":[2,15],"150":[2,15],"151":[2,15],"152":[2,15],"153":[2,15],"154":[2,15],"155":[2,15],"156":[2,15],"157":[2,15],"158":[2,15],"159":[2,15],"160":[2,15],"161":[2,15],"162":[2,15],"163":[2,15],"164":[2,15]},{"1":[2,16],"4":[2,16],"29":[2,16],"30":[2,16],"50":[2,16],"58":[2,16],"61":[2,16],"79":[2,16],"84":[2,16],"94":[2,16],"99":[2,16],"107":[2,16],"109":[2,16],"110":[2,16],"111":[2,16],"114":[2,16],"118":[2,16],"119":[2,16],"120":[2,16],"127":[2,16],"128":[2,16],"129":[2,16],"131":[2,16],"132":[2,16],"134":[2,16],"135":[2,16],"138":[2,16],"139":[2,16],"140":[2,16],"141":[2,16],"142":[2,16],"143":[2,16],"144":[2,16],"145":[2,16],"146":[2,16],"147":[2,16],"148":[2,16],"149":[2,16],"150":[2,16],"151":[2,16],"152":[2,16],"153":[2,16],"154":[2,16],"155":[2,16],"156":[2,16],"157":[2,16],"158":[2,16],"159":[2,16],"160":[2,16],"161":[2,16],"162":[2,16],"163":[2,16],"164":[2,16]},{"1":[2,17],"4":[2,17],"29":[2,17],"30":[2,17],"50":[2,17],"58":[2,17],"61":[2,17],"79":[2,17],"84":[2,17],"94":[2,17],"99":[2,17],"107":[2,17],"109":[2,17],"110":[2,17],"111":[2,17],"114":[2,17],"118":[2,17],"119":[2,17],"120":[2,17],"127":[2,17],"128":[2,17],"129":[2,17],"131":[2,17],"132":[2,17],"134":[2,17],"135":[2,17],"138":[2,17],"139":[2,17],"140":[2,17],"141":[2,17],"142":[2,17],"143":[2,17],"144":[2,17],"145":[2,17],"146":[2,17],"147":[2,17],"148":[2,17],"149":[2,17],"150":[2,17],"151":[2,17],"152":[2,17],"153":[2,17],"154":[2,17],"155":[2,17],"156":[2,17],"157":[2,17],"158":[2,17],"159":[2,17],"160":[2,17],"161":[2,17],"162":[2,17],"163":[2,17],"164":[2,17]},{"1":[2,18],"4":[2,18],"29":[2,18],"30":[2,18],"50":[2,18],"58":[2,18],"61":[2,18],"79":[2,18],"84":[2,18],"94":[2,18],"99":[2,18],"107":[2,18],"109":[2,18],"110":[2,18],"111":[2,18],"114":[2,18],"118":[2,18],"119":[2,18],"120":[2,18],"127":[2,18],"128":[2,18],"129":[2,18],"131":[2,18],"132":[2,18],"134":[2,18],"135":[2,18],"138":[2,18],"139":[2,18],"140":[2,18],"141":[2,18],"142":[2,18],"143":[2,18],"144":[2,18],"145":[2,18],"146":[2,18],"147":[2,18],"148":[2,18],"149":[2,18],"150":[2,18],"151":[2,18],"152":[2,18],"153":[2,18],"154":[2,18],"155":[2,18],"156":[2,18],"157":[2,18],"158":[2,18],"159":[2,18],"160":[2,18],"161":[2,18],"162":[2,18],"163":[2,18],"164":[2,18]},{"1":[2,19],"4":[2,19],"29":[2,19],"30":[2,19],"50":[2,19],"58":[2,19],"61":[2,19],"79":[2,19],"84":[2,19],"94":[2,19],"99":[2,19],"107":[2,19],"109":[2,19],"110":[2,19],"111":[2,19],"114":[2,19],"118":[2,19],"119":[2,19],"120":[2,19],"127":[2,19],"128":[2,19],"129":[2,19],"131":[2,19],"132":[2,19],"134":[2,19],"135":[2,19],"138":[2,19],"139":[2,19],"140":[2,19],"141":[2,19],"142":[2,19],"143":[2,19],"144":[2,19],"145":[2,19],"146":[2,19],"147":[2,19],"148":[2,19],"149":[2,19],"150":[2,19],"151":[2,19],"152":[2,19],"153":[2,19],"154":[2,19],"155":[2,19],"156":[2,19],"157":[2,19],"158":[2,19],"159":[2,19],"160":[2,19],"161":[2,19],"162":[2,19],"163":[2,19],"164":[2,19]},{"1":[2,20],"4":[2,20],"29":[2,20],"30":[2,20],"50":[2,20],"58":[2,20],"61":[2,20],"79":[2,20],"84":[2,20],"94":[2,20],"99":[2,20],"107":[2,20],"109":[2,20],"110":[2,20],"111":[2,20],"114":[2,20],"118":[2,20],"119":[2,20],"120":[2,20],"127":[2,20],"128":[2,20],"129":[2,20],"131":[2,20],"132":[2,20],"134":[2,20],"135":[2,20],"138":[2,20],"139":[2,20],"140":[2,20],"141":[2,20],"142":[2,20],"143":[2,20],"144":[2,20],"145":[2,20],"146":[2,20],"147":[2,20],"148":[2,20],"149":[2,20],"150":[2,20],"151":[2,20],"152":[2,20],"153":[2,20],"154":[2,20],"155":[2,20],"156":[2,20],"157":[2,20],"158":[2,20],"159":[2,20],"160":[2,20],"161":[2,20],"162":[2,20],"163":[2,20],"164":[2,20]},{"1":[2,21],"4":[2,21],"29":[2,21],"30":[2,21],"50":[2,21],"58":[2,21],"61":[2,21],"79":[2,21],"84":[2,21],"94":[2,21],"99":[2,21],"107":[2,21],"109":[2,21],"110":[2,21],"111":[2,21],"114":[2,21],"118":[2,21],"119":[2,21],"120":[2,21],"127":[2,21],"128":[2,21],"129":[2,21],"131":[2,21],"132":[2,21],"134":[2,21],"135":[2,21],"138":[2,21],"139":[2,21],"140":[2,21],"141":[2,21],"142":[2,21],"143":[2,21],"144":[2,21],"145":[2,21],"146":[2,21],"147":[2,21],"148":[2,21],"149":[2,21],"150":[2,21],"151":[2,21],"152":[2,21],"153":[2,21],"154":[2,21],"155":[2,21],"156":[2,21],"157":[2,21],"158":[2,21],"159":[2,21],"160":[2,21],"161":[2,21],"162":[2,21],"163":[2,21],"164":[2,21]},{"1":[2,22],"4":[2,22],"29":[2,22],"30":[2,22],"50":[2,22],"58":[2,22],"61":[2,22],"79":[2,22],"84":[2,22],"94":[2,22],"99":[2,22],"107":[2,22],"109":[2,22],"110":[2,22],"111":[2,22],"114":[2,22],"118":[2,22],"119":[2,22],"120":[2,22],"127":[2,22],"128":[2,22],"129":[2,22],"131":[2,22],"132":[2,22],"134":[2,22],"135":[2,22],"138":[2,22],"139":[2,22],"140":[2,22],"141":[2,22],"142":[2,22],"143":[2,22],"144":[2,22],"145":[2,22],"146":[2,22],"147":[2,22],"148":[2,22],"149":[2,22],"150":[2,22],"151":[2,22],"152":[2,22],"153":[2,22],"154":[2,22],"155":[2,22],"156":[2,22],"157":[2,22],"158":[2,22],"159":[2,22],"160":[2,22],"161":[2,22],"162":[2,22],"163":[2,22],"164":[2,22]},{"1":[2,23],"4":[2,23],"29":[2,23],"30":[2,23],"50":[2,23],"58":[2,23],"61":[2,23],"79":[2,23],"84":[2,23],"94":[2,23],"99":[2,23],"107":[2,23],"109":[2,23],"110":[2,23],"111":[2,23],"114":[2,23],"118":[2,23],"119":[2,23],"120":[2,23],"127":[2,23],"128":[2,23],"129":[2,23],"131":[2,23],"132":[2,23],"134":[2,23],"135":[2,23],"138":[2,23],"139":[2,23],"140":[2,23],"141":[2,23],"142":[2,23],"143":[2,23],"144":[2,23],"145":[2,23],"146":[2,23],"147":[2,23],"148":[2,23],"149":[2,23],"150":[2,23],"151":[2,23],"152":[2,23],"153":[2,23],"154":[2,23],"155":[2,23],"156":[2,23],"157":[2,23],"158":[2,23],"159":[2,23],"160":[2,23],"161":[2,23],"162":[2,23],"163":[2,23],"164":[2,23]},{"1":[2,24],"4":[2,24],"29":[2,24],"30":[2,24],"50":[2,24],"58":[2,24],"61":[2,24],"79":[2,24],"84":[2,24],"94":[2,24],"99":[2,24],"107":[2,24],"109":[2,24],"110":[2,24],"111":[2,24],"114":[2,24],"118":[2,24],"119":[2,24],"120":[2,24],"127":[2,24],"128":[2,24],"129":[2,24],"131":[2,24],"132":[2,24],"134":[2,24],"135":[2,24],"138":[2,24],"139":[2,24],"140":[2,24],"141":[2,24],"142":[2,24],"143":[2,24],"144":[2,24],"145":[2,24],"146":[2,24],"147":[2,24],"148":[2,24],"149":[2,24],"150":[2,24],"151":[2,24],"152":[2,24],"153":[2,24],"154":[2,24],"155":[2,24],"156":[2,24],"157":[2,24],"158":[2,24],"159":[2,24],"160":[2,24],"161":[2,24],"162":[2,24],"163":[2,24],"164":[2,24]},{"1":[2,25],"4":[2,25],"29":[2,25],"30":[2,25],"50":[2,25],"58":[2,25],"61":[2,25],"79":[2,25],"84":[2,25],"94":[2,25],"99":[2,25],"107":[2,25],"109":[2,25],"110":[2,25],"111":[2,25],"114":[2,25],"118":[2,25],"119":[2,25],"120":[2,25],"127":[2,25],"128":[2,25],"129":[2,25],"131":[2,25],"132":[2,25],"134":[2,25],"135":[2,25],"138":[2,25],"139":[2,25],"140":[2,25],"141":[2,25],"142":[2,25],"143":[2,25],"144":[2,25],"145":[2,25],"146":[2,25],"147":[2,25],"148":[2,25],"149":[2,25],"150":[2,25],"151":[2,25],"152":[2,25],"153":[2,25],"154":[2,25],"155":[2,25],"156":[2,25],"157":[2,25],"158":[2,25],"159":[2,25],"160":[2,25],"161":[2,25],"162":[2,25],"163":[2,25],"164":[2,25]},{"1":[2,26],"4":[2,26],"29":[2,26],"30":[2,26],"50":[2,26],"58":[2,26],"61":[2,26],"79":[2,26],"84":[2,26],"94":[2,26],"99":[2,26],"107":[2,26],"109":[2,26],"110":[2,26],"111":[2,26],"114":[2,26],"118":[2,26],"119":[2,26],"120":[2,26],"127":[2,26],"128":[2,26],"129":[2,26],"131":[2,26],"132":[2,26],"134":[2,26],"135":[2,26],"138":[2,26],"139":[2,26],"140":[2,26],"141":[2,26],"142":[2,26],"143":[2,26],"144":[2,26],"145":[2,26],"146":[2,26],"147":[2,26],"148":[2,26],"149":[2,26],"150":[2,26],"151":[2,26],"152":[2,26],"153":[2,26],"154":[2,26],"155":[2,26],"156":[2,26],"157":[2,26],"158":[2,26],"159":[2,26],"160":[2,26],"161":[2,26],"162":[2,26],"163":[2,26],"164":[2,26]},{"1":[2,27],"4":[2,27],"29":[2,27],"30":[2,27],"50":[2,27],"58":[2,27],"61":[2,27],"79":[2,27],"84":[2,27],"94":[2,27],"99":[2,27],"107":[2,27],"109":[2,27],"110":[2,27],"111":[2,27],"114":[2,27],"118":[2,27],"119":[2,27],"120":[2,27],"127":[2,27],"128":[2,27],"129":[2,27],"131":[2,27],"132":[2,27],"134":[2,27],"135":[2,27],"138":[2,27],"139":[2,27],"140":[2,27],"141":[2,27],"142":[2,27],"143":[2,27],"144":[2,27],"145":[2,27],"146":[2,27],"147":[2,27],"148":[2,27],"149":[2,27],"150":[2,27],"151":[2,27],"152":[2,27],"153":[2,27],"154":[2,27],"155":[2,27],"156":[2,27],"157":[2,27],"158":[2,27],"159":[2,27],"160":[2,27],"161":[2,27],"162":[2,27],"163":[2,27],"164":[2,27]},{"1":[2,28],"4":[2,28],"29":[2,28],"30":[2,28],"50":[2,28],"58":[2,28],"61":[2,28],"79":[2,28],"84":[2,28],"94":[2,28],"99":[2,28],"107":[2,28],"109":[2,28],"110":[2,28],"111":[2,28],"114":[2,28],"118":[2,28],"119":[2,28],"120":[2,28],"127":[2,28],"128":[2,28],"129":[2,28],"131":[2,28],"132":[2,28],"134":[2,28],"135":[2,28],"138":[2,28],"139":[2,28],"140":[2,28],"141":[2,28],"142":[2,28],"143":[2,28],"144":[2,28],"145":[2,28],"146":[2,28],"147":[2,28],"148":[2,28],"149":[2,28],"150":[2,28],"151":[2,28],"152":[2,28],"153":[2,28],"154":[2,28],"155":[2,28],"156":[2,28],"157":[2,28],"158":[2,28],"159":[2,28],"160":[2,28],"161":[2,28],"162":[2,28],"163":[2,28],"164":[2,28]},{"1":[2,10],"4":[2,10],"30":[2,10],"107":[2,10],"109":[2,10],"111":[2,10],"114":[2,10],"127":[2,10],"128":[2,10]},{"1":[2,11],"4":[2,11],"30":[2,11],"107":[2,11],"109":[2,11],"111":[2,11],"114":[2,11],"127":[2,11],"128":[2,11]},{"1":[2,12],"4":[2,12],"30":[2,12],"107":[2,12],"109":[2,12],"111":[2,12],"114":[2,12],"127":[2,12],"128":[2,12]},{"1":[2,13],"4":[2,13],"30":[2,13],"107":[2,13],"109":[2,13],"111":[2,13],"114":[2,13],"127":[2,13],"128":[2,13]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"46":[1,149],"50":[2,73],"58":[2,73],"61":[2,73],"72":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"78":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"84":[2,73],"92":[2,73],"94":[2,73],"99":[2,73],"107":[2,73],"109":[2,73],"110":[2,73],"111":[2,73],"114":[2,73],"118":[2,73],"119":[2,73],"120":[2,73],"127":[2,73],"128":[2,73],"129":[2,73],"131":[2,73],"132":[2,73],"134":[2,73],"135":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73],"164":[2,73]},{"1":[2,74],"4":[2,74],"29":[2,74],"30":[2,74],"50":[2,74],"58":[2,74],"61":[2,74],"72":[2,74],"73":[2,74],"74":[2,74],"75":[2,74],"78":[2,74],"79":[2,74],"80":[2,74],"81":[2,74],"84":[2,74],"92":[2,74],"94":[2,74],"99":[2,74],"107":[2,74],"109":[2,74],"110":[2,74],"111":[2,74],"114":[2,74],"118":[2,74],"119":[2,74],"120":[2,74],"127":[2,74],"128":[2,74],"129":[2,74],"131":[2,74],"132":[2,74],"134":[2,74],"135":[2,74],"138":[2,74],"139":[2,74],"140":[2,74],"141":[2,74],"142":[2,74],"143":[2,74],"144":[2,74],"145":[2,74],"146":[2,74],"147":[2,74],"148":[2,74],"149":[2,74],"150":[2,74],"151":[2,74],"152":[2,74],"153":[2,74],"154":[2,74],"155":[2,74],"156":[2,74],"157":[2,74],"158":[2,74],"159":[2,74],"160":[2,74],"161":[2,74],"162":[2,74],"163":[2,74],"164":[2,74]},{"1":[2,75],"4":[2,75],"29":[2,75],"30":[2,75],"50":[2,75],"58":[2,75],"61":[2,75],"72":[2,75],"73":[2,75],"74":[2,75],"75":[2,75],"78":[2,75],"79":[2,75],"80":[2,75],"81":[2,75],"84":[2,75],"92":[2,75],"94":[2,75],"99":[2,75],"107":[2,75],"109":[2,75],"110":[2,75],"111":[2,75],"114":[2,75],"118":[2,75],"119":[2,75],"120":[2,75],"127":[2,75],"128":[2,75],"129":[2,75],"131":[2,75],"132":[2,75],"134":[2,75],"135":[2,75],"138":[2,75],"139":[2,75],"140":[2,75],"141":[2,75],"142":[2,75],"143":[2,75],"144":[2,75],"145":[2,75],"146":[2,75],"147":[2,75],"148":[2,75],"149":[2,75],"150":[2,75],"151":[2,75],"152":[2,75],"153":[2,75],"154":[2,75],"155":[2,75],"156":[2,75],"157":[2,75],"158":[2,75],"159":[2,75],"160":[2,75],"161":[2,75],"162":[2,75],"163":[2,75],"164":[2,75]},{"1":[2,76],"4":[2,76],"29":[2,76],"30":[2,76],"50":[2,76],"58":[2,76],"61":[2,76],"72":[2,76],"73":[2,76],"74":[2,76],"75":[2,76],"78":[2,76],"79":[2,76],"80":[2,76],"81":[2,76],"84":[2,76],"92":[2,76],"94":[2,76],"99":[2,76],"107":[2,76],"109":[2,76],"110":[2,76],"111":[2,76],"114":[2,76],"118":[2,76],"119":[2,76],"120":[2,76],"127":[2,76],"128":[2,76],"129":[2,76],"131":[2,76],"132":[2,76],"134":[2,76],"135":[2,76],"138":[2,76],"139":[2,76],"140":[2,76],"141":[2,76],"142":[2,76],"143":[2,76],"144":[2,76],"145":[2,76],"146":[2,76],"147":[2,76],"148":[2,76],"149":[2,76],"150":[2,76],"151":[2,76],"152":[2,76],"153":[2,76],"154":[2,76],"155":[2,76],"156":[2,76],"157":[2,76],"158":[2,76],"159":[2,76],"160":[2,76],"161":[2,76],"162":[2,76],"163":[2,76],"164":[2,76]},{"1":[2,77],"4":[2,77],"29":[2,77],"30":[2,77],"50":[2,77],"58":[2,77],"61":[2,77],"72":[2,77],"73":[2,77],"74":[2,77],"75":[2,77],"78":[2,77],"79":[2,77],"80":[2,77],"81":[2,77],"84":[2,77],"92":[2,77],"94":[2,77],"99":[2,77],"107":[2,77],"109":[2,77],"110":[2,77],"111":[2,77],"114":[2,77],"118":[2,77],"119":[2,77],"120":[2,77],"127":[2,77],"128":[2,77],"129":[2,77],"131":[2,77],"132":[2,77],"134":[2,77],"135":[2,77],"138":[2,77],"139":[2,77],"140":[2,77],"141":[2,77],"142":[2,77],"143":[2,77],"144":[2,77],"145":[2,77],"146":[2,77],"147":[2,77],"148":[2,77],"149":[2,77],"150":[2,77],"151":[2,77],"152":[2,77],"153":[2,77],"154":[2,77],"155":[2,77],"156":[2,77],"157":[2,77],"158":[2,77],"159":[2,77],"160":[2,77],"161":[2,77],"162":[2,77],"163":[2,77],"164":[2,77]},{"1":[2,78],"4":[2,78],"29":[2,78],"30":[2,78],"50":[2,78],"58":[2,78],"61":[2,78],"72":[2,78],"73":[2,78],"74":[2,78],"75":[2,78],"78":[2,78],"79":[2,78],"80":[2,78],"81":[2,78],"84":[2,78],"92":[2,78],"94":[2,78],"99":[2,78],"107":[2,78],"109":[2,78],"110":[2,78],"111":[2,78],"114":[2,78],"118":[2,78],"119":[2,78],"120":[2,78],"127":[2,78],"128":[2,78],"129":[2,78],"131":[2,78],"132":[2,78],"134":[2,78],"135":[2,78],"138":[2,78],"139":[2,78],"140":[2,78],"141":[2,78],"142":[2,78],"143":[2,78],"144":[2,78],"145":[2,78],"146":[2,78],"147":[2,78],"148":[2,78],"149":[2,78],"150":[2,78],"151":[2,78],"152":[2,78],"153":[2,78],"154":[2,78],"155":[2,78],"156":[2,78],"157":[2,78],"158":[2,78],"159":[2,78],"160":[2,78],"161":[2,78],"162":[2,78],"163":[2,78],"164":[2,78]},{"1":[2,103],"4":[2,103],"29":[2,103],"30":[2,103],"50":[2,103],"58":[2,103],"61":[2,103],"63":151,"72":[1,140],"73":[1,141],"74":[1,142],"75":[1,143],"76":144,"77":145,"78":[1,146],"79":[2,103],"80":[1,147],"81":[1,148],"84":[2,103],"91":150,"92":[1,139],"94":[2,103],"99":[2,103],"107":[2,103],"109":[2,103],"110":[2,103],"111":[2,103],"114":[2,103],"118":[2,103],"119":[2,103],"120":[2,103],"127":[2,103],"128":[2,103],"129":[2,103],"131":[2,103],"132":[2,103],"134":[2,103],"135":[2,103],"138":[2,103],"139":[2,103],"140":[2,103],"141":[2,103],"142":[2,103],"143":[2,103],"144":[2,103],"145":[2,103],"146":[2,103],"147":[2,103],"148":[2,103],"149":[2,103],"150":[2,103],"151":[2,103],"152":[2,103],"153":[2,103],"154":[2,103],"155":[2,103],"156":[2,103],"157":[2,103],"158":[2,103],"159":[2,103],"160":[2,103],"161":[2,103],"162":[2,103],"163":[2,103],"164":[2,103]},{"1":[2,104],"4":[2,104],"29":[2,104],"30":[2,104],"50":[2,104],"58":[2,104],"61":[2,104],"79":[2,104],"84":[2,104],"94":[2,104],"99":[2,104],"107":[2,104],"109":[2,104],"110":[2,104],"111":[2,104],"114":[2,104],"118":[2,104],"119":[2,104],"120":[2,104],"127":[2,104],"128":[2,104],"129":[2,104],"131":[2,104],"132":[2,104],"134":[2,104],"135":[2,104],"138":[2,104],"139":[2,104],"140":[2,104],"141":[2,104],"142":[2,104],"143":[2,104],"144":[2,104],"145":[2,104],"146":[2,104],"147":[2,104],"148":[2,104],"149":[2,104],"150":[2,104],"151":[2,104],"152":[2,104],"153":[2,104],"154":[2,104],"155":[2,104],"156":[2,104],"157":[2,104],"158":[2,104],"159":[2,104],"160":[2,104],"161":[2,104],"162":[2,104],"163":[2,104],"164":[2,104]},{"14":153,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":154,"62":155,"64":152,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"52":156,"53":[2,60],"58":[2,60],"59":157,"60":[1,158]},{"4":[1,160],"6":159,"29":[1,6]},{"8":161,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":163,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":164,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":165,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":166,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":167,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":168,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":169,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":170,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,170],"4":[2,170],"29":[2,170],"30":[2,170],"50":[2,170],"58":[2,170],"61":[2,170],"79":[2,170],"84":[2,170],"94":[2,170],"99":[2,170],"107":[2,170],"109":[2,170],"110":[2,170],"111":[2,170],"114":[2,170],"118":[2,170],"119":[2,170],"120":[2,170],"123":[1,171],"127":[2,170],"128":[2,170],"129":[2,170],"131":[2,170],"132":[2,170],"134":[2,170],"135":[2,170],"138":[2,170],"139":[2,170],"140":[2,170],"141":[2,170],"142":[2,170],"143":[2,170],"144":[2,170],"145":[2,170],"146":[2,170],"147":[2,170],"148":[2,170],"149":[2,170],"150":[2,170],"151":[2,170],"152":[2,170],"153":[2,170],"154":[2,170],"155":[2,170],"156":[2,170],"157":[2,170],"158":[2,170],"159":[2,170],"160":[2,170],"161":[2,170],"162":[2,170],"163":[2,170],"164":[2,170]},{"4":[1,160],"6":172,"29":[1,6]},{"4":[1,160],"6":173,"29":[1,6]},{"1":[2,140],"4":[2,140],"29":[2,140],"30":[2,140],"50":[2,140],"58":[2,140],"61":[2,140],"79":[2,140],"84":[2,140],"94":[2,140],"99":[2,140],"107":[2,140],"109":[2,140],"110":[2,140],"111":[2,140],"114":[2,140],"118":[2,140],"119":[2,140],"120":[2,140],"127":[2,140],"128":[2,140],"129":[2,140],"131":[2,140],"132":[2,140],"134":[2,140],"135":[2,140],"138":[2,140],"139":[2,140],"140":[2,140],"141":[2,140],"142":[2,140],"143":[2,140],"144":[2,140],"145":[2,140],"146":[2,140],"147":[2,140],"148":[2,140],"149":[2,140],"150":[2,140],"151":[2,140],"152":[2,140],"153":[2,140],"154":[2,140],"155":[2,140],"156":[2,140],"157":[2,140],"158":[2,140],"159":[2,140],"160":[2,140],"161":[2,140],"162":[2,140],"163":[2,140],"164":[2,140]},{"31":176,"32":[1,87],"66":177,"67":178,"82":[1,84],"98":[1,179],"115":174,"117":175},{"8":180,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,181],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"46":[2,70],"50":[2,70],"58":[2,70],"61":[2,70],"72":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"78":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"84":[2,70],"86":[1,182],"92":[2,70],"94":[2,70],"99":[2,70],"107":[2,70],"109":[2,70],"110":[2,70],"111":[2,70],"114":[2,70],"118":[2,70],"119":[2,70],"120":[2,70],"127":[2,70],"128":[2,70],"129":[2,70],"131":[2,70],"132":[2,70],"134":[2,70],"135":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70],"164":[2,70]},{"14":184,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":154,"62":183,"64":185,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,52],"4":[2,52],"29":[2,52],"30":[2,52],"50":[2,52],"58":[2,52],"61":[2,52],"79":[2,52],"84":[2,52],"94":[2,52],"99":[2,52],"103":[2,52],"104":[2,52],"107":[2,52],"109":[2,52],"110":[2,52],"111":[2,52],"114":[2,52],"118":[2,52],"119":[2,52],"120":[2,52],"123":[2,52],"125":[2,52],"127":[2,52],"128":[2,52],"129":[2,52],"131":[2,52],"132":[2,52],"134":[2,52],"135":[2,52],"138":[2,52],"139":[2,52],"140":[2,52],"141":[2,52],"142":[2,52],"143":[2,52],"144":[2,52],"145":[2,52],"146":[2,52],"147":[2,52],"148":[2,52],"149":[2,52],"150":[2,52],"151":[2,52],"152":[2,52],"153":[2,52],"154":[2,52],"155":[2,52],"156":[2,52],"157":[2,52],"158":[2,52],"159":[2,52],"160":[2,52],"161":[2,52],"162":[2,52],"163":[2,52],"164":[2,52]},{"1":[2,51],"4":[2,51],"8":186,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,51],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"107":[2,51],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[2,51],"128":[2,51],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":187,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,71],"4":[2,71],"29":[2,71],"30":[2,71],"46":[2,71],"50":[2,71],"58":[2,71],"61":[2,71],"72":[2,71],"73":[2,71],"74":[2,71],"75":[2,71],"78":[2,71],"79":[2,71],"80":[2,71],"81":[2,71],"84":[2,71],"92":[2,71],"94":[2,71],"99":[2,71],"107":[2,71],"109":[2,71],"110":[2,71],"111":[2,71],"114":[2,71],"118":[2,71],"119":[2,71],"120":[2,71],"127":[2,71],"128":[2,71],"129":[2,71],"131":[2,71],"132":[2,71],"134":[2,71],"135":[2,71],"138":[2,71],"139":[2,71],"140":[2,71],"141":[2,71],"142":[2,71],"143":[2,71],"144":[2,71],"145":[2,71],"146":[2,71],"147":[2,71],"148":[2,71],"149":[2,71],"150":[2,71],"151":[2,71],"152":[2,71],"153":[2,71],"154":[2,71],"155":[2,71],"156":[2,71],"157":[2,71],"158":[2,71],"159":[2,71],"160":[2,71],"161":[2,71],"162":[2,71],"163":[2,71],"164":[2,71]},{"1":[2,72],"4":[2,72],"29":[2,72],"30":[2,72],"46":[2,72],"50":[2,72],"58":[2,72],"61":[2,72],"72":[2,72],"73":[2,72],"74":[2,72],"75":[2,72],"78":[2,72],"79":[2,72],"80":[2,72],"81":[2,72],"84":[2,72],"92":[2,72],"94":[2,72],"99":[2,72],"107":[2,72],"109":[2,72],"110":[2,72],"111":[2,72],"114":[2,72],"118":[2,72],"119":[2,72],"120":[2,72],"127":[2,72],"128":[2,72],"129":[2,72],"131":[2,72],"132":[2,72],"134":[2,72],"135":[2,72],"138":[2,72],"139":[2,72],"140":[2,72],"141":[2,72],"142":[2,72],"143":[2,72],"144":[2,72],"145":[2,72],"146":[2,72],"147":[2,72],"148":[2,72],"149":[2,72],"150":[2,72],"151":[2,72],"152":[2,72],"153":[2,72],"154":[2,72],"155":[2,72],"156":[2,72],"157":[2,72],"158":[2,72],"159":[2,72],"160":[2,72],"161":[2,72],"162":[2,72],"163":[2,72],"164":[2,72]},{"1":[2,35],"4":[2,35],"29":[2,35],"30":[2,35],"50":[2,35],"58":[2,35],"61":[2,35],"72":[2,35],"73":[2,35],"74":[2,35],"75":[2,35],"78":[2,35],"79":[2,35],"80":[2,35],"81":[2,35],"84":[2,35],"92":[2,35],"94":[2,35],"99":[2,35],"107":[2,35],"109":[2,35],"110":[2,35],"111":[2,35],"114":[2,35],"118":[2,35],"119":[2,35],"120":[2,35],"127":[2,35],"128":[2,35],"129":[2,35],"131":[2,35],"132":[2,35],"134":[2,35],"135":[2,35],"138":[2,35],"139":[2,35],"140":[2,35],"141":[2,35],"142":[2,35],"143":[2,35],"144":[2,35],"145":[2,35],"146":[2,35],"147":[2,35],"148":[2,35],"149":[2,35],"150":[2,35],"151":[2,35],"152":[2,35],"153":[2,35],"154":[2,35],"155":[2,35],"156":[2,35],"157":[2,35],"158":[2,35],"159":[2,35],"160":[2,35],"161":[2,35],"162":[2,35],"163":[2,35],"164":[2,35]},{"1":[2,36],"4":[2,36],"29":[2,36],"30":[2,36],"50":[2,36],"58":[2,36],"61":[2,36],"72":[2,36],"73":[2,36],"74":[2,36],"75":[2,36],"78":[2,36],"79":[2,36],"80":[2,36],"81":[2,36],"84":[2,36],"92":[2,36],"94":[2,36],"99":[2,36],"107":[2,36],"109":[2,36],"110":[2,36],"111":[2,36],"114":[2,36],"118":[2,36],"119":[2,36],"120":[2,36],"127":[2,36],"128":[2,36],"129":[2,36],"131":[2,36],"132":[2,36],"134":[2,36],"135":[2,36],"138":[2,36],"139":[2,36],"140":[2,36],"141":[2,36],"142":[2,36],"143":[2,36],"144":[2,36],"145":[2,36],"146":[2,36],"147":[2,36],"148":[2,36],"149":[2,36],"150":[2,36],"151":[2,36],"152":[2,36],"153":[2,36],"154":[2,36],"155":[2,36],"156":[2,36],"157":[2,36],"158":[2,36],"159":[2,36],"160":[2,36],"161":[2,36],"162":[2,36],"163":[2,36],"164":[2,36]},{"1":[2,37],"4":[2,37],"29":[2,37],"30":[2,37],"50":[2,37],"58":[2,37],"61":[2,37],"72":[2,37],"73":[2,37],"74":[2,37],"75":[2,37],"78":[2,37],"79":[2,37],"80":[2,37],"81":[2,37],"84":[2,37],"92":[2,37],"94":[2,37],"99":[2,37],"107":[2,37],"109":[2,37],"110":[2,37],"111":[2,37],"114":[2,37],"118":[2,37],"119":[2,37],"120":[2,37],"127":[2,37],"128":[2,37],"129":[2,37],"131":[2,37],"132":[2,37],"134":[2,37],"135":[2,37],"138":[2,37],"139":[2,37],"140":[2,37],"141":[2,37],"142":[2,37],"143":[2,37],"144":[2,37],"145":[2,37],"146":[2,37],"147":[2,37],"148":[2,37],"149":[2,37],"150":[2,37],"151":[2,37],"152":[2,37],"153":[2,37],"154":[2,37],"155":[2,37],"156":[2,37],"157":[2,37],"158":[2,37],"159":[2,37],"160":[2,37],"161":[2,37],"162":[2,37],"163":[2,37],"164":[2,37]},{"1":[2,38],"4":[2,38],"29":[2,38],"30":[2,38],"50":[2,38],"58":[2,38],"61":[2,38],"72":[2,38],"73":[2,38],"74":[2,38],"75":[2,38],"78":[2,38],"79":[2,38],"80":[2,38],"81":[2,38],"84":[2,38],"92":[2,38],"94":[2,38],"99":[2,38],"107":[2,38],"109":[2,38],"110":[2,38],"111":[2,38],"114":[2,38],"118":[2,38],"119":[2,38],"120":[2,38],"127":[2,38],"128":[2,38],"129":[2,38],"131":[2,38],"132":[2,38],"134":[2,38],"135":[2,38],"138":[2,38],"139":[2,38],"140":[2,38],"141":[2,38],"142":[2,38],"143":[2,38],"144":[2,38],"145":[2,38],"146":[2,38],"147":[2,38],"148":[2,38],"149":[2,38],"150":[2,38],"151":[2,38],"152":[2,38],"153":[2,38],"154":[2,38],"155":[2,38],"156":[2,38],"157":[2,38],"158":[2,38],"159":[2,38],"160":[2,38],"161":[2,38],"162":[2,38],"163":[2,38],"164":[2,38]},{"1":[2,39],"4":[2,39],"29":[2,39],"30":[2,39],"50":[2,39],"58":[2,39],"61":[2,39],"72":[2,39],"73":[2,39],"74":[2,39],"75":[2,39],"78":[2,39],"79":[2,39],"80":[2,39],"81":[2,39],"84":[2,39],"92":[2,39],"94":[2,39],"99":[2,39],"107":[2,39],"109":[2,39],"110":[2,39],"111":[2,39],"114":[2,39],"118":[2,39],"119":[2,39],"120":[2,39],"127":[2,39],"128":[2,39],"129":[2,39],"131":[2,39],"132":[2,39],"134":[2,39],"135":[2,39],"138":[2,39],"139":[2,39],"140":[2,39],"141":[2,39],"142":[2,39],"143":[2,39],"144":[2,39],"145":[2,39],"146":[2,39],"147":[2,39],"148":[2,39],"149":[2,39],"150":[2,39],"151":[2,39],"152":[2,39],"153":[2,39],"154":[2,39],"155":[2,39],"156":[2,39],"157":[2,39],"158":[2,39],"159":[2,39],"160":[2,39],"161":[2,39],"162":[2,39],"163":[2,39],"164":[2,39]},{"1":[2,40],"4":[2,40],"29":[2,40],"30":[2,40],"50":[2,40],"58":[2,40],"61":[2,40],"72":[2,40],"73":[2,40],"74":[2,40],"75":[2,40],"78":[2,40],"79":[2,40],"80":[2,40],"81":[2,40],"84":[2,40],"92":[2,40],"94":[2,40],"99":[2,40],"107":[2,40],"109":[2,40],"110":[2,40],"111":[2,40],"114":[2,40],"118":[2,40],"119":[2,40],"120":[2,40],"127":[2,40],"128":[2,40],"129":[2,40],"131":[2,40],"132":[2,40],"134":[2,40],"135":[2,40],"138":[2,40],"139":[2,40],"140":[2,40],"141":[2,40],"142":[2,40],"143":[2,40],"144":[2,40],"145":[2,40],"146":[2,40],"147":[2,40],"148":[2,40],"149":[2,40],"150":[2,40],"151":[2,40],"152":[2,40],"153":[2,40],"154":[2,40],"155":[2,40],"156":[2,40],"157":[2,40],"158":[2,40],"159":[2,40],"160":[2,40],"161":[2,40],"162":[2,40],"163":[2,40],"164":[2,40]},{"1":[2,41],"4":[2,41],"29":[2,41],"30":[2,41],"50":[2,41],"58":[2,41],"61":[2,41],"72":[2,41],"73":[2,41],"74":[2,41],"75":[2,41],"78":[2,41],"79":[2,41],"80":[2,41],"81":[2,41],"84":[2,41],"92":[2,41],"94":[2,41],"99":[2,41],"107":[2,41],"109":[2,41],"110":[2,41],"111":[2,41],"114":[2,41],"118":[2,41],"119":[2,41],"120":[2,41],"127":[2,41],"128":[2,41],"129":[2,41],"131":[2,41],"132":[2,41],"134":[2,41],"135":[2,41],"138":[2,41],"139":[2,41],"140":[2,41],"141":[2,41],"142":[2,41],"143":[2,41],"144":[2,41],"145":[2,41],"146":[2,41],"147":[2,41],"148":[2,41],"149":[2,41],"150":[2,41],"151":[2,41],"152":[2,41],"153":[2,41],"154":[2,41],"155":[2,41],"156":[2,41],"157":[2,41],"158":[2,41],"159":[2,41],"160":[2,41],"161":[2,41],"162":[2,41],"163":[2,41],"164":[2,41]},{"1":[2,42],"4":[2,42],"29":[2,42],"30":[2,42],"50":[2,42],"58":[2,42],"61":[2,42],"72":[2,42],"73":[2,42],"74":[2,42],"75":[2,42],"78":[2,42],"79":[2,42],"80":[2,42],"81":[2,42],"84":[2,42],"92":[2,42],"94":[2,42],"99":[2,42],"107":[2,42],"109":[2,42],"110":[2,42],"111":[2,42],"114":[2,42],"118":[2,42],"119":[2,42],"120":[2,42],"127":[2,42],"128":[2,42],"129":[2,42],"131":[2,42],"132":[2,42],"134":[2,42],"135":[2,42],"138":[2,42],"139":[2,42],"140":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"148":[2,42],"149":[2,42],"150":[2,42],"151":[2,42],"152":[2,42],"153":[2,42],"154":[2,42],"155":[2,42],"156":[2,42],"157":[2,42],"158":[2,42],"159":[2,42],"160":[2,42],"161":[2,42],"162":[2,42],"163":[2,42],"164":[2,42]},{"1":[2,43],"4":[2,43],"29":[2,43],"30":[2,43],"50":[2,43],"58":[2,43],"61":[2,43],"72":[2,43],"73":[2,43],"74":[2,43],"75":[2,43],"78":[2,43],"79":[2,43],"80":[2,43],"81":[2,43],"84":[2,43],"92":[2,43],"94":[2,43],"99":[2,43],"107":[2,43],"109":[2,43],"110":[2,43],"111":[2,43],"114":[2,43],"118":[2,43],"119":[2,43],"120":[2,43],"127":[2,43],"128":[2,43],"129":[2,43],"131":[2,43],"132":[2,43],"134":[2,43],"135":[2,43],"138":[2,43],"139":[2,43],"140":[2,43],"141":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43],"148":[2,43],"149":[2,43],"150":[2,43],"151":[2,43],"152":[2,43],"153":[2,43],"154":[2,43],"155":[2,43],"156":[2,43],"157":[2,43],"158":[2,43],"159":[2,43],"160":[2,43],"161":[2,43],"162":[2,43],"163":[2,43],"164":[2,43]},{"7":188,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,120],"8":189,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":190,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,120],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,112],"4":[2,112],"29":[2,112],"30":[2,112],"50":[2,112],"58":[2,112],"61":[2,112],"72":[2,112],"73":[2,112],"74":[2,112],"75":[2,112],"78":[2,112],"79":[2,112],"80":[2,112],"81":[2,112],"84":[2,112],"92":[2,112],"94":[2,112],"99":[2,112],"107":[2,112],"109":[2,112],"110":[2,112],"111":[2,112],"114":[2,112],"118":[2,112],"119":[2,112],"120":[2,112],"127":[2,112],"128":[2,112],"129":[2,112],"131":[2,112],"132":[2,112],"134":[2,112],"135":[2,112],"138":[2,112],"139":[2,112],"140":[2,112],"141":[2,112],"142":[2,112],"143":[2,112],"144":[2,112],"145":[2,112],"146":[2,112],"147":[2,112],"148":[2,112],"149":[2,112],"150":[2,112],"151":[2,112],"152":[2,112],"153":[2,112],"154":[2,112],"155":[2,112],"156":[2,112],"157":[2,112],"158":[2,112],"159":[2,112],"160":[2,112],"161":[2,112],"162":[2,112],"163":[2,112],"164":[2,112]},{"1":[2,113],"4":[2,113],"29":[2,113],"30":[2,113],"31":191,"32":[1,87],"50":[2,113],"58":[2,113],"61":[2,113],"72":[2,113],"73":[2,113],"74":[2,113],"75":[2,113],"78":[2,113],"79":[2,113],"80":[2,113],"81":[2,113],"84":[2,113],"92":[2,113],"94":[2,113],"99":[2,113],"107":[2,113],"109":[2,113],"110":[2,113],"111":[2,113],"114":[2,113],"118":[2,113],"119":[2,113],"120":[2,113],"127":[2,113],"128":[2,113],"129":[2,113],"131":[2,113],"132":[2,113],"134":[2,113],"135":[2,113],"138":[2,113],"139":[2,113],"140":[2,113],"141":[2,113],"142":[2,113],"143":[2,113],"144":[2,113],"145":[2,113],"146":[2,113],"147":[2,113],"148":[2,113],"149":[2,113],"150":[2,113],"151":[2,113],"152":[2,113],"153":[2,113],"154":[2,113],"155":[2,113],"156":[2,113],"157":[2,113],"158":[2,113],"159":[2,113],"160":[2,113],"161":[2,113],"162":[2,113],"163":[2,113],"164":[2,113]},{"91":192,"92":[1,139]},{"4":[2,56],"29":[2,56]},{"4":[2,57],"29":[2,57]},{"8":193,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":194,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":195,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":196,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[1,160],"6":197,"8":198,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[1,6],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,66],"4":[2,66],"29":[2,66],"30":[2,66],"46":[2,66],"50":[2,66],"58":[2,66],"61":[2,66],"72":[2,66],"73":[2,66],"74":[2,66],"75":[2,66],"78":[2,66],"79":[2,66],"80":[2,66],"81":[2,66],"84":[2,66],"86":[2,66],"92":[2,66],"94":[2,66],"99":[2,66],"107":[2,66],"109":[2,66],"110":[2,66],"111":[2,66],"114":[2,66],"118":[2,66],"119":[2,66],"120":[2,66],"127":[2,66],"128":[2,66],"129":[2,66],"131":[2,66],"132":[2,66],"134":[2,66],"135":[2,66],"138":[2,66],"139":[2,66],"140":[2,66],"141":[2,66],"142":[2,66],"143":[2,66],"144":[2,66],"145":[2,66],"146":[2,66],"147":[2,66],"148":[2,66],"149":[2,66],"150":[2,66],"151":[2,66],"152":[2,66],"153":[2,66],"154":[2,66],"155":[2,66],"156":[2,66],"157":[2,66],"158":[2,66],"159":[2,66],"160":[2,66],"161":[2,66],"162":[2,66],"163":[2,66],"164":[2,66]},{"1":[2,69],"4":[2,69],"29":[2,69],"30":[2,69],"46":[2,69],"50":[2,69],"58":[2,69],"61":[2,69],"72":[2,69],"73":[2,69],"74":[2,69],"75":[2,69],"78":[2,69],"79":[2,69],"80":[2,69],"81":[2,69],"84":[2,69],"86":[2,69],"92":[2,69],"94":[2,69],"99":[2,69],"107":[2,69],"109":[2,69],"110":[2,69],"111":[2,69],"114":[2,69],"118":[2,69],"119":[2,69],"120":[2,69],"127":[2,69],"128":[2,69],"129":[2,69],"131":[2,69],"132":[2,69],"134":[2,69],"135":[2,69],"138":[2,69],"139":[2,69],"140":[2,69],"141":[2,69],"142":[2,69],"143":[2,69],"144":[2,69],"145":[2,69],"146":[2,69],"147":[2,69],"148":[2,69],"149":[2,69],"150":[2,69],"151":[2,69],"152":[2,69],"153":[2,69],"154":[2,69],"155":[2,69],"156":[2,69],"157":[2,69],"158":[2,69],"159":[2,69],"160":[2,69],"161":[2,69],"162":[2,69],"163":[2,69],"164":[2,69]},{"4":[2,89],"28":203,"29":[2,89],"31":201,"32":[1,87],"33":202,"34":[1,85],"35":[1,86],"47":200,"49":[1,56],"58":[2,89],"83":199,"84":[2,89]},{"1":[2,33],"4":[2,33],"29":[2,33],"30":[2,33],"46":[2,33],"50":[2,33],"58":[2,33],"61":[2,33],"72":[2,33],"73":[2,33],"74":[2,33],"75":[2,33],"78":[2,33],"79":[2,33],"80":[2,33],"81":[2,33],"84":[2,33],"92":[2,33],"94":[2,33],"99":[2,33],"107":[2,33],"109":[2,33],"110":[2,33],"111":[2,33],"114":[2,33],"118":[2,33],"119":[2,33],"120":[2,33],"127":[2,33],"128":[2,33],"129":[2,33],"131":[2,33],"132":[2,33],"134":[2,33],"135":[2,33],"138":[2,33],"139":[2,33],"140":[2,33],"141":[2,33],"142":[2,33],"143":[2,33],"144":[2,33],"145":[2,33],"146":[2,33],"147":[2,33],"148":[2,33],"149":[2,33],"150":[2,33],"151":[2,33],"152":[2,33],"153":[2,33],"154":[2,33],"155":[2,33],"156":[2,33],"157":[2,33],"158":[2,33],"159":[2,33],"160":[2,33],"161":[2,33],"162":[2,33],"163":[2,33],"164":[2,33]},{"1":[2,34],"4":[2,34],"29":[2,34],"30":[2,34],"46":[2,34],"50":[2,34],"58":[2,34],"61":[2,34],"72":[2,34],"73":[2,34],"74":[2,34],"75":[2,34],"78":[2,34],"79":[2,34],"80":[2,34],"81":[2,34],"84":[2,34],"92":[2,34],"94":[2,34],"99":[2,34],"107":[2,34],"109":[2,34],"110":[2,34],"111":[2,34],"114":[2,34],"118":[2,34],"119":[2,34],"120":[2,34],"127":[2,34],"128":[2,34],"129":[2,34],"131":[2,34],"132":[2,34],"134":[2,34],"135":[2,34],"138":[2,34],"139":[2,34],"140":[2,34],"141":[2,34],"142":[2,34],"143":[2,34],"144":[2,34],"145":[2,34],"146":[2,34],"147":[2,34],"148":[2,34],"149":[2,34],"150":[2,34],"151":[2,34],"152":[2,34],"153":[2,34],"154":[2,34],"155":[2,34],"156":[2,34],"157":[2,34],"158":[2,34],"159":[2,34],"160":[2,34],"161":[2,34],"162":[2,34],"163":[2,34],"164":[2,34]},{"1":[2,32],"4":[2,32],"29":[2,32],"30":[2,32],"46":[2,32],"50":[2,32],"58":[2,32],"61":[2,32],"72":[2,32],"73":[2,32],"74":[2,32],"75":[2,32],"78":[2,32],"79":[2,32],"80":[2,32],"81":[2,32],"84":[2,32],"86":[2,32],"92":[2,32],"94":[2,32],"99":[2,32],"107":[2,32],"109":[2,32],"110":[2,32],"111":[2,32],"114":[2,32],"118":[2,32],"119":[2,32],"120":[2,32],"127":[2,32],"128":[2,32],"129":[2,32],"131":[2,32],"132":[2,32],"134":[2,32],"135":[2,32],"138":[2,32],"139":[2,32],"140":[2,32],"141":[2,32],"142":[2,32],"143":[2,32],"144":[2,32],"145":[2,32],"146":[2,32],"147":[2,32],"148":[2,32],"149":[2,32],"150":[2,32],"151":[2,32],"152":[2,32],"153":[2,32],"154":[2,32],"155":[2,32],"156":[2,32],"157":[2,32],"158":[2,32],"159":[2,32],"160":[2,32],"161":[2,32],"162":[2,32],"163":[2,32],"164":[2,32]},{"1":[2,31],"4":[2,31],"29":[2,31],"30":[2,31],"50":[2,31],"58":[2,31],"61":[2,31],"79":[2,31],"84":[2,31],"94":[2,31],"99":[2,31],"103":[2,31],"104":[2,31],"107":[2,31],"109":[2,31],"110":[2,31],"111":[2,31],"114":[2,31],"118":[2,31],"119":[2,31],"120":[2,31],"123":[2,31],"125":[2,31],"127":[2,31],"128":[2,31],"129":[2,31],"131":[2,31],"132":[2,31],"134":[2,31],"135":[2,31],"138":[2,31],"139":[2,31],"140":[2,31],"141":[2,31],"142":[2,31],"143":[2,31],"144":[2,31],"145":[2,31],"146":[2,31],"147":[2,31],"148":[2,31],"149":[2,31],"150":[2,31],"151":[2,31],"152":[2,31],"153":[2,31],"154":[2,31],"155":[2,31],"156":[2,31],"157":[2,31],"158":[2,31],"159":[2,31],"160":[2,31],"161":[2,31],"162":[2,31],"163":[2,31],"164":[2,31]},{"1":[2,7],"4":[2,7],"7":204,"8":7,"9":8,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"30":[2,7],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,4]},{"4":[1,89],"30":[1,205]},{"1":[2,30],"4":[2,30],"29":[2,30],"30":[2,30],"50":[2,30],"58":[2,30],"61":[2,30],"79":[2,30],"84":[2,30],"94":[2,30],"99":[2,30],"103":[2,30],"104":[2,30],"107":[2,30],"109":[2,30],"110":[2,30],"111":[2,30],"114":[2,30],"118":[2,30],"119":[2,30],"120":[2,30],"123":[2,30],"125":[2,30],"127":[2,30],"128":[2,30],"129":[2,30],"131":[2,30],"132":[2,30],"134":[2,30],"135":[2,30],"138":[2,30],"139":[2,30],"140":[2,30],"141":[2,30],"142":[2,30],"143":[2,30],"144":[2,30],"145":[2,30],"146":[2,30],"147":[2,30],"148":[2,30],"149":[2,30],"150":[2,30],"151":[2,30],"152":[2,30],"153":[2,30],"154":[2,30],"155":[2,30],"156":[2,30],"157":[2,30],"158":[2,30],"159":[2,30],"160":[2,30],"161":[2,30],"162":[2,30],"163":[2,30],"164":[2,30]},{"1":[2,184],"4":[2,184],"29":[2,184],"30":[2,184],"50":[2,184],"58":[2,184],"61":[2,184],"79":[2,184],"84":[2,184],"94":[2,184],"99":[2,184],"107":[2,184],"109":[2,184],"110":[2,184],"111":[2,184],"114":[2,184],"118":[2,184],"119":[2,184],"120":[2,184],"127":[2,184],"128":[2,184],"129":[2,184],"131":[2,184],"132":[2,184],"134":[2,184],"135":[2,184],"138":[2,184],"139":[2,184],"140":[2,184],"141":[2,184],"142":[2,184],"143":[2,184],"144":[2,184],"145":[2,184],"146":[2,184],"147":[2,184],"148":[2,184],"149":[2,184],"150":[2,184],"151":[2,184],"152":[2,184],"153":[2,184],"154":[2,184],"155":[2,184],"156":[2,184],"157":[2,184],"158":[2,184],"159":[2,184],"160":[2,184],"161":[2,184],"162":[2,184],"163":[2,184],"164":[2,184]},{"1":[2,185],"4":[2,185],"29":[2,185],"30":[2,185],"50":[2,185],"58":[2,185],"61":[2,185],"79":[2,185],"84":[2,185],"94":[2,185],"99":[2,185],"107":[2,185],"109":[2,185],"110":[2,185],"111":[2,185],"114":[2,185],"118":[2,185],"119":[2,185],"120":[2,185],"127":[2,185],"128":[2,185],"129":[2,185],"131":[2,185],"132":[2,185],"134":[2,185],"135":[2,185],"138":[2,185],"139":[2,185],"140":[2,185],"141":[2,185],"142":[2,185],"143":[2,185],"144":[2,185],"145":[2,185],"146":[2,185],"147":[2,185],"148":[2,185],"149":[2,185],"150":[2,185],"151":[2,185],"152":[2,185],"153":[2,185],"154":[2,185],"155":[2,185],"156":[2,185],"157":[2,185],"158":[2,185],"159":[2,185],"160":[2,185],"161":[2,185],"162":[2,185],"163":[2,185],"164":[2,185]},{"8":206,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":207,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":208,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":209,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":210,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":211,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":212,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":213,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":214,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":215,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":216,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":217,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":218,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":219,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":220,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":221,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":222,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":223,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":224,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":225,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":226,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":227,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":228,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":229,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":230,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":231,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":232,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":233,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":234,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":235,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":236,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"118":[1,237],"119":[1,238]},{"8":239,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":240,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,139],"4":[2,139],"29":[2,139],"30":[2,139],"50":[2,139],"58":[2,139],"61":[2,139],"79":[2,139],"84":[2,139],"94":[2,139],"99":[2,139],"107":[2,139],"109":[2,139],"110":[2,139],"111":[2,139],"114":[2,139],"118":[2,139],"119":[2,139],"120":[2,139],"127":[2,139],"128":[2,139],"129":[2,139],"131":[2,139],"132":[2,139],"134":[2,139],"135":[2,139],"138":[2,139],"139":[2,139],"140":[2,139],"141":[2,139],"142":[2,139],"143":[2,139],"144":[2,139],"145":[2,139],"146":[2,139],"147":[2,139],"148":[2,139],"149":[2,139],"150":[2,139],"151":[2,139],"152":[2,139],"153":[2,139],"154":[2,139],"155":[2,139],"156":[2,139],"157":[2,139],"158":[2,139],"159":[2,139],"160":[2,139],"161":[2,139],"162":[2,139],"163":[2,139],"164":[2,139]},{"31":176,"32":[1,87],"66":177,"67":178,"82":[1,84],"98":[1,179],"115":241,"117":175},{"61":[1,242]},{"1":[2,53],"4":[2,53],"29":[2,53],"30":[2,53],"50":[2,53],"58":[2,53],"61":[2,53],"79":[2,53],"84":[2,53],"94":[2,53],"99":[2,53],"107":[2,53],"109":[2,53],"110":[2,53],"111":[2,53],"114":[2,53],"118":[2,53],"119":[2,53],"120":[2,53],"127":[2,53],"128":[2,53],"129":[2,53],"131":[2,53],"132":[2,53],"134":[2,53],"135":[2,53],"138":[2,53],"139":[2,53],"140":[2,53],"141":[2,53],"142":[2,53],"143":[2,53],"144":[2,53],"145":[2,53],"146":[2,53],"147":[2,53],"148":[2,53],"149":[2,53],"150":[2,53],"151":[2,53],"152":[2,53],"153":[2,53],"154":[2,53],"155":[2,53],"156":[2,53],"157":[2,53],"158":[2,53],"159":[2,53],"160":[2,53],"161":[2,53],"162":[2,53],"163":[2,53],"164":[2,53]},{"8":243,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":244,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,138],"4":[2,138],"29":[2,138],"30":[2,138],"50":[2,138],"58":[2,138],"61":[2,138],"79":[2,138],"84":[2,138],"94":[2,138],"99":[2,138],"107":[2,138],"109":[2,138],"110":[2,138],"111":[2,138],"114":[2,138],"118":[2,138],"119":[2,138],"120":[2,138],"127":[2,138],"128":[2,138],"129":[2,138],"131":[2,138],"132":[2,138],"134":[2,138],"135":[2,138],"138":[2,138],"139":[2,138],"140":[2,138],"141":[2,138],"142":[2,138],"143":[2,138],"144":[2,138],"145":[2,138],"146":[2,138],"147":[2,138],"148":[2,138],"149":[2,138],"150":[2,138],"151":[2,138],"152":[2,138],"153":[2,138],"154":[2,138],"155":[2,138],"156":[2,138],"157":[2,138],"158":[2,138],"159":[2,138],"160":[2,138],"161":[2,138],"162":[2,138],"163":[2,138],"164":[2,138]},{"31":176,"32":[1,87],"66":177,"67":178,"82":[1,84],"98":[1,179],"115":245,"117":175},{"1":[2,108],"4":[2,108],"29":[2,108],"30":[2,108],"50":[2,108],"58":[2,108],"61":[2,108],"72":[2,108],"73":[2,108],"74":[2,108],"75":[2,108],"78":[2,108],"79":[2,108],"80":[2,108],"81":[2,108],"84":[2,108],"92":[2,108],"94":[2,108],"99":[2,108],"107":[2,108],"109":[2,108],"110":[2,108],"111":[2,108],"114":[2,108],"118":[2,108],"119":[2,108],"120":[2,108],"127":[2,108],"128":[2,108],"129":[2,108],"131":[2,108],"132":[2,108],"134":[2,108],"135":[2,108],"138":[2,108],"139":[2,108],"140":[2,108],"141":[2,108],"142":[2,108],"143":[2,108],"144":[2,108],"145":[2,108],"146":[2,108],"147":[2,108],"148":[2,108],"149":[2,108],"150":[2,108],"151":[2,108],"152":[2,108],"153":[2,108],"154":[2,108],"155":[2,108],"156":[2,108],"157":[2,108],"158":[2,108],"159":[2,108],"160":[2,108],"161":[2,108],"162":[2,108],"163":[2,108],"164":[2,108]},{"1":[2,67],"4":[2,67],"29":[2,67],"30":[2,67],"46":[2,67],"50":[2,67],"58":[2,67],"61":[2,67],"72":[2,67],"73":[2,67],"74":[2,67],"75":[2,67],"78":[2,67],"79":[2,67],"80":[2,67],"81":[2,67],"84":[2,67],"86":[2,67],"92":[2,67],"94":[2,67],"99":[2,67],"107":[2,67],"109":[2,67],"110":[2,67],"111":[2,67],"114":[2,67],"118":[2,67],"119":[2,67],"120":[2,67],"127":[2,67],"128":[2,67],"129":[2,67],"131":[2,67],"132":[2,67],"134":[2,67],"135":[2,67],"138":[2,67],"139":[2,67],"140":[2,67],"141":[2,67],"142":[2,67],"143":[2,67],"144":[2,67],"145":[2,67],"146":[2,67],"147":[2,67],"148":[2,67],"149":[2,67],"150":[2,67],"151":[2,67],"152":[2,67],"153":[2,67],"154":[2,67],"155":[2,67],"156":[2,67],"157":[2,67],"158":[2,67],"159":[2,67],"160":[2,67],"161":[2,67],"162":[2,67],"163":[2,67],"164":[2,67]},{"4":[2,120],"8":247,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":246,"94":[2,120],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"31":248,"32":[1,87]},{"31":249,"32":[1,87]},{"1":[2,81],"4":[2,81],"29":[2,81],"30":[2,81],"46":[2,81],"50":[2,81],"58":[2,81],"61":[2,81],"72":[2,81],"73":[2,81],"74":[2,81],"75":[2,81],"78":[2,81],"79":[2,81],"80":[2,81],"81":[2,81],"84":[2,81],"86":[2,81],"92":[2,81],"94":[2,81],"99":[2,81],"107":[2,81],"109":[2,81],"110":[2,81],"111":[2,81],"114":[2,81],"118":[2,81],"119":[2,81],"120":[2,81],"127":[2,81],"128":[2,81],"129":[2,81],"131":[2,81],"132":[2,81],"134":[2,81],"135":[2,81],"138":[2,81],"139":[2,81],"140":[2,81],"141":[2,81],"142":[2,81],"143":[2,81],"144":[2,81],"145":[2,81],"146":[2,81],"147":[2,81],"148":[2,81],"149":[2,81],"150":[2,81],"151":[2,81],"152":[2,81],"153":[2,81],"154":[2,81],"155":[2,81],"156":[2,81],"157":[2,81],"158":[2,81],"159":[2,81],"160":[2,81],"161":[2,81],"162":[2,81],"163":[2,81],"164":[2,81]},{"31":250,"32":[1,87]},{"1":[2,83],"4":[2,83],"29":[2,83],"30":[2,83],"46":[2,83],"50":[2,83],"58":[2,83],"61":[2,83],"72":[2,83],"73":[2,83],"74":[2,83],"75":[2,83],"78":[2,83],"79":[2,83],"80":[2,83],"81":[2,83],"84":[2,83],"86":[2,83],"92":[2,83],"94":[2,83],"99":[2,83],"107":[2,83],"109":[2,83],"110":[2,83],"111":[2,83],"114":[2,83],"118":[2,83],"119":[2,83],"120":[2,83],"127":[2,83],"128":[2,83],"129":[2,83],"131":[2,83],"132":[2,83],"134":[2,83],"135":[2,83],"138":[2,83],"139":[2,83],"140":[2,83],"141":[2,83],"142":[2,83],"143":[2,83],"144":[2,83],"145":[2,83],"146":[2,83],"147":[2,83],"148":[2,83],"149":[2,83],"150":[2,83],"151":[2,83],"152":[2,83],"153":[2,83],"154":[2,83],"155":[2,83],"156":[2,83],"157":[2,83],"158":[2,83],"159":[2,83],"160":[2,83],"161":[2,83],"162":[2,83],"163":[2,83],"164":[2,83]},{"1":[2,84],"4":[2,84],"29":[2,84],"30":[2,84],"46":[2,84],"50":[2,84],"58":[2,84],"61":[2,84],"72":[2,84],"73":[2,84],"74":[2,84],"75":[2,84],"78":[2,84],"79":[2,84],"80":[2,84],"81":[2,84],"84":[2,84],"86":[2,84],"92":[2,84],"94":[2,84],"99":[2,84],"107":[2,84],"109":[2,84],"110":[2,84],"111":[2,84],"114":[2,84],"118":[2,84],"119":[2,84],"120":[2,84],"127":[2,84],"128":[2,84],"129":[2,84],"131":[2,84],"132":[2,84],"134":[2,84],"135":[2,84],"138":[2,84],"139":[2,84],"140":[2,84],"141":[2,84],"142":[2,84],"143":[2,84],"144":[2,84],"145":[2,84],"146":[2,84],"147":[2,84],"148":[2,84],"149":[2,84],"150":[2,84],"151":[2,84],"152":[2,84],"153":[2,84],"154":[2,84],"155":[2,84],"156":[2,84],"157":[2,84],"158":[2,84],"159":[2,84],"160":[2,84],"161":[2,84],"162":[2,84],"163":[2,84],"164":[2,84]},{"8":251,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"76":252,"78":[1,253],"80":[1,147],"81":[1,148]},{"76":254,"78":[1,253],"80":[1,147],"81":[1,148]},{"8":255,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,109],"4":[2,109],"29":[2,109],"30":[2,109],"50":[2,109],"58":[2,109],"61":[2,109],"72":[2,109],"73":[2,109],"74":[2,109],"75":[2,109],"78":[2,109],"79":[2,109],"80":[2,109],"81":[2,109],"84":[2,109],"92":[2,109],"94":[2,109],"99":[2,109],"107":[2,109],"109":[2,109],"110":[2,109],"111":[2,109],"114":[2,109],"118":[2,109],"119":[2,109],"120":[2,109],"127":[2,109],"128":[2,109],"129":[2,109],"131":[2,109],"132":[2,109],"134":[2,109],"135":[2,109],"138":[2,109],"139":[2,109],"140":[2,109],"141":[2,109],"142":[2,109],"143":[2,109],"144":[2,109],"145":[2,109],"146":[2,109],"147":[2,109],"148":[2,109],"149":[2,109],"150":[2,109],"151":[2,109],"152":[2,109],"153":[2,109],"154":[2,109],"155":[2,109],"156":[2,109],"157":[2,109],"158":[2,109],"159":[2,109],"160":[2,109],"161":[2,109],"162":[2,109],"163":[2,109],"164":[2,109]},{"1":[2,68],"4":[2,68],"29":[2,68],"30":[2,68],"46":[2,68],"50":[2,68],"58":[2,68],"61":[2,68],"72":[2,68],"73":[2,68],"74":[2,68],"75":[2,68],"78":[2,68],"79":[2,68],"80":[2,68],"81":[2,68],"84":[2,68],"86":[2,68],"92":[2,68],"94":[2,68],"99":[2,68],"107":[2,68],"109":[2,68],"110":[2,68],"111":[2,68],"114":[2,68],"118":[2,68],"119":[2,68],"120":[2,68],"127":[2,68],"128":[2,68],"129":[2,68],"131":[2,68],"132":[2,68],"134":[2,68],"135":[2,68],"138":[2,68],"139":[2,68],"140":[2,68],"141":[2,68],"142":[2,68],"143":[2,68],"144":[2,68],"145":[2,68],"146":[2,68],"147":[2,68],"148":[2,68],"149":[2,68],"150":[2,68],"151":[2,68],"152":[2,68],"153":[2,68],"154":[2,68],"155":[2,68],"156":[2,68],"157":[2,68],"158":[2,68],"159":[2,68],"160":[2,68],"161":[2,68],"162":[2,68],"163":[2,68],"164":[2,68]},{"1":[2,105],"4":[2,105],"29":[2,105],"30":[2,105],"50":[2,105],"58":[2,105],"61":[2,105],"63":151,"72":[1,140],"73":[1,141],"74":[1,142],"75":[1,143],"76":144,"77":145,"78":[1,146],"79":[2,105],"80":[1,147],"81":[1,148],"84":[2,105],"91":150,"92":[1,139],"94":[2,105],"99":[2,105],"107":[2,105],"109":[2,105],"110":[2,105],"111":[2,105],"114":[2,105],"118":[2,105],"119":[2,105],"120":[2,105],"127":[2,105],"128":[2,105],"129":[2,105],"131":[2,105],"132":[2,105],"134":[2,105],"135":[2,105],"138":[2,105],"139":[2,105],"140":[2,105],"141":[2,105],"142":[2,105],"143":[2,105],"144":[2,105],"145":[2,105],"146":[2,105],"147":[2,105],"148":[2,105],"149":[2,105],"150":[2,105],"151":[2,105],"152":[2,105],"153":[2,105],"154":[2,105],"155":[2,105],"156":[2,105],"157":[2,105],"158":[2,105],"159":[2,105],"160":[2,105],"161":[2,105],"162":[2,105],"163":[2,105],"164":[2,105]},{"1":[2,106],"4":[2,106],"29":[2,106],"30":[2,106],"50":[2,106],"58":[2,106],"61":[2,106],"63":138,"72":[1,140],"73":[1,141],"74":[1,142],"75":[1,143],"76":144,"77":145,"78":[1,146],"79":[2,106],"80":[1,147],"81":[1,148],"84":[2,106],"91":137,"92":[1,139],"94":[2,106],"99":[2,106],"107":[2,106],"109":[2,106],"110":[2,106],"111":[2,106],"114":[2,106],"118":[2,106],"119":[2,106],"120":[2,106],"127":[2,106],"128":[2,106],"129":[2,106],"131":[2,106],"132":[2,106],"134":[2,106],"135":[2,106],"138":[2,106],"139":[2,106],"140":[2,106],"141":[2,106],"142":[2,106],"143":[2,106],"144":[2,106],"145":[2,106],"146":[2,106],"147":[2,106],"148":[2,106],"149":[2,106],"150":[2,106],"151":[2,106],"152":[2,106],"153":[2,106],"154":[2,106],"155":[2,106],"156":[2,106],"157":[2,106],"158":[2,106],"159":[2,106],"160":[2,106],"161":[2,106],"162":[2,106],"163":[2,106],"164":[2,106]},{"1":[2,73],"4":[2,73],"29":[2,73],"30":[2,73],"50":[2,73],"58":[2,73],"61":[2,73],"72":[2,73],"73":[2,73],"74":[2,73],"75":[2,73],"78":[2,73],"79":[2,73],"80":[2,73],"81":[2,73],"84":[2,73],"92":[2,73],"94":[2,73],"99":[2,73],"107":[2,73],"109":[2,73],"110":[2,73],"111":[2,73],"114":[2,73],"118":[2,73],"119":[2,73],"120":[2,73],"127":[2,73],"128":[2,73],"129":[2,73],"131":[2,73],"132":[2,73],"134":[2,73],"135":[2,73],"138":[2,73],"139":[2,73],"140":[2,73],"141":[2,73],"142":[2,73],"143":[2,73],"144":[2,73],"145":[2,73],"146":[2,73],"147":[2,73],"148":[2,73],"149":[2,73],"150":[2,73],"151":[2,73],"152":[2,73],"153":[2,73],"154":[2,73],"155":[2,73],"156":[2,73],"157":[2,73],"158":[2,73],"159":[2,73],"160":[2,73],"161":[2,73],"162":[2,73],"163":[2,73],"164":[2,73]},{"1":[2,70],"4":[2,70],"29":[2,70],"30":[2,70],"50":[2,70],"58":[2,70],"61":[2,70],"72":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"78":[2,70],"79":[2,70],"80":[2,70],"81":[2,70],"84":[2,70],"92":[2,70],"94":[2,70],"99":[2,70],"107":[2,70],"109":[2,70],"110":[2,70],"111":[2,70],"114":[2,70],"118":[2,70],"119":[2,70],"120":[2,70],"127":[2,70],"128":[2,70],"129":[2,70],"131":[2,70],"132":[2,70],"134":[2,70],"135":[2,70],"138":[2,70],"139":[2,70],"140":[2,70],"141":[2,70],"142":[2,70],"143":[2,70],"144":[2,70],"145":[2,70],"146":[2,70],"147":[2,70],"148":[2,70],"149":[2,70],"150":[2,70],"151":[2,70],"152":[2,70],"153":[2,70],"154":[2,70],"155":[2,70],"156":[2,70],"157":[2,70],"158":[2,70],"159":[2,70],"160":[2,70],"161":[2,70],"162":[2,70],"163":[2,70],"164":[2,70]},{"53":[1,256],"58":[1,257]},{"53":[2,61],"58":[2,61],"61":[1,258]},{"53":[2,63],"58":[2,63],"61":[2,63]},{"1":[2,55],"4":[2,55],"29":[2,55],"30":[2,55],"50":[2,55],"58":[2,55],"61":[2,55],"79":[2,55],"84":[2,55],"94":[2,55],"99":[2,55],"107":[2,55],"109":[2,55],"110":[2,55],"111":[2,55],"114":[2,55],"118":[2,55],"119":[2,55],"120":[2,55],"127":[2,55],"128":[2,55],"129":[2,55],"131":[2,55],"132":[2,55],"134":[2,55],"135":[2,55],"138":[2,55],"139":[2,55],"140":[2,55],"141":[2,55],"142":[2,55],"143":[2,55],"144":[2,55],"145":[2,55],"146":[2,55],"147":[2,55],"148":[2,55],"149":[2,55],"150":[2,55],"151":[2,55],"152":[2,55],"153":[2,55],"154":[2,55],"155":[2,55],"156":[2,55],"157":[2,55],"158":[2,55],"159":[2,55],"160":[2,55],"161":[2,55],"162":[2,55],"163":[2,55],"164":[2,55]},{"28":88,"49":[1,56]},{"1":[2,175],"4":[2,175],"29":[2,175],"30":[2,175],"50":[1,132],"58":[2,175],"61":[2,175],"79":[2,175],"84":[2,175],"94":[2,175],"99":[2,175],"107":[2,175],"108":129,"109":[2,175],"110":[2,175],"111":[2,175],"114":[2,175],"118":[2,175],"119":[2,175],"120":[2,175],"127":[2,175],"128":[2,175],"131":[2,175],"132":[2,175],"138":[2,175],"139":[2,175],"140":[2,175],"141":[2,175],"142":[2,175],"143":[2,175],"144":[2,175],"145":[2,175],"146":[2,175],"147":[2,175],"148":[2,175],"149":[2,175],"150":[2,175],"151":[2,175],"152":[2,175],"153":[2,175],"154":[2,175],"155":[2,175],"156":[2,175],"157":[2,175],"158":[2,175],"159":[2,175],"160":[2,175],"161":[2,175],"162":[2,175],"163":[2,175],"164":[2,175]},{"108":135,"109":[1,79],"111":[1,80],"114":[1,136],"127":[1,133],"128":[1,134]},{"1":[2,176],"4":[2,176],"29":[2,176],"30":[2,176],"50":[1,132],"58":[2,176],"61":[2,176],"79":[2,176],"84":[2,176],"94":[2,176],"99":[2,176],"107":[2,176],"108":129,"109":[2,176],"110":[2,176],"111":[2,176],"114":[2,176],"118":[2,176],"119":[2,176],"120":[2,176],"127":[2,176],"128":[2,176],"131":[2,176],"132":[2,176],"138":[2,176],"139":[2,176],"140":[2,176],"141":[2,176],"142":[2,176],"143":[2,176],"144":[2,176],"145":[2,176],"146":[2,176],"147":[2,176],"148":[2,176],"149":[2,176],"150":[2,176],"151":[2,176],"152":[2,176],"153":[2,176],"154":[2,176],"155":[2,176],"156":[2,176],"157":[2,176],"158":[2,176],"159":[2,176],"160":[2,176],"161":[2,176],"162":[2,176],"163":[2,176],"164":[2,176]},{"1":[2,177],"4":[2,177],"29":[2,177],"30":[2,177],"50":[1,132],"58":[2,177],"61":[2,177],"79":[2,177],"84":[2,177],"94":[2,177],"99":[2,177],"107":[2,177],"108":129,"109":[2,177],"110":[2,177],"111":[2,177],"114":[2,177],"118":[2,177],"119":[2,177],"120":[2,177],"127":[2,177],"128":[2,177],"131":[2,177],"132":[2,177],"138":[2,177],"139":[2,177],"140":[2,177],"141":[2,177],"142":[2,177],"143":[2,177],"144":[2,177],"145":[2,177],"146":[2,177],"147":[2,177],"148":[2,177],"149":[2,177],"150":[2,177],"151":[2,177],"152":[2,177],"153":[2,177],"154":[2,177],"155":[2,177],"156":[2,177],"157":[2,177],"158":[2,177],"159":[2,177],"160":[2,177],"161":[2,177],"162":[2,177],"163":[2,177],"164":[2,177]},{"1":[2,178],"4":[2,178],"29":[2,178],"30":[2,178],"50":[1,132],"58":[2,178],"61":[2,178],"79":[2,178],"84":[2,178],"94":[2,178],"99":[2,178],"107":[2,178],"108":129,"109":[2,178],"110":[2,178],"111":[2,178],"114":[2,178],"118":[2,178],"119":[2,178],"120":[2,178],"127":[2,178],"128":[2,178],"131":[2,178],"132":[2,178],"138":[2,178],"139":[2,178],"140":[2,178],"141":[2,178],"142":[2,178],"143":[2,178],"144":[2,178],"145":[2,178],"146":[2,178],"147":[2,178],"148":[2,178],"149":[2,178],"150":[2,178],"151":[2,178],"152":[2,178],"153":[2,178],"154":[2,178],"155":[2,178],"156":[2,178],"157":[2,178],"158":[2,178],"159":[2,178],"160":[2,178],"161":[2,178],"162":[2,178],"163":[2,178],"164":[2,178]},{"1":[2,179],"4":[2,179],"29":[2,179],"30":[2,179],"50":[1,132],"58":[2,179],"61":[2,179],"79":[2,179],"84":[2,179],"94":[2,179],"99":[2,179],"107":[2,179],"108":129,"109":[2,179],"110":[2,179],"111":[2,179],"114":[2,179],"118":[2,179],"119":[2,179],"120":[2,179],"127":[2,179],"128":[2,179],"131":[2,179],"132":[2,179],"138":[2,179],"139":[2,179],"140":[2,179],"141":[2,179],"142":[2,179],"143":[2,179],"144":[2,179],"145":[2,179],"146":[2,179],"147":[2,179],"148":[2,179],"149":[2,179],"150":[2,179],"151":[2,179],"152":[2,179],"153":[2,179],"154":[2,179],"155":[2,179],"156":[2,179],"157":[2,179],"158":[2,179],"159":[2,179],"160":[2,179],"161":[2,179],"162":[2,179],"163":[2,179],"164":[2,179]},{"1":[2,180],"4":[2,180],"29":[2,180],"30":[2,180],"50":[1,132],"58":[2,180],"61":[2,180],"79":[2,180],"84":[2,180],"94":[2,180],"99":[2,180],"107":[2,180],"108":129,"109":[2,180],"110":[2,180],"111":[2,180],"114":[2,180],"118":[2,180],"119":[2,180],"120":[2,180],"127":[2,180],"128":[2,180],"131":[2,180],"132":[2,180],"138":[2,180],"139":[2,180],"140":[2,180],"141":[2,180],"142":[2,180],"143":[2,180],"144":[2,180],"145":[2,180],"146":[2,180],"147":[2,180],"148":[2,180],"149":[2,180],"150":[2,180],"151":[2,180],"152":[2,180],"153":[2,180],"154":[2,180],"155":[2,180],"156":[2,180],"157":[2,180],"158":[2,180],"159":[2,180],"160":[2,180],"161":[2,180],"162":[2,180],"163":[2,180],"164":[2,180]},{"1":[2,181],"4":[2,181],"29":[2,181],"30":[2,181],"50":[1,132],"58":[2,181],"61":[2,181],"79":[2,181],"84":[2,181],"94":[2,181],"99":[2,181],"107":[2,181],"108":129,"109":[2,181],"110":[2,181],"111":[2,181],"114":[2,181],"118":[2,181],"119":[2,181],"120":[2,181],"127":[2,181],"128":[2,181],"131":[2,181],"132":[2,181],"138":[2,181],"139":[2,181],"140":[2,181],"141":[2,181],"142":[2,181],"143":[2,181],"144":[2,181],"145":[2,181],"146":[2,181],"147":[2,181],"148":[2,181],"149":[2,181],"150":[2,181],"151":[2,181],"152":[2,181],"153":[2,181],"154":[2,181],"155":[2,181],"156":[2,181],"157":[2,181],"158":[2,181],"159":[2,181],"160":[2,181],"161":[2,181],"162":[2,181],"163":[2,181],"164":[2,181]},{"1":[2,182],"4":[2,182],"29":[2,182],"30":[2,182],"50":[1,132],"58":[2,182],"61":[2,182],"79":[2,182],"84":[2,182],"94":[2,182],"99":[2,182],"107":[2,182],"108":129,"109":[2,182],"110":[2,182],"111":[2,182],"114":[2,182],"118":[2,182],"119":[2,182],"120":[2,182],"127":[2,182],"128":[2,182],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,182],"152":[2,182],"153":[2,182],"154":[2,182],"155":[2,182],"156":[2,182],"157":[2,182],"158":[2,182],"159":[2,182],"160":[2,182],"161":[2,182],"162":[2,182],"163":[2,182],"164":[1,123]},{"1":[2,183],"4":[2,183],"29":[2,183],"30":[2,183],"50":[1,132],"58":[2,183],"61":[2,183],"79":[2,183],"84":[2,183],"94":[2,183],"99":[2,183],"107":[2,183],"108":129,"109":[2,183],"110":[2,183],"111":[2,183],"114":[2,183],"118":[2,183],"119":[2,183],"120":[2,183],"127":[2,183],"128":[2,183],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,183],"152":[2,183],"153":[2,183],"154":[2,183],"155":[2,183],"156":[2,183],"157":[2,183],"158":[2,183],"159":[2,183],"160":[2,183],"161":[2,183],"162":[2,183],"163":[2,183],"164":[1,123]},{"4":[1,160],"6":260,"29":[1,6],"127":[1,259]},{"102":261,"103":[1,262],"104":[1,263]},{"1":[2,137],"4":[2,137],"29":[2,137],"30":[2,137],"50":[2,137],"58":[2,137],"61":[2,137],"79":[2,137],"84":[2,137],"94":[2,137],"99":[2,137],"107":[2,137],"109":[2,137],"110":[2,137],"111":[2,137],"114":[2,137],"118":[2,137],"119":[2,137],"120":[2,137],"127":[2,137],"128":[2,137],"129":[2,137],"131":[2,137],"132":[2,137],"134":[2,137],"135":[2,137],"138":[2,137],"139":[2,137],"140":[2,137],"141":[2,137],"142":[2,137],"143":[2,137],"144":[2,137],"145":[2,137],"146":[2,137],"147":[2,137],"148":[2,137],"149":[2,137],"150":[2,137],"151":[2,137],"152":[2,137],"153":[2,137],"154":[2,137],"155":[2,137],"156":[2,137],"157":[2,137],"158":[2,137],"159":[2,137],"160":[2,137],"161":[2,137],"162":[2,137],"163":[2,137],"164":[2,137]},{"116":264,"118":[1,265],"119":[1,266]},{"58":[1,267],"118":[2,149],"119":[2,149]},{"58":[2,146],"118":[2,146],"119":[2,146]},{"58":[2,147],"118":[2,147],"119":[2,147]},{"58":[2,148],"118":[2,148],"119":[2,148]},{"4":[2,120],"8":247,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":190,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,120],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"29":[1,268],"50":[1,132],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"122":269,"124":270,"125":[1,271]},{"14":272,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":154,"62":155,"64":185,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,94],"4":[2,94],"29":[1,274],"30":[2,94],"50":[2,94],"58":[2,94],"61":[2,94],"72":[2,70],"73":[2,70],"74":[2,70],"75":[2,70],"78":[2,70],"79":[2,94],"80":[2,70],"81":[2,70],"84":[2,94],"86":[1,273],"92":[2,70],"94":[2,94],"99":[2,94],"107":[2,94],"109":[2,94],"110":[2,94],"111":[2,94],"114":[2,94],"118":[2,94],"119":[2,94],"120":[2,94],"127":[2,94],"128":[2,94],"129":[2,94],"131":[2,94],"132":[2,94],"134":[2,94],"135":[2,94],"138":[2,94],"139":[2,94],"140":[2,94],"141":[2,94],"142":[2,94],"143":[2,94],"144":[2,94],"145":[2,94],"146":[2,94],"147":[2,94],"148":[2,94],"149":[2,94],"150":[2,94],"151":[2,94],"152":[2,94],"153":[2,94],"154":[2,94],"155":[2,94],"156":[2,94],"157":[2,94],"158":[2,94],"159":[2,94],"160":[2,94],"161":[2,94],"162":[2,94],"163":[2,94],"164":[2,94]},{"63":138,"72":[1,140],"73":[1,141],"74":[1,142],"75":[1,143],"76":144,"77":145,"78":[1,146],"80":[1,147],"81":[1,148],"91":137,"92":[1,139]},{"63":151,"72":[1,140],"73":[1,141],"74":[1,142],"75":[1,143],"76":144,"77":145,"78":[1,146],"80":[1,147],"81":[1,148],"91":150,"92":[1,139]},{"1":[2,50],"4":[2,50],"30":[2,50],"50":[1,132],"61":[1,131],"107":[2,50],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[2,50],"128":[2,50],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,131],"4":[2,131],"30":[2,131],"50":[1,132],"61":[1,131],"107":[2,131],"108":129,"109":[2,131],"111":[2,131],"114":[2,131],"118":[1,124],"119":[1,125],"127":[2,131],"128":[2,131],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"107":[1,275]},{"4":[2,121],"29":[2,121],"50":[1,132],"58":[2,121],"61":[1,276],"99":[2,121],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[2,58],"29":[2,58],"57":277,"58":[1,278],"99":[2,58]},{"1":[2,114],"4":[2,114],"29":[2,114],"30":[2,114],"46":[2,114],"50":[2,114],"58":[2,114],"61":[2,114],"72":[2,114],"73":[2,114],"74":[2,114],"75":[2,114],"78":[2,114],"79":[2,114],"80":[2,114],"81":[2,114],"84":[2,114],"86":[2,114],"92":[2,114],"94":[2,114],"99":[2,114],"107":[2,114],"109":[2,114],"110":[2,114],"111":[2,114],"114":[2,114],"118":[2,114],"119":[2,114],"120":[2,114],"127":[2,114],"128":[2,114],"129":[2,114],"131":[2,114],"132":[2,114],"134":[2,114],"135":[2,114],"138":[2,114],"139":[2,114],"140":[2,114],"141":[2,114],"142":[2,114],"143":[2,114],"144":[2,114],"145":[2,114],"146":[2,114],"147":[2,114],"148":[2,114],"149":[2,114],"150":[2,114],"151":[2,114],"152":[2,114],"153":[2,114],"154":[2,114],"155":[2,114],"156":[2,114],"157":[2,114],"158":[2,114],"159":[2,114],"160":[2,114],"161":[2,114],"162":[2,114],"163":[2,114],"164":[2,114]},{"1":[2,111],"4":[2,111],"29":[2,111],"30":[2,111],"50":[2,111],"58":[2,111],"61":[2,111],"79":[2,111],"84":[2,111],"94":[2,111],"99":[2,111],"107":[2,111],"109":[2,111],"110":[2,111],"111":[2,111],"114":[2,111],"118":[2,111],"119":[2,111],"120":[2,111],"127":[2,111],"128":[2,111],"129":[2,111],"131":[2,111],"132":[2,111],"134":[2,111],"135":[2,111],"138":[2,111],"139":[2,111],"140":[2,111],"141":[2,111],"142":[2,111],"143":[2,111],"144":[2,111],"145":[2,111],"146":[2,111],"147":[2,111],"148":[2,111],"149":[2,111],"150":[2,111],"151":[2,111],"152":[2,111],"153":[2,111],"154":[2,111],"155":[2,111],"156":[2,111],"157":[2,111],"158":[2,111],"159":[2,111],"160":[2,111],"161":[2,111],"162":[2,111],"163":[2,111],"164":[2,111]},{"4":[1,160],"6":279,"29":[1,6],"50":[1,132],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[1,160],"6":280,"29":[1,6],"50":[1,132],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,133],"4":[2,133],"29":[2,133],"30":[2,133],"50":[1,132],"58":[2,133],"61":[1,131],"79":[2,133],"84":[2,133],"94":[2,133],"99":[2,133],"107":[2,133],"108":129,"109":[1,79],"110":[1,281],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,133],"127":[2,133],"128":[2,133],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,135],"4":[2,135],"29":[2,135],"30":[2,135],"50":[1,132],"58":[2,135],"61":[1,131],"79":[2,135],"84":[2,135],"94":[2,135],"99":[2,135],"107":[2,135],"108":129,"109":[1,79],"110":[1,282],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,135],"127":[2,135],"128":[2,135],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,141],"4":[2,141],"29":[2,141],"30":[2,141],"50":[2,141],"58":[2,141],"61":[2,141],"79":[2,141],"84":[2,141],"94":[2,141],"99":[2,141],"107":[2,141],"109":[2,141],"110":[2,141],"111":[2,141],"114":[2,141],"118":[2,141],"119":[2,141],"120":[2,141],"127":[2,141],"128":[2,141],"129":[2,141],"131":[2,141],"132":[2,141],"134":[2,141],"135":[2,141],"138":[2,141],"139":[2,141],"140":[2,141],"141":[2,141],"142":[2,141],"143":[2,141],"144":[2,141],"145":[2,141],"146":[2,141],"147":[2,141],"148":[2,141],"149":[2,141],"150":[2,141],"151":[2,141],"152":[2,141],"153":[2,141],"154":[2,141],"155":[2,141],"156":[2,141],"157":[2,141],"158":[2,141],"159":[2,141],"160":[2,141],"161":[2,141],"162":[2,141],"163":[2,141],"164":[2,141]},{"1":[2,142],"4":[2,142],"29":[2,142],"30":[2,142],"50":[1,132],"58":[2,142],"61":[1,131],"79":[2,142],"84":[2,142],"94":[2,142],"99":[2,142],"107":[2,142],"108":129,"109":[1,79],"110":[2,142],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,142],"127":[2,142],"128":[2,142],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[2,58],"29":[2,58],"57":283,"58":[1,284],"84":[2,58]},{"4":[2,90],"29":[2,90],"30":[2,90],"58":[2,90],"84":[2,90]},{"4":[2,45],"29":[2,45],"30":[2,45],"46":[1,285],"58":[2,45],"84":[2,45]},{"4":[2,46],"29":[2,46],"30":[2,46],"46":[1,286],"58":[2,46],"84":[2,46]},{"4":[2,49],"29":[2,49],"30":[2,49],"58":[2,49],"84":[2,49]},{"1":[2,6],"4":[2,6],"30":[2,6]},{"1":[2,29],"4":[2,29],"29":[2,29],"30":[2,29],"50":[2,29],"58":[2,29],"61":[2,29],"79":[2,29],"84":[2,29],"94":[2,29],"99":[2,29],"103":[2,29],"104":[2,29],"107":[2,29],"109":[2,29],"110":[2,29],"111":[2,29],"114":[2,29],"118":[2,29],"119":[2,29],"120":[2,29],"123":[2,29],"125":[2,29],"127":[2,29],"128":[2,29],"129":[2,29],"131":[2,29],"132":[2,29],"134":[2,29],"135":[2,29],"138":[2,29],"139":[2,29],"140":[2,29],"141":[2,29],"142":[2,29],"143":[2,29],"144":[2,29],"145":[2,29],"146":[2,29],"147":[2,29],"148":[2,29],"149":[2,29],"150":[2,29],"151":[2,29],"152":[2,29],"153":[2,29],"154":[2,29],"155":[2,29],"156":[2,29],"157":[2,29],"158":[2,29],"159":[2,29],"160":[2,29],"161":[2,29],"162":[2,29],"163":[2,29],"164":[2,29]},{"1":[2,186],"4":[2,186],"29":[2,186],"30":[2,186],"50":[1,132],"58":[2,186],"61":[2,186],"79":[2,186],"84":[2,186],"94":[2,186],"99":[2,186],"107":[2,186],"108":129,"109":[2,186],"110":[2,186],"111":[2,186],"114":[2,186],"118":[2,186],"119":[2,186],"120":[2,186],"127":[2,186],"128":[2,186],"129":[1,126],"131":[2,186],"132":[2,186],"134":[1,93],"135":[1,94],"138":[2,186],"139":[2,186],"140":[2,186],"141":[2,186],"142":[2,186],"143":[2,186],"144":[2,186],"145":[2,186],"146":[2,186],"147":[2,186],"148":[2,186],"149":[2,186],"150":[2,186],"151":[2,186],"152":[2,186],"153":[2,186],"154":[2,186],"155":[2,186],"156":[2,186],"157":[2,186],"158":[2,186],"159":[2,186],"160":[2,186],"161":[2,186],"162":[2,186],"163":[2,186],"164":[2,186]},{"1":[2,187],"4":[2,187],"29":[2,187],"30":[2,187],"50":[1,132],"58":[2,187],"61":[2,187],"79":[2,187],"84":[2,187],"94":[2,187],"99":[2,187],"107":[2,187],"108":129,"109":[2,187],"110":[2,187],"111":[2,187],"114":[2,187],"118":[2,187],"119":[2,187],"120":[2,187],"127":[2,187],"128":[2,187],"129":[1,126],"131":[2,187],"132":[2,187],"134":[1,93],"135":[1,94],"138":[2,187],"139":[2,187],"140":[2,187],"141":[2,187],"142":[2,187],"143":[2,187],"144":[2,187],"145":[2,187],"146":[2,187],"147":[2,187],"148":[2,187],"149":[2,187],"150":[2,187],"151":[2,187],"152":[2,187],"153":[2,187],"154":[2,187],"155":[2,187],"156":[2,187],"157":[2,187],"158":[2,187],"159":[2,187],"160":[2,187],"161":[2,187],"162":[2,187],"163":[2,187],"164":[2,187]},{"1":[2,188],"4":[2,188],"29":[2,188],"30":[2,188],"50":[1,132],"58":[2,188],"61":[2,188],"79":[2,188],"84":[2,188],"94":[2,188],"99":[2,188],"107":[2,188],"108":129,"109":[2,188],"110":[2,188],"111":[2,188],"114":[2,188],"118":[2,188],"119":[2,188],"120":[2,188],"127":[2,188],"128":[2,188],"129":[1,126],"131":[2,188],"132":[2,188],"134":[1,93],"135":[1,94],"138":[2,188],"139":[2,188],"140":[2,188],"141":[2,188],"142":[2,188],"143":[2,188],"144":[2,188],"145":[2,188],"146":[2,188],"147":[2,188],"148":[2,188],"149":[2,188],"150":[2,188],"151":[2,188],"152":[2,188],"153":[2,188],"154":[2,188],"155":[2,188],"156":[2,188],"157":[2,188],"158":[2,188],"159":[2,188],"160":[2,188],"161":[2,188],"162":[2,188],"163":[2,188],"164":[2,188]},{"1":[2,189],"4":[2,189],"29":[2,189],"30":[2,189],"50":[1,132],"58":[2,189],"61":[2,189],"79":[2,189],"84":[2,189],"94":[2,189],"99":[2,189],"107":[2,189],"108":129,"109":[2,189],"110":[2,189],"111":[2,189],"114":[2,189],"118":[2,189],"119":[2,189],"120":[2,189],"127":[2,189],"128":[2,189],"129":[1,126],"131":[2,189],"132":[2,189],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,189],"142":[2,189],"143":[2,189],"144":[2,189],"145":[2,189],"146":[2,189],"147":[2,189],"148":[2,189],"149":[2,189],"150":[2,189],"151":[2,189],"152":[2,189],"153":[2,189],"154":[2,189],"155":[2,189],"156":[2,189],"157":[2,189],"158":[2,189],"159":[2,189],"160":[2,189],"161":[2,189],"162":[2,189],"163":[2,189],"164":[2,189]},{"1":[2,190],"4":[2,190],"29":[2,190],"30":[2,190],"50":[1,132],"58":[2,190],"61":[2,190],"79":[2,190],"84":[2,190],"94":[2,190],"99":[2,190],"107":[2,190],"108":129,"109":[2,190],"110":[2,190],"111":[2,190],"114":[2,190],"118":[2,190],"119":[2,190],"120":[2,190],"127":[2,190],"128":[2,190],"129":[1,126],"131":[2,190],"132":[2,190],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,190],"142":[2,190],"143":[2,190],"144":[2,190],"145":[2,190],"146":[2,190],"147":[2,190],"148":[2,190],"149":[2,190],"150":[2,190],"151":[2,190],"152":[2,190],"153":[2,190],"154":[2,190],"155":[2,190],"156":[2,190],"157":[2,190],"158":[2,190],"159":[2,190],"160":[2,190],"161":[2,190],"162":[2,190],"163":[2,190],"164":[2,190]},{"1":[2,191],"4":[2,191],"29":[2,191],"30":[2,191],"50":[1,132],"58":[2,191],"61":[2,191],"79":[2,191],"84":[2,191],"94":[2,191],"99":[2,191],"107":[2,191],"108":129,"109":[2,191],"110":[2,191],"111":[2,191],"114":[2,191],"118":[2,191],"119":[2,191],"120":[2,191],"127":[2,191],"128":[2,191],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,191],"142":[2,191],"143":[2,191],"144":[2,191],"145":[2,191],"146":[2,191],"147":[2,191],"148":[2,191],"149":[2,191],"150":[2,191],"151":[2,191],"152":[2,191],"153":[2,191],"154":[2,191],"155":[2,191],"156":[2,191],"157":[2,191],"158":[2,191],"159":[2,191],"160":[2,191],"161":[2,191],"162":[2,191],"163":[2,191],"164":[2,191]},{"1":[2,192],"4":[2,192],"29":[2,192],"30":[2,192],"50":[1,132],"58":[2,192],"61":[2,192],"79":[2,192],"84":[2,192],"94":[2,192],"99":[2,192],"107":[2,192],"108":129,"109":[2,192],"110":[2,192],"111":[2,192],"114":[2,192],"118":[2,192],"119":[2,192],"120":[2,192],"127":[2,192],"128":[2,192],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,192],"142":[2,192],"143":[2,192],"144":[2,192],"145":[2,192],"146":[2,192],"147":[2,192],"148":[2,192],"149":[2,192],"150":[2,192],"151":[2,192],"152":[2,192],"153":[2,192],"154":[2,192],"155":[2,192],"156":[2,192],"157":[2,192],"158":[2,192],"159":[2,192],"160":[2,192],"161":[2,192],"162":[2,192],"163":[2,192],"164":[2,192]},{"1":[2,193],"4":[2,193],"29":[2,193],"30":[2,193],"50":[1,132],"58":[2,193],"61":[2,193],"79":[2,193],"84":[2,193],"94":[2,193],"99":[2,193],"107":[2,193],"108":129,"109":[2,193],"110":[2,193],"111":[2,193],"114":[2,193],"118":[2,193],"119":[2,193],"120":[2,193],"127":[2,193],"128":[2,193],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[2,193],"142":[2,193],"143":[2,193],"144":[2,193],"145":[2,193],"146":[2,193],"147":[2,193],"148":[2,193],"149":[2,193],"150":[2,193],"151":[2,193],"152":[2,193],"153":[2,193],"154":[2,193],"155":[2,193],"156":[2,193],"157":[2,193],"158":[2,193],"159":[2,193],"160":[2,193],"161":[2,193],"162":[2,193],"163":[2,193],"164":[2,193]},{"1":[2,194],"4":[2,194],"29":[2,194],"30":[2,194],"50":[1,132],"58":[2,194],"61":[2,194],"79":[2,194],"84":[2,194],"94":[2,194],"99":[2,194],"107":[2,194],"108":129,"109":[2,194],"110":[2,194],"111":[2,194],"114":[2,194],"118":[2,194],"119":[2,194],"120":[2,194],"127":[2,194],"128":[2,194],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[2,194],"145":[2,194],"146":[2,194],"147":[2,194],"148":[2,194],"149":[2,194],"150":[2,194],"151":[2,194],"152":[2,194],"153":[2,194],"154":[2,194],"155":[2,194],"156":[2,194],"157":[2,194],"158":[2,194],"159":[2,194],"160":[2,194],"161":[2,194],"162":[2,194],"163":[2,194],"164":[2,194]},{"1":[2,195],"4":[2,195],"29":[2,195],"30":[2,195],"50":[1,132],"58":[2,195],"61":[2,195],"79":[2,195],"84":[2,195],"94":[2,195],"99":[2,195],"107":[2,195],"108":129,"109":[2,195],"110":[2,195],"111":[2,195],"114":[2,195],"118":[2,195],"119":[2,195],"120":[2,195],"127":[2,195],"128":[2,195],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[2,195],"145":[2,195],"146":[2,195],"147":[2,195],"148":[2,195],"149":[2,195],"150":[2,195],"151":[2,195],"152":[2,195],"153":[2,195],"154":[2,195],"155":[2,195],"156":[2,195],"157":[2,195],"158":[2,195],"159":[2,195],"160":[2,195],"161":[2,195],"162":[2,195],"163":[2,195],"164":[2,195]},{"1":[2,196],"4":[2,196],"29":[2,196],"30":[2,196],"50":[1,132],"58":[2,196],"61":[2,196],"79":[2,196],"84":[2,196],"94":[2,196],"99":[2,196],"107":[2,196],"108":129,"109":[2,196],"110":[2,196],"111":[2,196],"114":[2,196],"118":[2,196],"119":[2,196],"120":[2,196],"127":[2,196],"128":[2,196],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[2,196],"145":[2,196],"146":[2,196],"147":[2,196],"148":[2,196],"149":[2,196],"150":[2,196],"151":[2,196],"152":[2,196],"153":[2,196],"154":[2,196],"155":[2,196],"156":[2,196],"157":[2,196],"158":[2,196],"159":[2,196],"160":[2,196],"161":[2,196],"162":[2,196],"163":[2,196],"164":[2,196]},{"1":[2,197],"4":[2,197],"29":[2,197],"30":[2,197],"50":[1,132],"58":[2,197],"61":[2,197],"79":[2,197],"84":[2,197],"94":[2,197],"99":[2,197],"107":[2,197],"108":129,"109":[2,197],"110":[2,197],"111":[2,197],"114":[2,197],"118":[2,197],"119":[2,197],"120":[2,197],"127":[2,197],"128":[2,197],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,197],"148":[2,197],"149":[2,197],"150":[2,197],"151":[2,197],"152":[2,197],"153":[2,197],"154":[2,197],"155":[2,197],"156":[2,197],"157":[2,197],"158":[2,197],"159":[2,197],"160":[2,197],"161":[2,197],"162":[2,197],"163":[2,197],"164":[2,197]},{"1":[2,198],"4":[2,198],"29":[2,198],"30":[2,198],"50":[1,132],"58":[2,198],"61":[2,198],"79":[2,198],"84":[2,198],"94":[2,198],"99":[2,198],"107":[2,198],"108":129,"109":[2,198],"110":[2,198],"111":[2,198],"114":[2,198],"118":[2,198],"119":[2,198],"120":[2,198],"127":[2,198],"128":[2,198],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,198],"148":[2,198],"149":[2,198],"150":[2,198],"151":[2,198],"152":[2,198],"153":[2,198],"154":[2,198],"155":[2,198],"156":[2,198],"157":[2,198],"158":[2,198],"159":[2,198],"160":[2,198],"161":[2,198],"162":[2,198],"163":[2,198],"164":[2,198]},{"1":[2,199],"4":[2,199],"29":[2,199],"30":[2,199],"50":[1,132],"58":[2,199],"61":[2,199],"79":[2,199],"84":[2,199],"94":[2,199],"99":[2,199],"107":[2,199],"108":129,"109":[2,199],"110":[2,199],"111":[2,199],"114":[2,199],"118":[2,199],"119":[2,199],"120":[2,199],"127":[2,199],"128":[2,199],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,199],"148":[2,199],"149":[2,199],"150":[2,199],"151":[2,199],"152":[2,199],"153":[2,199],"154":[2,199],"155":[2,199],"156":[2,199],"157":[2,199],"158":[2,199],"159":[2,199],"160":[2,199],"161":[2,199],"162":[2,199],"163":[2,199],"164":[2,199]},{"1":[2,200],"4":[2,200],"29":[2,200],"30":[2,200],"50":[1,132],"58":[2,200],"61":[2,200],"79":[2,200],"84":[2,200],"94":[2,200],"99":[2,200],"107":[2,200],"108":129,"109":[2,200],"110":[2,200],"111":[2,200],"114":[2,200],"118":[2,200],"119":[2,200],"120":[2,200],"127":[2,200],"128":[2,200],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[2,200],"148":[2,200],"149":[2,200],"150":[2,200],"151":[2,200],"152":[2,200],"153":[2,200],"154":[2,200],"155":[2,200],"156":[2,200],"157":[2,200],"158":[2,200],"159":[2,200],"160":[2,200],"161":[2,200],"162":[2,200],"163":[2,200],"164":[2,200]},{"1":[2,201],"4":[2,201],"29":[2,201],"30":[2,201],"50":[1,132],"58":[2,201],"61":[2,201],"79":[2,201],"84":[2,201],"94":[2,201],"99":[2,201],"107":[2,201],"108":129,"109":[2,201],"110":[2,201],"111":[2,201],"114":[2,201],"118":[2,201],"119":[2,201],"120":[2,201],"127":[2,201],"128":[2,201],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,201],"152":[2,201],"153":[2,201],"154":[2,201],"155":[2,201],"156":[2,201],"157":[2,201],"158":[2,201],"159":[2,201],"160":[2,201],"161":[2,201],"162":[2,201],"163":[2,201],"164":[1,123]},{"1":[2,202],"4":[2,202],"29":[2,202],"30":[2,202],"50":[1,132],"58":[2,202],"61":[2,202],"79":[2,202],"84":[2,202],"94":[2,202],"99":[2,202],"107":[2,202],"108":129,"109":[2,202],"110":[2,202],"111":[2,202],"114":[2,202],"118":[2,202],"119":[2,202],"120":[2,202],"127":[2,202],"128":[2,202],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,202],"152":[2,202],"153":[2,202],"154":[2,202],"155":[2,202],"156":[2,202],"157":[2,202],"158":[2,202],"159":[2,202],"160":[2,202],"161":[2,202],"162":[2,202],"163":[2,202],"164":[1,123]},{"1":[2,203],"4":[2,203],"29":[2,203],"30":[2,203],"50":[1,132],"58":[2,203],"61":[2,203],"79":[2,203],"84":[2,203],"94":[2,203],"99":[2,203],"107":[2,203],"108":129,"109":[2,203],"110":[2,203],"111":[2,203],"114":[2,203],"118":[2,203],"119":[2,203],"120":[2,203],"127":[2,203],"128":[2,203],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[2,203],"154":[2,203],"155":[2,203],"156":[2,203],"157":[2,203],"158":[2,203],"159":[2,203],"160":[2,203],"161":[2,203],"162":[2,203],"163":[2,203],"164":[1,123]},{"1":[2,204],"4":[2,204],"29":[2,204],"30":[2,204],"50":[1,132],"58":[2,204],"61":[2,204],"79":[2,204],"84":[2,204],"94":[2,204],"99":[2,204],"107":[2,204],"108":129,"109":[2,204],"110":[2,204],"111":[2,204],"114":[2,204],"118":[2,204],"119":[2,204],"120":[2,204],"127":[2,204],"128":[2,204],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[2,204],"154":[2,204],"155":[2,204],"156":[2,204],"157":[2,204],"158":[2,204],"159":[2,204],"160":[2,204],"161":[2,204],"162":[2,204],"163":[2,204],"164":[1,123]},{"1":[2,205],"4":[2,205],"29":[2,205],"30":[2,205],"50":[1,132],"58":[2,205],"61":[2,205],"79":[2,205],"84":[2,205],"94":[2,205],"99":[2,205],"107":[2,205],"108":129,"109":[2,205],"110":[2,205],"111":[2,205],"114":[2,205],"118":[2,205],"119":[2,205],"120":[2,205],"127":[2,205],"128":[2,205],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[2,205],"154":[2,205],"155":[2,205],"156":[2,205],"157":[2,205],"158":[2,205],"159":[2,205],"160":[2,205],"161":[2,205],"162":[2,205],"163":[2,205],"164":[1,123]},{"1":[2,206],"4":[2,206],"29":[2,206],"30":[2,206],"50":[1,132],"58":[2,206],"61":[2,206],"79":[2,206],"84":[2,206],"94":[2,206],"99":[2,206],"107":[2,206],"108":129,"109":[2,206],"110":[2,206],"111":[2,206],"114":[2,206],"118":[2,206],"119":[2,206],"120":[2,206],"127":[2,206],"128":[2,206],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,207],"4":[2,207],"29":[2,207],"30":[2,207],"50":[1,132],"58":[2,207],"61":[2,207],"79":[2,207],"84":[2,207],"94":[2,207],"99":[2,207],"107":[2,207],"108":129,"109":[2,207],"110":[2,207],"111":[2,207],"114":[2,207],"118":[2,207],"119":[2,207],"120":[2,207],"127":[2,207],"128":[2,207],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,208],"4":[2,208],"29":[2,208],"30":[2,208],"50":[1,132],"58":[2,208],"61":[2,208],"79":[2,208],"84":[2,208],"94":[2,208],"99":[2,208],"107":[2,208],"108":129,"109":[2,208],"110":[2,208],"111":[2,208],"114":[2,208],"118":[2,208],"119":[2,208],"120":[2,208],"127":[2,208],"128":[2,208],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,209],"4":[2,209],"29":[2,209],"30":[2,209],"50":[1,132],"58":[2,209],"61":[2,209],"79":[2,209],"84":[2,209],"94":[2,209],"99":[2,209],"107":[2,209],"108":129,"109":[2,209],"110":[2,209],"111":[2,209],"114":[2,209],"118":[2,209],"119":[2,209],"120":[2,209],"127":[2,209],"128":[2,209],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,210],"4":[2,210],"29":[2,210],"30":[2,210],"50":[1,132],"58":[2,210],"61":[2,210],"79":[2,210],"84":[2,210],"94":[2,210],"99":[2,210],"107":[2,210],"108":129,"109":[2,210],"110":[2,210],"111":[2,210],"114":[2,210],"118":[2,210],"119":[2,210],"120":[2,210],"127":[2,210],"128":[2,210],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,211],"4":[2,211],"29":[2,211],"30":[2,211],"50":[1,132],"58":[2,211],"61":[2,211],"79":[2,211],"84":[2,211],"94":[2,211],"99":[2,211],"107":[2,211],"108":129,"109":[2,211],"110":[2,211],"111":[2,211],"114":[2,211],"118":[2,211],"119":[2,211],"120":[2,211],"127":[2,211],"128":[2,211],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,212],"4":[2,212],"29":[2,212],"30":[2,212],"50":[1,132],"58":[2,212],"61":[2,212],"79":[2,212],"84":[2,212],"94":[2,212],"99":[2,212],"107":[2,212],"108":129,"109":[2,212],"110":[2,212],"111":[2,212],"114":[2,212],"118":[2,212],"119":[2,212],"120":[2,212],"127":[2,212],"128":[2,212],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,213],"4":[2,213],"29":[2,213],"30":[2,213],"50":[1,132],"58":[2,213],"61":[2,213],"79":[2,213],"84":[2,213],"94":[2,213],"99":[2,213],"107":[2,213],"108":129,"109":[2,213],"110":[2,213],"111":[2,213],"114":[2,213],"118":[2,213],"119":[2,213],"120":[2,213],"127":[2,213],"128":[2,213],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,214],"4":[2,214],"29":[2,214],"30":[2,214],"50":[1,132],"58":[2,214],"61":[2,214],"79":[2,214],"84":[2,214],"94":[2,214],"99":[2,214],"107":[2,214],"108":129,"109":[2,214],"110":[2,214],"111":[2,214],"114":[2,214],"118":[2,214],"119":[2,214],"120":[2,214],"127":[2,214],"128":[2,214],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[2,214],"152":[2,214],"153":[2,214],"154":[2,214],"155":[2,214],"156":[2,214],"157":[2,214],"158":[2,214],"159":[2,214],"160":[2,214],"161":[2,214],"162":[2,214],"163":[2,214],"164":[1,123]},{"1":[2,215],"4":[2,215],"29":[2,215],"30":[2,215],"50":[1,132],"58":[2,215],"61":[1,131],"79":[2,215],"84":[2,215],"94":[2,215],"99":[2,215],"107":[2,215],"108":129,"109":[2,215],"110":[2,215],"111":[2,215],"114":[2,215],"118":[1,124],"119":[1,125],"120":[2,215],"127":[2,215],"128":[2,215],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,216],"4":[2,216],"29":[2,216],"30":[2,216],"50":[1,132],"58":[2,216],"61":[1,131],"79":[2,216],"84":[2,216],"94":[2,216],"99":[2,216],"107":[2,216],"108":129,"109":[2,216],"110":[2,216],"111":[2,216],"114":[2,216],"118":[1,124],"119":[1,125],"120":[2,216],"127":[2,216],"128":[2,216],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"8":287,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":288,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,172],"4":[2,172],"29":[2,172],"30":[2,172],"50":[1,132],"58":[2,172],"61":[1,131],"79":[2,172],"84":[2,172],"94":[2,172],"99":[2,172],"107":[2,172],"108":129,"109":[1,79],"110":[2,172],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,172],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,174],"4":[2,174],"29":[2,174],"30":[2,174],"50":[1,132],"58":[2,174],"61":[1,131],"79":[2,174],"84":[2,174],"94":[2,174],"99":[2,174],"107":[2,174],"108":129,"109":[1,79],"110":[2,174],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,174],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"116":289,"118":[1,265],"119":[1,266]},{"61":[1,290]},{"1":[2,171],"4":[2,171],"29":[2,171],"30":[2,171],"50":[1,132],"58":[2,171],"61":[1,131],"79":[2,171],"84":[2,171],"94":[2,171],"99":[2,171],"107":[2,171],"108":129,"109":[1,79],"110":[2,171],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,171],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,173],"4":[2,173],"29":[2,173],"30":[2,173],"50":[1,132],"58":[2,173],"61":[1,131],"79":[2,173],"84":[2,173],"94":[2,173],"99":[2,173],"107":[2,173],"108":129,"109":[1,79],"110":[2,173],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,173],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"116":291,"118":[1,265],"119":[1,266]},{"4":[2,58],"29":[2,58],"57":292,"58":[1,278],"94":[2,58]},{"4":[2,121],"29":[2,121],"30":[2,121],"50":[1,132],"58":[2,121],"61":[1,131],"94":[2,121],"99":[2,121],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,79],"4":[2,79],"29":[2,79],"30":[2,79],"46":[2,79],"50":[2,79],"58":[2,79],"61":[2,79],"72":[2,79],"73":[2,79],"74":[2,79],"75":[2,79],"78":[2,79],"79":[2,79],"80":[2,79],"81":[2,79],"84":[2,79],"86":[2,79],"92":[2,79],"94":[2,79],"99":[2,79],"107":[2,79],"109":[2,79],"110":[2,79],"111":[2,79],"114":[2,79],"118":[2,79],"119":[2,79],"120":[2,79],"127":[2,79],"128":[2,79],"129":[2,79],"131":[2,79],"132":[2,79],"134":[2,79],"135":[2,79],"138":[2,79],"139":[2,79],"140":[2,79],"141":[2,79],"142":[2,79],"143":[2,79],"144":[2,79],"145":[2,79],"146":[2,79],"147":[2,79],"148":[2,79],"149":[2,79],"150":[2,79],"151":[2,79],"152":[2,79],"153":[2,79],"154":[2,79],"155":[2,79],"156":[2,79],"157":[2,79],"158":[2,79],"159":[2,79],"160":[2,79],"161":[2,79],"162":[2,79],"163":[2,79],"164":[2,79]},{"1":[2,80],"4":[2,80],"29":[2,80],"30":[2,80],"46":[2,80],"50":[2,80],"58":[2,80],"61":[2,80],"72":[2,80],"73":[2,80],"74":[2,80],"75":[2,80],"78":[2,80],"79":[2,80],"80":[2,80],"81":[2,80],"84":[2,80],"86":[2,80],"92":[2,80],"94":[2,80],"99":[2,80],"107":[2,80],"109":[2,80],"110":[2,80],"111":[2,80],"114":[2,80],"118":[2,80],"119":[2,80],"120":[2,80],"127":[2,80],"128":[2,80],"129":[2,80],"131":[2,80],"132":[2,80],"134":[2,80],"135":[2,80],"138":[2,80],"139":[2,80],"140":[2,80],"141":[2,80],"142":[2,80],"143":[2,80],"144":[2,80],"145":[2,80],"146":[2,80],"147":[2,80],"148":[2,80],"149":[2,80],"150":[2,80],"151":[2,80],"152":[2,80],"153":[2,80],"154":[2,80],"155":[2,80],"156":[2,80],"157":[2,80],"158":[2,80],"159":[2,80],"160":[2,80],"161":[2,80],"162":[2,80],"163":[2,80],"164":[2,80]},{"1":[2,82],"4":[2,82],"29":[2,82],"30":[2,82],"46":[2,82],"50":[2,82],"58":[2,82],"61":[2,82],"72":[2,82],"73":[2,82],"74":[2,82],"75":[2,82],"78":[2,82],"79":[2,82],"80":[2,82],"81":[2,82],"84":[2,82],"86":[2,82],"92":[2,82],"94":[2,82],"99":[2,82],"107":[2,82],"109":[2,82],"110":[2,82],"111":[2,82],"114":[2,82],"118":[2,82],"119":[2,82],"120":[2,82],"127":[2,82],"128":[2,82],"129":[2,82],"131":[2,82],"132":[2,82],"134":[2,82],"135":[2,82],"138":[2,82],"139":[2,82],"140":[2,82],"141":[2,82],"142":[2,82],"143":[2,82],"144":[2,82],"145":[2,82],"146":[2,82],"147":[2,82],"148":[2,82],"149":[2,82],"150":[2,82],"151":[2,82],"152":[2,82],"153":[2,82],"154":[2,82],"155":[2,82],"156":[2,82],"157":[2,82],"158":[2,82],"159":[2,82],"160":[2,82],"161":[2,82],"162":[2,82],"163":[2,82],"164":[2,82]},{"50":[1,132],"61":[1,294],"79":[1,293],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,86],"4":[2,86],"29":[2,86],"30":[2,86],"46":[2,86],"50":[2,86],"58":[2,86],"61":[2,86],"72":[2,86],"73":[2,86],"74":[2,86],"75":[2,86],"78":[2,86],"79":[2,86],"80":[2,86],"81":[2,86],"84":[2,86],"86":[2,86],"92":[2,86],"94":[2,86],"99":[2,86],"107":[2,86],"109":[2,86],"110":[2,86],"111":[2,86],"114":[2,86],"118":[2,86],"119":[2,86],"120":[2,86],"127":[2,86],"128":[2,86],"129":[2,86],"131":[2,86],"132":[2,86],"134":[2,86],"135":[2,86],"138":[2,86],"139":[2,86],"140":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"148":[2,86],"149":[2,86],"150":[2,86],"151":[2,86],"152":[2,86],"153":[2,86],"154":[2,86],"155":[2,86],"156":[2,86],"157":[2,86],"158":[2,86],"159":[2,86],"160":[2,86],"161":[2,86],"162":[2,86],"163":[2,86],"164":[2,86]},{"8":295,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,87],"4":[2,87],"29":[2,87],"30":[2,87],"46":[2,87],"50":[2,87],"58":[2,87],"61":[2,87],"72":[2,87],"73":[2,87],"74":[2,87],"75":[2,87],"78":[2,87],"79":[2,87],"80":[2,87],"81":[2,87],"84":[2,87],"86":[2,87],"92":[2,87],"94":[2,87],"99":[2,87],"107":[2,87],"109":[2,87],"110":[2,87],"111":[2,87],"114":[2,87],"118":[2,87],"119":[2,87],"120":[2,87],"127":[2,87],"128":[2,87],"129":[2,87],"131":[2,87],"132":[2,87],"134":[2,87],"135":[2,87],"138":[2,87],"139":[2,87],"140":[2,87],"141":[2,87],"142":[2,87],"143":[2,87],"144":[2,87],"145":[2,87],"146":[2,87],"147":[2,87],"148":[2,87],"149":[2,87],"150":[2,87],"151":[2,87],"152":[2,87],"153":[2,87],"154":[2,87],"155":[2,87],"156":[2,87],"157":[2,87],"158":[2,87],"159":[2,87],"160":[2,87],"161":[2,87],"162":[2,87],"163":[2,87],"164":[2,87]},{"1":[2,44],"4":[2,44],"29":[2,44],"30":[2,44],"50":[1,132],"58":[2,44],"61":[1,131],"79":[2,44],"84":[2,44],"94":[2,44],"99":[2,44],"107":[2,44],"108":129,"109":[1,79],"110":[2,44],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,44],"127":[2,44],"128":[2,44],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"54":296,"55":[1,75],"56":[1,76]},{"59":297,"60":[1,158]},{"61":[1,298]},{"8":299,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,169],"4":[2,169],"29":[2,169],"30":[2,169],"50":[2,169],"58":[2,169],"61":[2,169],"79":[2,169],"84":[2,169],"94":[2,169],"99":[2,169],"107":[2,169],"109":[2,169],"110":[2,169],"111":[2,169],"114":[2,169],"118":[2,169],"119":[2,169],"120":[2,169],"123":[2,169],"127":[2,169],"128":[2,169],"129":[2,169],"131":[2,169],"132":[2,169],"134":[2,169],"135":[2,169],"138":[2,169],"139":[2,169],"140":[2,169],"141":[2,169],"142":[2,169],"143":[2,169],"144":[2,169],"145":[2,169],"146":[2,169],"147":[2,169],"148":[2,169],"149":[2,169],"150":[2,169],"151":[2,169],"152":[2,169],"153":[2,169],"154":[2,169],"155":[2,169],"156":[2,169],"157":[2,169],"158":[2,169],"159":[2,169],"160":[2,169],"161":[2,169],"162":[2,169],"163":[2,169],"164":[2,169]},{"1":[2,127],"4":[2,127],"29":[2,127],"30":[2,127],"50":[2,127],"58":[2,127],"61":[2,127],"79":[2,127],"84":[2,127],"94":[2,127],"99":[2,127],"103":[1,300],"107":[2,127],"109":[2,127],"110":[2,127],"111":[2,127],"114":[2,127],"118":[2,127],"119":[2,127],"120":[2,127],"127":[2,127],"128":[2,127],"129":[2,127],"131":[2,127],"132":[2,127],"134":[2,127],"135":[2,127],"138":[2,127],"139":[2,127],"140":[2,127],"141":[2,127],"142":[2,127],"143":[2,127],"144":[2,127],"145":[2,127],"146":[2,127],"147":[2,127],"148":[2,127],"149":[2,127],"150":[2,127],"151":[2,127],"152":[2,127],"153":[2,127],"154":[2,127],"155":[2,127],"156":[2,127],"157":[2,127],"158":[2,127],"159":[2,127],"160":[2,127],"161":[2,127],"162":[2,127],"163":[2,127],"164":[2,127]},{"4":[1,160],"6":301,"29":[1,6]},{"31":302,"32":[1,87]},{"4":[1,160],"6":303,"29":[1,6]},{"8":304,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":305,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"31":176,"32":[1,87],"66":177,"67":178,"82":[1,84],"98":[1,179],"117":306},{"122":307,"124":270,"125":[1,271]},{"30":[1,308],"123":[1,309],"124":310,"125":[1,271]},{"30":[2,162],"123":[2,162],"125":[2,162]},{"8":312,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"100":311,"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,107],"4":[2,107],"29":[2,107],"30":[2,107],"50":[2,107],"58":[2,107],"61":[2,107],"63":138,"72":[1,140],"73":[1,141],"74":[1,142],"75":[1,143],"76":144,"77":145,"78":[1,146],"79":[2,107],"80":[1,147],"81":[1,148],"84":[2,107],"91":137,"92":[1,139],"94":[2,107],"99":[2,107],"107":[2,107],"109":[2,107],"110":[2,107],"111":[2,107],"114":[2,107],"118":[2,107],"119":[2,107],"120":[2,107],"127":[2,107],"128":[2,107],"129":[2,107],"131":[2,107],"132":[2,107],"134":[2,107],"135":[2,107],"138":[2,107],"139":[2,107],"140":[2,107],"141":[2,107],"142":[2,107],"143":[2,107],"144":[2,107],"145":[2,107],"146":[2,107],"147":[2,107],"148":[2,107],"149":[2,107],"150":[2,107],"151":[2,107],"152":[2,107],"153":[2,107],"154":[2,107],"155":[2,107],"156":[2,107],"157":[2,107],"158":[2,107],"159":[2,107],"160":[2,107],"161":[2,107],"162":[2,107],"163":[2,107],"164":[2,107]},{"14":313,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":154,"62":155,"64":185,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"4":[2,100],"28":203,"30":[2,100],"31":201,"32":[1,87],"33":202,"34":[1,85],"35":[1,86],"47":316,"49":[1,56],"65":317,"87":314,"88":315,"97":[1,318]},{"1":[2,132],"4":[2,132],"29":[2,132],"30":[2,132],"50":[2,132],"58":[2,132],"61":[2,132],"72":[2,132],"73":[2,132],"74":[2,132],"75":[2,132],"78":[2,132],"79":[2,132],"80":[2,132],"81":[2,132],"84":[2,132],"92":[2,132],"94":[2,132],"99":[2,132],"107":[2,132],"109":[2,132],"110":[2,132],"111":[2,132],"114":[2,132],"118":[2,132],"119":[2,132],"120":[2,132],"127":[2,132],"128":[2,132],"129":[2,132],"131":[2,132],"132":[2,132],"134":[2,132],"135":[2,132],"138":[2,132],"139":[2,132],"140":[2,132],"141":[2,132],"142":[2,132],"143":[2,132],"144":[2,132],"145":[2,132],"146":[2,132],"147":[2,132],"148":[2,132],"149":[2,132],"150":[2,132],"151":[2,132],"152":[2,132],"153":[2,132],"154":[2,132],"155":[2,132],"156":[2,132],"157":[2,132],"158":[2,132],"159":[2,132],"160":[2,132],"161":[2,132],"162":[2,132],"163":[2,132],"164":[2,132]},{"61":[1,319]},{"4":[1,321],"29":[1,322],"99":[1,320]},{"4":[2,59],"8":323,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,59],"30":[2,59],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"94":[2,59],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,59],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,166],"4":[2,166],"29":[2,166],"30":[2,166],"50":[2,166],"58":[2,166],"61":[2,166],"79":[2,166],"84":[2,166],"94":[2,166],"99":[2,166],"107":[2,166],"109":[2,166],"110":[2,166],"111":[2,166],"114":[2,166],"118":[2,166],"119":[2,166],"120":[2,166],"123":[2,166],"127":[2,166],"128":[2,166],"129":[2,166],"131":[2,166],"132":[2,166],"134":[2,166],"135":[2,166],"138":[2,166],"139":[2,166],"140":[2,166],"141":[2,166],"142":[2,166],"143":[2,166],"144":[2,166],"145":[2,166],"146":[2,166],"147":[2,166],"148":[2,166],"149":[2,166],"150":[2,166],"151":[2,166],"152":[2,166],"153":[2,166],"154":[2,166],"155":[2,166],"156":[2,166],"157":[2,166],"158":[2,166],"159":[2,166],"160":[2,166],"161":[2,166],"162":[2,166],"163":[2,166],"164":[2,166]},{"1":[2,167],"4":[2,167],"29":[2,167],"30":[2,167],"50":[2,167],"58":[2,167],"61":[2,167],"79":[2,167],"84":[2,167],"94":[2,167],"99":[2,167],"107":[2,167],"109":[2,167],"110":[2,167],"111":[2,167],"114":[2,167],"118":[2,167],"119":[2,167],"120":[2,167],"123":[2,167],"127":[2,167],"128":[2,167],"129":[2,167],"131":[2,167],"132":[2,167],"134":[2,167],"135":[2,167],"138":[2,167],"139":[2,167],"140":[2,167],"141":[2,167],"142":[2,167],"143":[2,167],"144":[2,167],"145":[2,167],"146":[2,167],"147":[2,167],"148":[2,167],"149":[2,167],"150":[2,167],"151":[2,167],"152":[2,167],"153":[2,167],"154":[2,167],"155":[2,167],"156":[2,167],"157":[2,167],"158":[2,167],"159":[2,167],"160":[2,167],"161":[2,167],"162":[2,167],"163":[2,167],"164":[2,167]},{"8":324,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":325,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[1,327],"29":[1,328],"84":[1,326]},{"4":[2,59],"28":203,"29":[2,59],"30":[2,59],"31":201,"32":[1,87],"33":202,"34":[1,85],"35":[1,86],"47":329,"49":[1,56],"84":[2,59]},{"8":330,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":331,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,217],"4":[2,217],"29":[2,217],"30":[2,217],"50":[1,132],"58":[2,217],"61":[2,217],"79":[2,217],"84":[2,217],"94":[2,217],"99":[2,217],"107":[2,217],"108":129,"109":[2,217],"110":[2,217],"111":[2,217],"114":[2,217],"118":[2,217],"119":[2,217],"120":[2,217],"127":[2,217],"128":[2,217],"131":[2,217],"132":[2,217],"138":[2,217],"139":[2,217],"140":[2,217],"141":[2,217],"142":[2,217],"143":[2,217],"144":[2,217],"145":[2,217],"146":[2,217],"147":[2,217],"148":[2,217],"149":[2,217],"150":[2,217],"151":[2,217],"152":[2,217],"153":[2,217],"154":[2,217],"155":[2,217],"156":[2,217],"157":[2,217],"158":[2,217],"159":[2,217],"160":[2,217],"161":[2,217],"162":[2,217],"163":[2,217],"164":[2,217]},{"1":[2,218],"4":[2,218],"29":[2,218],"30":[2,218],"50":[1,132],"58":[2,218],"61":[2,218],"79":[2,218],"84":[2,218],"94":[2,218],"99":[2,218],"107":[2,218],"108":129,"109":[2,218],"110":[2,218],"111":[2,218],"114":[2,218],"118":[2,218],"119":[2,218],"120":[2,218],"127":[2,218],"128":[2,218],"131":[2,218],"132":[2,218],"138":[2,218],"139":[2,218],"140":[2,218],"141":[2,218],"142":[2,218],"143":[2,218],"144":[2,218],"145":[2,218],"146":[2,218],"147":[2,218],"148":[2,218],"149":[2,218],"150":[2,218],"151":[2,218],"152":[2,218],"153":[2,218],"154":[2,218],"155":[2,218],"156":[2,218],"157":[2,218],"158":[2,218],"159":[2,218],"160":[2,218],"161":[2,218],"162":[2,218],"163":[2,218],"164":[2,218]},{"1":[2,144],"4":[2,144],"29":[2,144],"30":[2,144],"50":[2,144],"58":[2,144],"61":[2,144],"79":[2,144],"84":[2,144],"94":[2,144],"99":[2,144],"107":[2,144],"109":[2,144],"110":[2,144],"111":[2,144],"114":[2,144],"118":[2,144],"119":[2,144],"120":[2,144],"127":[2,144],"128":[2,144],"129":[2,144],"131":[2,144],"132":[2,144],"134":[2,144],"135":[2,144],"138":[2,144],"139":[2,144],"140":[2,144],"141":[2,144],"142":[2,144],"143":[2,144],"144":[2,144],"145":[2,144],"146":[2,144],"147":[2,144],"148":[2,144],"149":[2,144],"150":[2,144],"151":[2,144],"152":[2,144],"153":[2,144],"154":[2,144],"155":[2,144],"156":[2,144],"157":[2,144],"158":[2,144],"159":[2,144],"160":[2,144],"161":[2,144],"162":[2,144],"163":[2,144],"164":[2,144]},{"1":[2,65],"4":[2,65],"29":[2,65],"30":[2,65],"50":[2,65],"58":[2,65],"61":[2,65],"79":[2,65],"84":[2,65],"94":[2,65],"99":[2,65],"107":[2,65],"109":[2,65],"110":[2,65],"111":[2,65],"114":[2,65],"118":[2,65],"119":[2,65],"120":[2,65],"127":[2,65],"128":[2,65],"129":[2,65],"131":[2,65],"132":[2,65],"134":[2,65],"135":[2,65],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65],"164":[2,65]},{"1":[2,143],"4":[2,143],"29":[2,143],"30":[2,143],"50":[2,143],"58":[2,143],"61":[2,143],"79":[2,143],"84":[2,143],"94":[2,143],"99":[2,143],"107":[2,143],"109":[2,143],"110":[2,143],"111":[2,143],"114":[2,143],"118":[2,143],"119":[2,143],"120":[2,143],"127":[2,143],"128":[2,143],"129":[2,143],"131":[2,143],"132":[2,143],"134":[2,143],"135":[2,143],"138":[2,143],"139":[2,143],"140":[2,143],"141":[2,143],"142":[2,143],"143":[2,143],"144":[2,143],"145":[2,143],"146":[2,143],"147":[2,143],"148":[2,143],"149":[2,143],"150":[2,143],"151":[2,143],"152":[2,143],"153":[2,143],"154":[2,143],"155":[2,143],"156":[2,143],"157":[2,143],"158":[2,143],"159":[2,143],"160":[2,143],"161":[2,143],"162":[2,143],"163":[2,143],"164":[2,143]},{"4":[1,321],"29":[1,322],"94":[1,332]},{"1":[2,85],"4":[2,85],"29":[2,85],"30":[2,85],"46":[2,85],"50":[2,85],"58":[2,85],"61":[2,85],"72":[2,85],"73":[2,85],"74":[2,85],"75":[2,85],"78":[2,85],"79":[2,85],"80":[2,85],"81":[2,85],"84":[2,85],"86":[2,85],"92":[2,85],"94":[2,85],"99":[2,85],"107":[2,85],"109":[2,85],"110":[2,85],"111":[2,85],"114":[2,85],"118":[2,85],"119":[2,85],"120":[2,85],"127":[2,85],"128":[2,85],"129":[2,85],"131":[2,85],"132":[2,85],"134":[2,85],"135":[2,85],"138":[2,85],"139":[2,85],"140":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"148":[2,85],"149":[2,85],"150":[2,85],"151":[2,85],"152":[2,85],"153":[2,85],"154":[2,85],"155":[2,85],"156":[2,85],"157":[2,85],"158":[2,85],"159":[2,85],"160":[2,85],"161":[2,85],"162":[2,85],"163":[2,85],"164":[2,85]},{"61":[1,333]},{"50":[1,132],"61":[1,131],"79":[1,293],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[1,160],"6":334,"29":[1,6]},{"53":[2,62],"58":[2,62],"61":[1,258]},{"61":[1,335]},{"4":[1,160],"6":336,"29":[1,6],"50":[1,132],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[1,160],"6":337,"29":[1,6]},{"1":[2,128],"4":[2,128],"29":[2,128],"30":[2,128],"50":[2,128],"58":[2,128],"61":[2,128],"79":[2,128],"84":[2,128],"94":[2,128],"99":[2,128],"107":[2,128],"109":[2,128],"110":[2,128],"111":[2,128],"114":[2,128],"118":[2,128],"119":[2,128],"120":[2,128],"127":[2,128],"128":[2,128],"129":[2,128],"131":[2,128],"132":[2,128],"134":[2,128],"135":[2,128],"138":[2,128],"139":[2,128],"140":[2,128],"141":[2,128],"142":[2,128],"143":[2,128],"144":[2,128],"145":[2,128],"146":[2,128],"147":[2,128],"148":[2,128],"149":[2,128],"150":[2,128],"151":[2,128],"152":[2,128],"153":[2,128],"154":[2,128],"155":[2,128],"156":[2,128],"157":[2,128],"158":[2,128],"159":[2,128],"160":[2,128],"161":[2,128],"162":[2,128],"163":[2,128],"164":[2,128]},{"4":[1,160],"6":338,"29":[1,6]},{"1":[2,145],"4":[2,145],"29":[2,145],"30":[2,145],"50":[2,145],"58":[2,145],"61":[2,145],"79":[2,145],"84":[2,145],"94":[2,145],"99":[2,145],"107":[2,145],"109":[2,145],"110":[2,145],"111":[2,145],"114":[2,145],"118":[2,145],"119":[2,145],"120":[2,145],"127":[2,145],"128":[2,145],"129":[2,145],"131":[2,145],"132":[2,145],"134":[2,145],"135":[2,145],"138":[2,145],"139":[2,145],"140":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"146":[2,145],"147":[2,145],"148":[2,145],"149":[2,145],"150":[2,145],"151":[2,145],"152":[2,145],"153":[2,145],"154":[2,145],"155":[2,145],"156":[2,145],"157":[2,145],"158":[2,145],"159":[2,145],"160":[2,145],"161":[2,145],"162":[2,145],"163":[2,145],"164":[2,145]},{"1":[2,151],"4":[2,151],"29":[2,151],"30":[2,151],"50":[1,132],"58":[2,151],"61":[1,131],"79":[2,151],"84":[2,151],"94":[2,151],"99":[2,151],"107":[2,151],"108":129,"109":[2,151],"110":[1,339],"111":[2,151],"114":[2,151],"118":[1,124],"119":[1,125],"120":[1,340],"127":[2,151],"128":[2,151],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,152],"4":[2,152],"29":[2,152],"30":[2,152],"50":[1,132],"58":[2,152],"61":[1,131],"79":[2,152],"84":[2,152],"94":[2,152],"99":[2,152],"107":[2,152],"108":129,"109":[2,152],"110":[1,341],"111":[2,152],"114":[2,152],"118":[1,124],"119":[1,125],"120":[2,152],"127":[2,152],"128":[2,152],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"118":[2,150],"119":[2,150]},{"30":[1,342],"123":[1,343],"124":310,"125":[1,271]},{"1":[2,160],"4":[2,160],"29":[2,160],"30":[2,160],"50":[2,160],"58":[2,160],"61":[2,160],"79":[2,160],"84":[2,160],"94":[2,160],"99":[2,160],"107":[2,160],"109":[2,160],"110":[2,160],"111":[2,160],"114":[2,160],"118":[2,160],"119":[2,160],"120":[2,160],"127":[2,160],"128":[2,160],"129":[2,160],"131":[2,160],"132":[2,160],"134":[2,160],"135":[2,160],"138":[2,160],"139":[2,160],"140":[2,160],"141":[2,160],"142":[2,160],"143":[2,160],"144":[2,160],"145":[2,160],"146":[2,160],"147":[2,160],"148":[2,160],"149":[2,160],"150":[2,160],"151":[2,160],"152":[2,160],"153":[2,160],"154":[2,160],"155":[2,160],"156":[2,160],"157":[2,160],"158":[2,160],"159":[2,160],"160":[2,160],"161":[2,160],"162":[2,160],"163":[2,160],"164":[2,160]},{"4":[1,160],"6":344,"29":[1,6]},{"30":[2,163],"123":[2,163],"125":[2,163]},{"4":[1,160],"6":345,"29":[1,6],"58":[1,346]},{"4":[2,125],"29":[2,125],"50":[1,132],"58":[2,125],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,95],"4":[2,95],"29":[1,347],"30":[2,95],"50":[2,95],"58":[2,95],"61":[2,95],"63":138,"72":[1,140],"73":[1,141],"74":[1,142],"75":[1,143],"76":144,"77":145,"78":[1,146],"79":[2,95],"80":[1,147],"81":[1,148],"84":[2,95],"91":137,"92":[1,139],"94":[2,95],"99":[2,95],"107":[2,95],"109":[2,95],"110":[2,95],"111":[2,95],"114":[2,95],"118":[2,95],"119":[2,95],"120":[2,95],"127":[2,95],"128":[2,95],"129":[2,95],"131":[2,95],"132":[2,95],"134":[2,95],"135":[2,95],"138":[2,95],"139":[2,95],"140":[2,95],"141":[2,95],"142":[2,95],"143":[2,95],"144":[2,95],"145":[2,95],"146":[2,95],"147":[2,95],"148":[2,95],"149":[2,95],"150":[2,95],"151":[2,95],"152":[2,95],"153":[2,95],"154":[2,95],"155":[2,95],"156":[2,95],"157":[2,95],"158":[2,95],"159":[2,95],"160":[2,95],"161":[2,95],"162":[2,95],"163":[2,95],"164":[2,95]},{"4":[1,349],"30":[1,348]},{"4":[2,101],"30":[2,101]},{"4":[2,98],"30":[2,98]},{"46":[1,350]},{"31":191,"32":[1,87]},{"8":351,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"61":[1,352],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,119],"4":[2,119],"29":[2,119],"30":[2,119],"46":[2,119],"50":[2,119],"58":[2,119],"61":[2,119],"72":[2,119],"73":[2,119],"74":[2,119],"75":[2,119],"78":[2,119],"79":[2,119],"80":[2,119],"81":[2,119],"84":[2,119],"92":[2,119],"94":[2,119],"99":[2,119],"107":[2,119],"109":[2,119],"110":[2,119],"111":[2,119],"114":[2,119],"118":[2,119],"119":[2,119],"120":[2,119],"127":[2,119],"128":[2,119],"129":[2,119],"131":[2,119],"132":[2,119],"134":[2,119],"135":[2,119],"138":[2,119],"139":[2,119],"140":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"146":[2,119],"147":[2,119],"148":[2,119],"149":[2,119],"150":[2,119],"151":[2,119],"152":[2,119],"153":[2,119],"154":[2,119],"155":[2,119],"156":[2,119],"157":[2,119],"158":[2,119],"159":[2,119],"160":[2,119],"161":[2,119],"162":[2,119],"163":[2,119],"164":[2,119]},{"8":353,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,120],"8":247,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,120],"30":[2,120],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,120],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"93":354,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,122],"29":[2,122],"30":[2,122],"50":[1,132],"58":[2,122],"61":[1,131],"94":[2,122],"99":[2,122],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,134],"4":[2,134],"29":[2,134],"30":[2,134],"50":[1,132],"58":[2,134],"61":[1,131],"79":[2,134],"84":[2,134],"94":[2,134],"99":[2,134],"107":[2,134],"108":129,"109":[1,79],"110":[2,134],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,134],"127":[2,134],"128":[2,134],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,136],"4":[2,136],"29":[2,136],"30":[2,136],"50":[1,132],"58":[2,136],"61":[1,131],"79":[2,136],"84":[2,136],"94":[2,136],"99":[2,136],"107":[2,136],"108":129,"109":[1,79],"110":[2,136],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"120":[2,136],"127":[2,136],"128":[2,136],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,88],"4":[2,88],"29":[2,88],"30":[2,88],"46":[2,88],"50":[2,88],"58":[2,88],"61":[2,88],"72":[2,88],"73":[2,88],"74":[2,88],"75":[2,88],"78":[2,88],"79":[2,88],"80":[2,88],"81":[2,88],"84":[2,88],"92":[2,88],"94":[2,88],"99":[2,88],"107":[2,88],"109":[2,88],"110":[2,88],"111":[2,88],"114":[2,88],"118":[2,88],"119":[2,88],"120":[2,88],"127":[2,88],"128":[2,88],"129":[2,88],"131":[2,88],"132":[2,88],"134":[2,88],"135":[2,88],"138":[2,88],"139":[2,88],"140":[2,88],"141":[2,88],"142":[2,88],"143":[2,88],"144":[2,88],"145":[2,88],"146":[2,88],"147":[2,88],"148":[2,88],"149":[2,88],"150":[2,88],"151":[2,88],"152":[2,88],"153":[2,88],"154":[2,88],"155":[2,88],"156":[2,88],"157":[2,88],"158":[2,88],"159":[2,88],"160":[2,88],"161":[2,88],"162":[2,88],"163":[2,88],"164":[2,88]},{"28":203,"31":201,"32":[1,87],"33":202,"34":[1,85],"35":[1,86],"47":355,"49":[1,56]},{"4":[2,89],"28":203,"29":[2,89],"30":[2,89],"31":201,"32":[1,87],"33":202,"34":[1,85],"35":[1,86],"47":200,"49":[1,56],"58":[2,89],"83":356},{"4":[2,91],"29":[2,91],"30":[2,91],"58":[2,91],"84":[2,91]},{"4":[2,47],"29":[2,47],"30":[2,47],"50":[1,132],"58":[2,47],"61":[1,131],"84":[2,47],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[2,48],"29":[2,48],"30":[2,48],"50":[1,132],"58":[2,48],"61":[1,131],"84":[2,48],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,110],"4":[2,110],"29":[2,110],"30":[2,110],"50":[2,110],"58":[2,110],"61":[2,110],"72":[2,110],"73":[2,110],"74":[2,110],"75":[2,110],"78":[2,110],"79":[2,110],"80":[2,110],"81":[2,110],"84":[2,110],"92":[2,110],"94":[2,110],"99":[2,110],"107":[2,110],"109":[2,110],"110":[2,110],"111":[2,110],"114":[2,110],"118":[2,110],"119":[2,110],"120":[2,110],"127":[2,110],"128":[2,110],"129":[2,110],"131":[2,110],"132":[2,110],"134":[2,110],"135":[2,110],"138":[2,110],"139":[2,110],"140":[2,110],"141":[2,110],"142":[2,110],"143":[2,110],"144":[2,110],"145":[2,110],"146":[2,110],"147":[2,110],"148":[2,110],"149":[2,110],"150":[2,110],"151":[2,110],"152":[2,110],"153":[2,110],"154":[2,110],"155":[2,110],"156":[2,110],"157":[2,110],"158":[2,110],"159":[2,110],"160":[2,110],"161":[2,110],"162":[2,110],"163":[2,110],"164":[2,110]},{"8":357,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"61":[1,358],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,54],"4":[2,54],"29":[2,54],"30":[2,54],"50":[2,54],"58":[2,54],"61":[2,54],"79":[2,54],"84":[2,54],"94":[2,54],"99":[2,54],"107":[2,54],"109":[2,54],"110":[2,54],"111":[2,54],"114":[2,54],"118":[2,54],"119":[2,54],"120":[2,54],"127":[2,54],"128":[2,54],"129":[2,54],"131":[2,54],"132":[2,54],"134":[2,54],"135":[2,54],"138":[2,54],"139":[2,54],"140":[2,54],"141":[2,54],"142":[2,54],"143":[2,54],"144":[2,54],"145":[2,54],"146":[2,54],"147":[2,54],"148":[2,54],"149":[2,54],"150":[2,54],"151":[2,54],"152":[2,54],"153":[2,54],"154":[2,54],"155":[2,54],"156":[2,54],"157":[2,54],"158":[2,54],"159":[2,54],"160":[2,54],"161":[2,54],"162":[2,54],"163":[2,54],"164":[2,54]},{"53":[2,64],"58":[2,64],"61":[2,64]},{"1":[2,168],"4":[2,168],"29":[2,168],"30":[2,168],"50":[2,168],"58":[2,168],"61":[2,168],"79":[2,168],"84":[2,168],"94":[2,168],"99":[2,168],"107":[2,168],"109":[2,168],"110":[2,168],"111":[2,168],"114":[2,168],"118":[2,168],"119":[2,168],"120":[2,168],"123":[2,168],"127":[2,168],"128":[2,168],"129":[2,168],"131":[2,168],"132":[2,168],"134":[2,168],"135":[2,168],"138":[2,168],"139":[2,168],"140":[2,168],"141":[2,168],"142":[2,168],"143":[2,168],"144":[2,168],"145":[2,168],"146":[2,168],"147":[2,168],"148":[2,168],"149":[2,168],"150":[2,168],"151":[2,168],"152":[2,168],"153":[2,168],"154":[2,168],"155":[2,168],"156":[2,168],"157":[2,168],"158":[2,168],"159":[2,168],"160":[2,168],"161":[2,168],"162":[2,168],"163":[2,168],"164":[2,168]},{"1":[2,129],"4":[2,129],"29":[2,129],"30":[2,129],"50":[2,129],"58":[2,129],"61":[2,129],"79":[2,129],"84":[2,129],"94":[2,129],"99":[2,129],"107":[2,129],"109":[2,129],"110":[2,129],"111":[2,129],"114":[2,129],"118":[2,129],"119":[2,129],"120":[2,129],"127":[2,129],"128":[2,129],"129":[2,129],"131":[2,129],"132":[2,129],"134":[2,129],"135":[2,129],"138":[2,129],"139":[2,129],"140":[2,129],"141":[2,129],"142":[2,129],"143":[2,129],"144":[2,129],"145":[2,129],"146":[2,129],"147":[2,129],"148":[2,129],"149":[2,129],"150":[2,129],"151":[2,129],"152":[2,129],"153":[2,129],"154":[2,129],"155":[2,129],"156":[2,129],"157":[2,129],"158":[2,129],"159":[2,129],"160":[2,129],"161":[2,129],"162":[2,129],"163":[2,129],"164":[2,129]},{"1":[2,130],"4":[2,130],"29":[2,130],"30":[2,130],"50":[2,130],"58":[2,130],"61":[2,130],"79":[2,130],"84":[2,130],"94":[2,130],"99":[2,130],"103":[2,130],"107":[2,130],"109":[2,130],"110":[2,130],"111":[2,130],"114":[2,130],"118":[2,130],"119":[2,130],"120":[2,130],"127":[2,130],"128":[2,130],"129":[2,130],"131":[2,130],"132":[2,130],"134":[2,130],"135":[2,130],"138":[2,130],"139":[2,130],"140":[2,130],"141":[2,130],"142":[2,130],"143":[2,130],"144":[2,130],"145":[2,130],"146":[2,130],"147":[2,130],"148":[2,130],"149":[2,130],"150":[2,130],"151":[2,130],"152":[2,130],"153":[2,130],"154":[2,130],"155":[2,130],"156":[2,130],"157":[2,130],"158":[2,130],"159":[2,130],"160":[2,130],"161":[2,130],"162":[2,130],"163":[2,130],"164":[2,130]},{"8":359,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":360,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":361,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,158],"4":[2,158],"29":[2,158],"30":[2,158],"50":[2,158],"58":[2,158],"61":[2,158],"79":[2,158],"84":[2,158],"94":[2,158],"99":[2,158],"107":[2,158],"109":[2,158],"110":[2,158],"111":[2,158],"114":[2,158],"118":[2,158],"119":[2,158],"120":[2,158],"127":[2,158],"128":[2,158],"129":[2,158],"131":[2,158],"132":[2,158],"134":[2,158],"135":[2,158],"138":[2,158],"139":[2,158],"140":[2,158],"141":[2,158],"142":[2,158],"143":[2,158],"144":[2,158],"145":[2,158],"146":[2,158],"147":[2,158],"148":[2,158],"149":[2,158],"150":[2,158],"151":[2,158],"152":[2,158],"153":[2,158],"154":[2,158],"155":[2,158],"156":[2,158],"157":[2,158],"158":[2,158],"159":[2,158],"160":[2,158],"161":[2,158],"162":[2,158],"163":[2,158],"164":[2,158]},{"4":[1,160],"6":362,"29":[1,6]},{"30":[1,363]},{"4":[1,364],"30":[2,164],"123":[2,164],"125":[2,164]},{"8":365,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"4":[2,100],"28":203,"30":[2,100],"31":201,"32":[1,87],"33":202,"34":[1,85],"35":[1,86],"47":316,"49":[1,56],"65":317,"87":366,"88":315,"97":[1,318]},{"1":[2,96],"4":[2,96],"29":[2,96],"30":[2,96],"50":[2,96],"58":[2,96],"61":[2,96],"79":[2,96],"84":[2,96],"94":[2,96],"99":[2,96],"107":[2,96],"109":[2,96],"110":[2,96],"111":[2,96],"114":[2,96],"118":[2,96],"119":[2,96],"120":[2,96],"127":[2,96],"128":[2,96],"129":[2,96],"131":[2,96],"132":[2,96],"134":[2,96],"135":[2,96],"138":[2,96],"139":[2,96],"140":[2,96],"141":[2,96],"142":[2,96],"143":[2,96],"144":[2,96],"145":[2,96],"146":[2,96],"147":[2,96],"148":[2,96],"149":[2,96],"150":[2,96],"151":[2,96],"152":[2,96],"153":[2,96],"154":[2,96],"155":[2,96],"156":[2,96],"157":[2,96],"158":[2,96],"159":[2,96],"160":[2,96],"161":[2,96],"162":[2,96],"163":[2,96],"164":[2,96]},{"28":203,"31":201,"32":[1,87],"33":202,"34":[1,85],"35":[1,86],"47":316,"49":[1,56],"65":317,"88":367,"97":[1,318]},{"8":368,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"50":[1,132],"61":[1,131],"99":[1,369],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[2,65],"8":370,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"29":[2,65],"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"50":[2,65],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"58":[2,65],"61":[2,65],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,65],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[2,65],"111":[2,65],"112":51,"113":[1,81],"114":[2,65],"118":[2,65],"119":[2,65],"121":[1,53],"126":48,"127":[2,65],"128":[2,65],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65],"164":[2,65]},{"4":[2,123],"29":[2,123],"30":[2,123],"50":[1,132],"58":[2,123],"61":[1,131],"94":[2,123],"99":[2,123],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[2,58],"29":[2,58],"30":[2,58],"57":371,"58":[1,278]},{"4":[2,92],"29":[2,92],"30":[2,92],"58":[2,92],"84":[2,92]},{"4":[2,58],"29":[2,58],"30":[2,58],"57":372,"58":[1,284]},{"50":[1,132],"61":[1,131],"79":[1,373],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"8":374,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"50":[2,65],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"61":[2,65],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"79":[2,65],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[2,65],"111":[2,65],"112":51,"113":[1,81],"114":[2,65],"118":[2,65],"119":[2,65],"121":[1,53],"126":48,"127":[2,65],"128":[2,65],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47],"138":[2,65],"139":[2,65],"140":[2,65],"141":[2,65],"142":[2,65],"143":[2,65],"144":[2,65],"145":[2,65],"146":[2,65],"147":[2,65],"148":[2,65],"149":[2,65],"150":[2,65],"151":[2,65],"152":[2,65],"153":[2,65],"154":[2,65],"155":[2,65],"156":[2,65],"157":[2,65],"158":[2,65],"159":[2,65],"160":[2,65],"161":[2,65],"162":[2,65],"163":[2,65],"164":[2,65]},{"1":[2,153],"4":[2,153],"29":[2,153],"30":[2,153],"50":[1,132],"58":[2,153],"61":[1,131],"79":[2,153],"84":[2,153],"94":[2,153],"99":[2,153],"107":[2,153],"108":129,"109":[2,153],"110":[2,153],"111":[2,153],"114":[2,153],"118":[1,124],"119":[1,125],"120":[1,375],"127":[2,153],"128":[2,153],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,155],"4":[2,155],"29":[2,155],"30":[2,155],"50":[1,132],"58":[2,155],"61":[1,131],"79":[2,155],"84":[2,155],"94":[2,155],"99":[2,155],"107":[2,155],"108":129,"109":[2,155],"110":[1,376],"111":[2,155],"114":[2,155],"118":[1,124],"119":[1,125],"120":[2,155],"127":[2,155],"128":[2,155],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,154],"4":[2,154],"29":[2,154],"30":[2,154],"50":[1,132],"58":[2,154],"61":[1,131],"79":[2,154],"84":[2,154],"94":[2,154],"99":[2,154],"107":[2,154],"108":129,"109":[2,154],"110":[2,154],"111":[2,154],"114":[2,154],"118":[1,124],"119":[1,125],"120":[2,154],"127":[2,154],"128":[2,154],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"30":[1,377]},{"1":[2,161],"4":[2,161],"29":[2,161],"30":[2,161],"50":[2,161],"58":[2,161],"61":[2,161],"79":[2,161],"84":[2,161],"94":[2,161],"99":[2,161],"107":[2,161],"109":[2,161],"110":[2,161],"111":[2,161],"114":[2,161],"118":[2,161],"119":[2,161],"120":[2,161],"127":[2,161],"128":[2,161],"129":[2,161],"131":[2,161],"132":[2,161],"134":[2,161],"135":[2,161],"138":[2,161],"139":[2,161],"140":[2,161],"141":[2,161],"142":[2,161],"143":[2,161],"144":[2,161],"145":[2,161],"146":[2,161],"147":[2,161],"148":[2,161],"149":[2,161],"150":[2,161],"151":[2,161],"152":[2,161],"153":[2,161],"154":[2,161],"155":[2,161],"156":[2,161],"157":[2,161],"158":[2,161],"159":[2,161],"160":[2,161],"161":[2,161],"162":[2,161],"163":[2,161],"164":[2,161]},{"30":[2,165],"123":[2,165],"125":[2,165]},{"4":[2,126],"29":[2,126],"50":[1,132],"58":[2,126],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[1,349],"30":[1,378]},{"4":[2,102],"30":[2,102]},{"4":[2,99],"30":[2,99],"50":[1,132],"61":[1,131],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,115],"4":[2,115],"29":[2,115],"30":[2,115],"50":[2,115],"58":[2,115],"61":[2,115],"72":[2,115],"73":[2,115],"74":[2,115],"75":[2,115],"78":[2,115],"79":[2,115],"80":[2,115],"81":[2,115],"84":[2,115],"92":[2,115],"94":[2,115],"99":[2,115],"107":[2,115],"109":[2,115],"110":[2,115],"111":[2,115],"114":[2,115],"118":[2,115],"119":[2,115],"120":[2,115],"127":[2,115],"128":[2,115],"129":[2,115],"131":[2,115],"132":[2,115],"134":[2,115],"135":[2,115],"138":[2,115],"139":[2,115],"140":[2,115],"141":[2,115],"142":[2,115],"143":[2,115],"144":[2,115],"145":[2,115],"146":[2,115],"147":[2,115],"148":[2,115],"149":[2,115],"150":[2,115],"151":[2,115],"152":[2,115],"153":[2,115],"154":[2,115],"155":[2,115],"156":[2,115],"157":[2,115],"158":[2,115],"159":[2,115],"160":[2,115],"161":[2,115],"162":[2,115],"163":[2,115],"164":[2,115]},{"50":[1,132],"61":[1,131],"99":[1,379],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"4":[1,321],"29":[1,322],"30":[1,380]},{"4":[1,327],"29":[1,328],"30":[1,381]},{"1":[2,117],"4":[2,117],"29":[2,117],"30":[2,117],"46":[2,117],"50":[2,117],"58":[2,117],"61":[2,117],"72":[2,117],"73":[2,117],"74":[2,117],"75":[2,117],"78":[2,117],"79":[2,117],"80":[2,117],"81":[2,117],"84":[2,117],"86":[2,117],"92":[2,117],"94":[2,117],"99":[2,117],"107":[2,117],"109":[2,117],"110":[2,117],"111":[2,117],"114":[2,117],"118":[2,117],"119":[2,117],"120":[2,117],"127":[2,117],"128":[2,117],"129":[2,117],"131":[2,117],"132":[2,117],"134":[2,117],"135":[2,117],"138":[2,117],"139":[2,117],"140":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"146":[2,117],"147":[2,117],"148":[2,117],"149":[2,117],"150":[2,117],"151":[2,117],"152":[2,117],"153":[2,117],"154":[2,117],"155":[2,117],"156":[2,117],"157":[2,117],"158":[2,117],"159":[2,117],"160":[2,117],"161":[2,117],"162":[2,117],"163":[2,117],"164":[2,117]},{"50":[1,132],"61":[1,131],"79":[1,382],"108":129,"109":[1,79],"111":[1,80],"114":[1,130],"118":[1,124],"119":[1,125],"127":[1,127],"128":[1,128],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"8":383,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"8":384,"9":162,"10":24,"11":25,"12":[1,26],"13":[1,27],"14":9,"15":10,"16":11,"17":12,"18":13,"19":14,"20":15,"21":16,"22":17,"23":18,"24":19,"25":20,"26":21,"27":22,"28":23,"31":82,"32":[1,87],"33":61,"34":[1,85],"35":[1,86],"36":29,"37":[1,62],"38":[1,63],"39":[1,64],"40":[1,65],"41":[1,66],"42":[1,67],"43":[1,68],"44":[1,69],"45":28,"48":[1,57],"49":[1,56],"51":[1,37],"54":38,"55":[1,75],"56":[1,76],"62":54,"64":34,"65":83,"66":59,"67":60,"68":30,"69":31,"70":32,"71":[1,33],"82":[1,84],"85":[1,55],"89":35,"90":[1,36],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,49],"105":[1,58],"106":[1,70],"108":50,"109":[1,79],"111":[1,80],"112":51,"113":[1,81],"114":[1,52],"121":[1,53],"126":48,"127":[1,77],"128":[1,78],"129":[1,39],"130":[1,40],"131":[1,41],"132":[1,42],"133":[1,43],"134":[1,44],"135":[1,45],"136":[1,46],"137":[1,47]},{"1":[2,159],"4":[2,159],"29":[2,159],"30":[2,159],"50":[2,159],"58":[2,159],"61":[2,159],"79":[2,159],"84":[2,159],"94":[2,159],"99":[2,159],"107":[2,159],"109":[2,159],"110":[2,159],"111":[2,159],"114":[2,159],"118":[2,159],"119":[2,159],"120":[2,159],"127":[2,159],"128":[2,159],"129":[2,159],"131":[2,159],"132":[2,159],"134":[2,159],"135":[2,159],"138":[2,159],"139":[2,159],"140":[2,159],"141":[2,159],"142":[2,159],"143":[2,159],"144":[2,159],"145":[2,159],"146":[2,159],"147":[2,159],"148":[2,159],"149":[2,159],"150":[2,159],"151":[2,159],"152":[2,159],"153":[2,159],"154":[2,159],"155":[2,159],"156":[2,159],"157":[2,159],"158":[2,159],"159":[2,159],"160":[2,159],"161":[2,159],"162":[2,159],"163":[2,159],"164":[2,159]},{"1":[2,97],"4":[2,97],"29":[2,97],"30":[2,97],"50":[2,97],"58":[2,97],"61":[2,97],"79":[2,97],"84":[2,97],"94":[2,97],"99":[2,97],"107":[2,97],"109":[2,97],"110":[2,97],"111":[2,97],"114":[2,97],"118":[2,97],"119":[2,97],"120":[2,97],"127":[2,97],"128":[2,97],"129":[2,97],"131":[2,97],"132":[2,97],"134":[2,97],"135":[2,97],"138":[2,97],"139":[2,97],"140":[2,97],"141":[2,97],"142":[2,97],"143":[2,97],"144":[2,97],"145":[2,97],"146":[2,97],"147":[2,97],"148":[2,97],"149":[2,97],"150":[2,97],"151":[2,97],"152":[2,97],"153":[2,97],"154":[2,97],"155":[2,97],"156":[2,97],"157":[2,97],"158":[2,97],"159":[2,97],"160":[2,97],"161":[2,97],"162":[2,97],"163":[2,97],"164":[2,97]},{"1":[2,116],"4":[2,116],"29":[2,116],"30":[2,116],"50":[2,116],"58":[2,116],"61":[2,116],"72":[2,116],"73":[2,116],"74":[2,116],"75":[2,116],"78":[2,116],"79":[2,116],"80":[2,116],"81":[2,116],"84":[2,116],"92":[2,116],"94":[2,116],"99":[2,116],"107":[2,116],"109":[2,116],"110":[2,116],"111":[2,116],"114":[2,116],"118":[2,116],"119":[2,116],"120":[2,116],"127":[2,116],"128":[2,116],"129":[2,116],"131":[2,116],"132":[2,116],"134":[2,116],"135":[2,116],"138":[2,116],"139":[2,116],"140":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"146":[2,116],"147":[2,116],"148":[2,116],"149":[2,116],"150":[2,116],"151":[2,116],"152":[2,116],"153":[2,116],"154":[2,116],"155":[2,116],"156":[2,116],"157":[2,116],"158":[2,116],"159":[2,116],"160":[2,116],"161":[2,116],"162":[2,116],"163":[2,116],"164":[2,116]},{"4":[2,124],"29":[2,124],"30":[2,124],"58":[2,124],"94":[2,124],"99":[2,124]},{"4":[2,93],"29":[2,93],"30":[2,93],"58":[2,93],"84":[2,93]},{"1":[2,118],"4":[2,118],"29":[2,118],"30":[2,118],"46":[2,118],"50":[2,118],"58":[2,118],"61":[2,118],"72":[2,118],"73":[2,118],"74":[2,118],"75":[2,118],"78":[2,118],"79":[2,118],"80":[2,118],"81":[2,118],"84":[2,118],"86":[2,118],"92":[2,118],"94":[2,118],"99":[2,118],"107":[2,118],"109":[2,118],"110":[2,118],"111":[2,118],"114":[2,118],"118":[2,118],"119":[2,118],"120":[2,118],"127":[2,118],"128":[2,118],"129":[2,118],"131":[2,118],"132":[2,118],"134":[2,118],"135":[2,118],"138":[2,118],"139":[2,118],"140":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"146":[2,118],"147":[2,118],"148":[2,118],"149":[2,118],"150":[2,118],"151":[2,118],"152":[2,118],"153":[2,118],"154":[2,118],"155":[2,118],"156":[2,118],"157":[2,118],"158":[2,118],"159":[2,118],"160":[2,118],"161":[2,118],"162":[2,118],"163":[2,118],"164":[2,118]},{"1":[2,156],"4":[2,156],"29":[2,156],"30":[2,156],"50":[1,132],"58":[2,156],"61":[1,131],"79":[2,156],"84":[2,156],"94":[2,156],"99":[2,156],"107":[2,156],"108":129,"109":[2,156],"110":[2,156],"111":[2,156],"114":[2,156],"118":[1,124],"119":[1,125],"120":[2,156],"127":[2,156],"128":[2,156],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]},{"1":[2,157],"4":[2,157],"29":[2,157],"30":[2,157],"50":[1,132],"58":[2,157],"61":[1,131],"79":[2,157],"84":[2,157],"94":[2,157],"99":[2,157],"107":[2,157],"108":129,"109":[2,157],"110":[2,157],"111":[2,157],"114":[2,157],"118":[1,124],"119":[1,125],"120":[2,157],"127":[2,157],"128":[2,157],"129":[1,126],"131":[1,99],"132":[1,98],"134":[1,93],"135":[1,94],"138":[1,95],"139":[1,96],"140":[1,97],"141":[1,100],"142":[1,101],"143":[1,102],"144":[1,103],"145":[1,104],"146":[1,105],"147":[1,106],"148":[1,107],"149":[1,108],"150":[1,109],"151":[1,110],"152":[1,111],"153":[1,112],"154":[1,113],"155":[1,114],"156":[1,115],"157":[1,116],"158":[1,117],"159":[1,118],"160":[1,119],"161":[1,120],"162":[1,121],"163":[1,122],"164":[1,123]}],defaultActions:{"90":[2,4]},parseError:function parseError(str,hash){throw new Error(str)},parse:function parse(input){var self=this,stack=[0],vstack=[null],table=this.table,yytext="",yylineno=0,yyleng=0,shifts=0,reductions=0,recovering=0,TERROR=2,EOF=1;this.lexer.setInput(input);this.lexer.yy=this.yy;this.yy.lexer=this.lexer;var parseError=this.yy.parseError=typeof this.yy.parseError=="function"?this.yy.parseError:this.parseError;function popStack(n){stack.length=stack.length-2*n;vstack.length=vstack.length-n}function checkRecover(st){for(var p in table[st]){if(p==TERROR){return true}}return false}function lex(){var token;token=self.lexer.lex()||1;if(typeof token!=="number"){token=self.symbols_[token]||token}return token}var symbol,preErrorSymbol,state,action,a,r,yyval={},p,len,newState,expected,recovered=false;while(true){state=stack[stack.length-1];if(this.defaultActions[state]){action=this.defaultActions[state]}else{if(symbol==null){symbol=lex()}action=table[state]&&table[state][symbol]}if(typeof action==="undefined"||!action.length||!action[0]){if(!recovering){expected=[];for(p in table[state]){if(this.terminals_[p]&&p>2){expected.push("'"+this.terminals_[p]+"'")}}if(this.lexer.showPosition){parseError.call(this,"Parse error on line "+(yylineno+1)+":\n"+this.lexer.showPosition()+"\nExpecting "+expected.join(", "),{text:this.lexer.match,token:this.terminals_[symbol]||symbol,line:this.lexer.yylineno,expected:expected})}else{parseError.call(this,"Parse error on line "+(yylineno+1)+": Unexpected '"+(this.terminals_[symbol]||symbol)+"'",{text:this.lexer.match,token:this.terminals_[symbol]||symbol,line:this.lexer.yylineno,expected:expected})}}if(recovering==3){if(symbol==EOF){throw"Parsing halted."}yyleng=this.lexer.yyleng;yytext=this.lexer.yytext;yylineno=this.lexer.yylineno;symbol=lex()}while(1){if(checkRecover(state)){break}if(state==0){throw"Parsing halted."}popStack(1);state=stack[stack.length-1]}preErrorSymbol=symbol;symbol=TERROR;state=stack[stack.length-1];action=table[state]&&table[state][TERROR];recovering=3}if(action[0] instanceof Array&&action.length>1){throw new Error("Parse Error: multiple actions possible at state: "+state+", token: "+symbol)}a=action;switch(a[0]){case 1:shifts++;stack.push(symbol);vstack.push(this.lexer.yytext);stack.push(a[1]);symbol=null;if(!preErrorSymbol){yyleng=this.lexer.yyleng;yytext=this.lexer.yytext;yylineno=this.lexer.yylineno;if(recovering>0){recovering--}}else{symbol=preErrorSymbol;preErrorSymbol=null}break;case 2:reductions++;len=this.productions_[a[1]][1];yyval.$=vstack[vstack.length-len];r=this.performAction.call(yyval,yytext,yyleng,yylineno,this.yy,a[1],vstack);if(typeof r!=="undefined"){return r}if(len){stack=stack.slice(0,-1*len*2);vstack=vstack.slice(0,-1*len)}stack.push(this.productions_[a[1]][0]);vstack.push(yyval.$);newState=table[stack[stack.length-2]][stack[stack.length-1]];stack.push(newState);break;case 3:this.reductionCount=reductions;this.shiftCount=shifts;return true}}return true}};return parser})();if(typeof require!=="undefined"){exports.parser=parser;exports.parse=function(){return parser.parse.apply(parser,arguments)};exports.main=function commonjsMain(args){if(!args[1]){throw new Error("Usage: "+args[0]+" FILE")}if(typeof process!=="undefined"){var source=require("fs").readFileSync(require("path").join(process.cwd(),args[1]),"utf8")}else{var cwd=require("file").path(require("file").cwd());var source=cwd.join(args[1]).read({charset:"utf-8"})}return exports.parser.parse(source)};if(require.main===module){exports.main(typeof process!=="undefined"?process.argv.slice(1):require("system").args)}}(function(){var Scope;var __hasProp=Object.prototype.hasOwnProperty;if(!(typeof process!=="undefined"&&process!==null)){this.exports=this}exports.Scope=(function(){Scope=function(parent,expressions,method){var _a;_a=[parent,expressions,method];this.parent=_a[0];this.expressions=_a[1];this.method=_a[2];this.variables={};if(this.parent){this.tempVar=this.parent.tempVar}else{Scope.root=this;this.tempVar="_a"}return this};Scope.root=null;Scope.prototype.find=function(name){if(this.check(name)){return true}this.variables[name]="var";return false};Scope.prototype.any=function(fn){var _a,k,v;_a=this.variables;for(v in _a){if(__hasProp.call(_a,v)){k=_a[v];if(fn(v,k)){return true}}}return false};Scope.prototype.parameter=function(name){this.variables[name]="param";return this.variables[name]};Scope.prototype.check=function(name){if(this.variables.hasOwnProperty(name)){return true}return !!(this.parent&&this.parent.check(name))};Scope.prototype.freeVariable=function(){var ordinal;while(this.check(this.tempVar)){ordinal=1+parseInt(this.tempVar.substr(1),36);this.tempVar="_"+ordinal.toString(36).replace(/\d/g,"a")}this.variables[this.tempVar]="var";return this.tempVar};Scope.prototype.assign=function(name,value){this.variables[name]={value:value,assigned:true};return this.variables[name]};Scope.prototype.hasDeclarations=function(body){return body===this.expressions&&this.any(function(k,val){return val==="var"})};Scope.prototype.hasAssignments=function(body){return body===this.expressions&&this.any(function(k,val){return val.assigned})};Scope.prototype.declaredVariables=function(){var _a,_b,key,val;return(function(){_a=[];_b=this.variables;for(key in _b){if(__hasProp.call(_b,key)){val=_b[key];val==="var"?_a.push(key):null}}return _a}).call(this).sort()};Scope.prototype.assignedVariables=function(){var _a,_b,key,val;_a=[];_b=this.variables;for(key in _b){if(__hasProp.call(_b,key)){val=_b[key];val.assigned?_a.push(""+key+" = "+val.value):null}}return _a};Scope.prototype.compiledDeclarations=function(){return this.declaredVariables().join(", ")};Scope.prototype.compiledAssignments=function(){return this.assignedVariables().join(", ")};return Scope}).call(this)})();(function(){var AccessorNode,ArrayNode,AssignNode,BaseNode,CallNode,ClassNode,ClosureNode,CodeNode,CommentNode,DOUBLE_PARENS,ExistenceNode,Expressions,ExtendsNode,ForNode,IDENTIFIER,IS_STRING,IfNode,InNode,IndexNode,LiteralNode,NUMBER,ObjectNode,OpNode,ParentheticalNode,PushNode,RangeNode,ReturnNode,Scope,SliceNode,SplatNode,TAB,TRAILING_WHITESPACE,ThrowNode,TryNode,UTILITIES,ValueNode,WhileNode,_a,compact,del,flatten,helpers,include,indexOf,literal,merge,starts,utility;var __extends=function(child,parent){var ctor=function(){};ctor.prototype=parent.prototype;child.__superClass__=parent.prototype;child.prototype=new ctor();child.prototype.constructor=child};if(typeof process!=="undefined"&&process!==null){Scope=require("./scope").Scope;helpers=require("./helpers").helpers}else{this.exports=this;helpers=this.helpers;Scope=this.Scope}_a=helpers;compact=_a.compact;flatten=_a.flatten;merge=_a.merge;del=_a.del;include=_a.include;indexOf=_a.indexOf;starts=_a.starts;exports.BaseNode=(function(){BaseNode=function(){};BaseNode.prototype.compile=function(o){var closure,top;this.options=merge(o||{});this.tab=o.indent;if(!(this instanceof ValueNode||this instanceof CallNode)){del(this.options,"operation");if(!(this instanceof AccessorNode||this instanceof IndexNode)){del(this.options,"chainRoot")}}top=this.topSensitive()?this.options.top:del(this.options,"top");closure=this.isStatement()&&!this.isPureStatement()&&!top&&!this.options.asStatement&&!(this instanceof CommentNode)&&!this.containsPureStatement();return closure?this.compileClosure(this.options):this.compileNode(this.options)};BaseNode.prototype.compileClosure=function(o){this.tab=o.indent;o.sharedScope=o.scope;return ClosureNode.wrap(this).compile(o)};BaseNode.prototype.compileReference=function(o,options){var compiled,pair,reference;pair=(function(){if(!(this instanceof CallNode||this instanceof ValueNode&&(!(this.base instanceof LiteralNode)||this.hasProperties()))){return[this,this]}else{reference=literal(o.scope.freeVariable());compiled=new AssignNode(reference,this);return[compiled,reference]}}).call(this);if(!(options&&options.precompile)){return pair}return[pair[0].compile(o),pair[1].compile(o)]};BaseNode.prototype.idt=function(tabs){var idt,num;idt=this.tab||"";num=(tabs||0)+1;while(num-=1){idt+=TAB}return idt};BaseNode.prototype.makeReturn=function(){return new ReturnNode(this)};BaseNode.prototype.contains=function(block){var contains;contains=false;this.traverseChildren(false,function(node){if(block(node)){contains=true;return false}});return contains};BaseNode.prototype.containsType=function(type){return this instanceof type||this.contains(function(n){return n instanceof type})};BaseNode.prototype.containsPureStatement=function(){return this.isPureStatement()||this.contains(function(n){return n.isPureStatement()})};BaseNode.prototype.traverse=function(block){return this.traverseChildren(true,block)};BaseNode.prototype.toString=function(idt,override){var _b,_c,_d,_e,child,children;idt=idt||"";children=(function(){_b=[];_d=this.collectChildren();for(_c=0,_e=_d.length;_c<_e;_c++){child=_d[_c];_b.push(child.toString(idt+TAB))}return _b}).call(this).join("");return"\n"+idt+(override||this["class"])+children};BaseNode.prototype.eachChild=function(func){var _b,_c,_d,_e,_f,_g,_h,attr,child;if(!(this.children)){return null}_b=[];_d=this.children;for(_c=0,_e=_d.length;_c<_e;_c++){attr=_d[_c];if(this[attr]){_g=flatten([this[attr]]);for(_f=0,_h=_g.length;_f<_h;_f++){child=_g[_f];if(func(child)===false){return null}}}}return _b};BaseNode.prototype.collectChildren=function(){var nodes;nodes=[];this.eachChild(function(node){return nodes.push(node)});return nodes};BaseNode.prototype.traverseChildren=function(crossScope,func){return this.eachChild(function(child){func.apply(this,arguments);if(child instanceof BaseNode){return child.traverseChildren(crossScope,func)}})};BaseNode.prototype["class"]="BaseNode";BaseNode.prototype.children=[];BaseNode.prototype.unwrap=function(){return this};BaseNode.prototype.isStatement=function(){return false};BaseNode.prototype.isPureStatement=function(){return false};BaseNode.prototype.topSensitive=function(){return false};return BaseNode})();exports.Expressions=(function(){Expressions=function(nodes){this.expressions=compact(flatten(nodes||[]));return this};__extends(Expressions,BaseNode);Expressions.prototype["class"]="Expressions";Expressions.prototype.children=["expressions"];Expressions.prototype.isStatement=function(){return true};Expressions.prototype.push=function(node){this.expressions.push(node);return this};Expressions.prototype.unshift=function(node){this.expressions.unshift(node);return this};Expressions.prototype.unwrap=function(){return this.expressions.length===1?this.expressions[0]:this};Expressions.prototype.empty=function(){return this.expressions.length===0};Expressions.prototype.makeReturn=function(){var idx,last;idx=this.expressions.length-1;last=this.expressions[idx];if(last instanceof CommentNode){last=this.expressions[idx-=1]}if(!last||last instanceof ReturnNode){return this}this.expressions[idx]=last.makeReturn();return this};Expressions.prototype.compile=function(o){o=o||{};return o.scope?Expressions.__superClass__.compile.call(this,o):this.compileRoot(o)};Expressions.prototype.compileNode=function(o){var _b,_c,_d,_e,node;return(function(){_b=[];_d=this.expressions;for(_c=0,_e=_d.length;_c<_e;_c++){node=_d[_c];_b.push(this.compileExpression(node,merge(o)))}return _b}).call(this).join("\n")};Expressions.prototype.compileRoot=function(o){var code;o.indent=(this.tab=o.noWrap?"":TAB);o.scope=new Scope(null,this,null);code=this.compileWithDeclarations(o);code=code.replace(TRAILING_WHITESPACE,"");code=code.replace(DOUBLE_PARENS,"($1)");return o.noWrap?code:("(function(){\n"+code+"\n})();\n")};Expressions.prototype.compileWithDeclarations=function(o){var code;code=this.compileNode(o);if(o.scope.hasAssignments(this)){code=(""+(this.tab)+"var "+(o.scope.compiledAssignments())+";\n"+code)}if(!o.globals&&o.scope.hasDeclarations(this)){code=(""+(this.tab)+"var "+(o.scope.compiledDeclarations())+";\n"+code)}return code};Expressions.prototype.compileExpression=function(node,o){var compiledNode;this.tab=o.indent;compiledNode=node.compile(merge(o,{top:true}));return node.isStatement()?compiledNode:(""+(this.idt())+compiledNode+";")};return Expressions})();Expressions.wrap=function(nodes){if(nodes.length===1&&nodes[0] instanceof Expressions){return nodes[0]}return new Expressions(nodes)};exports.LiteralNode=(function(){LiteralNode=function(value){this.value=value;return this};__extends(LiteralNode,BaseNode);LiteralNode.prototype["class"]="LiteralNode";LiteralNode.prototype.isStatement=function(){return this.value==="break"||this.value==="continue"};LiteralNode.prototype.isPureStatement=LiteralNode.prototype.isStatement;LiteralNode.prototype.compileNode=function(o){var end,idt;idt=this.isStatement()?this.idt():"";end=this.isStatement()?";":"";return""+idt+this.value+end};LiteralNode.prototype.toString=function(idt){return' "'+this.value+'"'};return LiteralNode})();exports.ReturnNode=(function(){ReturnNode=function(expression){this.expression=expression;return this};__extends(ReturnNode,BaseNode);ReturnNode.prototype["class"]="ReturnNode";ReturnNode.prototype.isStatement=function(){return true};ReturnNode.prototype.isPureStatement=function(){return true};ReturnNode.prototype.children=["expression"];ReturnNode.prototype.makeReturn=function(){return this};ReturnNode.prototype.compile=function(o){var expr;expr=this.expression.makeReturn();if(!(expr instanceof ReturnNode)){return expr.compile(o)}return ReturnNode.__superClass__.compile.call(this,o)};ReturnNode.prototype.compileNode=function(o){if(this.expression.isStatement()){o.asStatement=true}return""+(this.tab)+"return "+(this.expression.compile(o))+";"};return ReturnNode})();exports.ValueNode=(function(){ValueNode=function(base,properties){this.base=base;this.properties=(properties||[]);return this};__extends(ValueNode,BaseNode);ValueNode.prototype.SOAK=" == undefined ? undefined : ";ValueNode.prototype["class"]="ValueNode";ValueNode.prototype.children=["base","properties"];ValueNode.prototype.push=function(prop){this.properties.push(prop);return this};ValueNode.prototype.hasProperties=function(){return !!this.properties.length};ValueNode.prototype.isArray=function(){return this.base instanceof ArrayNode&&!this.hasProperties()};ValueNode.prototype.isObject=function(){return this.base instanceof ObjectNode&&!this.hasProperties()};ValueNode.prototype.isSplice=function(){return this.hasProperties()&&this.properties[this.properties.length-1] instanceof SliceNode};ValueNode.prototype.makeReturn=function(){return this.hasProperties()?ValueNode.__superClass__.makeReturn.call(this):this.base.makeReturn()};ValueNode.prototype.unwrap=function(){return this.properties.length?this:this.base};ValueNode.prototype.isStatement=function(){return this.base.isStatement&&this.base.isStatement()&&!this.hasProperties()};ValueNode.prototype.isNumber=function(){return this.base instanceof LiteralNode&&this.base.value.match(NUMBER)};ValueNode.prototype.isStart=function(o){var node;if(this===o.chainRoot&&this.properties[0] instanceof AccessorNode){return true}node=o.chainRoot.base||o.chainRoot.variable;while(node instanceof CallNode){node=node.variable}return node===this};ValueNode.prototype.compile=function(o){return !o.top||this.properties.length?ValueNode.__superClass__.compile.call(this,o):this.base.compile(o)};ValueNode.prototype.compileNode=function(o){var _b,_c,baseline,complete,i,only,op,part,prop,props,temp;only=del(o,"onlyFirst");op=del(o,"operation");props=only?this.properties.slice(0,this.properties.length-1):this.properties;o.chainRoot=o.chainRoot||this;baseline=this.base.compile(o);if(this.hasProperties()&&(this.base instanceof ObjectNode||this.isNumber())){baseline=("("+baseline+")")}complete=(this.last=baseline);_b=props;for(i=0,_c=_b.length;i<_c;i++){prop=_b[i];this.source=baseline;if(prop.soakNode){if(this.base instanceof CallNode&&i===0){temp=o.scope.freeVariable();complete=("("+(baseline=temp)+" = ("+complete+"))")}if(i===0&&this.isStart(o)){complete=("typeof "+complete+' === "undefined" || '+baseline)}complete+=this.SOAK+(baseline+=prop.compile(o))}else{part=prop.compile(o);baseline+=part;complete+=part;this.last=part}}return op&&this.wrapped?("("+complete+")"):complete};return ValueNode})();exports.CommentNode=(function(){CommentNode=function(lines){this.lines=lines;return this};__extends(CommentNode,BaseNode);CommentNode.prototype["class"]="CommentNode";CommentNode.prototype.isStatement=function(){return true};CommentNode.prototype.makeReturn=function(){return this};CommentNode.prototype.compileNode=function(o){var sep;sep=("\n"+this.tab);return""+this.tab+"/*"+sep+(this.lines.join(sep))+"\n"+this.tab+"*/"};return CommentNode})();exports.CallNode=(function(){CallNode=function(variable,args){this.isNew=false;this.isSuper=variable==="super";this.variable=this.isSuper?null:variable;this.args=(args||[]);this.compileSplatArguments=function(o){return SplatNode.compileMixedArray.call(this,this.args,o)};return this};__extends(CallNode,BaseNode);CallNode.prototype["class"]="CallNode";CallNode.prototype.children=["variable","args"];CallNode.prototype.newInstance=function(){this.isNew=true;return this};CallNode.prototype.prefix=function(){return this.isNew?"new ":""};CallNode.prototype.superReference=function(o){var meth,methname;methname=o.scope.method.name;meth=(function(){if(o.scope.method.proto){return""+(o.scope.method.proto)+".__superClass__."+methname}else{if(methname){return""+(methname)+".__superClass__.constructor"}else{throw new Error("cannot call super on an anonymous function.")}}})();return meth};CallNode.prototype.compileNode=function(o){var _b,_c,_d,_e,_f,_g,_h,arg,args,compilation;if(!(o.chainRoot)){o.chainRoot=this}_c=this.args;for(_b=0,_d=_c.length;_b<_d;_b++){arg=_c[_b];arg instanceof SplatNode?(compilation=this.compileSplat(o)):null}if(!(compilation)){args=(function(){_e=[];_g=this.args;for(_f=0,_h=_g.length;_f<_h;_f++){arg=_g[_f];_e.push(arg.compile(o))}return _e}).call(this).join(", ");compilation=this.isSuper?this.compileSuper(args,o):(""+(this.prefix())+(this.variable.compile(o))+"("+args+")")}return o.operation&&this.wrapped?("("+compilation+")"):compilation};CallNode.prototype.compileSuper=function(args,o){return""+(this.superReference(o))+".call(this"+(args.length?", ":"")+args+")"};CallNode.prototype.compileSplat=function(o){var meth,obj,temp;meth=this.variable?this.variable.compile(o):this.superReference(o);obj=this.variable&&this.variable.source||"this";if(obj.match(/\(/)){temp=o.scope.freeVariable();obj=temp;meth=("("+temp+" = "+(this.variable.source)+")"+(this.variable.last))}return""+(this.prefix())+(meth)+".apply("+obj+", "+(this.compileSplatArguments(o))+")"};return CallNode})();exports.ExtendsNode=(function(){ExtendsNode=function(child,parent){this.child=child;this.parent=parent;return this};__extends(ExtendsNode,BaseNode);ExtendsNode.prototype["class"]="ExtendsNode";ExtendsNode.prototype.children=["child","parent"];ExtendsNode.prototype.compileNode=function(o){var ref;ref=new ValueNode(literal(utility("extends")));return(new CallNode(ref,[this.child,this.parent])).compile(o)};return ExtendsNode})();exports.AccessorNode=(function(){AccessorNode=function(name,tag){this.name=name;this.prototype=tag==="prototype"?".prototype":"";this.soakNode=tag==="soak";return this};__extends(AccessorNode,BaseNode);AccessorNode.prototype["class"]="AccessorNode";AccessorNode.prototype.children=["name"];AccessorNode.prototype.compileNode=function(o){var name,namePart;name=this.name.compile(o);o.chainRoot.wrapped=o.chainRoot.wrapped||this.soakNode;namePart=name.match(IS_STRING)?("["+name+"]"):("."+name);return this.prototype+namePart};return AccessorNode})();exports.IndexNode=(function(){IndexNode=function(index){this.index=index;return this};__extends(IndexNode,BaseNode);IndexNode.prototype["class"]="IndexNode";IndexNode.prototype.children=["index"];IndexNode.prototype.compileNode=function(o){var idx,prefix;o.chainRoot.wrapped=o.chainRoot.wrapped||this.soakNode;idx=this.index.compile(o);prefix=this.proto?".prototype":"";return""+prefix+"["+idx+"]"};return IndexNode})();exports.RangeNode=(function(){RangeNode=function(from,to,exclusive){this.from=from;this.to=to;this.exclusive=!!exclusive;return this};__extends(RangeNode,BaseNode);RangeNode.prototype["class"]="RangeNode";RangeNode.prototype.children=["from","to"];RangeNode.prototype.compileVariables=function(o){var _b,_c,parts;_b=this.from.compileReference(o);this.from=_b[0];this.fromVar=_b[1];_c=this.to.compileReference(o);this.to=_c[0];this.toVar=_c[1];parts=[];if(this.from!==this.fromVar){parts.push(this.from.compile(o))}if(this.to!==this.toVar){parts.push(this.to.compile(o))}return parts.length?(""+(parts.join("; "))+";"):""};RangeNode.prototype.compileNode=function(o){var equals,idx,op,step,vars;if(!(o.index)){return this.compileArray(o)}idx=del(o,"index");step=del(o,"step");vars=(""+idx+" = "+(this.fromVar.compile(o)));step=step?step.compile(o):"1";equals=this.exclusive?"":"=";op=starts(step,"-")?(">"+equals):("<"+equals);return""+vars+"; "+(idx)+" "+op+" "+(this.toVar.compile(o))+"; "+idx+" += "+step};RangeNode.prototype.compileArray=function(o){var body,clause,equals,from,i,idt,post,pre,result,to,vars;idt=this.idt(1);vars=this.compileVariables(merge(o,{indent:idt}));equals=this.exclusive?"":"=";from=this.fromVar.compile(o);to=this.toVar.compile(o);result=o.scope.freeVariable();i=o.scope.freeVariable();clause=(""+from+" <= "+to+" ?");pre=("\n"+(idt)+(result)+" = []; "+(vars));body=("var "+i+" = "+from+"; "+clause+" "+i+" <"+equals+" "+to+" : "+i+" >"+equals+" "+to+"; "+clause+" "+i+" += 1 : "+i+" -= 1");post=("{ "+(result)+".push("+i+") };\n"+(idt)+"return "+result+";\n"+o.indent);return"(function(){"+(pre)+"\n"+(idt)+"for ("+body+")"+post+"}).call(this)"};return RangeNode})();exports.SliceNode=(function(){SliceNode=function(range){this.range=range;return this};__extends(SliceNode,BaseNode);SliceNode.prototype["class"]="SliceNode";SliceNode.prototype.children=["range"];SliceNode.prototype.compileNode=function(o){var from,plusPart,to;from=this.range.from.compile(o);to=this.range.to.compile(o);plusPart=this.range.exclusive?"":" + 1";return".slice("+from+", "+to+plusPart+")"};return SliceNode})();exports.ObjectNode=(function(){ObjectNode=function(props){this.objects=(this.properties=props||[]);return this};__extends(ObjectNode,BaseNode);ObjectNode.prototype["class"]="ObjectNode";ObjectNode.prototype.children=["properties"];ObjectNode.prototype.compileNode=function(o){var _b,_c,_d,_e,_f,_g,_h,i,indent,inner,join,lastNoncom,nonComments,prop,props;o.indent=this.idt(1);nonComments=(function(){_b=[];_d=this.properties;for(_c=0,_e=_d.length;_c<_e;_c++){prop=_d[_c];!(prop instanceof CommentNode)?_b.push(prop):null}return _b}).call(this);lastNoncom=nonComments[nonComments.length-1];props=(function(){_f=[];_g=this.properties;for(i=0,_h=_g.length;i<_h;i++){prop=_g[i];_f.push((function(){join=",\n";if((prop===lastNoncom)||(prop instanceof CommentNode)){join="\n"}if(i===this.properties.length-1){join=""}indent=prop instanceof CommentNode?"":this.idt(1);if(!(prop instanceof AssignNode||prop instanceof CommentNode)){prop=new AssignNode(prop,prop,"object")}return indent+prop.compile(o)+join}).call(this))}return _f}).call(this);props=props.join("");inner=props?"\n"+props+"\n"+this.idt():"";return"{"+inner+"}"};return ObjectNode})();exports.ArrayNode=(function(){ArrayNode=function(objects){this.objects=objects||[];this.compileSplatLiteral=function(o){return SplatNode.compileMixedArray.call(this,this.objects,o)};return this};__extends(ArrayNode,BaseNode);ArrayNode.prototype["class"]="ArrayNode";ArrayNode.prototype.children=["objects"];ArrayNode.prototype.compileNode=function(o){var _b,_c,code,i,obj,objects;o.indent=this.idt(1);objects=[];_b=this.objects;for(i=0,_c=_b.length;i<_c;i++){obj=_b[i];code=obj.compile(o);if(obj instanceof SplatNode){return this.compileSplatLiteral(this.objects,o)}else{if(obj instanceof CommentNode){objects.push("\n"+code+"\n"+o.indent)}else{if(i===this.objects.length-1){objects.push(code)}else{objects.push(""+code+", ")}}}}objects=objects.join("");return indexOf(objects,"\n")>=0?("[\n"+(this.idt(1))+objects+"\n"+this.tab+"]"):("["+objects+"]")};return ArrayNode})();exports.ClassNode=(function(){ClassNode=function(variable,parent,props){this.variable=variable;this.parent=parent;this.properties=props||[];this.returns=false;return this};__extends(ClassNode,BaseNode);ClassNode.prototype["class"]="ClassNode";ClassNode.prototype.children=["variable","parent","properties"];ClassNode.prototype.isStatement=function(){return true};ClassNode.prototype.makeReturn=function(){this.returns=true;return this};ClassNode.prototype.compileNode=function(o){var _b,_c,_d,_e,access,applied,className,constScope,construct,constructor,extension,func,me,pname,prop,props,pvar,returns,val;extension=this.parent&&new ExtendsNode(this.variable,this.parent);props=new Expressions();o.top=true;me=null;className=this.variable.compile(o);constScope=null;if(this.parent){applied=new ValueNode(this.parent,[new AccessorNode(literal("apply"))]);constructor=new CodeNode([],new Expressions([new CallNode(applied,[literal("this"),literal("arguments")])]))}else{constructor=new CodeNode()}_c=this.properties;for(_b=0,_d=_c.length;_b<_d;_b++){prop=_c[_b];_e=[prop.variable,prop.value];pvar=_e[0];func=_e[1];if(pvar&&pvar.base.value==="constructor"&&func instanceof CodeNode){if(func.bound){throw new Error("cannot define a constructor as a bound function.")}func.name=className;func.body.push(new ReturnNode(literal("this")));this.variable=new ValueNode(this.variable);this.variable.namespaced=include(func.name,".");constructor=func;continue}if(func instanceof CodeNode&&func.bound){func.bound=false;constScope=constScope||new Scope(o.scope,constructor.body,constructor);me=me||constScope.freeVariable();pname=pvar.compile(o);if(constructor.body.empty()){constructor.body.push(new ReturnNode(literal("this")))}constructor.body.unshift(literal(("this."+(pname)+" = function(){ return "+(className)+".prototype."+(pname)+".apply("+me+", arguments); }")))}if(pvar){access=prop.context==="this"?pvar.base.properties[0]:new AccessorNode(pvar,"prototype");val=new ValueNode(this.variable,[access]);prop=new AssignNode(val,func)}props.push(prop)}if(me){constructor.body.unshift(literal(""+me+" = this"))}construct=this.idt()+(new AssignNode(this.variable,constructor)).compile(merge(o,{sharedScope:constScope}))+";\n";props=props.empty()?"":props.compile(o)+"\n";extension=extension?this.idt()+extension.compile(o)+";\n":"";returns=this.returns?new ReturnNode(this.variable).compile(o):"";return""+construct+extension+props+returns};return ClassNode})();exports.AssignNode=(function(){AssignNode=function(variable,value,context){this.variable=variable;this.value=value;this.context=context;return this};__extends(AssignNode,BaseNode);AssignNode.prototype.PROTO_ASSIGN=/^(\S+)\.prototype/;AssignNode.prototype.LEADING_DOT=/^\.(prototype\.)?/;AssignNode.prototype["class"]="AssignNode";AssignNode.prototype.children=["variable","value"];AssignNode.prototype.topSensitive=function(){return true};AssignNode.prototype.isValue=function(){return this.variable instanceof ValueNode};AssignNode.prototype.makeReturn=function(){return new Expressions([this,new ReturnNode(this.variable)])};AssignNode.prototype.isStatement=function(){return this.isValue()&&(this.variable.isArray()||this.variable.isObject())};AssignNode.prototype.compileNode=function(o){var last,match,name,proto,stmt,top,val;top=del(o,"top");if(this.isStatement()){return this.compilePatternMatch(o)}if(this.isValue()&&this.variable.isSplice()){return this.compileSplice(o)}stmt=del(o,"asStatement");name=this.variable.compile(o);last=this.isValue()?this.variable.last.replace(this.LEADING_DOT,""):name;match=name.match(this.PROTO_ASSIGN);proto=match&&match[1];if(this.value instanceof CodeNode){if(last.match(IDENTIFIER)){this.value.name=last}if(proto){this.value.proto=proto}}val=this.value.compile(o);if(this.context==="object"){return(""+name+": "+val)}if(!(this.isValue()&&(this.variable.hasProperties()||this.variable.namespaced))){o.scope.find(name)}val=(""+name+" = "+val);if(stmt){return(""+this.tab+val+";")}return top?val:("("+val+")")};AssignNode.prototype.compilePatternMatch=function(o){var _b,_c,_d,accessClass,assigns,code,i,idx,isString,obj,oindex,olength,splat,val,valVar,value;valVar=o.scope.freeVariable();value=this.value.isStatement()?ClosureNode.wrap(this.value):this.value;assigns=[(""+this.tab+valVar+" = "+(value.compile(o))+";")];o.top=true;o.asStatement=true;splat=false;_b=this.variable.base.objects;for(i=0,_c=_b.length;i<_c;i++){obj=_b[i];idx=i;if(this.variable.isObject()){if(obj instanceof AssignNode){_d=[obj.value,obj.variable.base];obj=_d[0];idx=_d[1]}else{idx=obj}}if(!(obj instanceof ValueNode||obj instanceof SplatNode)){throw new Error("pattern matching must use only identifiers on the left-hand side.")}isString=idx.value&&idx.value.match(IS_STRING);accessClass=isString||this.variable.isArray()?IndexNode:AccessorNode;if(obj instanceof SplatNode&&!splat){val=literal(obj.compileValue(o,valVar,(oindex=indexOf(this.variable.base.objects,obj)),(olength=this.variable.base.objects.length)-oindex-1));splat=true}else{if(typeof idx!=="object"){idx=literal(splat?(""+(valVar)+".length - "+(olength-idx)):idx)}val=new ValueNode(literal(valVar),[new accessClass(idx)])}assigns.push(new AssignNode(obj,val).compile(o))}code=assigns.join("\n");return code};AssignNode.prototype.compileSplice=function(o){var from,l,name,plus,range,to,val;name=this.variable.compile(merge(o,{onlyFirst:true}));l=this.variable.properties.length;range=this.variable.properties[l-1].range;plus=range.exclusive?"":" + 1";from=range.from.compile(o);to=range.to.compile(o)+" - "+from+plus;val=this.value.compile(o);return""+(name)+".splice.apply("+name+", ["+from+", "+to+"].concat("+val+"))"};return AssignNode})();exports.CodeNode=(function(){CodeNode=function(params,body,tag){this.params=params||[];this.body=body||new Expressions();this.bound=tag==="boundfunc";return this};__extends(CodeNode,BaseNode);CodeNode.prototype["class"]="CodeNode";CodeNode.prototype.children=["params","body"];CodeNode.prototype.compileNode=function(o){var _b,_c,_d,_e,_f,_g,_h,_i,_j,_k,code,func,i,inner,param,params,sharedScope,splat,top;sharedScope=del(o,"sharedScope");top=del(o,"top");o.scope=sharedScope||new Scope(o.scope,this.body,this);o.top=true;o.indent=this.idt(this.bound?2:1);del(o,"noWrap");del(o,"globals");i=0;splat=undefined;params=[];_c=this.params;for(_b=0,_d=_c.length;_b<_d;_b++){param=_c[_b];if(param instanceof SplatNode&&!(typeof splat!=="undefined"&&splat!==null)){splat=param;splat.index=i;splat.trailings=[];splat.arglength=this.params.length;this.body.unshift(splat)}else{if(typeof splat!=="undefined"&&splat!==null){splat.trailings.push(param)}else{params.push(param)}}i+=1}params=(function(){_e=[];_g=params;for(_f=0,_h=_g.length;_f<_h;_f++){param=_g[_f];_e.push(param.compile(o))}return _e})();this.body.makeReturn();_j=params;for(_i=0,_k=_j.length;_i<_k;_i++){param=_j[_i];(o.scope.parameter(param))}code=this.body.expressions.length?("\n"+(this.body.compileWithDeclarations(o))+"\n"):"";func=("function("+(params.join(", "))+") {"+code+(this.idt(this.bound?1:0))+"}");if(top&&!this.bound){func=("("+func+")")}if(!(this.bound)){return func}inner=("(function() {\n"+(this.idt(2))+"return __func.apply(__this, arguments);\n"+(this.idt(1))+"});");return"(function(__this) {\n"+(this.idt(1))+"var __func = "+func+";\n"+(this.idt(1))+"return "+inner+"\n"+this.tab+"})(this)"};CodeNode.prototype.topSensitive=function(){return true};CodeNode.prototype.traverseChildren=function(crossScope,func){if(crossScope){return CodeNode.__superClass__.traverseChildren.call(this,crossScope,func)}};CodeNode.prototype.toString=function(idt){var _b,_c,_d,_e,child,children;idt=idt||"";children=(function(){_b=[];_d=this.collectChildren();for(_c=0,_e=_d.length;_c<_e;_c++){child=_d[_c];_b.push(child.toString(idt+TAB))}return _b}).call(this).join("");return"\n"+idt+children};return CodeNode})();exports.SplatNode=(function(){SplatNode=function(name){if(!(name.compile)){name=literal(name)}this.name=name;return this};__extends(SplatNode,BaseNode);SplatNode.prototype["class"]="SplatNode";SplatNode.prototype.children=["name"];SplatNode.prototype.compileNode=function(o){var _b;return(typeof(_b=this.index)!=="undefined"&&_b!==null)?this.compileParam(o):this.name.compile(o)};SplatNode.prototype.compileParam=function(o){var _b,_c,idx,len,name,pos,trailing,variadic;name=this.name.compile(o);o.scope.find(name);len=o.scope.freeVariable();o.scope.assign(len,"arguments.length");variadic=o.scope.freeVariable();o.scope.assign(variadic,(""+len+" >= "+this.arglength));_b=this.trailings;for(idx=0,_c=_b.length;idx<_c;idx++){trailing=_b[idx];pos=this.trailings.length-idx;o.scope.assign(trailing.compile(o),("arguments["+variadic+" ? "+len+" - "+pos+" : "+(this.index+idx)+"]"))}return""+name+" = "+(utility("slice"))+".call(arguments, "+this.index+", "+len+" - "+(this.trailings.length)+")"};SplatNode.prototype.compileValue=function(o,name,index,trailings){var trail;trail=trailings?(", "+(name)+".length - "+trailings):"";return""+(utility("slice"))+".call("+name+", "+index+trail+")"};SplatNode.compileMixedArray=function(list,o){var _b,_c,_d,arg,args,code,i,prev;args=[];i=0;_c=list;for(_b=0,_d=_c.length;_b<_d;_b++){arg=_c[_b];code=arg.compile(o);if(!(arg instanceof SplatNode)){prev=args[i-1];if(i===1&&prev.substr(0,1)==="["&&prev.substr(prev.length-1,1)==="]"){args[i-1]=(""+(prev.substr(0,prev.length-1))+", "+code+"]");continue}else{if(i>1&&prev.substr(0,9)===".concat(["&&prev.substr(prev.length-2,2)==="])"){args[i-1]=(""+(prev.substr(0,prev.length-2))+", "+code+"])");continue}else{code=("["+code+"]")}}}args.push(i===0?code:(".concat("+code+")"));i+=1}return args.join("")};return SplatNode}).call(this);exports.WhileNode=(function(){WhileNode=function(condition,opts){if(opts&&opts.invert){if(condition instanceof OpNode){condition=new ParentheticalNode(condition)}condition=new OpNode("!",condition)}this.condition=condition;this.guard=opts&&opts.guard;return this};__extends(WhileNode,BaseNode);WhileNode.prototype["class"]="WhileNode";WhileNode.prototype.children=["condition","guard","body"];WhileNode.prototype.isStatement=function(){return true};WhileNode.prototype.addBody=function(body){this.body=body;return this};WhileNode.prototype.makeReturn=function(){this.returns=true;return this};WhileNode.prototype.topSensitive=function(){return true};WhileNode.prototype.compileNode=function(o){var cond,post,pre,rvar,set,top;top=del(o,"top")&&!this.returns;o.indent=this.idt(1);o.top=true;cond=this.condition.compile(o);set="";if(!(top)){rvar=o.scope.freeVariable();set=(""+this.tab+rvar+" = [];\n");if(this.body){this.body=PushNode.wrap(rvar,this.body)}}pre=(""+set+(this.tab)+"while ("+cond+")");if(this.guard){this.body=Expressions.wrap([new IfNode(this.guard,this.body)])}this.returns?(post="\n"+new ReturnNode(literal(rvar)).compile(merge(o,{indent:this.idt()}))):(post="");return""+pre+" {\n"+(this.body.compile(o))+"\n"+this.tab+"}"+post};return WhileNode})();exports.OpNode=(function(){OpNode=function(operator,first,second,flip){this.first=first;this.second=second;this.operator=this.CONVERSIONS[operator]||operator;this.flip=!!flip;return this};__extends(OpNode,BaseNode);OpNode.prototype.CONVERSIONS={"==":"===","!=":"!=="};OpNode.prototype.CHAINABLE=["<",">",">=","<=","===","!=="];OpNode.prototype.ASSIGNMENT=["||=","&&=","?="];OpNode.prototype.PREFIX_OPERATORS=["typeof","delete"];OpNode.prototype["class"]="OpNode";OpNode.prototype.children=["first","second"];OpNode.prototype.isUnary=function(){return !this.second};OpNode.prototype.isChainable=function(){return indexOf(this.CHAINABLE,this.operator)>=0};OpNode.prototype.toString=function(idt){return OpNode.__superClass__.toString.call(this,idt,this["class"]+" "+this.operator)};OpNode.prototype.compileNode=function(o){o.operation=true;if(this.isChainable()&&this.first.unwrap() instanceof OpNode&&this.first.unwrap().isChainable()){return this.compileChain(o)}if(indexOf(this.ASSIGNMENT,this.operator)>=0){return this.compileAssignment(o)}if(this.isUnary()){return this.compileUnary(o)}if(this.operator==="?"){return this.compileExistence(o)}return[this.first.compile(o),this.operator,this.second.compile(o)].join(" ")};OpNode.prototype.compileChain=function(o){var _b,_c,first,second,shared;shared=this.first.unwrap().second;if(shared.containsType(CallNode)){_b=shared.compileReference(o);this.first.second=_b[0];shared=_b[1]}_c=[this.first.compile(o),this.second.compile(o),shared.compile(o)];first=_c[0];second=_c[1];shared=_c[2];return"("+first+") && ("+shared+" "+this.operator+" "+second+")"};OpNode.prototype.compileAssignment=function(o){var _b,first,second;_b=[this.first.compile(o),this.second.compile(o)];first=_b[0];second=_b[1];if(first.match(IDENTIFIER)){o.scope.find(first)}if(this.operator==="?="){return(""+first+" = "+(ExistenceNode.compileTest(o,this.first))+" ? "+first+" : "+second)}return""+first+" = "+first+" "+(this.operator.substr(0,2))+" "+second};OpNode.prototype.compileExistence=function(o){var _b,first,second,test;_b=[this.first.compile(o),this.second.compile(o)];first=_b[0];second=_b[1];test=ExistenceNode.compileTest(o,this.first);return""+test+" ? "+first+" : "+second};OpNode.prototype.compileUnary=function(o){var parts,space;space=indexOf(this.PREFIX_OPERATORS,this.operator)>=0?" ":"";parts=[this.operator,space,this.first.compile(o)];if(this.flip){parts=parts.reverse()}return parts.join("")};return OpNode})();exports.InNode=(function(){InNode=function(object,array){this.object=object;this.array=array;return this};__extends(InNode,BaseNode);InNode.prototype["class"]="InNode";InNode.prototype.children=["object","array"];InNode.prototype.isArray=function(){return this.array instanceof ValueNode&&this.array.isArray()};InNode.prototype.compileNode=function(o){var _b;_b=this.object.compileReference(o,{precompile:true});this.obj1=_b[0];this.obj2=_b[1];return this.isArray()?this.compileOrTest(o):this.compileLoopTest(o)};InNode.prototype.compileOrTest=function(o){var _b,_c,_d,i,item,tests;tests=(function(){_b=[];_c=this.array.base.objects;for(i=0,_d=_c.length;i<_d;i++){item=_c[i];_b.push((""+(item.compile(o))+" === "+(i?this.obj2:this.obj1)))}return _b}).call(this);return"("+(tests.join(" || "))+")"};InNode.prototype.compileLoopTest=function(o){var _b,_c,i,l,prefix;_b=this.array.compileReference(o,{precompile:true});this.arr1=_b[0];this.arr2=_b[1];_c=[o.scope.freeVariable(),o.scope.freeVariable()];i=_c[0];l=_c[1];prefix=this.obj1!==this.obj2?this.obj1+"; ":"";return"!!(function(){ "+(prefix)+"for (var "+i+"=0, "+l+"="+(this.arr1)+".length; "+i+"<"+l+"; "+i+"++) if ("+(this.arr2)+"["+i+"] === "+this.obj2+") return true; }).call(this)"};return InNode})();exports.TryNode=(function(){TryNode=function(attempt,error,recovery,ensure){this.attempt=attempt;this.recovery=recovery;this.ensure=ensure;this.error=error;return this};__extends(TryNode,BaseNode);TryNode.prototype["class"]="TryNode";TryNode.prototype.children=["attempt","recovery","ensure"];TryNode.prototype.isStatement=function(){return true};TryNode.prototype.makeReturn=function(){if(this.attempt){this.attempt=this.attempt.makeReturn()}if(this.recovery){this.recovery=this.recovery.makeReturn()}return this};TryNode.prototype.compileNode=function(o){var attemptPart,catchPart,errorPart,finallyPart;o.indent=this.idt(1);o.top=true;attemptPart=this.attempt.compile(o);errorPart=this.error?(" ("+(this.error.compile(o))+") "):" ";catchPart=this.recovery?(" catch"+errorPart+"{\n"+(this.recovery.compile(o))+"\n"+this.tab+"}"):"";finallyPart=(this.ensure||"")&&" finally {\n"+this.ensure.compile(merge(o))+("\n"+this.tab+"}");return""+(this.tab)+"try {\n"+attemptPart+"\n"+this.tab+"}"+catchPart+finallyPart};return TryNode})();exports.ThrowNode=(function(){ThrowNode=function(expression){this.expression=expression;return this};__extends(ThrowNode,BaseNode);ThrowNode.prototype["class"]="ThrowNode";ThrowNode.prototype.children=["expression"];ThrowNode.prototype.isStatement=function(){return true};ThrowNode.prototype.makeReturn=function(){return this};ThrowNode.prototype.compileNode=function(o){return""+(this.tab)+"throw "+(this.expression.compile(o))+";"};return ThrowNode})();exports.ExistenceNode=(function(){ExistenceNode=function(expression){this.expression=expression;return this};__extends(ExistenceNode,BaseNode);ExistenceNode.prototype["class"]="ExistenceNode";ExistenceNode.prototype.children=["expression"];ExistenceNode.prototype.compileNode=function(o){return ExistenceNode.compileTest(o,this.expression)};ExistenceNode.compileTest=function(o,variable){var _b,first,second;_b=variable.compileReference(o);first=_b[0];second=_b[1];return"(typeof "+(first.compile(o))+' !== "undefined" && '+(second.compile(o))+" !== null)"};return ExistenceNode}).call(this);exports.ParentheticalNode=(function(){ParentheticalNode=function(expression){this.expression=expression;return this};__extends(ParentheticalNode,BaseNode);ParentheticalNode.prototype["class"]="ParentheticalNode";ParentheticalNode.prototype.children=["expression"];ParentheticalNode.prototype.isStatement=function(){return this.expression.isStatement()};ParentheticalNode.prototype.makeReturn=function(){return this.expression.makeReturn()};ParentheticalNode.prototype.topSensitive=function(){return true};ParentheticalNode.prototype.compileNode=function(o){var code,l,top;top=del(o,"top");code=this.expression.compile(o);if(this.isStatement()){return(top?(""+this.tab+code+";"):code)}l=code.length;if(code.substr(l-1,1)===";"){code=code.substr(o,l-1)}return this.expression instanceof AssignNode?code:("("+code+")")};return ParentheticalNode})();exports.ForNode=(function(){ForNode=function(body,source,name,index){var _b;this.body=body;this.name=name;this.index=index||null;this.source=source.source;this.guard=source.guard;this.step=source.step;this.object=!!source.object;if(this.object){_b=[this.index,this.name];this.name=_b[0];this.index=_b[1]}this.pattern=this.name instanceof ValueNode;if(this.index instanceof ValueNode){throw new Error("index cannot be a pattern matching expression")}this.returns=false;return this};__extends(ForNode,BaseNode);ForNode.prototype["class"]="ForNode";ForNode.prototype.children=["body","source","guard"];ForNode.prototype.isStatement=function(){return true};ForNode.prototype.topSensitive=function(){return true};ForNode.prototype.makeReturn=function(){this.returns=true;return this};ForNode.prototype.compileReturnValue=function(val,o){if(this.returns){return"\n"+new ReturnNode(literal(val)).compile(o)}if(val){return"\n"+val}return""};ForNode.prototype.compileNode=function(o){var body,close,codeInBody,forPart,index,ivar,lvar,name,namePart,range,returnResult,rvar,scope,source,sourcePart,stepPart,svar,topLevel,varPart,vars;topLevel=del(o,"top")&&!this.returns;range=this.source instanceof ValueNode&&this.source.base instanceof RangeNode&&!this.source.properties.length;source=range?this.source.base:this.source;codeInBody=this.body.contains(function(n){return n instanceof CodeNode});scope=o.scope;name=this.name&&this.name.compile(o);index=this.index&&this.index.compile(o);if(name&&!this.pattern&&!codeInBody){scope.find(name)}if(index){scope.find(index)}if(!(topLevel)){rvar=scope.freeVariable()}ivar=(function(){if(range){return name}else{if(codeInBody){return scope.freeVariable()}else{return index||scope.freeVariable()}}})();varPart="";body=Expressions.wrap([this.body]);if(range){sourcePart=source.compileVariables(o);if(sourcePart){sourcePart+=("\n"+o.indent)}forPart=source.compile(merge(o,{index:ivar,step:this.step}))}else{svar=scope.freeVariable();sourcePart=(""+svar+" = "+(this.source.compile(o))+";");if(this.pattern){namePart=new AssignNode(this.name,literal(""+svar+"["+ivar+"]")).compile(merge(o,{indent:this.idt(1),top:true}))+"\n"}else{if(name){namePart=(""+name+" = "+svar+"["+ivar+"]")}}if(!(this.object)){lvar=scope.freeVariable();stepPart=this.step?(""+ivar+" += "+(this.step.compile(o))):(""+ivar+"++");forPart=(""+ivar+" = 0, "+lvar+" = "+(svar)+".length; "+ivar+" < "+lvar+"; "+stepPart)}}sourcePart=(rvar?(""+rvar+" = []; "):"")+sourcePart;sourcePart=sourcePart?(""+this.tab+sourcePart+"\n"+this.tab):this.tab;returnResult=this.compileReturnValue(rvar,o);if(!(topLevel)){body=PushNode.wrap(rvar,body)}this.guard?(body=Expressions.wrap([new IfNode(this.guard,body)])):null;if(codeInBody){if(namePart){body.unshift(literal("var "+namePart))}if(index){body.unshift(literal("var "+index+" = "+ivar))}body=ClosureNode.wrap(body,true)}else{varPart=(namePart||"")&&(this.pattern?namePart:(""+(this.idt(1))+namePart+";\n"))}this.object?(forPart=(""+ivar+" in "+svar+") { if ("+(utility("hasProp"))+".call("+svar+", "+ivar+")")):null;body=body.compile(merge(o,{indent:this.idt(1),top:true}));vars=range?name:(""+name+", "+ivar);close=this.object?"}}":"}";return""+(sourcePart)+"for ("+forPart+") {\n"+varPart+body+"\n"+this.tab+close+returnResult};return ForNode})();exports.IfNode=(function(){IfNode=function(condition,body,tags){this.condition=condition;this.body=body;this.elseBody=null;this.tags=tags||{};if(this.tags.invert){this.condition=new OpNode("!",new ParentheticalNode(this.condition))}this.isChain=false;return this};__extends(IfNode,BaseNode);IfNode.prototype["class"]="IfNode";IfNode.prototype.children=["condition","switchSubject","body","elseBody","assigner"];IfNode.prototype.bodyNode=function(){return this.body==undefined?undefined:this.body.unwrap()};IfNode.prototype.elseBodyNode=function(){return this.elseBody==undefined?undefined:this.elseBody.unwrap()};IfNode.prototype.forceStatement=function(){this.tags.statement=true;return this};IfNode.prototype.switchesOver=function(expression){this.switchSubject=expression;return this};IfNode.prototype.rewriteSwitch=function(o){var _b,_c,_d,cond,i,variable;this.assigner=this.switchSubject;if(!((this.switchSubject.unwrap() instanceof LiteralNode))){variable=literal(o.scope.freeVariable());this.assigner=new AssignNode(variable,this.switchSubject);this.switchSubject=variable}this.condition=(function(){_b=[];_c=flatten([this.condition]);for(i=0,_d=_c.length;i<_d;i++){cond=_c[i];_b.push((function(){if(cond instanceof OpNode){cond=new ParentheticalNode(cond)}return new OpNode("==",(i===0?this.assigner:this.switchSubject),cond)}).call(this))}return _b}).call(this);if(this.isChain){this.elseBodyNode().switchesOver(this.switchSubject)}this.switchSubject=undefined;return this};IfNode.prototype.addElse=function(elseBody,statement){if(this.isChain){this.elseBodyNode().addElse(elseBody,statement)}else{this.isChain=elseBody instanceof IfNode;this.elseBody=this.ensureExpressions(elseBody)}return this};IfNode.prototype.isStatement=function(){return this.statement=this.statement||!!(this.tags.statement||this.bodyNode().isStatement()||(this.elseBody&&this.elseBodyNode().isStatement()))};IfNode.prototype.compileCondition=function(o){var _b,_c,_d,_e,cond;return(function(){_b=[];_d=flatten([this.condition]);for(_c=0,_e=_d.length;_c<_e;_c++){cond=_d[_c];_b.push(cond.compile(o))}return _b}).call(this).join(" || ")};IfNode.prototype.compileNode=function(o){return this.isStatement()?this.compileStatement(o):this.compileTernary(o)};IfNode.prototype.makeReturn=function(){if(this.isStatement()){this.body=this.body&&this.ensureExpressions(this.body.makeReturn());this.elseBody=this.elseBody&&this.ensureExpressions(this.elseBody.makeReturn());return this}else{return new ReturnNode(this)}};IfNode.prototype.ensureExpressions=function(node){return node instanceof Expressions?node:new Expressions([node])};IfNode.prototype.compileStatement=function(o){var body,child,comDent,condO,elsePart,ifDent,ifPart;if(this.switchSubject){this.rewriteSwitch(o)}child=del(o,"chainChild");condO=merge(o);o.indent=this.idt(1);o.top=true;ifDent=child?"":this.idt();comDent=child?this.idt():"";body=this.body.compile(o);ifPart=(""+(ifDent)+"if ("+(this.compileCondition(condO))+") {\n"+body+"\n"+this.tab+"}");if(!(this.elseBody)){return ifPart}elsePart=this.isChain?" else "+this.elseBodyNode().compile(merge(o,{indent:this.idt(),chainChild:true})):(" else {\n"+(this.elseBody.compile(o))+"\n"+this.tab+"}");return""+ifPart+elsePart};IfNode.prototype.compileTernary=function(o){var elsePart,ifPart;ifPart=this.condition.compile(o)+" ? "+this.bodyNode().compile(o);elsePart=this.elseBody?this.elseBodyNode().compile(o):"null";return""+ifPart+" : "+elsePart};return IfNode})();PushNode=(exports.PushNode={wrap:function(array,expressions){var expr;expr=expressions.unwrap();if(expr.isPureStatement()||expr.containsPureStatement()){return expressions}return Expressions.wrap([new CallNode(new ValueNode(literal(array),[new AccessorNode(literal("push"))]),[expr])])}});ClosureNode=(exports.ClosureNode={wrap:function(expressions,statement){var args,call,func,mentionsArgs,mentionsThis,meth;if(expressions.containsPureStatement()){return expressions}func=new ParentheticalNode(new CodeNode([],Expressions.wrap([expressions])));args=[];mentionsArgs=expressions.contains(function(n){return n instanceof LiteralNode&&(n.value==="arguments")});mentionsThis=expressions.contains(function(n){return(n instanceof LiteralNode&&(n.value==="this"))||(n instanceof CodeNode&&n.bound)});if(mentionsArgs||mentionsThis){meth=literal(mentionsArgs?"apply":"call");args=[literal("this")];if(mentionsArgs){args.push(literal("arguments"))}func=new ValueNode(func,[new AccessorNode(meth)])}call=new CallNode(func,args);return statement?Expressions.wrap([call]):call}});UTILITIES={__extends:"function(child, parent) {\n var ctor = function(){ };\n ctor.prototype = parent.prototype;\n child.__superClass__ = parent.prototype;\n child.prototype = new ctor();\n child.prototype.constructor = child;\n }",__hasProp:"Object.prototype.hasOwnProperty",__slice:"Array.prototype.slice"};TAB=" ";TRAILING_WHITESPACE=/[ \t]+$/gm;DOUBLE_PARENS=/\(\(([^\(\)\n]*)\)\)/g;IDENTIFIER=/^[a-zA-Z\$_](\w|\$)*$/;NUMBER=/^(((\b0(x|X)[0-9a-fA-F]+)|((\b[0-9]+(\.[0-9]+)?|\.[0-9]+)(e[+\-]?[0-9]+)?)))\b$/i;IS_STRING=/^['"]/;literal=function(name){return new LiteralNode(name)};utility=function(name){var ref;ref=("__"+name);Scope.root.assign(ref,UTILITIES[ref]);return ref}})();(function(){var Lexer,compile,helpers,lexer,parser,path,processScripts;if(typeof process!=="undefined"&&process!==null){path=require("path");Lexer=require("./lexer").Lexer;parser=require("./parser").parser;helpers=require("./helpers").helpers;helpers.extend(global,require("./nodes"));require.registerExtension?require.registerExtension(".coffee",function(content){return compile(content)}):null}else{this.exports=(this.CoffeeScript={});Lexer=this.Lexer;parser=this.parser;helpers=this.helpers}exports.VERSION="0.7.1";lexer=new Lexer();exports.compile=(compile=function(code,options){options=options||{};try{return(parser.parse(lexer.tokenize(code))).compile(options)}catch(err){if(options.source){err.message=("In "+options.source+", "+err.message)}throw err}});exports.tokens=function(code){return lexer.tokenize(code)};exports.nodes=function(code){return parser.parse(lexer.tokenize(code))};exports.run=(function(code,options){var __dirname,__filename;module.filename=(__filename=options.source);__dirname=path.dirname(__filename);return eval(exports.compile(code,options))});parser.lexer={lex:function(){var token;token=this.tokens[this.pos]||[""];this.pos+=1;this.yylineno=token[2];this.yytext=token[1];return token[0]},setInput:function(tokens){this.tokens=tokens;this.pos=0;return this.pos},upcomingInput:function(){return""}};if((typeof document!=="undefined"&&document!==null)&&document.getElementsByTagName){processScripts=function(){var _a,_b,_c,_d,tag;_a=[];_c=document.getElementsByTagName("script");for(_b=0,_d=_c.length;_b<_d;_b++){tag=_c[_b];tag.type==="text/coffeescript"?_a.push(eval(exports.compile(tag.innerHTML))):null}return _a};if(window.addEventListener){window.addEventListener("load",processScripts,false)}else{if(window.attachEvent){window.attachEvent("onload",processScripts)}}}})(); \ No newline at end of file diff --git a/index.html b/index.html index c385d10e07..c4aa30cb9e 100644 --- a/index.html +++ b/index.html @@ -115,7 +115,7 @@

    Latest Version: - 0.7.0 + 0.7.1

    @@ -260,7 +260,7 @@

    Then clone the CoffeeScript source repository from GitHub, or download the latest - release: 0.7.0. + release: 0.7.1. To install the CoffeeScript compiler system-wide under /usr/local, open the directory and run:

    @@ -1804,6 +1804,10 @@

    kchmck's Vim CoffeeScript — which adds Vim syntax highlighting and indentation support.

  • +
  • + wavded's gedit-coffeescript + — a CoffeeScript syntax highlighter for the gedit text editor. +
  • yeungda's coffeescript-idea — a plugin for IntelliJ IDEA and RubyMine providing syntax highlighting. @@ -1860,6 +1864,14 @@

    Change Log

    +

    + 0.7.1 + Block-style comments are now passed through and printed as JavaScript block + comments -- making them useful for licenses and copyright headers. Better + support for running coffee scripts standalone via hashbangs. + Improved syntax errors for tokens that are not in the grammar. +

    +

    0.7.0 Official CoffeeScript variable style is now camelCase, as in JavaScript. diff --git a/lib/coffee-script.js b/lib/coffee-script.js index b11bc66623..5f32f44410 100644 --- a/lib/coffee-script.js +++ b/lib/coffee-script.js @@ -15,7 +15,7 @@ parser = this.parser; helpers = this.helpers; } - exports.VERSION = '0.7.0'; + exports.VERSION = '0.7.1'; lexer = new Lexer(); exports.compile = (compile = function(code, options) { options = options || {}; diff --git a/package.json b/package.json index 2374135eb9..e3d6d02035 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "description": "Unfancy JavaScript", "keywords": ["javascript", "language"], "author": "Jeremy Ashkenas", - "version": "0.7.0", + "version": "0.7.1", "licenses": [{ "type": "MIT", "url": "http://github.com/jashkenas/coffee-script/raw/master/LICENSE" diff --git a/src/coffee-script.coffee b/src/coffee-script.coffee index 16cc3a2186..e5b8f61f4c 100644 --- a/src/coffee-script.coffee +++ b/src/coffee-script.coffee @@ -22,7 +22,7 @@ else helpers: this.helpers # The current CoffeeScript version number. -exports.VERSION: '0.7.0' +exports.VERSION: '0.7.1' # Instantiate a Lexer for our use here. lexer: new Lexer