From c9b6e82e2cada7ffa78358ba172f1ae1bfeb4a9b Mon Sep 17 00:00:00 2001 From: Chris Lloyd Date: Fri, 26 Mar 2010 20:25:17 +1100 Subject: [PATCH 01/19] Optional sentence descriptions for cake tasks. --- lib/cake.js | 16 +++++++++++++--- src/cake.coffee | 7 +++++-- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/lib/cake.js b/lib/cake.js index 058f00817a..8e5e98f9af 100755 --- a/lib/cake.js +++ b/lib/cake.js @@ -20,9 +20,15 @@ oparse = null; // Mixin the top-level Cake functions for Cakefiles to use directly. helpers.extend(global, { - // Define a Cake task with a short name, a sentence description, + // Define a Cake task with a short name, an optional sentence description, // and the function to run as the action itself. task: function task(name, description, action) { + var _a; + if (!((typeof action !== "undefined" && action !== null))) { + _a = [description, action]; + action = _a[0]; + description = _a[1]; + } tasks[name] = { name: name, description: description, @@ -72,7 +78,7 @@ }; // Display the list of Cake tasks in a format similar to `rake -T` print_tasks = function print_tasks() { - var _a, _b, _c, _d, _e, _f, i, name, spaces, task; + var _a, _b, _c, _d, _e, _f, _g, i, name, spaces, task; puts(''); _a = tasks; for (name in _a) { if (__hasProp.call(_a, name)) { @@ -85,7 +91,11 @@ } return _b; }).call(this).join('') : ''; - puts("cake " + name + spaces + " # " + (task.description)); + print("cake " + name + spaces); + if ((typeof (_g = task.description) !== "undefined" && _g !== null)) { + print(" # " + (task.description)); + } + puts(''); }} if (switches.length) { return puts(oparse.help()); diff --git a/src/cake.coffee b/src/cake.coffee index 53c4d226f2..2b65507d5c 100644 --- a/src/cake.coffee +++ b/src/cake.coffee @@ -22,9 +22,10 @@ oparse: null # Mixin the top-level Cake functions for Cakefiles to use directly. helpers.extend global, { - # Define a Cake task with a short name, a sentence description, + # Define a Cake task with a short name, an optional sentence description, # and the function to run as the action itself. task: (name, description, action) -> + [action, description]: [description, action] unless action? tasks[name]: {name: name, description: description, action: action} # Define an option that the Cakefile accepts. The parsed options hash, @@ -59,7 +60,9 @@ print_tasks: -> for name, task of tasks spaces: 20 - name.length spaces: if spaces > 0 then (' ' for i in [0..spaces]).join('') else '' - puts "cake $name$spaces # ${task.description}" + print "cake $name$spaces" + print " # ${task.description}" if task.description? + puts '' puts oparse.help() if switches.length # Print an error and exit when attempting to all an undefined task. From 2e744a1c1be55bcd18dc3aa49108ae614da3ef70 Mon Sep 17 00:00:00 2001 From: Chris Lloyd Date: Sun, 4 Apr 2010 16:54:59 +1000 Subject: [PATCH 02/19] Failing test for string interpolation. Interpolated strings need to be expressions, not values. --- test/test_string_interpolation.coffee | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_string_interpolation.coffee b/test/test_string_interpolation.coffee index a69c2780a4..b7b8c79c8b 100644 --- a/test/test_string_interpolation.coffee +++ b/test/test_string_interpolation.coffee @@ -48,8 +48,10 @@ ok "values: ${list.join ' '}" is 'values: 0 1 2 3 4 5 6 7 8 9' obj: { name: 'Joe' hi: -> "Hello $@name." + cya: -> "Hello $@name.".replace('Hello','Goodbye') } ok obj.hi() is "Hello Joe." +ok obj.cya() is "Goodbye Joe." ok "With ${"quotes"}" is 'With quotes' ok 'With ${"quotes"}' is 'With ${"quotes"}' From 19ed63129e9215399f3b5e6ec67750ddadc87b95 Mon Sep 17 00:00:00 2001 From: Chris Lloyd Date: Sun, 4 Apr 2010 16:59:44 +1000 Subject: [PATCH 03/19] Interpolated strings are expressions. --- lib/cake.js | 8 ++-- lib/coffee-script.js | 2 +- lib/command.js | 4 +- lib/grammar.js | 6 +-- lib/helpers.js | 2 +- lib/lexer.js | 35 ++++++++++------- lib/nodes.js | 92 ++++++++++++++++++++++---------------------- lib/optparse.js | 6 +-- lib/rewriter.js | 4 +- lib/scope.js | 2 +- src/lexer.coffee | 3 ++ 11 files changed, 87 insertions(+), 77 deletions(-) diff --git a/lib/cake.js b/lib/cake.js index 2064fddae2..5c98fcfec9 100755 --- a/lib/cake.js +++ b/lib/cake.js @@ -57,7 +57,7 @@ return path.exists('Cakefile', function(exists) { var _a, _b, _c, _d, arg, args; if (!(exists)) { - throw new Error("Cakefile not found in " + (process.cwd())); + throw new Error(("Cakefile not found in " + (process.cwd()))); } args = process.argv.slice(2, process.argv.length); CoffeeScript.run(fs.readFileSync('Cakefile'), { @@ -91,8 +91,8 @@ } return _b; }).call(this).join('') : ''; - desc = task.description ? "# " + (task.description) : ''; - puts("cake " + name + spaces + " " + desc); + desc = task.description ? ("# " + (task.description)) : ''; + puts(("cake " + name + spaces + " " + desc)); }} if (switches.length) { return puts(oparse.help()); @@ -100,7 +100,7 @@ }; // Print an error and exit when attempting to all an undefined task. no_such_task = function no_such_task(task) { - process.stdio.writeError("No such task: \"" + task + "\"\n"); + process.stdio.writeError(("No such task: \"" + task + "\"\n")); return process.exit(1); }; })(); diff --git a/lib/coffee-script.js b/lib/coffee-script.js index 68a897912b..253c383328 100644 --- a/lib/coffee-script.js +++ b/lib/coffee-script.js @@ -34,7 +34,7 @@ return (parser.parse(lexer.tokenize(code))).compile(options); } catch (err) { if (options.source) { - err.message = "In " + (options.source) + ", " + (err.message); + err.message = ("In " + (options.source) + ", " + (err.message)); } throw err; } diff --git a/lib/command.js b/lib/command.js index 93b495dae1..6dc97e418d 100644 --- a/lib/command.js +++ b/lib/command.js @@ -61,7 +61,7 @@ compile = function compile(source) { return path.exists(source, function(exists) { if (!(exists)) { - throw new Error("File not found: " + source); + throw new Error(("File not found: " + source)); } return fs.readFile(source, function(err, code) { return compile_script(source, code); @@ -221,7 +221,7 @@ }; // Print the `--version` message and exit. version = function version() { - puts("CoffeeScript version " + (CoffeeScript.VERSION)); + puts(("CoffeeScript version " + (CoffeeScript.VERSION))); return process.exit(0); }; })(); diff --git a/lib/grammar.js b/lib/grammar.js index 28b24e7a6d..67007ccf6e 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -33,8 +33,8 @@ if (!(action)) { return [pattern_string, '$$ = $1;', options]; } - action = (match = (action + '').match(unwrap)) ? match[1] : "(" + action + "())"; - return [pattern_string, "$$ = " + action + ";", options]; + action = (match = (action + '').match(unwrap)) ? match[1] : ("(" + action + "())"); + return [pattern_string, ("$$ = " + action + ";"), options]; }; // Grammatical Rules // ----------------- @@ -693,7 +693,7 @@ } } if (name === 'Root') { - alt[1] = "return " + (alt[1]); + alt[1] = ("return " + (alt[1])); } return alt; }).call(this)); diff --git a/lib/helpers.js b/lib/helpers.js index d262227fe7..e770597a35 100644 --- a/lib/helpers.js +++ b/lib/helpers.js @@ -132,7 +132,7 @@ if (slash) { return false; } - throw new Error("SyntaxError: Unterminated " + (levels.pop()[0]) + " starting on line " + (this.line + 1)); + throw new Error(("SyntaxError: Unterminated " + (levels.pop()[0]) + " starting on line " + (this.line + 1))); } if (!i) { return false; diff --git a/lib/lexer.js b/lib/lexer.js index 416bf55baa..7435ac8014 100644 --- a/lib/lexer.js +++ b/lib/lexer.js @@ -185,7 +185,7 @@ } quote = match[1].substr(0, 1); doc = this.sanitize_heredoc(match[2] || match[4], quote); - this.interpolate_string("" + quote + doc + quote); + this.interpolate_string(("" + quote + doc + quote)); this.line += count(match[1], "\n"); this.i += match[1].length; return true; @@ -225,8 +225,8 @@ return '\\' + escaped; }); this.tokens = this.tokens.concat([['(', '('], ['NEW', 'new'], ['IDENTIFIER', 'RegExp'], ['CALL_START', '(']]); - this.interpolate_string("\"" + str + "\"", true); - this.tokens = this.tokens.concat([[',', ','], ['STRING', "\"" + flags + "\""], [')', ')'], [')', ')']]); + this.interpolate_string(("\"" + str + "\""), true); + this.tokens = this.tokens.concat([[',', ','], ['STRING', ("\"" + flags + "\"")], [')', ')'], [')', ')']]); } else { this.token('REGEX', regex); } @@ -412,7 +412,7 @@ Lexer.prototype.tag_half_assignment = function tag_half_assignment(tag) { var last; last = this.tokens.pop(); - this.tokens.push(["" + tag + "=", "" + tag + "=", last[2]]); + this.tokens.push([("" + tag + "="), ("" + tag + "="), last[2]]); return true; }; // A source of ambiguity in our grammar used to be parameter lists in function @@ -448,12 +448,12 @@ // The error for when you try to use a forbidden word in JavaScript as // an identifier. Lexer.prototype.identifier_error = function identifier_error(word) { - throw new Error("SyntaxError: Reserved word \"" + word + "\" on line " + (this.line + 1)); + throw new Error(("SyntaxError: Reserved word \"" + word + "\" on line " + (this.line + 1))); }; // The error for when you try to assign to a reserved word in JavaScript, // like "function" or "default". Lexer.prototype.assignment_error = function assignment_error() { - throw new Error("SyntaxError: Reserved word \"" + (this.value()) + "\" on line " + (this.line + 1) + " can't be assigned"); + throw new Error(("SyntaxError: Reserved word \"" + (this.value()) + "\" on line " + (this.line + 1) + " can't be assigned")); }; // Expand variables and expressions inside double-quoted strings using // [ECMA Harmony's interpolation syntax](http://wiki.ecmascript.org/doku.php?id=strawman:string_interpolation) @@ -464,7 +464,7 @@ // new Lexer, tokenize the interpolated contents, and merge them into the // token stream. Lexer.prototype.interpolate_string = function interpolate_string(str, escape_quotes) { - var _a, _b, _c, _d, _e, escaped, expr, group, i, inner, interp, lexer, match, nested, pi, quote, tag, token, tokens, value; + var _a, _b, _c, _d, _e, escaped, expr, group, i, inner, interp, interpolated, lexer, match, nested, pi, quote, tag, token, tokens, value; if (str.length < 3 || !starts(str, '"')) { return this.token('STRING', str); } else { @@ -482,28 +482,28 @@ group = _b[0]; interp = _b[1]; if (starts(interp, '@')) { - interp = "this." + (interp.substring(1)); + interp = ("this." + (interp.substring(1))); } if (pi < i) { - tokens.push(['STRING', "" + quote + (str.substring(pi, i)) + quote]); + tokens.push(['STRING', ("" + quote + (str.substring(pi, i)) + quote)]); } tokens.push(['IDENTIFIER', interp]); i += group.length - 1; pi = i + 1; } else if ((expr = balanced_string(str.substring(i), [['${', '}']]))) { if (pi < i) { - tokens.push(['STRING', "" + quote + (str.substring(pi, i)) + quote]); + tokens.push(['STRING', ("" + quote + (str.substring(pi, i)) + quote)]); } inner = expr.substring(2, expr.length - 1); if (inner.length) { - nested = lexer.tokenize("(" + inner + ")", { + nested = lexer.tokenize(("(" + inner + ")"), { rewrite: false, line: this.line }); nested.pop(); tokens.push(['TOKENS', nested]); } else { - tokens.push(['STRING', "" + quote + quote]); + tokens.push(['STRING', ("" + quote + quote)]); } i += expr.length - 1; pi = i + 1; @@ -511,11 +511,15 @@ i += 1; } if (pi < i && pi < str.length - 1) { - tokens.push(['STRING', "" + quote + (str.substring(pi, i)) + quote]); + tokens.push(['STRING', ("" + quote + (str.substring(pi, i)) + quote)]); } if (!(tokens[0][0] === 'STRING')) { tokens.unshift(['STRING', '""']); } + interpolated = tokens.length > 1; + if (interpolated) { + this.token('(', '('); + } _c = tokens; for (i = 0, _d = _c.length; i < _d; i++) { token = _c[i]; @@ -526,7 +530,7 @@ this.tokens = this.tokens.concat(value); } else if (tag === 'STRING' && escape_quotes) { escaped = value.substring(1, value.length - 1).replace(/"/g, '\\"'); - this.token(tag, "\"" + escaped + "\""); + this.token(tag, ("\"" + escaped + "\"")); } else { this.token(tag, value); } @@ -534,6 +538,9 @@ this.token('+', '+'); } } + if (interpolated) { + this.token(')', ')'); + } return tokens; } }; diff --git a/lib/nodes.js b/lib/nodes.js index c1d9f10643..6999a763a6 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -284,10 +284,10 @@ var code; code = this.compile_node(o); if (o.scope.has_assignments(this)) { - code = "" + (this.tab) + "var " + (o.scope.compiled_assignments()) + ";\n" + code; + code = ("" + (this.tab) + "var " + (o.scope.compiled_assignments()) + ";\n" + code); } if (o.scope.has_declarations(this)) { - code = "" + (this.tab) + "var " + (o.scope.compiled_declarations()) + ";\n" + code; + code = ("" + (this.tab) + "var " + (o.scope.compiled_declarations()) + ";\n" + code); } return code; }; @@ -433,7 +433,7 @@ props = only ? this.properties.slice(0, this.properties.length - 1) : this.properties; baseline = this.base.compile(o); if (this.base instanceof ObjectNode && this.has_properties()) { - baseline = "(" + baseline + ")"; + baseline = ("(" + baseline + ")"); } complete = (this.last = baseline); _b = props; @@ -444,7 +444,7 @@ soaked = true; if (this.base instanceof CallNode && prop === props[0]) { temp = o.scope.free_variable(); - complete = "(" + temp + " = " + complete + ")" + this.SOAK + (baseline = temp + prop.compile(o)); + complete = ("(" + temp + " = " + complete + ")" + this.SOAK) + (baseline = temp + prop.compile(o)); } else { complete = complete + this.SOAK + (baseline += prop.compile(o)); } @@ -477,7 +477,7 @@ return this; }; CommentNode.prototype.compile_node = function compile_node(o) { - return "" + this.tab + "//" + this.lines.join("\n" + this.tab + "//"); + return ("" + this.tab + "//") + this.lines.join(("\n" + this.tab + "//")); }; return CommentNode; }).call(this); @@ -535,7 +535,7 @@ CallNode.prototype.compile_super = function compile_super(args, o) { var meth, methname; methname = o.scope.method.name; - meth = o.scope.method.proto ? "" + (o.scope.method.proto) + ".__superClass__." + methname : "" + (methname) + ".__superClass__.constructor"; + meth = o.scope.method.proto ? ("" + (o.scope.method.proto) + ".__superClass__." + methname) : ("" + (methname) + ".__superClass__.constructor"); return "" + (meth) + ".call(this" + (args.length ? ', ' : '') + args + ")"; }; // If you call a function with a splat, it's converted into a JavaScript @@ -547,7 +547,7 @@ if (obj.match(/\(/)) { temp = o.scope.free_variable(); obj = temp; - meth = "(" + temp + " = " + (this.variable.source) + ")" + (this.variable.last); + meth = ("(" + temp + " = " + (this.variable.source) + ")" + (this.variable.last)); } return "" + (this.prefix()) + (meth) + ".apply(" + obj + ", " + (this.compile_splat_arguments(o)) + ")"; }; @@ -668,12 +668,12 @@ } idx = del(o, 'index'); step = del(o, 'step'); - vars = "" + idx + " = " + this.from_var; + vars = ("" + idx + " = " + this.from_var); step = step ? step.compile(o) : '1'; equals = this.exclusive ? '' : '='; - intro = "(" + this.from_var + " <= " + this.to_var + " ? " + idx; - compare = "" + intro + " <" + equals + " " + this.to_var + " : " + idx + " >" + equals + " " + this.to_var + ")"; - incr = "" + intro + " += " + step + " : " + idx + " -= " + step + ")"; + intro = ("(" + this.from_var + " <= " + this.to_var + " ? " + idx); + compare = ("" + intro + " <" + equals + " " + this.to_var + " : " + idx + " >" + equals + " " + this.to_var + ")"); + incr = ("" + intro + " += " + step + " : " + idx + " -= " + step + ")"); return "" + vars + "; " + compare + "; " + incr; }; // When used as a value, expand the range into the equivalent array. In the @@ -778,15 +778,15 @@ if (obj instanceof SplatNode) { return this.compile_splat_literal(this.objects, o); } else if (obj instanceof CommentNode) { - objects.push("\n" + code + "\n" + o.indent); + objects.push(("\n" + code + "\n" + o.indent)); } else if (i === this.objects.length - 1) { objects.push(code); } else { - objects.push("" + code + ", "); + objects.push(("" + code + ", ")); } } objects = objects.join(''); - ending = objects.indexOf('\n') >= 0 ? "\n" + this.tab + "]" : ']'; + ending = objects.indexOf('\n') >= 0 ? ("\n" + this.tab + "]") : ']'; return "[" + objects + ending; }; return ArrayNode; @@ -903,14 +903,14 @@ } val = this.value.compile(o); if (this.context === 'object') { - return "" + name + ": " + val; + return ("" + name + ": " + val); } if (!(this.is_value() && this.variable.has_properties())) { o.scope.find(name); } - val = "" + name + " = " + val; + val = ("" + name + " = " + val); if (stmt) { - return "" + this.tab + val + ";"; + return ("" + this.tab + val + ";"); } if (top) { return val; @@ -926,7 +926,7 @@ var _a, _b, _c, access_class, assigns, code, i, idx, obj, oindex, olength, splat, val, val_var, value; val_var = o.scope.free_variable(); value = this.value.is_statement() ? ClosureNode.wrap(this.value) : this.value; - assigns = ["" + this.tab + val_var + " = " + (value.compile(o)) + ";"]; + assigns = [("" + this.tab + val_var + " = " + (value.compile(o)) + ";")]; o.top = true; o.as_statement = true; splat = false; @@ -945,7 +945,7 @@ splat = true; } else { if (typeof idx !== 'object') { - idx = literal(splat ? "" + (val_var) + ".length - " + (olength - idx) : idx); + idx = literal(splat ? ("" + (val_var) + ".length - " + (olength - idx)) : idx); } val = new ValueNode(literal(val_var), [new access_class(idx)]); } @@ -1029,11 +1029,11 @@ param = _i[_h]; (o.scope.parameter(param)); } - code = this.body.expressions.length ? "\n" + (this.body.compile_with_declarations(o)) + "\n" : ''; + code = this.body.expressions.length ? ("\n" + (this.body.compile_with_declarations(o)) + "\n") : ''; name_part = this.name ? ' ' + this.name : ''; - func = "function" + (this.bound ? '' : name_part) + "(" + (params.join(', ')) + ") {" + code + (this.idt(this.bound ? 1 : 0)) + "}"; + func = ("function" + (this.bound ? '' : name_part) + "(" + (params.join(', ')) + ") {" + code + (this.idt(this.bound ? 1 : 0)) + "}"); if (top && !this.bound) { - func = "(" + func + ")"; + func = ("(" + func + ")"); } if (!(this.bound)) { return func; @@ -1106,7 +1106,7 @@ _b = this.trailings; for (_a = 0, _c = _b.length; _a < _c; _a++) { trailing = _b[_a]; - o.scope.assign(trailing.compile(o), "arguments[arguments.length - " + this.trailings.length + " + " + i + "]"); + o.scope.assign(trailing.compile(o), ("arguments[arguments.length - " + this.trailings.length + " + " + i + "]")); i += 1; } return "" + name + " = " + (utility('slice')) + ".call(arguments, " + this.index + ", arguments.length - " + (this.trailings.length) + ")"; @@ -1115,7 +1115,7 @@ // from the right-hand-side's corresponding array. SplatNode.prototype.compile_value = function compile_value(o, name, index, trailings) { var trail; - trail = trailings ? ", " + (name) + ".length - " + trailings : ''; + trail = trailings ? (", " + (name) + ".length - " + trailings) : ''; return "" + (utility('slice')) + ".call(" + name + ", " + index + trail + ")"; }; // Utility function that converts arbitrary number of elements, mixed with @@ -1131,16 +1131,16 @@ 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 + "]"; + 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 + "])"; + args[i - 1] = ("" + (prev.substr(0, prev.length - 2)) + ", " + code + "])"); continue; } else { - code = "[" + code + "]"; + code = ("[" + code + "]"); } } - args.push(i === 0 ? code : ".concat(" + code + ")"); + args.push(i === 0 ? code : (".concat(" + code + ")")); i += 1; } return args.join(''); @@ -1181,14 +1181,14 @@ set = ''; if (!top) { rvar = o.scope.free_variable(); - set = "" + this.tab + rvar + " = [];\n"; + set = ("" + this.tab + rvar + " = [];\n"); if (this.body) { this.body = PushNode.wrap(rvar, this.body); } } - pre = "" + set + (this.tab) + "while (" + cond + ")"; + pre = ("" + set + (this.tab) + "while (" + cond + ")"); if (!this.body) { - return "" + pre + " null;" + post; + return ("" + pre + " null;" + post); } if (this.filter) { this.body = Expressions.wrap([new IfNode(this.filter, this.body)]); @@ -1277,7 +1277,7 @@ o.scope.find(first); } if (this.operator === '?=') { - return "" + first + " = " + (ExistenceNode.compile_test(o, this.first)) + " ? " + first + " : " + second; + return ("" + first + " = " + (ExistenceNode.compile_test(o, this.first)) + " ? " + first + " : " + second); } return "" + first + " = " + first + " " + (this.operator.substr(0, 2)) + " " + second; }; @@ -1329,9 +1329,9 @@ o.indent = this.idt(1); o.top = true; attempt_part = this.attempt.compile(o); - error_part = this.error ? " (" + (this.error.compile(o)) + ") " : ' '; - catch_part = this.recovery ? " catch" + error_part + "{\n" + (this.recovery.compile(o)) + "\n" + this.tab + "}" : ''; - finally_part = (this.ensure || '') && ' finally {\n' + this.ensure.compile(merge(o)) + "\n" + this.tab + "}"; + error_part = this.error ? (" (" + (this.error.compile(o)) + ") ") : ' '; + catch_part = this.recovery ? (" catch" + error_part + "{\n" + (this.recovery.compile(o)) + "\n" + this.tab + "}") : ''; + finally_part = (this.ensure || '') && ' finally {\n' + this.ensure.compile(merge(o)) + ("\n" + this.tab + "}"); return "" + (this.tab) + "try {\n" + attempt_part + "\n" + this.tab + "}" + catch_part + finally_part; }; return TryNode; @@ -1495,18 +1495,18 @@ index: ivar, step: this.step })); - for_part = "" + index_var + " = 0, " + for_part + ", " + index_var + "++"; + for_part = ("" + index_var + " = 0, " + for_part + ", " + index_var + "++"); } else { svar = scope.free_variable(); index_var = null; - source_part = "" + svar + " = " + (this.source.compile(o)) + ";\n" + this.tab; + source_part = ("" + svar + " = " + (this.source.compile(o)) + ";\n" + this.tab); if (name) { - var_part = "" + body_dent + name + " = " + svar + "[" + ivar + "];\n"; + var_part = ("" + body_dent + name + " = " + svar + "[" + ivar + "];\n"); } if (!this.object) { lvar = scope.free_variable(); - step_part = this.step ? "" + ivar + " += " + (this.step.compile(o)) : "" + ivar + "++"; - for_part = "" + ivar + " = 0, " + lvar + " = " + (svar) + ".length; " + ivar + " < " + lvar + "; " + step_part; + step_part = this.step ? ("" + ivar + " += " + (this.step.compile(o))) : ("" + ivar + "++"); + for_part = ("" + ivar + " = 0, " + lvar + " = " + (svar) + ".length; " + ivar + " < " + lvar + "; " + step_part); } } set_result = rvar ? this.idt() + rvar + ' = []; ' : this.idt(); @@ -1520,12 +1520,12 @@ body = PushNode.wrap(rvar, body); } this.filter ? (body = Expressions.wrap([new IfNode(this.filter, body)])) : null; - this.object ? (for_part = "" + ivar + " in " + svar + ") { if (" + (utility('hasProp')) + ".call(" + svar + ", " + ivar + ")") : null; + this.object ? (for_part = ("" + ivar + " in " + svar + ") { if (" + (utility('hasProp')) + ".call(" + svar + ", " + ivar + ")")) : null; body = body.compile(merge(o, { indent: body_dent, top: true })); - vars = range ? name : "" + name + ", " + ivar; + vars = range ? name : ("" + name + ", " + ivar); close = this.object ? '}}\n' : '}\n'; return "" + set_result + (source_part) + "for (" + for_part + ") {\n" + var_part + body + "\n" + this.tab + close + return_result; }; @@ -1655,16 +1655,16 @@ o.top = true; if_dent = child ? '' : this.idt(); com_dent = child ? this.idt() : ''; - prefix = this.comment ? "" + (this.comment.compile(cond_o)) + "\n" + com_dent : ''; + prefix = this.comment ? ("" + (this.comment.compile(cond_o)) + "\n" + com_dent) : ''; body = Expressions.wrap([this.body]).compile(o); - if_part = "" + prefix + (if_dent) + "if (" + (this.compile_condition(cond_o)) + ") {\n" + body + "\n" + this.tab + "}"; + if_part = ("" + prefix + (if_dent) + "if (" + (this.compile_condition(cond_o)) + ") {\n" + body + "\n" + this.tab + "}"); if (!(this.else_body)) { return if_part; } else_part = this.is_chain() ? ' else ' + this.else_body.compile(merge(o, { indent: this.idt(), chain_child: true - })) : " else {\n" + (Expressions.wrap([this.else_body]).compile(o)) + "\n" + this.tab + "}"; + })) : (" else {\n" + (Expressions.wrap([this.else_body]).compile(o)) + "\n" + this.tab + "}"); return "" + if_part + else_part; }; // Compile the IfNode as a ternary operator. @@ -1744,7 +1744,7 @@ // Helper for ensuring that utility functions are assigned at the top level. utility = function utility(name) { var ref; - ref = "__" + name; + ref = ("__" + name); Scope.root.assign(ref, UTILITIES[ref]); return ref; }; diff --git a/lib/optparse.js b/lib/optparse.js index 3eb7b1d3ed..f8454973f0 100755 --- a/lib/optparse.js +++ b/lib/optparse.js @@ -37,7 +37,7 @@ } } if (is_option && !matched_rule) { - throw new Error("unrecognized option: " + arg); + throw new Error(("unrecognized option: " + arg)); } if (!(is_option)) { options.arguments.push(arg); @@ -51,7 +51,7 @@ var _a, _b, _c, _d, _e, _f, _g, i, let_part, lines, rule, spaces; lines = ['Available options:']; if (this.banner) { - lines.unshift("" + this.banner + "\n"); + lines.unshift(("" + this.banner + "\n")); } _b = this.rules; for (_a = 0, _c = _b.length; _a < _c; _a++) { @@ -65,7 +65,7 @@ return _d; }).call(this).join('') : ''; let_part = rule.short_flag ? rule.short_flag + ', ' : ' '; - lines.push(" " + let_part + (rule.long_flag) + spaces + (rule.description)); + lines.push((" " + let_part + (rule.long_flag) + spaces + (rule.description))); } return "\n" + (lines.join('\n')) + "\n"; }; diff --git a/lib/rewriter.js b/lib/rewriter.js index 8a501a8565..fc13a4cb54 100644 --- a/lib/rewriter.js +++ b/lib/rewriter.js @@ -255,7 +255,7 @@ levels[open] -= 1; } if (levels[open] < 0) { - throw new Error("too many " + (token[1]) + " on line " + (token[2] + 1)); + throw new Error(("too many " + (token[1]) + " on line " + (token[2] + 1))); } } return 1; @@ -271,7 +271,7 @@ if (unclosed.length) { open = unclosed[0]; line = open_line[open] + 1; - throw new Error("unclosed " + open + " on line " + line); + throw new Error(("unclosed " + open + " on line " + line)); } }; // We'd like to support syntax like this: diff --git a/lib/scope.js b/lib/scope.js index b55ad5eb10..f95bb33573 100644 --- a/lib/scope.js +++ b/lib/scope.js @@ -120,7 +120,7 @@ _a = []; _b = this.variables; for (key in _b) { if (__hasProp.call(_b, key)) { val = _b[key]; - val.assigned ? _a.push("" + key + " = " + (val.value)) : null; + val.assigned ? _a.push(("" + key + " = " + (val.value))) : null; }} return _a; }; diff --git a/src/lexer.coffee b/src/lexer.coffee index c7a1770156..36001cbc58 100644 --- a/src/lexer.coffee +++ b/src/lexer.coffee @@ -376,6 +376,8 @@ exports.Lexer: class Lexer i: + 1 tokens.push ['STRING', "$quote${ str.substring(pi, i) }$quote"] if pi < i and pi < str.length - 1 tokens.unshift ['STRING', '""'] unless tokens[0][0] is 'STRING' + interpolated: tokens.length > 1 + @token '(', '(' if interpolated for token, i in tokens [tag, value]: token if tag is 'TOKENS' @@ -386,6 +388,7 @@ exports.Lexer: class Lexer else @token tag, value @token '+', '+' if i < tokens.length - 1 + @token ')', ')' if interpolated tokens # Helpers From de955dacc41e3634da016bb18af391791c44650f Mon Sep 17 00:00:00 2001 From: Tim Jones Date: Tue, 6 Apr 2010 02:26:23 +1200 Subject: [PATCH 04/19] Added Statement to the grammar. --- lib/grammar.js | 53 ++++--- lib/parser.js | 375 +++++++++++++++++++++++---------------------- src/grammar.coffee | 45 ++++-- 3 files changed, 260 insertions(+), 213 deletions(-) diff --git a/lib/grammar.js b/lib/grammar.js index 67007ccf6e..961c30a11c 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -53,25 +53,33 @@ return new Expressions(); }), o("TERMINATOR", function() { return new Expressions(); - }), o("Expressions"), o("Block TERMINATOR") + }), o("Body"), o("Block TERMINATOR") ], - // Any list of expressions or method body, seperated by line breaks or - // semicolons. - Expressions: [o("Expression", function() { + // Any list of statements and expressions, seperated by line breaks or semicolons. + Body: [o("Line", function() { return Expressions.wrap([$1]); - }), o("Expressions TERMINATOR Expression", function() { + }), o("Body TERMINATOR Line", function() { return $1.push($3); - }), o("Expressions TERMINATOR") + }), o("Body TERMINATOR") + ], + // Expressions and statements, which make up a line in a body. + Line: [o("Expression"), o("Statement")], + // Pure statements which cannot be expressions. + Statement: [o("Return"), o("Throw"), o("BREAK", function() { + return new LiteralNode(yytext); + }), o("CONTINUE", function() { + return new LiteralNode(yytext); + }) ], // All the different types of expressions in our language. The basic unit of - // CoffeeScript is the **Expression** -- you'll notice that there is no - // "statement" nonterminal. Expressions serve as the building blocks - // of many other rules, making them somewhat circular. - Expression: [o("Value"), o("Call"), o("Curry"), o("Code"), o("Operation"), o("Assign"), o("If"), o("Try"), o("Throw"), o("Return"), o("While"), o("For"), o("Switch"), o("Extends"), o("Class"), o("Splat"), o("Existence"), o("Comment"), o("Extension")], + // CoffeeScript is the **Expression** -- everything that can be an expression + // is one. Expressions serve as the building blocks of many other rules, making + // them somewhat circular. + Expression: [o("Value"), o("Call"), o("Curry"), 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"), o("Extension")], // A an indented block of expressions. Note that the [Rewriter](rewriter.html) // will convert some postfix forms into blocks for us, by adjusting the // token stream. - Block: [o("INDENT Expressions OUTDENT", function() { + Block: [o("INDENT Body OUTDENT", function() { return $2; }), o("INDENT OUTDENT", function() { return new Expressions(); @@ -98,10 +106,6 @@ return new LiteralNode(yytext); }), o("REGEX", function() { return new LiteralNode(yytext); - }), o("BREAK", function() { - return new LiteralNode(yytext); - }), o("CONTINUE", function() { - return new LiteralNode(yytext); }), o("TRUE", function() { return new LiteralNode(true); }), o("FALSE", function() { @@ -420,7 +424,7 @@ // 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("( Expression )", function() { + Parenthetical: [o("( Line )", function() { return new ParentheticalNode($2); }) ], @@ -443,6 +447,8 @@ // or postfix, with a single expression. There is no do..while. While: [o("WhileSource Block", function() { return $1.add_body($2); + }), o("Statement WhileSource", function() { + return $2.add_body(Expressions.wrap([$1])); }), o("Expression WhileSource", function() { return $2.add_body(Expressions.wrap([$1])); }) @@ -450,7 +456,9 @@ // 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("Expression FOR ForVariables ForSource", function() { + For: [o("Statement FOR ForVariables ForSource", function() { + return new ForNode($1, $4, $3[0], $3[1]); + }), o("Expression FOR ForVariables ForSource", function() { return new ForNode($1, $4, $3[0], $3[1]); }), o("FOR ForVariables ForSource Block", function() { return new ForNode($4, $3, $2[0], $2[1]); @@ -556,10 +564,19 @@ ], // The full complement of *if* expressions, including postfix one-liner // *if* and *unless*. - If: [o("IfBlock"), o("Expression IF Expression", function() { + If: [o("IfBlock"), o("Statement IF Expression", function() { + return new IfNode($3, Expressions.wrap([$1]), null, { + statement: true + }); + }), o("Expression IF Expression", function() { return new IfNode($3, Expressions.wrap([$1]), null, { statement: true }); + }), o("Statement UNLESS Expression", function() { + return new IfNode($3, Expressions.wrap([$1]), null, { + statement: true, + invert: true + }); }), o("Expression UNLESS Expression", function() { return new IfNode($3, Expressions.wrap([$1]), null, { statement: true, diff --git a/lib/parser.js b/lib/parser.js index 9576f9c1ae..f055fff96f 100755 --- a/lib/parser.js +++ b/lib/parser.js @@ -2,9 +2,9 @@ var parser = (function(){ var parser = {trace: function trace() { }, yy: {}, -symbols_: {"Root":2,"TERMINATOR":3,"Expressions":4,"Block":5,"Expression":6,"Value":7,"Call":8,"Curry":9,"Code":10,"Operation":11,"Assign":12,"If":13,"Try":14,"Throw":15,"Return":16,"While":17,"For":18,"Switch":19,"Extends":20,"Class":21,"Splat":22,"Existence":23,"Comment":24,"Extension":25,"INDENT":26,"OUTDENT":27,"Identifier":28,"IDENTIFIER":29,"AlphaNumeric":30,"NUMBER":31,"STRING":32,"Literal":33,"JS":34,"REGEX":35,"BREAK":36,"CONTINUE":37,"TRUE":38,"FALSE":39,"YES":40,"NO":41,"ON":42,"OFF":43,"Assignable":44,"ASSIGN":45,"AssignObj":46,"RETURN":47,"COMMENT":48,"?":49,"PARAM_START":50,"ParamList":51,"PARAM_END":52,"FuncGlyph":53,"->":54,"=>":55,"Param":56,",":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,"SOAKED_INDEX_START":78,"SOAKED_INDEX_END":79,"{":80,"AssignList":81,"}":82,"IndentedAssignList":83,"CLASS":84,"EXTENDS":85,"ClassBody":86,"ClassAssign":87,"NEW":88,"Super":89,"<-":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,"EXTENSION":108,"WhileSource":109,"WHILE":110,"WHEN":111,"FOR":112,"ForVariables":113,"ForSource":114,"IN":115,"OF":116,"BY":117,"SWITCH":118,"Whens":119,"ELSE":120,"When":121,"LEADING_WHEN":122,"IfStart":123,"IF":124,"ElsIf":125,"IfBlock":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":162,"$accept":0,"$end":1}, -terminals_: {"3":"TERMINATOR","26":"INDENT","27":"OUTDENT","29":"IDENTIFIER","31":"NUMBER","32":"STRING","34":"JS","35":"REGEX","36":"BREAK","37":"CONTINUE","38":"TRUE","39":"FALSE","40":"YES","41":"NO","42":"ON","43":"OFF","45":"ASSIGN","47":"RETURN","48":"COMMENT","49":"?","50":"PARAM_START","52":"PARAM_END","54":"->","55":"=>","57":",","58":"PARAM","59":".","69":"NULL","70":"PROPERTY_ACCESS","71":"PROTOTYPE_ACCESS","72":"::","73":"SOAK_ACCESS","76":"INDEX_START","77":"INDEX_END","78":"SOAKED_INDEX_START","79":"SOAKED_INDEX_END","80":"{","82":"}","84":"CLASS","85":"EXTENDS","88":"NEW","90":"<-","92":"CALL_START","94":"CALL_END","95":"SUPER","96":"THIS","97":"@","98":"[","99":"]","101":"TRY","103":"FINALLY","104":"CATCH","105":"THROW","106":"(","107":")","108":"EXTENSION","110":"WHILE","111":"WHEN","112":"FOR","115":"IN","116":"OF","117":"BY","118":"SWITCH","120":"ELSE","122":"LEADING_WHEN","124":"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"}, -productions_: [0,[2,0],[2,1],[2,1],[2,2],[4,1],[4,3],[4,2],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[5,3],[5,2],[5,2],[28,1],[30,1],[30,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[12,3],[46,3],[46,3],[46,1],[16,2],[16,1],[24,1],[23,2],[10,5],[10,2],[53,1],[53,1],[51,0],[51,1],[51,3],[56,1],[56,4],[22,4],[60,1],[60,2],[60,2],[60,1],[44,1],[44,1],[44,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[61,2],[61,2],[61,1],[61,2],[61,1],[61,1],[74,3],[74,3],[65,3],[65,3],[65,4],[65,4],[81,0],[81,1],[81,3],[81,3],[81,4],[83,3],[83,4],[21,2],[21,4],[21,5],[21,7],[87,1],[87,3],[86,0],[86,1],[86,3],[8,1],[8,2],[8,1],[9,3],[20,3],[62,2],[62,2],[91,3],[91,4],[89,4],[89,5],[68,1],[68,1],[63,2],[67,6],[67,7],[75,6],[75,7],[64,3],[64,4],[93,0],[93,1],[93,2],[93,3],[93,3],[93,4],[93,4],[93,2],[93,3],[100,1],[100,3],[14,3],[14,4],[14,5],[102,3],[15,2],[66,3],[25,1],[109,2],[109,4],[17,2],[17,2],[18,4],[18,4],[113,1],[113,3],[114,2],[114,2],[114,4],[114,4],[114,4],[114,6],[114,6],[19,5],[19,7],[119,1],[119,2],[121,3],[121,4],[121,3],[123,3],[123,2],[126,1],[126,3],[125,4],[13,1],[13,3],[13,3],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3]], +symbols_: {"Root":2,"TERMINATOR":3,"Body":4,"Block":5,"Line":6,"Expression":7,"Statement":8,"Return":9,"Throw":10,"BREAK":11,"CONTINUE":12,"Value":13,"Call":14,"Curry":15,"Code":16,"Operation":17,"Assign":18,"If":19,"Try":20,"While":21,"For":22,"Switch":23,"Extends":24,"Class":25,"Splat":26,"Existence":27,"Comment":28,"Extension":29,"INDENT":30,"OUTDENT":31,"Identifier":32,"IDENTIFIER":33,"AlphaNumeric":34,"NUMBER":35,"STRING":36,"Literal":37,"JS":38,"REGEX":39,"TRUE":40,"FALSE":41,"YES":42,"NO":43,"ON":44,"OFF":45,"Assignable":46,"ASSIGN":47,"AssignObj":48,"RETURN":49,"COMMENT":50,"?":51,"PARAM_START":52,"ParamList":53,"PARAM_END":54,"FuncGlyph":55,"->":56,"=>":57,"Param":58,",":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,"SOAKED_INDEX_START":80,"SOAKED_INDEX_END":81,"{":82,"AssignList":83,"}":84,"IndentedAssignList":85,"CLASS":86,"EXTENDS":87,"ClassBody":88,"ClassAssign":89,"NEW":90,"Super":91,"<-":92,"Arguments":93,"CALL_START":94,"ArgList":95,"CALL_END":96,"SUPER":97,"THIS":98,"@":99,"[":100,"]":101,"SimpleArgs":102,"TRY":103,"Catch":104,"FINALLY":105,"CATCH":106,"THROW":107,"(":108,")":109,"EXTENSION":110,"WhileSource":111,"WHILE":112,"WHEN":113,"FOR":114,"ForVariables":115,"ForSource":116,"IN":117,"OF":118,"BY":119,"SWITCH":120,"Whens":121,"ELSE":122,"When":123,"LEADING_WHEN":124,"IfStart":125,"IF":126,"ElsIf":127,"IfBlock":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":164,"$accept":0,"$end":1}, +terminals_: {"3":"TERMINATOR","11":"BREAK","12":"CONTINUE","30":"INDENT","31":"OUTDENT","33":"IDENTIFIER","35":"NUMBER","36":"STRING","38":"JS","39":"REGEX","40":"TRUE","41":"FALSE","42":"YES","43":"NO","44":"ON","45":"OFF","47":"ASSIGN","49":"RETURN","50":"COMMENT","51":"?","52":"PARAM_START","54":"PARAM_END","56":"->","57":"=>","59":",","60":"PARAM","61":".","71":"NULL","72":"PROPERTY_ACCESS","73":"PROTOTYPE_ACCESS","74":"::","75":"SOAK_ACCESS","78":"INDEX_START","79":"INDEX_END","80":"SOAKED_INDEX_START","81":"SOAKED_INDEX_END","82":"{","84":"}","86":"CLASS","87":"EXTENDS","90":"NEW","92":"<-","94":"CALL_START","96":"CALL_END","97":"SUPER","98":"THIS","99":"@","100":"[","101":"]","103":"TRY","105":"FINALLY","106":"CATCH","107":"THROW","108":"(","109":")","110":"EXTENSION","112":"WHILE","113":"WHEN","114":"FOR","117":"IN","118":"OF","119":"BY","120":"SWITCH","122":"ELSE","124":"LEADING_WHEN","126":"IF","129":"UNLESS","130":"!","131":"!!","132":"-","133":"+","134":"~","135":"--","136":"++","137":"DELETE","138":"TYPEOF","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":"?=","164":"INSTANCEOF"}, +productions_: [0,[2,0],[2,1],[2,1],[2,2],[4,1],[4,3],[4,2],[6,1],[6,1],[8,1],[8,1],[8,1],[8,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[5,3],[5,2],[5,2],[32,1],[34,1],[34,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[18,3],[48,3],[48,3],[48,1],[9,2],[9,1],[28,1],[27,2],[16,5],[16,2],[55,1],[55,1],[53,0],[53,1],[53,3],[58,1],[58,4],[26,4],[62,1],[62,2],[62,2],[62,1],[46,1],[46,1],[46,1],[13,1],[13,1],[13,1],[13,1],[13,1],[13,1],[63,2],[63,2],[63,1],[63,2],[63,1],[63,1],[76,3],[76,3],[67,3],[67,3],[67,4],[67,4],[83,0],[83,1],[83,3],[83,3],[83,4],[85,3],[85,4],[25,2],[25,4],[25,5],[25,7],[89,1],[89,3],[88,0],[88,1],[88,3],[14,1],[14,2],[14,1],[15,3],[24,3],[64,2],[64,2],[93,3],[93,4],[91,4],[91,5],[70,1],[70,1],[65,2],[69,6],[69,7],[77,6],[77,7],[66,3],[66,4],[95,0],[95,1],[95,2],[95,3],[95,3],[95,4],[95,4],[95,2],[95,3],[102,1],[102,3],[20,3],[20,4],[20,5],[104,3],[10,2],[68,3],[29,1],[111,2],[111,4],[21,2],[21,2],[21,2],[22,4],[22,4],[22,4],[115,1],[115,3],[116,2],[116,2],[116,4],[116,4],[116,4],[116,6],[116,6],[23,5],[23,7],[121,1],[121,2],[123,3],[123,4],[123,3],[125,3],[125,2],[128,1],[128,3],[127,4],[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]], performAction: function anonymous(yytext,yyleng,yylineno,yy) { var $$ = arguments[5],$0=arguments[5].length; @@ -31,9 +31,9 @@ case 10:this.$ = $$[$0-1+1-1]; break; case 11:this.$ = $$[$0-1+1-1]; break; -case 12:this.$ = $$[$0-1+1-1]; +case 12:this.$ = new LiteralNode(yytext); break; -case 13:this.$ = $$[$0-1+1-1]; +case 13:this.$ = new LiteralNode(yytext); break; case 14:this.$ = $$[$0-1+1-1]; break; @@ -61,19 +61,19 @@ case 25:this.$ = $$[$0-1+1-1]; break; case 26:this.$ = $$[$0-1+1-1]; break; -case 27:this.$ = $$[$0-3+2-1]; +case 27:this.$ = $$[$0-1+1-1]; break; -case 28:this.$ = new Expressions(); +case 28:this.$ = $$[$0-1+1-1]; break; -case 29:this.$ = Expressions.wrap([$$[$0-2+2-1]]); +case 29:this.$ = $$[$0-1+1-1]; break; -case 30:this.$ = new LiteralNode(yytext); +case 30:this.$ = $$[$0-1+1-1]; break; -case 31:this.$ = new LiteralNode(yytext); +case 31:this.$ = $$[$0-3+2-1]; break; -case 32:this.$ = new LiteralNode(yytext); +case 32:this.$ = new Expressions(); break; -case 33:this.$ = $$[$0-1+1-1]; +case 33:this.$ = Expressions.wrap([$$[$0-2+2-1]]); break; case 34:this.$ = new LiteralNode(yytext); break; @@ -81,11 +81,11 @@ case 35:this.$ = new LiteralNode(yytext); break; case 36:this.$ = new LiteralNode(yytext); break; -case 37:this.$ = new LiteralNode(yytext); +case 37:this.$ = $$[$0-1+1-1]; break; -case 38:this.$ = new LiteralNode(true); +case 38:this.$ = new LiteralNode(yytext); break; -case 39:this.$ = new LiteralNode(false); +case 39:this.$ = new LiteralNode(yytext); break; case 40:this.$ = new LiteralNode(true); break; @@ -95,185 +95,189 @@ 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]); +case 44:this.$ = new LiteralNode(true); break; -case 45:this.$ = new AssignNode(new ValueNode($$[$0-3+1-1]), $$[$0-3+3-1], 'object'); +case 45:this.$ = new LiteralNode(false); break; -case 46:this.$ = new AssignNode(new ValueNode($$[$0-3+1-1]), $$[$0-3+3-1], 'object'); +case 46:this.$ = new AssignNode($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 47:this.$ = $$[$0-1+1-1]; +case 47:this.$ = new AssignNode(new ValueNode($$[$0-3+1-1]), $$[$0-3+3-1], 'object'); break; -case 48:this.$ = new ReturnNode($$[$0-2+2-1]); +case 48:this.$ = new AssignNode(new ValueNode($$[$0-3+1-1]), $$[$0-3+3-1], 'object'); break; -case 49:this.$ = new ReturnNode(new ValueNode(new LiteralNode('null'))); +case 49:this.$ = $$[$0-1+1-1]; break; -case 50:this.$ = new CommentNode(yytext); +case 50:this.$ = new ReturnNode($$[$0-2+2-1]); break; -case 51:this.$ = new ExistenceNode($$[$0-2+1-1]); +case 51:this.$ = new ReturnNode(new ValueNode(new LiteralNode('null'))); break; -case 52:this.$ = new CodeNode($$[$0-5+2-1], $$[$0-5+5-1], $$[$0-5+4-1]); +case 52:this.$ = new CommentNode(yytext); break; -case 53:this.$ = new CodeNode([], $$[$0-2+2-1], $$[$0-2+1-1]); +case 53:this.$ = new ExistenceNode($$[$0-2+1-1]); break; -case 54:this.$ = 'func'; +case 54:this.$ = new CodeNode($$[$0-5+2-1], $$[$0-5+5-1], $$[$0-5+4-1]); break; -case 55:this.$ = 'boundfunc'; +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.$ = []; break; -case 59:this.$ = new LiteralNode(yytext); +case 59:this.$ = [$$[$0-1+1-1]]; break; -case 60:this.$ = new SplatNode($$[$0-4+1-1]); +case 60:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); break; -case 61:this.$ = new SplatNode($$[$0-4+1-1]); +case 61:this.$ = new LiteralNode(yytext); break; -case 62:this.$ = new ValueNode($$[$0-1+1-1]); +case 62:this.$ = new SplatNode($$[$0-4+1-1]); break; -case 63:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); +case 63:this.$ = new SplatNode($$[$0-4+1-1]); break; -case 64:this.$ = new ValueNode($$[$0-2+1-1], [$$[$0-2+2-1]]); +case 64:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 65:this.$ = $$[$0-1+1-1]; +case 65:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); break; -case 66:this.$ = $$[$0-1+1-1]; +case 66:this.$ = new ValueNode($$[$0-2+1-1], [$$[$0-2+2-1]]); break; -case 67:this.$ = new ValueNode($$[$0-1+1-1]); +case 67:this.$ = $$[$0-1+1-1]; break; -case 68:this.$ = new ValueNode($$[$0-1+1-1]); +case 68:this.$ = $$[$0-1+1-1]; break; -case 69:this.$ = $$[$0-1+1-1]; +case 69:this.$ = new ValueNode($$[$0-1+1-1]); break; case 70:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 71:this.$ = new ValueNode($$[$0-1+1-1]); +case 71:this.$ = $$[$0-1+1-1]; break; case 72:this.$ = new ValueNode($$[$0-1+1-1]); break; -case 73:this.$ = $$[$0-1+1-1]; +case 73:this.$ = new ValueNode($$[$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.$ = $$[$0-1+1-1]; break; -case 76:this.$ = new AccessorNode($$[$0-2+2-1], 'prototype'); +case 76:this.$ = new ValueNode(new LiteralNode('null')); break; -case 77:this.$ = new AccessorNode(new LiteralNode('prototype')); +case 77:this.$ = new AccessorNode($$[$0-2+2-1]); break; -case 78:this.$ = new AccessorNode($$[$0-2+2-1], 'soak'); +case 78:this.$ = new AccessorNode($$[$0-2+2-1], 'prototype'); break; -case 79:this.$ = $$[$0-1+1-1]; +case 79:this.$ = new AccessorNode(new LiteralNode('prototype')); break; -case 80:this.$ = new SliceNode($$[$0-1+1-1]); +case 80:this.$ = new AccessorNode($$[$0-2+2-1], 'soak'); break; -case 81:this.$ = new IndexNode($$[$0-3+2-1]); +case 81:this.$ = $$[$0-1+1-1]; break; -case 82:this.$ = new IndexNode($$[$0-3+2-1], 'soak'); +case 82:this.$ = new SliceNode($$[$0-1+1-1]); break; -case 83:this.$ = new ObjectNode($$[$0-3+2-1]); +case 83:this.$ = new IndexNode($$[$0-3+2-1]); break; -case 84:this.$ = new ObjectNode($$[$0-3+2-1]); +case 84:this.$ = new IndexNode($$[$0-3+2-1], 'soak'); break; -case 85:this.$ = new ObjectNode($$[$0-4+2-1]); +case 85:this.$ = new ObjectNode($$[$0-3+2-1]); break; -case 86:this.$ = new ObjectNode($$[$0-4+2-1]); +case 86:this.$ = new ObjectNode($$[$0-3+2-1]); break; -case 87:this.$ = []; +case 87:this.$ = new ObjectNode($$[$0-4+2-1]); break; -case 88:this.$ = [$$[$0-1+1-1]]; +case 88:this.$ = new ObjectNode($$[$0-4+2-1]); break; -case 89:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); +case 89:this.$ = []; break; -case 90:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); +case 90:this.$ = [$$[$0-1+1-1]]; break; -case 91:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); +case 91:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); break; -case 92:this.$ = $$[$0-3+2-1]; +case 92:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); break; -case 93:this.$ = $$[$0-4+2-1]; +case 93:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); break; -case 94:this.$ = new ClassNode($$[$0-2+2-1]); +case 94:this.$ = $$[$0-3+2-1]; break; -case 95:this.$ = new ClassNode($$[$0-4+2-1], $$[$0-4+4-1]); +case 95:this.$ = $$[$0-4+2-1]; break; -case 96:this.$ = new ClassNode($$[$0-5+2-1], null, $$[$0-5+4-1]); +case 96:this.$ = new ClassNode($$[$0-2+2-1]); break; -case 97:this.$ = new ClassNode($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); +case 97:this.$ = new ClassNode($$[$0-4+2-1], $$[$0-4+4-1]); break; -case 98:this.$ = $$[$0-1+1-1]; +case 98:this.$ = new ClassNode($$[$0-5+2-1], null, $$[$0-5+4-1]); break; -case 99:this.$ = new AssignNode(new ValueNode($$[$0-3+1-1]), $$[$0-3+3-1], 'this'); +case 99:this.$ = new ClassNode($$[$0-7+2-1], $$[$0-7+4-1], $$[$0-7+6-1]); break; -case 100:this.$ = []; +case 100:this.$ = $$[$0-1+1-1]; break; -case 101:this.$ = [$$[$0-1+1-1]]; +case 101:this.$ = new AssignNode(new ValueNode($$[$0-3+1-1]), $$[$0-3+3-1], 'this'); break; -case 102:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); +case 102:this.$ = []; break; -case 103:this.$ = $$[$0-1+1-1]; +case 103:this.$ = [$$[$0-1+1-1]]; break; -case 104:this.$ = $$[$0-2+2-1].new_instance(); +case 104:this.$ = $$[$0-3+1-1].concat($$[$0-3+3-1]); break; case 105:this.$ = $$[$0-1+1-1]; break; -case 106:this.$ = new CurryNode($$[$0-3+1-1], $$[$0-3+3-1]); +case 106:this.$ = $$[$0-2+2-1].new_instance(); break; -case 107:this.$ = new ExtendsNode($$[$0-3+1-1], $$[$0-3+3-1]); +case 107:this.$ = $$[$0-1+1-1]; break; -case 108:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); +case 108:this.$ = new CurryNode($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 109:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); +case 109:this.$ = new ExtendsNode($$[$0-3+1-1], $$[$0-3+3-1]); break; -case 110:this.$ = $$[$0-3+2-1]; +case 110:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 111:this.$ = $$[$0-4+2-1]; +case 111:this.$ = new CallNode($$[$0-2+1-1], $$[$0-2+2-1]); break; -case 112:this.$ = new CallNode('super', $$[$0-4+3-1]); +case 112:this.$ = $$[$0-3+2-1]; break; -case 113:this.$ = new CallNode('super', $$[$0-5+3-1]); +case 113:this.$ = $$[$0-4+2-1]; break; -case 114:this.$ = new ValueNode(new LiteralNode('this')); +case 114:this.$ = new CallNode('super', $$[$0-4+3-1]); break; -case 115:this.$ = new ValueNode(new LiteralNode('this')); +case 115:this.$ = new CallNode('super', $$[$0-5+3-1]); break; -case 116:this.$ = new ValueNode(new LiteralNode('this'), [new AccessorNode($$[$0-2+2-1])]); +case 116:this.$ = new ValueNode(new LiteralNode('this')); break; -case 117:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); +case 117:this.$ = new ValueNode(new LiteralNode('this')); break; -case 118:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); +case 118:this.$ = new ValueNode(new LiteralNode('this'), [new AccessorNode($$[$0-2+2-1])]); break; case 119:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); break; case 120:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); break; -case 121:this.$ = new ArrayNode($$[$0-3+2-1]); +case 121:this.$ = new RangeNode($$[$0-6+2-1], $$[$0-6+5-1]); break; -case 122:this.$ = new ArrayNode($$[$0-4+2-1]); +case 122:this.$ = new RangeNode($$[$0-7+2-1], $$[$0-7+6-1], true); break; -case 123:this.$ = []; +case 123:this.$ = new ArrayNode($$[$0-3+2-1]); break; -case 124:this.$ = [$$[$0-1+1-1]]; +case 124:this.$ = new ArrayNode($$[$0-4+2-1]); break; -case 125:this.$ = [$$[$0-2+2-1]]; +case 125:this.$ = []; break; -case 126:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); +case 126:this.$ = [$$[$0-1+1-1]]; break; -case 127:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); +case 127:this.$ = [$$[$0-2+2-1]]; break; -case 128:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); +case 128:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); break; -case 129:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); +case 129:this.$ = $$[$0-3+1-1].concat([$$[$0-3+3-1]]); break; -case 130:this.$ = $$[$0-2+1-1]; +case 130:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); break; -case 131:this.$ = $$[$0-3+1-1]; +case 131:this.$ = $$[$0-4+1-1].concat([$$[$0-4+4-1]]); break; -case 132:this.$ = $$[$0-1+1-1]; +case 132:this.$ = $$[$0-2+1-1]; break; -case 133:this.$ = (function () { +case 133:this.$ = $$[$0-3+1-1]; +break; +case 134:this.$ = $$[$0-1+1-1]; +break; +case 135:this.$ = (function () { if ($$[$0-3+1-1] instanceof Array) { return $$[$0-3+1-1].concat([$$[$0-3+3-1]]); } else { @@ -281,202 +285,215 @@ case 133:this.$ = (function () { } }()); break; -case 134:this.$ = new TryNode($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); +case 136:this.$ = new TryNode($$[$0-3+2-1], $$[$0-3+3-1][0], $$[$0-3+3-1][1]); break; -case 135:this.$ = new TryNode($$[$0-4+2-1], null, null, $$[$0-4+4-1]); +case 137:this.$ = new TryNode($$[$0-4+2-1], null, null, $$[$0-4+4-1]); break; -case 136:this.$ = new TryNode($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); +case 138:this.$ = new TryNode($$[$0-5+2-1], $$[$0-5+3-1][0], $$[$0-5+3-1][1], $$[$0-5+5-1]); break; -case 137:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; +case 139:this.$ = [$$[$0-3+2-1], $$[$0-3+3-1]]; break; -case 138:this.$ = new ThrowNode($$[$0-2+2-1]); +case 140:this.$ = new ThrowNode($$[$0-2+2-1]); break; -case 139:this.$ = new ParentheticalNode($$[$0-3+2-1]); +case 141:this.$ = new ParentheticalNode($$[$0-3+2-1]); break; -case 140:this.$ = yytext; +case 142:this.$ = yytext; break; -case 141:this.$ = new WhileNode($$[$0-2+2-1]); +case 143:this.$ = new WhileNode($$[$0-2+2-1]); break; -case 142:this.$ = new WhileNode($$[$0-4+2-1], { +case 144:this.$ = new WhileNode($$[$0-4+2-1], { filter: $$[$0-4+4-1] }); break; -case 143:this.$ = $$[$0-2+1-1].add_body($$[$0-2+2-1]); +case 145:this.$ = $$[$0-2+1-1].add_body($$[$0-2+2-1]); +break; +case 146:this.$ = $$[$0-2+2-1].add_body(Expressions.wrap([$$[$0-2+1-1]])); break; -case 144:this.$ = $$[$0-2+2-1].add_body(Expressions.wrap([$$[$0-2+1-1]])); +case 147:this.$ = $$[$0-2+2-1].add_body(Expressions.wrap([$$[$0-2+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 148:this.$ = new ForNode($$[$0-4+1-1], $$[$0-4+4-1], $$[$0-4+3-1][0], $$[$0-4+3-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 149:this.$ = new ForNode($$[$0-4+1-1], $$[$0-4+4-1], $$[$0-4+3-1][0], $$[$0-4+3-1][1]); break; -case 147:this.$ = [$$[$0-1+1-1]]; +case 150:this.$ = new ForNode($$[$0-4+4-1], $$[$0-4+3-1], $$[$0-4+2-1][0], $$[$0-4+2-1][1]); break; -case 148:this.$ = [$$[$0-3+1-1], $$[$0-3+3-1]]; +case 151:this.$ = [$$[$0-1+1-1]]; break; -case 149:this.$ = { +case 152:this.$ = [$$[$0-3+1-1], $$[$0-3+3-1]]; +break; +case 153:this.$ = { source: $$[$0-2+2-1] }; break; -case 150:this.$ = { +case 154:this.$ = { source: $$[$0-2+2-1], object: true }; break; -case 151:this.$ = { +case 155:this.$ = { source: $$[$0-4+2-1], filter: $$[$0-4+4-1] }; break; -case 152:this.$ = { +case 156:this.$ = { source: $$[$0-4+2-1], filter: $$[$0-4+4-1], object: true }; break; -case 153:this.$ = { +case 157:this.$ = { source: $$[$0-4+2-1], step: $$[$0-4+4-1] }; break; -case 154:this.$ = { +case 158:this.$ = { source: $$[$0-6+2-1], filter: $$[$0-6+4-1], step: $$[$0-6+6-1] }; break; -case 155:this.$ = { +case 159:this.$ = { source: $$[$0-6+2-1], step: $$[$0-6+4-1], filter: $$[$0-6+6-1] }; break; -case 156:this.$ = $$[$0-5+4-1].rewrite_condition($$[$0-5+2-1]); +case 160:this.$ = $$[$0-5+4-1].rewrite_condition($$[$0-5+2-1]); break; -case 157:this.$ = $$[$0-7+4-1].rewrite_condition($$[$0-7+2-1]).add_else($$[$0-7+6-1], true); +case 161:this.$ = $$[$0-7+4-1].rewrite_condition($$[$0-7+2-1]).add_else($$[$0-7+6-1], true); break; -case 158:this.$ = $$[$0-1+1-1]; +case 162:this.$ = $$[$0-1+1-1]; break; -case 159:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); +case 163:this.$ = $$[$0-2+1-1].push($$[$0-2+2-1]); break; -case 160:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], null, { +case 164:this.$ = new IfNode($$[$0-3+2-1], $$[$0-3+3-1], null, { statement: true }); break; -case 161:this.$ = new IfNode($$[$0-4+2-1], $$[$0-4+3-1], null, { +case 165:this.$ = new IfNode($$[$0-4+2-1], $$[$0-4+3-1], null, { statement: true }); break; -case 162:this.$ = (function () { +case 166:this.$ = (function () { $$[$0-3+3-1].comment = $$[$0-3+1-1]; return $$[$0-3+3-1]; }()); 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 168:this.$ = $$[$0-2+1-1].add_else($$[$0-2+2-1]); break; -case 164:this.$ = $$[$0-2+1-1].add_else($$[$0-2+2-1]); +case 169:this.$ = $$[$0-1+1-1]; break; -case 165:this.$ = $$[$0-1+1-1]; +case 170:this.$ = $$[$0-3+1-1].add_else($$[$0-3+3-1]); break; -case 166:this.$ = $$[$0-3+1-1].add_else($$[$0-3+3-1]); +case 171:this.$ = (new IfNode($$[$0-4+3-1], $$[$0-4+4-1])).force_statement(); break; -case 167:this.$ = (new IfNode($$[$0-4+3-1], $$[$0-4+4-1])).force_statement(); +case 172:this.$ = $$[$0-1+1-1]; break; -case 168:this.$ = $$[$0-1+1-1]; +case 173:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), null, { + statement: true + }); break; -case 169:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), null, { +case 174:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), null, { statement: true }); break; -case 170:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), null, { +case 175:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), null, { + statement: true, + invert: true + }); +break; +case 176:this.$ = new IfNode($$[$0-3+3-1], Expressions.wrap([$$[$0-3+1-1]]), null, { statement: true, invert: true }); break; -case 171:this.$ = new OpNode('!', $$[$0-2+2-1]); +case 177:this.$ = new OpNode('!', $$[$0-2+2-1]); break; -case 172:this.$ = new OpNode('!!', $$[$0-2+2-1]); +case 178:this.$ = new OpNode('!!', $$[$0-2+2-1]); break; -case 173:this.$ = new OpNode('-', $$[$0-2+2-1]); +case 179:this.$ = new OpNode('-', $$[$0-2+2-1]); break; -case 174:this.$ = new OpNode('+', $$[$0-2+2-1]); +case 180:this.$ = new OpNode('+', $$[$0-2+2-1]); break; -case 175:this.$ = new OpNode('~', $$[$0-2+2-1]); +case 181:this.$ = new OpNode('~', $$[$0-2+2-1]); break; -case 176:this.$ = new OpNode('--', $$[$0-2+2-1]); +case 182:this.$ = new OpNode('--', $$[$0-2+2-1]); break; -case 177:this.$ = new OpNode('++', $$[$0-2+2-1]); +case 183:this.$ = new OpNode('++', $$[$0-2+2-1]); break; -case 178:this.$ = new OpNode('delete', $$[$0-2+2-1]); +case 184:this.$ = new OpNode('delete', $$[$0-2+2-1]); break; -case 179:this.$ = new OpNode('typeof', $$[$0-2+2-1]); +case 185:this.$ = new OpNode('typeof', $$[$0-2+2-1]); break; -case 180:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); +case 186:this.$ = new OpNode('--', $$[$0-2+1-1], null, true); break; -case 181:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); +case 187:this.$ = new OpNode('++', $$[$0-2+1-1], null, true); break; -case 182: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 183: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 184: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 185: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 186: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 187: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 188: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 189: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 190: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 191: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 192: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 193: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 194: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 195: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 196: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 197: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 198: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 199: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 200: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 201: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 202: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 203: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 204: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 205: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 206: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 207: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 208: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 209:this.$ = new OpNode('?=', $$[$0-3+1-1], $$[$0-3+3-1]); +case 215: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 216:this.$ = new OpNode('instanceof', $$[$0-3+1-1], $$[$0-3+3-1]); break; -case 211: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; } }, -table: [{"1":[2,1],"2":1,"3":[1,2],"4":3,"5":4,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,6],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[3]},{"1":[2,2],"24":86,"48":[1,55]},{"1":[2,3],"3":[1,87]},{"3":[1,88]},{"1":[2,5],"3":[2,5],"27":[2,5],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"4":126,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"27":[1,127],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,8],"3":[2,8],"26":[2,8],"27":[2,8],"49":[2,8],"57":[2,8],"59":[2,8],"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,8],"78":[1,139],"79":[2,8],"82":[2,8],"90":[1,128],"91":129,"92":[1,131],"94":[2,8],"99":[2,8],"107":[2,8],"110":[2,8],"111":[2,8],"112":[2,8],"115":[2,8],"117":[2,8],"124":[2,8],"127":[2,8],"130":[2,8],"131":[2,8],"133":[2,8],"134":[2,8],"137":[2,8],"138":[2,8],"139":[2,8],"140":[2,8],"141":[2,8],"142":[2,8],"143":[2,8],"144":[2,8],"145":[2,8],"146":[2,8],"147":[2,8],"148":[2,8],"149":[2,8],"150":[2,8],"151":[2,8],"152":[2,8],"153":[2,8],"154":[2,8],"155":[2,8],"156":[2,8],"157":[2,8],"158":[2,8],"159":[2,8],"160":[2,8],"161":[2,8],"162":[2,8]},{"1":[2,9],"3":[2,9],"26":[2,9],"27":[2,9],"49":[2,9],"57":[2,9],"59":[2,9],"77":[2,9],"79":[2,9],"82":[2,9],"94":[2,9],"99":[2,9],"107":[2,9],"110":[2,9],"111":[2,9],"112":[2,9],"115":[2,9],"117":[2,9],"124":[2,9],"127":[2,9],"130":[2,9],"131":[2,9],"133":[2,9],"134":[2,9],"137":[2,9],"138":[2,9],"139":[2,9],"140":[2,9],"141":[2,9],"142":[2,9],"143":[2,9],"144":[2,9],"145":[2,9],"146":[2,9],"147":[2,9],"148":[2,9],"149":[2,9],"150":[2,9],"151":[2,9],"152":[2,9],"153":[2,9],"154":[2,9],"155":[2,9],"156":[2,9],"157":[2,9],"158":[2,9],"159":[2,9],"160":[2,9],"161":[2,9],"162":[2,9]},{"1":[2,10],"3":[2,10],"26":[2,10],"27":[2,10],"49":[2,10],"57":[2,10],"59":[2,10],"77":[2,10],"79":[2,10],"82":[2,10],"94":[2,10],"99":[2,10],"107":[2,10],"110":[2,10],"111":[2,10],"112":[2,10],"115":[2,10],"117":[2,10],"124":[2,10],"127":[2,10],"130":[2,10],"131":[2,10],"133":[2,10],"134":[2,10],"137":[2,10],"138":[2,10],"139":[2,10],"140":[2,10],"141":[2,10],"142":[2,10],"143":[2,10],"144":[2,10],"145":[2,10],"146":[2,10],"147":[2,10],"148":[2,10],"149":[2,10],"150":[2,10],"151":[2,10],"152":[2,10],"153":[2,10],"154":[2,10],"155":[2,10],"156":[2,10],"157":[2,10],"158":[2,10],"159":[2,10],"160":[2,10],"161":[2,10],"162":[2,10]},{"1":[2,11],"3":[2,11],"26":[2,11],"27":[2,11],"49":[2,11],"57":[2,11],"59":[2,11],"77":[2,11],"79":[2,11],"82":[2,11],"94":[2,11],"99":[2,11],"107":[2,11],"110":[2,11],"111":[2,11],"112":[2,11],"115":[2,11],"117":[2,11],"124":[2,11],"127":[2,11],"130":[2,11],"131":[2,11],"133":[2,11],"134":[2,11],"137":[2,11],"138":[2,11],"139":[2,11],"140":[2,11],"141":[2,11],"142":[2,11],"143":[2,11],"144":[2,11],"145":[2,11],"146":[2,11],"147":[2,11],"148":[2,11],"149":[2,11],"150":[2,11],"151":[2,11],"152":[2,11],"153":[2,11],"154":[2,11],"155":[2,11],"156":[2,11],"157":[2,11],"158":[2,11],"159":[2,11],"160":[2,11],"161":[2,11],"162":[2,11]},{"1":[2,12],"3":[2,12],"26":[2,12],"27":[2,12],"49":[2,12],"57":[2,12],"59":[2,12],"77":[2,12],"79":[2,12],"82":[2,12],"94":[2,12],"99":[2,12],"107":[2,12],"110":[2,12],"111":[2,12],"112":[2,12],"115":[2,12],"117":[2,12],"124":[2,12],"127":[2,12],"130":[2,12],"131":[2,12],"133":[2,12],"134":[2,12],"137":[2,12],"138":[2,12],"139":[2,12],"140":[2,12],"141":[2,12],"142":[2,12],"143":[2,12],"144":[2,12],"145":[2,12],"146":[2,12],"147":[2,12],"148":[2,12],"149":[2,12],"150":[2,12],"151":[2,12],"152":[2,12],"153":[2,12],"154":[2,12],"155":[2,12],"156":[2,12],"157":[2,12],"158":[2,12],"159":[2,12],"160":[2,12],"161":[2,12],"162":[2,12]},{"1":[2,13],"3":[2,13],"26":[2,13],"27":[2,13],"49":[2,13],"57":[2,13],"59":[2,13],"77":[2,13],"79":[2,13],"82":[2,13],"94":[2,13],"99":[2,13],"107":[2,13],"110":[2,13],"111":[2,13],"112":[2,13],"115":[2,13],"117":[2,13],"124":[2,13],"127":[2,13],"130":[2,13],"131":[2,13],"133":[2,13],"134":[2,13],"137":[2,13],"138":[2,13],"139":[2,13],"140":[2,13],"141":[2,13],"142":[2,13],"143":[2,13],"144":[2,13],"145":[2,13],"146":[2,13],"147":[2,13],"148":[2,13],"149":[2,13],"150":[2,13],"151":[2,13],"152":[2,13],"153":[2,13],"154":[2,13],"155":[2,13],"156":[2,13],"157":[2,13],"158":[2,13],"159":[2,13],"160":[2,13],"161":[2,13],"162":[2,13]},{"1":[2,14],"3":[2,14],"26":[2,14],"27":[2,14],"49":[2,14],"57":[2,14],"59":[2,14],"77":[2,14],"79":[2,14],"82":[2,14],"94":[2,14],"99":[2,14],"107":[2,14],"110":[2,14],"111":[2,14],"112":[2,14],"115":[2,14],"117":[2,14],"124":[2,14],"127":[2,14],"130":[2,14],"131":[2,14],"133":[2,14],"134":[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],"162":[2,14]},{"1":[2,15],"3":[2,15],"26":[2,15],"27":[2,15],"49":[2,15],"57":[2,15],"59":[2,15],"77":[2,15],"79":[2,15],"82":[2,15],"94":[2,15],"99":[2,15],"107":[2,15],"110":[2,15],"111":[2,15],"112":[2,15],"115":[2,15],"117":[2,15],"124":[2,15],"127":[2,15],"130":[2,15],"131":[2,15],"133":[2,15],"134":[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],"162":[2,15]},{"1":[2,16],"3":[2,16],"26":[2,16],"27":[2,16],"49":[2,16],"57":[2,16],"59":[2,16],"77":[2,16],"79":[2,16],"82":[2,16],"94":[2,16],"99":[2,16],"107":[2,16],"110":[2,16],"111":[2,16],"112":[2,16],"115":[2,16],"117":[2,16],"124":[2,16],"127":[2,16],"130":[2,16],"131":[2,16],"133":[2,16],"134":[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],"162":[2,16]},{"1":[2,17],"3":[2,17],"26":[2,17],"27":[2,17],"49":[2,17],"57":[2,17],"59":[2,17],"77":[2,17],"79":[2,17],"82":[2,17],"94":[2,17],"99":[2,17],"107":[2,17],"110":[2,17],"111":[2,17],"112":[2,17],"115":[2,17],"117":[2,17],"124":[2,17],"127":[2,17],"130":[2,17],"131":[2,17],"133":[2,17],"134":[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],"162":[2,17]},{"1":[2,18],"3":[2,18],"26":[2,18],"27":[2,18],"49":[2,18],"57":[2,18],"59":[2,18],"77":[2,18],"79":[2,18],"82":[2,18],"94":[2,18],"99":[2,18],"107":[2,18],"110":[2,18],"111":[2,18],"112":[2,18],"115":[2,18],"117":[2,18],"124":[2,18],"127":[2,18],"130":[2,18],"131":[2,18],"133":[2,18],"134":[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],"162":[2,18]},{"1":[2,19],"3":[2,19],"26":[2,19],"27":[2,19],"49":[2,19],"57":[2,19],"59":[2,19],"77":[2,19],"79":[2,19],"82":[2,19],"94":[2,19],"99":[2,19],"107":[2,19],"110":[2,19],"111":[2,19],"112":[2,19],"115":[2,19],"117":[2,19],"124":[2,19],"127":[2,19],"130":[2,19],"131":[2,19],"133":[2,19],"134":[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],"162":[2,19]},{"1":[2,20],"3":[2,20],"26":[2,20],"27":[2,20],"49":[2,20],"57":[2,20],"59":[2,20],"77":[2,20],"79":[2,20],"82":[2,20],"94":[2,20],"99":[2,20],"107":[2,20],"110":[2,20],"111":[2,20],"112":[2,20],"115":[2,20],"117":[2,20],"124":[2,20],"127":[2,20],"130":[2,20],"131":[2,20],"133":[2,20],"134":[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],"162":[2,20]},{"1":[2,21],"3":[2,21],"26":[2,21],"27":[2,21],"49":[2,21],"57":[2,21],"59":[2,21],"77":[2,21],"79":[2,21],"82":[2,21],"94":[2,21],"99":[2,21],"107":[2,21],"110":[2,21],"111":[2,21],"112":[2,21],"115":[2,21],"117":[2,21],"124":[2,21],"127":[2,21],"130":[2,21],"131":[2,21],"133":[2,21],"134":[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],"162":[2,21]},{"1":[2,22],"3":[2,22],"26":[2,22],"27":[2,22],"49":[2,22],"57":[2,22],"59":[2,22],"77":[2,22],"79":[2,22],"82":[2,22],"94":[2,22],"99":[2,22],"107":[2,22],"110":[2,22],"111":[2,22],"112":[2,22],"115":[2,22],"117":[2,22],"124":[2,22],"127":[2,22],"130":[2,22],"131":[2,22],"133":[2,22],"134":[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],"162":[2,22]},{"1":[2,23],"3":[2,23],"26":[2,23],"27":[2,23],"49":[2,23],"57":[2,23],"59":[2,23],"77":[2,23],"79":[2,23],"82":[2,23],"94":[2,23],"99":[2,23],"107":[2,23],"110":[2,23],"111":[2,23],"112":[2,23],"115":[2,23],"117":[2,23],"124":[2,23],"127":[2,23],"130":[2,23],"131":[2,23],"133":[2,23],"134":[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],"162":[2,23]},{"1":[2,24],"3":[2,24],"26":[2,24],"27":[2,24],"49":[2,24],"57":[2,24],"59":[2,24],"77":[2,24],"79":[2,24],"82":[2,24],"94":[2,24],"99":[2,24],"107":[2,24],"110":[2,24],"111":[2,24],"112":[2,24],"115":[2,24],"117":[2,24],"124":[2,24],"127":[2,24],"130":[2,24],"131":[2,24],"133":[2,24],"134":[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],"162":[2,24]},{"1":[2,25],"3":[2,25],"26":[2,25],"27":[2,25],"49":[2,25],"57":[2,25],"59":[2,25],"77":[2,25],"79":[2,25],"82":[2,25],"94":[2,25],"99":[2,25],"107":[2,25],"110":[2,25],"111":[2,25],"112":[2,25],"115":[2,25],"117":[2,25],"124":[2,25],"127":[2,25],"130":[2,25],"131":[2,25],"133":[2,25],"134":[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],"162":[2,25]},{"1":[2,26],"3":[2,26],"26":[2,26],"27":[2,26],"49":[2,26],"57":[2,26],"59":[2,26],"77":[2,26],"79":[2,26],"82":[2,26],"94":[2,26],"99":[2,26],"107":[2,26],"110":[2,26],"111":[2,26],"112":[2,26],"115":[2,26],"117":[2,26],"124":[2,26],"127":[2,26],"130":[2,26],"131":[2,26],"133":[2,26],"134":[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],"162":[2,26]},{"1":[2,69],"3":[2,69],"26":[2,69],"27":[2,69],"45":[1,140],"49":[2,69],"57":[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],"94":[2,69],"99":[2,69],"107":[2,69],"110":[2,69],"111":[2,69],"112":[2,69],"115":[2,69],"117":[2,69],"124":[2,69],"127":[2,69],"130":[2,69],"131":[2,69],"133":[2,69],"134":[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],"162":[2,69]},{"1":[2,70],"3":[2,70],"26":[2,70],"27":[2,70],"49":[2,70],"57":[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],"94":[2,70],"99":[2,70],"107":[2,70],"110":[2,70],"111":[2,70],"112":[2,70],"115":[2,70],"117":[2,70],"124":[2,70],"127":[2,70],"130":[2,70],"131":[2,70],"133":[2,70],"134":[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],"162":[2,70]},{"1":[2,71],"3":[2,71],"26":[2,71],"27":[2,71],"49":[2,71],"57":[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],"94":[2,71],"99":[2,71],"107":[2,71],"110":[2,71],"111":[2,71],"112":[2,71],"115":[2,71],"117":[2,71],"124":[2,71],"127":[2,71],"130":[2,71],"131":[2,71],"133":[2,71],"134":[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],"162":[2,71]},{"1":[2,72],"3":[2,72],"26":[2,72],"27":[2,72],"49":[2,72],"57":[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],"94":[2,72],"99":[2,72],"107":[2,72],"110":[2,72],"111":[2,72],"112":[2,72],"115":[2,72],"117":[2,72],"124":[2,72],"127":[2,72],"130":[2,72],"131":[2,72],"133":[2,72],"134":[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],"162":[2,72]},{"1":[2,73],"3":[2,73],"26":[2,73],"27":[2,73],"49":[2,73],"57":[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],"94":[2,73],"99":[2,73],"107":[2,73],"110":[2,73],"111":[2,73],"112":[2,73],"115":[2,73],"117":[2,73],"124":[2,73],"127":[2,73],"130":[2,73],"131":[2,73],"133":[2,73],"134":[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],"162":[2,73]},{"1":[2,74],"3":[2,74],"26":[2,74],"27":[2,74],"49":[2,74],"57":[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],"94":[2,74],"99":[2,74],"107":[2,74],"110":[2,74],"111":[2,74],"112":[2,74],"115":[2,74],"117":[2,74],"124":[2,74],"127":[2,74],"130":[2,74],"131":[2,74],"133":[2,74],"134":[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],"162":[2,74]},{"1":[2,103],"3":[2,103],"26":[2,103],"27":[2,103],"49":[2,103],"57":[2,103],"59":[2,103],"61":142,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,103],"78":[1,139],"79":[2,103],"82":[2,103],"91":141,"92":[1,131],"94":[2,103],"99":[2,103],"107":[2,103],"110":[2,103],"111":[2,103],"112":[2,103],"115":[2,103],"117":[2,103],"124":[2,103],"127":[2,103],"130":[2,103],"131":[2,103],"133":[2,103],"134":[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],"162":[2,103]},{"7":144,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":146,"62":143,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,105],"3":[2,105],"26":[2,105],"27":[2,105],"49":[2,105],"57":[2,105],"59":[2,105],"77":[2,105],"79":[2,105],"82":[2,105],"94":[2,105],"99":[2,105],"107":[2,105],"110":[2,105],"111":[2,105],"112":[2,105],"115":[2,105],"117":[2,105],"124":[2,105],"127":[2,105],"130":[2,105],"131":[2,105],"133":[2,105],"134":[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],"162":[2,105]},{"51":147,"52":[2,56],"56":148,"57":[2,56],"58":[1,149]},{"3":[1,151],"5":150,"26":[1,6]},{"6":152,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":153,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":154,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":155,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":156,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":157,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":158,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":159,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":160,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,168],"3":[2,168],"26":[2,168],"27":[2,168],"49":[2,168],"57":[2,168],"59":[2,168],"77":[2,168],"79":[2,168],"82":[2,168],"94":[2,168],"99":[2,168],"107":[2,168],"110":[2,168],"111":[2,168],"112":[2,168],"115":[2,168],"117":[2,168],"124":[2,168],"127":[2,168],"130":[2,168],"131":[2,168],"133":[2,168],"134":[2,168],"137":[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]},{"3":[1,151],"5":161,"26":[1,6]},{"6":162,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,49],"3":[2,49],"6":163,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[2,49],"27":[2,49],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,49],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,49],"59":[2,49],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"77":[2,49],"79":[2,49],"80":[1,81],"82":[2,49],"84":[1,54],"88":[1,33],"89":34,"94":[2,49],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,49],"101":[1,47],"105":[1,48],"106":[1,70],"107":[2,49],"108":[1,56],"109":50,"110":[2,49],"111":[2,49],"112":[1,51],"115":[2,49],"117":[2,49],"118":[1,52],"123":77,"124":[2,49],"126":46,"127":[2,49],"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45],"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],"162":[2,49]},{"3":[1,151],"5":164,"26":[1,6]},{"28":166,"29":[1,85],"113":165},{"6":167,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,66],"3":[2,66],"26":[2,66],"27":[2,66],"45":[2,66],"49":[2,66],"57":[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],"85":[1,168],"90":[2,66],"92":[2,66],"94":[2,66],"99":[2,66],"107":[2,66],"110":[2,66],"111":[2,66],"112":[2,66],"115":[2,66],"117":[2,66],"124":[2,66],"127":[2,66],"130":[2,66],"131":[2,66],"133":[2,66],"134":[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],"162":[2,66]},{"7":144,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":169,"62":170,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,50],"3":[2,50],"26":[2,50],"27":[2,50],"48":[2,50],"49":[2,50],"57":[2,50],"59":[2,50],"77":[2,50],"79":[2,50],"82":[2,50],"94":[2,50],"99":[2,50],"103":[2,50],"104":[2,50],"107":[2,50],"110":[2,50],"111":[2,50],"112":[2,50],"115":[2,50],"117":[2,50],"120":[2,50],"122":[2,50],"124":[2,50],"127":[2,50],"130":[2,50],"131":[2,50],"133":[2,50],"134":[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],"162":[2,50]},{"1":[2,140],"3":[2,140],"26":[2,140],"27":[2,140],"49":[2,140],"57":[2,140],"59":[2,140],"77":[2,140],"79":[2,140],"82":[2,140],"94":[2,140],"99":[2,140],"107":[2,140],"110":[2,140],"111":[2,140],"112":[2,140],"115":[2,140],"117":[2,140],"124":[2,140],"127":[2,140],"130":[2,140],"131":[2,140],"133":[2,140],"134":[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],"162":[2,140]},{"1":[2,67],"3":[2,67],"26":[2,67],"27":[2,67],"45":[2,67],"49":[2,67],"57":[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],"94":[2,67],"99":[2,67],"107":[2,67],"110":[2,67],"111":[2,67],"112":[2,67],"115":[2,67],"117":[2,67],"124":[2,67],"127":[2,67],"130":[2,67],"131":[2,67],"133":[2,67],"134":[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],"162":[2,67]},{"1":[2,68],"3":[2,68],"26":[2,68],"27":[2,68],"45":[2,68],"49":[2,68],"57":[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],"94":[2,68],"99":[2,68],"107":[2,68],"110":[2,68],"111":[2,68],"112":[2,68],"115":[2,68],"117":[2,68],"124":[2,68],"127":[2,68],"130":[2,68],"131":[2,68],"133":[2,68],"134":[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],"162":[2,68]},{"1":[2,33],"3":[2,33],"26":[2,33],"27":[2,33],"49":[2,33],"57":[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],"94":[2,33],"99":[2,33],"107":[2,33],"110":[2,33],"111":[2,33],"112":[2,33],"115":[2,33],"117":[2,33],"124":[2,33],"127":[2,33],"130":[2,33],"131":[2,33],"133":[2,33],"134":[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],"162":[2,33]},{"1":[2,34],"3":[2,34],"26":[2,34],"27":[2,34],"49":[2,34],"57":[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],"94":[2,34],"99":[2,34],"107":[2,34],"110":[2,34],"111":[2,34],"112":[2,34],"115":[2,34],"117":[2,34],"124":[2,34],"127":[2,34],"130":[2,34],"131":[2,34],"133":[2,34],"134":[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],"162":[2,34]},{"1":[2,35],"3":[2,35],"26":[2,35],"27":[2,35],"49":[2,35],"57":[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],"94":[2,35],"99":[2,35],"107":[2,35],"110":[2,35],"111":[2,35],"112":[2,35],"115":[2,35],"117":[2,35],"124":[2,35],"127":[2,35],"130":[2,35],"131":[2,35],"133":[2,35],"134":[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],"162":[2,35]},{"1":[2,36],"3":[2,36],"26":[2,36],"27":[2,36],"49":[2,36],"57":[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],"94":[2,36],"99":[2,36],"107":[2,36],"110":[2,36],"111":[2,36],"112":[2,36],"115":[2,36],"117":[2,36],"124":[2,36],"127":[2,36],"130":[2,36],"131":[2,36],"133":[2,36],"134":[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],"162":[2,36]},{"1":[2,37],"3":[2,37],"26":[2,37],"27":[2,37],"49":[2,37],"57":[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],"94":[2,37],"99":[2,37],"107":[2,37],"110":[2,37],"111":[2,37],"112":[2,37],"115":[2,37],"117":[2,37],"124":[2,37],"127":[2,37],"130":[2,37],"131":[2,37],"133":[2,37],"134":[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],"162":[2,37]},{"1":[2,38],"3":[2,38],"26":[2,38],"27":[2,38],"49":[2,38],"57":[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],"94":[2,38],"99":[2,38],"107":[2,38],"110":[2,38],"111":[2,38],"112":[2,38],"115":[2,38],"117":[2,38],"124":[2,38],"127":[2,38],"130":[2,38],"131":[2,38],"133":[2,38],"134":[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],"162":[2,38]},{"1":[2,39],"3":[2,39],"26":[2,39],"27":[2,39],"49":[2,39],"57":[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],"94":[2,39],"99":[2,39],"107":[2,39],"110":[2,39],"111":[2,39],"112":[2,39],"115":[2,39],"117":[2,39],"124":[2,39],"127":[2,39],"130":[2,39],"131":[2,39],"133":[2,39],"134":[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],"162":[2,39]},{"1":[2,40],"3":[2,40],"26":[2,40],"27":[2,40],"49":[2,40],"57":[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],"94":[2,40],"99":[2,40],"107":[2,40],"110":[2,40],"111":[2,40],"112":[2,40],"115":[2,40],"117":[2,40],"124":[2,40],"127":[2,40],"130":[2,40],"131":[2,40],"133":[2,40],"134":[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],"162":[2,40]},{"1":[2,41],"3":[2,41],"26":[2,41],"27":[2,41],"49":[2,41],"57":[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],"94":[2,41],"99":[2,41],"107":[2,41],"110":[2,41],"111":[2,41],"112":[2,41],"115":[2,41],"117":[2,41],"124":[2,41],"127":[2,41],"130":[2,41],"131":[2,41],"133":[2,41],"134":[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],"162":[2,41]},{"1":[2,42],"3":[2,42],"26":[2,42],"27":[2,42],"49":[2,42],"57":[2,42],"59":[2,42],"70":[2,42],"71":[2,42],"72":[2,42],"73":[2,42],"76":[2,42],"77":[2,42],"78":[2,42],"79":[2,42],"82":[2,42],"90":[2,42],"92":[2,42],"94":[2,42],"99":[2,42],"107":[2,42],"110":[2,42],"111":[2,42],"112":[2,42],"115":[2,42],"117":[2,42],"124":[2,42],"127":[2,42],"130":[2,42],"131":[2,42],"133":[2,42],"134":[2,42],"137":[2,42],"138":[2,42],"139":[2,42],"140":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"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]},{"1":[2,43],"3":[2,43],"26":[2,43],"27":[2,43],"49":[2,43],"57":[2,43],"59":[2,43],"70":[2,43],"71":[2,43],"72":[2,43],"73":[2,43],"76":[2,43],"77":[2,43],"78":[2,43],"79":[2,43],"82":[2,43],"90":[2,43],"92":[2,43],"94":[2,43],"99":[2,43],"107":[2,43],"110":[2,43],"111":[2,43],"112":[2,43],"115":[2,43],"117":[2,43],"124":[2,43],"127":[2,43],"130":[2,43],"131":[2,43],"133":[2,43],"134":[2,43],"137":[2,43],"138":[2,43],"139":[2,43],"140":[2,43],"141":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43],"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]},{"6":171,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[2,123],"6":172,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,174],"27":[2,123],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,123],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"93":173,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,123],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,114],"3":[2,114],"26":[2,114],"27":[2,114],"49":[2,114],"57":[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],"94":[2,114],"99":[2,114],"107":[2,114],"110":[2,114],"111":[2,114],"112":[2,114],"115":[2,114],"117":[2,114],"124":[2,114],"127":[2,114],"130":[2,114],"131":[2,114],"133":[2,114],"134":[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],"162":[2,114]},{"1":[2,115],"3":[2,115],"26":[2,115],"27":[2,115],"28":175,"29":[1,85],"49":[2,115],"57":[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],"94":[2,115],"99":[2,115],"107":[2,115],"110":[2,115],"111":[2,115],"112":[2,115],"115":[2,115],"117":[2,115],"124":[2,115],"127":[2,115],"130":[2,115],"131":[2,115],"133":[2,115],"134":[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],"162":[2,115]},{"92":[1,176]},{"3":[2,54],"26":[2,54]},{"3":[2,55],"26":[2,55]},{"1":[2,165],"3":[2,165],"26":[2,165],"27":[2,165],"49":[2,165],"57":[2,165],"59":[2,165],"77":[2,165],"79":[2,165],"82":[2,165],"94":[2,165],"99":[2,165],"107":[2,165],"110":[2,165],"111":[2,165],"112":[2,165],"115":[2,165],"117":[2,165],"120":[1,177],"124":[2,165],"125":178,"127":[2,165],"130":[2,165],"131":[2,165],"133":[2,165],"134":[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],"162":[2,165]},{"6":179,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,62],"3":[2,62],"26":[2,62],"27":[2,62],"45":[2,62],"49":[2,62],"57":[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],"85":[2,62],"90":[2,62],"92":[2,62],"94":[2,62],"99":[2,62],"107":[2,62],"110":[2,62],"111":[2,62],"112":[2,62],"115":[2,62],"117":[2,62],"124":[2,62],"127":[2,62],"130":[2,62],"131":[2,62],"133":[2,62],"134":[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],"162":[2,62]},{"1":[2,65],"3":[2,65],"26":[2,65],"27":[2,65],"45":[2,65],"49":[2,65],"57":[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],"85":[2,65],"90":[2,65],"92":[2,65],"94":[2,65],"99":[2,65],"107":[2,65],"110":[2,65],"111":[2,65],"112":[2,65],"115":[2,65],"117":[2,65],"124":[2,65],"127":[2,65],"130":[2,65],"131":[2,65],"133":[2,65],"134":[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],"162":[2,65]},{"3":[2,87],"24":186,"26":[1,183],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":182,"48":[1,55],"57":[2,87],"81":180,"82":[2,87],"83":181},{"1":[2,31],"3":[2,31],"26":[2,31],"27":[2,31],"45":[2,31],"49":[2,31],"57":[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],"94":[2,31],"99":[2,31],"107":[2,31],"110":[2,31],"111":[2,31],"112":[2,31],"115":[2,31],"117":[2,31],"124":[2,31],"127":[2,31],"130":[2,31],"131":[2,31],"133":[2,31],"134":[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],"162":[2,31]},{"1":[2,32],"3":[2,32],"26":[2,32],"27":[2,32],"45":[2,32],"49":[2,32],"57":[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],"94":[2,32],"99":[2,32],"107":[2,32],"110":[2,32],"111":[2,32],"112":[2,32],"115":[2,32],"117":[2,32],"124":[2,32],"127":[2,32],"130":[2,32],"131":[2,32],"133":[2,32],"134":[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],"162":[2,32]},{"6":187,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,30],"3":[2,30],"26":[2,30],"27":[2,30],"45":[2,30],"49":[2,30],"57":[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],"85":[2,30],"90":[2,30],"92":[2,30],"94":[2,30],"99":[2,30],"107":[2,30],"110":[2,30],"111":[2,30],"112":[2,30],"115":[2,30],"116":[2,30],"117":[2,30],"124":[2,30],"127":[2,30],"130":[2,30],"131":[2,30],"133":[2,30],"134":[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],"162":[2,30]},{"1":[2,29],"3":[2,29],"26":[2,29],"27":[2,29],"48":[2,29],"49":[2,29],"57":[2,29],"59":[2,29],"77":[2,29],"79":[2,29],"82":[2,29],"94":[2,29],"99":[2,29],"103":[2,29],"104":[2,29],"107":[2,29],"110":[2,29],"111":[2,29],"112":[2,29],"115":[2,29],"117":[2,29],"120":[2,29],"122":[2,29],"124":[2,29],"127":[2,29],"130":[2,29],"131":[2,29],"133":[2,29],"134":[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],"162":[2,29]},{"1":[2,7],"3":[2,7],"6":188,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"27":[2,7],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,4]},{"1":[2,180],"3":[2,180],"26":[2,180],"27":[2,180],"49":[2,180],"57":[2,180],"59":[2,180],"77":[2,180],"79":[2,180],"82":[2,180],"94":[2,180],"99":[2,180],"107":[2,180],"110":[2,180],"111":[2,180],"112":[2,180],"115":[2,180],"117":[2,180],"124":[2,180],"127":[2,180],"130":[2,180],"131":[2,180],"133":[2,180],"134":[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],"162":[2,180]},{"1":[2,181],"3":[2,181],"26":[2,181],"27":[2,181],"49":[2,181],"57":[2,181],"59":[2,181],"77":[2,181],"79":[2,181],"82":[2,181],"94":[2,181],"99":[2,181],"107":[2,181],"110":[2,181],"111":[2,181],"112":[2,181],"115":[2,181],"117":[2,181],"124":[2,181],"127":[2,181],"130":[2,181],"131":[2,181],"133":[2,181],"134":[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],"162":[2,181]},{"6":189,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":190,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":191,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":192,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":193,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":194,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":195,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":196,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":197,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":198,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":199,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":200,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":201,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":202,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":203,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":204,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":205,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":206,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":207,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,51],"3":[2,51],"6":208,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[2,51],"27":[2,51],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,51],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,51],"59":[2,51],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"77":[2,51],"79":[2,51],"80":[1,81],"82":[2,51],"84":[1,54],"88":[1,33],"89":34,"94":[2,51],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,51],"101":[1,47],"105":[1,48],"106":[1,70],"107":[2,51],"108":[1,56],"109":50,"110":[2,51],"111":[2,51],"112":[2,51],"115":[2,51],"117":[2,51],"118":[1,52],"123":77,"124":[2,51],"126":46,"127":[2,51],"128":[1,37],"129":[1,38],"130":[2,51],"131":[2,51],"132":[1,41],"133":[2,51],"134":[2,51],"135":[1,44],"136":[1,45],"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],"162":[2,51]},{"6":209,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":210,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":211,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":212,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":213,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":214,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":215,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":216,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":217,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":218,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":219,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":220,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,144],"3":[2,144],"26":[2,144],"27":[2,144],"49":[2,144],"57":[2,144],"59":[2,144],"77":[2,144],"79":[2,144],"82":[2,144],"94":[2,144],"99":[2,144],"107":[2,144],"110":[2,144],"111":[2,144],"112":[2,144],"115":[2,144],"117":[2,144],"124":[2,144],"127":[2,144],"130":[2,144],"131":[2,144],"133":[2,144],"134":[2,144],"137":[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]},{"28":166,"29":[1,85],"113":221},{"59":[1,222]},{"3":[1,87],"27":[1,223]},{"1":[2,28],"3":[2,28],"26":[2,28],"27":[2,28],"48":[2,28],"49":[2,28],"57":[2,28],"59":[2,28],"77":[2,28],"79":[2,28],"82":[2,28],"94":[2,28],"99":[2,28],"103":[2,28],"104":[2,28],"107":[2,28],"110":[2,28],"111":[2,28],"112":[2,28],"115":[2,28],"117":[2,28],"120":[2,28],"122":[2,28],"124":[2,28],"127":[2,28],"130":[2,28],"131":[2,28],"133":[2,28],"134":[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],"162":[2,28]},{"91":224,"92":[1,131]},{"1":[2,108],"3":[2,108],"26":[2,108],"27":[2,108],"49":[2,108],"57":[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],"92":[2,108],"94":[2,108],"99":[2,108],"107":[2,108],"110":[2,108],"111":[2,108],"112":[2,108],"115":[2,108],"117":[2,108],"124":[2,108],"127":[2,108],"130":[2,108],"131":[2,108],"133":[2,108],"134":[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],"162":[2,108]},{"1":[2,63],"3":[2,63],"26":[2,63],"27":[2,63],"45":[2,63],"49":[2,63],"57":[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],"85":[2,63],"90":[2,63],"92":[2,63],"94":[2,63],"99":[2,63],"107":[2,63],"110":[2,63],"111":[2,63],"112":[2,63],"115":[2,63],"117":[2,63],"124":[2,63],"127":[2,63],"130":[2,63],"131":[2,63],"133":[2,63],"134":[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],"162":[2,63]},{"3":[2,123],"6":226,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,174],"27":[2,123],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,123],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"93":225,"94":[2,123],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"28":227,"29":[1,85]},{"28":228,"29":[1,85]},{"1":[2,77],"3":[2,77],"26":[2,77],"27":[2,77],"45":[2,77],"49":[2,77],"57":[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],"85":[2,77],"90":[2,77],"92":[2,77],"94":[2,77],"99":[2,77],"107":[2,77],"110":[2,77],"111":[2,77],"112":[2,77],"115":[2,77],"117":[2,77],"124":[2,77],"127":[2,77],"130":[2,77],"131":[2,77],"133":[2,77],"134":[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],"162":[2,77]},{"28":229,"29":[1,85]},{"1":[2,79],"3":[2,79],"26":[2,79],"27":[2,79],"45":[2,79],"49":[2,79],"57":[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],"85":[2,79],"90":[2,79],"92":[2,79],"94":[2,79],"99":[2,79],"107":[2,79],"110":[2,79],"111":[2,79],"112":[2,79],"115":[2,79],"117":[2,79],"124":[2,79],"127":[2,79],"130":[2,79],"131":[2,79],"133":[2,79],"134":[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],"162":[2,79]},{"1":[2,80],"3":[2,80],"26":[2,80],"27":[2,80],"45":[2,80],"49":[2,80],"57":[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],"85":[2,80],"90":[2,80],"92":[2,80],"94":[2,80],"99":[2,80],"107":[2,80],"110":[2,80],"111":[2,80],"112":[2,80],"115":[2,80],"117":[2,80],"124":[2,80],"127":[2,80],"130":[2,80],"131":[2,80],"133":[2,80],"134":[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],"162":[2,80]},{"6":230,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":231,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":232,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,109],"3":[2,109],"26":[2,109],"27":[2,109],"49":[2,109],"57":[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],"92":[2,109],"94":[2,109],"99":[2,109],"107":[2,109],"110":[2,109],"111":[2,109],"112":[2,109],"115":[2,109],"117":[2,109],"124":[2,109],"127":[2,109],"130":[2,109],"131":[2,109],"133":[2,109],"134":[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],"162":[2,109]},{"1":[2,64],"3":[2,64],"26":[2,64],"27":[2,64],"45":[2,64],"49":[2,64],"57":[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],"85":[2,64],"90":[2,64],"92":[2,64],"94":[2,64],"99":[2,64],"107":[2,64],"110":[2,64],"111":[2,64],"112":[2,64],"115":[2,64],"117":[2,64],"124":[2,64],"127":[2,64],"130":[2,64],"131":[2,64],"133":[2,64],"134":[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],"162":[2,64]},{"1":[2,104],"3":[2,104],"26":[2,104],"27":[2,104],"49":[2,104],"57":[2,104],"59":[2,104],"61":142,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,104],"78":[1,139],"79":[2,104],"82":[2,104],"91":141,"92":[1,131],"94":[2,104],"99":[2,104],"107":[2,104],"110":[2,104],"111":[2,104],"112":[2,104],"115":[2,104],"117":[2,104],"124":[2,104],"127":[2,104],"130":[2,104],"131":[2,104],"133":[2,104],"134":[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],"162":[2,104]},{"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"78":[1,139],"91":129,"92":[1,131]},{"1":[2,69],"3":[2,69],"26":[2,69],"27":[2,69],"49":[2,69],"57":[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],"92":[2,69],"94":[2,69],"99":[2,69],"107":[2,69],"110":[2,69],"111":[2,69],"112":[2,69],"115":[2,69],"117":[2,69],"124":[2,69],"127":[2,69],"130":[2,69],"131":[2,69],"133":[2,69],"134":[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],"162":[2,69]},{"1":[2,66],"3":[2,66],"26":[2,66],"27":[2,66],"49":[2,66],"57":[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],"92":[2,66],"94":[2,66],"99":[2,66],"107":[2,66],"110":[2,66],"111":[2,66],"112":[2,66],"115":[2,66],"117":[2,66],"124":[2,66],"127":[2,66],"130":[2,66],"131":[2,66],"133":[2,66],"134":[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],"162":[2,66]},{"52":[1,233],"57":[1,234]},{"52":[2,57],"57":[2,57],"59":[1,235]},{"52":[2,59],"57":[2,59],"59":[2,59]},{"1":[2,53],"3":[2,53],"26":[2,53],"27":[2,53],"49":[2,53],"57":[2,53],"59":[2,53],"77":[2,53],"79":[2,53],"82":[2,53],"94":[2,53],"99":[2,53],"107":[2,53],"110":[2,53],"111":[2,53],"112":[2,53],"115":[2,53],"117":[2,53],"124":[2,53],"127":[2,53],"130":[2,53],"131":[2,53],"133":[2,53],"134":[2,53],"137":[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]},{"24":86,"48":[1,55]},{"1":[2,171],"3":[2,171],"26":[2,171],"27":[2,171],"49":[1,110],"57":[2,171],"59":[2,171],"77":[2,171],"79":[2,171],"82":[2,171],"94":[2,171],"99":[2,171],"107":[2,171],"109":123,"110":[2,171],"111":[2,171],"112":[2,171],"115":[2,171],"117":[2,171],"124":[2,171],"127":[2,171],"130":[2,171],"131":[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],"162":[2,171]},{"1":[2,172],"3":[2,172],"26":[2,172],"27":[2,172],"49":[1,110],"57":[2,172],"59":[2,172],"77":[2,172],"79":[2,172],"82":[2,172],"94":[2,172],"99":[2,172],"107":[2,172],"109":123,"110":[2,172],"111":[2,172],"112":[2,172],"115":[2,172],"117":[2,172],"124":[2,172],"127":[2,172],"130":[2,172],"131":[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],"162":[2,172]},{"1":[2,173],"3":[2,173],"26":[2,173],"27":[2,173],"49":[1,110],"57":[2,173],"59":[2,173],"77":[2,173],"79":[2,173],"82":[2,173],"94":[2,173],"99":[2,173],"107":[2,173],"109":123,"110":[2,173],"111":[2,173],"112":[2,173],"115":[2,173],"117":[2,173],"124":[2,173],"127":[2,173],"130":[2,173],"131":[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],"162":[2,173]},{"1":[2,174],"3":[2,174],"26":[2,174],"27":[2,174],"49":[1,110],"57":[2,174],"59":[2,174],"77":[2,174],"79":[2,174],"82":[2,174],"94":[2,174],"99":[2,174],"107":[2,174],"109":123,"110":[2,174],"111":[2,174],"112":[2,174],"115":[2,174],"117":[2,174],"124":[2,174],"127":[2,174],"130":[2,174],"131":[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],"162":[2,174]},{"1":[2,175],"3":[2,175],"26":[2,175],"27":[2,175],"49":[1,110],"57":[2,175],"59":[2,175],"77":[2,175],"79":[2,175],"82":[2,175],"94":[2,175],"99":[2,175],"107":[2,175],"109":123,"110":[2,175],"111":[2,175],"112":[2,175],"115":[2,175],"117":[2,175],"124":[2,175],"127":[2,175],"130":[2,175],"131":[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],"162":[2,175]},{"1":[2,176],"3":[2,176],"26":[2,176],"27":[2,176],"49":[1,110],"57":[2,176],"59":[2,176],"77":[2,176],"79":[2,176],"82":[2,176],"94":[2,176],"99":[2,176],"107":[2,176],"109":123,"110":[2,176],"111":[2,176],"112":[2,176],"115":[2,176],"117":[2,176],"124":[2,176],"127":[2,176],"130":[2,176],"131":[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],"162":[2,176]},{"1":[2,177],"3":[2,177],"26":[2,177],"27":[2,177],"49":[1,110],"57":[2,177],"59":[2,177],"77":[2,177],"79":[2,177],"82":[2,177],"94":[2,177],"99":[2,177],"107":[2,177],"109":123,"110":[2,177],"111":[2,177],"112":[2,177],"115":[2,177],"117":[2,177],"124":[2,177],"127":[2,177],"130":[2,177],"131":[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],"162":[2,177]},{"1":[2,178],"3":[2,178],"26":[2,178],"27":[2,178],"49":[1,110],"57":[2,178],"59":[2,178],"77":[2,178],"79":[2,178],"82":[2,178],"94":[2,178],"99":[2,178],"107":[2,178],"109":123,"110":[2,178],"111":[2,178],"112":[2,178],"115":[2,178],"117":[2,178],"124":[2,178],"127":[2,178],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[1,119]},{"1":[2,179],"3":[2,179],"26":[2,179],"27":[2,179],"49":[1,110],"57":[2,179],"59":[2,179],"77":[2,179],"79":[2,179],"82":[2,179],"94":[2,179],"99":[2,179],"107":[2,179],"109":123,"110":[2,179],"111":[2,179],"112":[2,179],"115":[2,179],"117":[2,179],"124":[2,179],"127":[2,179],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[1,119]},{"102":236,"103":[1,237],"104":[1,238]},{"1":[2,138],"3":[2,138],"26":[2,138],"27":[2,138],"49":[1,110],"57":[2,138],"59":[1,125],"77":[2,138],"79":[2,138],"82":[2,138],"94":[2,138],"99":[2,138],"107":[2,138],"109":123,"110":[2,138],"111":[2,138],"112":[2,138],"115":[1,120],"117":[2,138],"124":[2,138],"127":[2,138],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,48],"3":[2,48],"26":[2,48],"27":[2,48],"49":[1,110],"57":[2,48],"59":[1,125],"77":[2,48],"79":[2,48],"82":[2,48],"94":[2,48],"99":[2,48],"107":[2,48],"109":123,"110":[2,48],"111":[2,48],"112":[1,124],"115":[1,120],"117":[2,48],"124":[2,48],"127":[2,48],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,143],"3":[2,143],"26":[2,143],"27":[2,143],"49":[2,143],"57":[2,143],"59":[2,143],"77":[2,143],"79":[2,143],"82":[2,143],"94":[2,143],"99":[2,143],"107":[2,143],"110":[2,143],"111":[2,143],"112":[2,143],"115":[2,143],"117":[2,143],"124":[2,143],"127":[2,143],"130":[2,143],"131":[2,143],"133":[2,143],"134":[2,143],"137":[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]},{"114":239,"115":[1,240],"116":[1,241]},{"57":[1,242],"115":[2,147],"116":[2,147]},{"26":[1,243],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"7":244,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":146,"62":170,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,94],"3":[2,94],"26":[1,246],"27":[2,94],"49":[2,94],"57":[2,94],"59":[2,94],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,94],"78":[2,66],"79":[2,94],"82":[2,94],"85":[1,245],"92":[2,66],"94":[2,94],"99":[2,94],"107":[2,94],"110":[2,94],"111":[2,94],"112":[2,94],"115":[2,94],"117":[2,94],"124":[2,94],"127":[2,94],"130":[2,94],"131":[2,94],"133":[2,94],"134":[2,94],"137":[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]},{"61":142,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"78":[1,139],"91":141,"92":[1,131]},{"49":[1,110],"59":[1,125],"107":[1,247],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[2,124],"27":[2,124],"49":[1,110],"57":[2,124],"59":[1,248],"99":[2,124],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[1,251],"27":[1,252],"57":[1,250],"99":[1,249]},{"6":253,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,116],"3":[2,116],"26":[2,116],"27":[2,116],"45":[2,116],"49":[2,116],"57":[2,116],"59":[2,116],"70":[2,116],"71":[2,116],"72":[2,116],"73":[2,116],"76":[2,116],"77":[2,116],"78":[2,116],"79":[2,116],"82":[2,116],"85":[2,116],"90":[2,116],"92":[2,116],"94":[2,116],"99":[2,116],"107":[2,116],"110":[2,116],"111":[2,116],"112":[2,116],"115":[2,116],"117":[2,116],"124":[2,116],"127":[2,116],"130":[2,116],"131":[2,116],"133":[2,116],"134":[2,116],"137":[2,116],"138":[2,116],"139":[2,116],"140":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"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]},{"3":[2,123],"6":226,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,174],"27":[2,123],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,123],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"93":254,"94":[2,123],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[1,151],"5":255,"26":[1,6],"124":[1,256]},{"1":[2,164],"3":[2,164],"26":[2,164],"27":[2,164],"49":[2,164],"57":[2,164],"59":[2,164],"77":[2,164],"79":[2,164],"82":[2,164],"94":[2,164],"99":[2,164],"107":[2,164],"110":[2,164],"111":[2,164],"112":[2,164],"115":[2,164],"117":[2,164],"120":[2,164],"124":[2,164],"127":[2,164],"130":[2,164],"131":[2,164],"133":[2,164],"134":[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],"162":[2,164]},{"1":[2,141],"3":[2,141],"26":[2,141],"27":[2,141],"49":[1,110],"57":[2,141],"59":[1,125],"77":[2,141],"79":[2,141],"82":[2,141],"94":[2,141],"99":[2,141],"107":[2,141],"109":123,"110":[1,78],"111":[1,257],"112":[1,124],"115":[1,120],"117":[2,141],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[1,260],"57":[1,259],"82":[1,258]},{"57":[1,262],"82":[1,261]},{"3":[2,88],"27":[2,88],"57":[2,88],"82":[2,88]},{"3":[2,87],"24":186,"27":[2,87],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":182,"48":[1,55],"57":[2,87],"81":263},{"45":[1,264]},{"45":[1,265]},{"3":[2,47],"27":[2,47],"57":[2,47],"82":[2,47]},{"3":[1,151],"5":266,"26":[1,6],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,6],"3":[2,6],"27":[2,6],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,182],"3":[2,182],"26":[2,182],"27":[2,182],"49":[1,110],"57":[2,182],"59":[2,182],"77":[2,182],"79":[2,182],"82":[2,182],"94":[2,182],"99":[2,182],"107":[2,182],"109":123,"110":[2,182],"111":[2,182],"112":[2,182],"115":[2,182],"117":[2,182],"124":[2,182],"127":[2,182],"130":[2,182],"131":[2,182],"133":[1,89],"134":[1,90],"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],"162":[2,182]},{"1":[2,183],"3":[2,183],"26":[2,183],"27":[2,183],"49":[1,110],"57":[2,183],"59":[2,183],"77":[2,183],"79":[2,183],"82":[2,183],"94":[2,183],"99":[2,183],"107":[2,183],"109":123,"110":[2,183],"111":[2,183],"112":[2,183],"115":[2,183],"117":[2,183],"124":[2,183],"127":[2,183],"130":[2,183],"131":[2,183],"133":[1,89],"134":[1,90],"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],"162":[2,183]},{"1":[2,184],"3":[2,184],"26":[2,184],"27":[2,184],"49":[1,110],"57":[2,184],"59":[2,184],"77":[2,184],"79":[2,184],"82":[2,184],"94":[2,184],"99":[2,184],"107":[2,184],"109":123,"110":[2,184],"111":[2,184],"112":[2,184],"115":[2,184],"117":[2,184],"124":[2,184],"127":[2,184],"130":[2,184],"131":[2,184],"133":[1,89],"134":[1,90],"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],"162":[2,184]},{"1":[2,185],"3":[2,185],"26":[2,185],"27":[2,185],"49":[1,110],"57":[2,185],"59":[2,185],"77":[2,185],"79":[2,185],"82":[2,185],"94":[2,185],"99":[2,185],"107":[2,185],"109":123,"110":[2,185],"111":[2,185],"112":[2,185],"115":[2,185],"117":[2,185],"124":[2,185],"127":[2,185],"130":[2,185],"131":[2,185],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,186],"3":[2,186],"26":[2,186],"27":[2,186],"49":[1,110],"57":[2,186],"59":[2,186],"77":[2,186],"79":[2,186],"82":[2,186],"94":[2,186],"99":[2,186],"107":[2,186],"109":123,"110":[2,186],"111":[2,186],"112":[2,186],"115":[2,186],"117":[2,186],"124":[2,186],"127":[2,186],"130":[2,186],"131":[2,186],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,187],"3":[2,187],"26":[2,187],"27":[2,187],"49":[1,110],"57":[2,187],"59":[2,187],"77":[2,187],"79":[2,187],"82":[2,187],"94":[2,187],"99":[2,187],"107":[2,187],"109":123,"110":[2,187],"111":[2,187],"112":[2,187],"115":[2,187],"117":[2,187],"124":[2,187],"127":[2,187],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,188],"3":[2,188],"26":[2,188],"27":[2,188],"49":[1,110],"57":[2,188],"59":[2,188],"77":[2,188],"79":[2,188],"82":[2,188],"94":[2,188],"99":[2,188],"107":[2,188],"109":123,"110":[2,188],"111":[2,188],"112":[2,188],"115":[2,188],"117":[2,188],"124":[2,188],"127":[2,188],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,189],"3":[2,189],"26":[2,189],"27":[2,189],"49":[1,110],"57":[2,189],"59":[2,189],"77":[2,189],"79":[2,189],"82":[2,189],"94":[2,189],"99":[2,189],"107":[2,189],"109":123,"110":[2,189],"111":[2,189],"112":[2,189],"115":[2,189],"117":[2,189],"124":[2,189],"127":[2,189],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,190],"3":[2,190],"26":[2,190],"27":[2,190],"49":[1,110],"57":[2,190],"59":[2,190],"77":[2,190],"79":[2,190],"82":[2,190],"94":[2,190],"99":[2,190],"107":[2,190],"109":123,"110":[2,190],"111":[2,190],"112":[2,190],"115":[2,190],"117":[2,190],"124":[2,190],"127":[2,190],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"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]},{"1":[2,191],"3":[2,191],"26":[2,191],"27":[2,191],"49":[1,110],"57":[2,191],"59":[2,191],"77":[2,191],"79":[2,191],"82":[2,191],"94":[2,191],"99":[2,191],"107":[2,191],"109":123,"110":[2,191],"111":[2,191],"112":[2,191],"115":[2,191],"117":[2,191],"124":[2,191],"127":[2,191],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"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]},{"1":[2,192],"3":[2,192],"26":[2,192],"27":[2,192],"49":[1,110],"57":[2,192],"59":[2,192],"77":[2,192],"79":[2,192],"82":[2,192],"94":[2,192],"99":[2,192],"107":[2,192],"109":123,"110":[2,192],"111":[2,192],"112":[2,192],"115":[2,192],"117":[2,192],"124":[2,192],"127":[2,192],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"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]},{"1":[2,193],"3":[2,193],"26":[2,193],"27":[2,193],"49":[1,110],"57":[2,193],"59":[2,193],"77":[2,193],"79":[2,193],"82":[2,193],"94":[2,193],"99":[2,193],"107":[2,193],"109":123,"110":[2,193],"111":[2,193],"112":[2,193],"115":[2,193],"117":[2,193],"124":[2,193],"127":[2,193],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"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]},{"1":[2,194],"3":[2,194],"26":[2,194],"27":[2,194],"49":[1,110],"57":[2,194],"59":[2,194],"77":[2,194],"79":[2,194],"82":[2,194],"94":[2,194],"99":[2,194],"107":[2,194],"109":123,"110":[2,194],"111":[2,194],"112":[2,194],"115":[2,194],"117":[2,194],"124":[2,194],"127":[2,194],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"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]},{"1":[2,195],"3":[2,195],"26":[2,195],"27":[2,195],"49":[1,110],"57":[2,195],"59":[2,195],"77":[2,195],"79":[2,195],"82":[2,195],"94":[2,195],"99":[2,195],"107":[2,195],"109":123,"110":[2,195],"111":[2,195],"112":[2,195],"115":[2,195],"117":[2,195],"124":[2,195],"127":[2,195],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"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]},{"1":[2,196],"3":[2,196],"26":[2,196],"27":[2,196],"49":[1,110],"57":[2,196],"59":[2,196],"77":[2,196],"79":[2,196],"82":[2,196],"94":[2,196],"99":[2,196],"107":[2,196],"109":123,"110":[2,196],"111":[2,196],"112":[2,196],"115":[2,196],"117":[2,196],"124":[2,196],"127":[2,196],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"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]},{"1":[2,197],"3":[2,197],"26":[2,197],"27":[2,197],"49":[1,110],"57":[2,197],"59":[2,197],"77":[2,197],"79":[2,197],"82":[2,197],"94":[2,197],"99":[2,197],"107":[2,197],"109":123,"110":[2,197],"111":[2,197],"112":[2,197],"115":[2,197],"117":[2,197],"124":[2,197],"127":[2,197],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[1,119]},{"1":[2,198],"3":[2,198],"26":[2,198],"27":[2,198],"49":[1,110],"57":[2,198],"59":[2,198],"77":[2,198],"79":[2,198],"82":[2,198],"94":[2,198],"99":[2,198],"107":[2,198],"109":123,"110":[2,198],"111":[2,198],"112":[2,198],"115":[2,198],"117":[2,198],"124":[2,198],"127":[2,198],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[1,119]},{"1":[2,199],"3":[2,199],"26":[2,199],"27":[2,199],"49":[1,110],"57":[2,199],"59":[2,199],"77":[2,199],"79":[2,199],"82":[2,199],"94":[2,199],"99":[2,199],"107":[2,199],"109":123,"110":[2,199],"111":[2,199],"112":[2,199],"115":[2,199],"117":[2,199],"124":[2,199],"127":[2,199],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"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":[1,119]},{"1":[2,200],"3":[2,200],"26":[2,200],"27":[2,200],"49":[1,110],"57":[2,200],"59":[2,200],"77":[2,200],"79":[2,200],"82":[2,200],"94":[2,200],"99":[2,200],"107":[2,200],"109":123,"110":[2,200],"111":[2,200],"112":[2,200],"115":[2,200],"117":[2,200],"124":[2,200],"127":[2,200],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"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":[1,119]},{"1":[2,201],"3":[2,201],"26":[2,201],"27":[2,201],"49":[2,201],"57":[2,201],"59":[2,201],"77":[2,201],"79":[2,201],"82":[2,201],"94":[2,201],"99":[2,201],"107":[2,201],"109":123,"110":[2,201],"111":[2,201],"112":[2,201],"115":[2,201],"117":[2,201],"124":[2,201],"127":[2,201],"130":[2,201],"131":[2,201],"133":[2,201],"134":[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],"162":[2,201]},{"1":[2,202],"3":[2,202],"26":[2,202],"27":[2,202],"49":[1,110],"57":[2,202],"59":[2,202],"77":[2,202],"79":[2,202],"82":[2,202],"94":[2,202],"99":[2,202],"107":[2,202],"109":123,"110":[2,202],"111":[2,202],"112":[2,202],"115":[2,202],"117":[2,202],"124":[2,202],"127":[2,202],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,203],"3":[2,203],"26":[2,203],"27":[2,203],"49":[1,110],"57":[2,203],"59":[2,203],"77":[2,203],"79":[2,203],"82":[2,203],"94":[2,203],"99":[2,203],"107":[2,203],"109":123,"110":[2,203],"111":[2,203],"112":[2,203],"115":[2,203],"117":[2,203],"124":[2,203],"127":[2,203],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,204],"3":[2,204],"26":[2,204],"27":[2,204],"49":[1,110],"57":[2,204],"59":[2,204],"77":[2,204],"79":[2,204],"82":[2,204],"94":[2,204],"99":[2,204],"107":[2,204],"109":123,"110":[2,204],"111":[2,204],"112":[2,204],"115":[2,204],"117":[2,204],"124":[2,204],"127":[2,204],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,205],"3":[2,205],"26":[2,205],"27":[2,205],"49":[1,110],"57":[2,205],"59":[2,205],"77":[2,205],"79":[2,205],"82":[2,205],"94":[2,205],"99":[2,205],"107":[2,205],"109":123,"110":[2,205],"111":[2,205],"112":[2,205],"115":[2,205],"117":[2,205],"124":[2,205],"127":[2,205],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,206],"3":[2,206],"26":[2,206],"27":[2,206],"49":[1,110],"57":[2,206],"59":[2,206],"77":[2,206],"79":[2,206],"82":[2,206],"94":[2,206],"99":[2,206],"107":[2,206],"109":123,"110":[2,206],"111":[2,206],"112":[2,206],"115":[2,206],"117":[2,206],"124":[2,206],"127":[2,206],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,207],"3":[2,207],"26":[2,207],"27":[2,207],"49":[1,110],"57":[2,207],"59":[2,207],"77":[2,207],"79":[2,207],"82":[2,207],"94":[2,207],"99":[2,207],"107":[2,207],"109":123,"110":[2,207],"111":[2,207],"112":[2,207],"115":[2,207],"117":[2,207],"124":[2,207],"127":[2,207],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,208],"3":[2,208],"26":[2,208],"27":[2,208],"49":[1,110],"57":[2,208],"59":[2,208],"77":[2,208],"79":[2,208],"82":[2,208],"94":[2,208],"99":[2,208],"107":[2,208],"109":123,"110":[2,208],"111":[2,208],"112":[2,208],"115":[2,208],"117":[2,208],"124":[2,208],"127":[2,208],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,209],"3":[2,209],"26":[2,209],"27":[2,209],"49":[1,110],"57":[2,209],"59":[2,209],"77":[2,209],"79":[2,209],"82":[2,209],"94":[2,209],"99":[2,209],"107":[2,209],"109":123,"110":[2,209],"111":[2,209],"112":[2,209],"115":[2,209],"117":[2,209],"124":[2,209],"127":[2,209],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,210],"3":[2,210],"26":[2,210],"27":[2,210],"49":[1,110],"57":[2,210],"59":[2,210],"77":[2,210],"79":[2,210],"82":[2,210],"94":[2,210],"99":[2,210],"107":[2,210],"109":123,"110":[2,210],"111":[2,210],"112":[2,210],"115":[2,210],"117":[2,210],"124":[2,210],"127":[2,210],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[2,210],"162":[1,119]},{"1":[2,211],"3":[2,211],"26":[2,211],"27":[2,211],"49":[1,110],"57":[2,211],"59":[1,125],"77":[2,211],"79":[2,211],"82":[2,211],"94":[2,211],"99":[2,211],"107":[2,211],"109":123,"110":[2,211],"111":[2,211],"112":[2,211],"115":[1,120],"117":[2,211],"124":[2,211],"127":[2,211],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,169],"3":[2,169],"26":[2,169],"27":[2,169],"49":[1,110],"57":[2,169],"59":[1,125],"77":[2,169],"79":[2,169],"82":[2,169],"94":[2,169],"99":[2,169],"107":[2,169],"109":123,"110":[1,78],"111":[2,169],"112":[1,124],"115":[1,120],"117":[2,169],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,170],"3":[2,170],"26":[2,170],"27":[2,170],"49":[1,110],"57":[2,170],"59":[1,125],"77":[2,170],"79":[2,170],"82":[2,170],"94":[2,170],"99":[2,170],"107":[2,170],"109":123,"110":[1,78],"111":[2,170],"112":[1,124],"115":[1,120],"117":[2,170],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"114":267,"115":[1,240],"116":[1,241]},{"59":[1,268]},{"1":[2,27],"3":[2,27],"26":[2,27],"27":[2,27],"48":[2,27],"49":[2,27],"57":[2,27],"59":[2,27],"77":[2,27],"79":[2,27],"82":[2,27],"94":[2,27],"99":[2,27],"103":[2,27],"104":[2,27],"107":[2,27],"110":[2,27],"111":[2,27],"112":[2,27],"115":[2,27],"117":[2,27],"120":[2,27],"122":[2,27],"124":[2,27],"127":[2,27],"130":[2,27],"131":[2,27],"133":[2,27],"134":[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],"162":[2,27]},{"1":[2,106],"3":[2,106],"26":[2,106],"27":[2,106],"49":[2,106],"57":[2,106],"59":[2,106],"77":[2,106],"79":[2,106],"82":[2,106],"94":[2,106],"99":[2,106],"107":[2,106],"110":[2,106],"111":[2,106],"112":[2,106],"115":[2,106],"117":[2,106],"124":[2,106],"127":[2,106],"130":[2,106],"131":[2,106],"133":[2,106],"134":[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],"162":[2,106]},{"3":[1,251],"27":[1,252],"57":[1,270],"94":[1,269]},{"3":[2,124],"27":[2,124],"49":[1,110],"57":[2,124],"59":[1,125],"94":[2,124],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,75],"3":[2,75],"26":[2,75],"27":[2,75],"45":[2,75],"49":[2,75],"57":[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],"85":[2,75],"90":[2,75],"92":[2,75],"94":[2,75],"99":[2,75],"107":[2,75],"110":[2,75],"111":[2,75],"112":[2,75],"115":[2,75],"117":[2,75],"124":[2,75],"127":[2,75],"130":[2,75],"131":[2,75],"133":[2,75],"134":[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],"162":[2,75]},{"1":[2,76],"3":[2,76],"26":[2,76],"27":[2,76],"45":[2,76],"49":[2,76],"57":[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],"85":[2,76],"90":[2,76],"92":[2,76],"94":[2,76],"99":[2,76],"107":[2,76],"110":[2,76],"111":[2,76],"112":[2,76],"115":[2,76],"117":[2,76],"124":[2,76],"127":[2,76],"130":[2,76],"131":[2,76],"133":[2,76],"134":[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],"162":[2,76]},{"1":[2,78],"3":[2,78],"26":[2,78],"27":[2,78],"45":[2,78],"49":[2,78],"57":[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],"85":[2,78],"90":[2,78],"92":[2,78],"94":[2,78],"99":[2,78],"107":[2,78],"110":[2,78],"111":[2,78],"112":[2,78],"115":[2,78],"117":[2,78],"124":[2,78],"127":[2,78],"130":[2,78],"131":[2,78],"133":[2,78],"134":[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],"162":[2,78]},{"49":[1,110],"59":[1,272],"77":[1,271],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"49":[1,110],"59":[1,125],"79":[1,273],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,44],"3":[2,44],"26":[2,44],"27":[2,44],"49":[1,110],"57":[2,44],"59":[1,125],"77":[2,44],"79":[2,44],"82":[2,44],"94":[2,44],"99":[2,44],"107":[2,44],"109":123,"110":[2,44],"111":[2,44],"112":[1,124],"115":[1,120],"117":[2,44],"124":[2,44],"127":[2,44],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"53":274,"54":[1,75],"55":[1,76]},{"56":275,"58":[1,149]},{"59":[1,276]},{"1":[2,134],"3":[2,134],"26":[2,134],"27":[2,134],"49":[2,134],"57":[2,134],"59":[2,134],"77":[2,134],"79":[2,134],"82":[2,134],"94":[2,134],"99":[2,134],"103":[1,277],"107":[2,134],"110":[2,134],"111":[2,134],"112":[2,134],"115":[2,134],"117":[2,134],"124":[2,134],"127":[2,134],"130":[2,134],"131":[2,134],"133":[2,134],"134":[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],"162":[2,134]},{"3":[1,151],"5":278,"26":[1,6]},{"28":279,"29":[1,85]},{"3":[1,151],"5":280,"26":[1,6]},{"6":281,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":282,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"28":283,"29":[1,85]},{"24":287,"48":[1,55],"119":284,"121":285,"122":[1,286]},{"1":[2,107],"3":[2,107],"26":[2,107],"27":[2,107],"49":[2,107],"57":[2,107],"59":[2,107],"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,107],"78":[1,139],"79":[2,107],"82":[2,107],"91":129,"92":[1,131],"94":[2,107],"99":[2,107],"107":[2,107],"110":[2,107],"111":[2,107],"112":[2,107],"115":[2,107],"117":[2,107],"124":[2,107],"127":[2,107],"130":[2,107],"131":[2,107],"133":[2,107],"134":[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],"162":[2,107]},{"7":288,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":146,"62":170,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"3":[2,100],"24":186,"27":[2,100],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":291,"48":[1,55],"63":292,"86":289,"87":290,"97":[1,293]},{"1":[2,139],"3":[2,139],"26":[2,139],"27":[2,139],"49":[2,139],"57":[2,139],"59":[2,139],"70":[2,139],"71":[2,139],"72":[2,139],"73":[2,139],"76":[2,139],"77":[2,139],"78":[2,139],"79":[2,139],"82":[2,139],"90":[2,139],"92":[2,139],"94":[2,139],"99":[2,139],"107":[2,139],"110":[2,139],"111":[2,139],"112":[2,139],"115":[2,139],"117":[2,139],"124":[2,139],"127":[2,139],"130":[2,139],"131":[2,139],"133":[2,139],"134":[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],"162":[2,139]},{"59":[1,294]},{"1":[2,121],"3":[2,121],"26":[2,121],"27":[2,121],"45":[2,121],"49":[2,121],"57":[2,121],"59":[2,121],"70":[2,121],"71":[2,121],"72":[2,121],"73":[2,121],"76":[2,121],"77":[2,121],"78":[2,121],"79":[2,121],"82":[2,121],"90":[2,121],"92":[2,121],"94":[2,121],"99":[2,121],"107":[2,121],"110":[2,121],"111":[2,121],"112":[2,121],"115":[2,121],"117":[2,121],"124":[2,121],"127":[2,121],"130":[2,121],"131":[2,121],"133":[2,121],"134":[2,121],"137":[2,121],"138":[2,121],"139":[2,121],"140":[2,121],"141":[2,121],"142":[2,121],"143":[2,121],"144":[2,121],"145":[2,121],"146":[2,121],"147":[2,121],"148":[2,121],"149":[2,121],"150":[2,121],"151":[2,121],"152":[2,121],"153":[2,121],"154":[2,121],"155":[2,121],"156":[2,121],"157":[2,121],"158":[2,121],"159":[2,121],"160":[2,121],"161":[2,121],"162":[2,121]},{"3":[1,297],"6":296,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,298],"27":[1,299],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[1,295],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":300,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[2,130],"27":[2,130],"57":[2,130],"94":[2,130],"99":[2,130]},{"3":[2,125],"27":[2,125],"49":[1,110],"57":[2,125],"59":[1,125],"94":[2,125],"99":[2,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[1,251],"27":[1,252],"57":[1,302],"94":[1,301]},{"1":[2,166],"3":[2,166],"26":[2,166],"27":[2,166],"49":[2,166],"57":[2,166],"59":[2,166],"77":[2,166],"79":[2,166],"82":[2,166],"94":[2,166],"99":[2,166],"107":[2,166],"110":[2,166],"111":[2,166],"112":[2,166],"115":[2,166],"117":[2,166],"124":[2,166],"127":[2,166],"130":[2,166],"131":[2,166],"133":[2,166],"134":[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],"162":[2,166]},{"6":303,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":304,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,83],"3":[2,83],"26":[2,83],"27":[2,83],"45":[2,83],"49":[2,83],"57":[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],"90":[2,83],"92":[2,83],"94":[2,83],"99":[2,83],"107":[2,83],"110":[2,83],"111":[2,83],"112":[2,83],"115":[2,83],"117":[2,83],"124":[2,83],"127":[2,83],"130":[2,83],"131":[2,83],"133":[2,83],"134":[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],"162":[2,83]},{"3":[1,307],"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":306,"48":[1,55],"82":[1,305]},{"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":308,"48":[1,55]},{"1":[2,84],"3":[2,84],"26":[2,84],"27":[2,84],"45":[2,84],"49":[2,84],"57":[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],"94":[2,84],"99":[2,84],"107":[2,84],"110":[2,84],"111":[2,84],"112":[2,84],"115":[2,84],"117":[2,84],"124":[2,84],"127":[2,84],"130":[2,84],"131":[2,84],"133":[2,84],"134":[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],"162":[2,84]},{"82":[1,309]},{"3":[1,260],"27":[1,310],"57":[1,311]},{"6":312,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":313,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,163],"3":[2,163],"26":[2,163],"27":[2,163],"49":[2,163],"57":[2,163],"59":[2,163],"77":[2,163],"79":[2,163],"82":[2,163],"94":[2,163],"99":[2,163],"107":[2,163],"110":[2,163],"111":[2,163],"112":[2,163],"115":[2,163],"117":[2,163],"120":[2,163],"124":[2,163],"127":[2,163],"130":[2,163],"131":[2,163],"133":[2,163],"134":[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],"162":[2,163]},{"1":[2,145],"3":[2,145],"26":[2,145],"27":[2,145],"49":[2,145],"57":[2,145],"59":[2,145],"77":[2,145],"79":[2,145],"82":[2,145],"94":[2,145],"99":[2,145],"107":[2,145],"110":[2,145],"111":[2,145],"112":[2,145],"115":[2,145],"117":[2,145],"124":[2,145],"127":[2,145],"130":[2,145],"131":[2,145],"133":[2,145],"134":[2,145],"137":[2,145],"138":[2,145],"139":[2,145],"140":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"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]},{"1":[2,61],"3":[2,61],"26":[2,61],"27":[2,61],"49":[2,61],"57":[2,61],"59":[2,61],"77":[2,61],"79":[2,61],"82":[2,61],"94":[2,61],"99":[2,61],"107":[2,61],"110":[2,61],"111":[2,61],"112":[2,61],"115":[2,61],"117":[2,61],"124":[2,61],"127":[2,61],"130":[2,61],"131":[2,61],"133":[2,61],"134":[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],"162":[2,61]},{"1":[2,110],"3":[2,110],"26":[2,110],"27":[2,110],"49":[2,110],"57":[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],"92":[2,110],"94":[2,110],"99":[2,110],"107":[2,110],"110":[2,110],"111":[2,110],"112":[2,110],"115":[2,110],"117":[2,110],"124":[2,110],"127":[2,110],"130":[2,110],"131":[2,110],"133":[2,110],"134":[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],"162":[2,110]},{"3":[1,297],"6":296,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,298],"27":[1,299],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"94":[1,314],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,81],"3":[2,81],"26":[2,81],"27":[2,81],"45":[2,81],"49":[2,81],"57":[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],"85":[2,81],"90":[2,81],"92":[2,81],"94":[2,81],"99":[2,81],"107":[2,81],"110":[2,81],"111":[2,81],"112":[2,81],"115":[2,81],"117":[2,81],"124":[2,81],"127":[2,81],"130":[2,81],"131":[2,81],"133":[2,81],"134":[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],"162":[2,81]},{"59":[1,315]},{"1":[2,82],"3":[2,82],"26":[2,82],"27":[2,82],"45":[2,82],"49":[2,82],"57":[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],"85":[2,82],"90":[2,82],"92":[2,82],"94":[2,82],"99":[2,82],"107":[2,82],"110":[2,82],"111":[2,82],"112":[2,82],"115":[2,82],"117":[2,82],"124":[2,82],"127":[2,82],"130":[2,82],"131":[2,82],"133":[2,82],"134":[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],"162":[2,82]},{"3":[1,151],"5":316,"26":[1,6]},{"52":[2,58],"57":[2,58],"59":[1,235]},{"59":[1,317]},{"3":[1,151],"5":318,"26":[1,6]},{"1":[2,135],"3":[2,135],"26":[2,135],"27":[2,135],"49":[2,135],"57":[2,135],"59":[2,135],"77":[2,135],"79":[2,135],"82":[2,135],"94":[2,135],"99":[2,135],"107":[2,135],"110":[2,135],"111":[2,135],"112":[2,135],"115":[2,135],"117":[2,135],"124":[2,135],"127":[2,135],"130":[2,135],"131":[2,135],"133":[2,135],"134":[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],"162":[2,135]},{"3":[1,151],"5":319,"26":[1,6]},{"1":[2,146],"3":[2,146],"26":[2,146],"27":[2,146],"49":[2,146],"57":[2,146],"59":[2,146],"77":[2,146],"79":[2,146],"82":[2,146],"94":[2,146],"99":[2,146],"107":[2,146],"110":[2,146],"111":[2,146],"112":[2,146],"115":[2,146],"117":[2,146],"124":[2,146],"127":[2,146],"130":[2,146],"131":[2,146],"133":[2,146],"134":[2,146],"137":[2,146],"138":[2,146],"139":[2,146],"140":[2,146],"141":[2,146],"142":[2,146],"143":[2,146],"144":[2,146],"145":[2,146],"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]},{"1":[2,149],"3":[2,149],"26":[2,149],"27":[2,149],"49":[1,110],"57":[2,149],"59":[1,125],"77":[2,149],"79":[2,149],"82":[2,149],"94":[2,149],"99":[2,149],"107":[2,149],"109":123,"110":[2,149],"111":[1,320],"112":[2,149],"115":[1,120],"117":[1,321],"124":[2,149],"127":[2,149],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,150],"3":[2,150],"26":[2,150],"27":[2,150],"49":[1,110],"57":[2,150],"59":[1,125],"77":[2,150],"79":[2,150],"82":[2,150],"94":[2,150],"99":[2,150],"107":[2,150],"109":123,"110":[2,150],"111":[1,322],"112":[2,150],"115":[1,120],"117":[2,150],"124":[2,150],"127":[2,150],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"115":[2,148],"116":[2,148]},{"24":287,"27":[1,323],"48":[1,55],"120":[1,324],"121":325,"122":[1,286]},{"27":[2,158],"48":[2,158],"120":[2,158],"122":[2,158]},{"6":327,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"100":326,"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[1,328]},{"1":[2,95],"3":[2,95],"26":[1,329],"27":[2,95],"49":[2,95],"57":[2,95],"59":[2,95],"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,95],"78":[1,139],"79":[2,95],"82":[2,95],"91":129,"92":[1,131],"94":[2,95],"99":[2,95],"107":[2,95],"110":[2,95],"111":[2,95],"112":[2,95],"115":[2,95],"117":[2,95],"124":[2,95],"127":[2,95],"130":[2,95],"131":[2,95],"133":[2,95],"134":[2,95],"137":[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]},{"3":[1,331],"27":[1,330]},{"3":[2,101],"27":[2,101]},{"3":[2,98],"27":[2,98]},{"45":[1,332]},{"28":175,"29":[1,85]},{"6":333,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"59":[1,334],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,122],"3":[2,122],"26":[2,122],"27":[2,122],"45":[2,122],"49":[2,122],"57":[2,122],"59":[2,122],"70":[2,122],"71":[2,122],"72":[2,122],"73":[2,122],"76":[2,122],"77":[2,122],"78":[2,122],"79":[2,122],"82":[2,122],"90":[2,122],"92":[2,122],"94":[2,122],"99":[2,122],"107":[2,122],"110":[2,122],"111":[2,122],"112":[2,122],"115":[2,122],"117":[2,122],"124":[2,122],"127":[2,122],"130":[2,122],"131":[2,122],"133":[2,122],"134":[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],"162":[2,122]},{"3":[2,126],"27":[2,126],"49":[1,110],"57":[2,126],"59":[1,125],"94":[2,126],"99":[2,126],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"6":335,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":336,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[2,131],"27":[2,131],"57":[2,131],"94":[2,131],"99":[2,131]},{"3":[2,127],"27":[2,127],"49":[1,110],"57":[2,127],"59":[1,125],"94":[2,127],"99":[2,127],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,112],"3":[2,112],"26":[2,112],"27":[2,112],"49":[2,112],"57":[2,112],"59":[2,112],"77":[2,112],"79":[2,112],"82":[2,112],"94":[2,112],"99":[2,112],"107":[2,112],"110":[2,112],"111":[2,112],"112":[2,112],"115":[2,112],"117":[2,112],"124":[2,112],"127":[2,112],"130":[2,112],"131":[2,112],"133":[2,112],"134":[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],"162":[2,112]},{"3":[1,297],"6":296,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,298],"27":[1,299],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"94":[1,337],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[1,151],"5":338,"26":[1,6],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,142],"3":[2,142],"26":[2,142],"27":[2,142],"49":[1,110],"57":[2,142],"59":[1,125],"77":[2,142],"79":[2,142],"82":[2,142],"94":[2,142],"99":[2,142],"107":[2,142],"109":123,"110":[1,78],"111":[2,142],"112":[1,124],"115":[1,120],"117":[2,142],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,85],"3":[2,85],"26":[2,85],"27":[2,85],"45":[2,85],"49":[2,85],"57":[2,85],"59":[2,85],"70":[2,85],"71":[2,85],"72":[2,85],"73":[2,85],"76":[2,85],"77":[2,85],"78":[2,85],"79":[2,85],"82":[2,85],"90":[2,85],"92":[2,85],"94":[2,85],"99":[2,85],"107":[2,85],"110":[2,85],"111":[2,85],"112":[2,85],"115":[2,85],"117":[2,85],"124":[2,85],"127":[2,85],"130":[2,85],"131":[2,85],"133":[2,85],"134":[2,85],"137":[2,85],"138":[2,85],"139":[2,85],"140":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"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]},{"3":[2,89],"27":[2,89],"57":[2,89],"82":[2,89]},{"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":339,"48":[1,55]},{"3":[2,90],"27":[2,90],"57":[2,90],"82":[2,90]},{"1":[2,86],"3":[2,86],"26":[2,86],"27":[2,86],"45":[2,86],"49":[2,86],"57":[2,86],"59":[2,86],"70":[2,86],"71":[2,86],"72":[2,86],"73":[2,86],"76":[2,86],"77":[2,86],"78":[2,86],"79":[2,86],"82":[2,86],"90":[2,86],"92":[2,86],"94":[2,86],"99":[2,86],"107":[2,86],"110":[2,86],"111":[2,86],"112":[2,86],"115":[2,86],"117":[2,86],"124":[2,86],"127":[2,86],"130":[2,86],"131":[2,86],"133":[2,86],"134":[2,86],"137":[2,86],"138":[2,86],"139":[2,86],"140":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"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]},{"57":[2,92],"82":[2,92]},{"3":[1,307],"24":186,"27":[1,340],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":306,"48":[1,55]},{"3":[2,45],"27":[2,45],"49":[1,110],"57":[2,45],"59":[1,125],"82":[2,45],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[2,46],"27":[2,46],"49":[1,110],"57":[2,46],"59":[1,125],"82":[2,46],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,111],"3":[2,111],"26":[2,111],"27":[2,111],"49":[2,111],"57":[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],"92":[2,111],"94":[2,111],"99":[2,111],"107":[2,111],"110":[2,111],"111":[2,111],"112":[2,111],"115":[2,111],"117":[2,111],"124":[2,111],"127":[2,111],"130":[2,111],"131":[2,111],"133":[2,111],"134":[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],"162":[2,111]},{"6":341,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"59":[1,342],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,52],"3":[2,52],"26":[2,52],"27":[2,52],"49":[2,52],"57":[2,52],"59":[2,52],"77":[2,52],"79":[2,52],"82":[2,52],"94":[2,52],"99":[2,52],"107":[2,52],"110":[2,52],"111":[2,52],"112":[2,52],"115":[2,52],"117":[2,52],"124":[2,52],"127":[2,52],"130":[2,52],"131":[2,52],"133":[2,52],"134":[2,52],"137":[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]},{"52":[2,60],"57":[2,60],"59":[2,60]},{"1":[2,136],"3":[2,136],"26":[2,136],"27":[2,136],"49":[2,136],"57":[2,136],"59":[2,136],"77":[2,136],"79":[2,136],"82":[2,136],"94":[2,136],"99":[2,136],"107":[2,136],"110":[2,136],"111":[2,136],"112":[2,136],"115":[2,136],"117":[2,136],"124":[2,136],"127":[2,136],"130":[2,136],"131":[2,136],"133":[2,136],"134":[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],"162":[2,136]},{"1":[2,137],"3":[2,137],"26":[2,137],"27":[2,137],"49":[2,137],"57":[2,137],"59":[2,137],"77":[2,137],"79":[2,137],"82":[2,137],"94":[2,137],"99":[2,137],"103":[2,137],"107":[2,137],"110":[2,137],"111":[2,137],"112":[2,137],"115":[2,137],"117":[2,137],"124":[2,137],"127":[2,137],"130":[2,137],"131":[2,137],"133":[2,137],"134":[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],"162":[2,137]},{"6":343,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":344,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":345,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,156],"3":[2,156],"26":[2,156],"27":[2,156],"49":[2,156],"57":[2,156],"59":[2,156],"77":[2,156],"79":[2,156],"82":[2,156],"94":[2,156],"99":[2,156],"107":[2,156],"110":[2,156],"111":[2,156],"112":[2,156],"115":[2,156],"117":[2,156],"124":[2,156],"127":[2,156],"130":[2,156],"131":[2,156],"133":[2,156],"134":[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],"162":[2,156]},{"3":[1,151],"5":346,"26":[1,6]},{"27":[2,159],"48":[2,159],"120":[2,159],"122":[2,159]},{"3":[1,151],"5":347,"26":[1,6],"57":[1,348]},{"3":[2,132],"26":[2,132],"49":[1,110],"57":[2,132],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"24":287,"48":[1,55],"121":349,"122":[1,286]},{"3":[2,100],"24":186,"27":[2,100],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":291,"48":[1,55],"63":292,"86":350,"87":290,"97":[1,293]},{"1":[2,96],"3":[2,96],"26":[2,96],"27":[2,96],"49":[2,96],"57":[2,96],"59":[2,96],"77":[2,96],"79":[2,96],"82":[2,96],"94":[2,96],"99":[2,96],"107":[2,96],"110":[2,96],"111":[2,96],"112":[2,96],"115":[2,96],"117":[2,96],"124":[2,96],"127":[2,96],"130":[2,96],"131":[2,96],"133":[2,96],"134":[2,96],"137":[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]},{"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":291,"48":[1,55],"63":292,"87":351,"97":[1,293]},{"6":352,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"49":[1,110],"59":[1,125],"99":[1,353],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[2,61],"6":354,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"27":[2,61],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,61],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,61],"59":[2,61],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,61],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[2,61],"112":[2,61],"115":[2,61],"118":[1,52],"123":77,"124":[2,61],"126":46,"127":[2,61],"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45],"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],"162":[2,61]},{"3":[2,128],"27":[2,128],"49":[1,110],"57":[2,128],"59":[1,125],"94":[2,128],"99":[2,128],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[2,129],"27":[2,129],"49":[1,110],"57":[2,129],"59":[1,125],"94":[2,129],"99":[2,129],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,113],"3":[2,113],"26":[2,113],"27":[2,113],"49":[2,113],"57":[2,113],"59":[2,113],"77":[2,113],"79":[2,113],"82":[2,113],"94":[2,113],"99":[2,113],"107":[2,113],"110":[2,113],"111":[2,113],"112":[2,113],"115":[2,113],"117":[2,113],"124":[2,113],"127":[2,113],"130":[2,113],"131":[2,113],"133":[2,113],"134":[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],"162":[2,113]},{"1":[2,167],"3":[2,167],"26":[2,167],"27":[2,167],"49":[2,167],"57":[2,167],"59":[2,167],"77":[2,167],"79":[2,167],"82":[2,167],"94":[2,167],"99":[2,167],"107":[2,167],"110":[2,167],"111":[2,167],"112":[2,167],"115":[2,167],"117":[2,167],"120":[2,167],"124":[2,167],"127":[2,167],"130":[2,167],"131":[2,167],"133":[2,167],"134":[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],"162":[2,167]},{"3":[2,91],"27":[2,91],"57":[2,91],"82":[2,91]},{"57":[2,93],"82":[2,93]},{"49":[1,110],"59":[1,125],"77":[1,355],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"6":356,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,61],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"59":[2,61],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"77":[2,61],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[2,61],"112":[2,61],"115":[2,61],"118":[1,52],"123":77,"124":[2,61],"126":46,"127":[2,61],"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45],"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],"162":[2,61]},{"1":[2,151],"3":[2,151],"26":[2,151],"27":[2,151],"49":[1,110],"57":[2,151],"59":[1,125],"77":[2,151],"79":[2,151],"82":[2,151],"94":[2,151],"99":[2,151],"107":[2,151],"109":123,"110":[2,151],"111":[2,151],"112":[2,151],"115":[1,120],"117":[1,357],"124":[2,151],"127":[2,151],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,153],"3":[2,153],"26":[2,153],"27":[2,153],"49":[1,110],"57":[2,153],"59":[1,125],"77":[2,153],"79":[2,153],"82":[2,153],"94":[2,153],"99":[2,153],"107":[2,153],"109":123,"110":[2,153],"111":[1,358],"112":[2,153],"115":[1,120],"117":[2,153],"124":[2,153],"127":[2,153],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,152],"3":[2,152],"26":[2,152],"27":[2,152],"49":[1,110],"57":[2,152],"59":[1,125],"77":[2,152],"79":[2,152],"82":[2,152],"94":[2,152],"99":[2,152],"107":[2,152],"109":123,"110":[2,152],"111":[2,152],"112":[2,152],"115":[1,120],"117":[2,152],"124":[2,152],"127":[2,152],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"27":[1,359]},{"3":[1,360],"27":[2,160],"48":[2,160],"120":[2,160],"122":[2,160]},{"6":361,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"27":[2,162],"48":[2,162],"120":[2,162],"122":[2,162]},{"3":[1,331],"27":[1,362]},{"3":[2,102],"27":[2,102]},{"3":[2,99],"27":[2,99],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,117],"3":[2,117],"26":[2,117],"27":[2,117],"49":[2,117],"57":[2,117],"59":[2,117],"70":[2,117],"71":[2,117],"72":[2,117],"73":[2,117],"76":[2,117],"77":[2,117],"78":[2,117],"79":[2,117],"82":[2,117],"90":[2,117],"92":[2,117],"94":[2,117],"99":[2,117],"107":[2,117],"110":[2,117],"111":[2,117],"112":[2,117],"115":[2,117],"117":[2,117],"124":[2,117],"127":[2,117],"130":[2,117],"131":[2,117],"133":[2,117],"134":[2,117],"137":[2,117],"138":[2,117],"139":[2,117],"140":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"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]},{"49":[1,110],"59":[1,125],"99":[1,363],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,119],"3":[2,119],"26":[2,119],"27":[2,119],"45":[2,119],"49":[2,119],"57":[2,119],"59":[2,119],"70":[2,119],"71":[2,119],"72":[2,119],"73":[2,119],"76":[2,119],"77":[2,119],"78":[2,119],"79":[2,119],"82":[2,119],"85":[2,119],"90":[2,119],"92":[2,119],"94":[2,119],"99":[2,119],"107":[2,119],"110":[2,119],"111":[2,119],"112":[2,119],"115":[2,119],"117":[2,119],"124":[2,119],"127":[2,119],"130":[2,119],"131":[2,119],"133":[2,119],"134":[2,119],"137":[2,119],"138":[2,119],"139":[2,119],"140":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"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]},{"49":[1,110],"59":[1,125],"77":[1,364],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"6":365,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":366,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,157],"3":[2,157],"26":[2,157],"27":[2,157],"49":[2,157],"57":[2,157],"59":[2,157],"77":[2,157],"79":[2,157],"82":[2,157],"94":[2,157],"99":[2,157],"107":[2,157],"110":[2,157],"111":[2,157],"112":[2,157],"115":[2,157],"117":[2,157],"124":[2,157],"127":[2,157],"130":[2,157],"131":[2,157],"133":[2,157],"134":[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],"162":[2,157]},{"27":[2,161],"48":[2,161],"120":[2,161],"122":[2,161]},{"3":[2,133],"26":[2,133],"49":[1,110],"57":[2,133],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,97],"3":[2,97],"26":[2,97],"27":[2,97],"49":[2,97],"57":[2,97],"59":[2,97],"77":[2,97],"79":[2,97],"82":[2,97],"94":[2,97],"99":[2,97],"107":[2,97],"110":[2,97],"111":[2,97],"112":[2,97],"115":[2,97],"117":[2,97],"124":[2,97],"127":[2,97],"130":[2,97],"131":[2,97],"133":[2,97],"134":[2,97],"137":[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]},{"1":[2,118],"3":[2,118],"26":[2,118],"27":[2,118],"49":[2,118],"57":[2,118],"59":[2,118],"70":[2,118],"71":[2,118],"72":[2,118],"73":[2,118],"76":[2,118],"77":[2,118],"78":[2,118],"79":[2,118],"82":[2,118],"90":[2,118],"92":[2,118],"94":[2,118],"99":[2,118],"107":[2,118],"110":[2,118],"111":[2,118],"112":[2,118],"115":[2,118],"117":[2,118],"124":[2,118],"127":[2,118],"130":[2,118],"131":[2,118],"133":[2,118],"134":[2,118],"137":[2,118],"138":[2,118],"139":[2,118],"140":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"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]},{"1":[2,120],"3":[2,120],"26":[2,120],"27":[2,120],"45":[2,120],"49":[2,120],"57":[2,120],"59":[2,120],"70":[2,120],"71":[2,120],"72":[2,120],"73":[2,120],"76":[2,120],"77":[2,120],"78":[2,120],"79":[2,120],"82":[2,120],"85":[2,120],"90":[2,120],"92":[2,120],"94":[2,120],"99":[2,120],"107":[2,120],"110":[2,120],"111":[2,120],"112":[2,120],"115":[2,120],"117":[2,120],"124":[2,120],"127":[2,120],"130":[2,120],"131":[2,120],"133":[2,120],"134":[2,120],"137":[2,120],"138":[2,120],"139":[2,120],"140":[2,120],"141":[2,120],"142":[2,120],"143":[2,120],"144":[2,120],"145":[2,120],"146":[2,120],"147":[2,120],"148":[2,120],"149":[2,120],"150":[2,120],"151":[2,120],"152":[2,120],"153":[2,120],"154":[2,120],"155":[2,120],"156":[2,120],"157":[2,120],"158":[2,120],"159":[2,120],"160":[2,120],"161":[2,120],"162":[2,120]},{"1":[2,154],"3":[2,154],"26":[2,154],"27":[2,154],"49":[1,110],"57":[2,154],"59":[1,125],"77":[2,154],"79":[2,154],"82":[2,154],"94":[2,154],"99":[2,154],"107":[2,154],"109":123,"110":[2,154],"111":[2,154],"112":[2,154],"115":[1,120],"117":[2,154],"124":[2,154],"127":[2,154],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,155],"3":[2,155],"26":[2,155],"27":[2,155],"49":[1,110],"57":[2,155],"59":[1,125],"77":[2,155],"79":[2,155],"82":[2,155],"94":[2,155],"99":[2,155],"107":[2,155],"109":123,"110":[2,155],"111":[2,155],"112":[2,155],"115":[1,120],"117":[2,155],"124":[2,155],"127":[2,155],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]}], +table: [{"1":[2,1],"2":1,"3":[1,2],"4":3,"5":4,"6":5,"7":7,"8":8,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,6],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[3]},{"1":[2,2],"28":88,"50":[1,57]},{"1":[2,3],"3":[1,89]},{"3":[1,90]},{"1":[2,5],"3":[2,5],"31":[2,5]},{"4":91,"6":5,"7":7,"8":8,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"31":[1,92],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,8],"3":[2,8],"31":[2,8],"51":[1,114],"61":[1,129],"109":[2,8],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,9],"31":[2,9],"109":[2,9],"111":132,"112":[1,80],"114":[1,133],"126":[1,130],"129":[1,131]},{"1":[2,14],"3":[2,14],"30":[2,14],"31":[2,14],"51":[2,14],"59":[2,14],"61":[2,14],"63":136,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"79":[2,14],"80":[1,145],"81":[2,14],"84":[2,14],"92":[1,134],"93":135,"94":[1,137],"96":[2,14],"101":[2,14],"109":[2,14],"112":[2,14],"113":[2,14],"114":[2,14],"117":[2,14],"119":[2,14],"126":[2,14],"129":[2,14],"132":[2,14],"133":[2,14],"135":[2,14],"136":[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],"3":[2,15],"30":[2,15],"31":[2,15],"51":[2,15],"59":[2,15],"61":[2,15],"79":[2,15],"81":[2,15],"84":[2,15],"96":[2,15],"101":[2,15],"109":[2,15],"112":[2,15],"113":[2,15],"114":[2,15],"117":[2,15],"119":[2,15],"126":[2,15],"129":[2,15],"132":[2,15],"133":[2,15],"135":[2,15],"136":[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],"3":[2,16],"30":[2,16],"31":[2,16],"51":[2,16],"59":[2,16],"61":[2,16],"79":[2,16],"81":[2,16],"84":[2,16],"96":[2,16],"101":[2,16],"109":[2,16],"112":[2,16],"113":[2,16],"114":[2,16],"117":[2,16],"119":[2,16],"126":[2,16],"129":[2,16],"132":[2,16],"133":[2,16],"135":[2,16],"136":[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],"3":[2,17],"30":[2,17],"31":[2,17],"51":[2,17],"59":[2,17],"61":[2,17],"79":[2,17],"81":[2,17],"84":[2,17],"96":[2,17],"101":[2,17],"109":[2,17],"112":[2,17],"113":[2,17],"114":[2,17],"117":[2,17],"119":[2,17],"126":[2,17],"129":[2,17],"132":[2,17],"133":[2,17],"135":[2,17],"136":[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],"3":[2,18],"30":[2,18],"31":[2,18],"51":[2,18],"59":[2,18],"61":[2,18],"79":[2,18],"81":[2,18],"84":[2,18],"96":[2,18],"101":[2,18],"109":[2,18],"112":[2,18],"113":[2,18],"114":[2,18],"117":[2,18],"119":[2,18],"126":[2,18],"129":[2,18],"132":[2,18],"133":[2,18],"135":[2,18],"136":[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],"3":[2,19],"30":[2,19],"31":[2,19],"51":[2,19],"59":[2,19],"61":[2,19],"79":[2,19],"81":[2,19],"84":[2,19],"96":[2,19],"101":[2,19],"109":[2,19],"112":[2,19],"113":[2,19],"114":[2,19],"117":[2,19],"119":[2,19],"126":[2,19],"129":[2,19],"132":[2,19],"133":[2,19],"135":[2,19],"136":[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],"3":[2,20],"30":[2,20],"31":[2,20],"51":[2,20],"59":[2,20],"61":[2,20],"79":[2,20],"81":[2,20],"84":[2,20],"96":[2,20],"101":[2,20],"109":[2,20],"112":[2,20],"113":[2,20],"114":[2,20],"117":[2,20],"119":[2,20],"126":[2,20],"129":[2,20],"132":[2,20],"133":[2,20],"135":[2,20],"136":[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],"3":[2,21],"30":[2,21],"31":[2,21],"51":[2,21],"59":[2,21],"61":[2,21],"79":[2,21],"81":[2,21],"84":[2,21],"96":[2,21],"101":[2,21],"109":[2,21],"112":[2,21],"113":[2,21],"114":[2,21],"117":[2,21],"119":[2,21],"126":[2,21],"129":[2,21],"132":[2,21],"133":[2,21],"135":[2,21],"136":[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],"3":[2,22],"30":[2,22],"31":[2,22],"51":[2,22],"59":[2,22],"61":[2,22],"79":[2,22],"81":[2,22],"84":[2,22],"96":[2,22],"101":[2,22],"109":[2,22],"112":[2,22],"113":[2,22],"114":[2,22],"117":[2,22],"119":[2,22],"126":[2,22],"129":[2,22],"132":[2,22],"133":[2,22],"135":[2,22],"136":[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],"3":[2,23],"30":[2,23],"31":[2,23],"51":[2,23],"59":[2,23],"61":[2,23],"79":[2,23],"81":[2,23],"84":[2,23],"96":[2,23],"101":[2,23],"109":[2,23],"112":[2,23],"113":[2,23],"114":[2,23],"117":[2,23],"119":[2,23],"126":[2,23],"129":[2,23],"132":[2,23],"133":[2,23],"135":[2,23],"136":[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],"3":[2,24],"30":[2,24],"31":[2,24],"51":[2,24],"59":[2,24],"61":[2,24],"79":[2,24],"81":[2,24],"84":[2,24],"96":[2,24],"101":[2,24],"109":[2,24],"112":[2,24],"113":[2,24],"114":[2,24],"117":[2,24],"119":[2,24],"126":[2,24],"129":[2,24],"132":[2,24],"133":[2,24],"135":[2,24],"136":[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],"3":[2,25],"30":[2,25],"31":[2,25],"51":[2,25],"59":[2,25],"61":[2,25],"79":[2,25],"81":[2,25],"84":[2,25],"96":[2,25],"101":[2,25],"109":[2,25],"112":[2,25],"113":[2,25],"114":[2,25],"117":[2,25],"119":[2,25],"126":[2,25],"129":[2,25],"132":[2,25],"133":[2,25],"135":[2,25],"136":[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],"3":[2,26],"30":[2,26],"31":[2,26],"51":[2,26],"59":[2,26],"61":[2,26],"79":[2,26],"81":[2,26],"84":[2,26],"96":[2,26],"101":[2,26],"109":[2,26],"112":[2,26],"113":[2,26],"114":[2,26],"117":[2,26],"119":[2,26],"126":[2,26],"129":[2,26],"132":[2,26],"133":[2,26],"135":[2,26],"136":[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],"3":[2,27],"30":[2,27],"31":[2,27],"51":[2,27],"59":[2,27],"61":[2,27],"79":[2,27],"81":[2,27],"84":[2,27],"96":[2,27],"101":[2,27],"109":[2,27],"112":[2,27],"113":[2,27],"114":[2,27],"117":[2,27],"119":[2,27],"126":[2,27],"129":[2,27],"132":[2,27],"133":[2,27],"135":[2,27],"136":[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],"3":[2,28],"30":[2,28],"31":[2,28],"51":[2,28],"59":[2,28],"61":[2,28],"79":[2,28],"81":[2,28],"84":[2,28],"96":[2,28],"101":[2,28],"109":[2,28],"112":[2,28],"113":[2,28],"114":[2,28],"117":[2,28],"119":[2,28],"126":[2,28],"129":[2,28],"132":[2,28],"133":[2,28],"135":[2,28],"136":[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,29],"3":[2,29],"30":[2,29],"31":[2,29],"51":[2,29],"59":[2,29],"61":[2,29],"79":[2,29],"81":[2,29],"84":[2,29],"96":[2,29],"101":[2,29],"109":[2,29],"112":[2,29],"113":[2,29],"114":[2,29],"117":[2,29],"119":[2,29],"126":[2,29],"129":[2,29],"132":[2,29],"133":[2,29],"135":[2,29],"136":[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,30],"3":[2,30],"30":[2,30],"31":[2,30],"51":[2,30],"59":[2,30],"61":[2,30],"79":[2,30],"81":[2,30],"84":[2,30],"96":[2,30],"101":[2,30],"109":[2,30],"112":[2,30],"113":[2,30],"114":[2,30],"117":[2,30],"119":[2,30],"126":[2,30],"129":[2,30],"132":[2,30],"133":[2,30],"135":[2,30],"136":[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,10],"3":[2,10],"31":[2,10],"109":[2,10],"112":[2,10],"114":[2,10],"126":[2,10],"129":[2,10]},{"1":[2,11],"3":[2,11],"31":[2,11],"109":[2,11],"112":[2,11],"114":[2,11],"126":[2,11],"129":[2,11]},{"1":[2,12],"3":[2,12],"31":[2,12],"109":[2,12],"112":[2,12],"114":[2,12],"126":[2,12],"129":[2,12]},{"1":[2,13],"3":[2,13],"31":[2,13],"109":[2,13],"112":[2,13],"114":[2,13],"126":[2,13],"129":[2,13]},{"1":[2,71],"3":[2,71],"30":[2,71],"31":[2,71],"47":[1,146],"51":[2,71],"59":[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],"96":[2,71],"101":[2,71],"109":[2,71],"112":[2,71],"113":[2,71],"114":[2,71],"117":[2,71],"119":[2,71],"126":[2,71],"129":[2,71],"132":[2,71],"133":[2,71],"135":[2,71],"136":[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],"3":[2,72],"30":[2,72],"31":[2,72],"51":[2,72],"59":[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],"96":[2,72],"101":[2,72],"109":[2,72],"112":[2,72],"113":[2,72],"114":[2,72],"117":[2,72],"119":[2,72],"126":[2,72],"129":[2,72],"132":[2,72],"133":[2,72],"135":[2,72],"136":[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,73],"3":[2,73],"30":[2,73],"31":[2,73],"51":[2,73],"59":[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],"96":[2,73],"101":[2,73],"109":[2,73],"112":[2,73],"113":[2,73],"114":[2,73],"117":[2,73],"119":[2,73],"126":[2,73],"129":[2,73],"132":[2,73],"133":[2,73],"135":[2,73],"136":[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],"3":[2,74],"30":[2,74],"31":[2,74],"51":[2,74],"59":[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],"96":[2,74],"101":[2,74],"109":[2,74],"112":[2,74],"113":[2,74],"114":[2,74],"117":[2,74],"119":[2,74],"126":[2,74],"129":[2,74],"132":[2,74],"133":[2,74],"135":[2,74],"136":[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],"3":[2,75],"30":[2,75],"31":[2,75],"51":[2,75],"59":[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],"96":[2,75],"101":[2,75],"109":[2,75],"112":[2,75],"113":[2,75],"114":[2,75],"117":[2,75],"119":[2,75],"126":[2,75],"129":[2,75],"132":[2,75],"133":[2,75],"135":[2,75],"136":[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],"3":[2,76],"30":[2,76],"31":[2,76],"51":[2,76],"59":[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],"96":[2,76],"101":[2,76],"109":[2,76],"112":[2,76],"113":[2,76],"114":[2,76],"117":[2,76],"119":[2,76],"126":[2,76],"129":[2,76],"132":[2,76],"133":[2,76],"135":[2,76],"136":[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,105],"3":[2,105],"30":[2,105],"31":[2,105],"51":[2,105],"59":[2,105],"61":[2,105],"63":148,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"79":[2,105],"80":[1,145],"81":[2,105],"84":[2,105],"93":147,"94":[1,137],"96":[2,105],"101":[2,105],"109":[2,105],"112":[2,105],"113":[2,105],"114":[2,105],"117":[2,105],"119":[2,105],"126":[2,105],"129":[2,105],"132":[2,105],"133":[2,105],"135":[2,105],"136":[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]},{"13":150,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":151,"62":152,"64":149,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"98":[1,74],"99":[1,75],"100":[1,73],"108":[1,72]},{"1":[2,107],"3":[2,107],"30":[2,107],"31":[2,107],"51":[2,107],"59":[2,107],"61":[2,107],"79":[2,107],"81":[2,107],"84":[2,107],"96":[2,107],"101":[2,107],"109":[2,107],"112":[2,107],"113":[2,107],"114":[2,107],"117":[2,107],"119":[2,107],"126":[2,107],"129":[2,107],"132":[2,107],"133":[2,107],"135":[2,107],"136":[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]},{"53":153,"54":[2,58],"58":154,"59":[2,58],"60":[1,155]},{"3":[1,157],"5":156,"30":[1,6]},{"7":158,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":160,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":161,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":162,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":163,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":164,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":165,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":166,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":167,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,172],"3":[2,172],"30":[2,172],"31":[2,172],"51":[2,172],"59":[2,172],"61":[2,172],"79":[2,172],"81":[2,172],"84":[2,172],"96":[2,172],"101":[2,172],"109":[2,172],"112":[2,172],"113":[2,172],"114":[2,172],"117":[2,172],"119":[2,172],"126":[2,172],"129":[2,172],"132":[2,172],"133":[2,172],"135":[2,172],"136":[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],"162":[2,172],"163":[2,172],"164":[2,172]},{"3":[1,157],"5":168,"30":[1,6]},{"3":[1,157],"5":169,"30":[1,6]},{"32":171,"33":[1,87],"115":170},{"7":172,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,68],"3":[2,68],"30":[2,68],"31":[2,68],"47":[2,68],"51":[2,68],"59":[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],"87":[1,173],"92":[2,68],"94":[2,68],"96":[2,68],"101":[2,68],"109":[2,68],"112":[2,68],"113":[2,68],"114":[2,68],"117":[2,68],"119":[2,68],"126":[2,68],"129":[2,68],"132":[2,68],"133":[2,68],"135":[2,68],"136":[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]},{"13":150,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":151,"62":174,"64":175,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"98":[1,74],"99":[1,75],"100":[1,73],"108":[1,72]},{"1":[2,52],"3":[2,52],"30":[2,52],"31":[2,52],"50":[2,52],"51":[2,52],"59":[2,52],"61":[2,52],"79":[2,52],"81":[2,52],"84":[2,52],"96":[2,52],"101":[2,52],"105":[2,52],"106":[2,52],"109":[2,52],"112":[2,52],"113":[2,52],"114":[2,52],"117":[2,52],"119":[2,52],"122":[2,52],"124":[2,52],"126":[2,52],"129":[2,52],"132":[2,52],"133":[2,52],"135":[2,52],"136":[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,142],"3":[2,142],"30":[2,142],"31":[2,142],"51":[2,142],"59":[2,142],"61":[2,142],"79":[2,142],"81":[2,142],"84":[2,142],"96":[2,142],"101":[2,142],"109":[2,142],"112":[2,142],"113":[2,142],"114":[2,142],"117":[2,142],"119":[2,142],"126":[2,142],"129":[2,142],"132":[2,142],"133":[2,142],"135":[2,142],"136":[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],"164":[2,142]},{"1":[2,51],"3":[2,51],"7":176,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"31":[2,51],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"109":[2,51],"110":[1,58],"111":52,"112":[2,51],"114":[1,53],"120":[1,54],"125":79,"126":[2,51],"128":50,"129":[2,51],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":177,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,69],"3":[2,69],"30":[2,69],"31":[2,69],"47":[2,69],"51":[2,69],"59":[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],"92":[2,69],"94":[2,69],"96":[2,69],"101":[2,69],"109":[2,69],"112":[2,69],"113":[2,69],"114":[2,69],"117":[2,69],"119":[2,69],"126":[2,69],"129":[2,69],"132":[2,69],"133":[2,69],"135":[2,69],"136":[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]},{"1":[2,70],"3":[2,70],"30":[2,70],"31":[2,70],"47":[2,70],"51":[2,70],"59":[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],"96":[2,70],"101":[2,70],"109":[2,70],"112":[2,70],"113":[2,70],"114":[2,70],"117":[2,70],"119":[2,70],"126":[2,70],"129":[2,70],"132":[2,70],"133":[2,70],"135":[2,70],"136":[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]},{"1":[2,37],"3":[2,37],"30":[2,37],"31":[2,37],"51":[2,37],"59":[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],"96":[2,37],"101":[2,37],"109":[2,37],"112":[2,37],"113":[2,37],"114":[2,37],"117":[2,37],"119":[2,37],"126":[2,37],"129":[2,37],"132":[2,37],"133":[2,37],"135":[2,37],"136":[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],"3":[2,38],"30":[2,38],"31":[2,38],"51":[2,38],"59":[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],"96":[2,38],"101":[2,38],"109":[2,38],"112":[2,38],"113":[2,38],"114":[2,38],"117":[2,38],"119":[2,38],"126":[2,38],"129":[2,38],"132":[2,38],"133":[2,38],"135":[2,38],"136":[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],"3":[2,39],"30":[2,39],"31":[2,39],"51":[2,39],"59":[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],"96":[2,39],"101":[2,39],"109":[2,39],"112":[2,39],"113":[2,39],"114":[2,39],"117":[2,39],"119":[2,39],"126":[2,39],"129":[2,39],"132":[2,39],"133":[2,39],"135":[2,39],"136":[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],"3":[2,40],"30":[2,40],"31":[2,40],"51":[2,40],"59":[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],"96":[2,40],"101":[2,40],"109":[2,40],"112":[2,40],"113":[2,40],"114":[2,40],"117":[2,40],"119":[2,40],"126":[2,40],"129":[2,40],"132":[2,40],"133":[2,40],"135":[2,40],"136":[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],"3":[2,41],"30":[2,41],"31":[2,41],"51":[2,41],"59":[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],"96":[2,41],"101":[2,41],"109":[2,41],"112":[2,41],"113":[2,41],"114":[2,41],"117":[2,41],"119":[2,41],"126":[2,41],"129":[2,41],"132":[2,41],"133":[2,41],"135":[2,41],"136":[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],"3":[2,42],"30":[2,42],"31":[2,42],"51":[2,42],"59":[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],"96":[2,42],"101":[2,42],"109":[2,42],"112":[2,42],"113":[2,42],"114":[2,42],"117":[2,42],"119":[2,42],"126":[2,42],"129":[2,42],"132":[2,42],"133":[2,42],"135":[2,42],"136":[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],"3":[2,43],"30":[2,43],"31":[2,43],"51":[2,43],"59":[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],"96":[2,43],"101":[2,43],"109":[2,43],"112":[2,43],"113":[2,43],"114":[2,43],"117":[2,43],"119":[2,43],"126":[2,43],"129":[2,43],"132":[2,43],"133":[2,43],"135":[2,43],"136":[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]},{"1":[2,44],"3":[2,44],"30":[2,44],"31":[2,44],"51":[2,44],"59":[2,44],"61":[2,44],"72":[2,44],"73":[2,44],"74":[2,44],"75":[2,44],"78":[2,44],"79":[2,44],"80":[2,44],"81":[2,44],"84":[2,44],"92":[2,44],"94":[2,44],"96":[2,44],"101":[2,44],"109":[2,44],"112":[2,44],"113":[2,44],"114":[2,44],"117":[2,44],"119":[2,44],"126":[2,44],"129":[2,44],"132":[2,44],"133":[2,44],"135":[2,44],"136":[2,44],"139":[2,44],"140":[2,44],"141":[2,44],"142":[2,44],"143":[2,44],"144":[2,44],"145":[2,44],"146":[2,44],"147":[2,44],"148":[2,44],"149":[2,44],"150":[2,44],"151":[2,44],"152":[2,44],"153":[2,44],"154":[2,44],"155":[2,44],"156":[2,44],"157":[2,44],"158":[2,44],"159":[2,44],"160":[2,44],"161":[2,44],"162":[2,44],"163":[2,44],"164":[2,44]},{"1":[2,45],"3":[2,45],"30":[2,45],"31":[2,45],"51":[2,45],"59":[2,45],"61":[2,45],"72":[2,45],"73":[2,45],"74":[2,45],"75":[2,45],"78":[2,45],"79":[2,45],"80":[2,45],"81":[2,45],"84":[2,45],"92":[2,45],"94":[2,45],"96":[2,45],"101":[2,45],"109":[2,45],"112":[2,45],"113":[2,45],"114":[2,45],"117":[2,45],"119":[2,45],"126":[2,45],"129":[2,45],"132":[2,45],"133":[2,45],"135":[2,45],"136":[2,45],"139":[2,45],"140":[2,45],"141":[2,45],"142":[2,45],"143":[2,45],"144":[2,45],"145":[2,45],"146":[2,45],"147":[2,45],"148":[2,45],"149":[2,45],"150":[2,45],"151":[2,45],"152":[2,45],"153":[2,45],"154":[2,45],"155":[2,45],"156":[2,45],"157":[2,45],"158":[2,45],"159":[2,45],"160":[2,45],"161":[2,45],"162":[2,45],"163":[2,45],"164":[2,45]},{"6":178,"7":7,"8":8,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"3":[2,125],"7":179,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,181],"31":[2,125],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"59":[2,125],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"95":180,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"101":[2,125],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,116],"3":[2,116],"30":[2,116],"31":[2,116],"51":[2,116],"59":[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],"96":[2,116],"101":[2,116],"109":[2,116],"112":[2,116],"113":[2,116],"114":[2,116],"117":[2,116],"119":[2,116],"126":[2,116],"129":[2,116],"132":[2,116],"133":[2,116],"135":[2,116],"136":[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]},{"1":[2,117],"3":[2,117],"30":[2,117],"31":[2,117],"32":182,"33":[1,87],"51":[2,117],"59":[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],"92":[2,117],"94":[2,117],"96":[2,117],"101":[2,117],"109":[2,117],"112":[2,117],"113":[2,117],"114":[2,117],"117":[2,117],"119":[2,117],"126":[2,117],"129":[2,117],"132":[2,117],"133":[2,117],"135":[2,117],"136":[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]},{"94":[1,183]},{"3":[2,56],"30":[2,56]},{"3":[2,57],"30":[2,57]},{"1":[2,169],"3":[2,169],"30":[2,169],"31":[2,169],"51":[2,169],"59":[2,169],"61":[2,169],"79":[2,169],"81":[2,169],"84":[2,169],"96":[2,169],"101":[2,169],"109":[2,169],"112":[2,169],"113":[2,169],"114":[2,169],"117":[2,169],"119":[2,169],"122":[1,184],"126":[2,169],"127":185,"129":[2,169],"132":[2,169],"133":[2,169],"135":[2,169],"136":[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]},{"7":186,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,64],"3":[2,64],"30":[2,64],"31":[2,64],"47":[2,64],"51":[2,64],"59":[2,64],"61":[2,64],"72":[2,64],"73":[2,64],"74":[2,64],"75":[2,64],"78":[2,64],"79":[2,64],"80":[2,64],"81":[2,64],"84":[2,64],"87":[2,64],"92":[2,64],"94":[2,64],"96":[2,64],"101":[2,64],"109":[2,64],"112":[2,64],"113":[2,64],"114":[2,64],"117":[2,64],"119":[2,64],"126":[2,64],"129":[2,64],"132":[2,64],"133":[2,64],"135":[2,64],"136":[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],"162":[2,64],"163":[2,64],"164":[2,64]},{"1":[2,67],"3":[2,67],"30":[2,67],"31":[2,67],"47":[2,67],"51":[2,67],"59":[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],"87":[2,67],"92":[2,67],"94":[2,67],"96":[2,67],"101":[2,67],"109":[2,67],"112":[2,67],"113":[2,67],"114":[2,67],"117":[2,67],"119":[2,67],"126":[2,67],"129":[2,67],"132":[2,67],"133":[2,67],"135":[2,67],"136":[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]},{"3":[2,89],"28":193,"30":[1,190],"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":189,"50":[1,57],"59":[2,89],"83":187,"84":[2,89],"85":188},{"1":[2,35],"3":[2,35],"30":[2,35],"31":[2,35],"47":[2,35],"51":[2,35],"59":[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],"96":[2,35],"101":[2,35],"109":[2,35],"112":[2,35],"113":[2,35],"114":[2,35],"117":[2,35],"119":[2,35],"126":[2,35],"129":[2,35],"132":[2,35],"133":[2,35],"135":[2,35],"136":[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],"3":[2,36],"30":[2,36],"31":[2,36],"47":[2,36],"51":[2,36],"59":[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],"96":[2,36],"101":[2,36],"109":[2,36],"112":[2,36],"113":[2,36],"114":[2,36],"117":[2,36],"119":[2,36],"126":[2,36],"129":[2,36],"132":[2,36],"133":[2,36],"135":[2,36],"136":[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]},{"7":194,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,34],"3":[2,34],"30":[2,34],"31":[2,34],"47":[2,34],"51":[2,34],"59":[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],"87":[2,34],"92":[2,34],"94":[2,34],"96":[2,34],"101":[2,34],"109":[2,34],"112":[2,34],"113":[2,34],"114":[2,34],"117":[2,34],"118":[2,34],"119":[2,34],"126":[2,34],"129":[2,34],"132":[2,34],"133":[2,34],"135":[2,34],"136":[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,33],"3":[2,33],"30":[2,33],"31":[2,33],"50":[2,33],"51":[2,33],"59":[2,33],"61":[2,33],"79":[2,33],"81":[2,33],"84":[2,33],"96":[2,33],"101":[2,33],"105":[2,33],"106":[2,33],"109":[2,33],"112":[2,33],"113":[2,33],"114":[2,33],"117":[2,33],"119":[2,33],"122":[2,33],"124":[2,33],"126":[2,33],"129":[2,33],"132":[2,33],"133":[2,33],"135":[2,33],"136":[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,7],"3":[2,7],"6":195,"7":7,"8":8,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"31":[2,7],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,4]},{"3":[1,89],"31":[1,196]},{"1":[2,32],"3":[2,32],"30":[2,32],"31":[2,32],"50":[2,32],"51":[2,32],"59":[2,32],"61":[2,32],"79":[2,32],"81":[2,32],"84":[2,32],"96":[2,32],"101":[2,32],"105":[2,32],"106":[2,32],"109":[2,32],"112":[2,32],"113":[2,32],"114":[2,32],"117":[2,32],"119":[2,32],"122":[2,32],"124":[2,32],"126":[2,32],"129":[2,32],"132":[2,32],"133":[2,32],"135":[2,32],"136":[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,186],"3":[2,186],"30":[2,186],"31":[2,186],"51":[2,186],"59":[2,186],"61":[2,186],"79":[2,186],"81":[2,186],"84":[2,186],"96":[2,186],"101":[2,186],"109":[2,186],"112":[2,186],"113":[2,186],"114":[2,186],"117":[2,186],"119":[2,186],"126":[2,186],"129":[2,186],"132":[2,186],"133":[2,186],"135":[2,186],"136":[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],"3":[2,187],"30":[2,187],"31":[2,187],"51":[2,187],"59":[2,187],"61":[2,187],"79":[2,187],"81":[2,187],"84":[2,187],"96":[2,187],"101":[2,187],"109":[2,187],"112":[2,187],"113":[2,187],"114":[2,187],"117":[2,187],"119":[2,187],"126":[2,187],"129":[2,187],"132":[2,187],"133":[2,187],"135":[2,187],"136":[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]},{"7":197,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":198,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":199,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":200,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":201,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":202,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":203,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":204,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":205,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":206,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":207,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":208,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":209,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":210,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":211,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":212,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":213,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":214,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":215,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,53],"3":[2,53],"7":216,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[2,53],"31":[2,53],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"51":[2,53],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"59":[2,53],"61":[2,53],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"79":[2,53],"81":[2,53],"82":[1,83],"84":[2,53],"86":[1,56],"90":[1,37],"91":38,"96":[2,53],"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"101":[2,53],"103":[1,51],"107":[1,60],"108":[1,72],"109":[2,53],"110":[1,58],"111":52,"112":[2,53],"113":[2,53],"114":[2,53],"117":[2,53],"119":[2,53],"120":[1,54],"125":79,"126":[2,53],"128":50,"129":[2,53],"130":[1,41],"131":[1,42],"132":[2,53],"133":[2,53],"134":[1,45],"135":[2,53],"136":[2,53],"137":[1,48],"138":[1,49],"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]},{"7":217,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":218,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":219,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":220,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":221,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":222,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":223,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":224,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":225,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":226,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":227,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":228,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,147],"3":[2,147],"30":[2,147],"31":[2,147],"51":[2,147],"59":[2,147],"61":[2,147],"79":[2,147],"81":[2,147],"84":[2,147],"96":[2,147],"101":[2,147],"109":[2,147],"112":[2,147],"113":[2,147],"114":[2,147],"117":[2,147],"119":[2,147],"126":[2,147],"129":[2,147],"132":[2,147],"133":[2,147],"135":[2,147],"136":[2,147],"139":[2,147],"140":[2,147],"141":[2,147],"142":[2,147],"143":[2,147],"144":[2,147],"145":[2,147],"146":[2,147],"147":[2,147],"148":[2,147],"149":[2,147],"150":[2,147],"151":[2,147],"152":[2,147],"153":[2,147],"154":[2,147],"155":[2,147],"156":[2,147],"157":[2,147],"158":[2,147],"159":[2,147],"160":[2,147],"161":[2,147],"162":[2,147],"163":[2,147],"164":[2,147]},{"32":171,"33":[1,87],"115":229},{"61":[1,230]},{"7":231,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":232,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,146],"3":[2,146],"30":[2,146],"31":[2,146],"51":[2,146],"59":[2,146],"61":[2,146],"79":[2,146],"81":[2,146],"84":[2,146],"96":[2,146],"101":[2,146],"109":[2,146],"112":[2,146],"113":[2,146],"114":[2,146],"117":[2,146],"119":[2,146],"126":[2,146],"129":[2,146],"132":[2,146],"133":[2,146],"135":[2,146],"136":[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],"164":[2,146]},{"32":171,"33":[1,87],"115":233},{"93":234,"94":[1,137]},{"1":[2,110],"3":[2,110],"30":[2,110],"31":[2,110],"51":[2,110],"59":[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],"94":[2,110],"96":[2,110],"101":[2,110],"109":[2,110],"112":[2,110],"113":[2,110],"114":[2,110],"117":[2,110],"119":[2,110],"126":[2,110],"129":[2,110],"132":[2,110],"133":[2,110],"135":[2,110],"136":[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]},{"1":[2,65],"3":[2,65],"30":[2,65],"31":[2,65],"47":[2,65],"51":[2,65],"59":[2,65],"61":[2,65],"72":[2,65],"73":[2,65],"74":[2,65],"75":[2,65],"78":[2,65],"79":[2,65],"80":[2,65],"81":[2,65],"84":[2,65],"87":[2,65],"92":[2,65],"94":[2,65],"96":[2,65],"101":[2,65],"109":[2,65],"112":[2,65],"113":[2,65],"114":[2,65],"117":[2,65],"119":[2,65],"126":[2,65],"129":[2,65],"132":[2,65],"133":[2,65],"135":[2,65],"136":[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]},{"3":[2,125],"7":236,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,181],"31":[2,125],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"59":[2,125],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"95":235,"96":[2,125],"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"32":237,"33":[1,87]},{"32":238,"33":[1,87]},{"1":[2,79],"3":[2,79],"30":[2,79],"31":[2,79],"47":[2,79],"51":[2,79],"59":[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],"87":[2,79],"92":[2,79],"94":[2,79],"96":[2,79],"101":[2,79],"109":[2,79],"112":[2,79],"113":[2,79],"114":[2,79],"117":[2,79],"119":[2,79],"126":[2,79],"129":[2,79],"132":[2,79],"133":[2,79],"135":[2,79],"136":[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]},{"32":239,"33":[1,87]},{"1":[2,81],"3":[2,81],"30":[2,81],"31":[2,81],"47":[2,81],"51":[2,81],"59":[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],"87":[2,81],"92":[2,81],"94":[2,81],"96":[2,81],"101":[2,81],"109":[2,81],"112":[2,81],"113":[2,81],"114":[2,81],"117":[2,81],"119":[2,81],"126":[2,81],"129":[2,81],"132":[2,81],"133":[2,81],"135":[2,81],"136":[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]},{"1":[2,82],"3":[2,82],"30":[2,82],"31":[2,82],"47":[2,82],"51":[2,82],"59":[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],"87":[2,82],"92":[2,82],"94":[2,82],"96":[2,82],"101":[2,82],"109":[2,82],"112":[2,82],"113":[2,82],"114":[2,82],"117":[2,82],"119":[2,82],"126":[2,82],"129":[2,82],"132":[2,82],"133":[2,82],"135":[2,82],"136":[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]},{"7":240,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":241,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":242,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,111],"3":[2,111],"30":[2,111],"31":[2,111],"51":[2,111],"59":[2,111],"61":[2,111],"72":[2,111],"73":[2,111],"74":[2,111],"75":[2,111],"78":[2,111],"79":[2,111],"80":[2,111],"81":[2,111],"84":[2,111],"94":[2,111],"96":[2,111],"101":[2,111],"109":[2,111],"112":[2,111],"113":[2,111],"114":[2,111],"117":[2,111],"119":[2,111],"126":[2,111],"129":[2,111],"132":[2,111],"133":[2,111],"135":[2,111],"136":[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]},{"1":[2,66],"3":[2,66],"30":[2,66],"31":[2,66],"47":[2,66],"51":[2,66],"59":[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],"87":[2,66],"92":[2,66],"94":[2,66],"96":[2,66],"101":[2,66],"109":[2,66],"112":[2,66],"113":[2,66],"114":[2,66],"117":[2,66],"119":[2,66],"126":[2,66],"129":[2,66],"132":[2,66],"133":[2,66],"135":[2,66],"136":[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,106],"3":[2,106],"30":[2,106],"31":[2,106],"51":[2,106],"59":[2,106],"61":[2,106],"63":148,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"79":[2,106],"80":[1,145],"81":[2,106],"84":[2,106],"93":147,"94":[1,137],"96":[2,106],"101":[2,106],"109":[2,106],"112":[2,106],"113":[2,106],"114":[2,106],"117":[2,106],"119":[2,106],"126":[2,106],"129":[2,106],"132":[2,106],"133":[2,106],"135":[2,106],"136":[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]},{"63":136,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"80":[1,145],"93":135,"94":[1,137]},{"1":[2,71],"3":[2,71],"30":[2,71],"31":[2,71],"51":[2,71],"59":[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],"94":[2,71],"96":[2,71],"101":[2,71],"109":[2,71],"112":[2,71],"113":[2,71],"114":[2,71],"117":[2,71],"119":[2,71],"126":[2,71],"129":[2,71],"132":[2,71],"133":[2,71],"135":[2,71],"136":[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,68],"3":[2,68],"30":[2,68],"31":[2,68],"51":[2,68],"59":[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],"94":[2,68],"96":[2,68],"101":[2,68],"109":[2,68],"112":[2,68],"113":[2,68],"114":[2,68],"117":[2,68],"119":[2,68],"126":[2,68],"129":[2,68],"132":[2,68],"133":[2,68],"135":[2,68],"136":[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]},{"54":[1,243],"59":[1,244]},{"54":[2,59],"59":[2,59],"61":[1,245]},{"54":[2,61],"59":[2,61],"61":[2,61]},{"1":[2,55],"3":[2,55],"30":[2,55],"31":[2,55],"51":[2,55],"59":[2,55],"61":[2,55],"79":[2,55],"81":[2,55],"84":[2,55],"96":[2,55],"101":[2,55],"109":[2,55],"112":[2,55],"113":[2,55],"114":[2,55],"117":[2,55],"119":[2,55],"126":[2,55],"129":[2,55],"132":[2,55],"133":[2,55],"135":[2,55],"136":[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,"50":[1,57]},{"1":[2,177],"3":[2,177],"30":[2,177],"31":[2,177],"51":[1,114],"59":[2,177],"61":[2,177],"79":[2,177],"81":[2,177],"84":[2,177],"96":[2,177],"101":[2,177],"109":[2,177],"111":127,"112":[2,177],"113":[2,177],"114":[2,177],"117":[2,177],"119":[2,177],"126":[2,177],"129":[2,177],"132":[2,177],"133":[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]},{"111":132,"112":[1,80],"114":[1,133],"126":[1,130],"129":[1,131]},{"1":[2,178],"3":[2,178],"30":[2,178],"31":[2,178],"51":[1,114],"59":[2,178],"61":[2,178],"79":[2,178],"81":[2,178],"84":[2,178],"96":[2,178],"101":[2,178],"109":[2,178],"111":127,"112":[2,178],"113":[2,178],"114":[2,178],"117":[2,178],"119":[2,178],"126":[2,178],"129":[2,178],"132":[2,178],"133":[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],"3":[2,179],"30":[2,179],"31":[2,179],"51":[1,114],"59":[2,179],"61":[2,179],"79":[2,179],"81":[2,179],"84":[2,179],"96":[2,179],"101":[2,179],"109":[2,179],"111":127,"112":[2,179],"113":[2,179],"114":[2,179],"117":[2,179],"119":[2,179],"126":[2,179],"129":[2,179],"132":[2,179],"133":[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],"3":[2,180],"30":[2,180],"31":[2,180],"51":[1,114],"59":[2,180],"61":[2,180],"79":[2,180],"81":[2,180],"84":[2,180],"96":[2,180],"101":[2,180],"109":[2,180],"111":127,"112":[2,180],"113":[2,180],"114":[2,180],"117":[2,180],"119":[2,180],"126":[2,180],"129":[2,180],"132":[2,180],"133":[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],"3":[2,181],"30":[2,181],"31":[2,181],"51":[1,114],"59":[2,181],"61":[2,181],"79":[2,181],"81":[2,181],"84":[2,181],"96":[2,181],"101":[2,181],"109":[2,181],"111":127,"112":[2,181],"113":[2,181],"114":[2,181],"117":[2,181],"119":[2,181],"126":[2,181],"129":[2,181],"132":[2,181],"133":[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],"3":[2,182],"30":[2,182],"31":[2,182],"51":[1,114],"59":[2,182],"61":[2,182],"79":[2,182],"81":[2,182],"84":[2,182],"96":[2,182],"101":[2,182],"109":[2,182],"111":127,"112":[2,182],"113":[2,182],"114":[2,182],"117":[2,182],"119":[2,182],"126":[2,182],"129":[2,182],"132":[2,182],"133":[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],"164":[2,182]},{"1":[2,183],"3":[2,183],"30":[2,183],"31":[2,183],"51":[1,114],"59":[2,183],"61":[2,183],"79":[2,183],"81":[2,183],"84":[2,183],"96":[2,183],"101":[2,183],"109":[2,183],"111":127,"112":[2,183],"113":[2,183],"114":[2,183],"117":[2,183],"119":[2,183],"126":[2,183],"129":[2,183],"132":[2,183],"133":[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],"162":[2,183],"163":[2,183],"164":[2,183]},{"1":[2,184],"3":[2,184],"30":[2,184],"31":[2,184],"51":[1,114],"59":[2,184],"61":[2,184],"79":[2,184],"81":[2,184],"84":[2,184],"96":[2,184],"101":[2,184],"109":[2,184],"111":127,"112":[2,184],"113":[2,184],"114":[2,184],"117":[2,184],"119":[2,184],"126":[2,184],"129":[2,184],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"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":[1,123]},{"1":[2,185],"3":[2,185],"30":[2,185],"31":[2,185],"51":[1,114],"59":[2,185],"61":[2,185],"79":[2,185],"81":[2,185],"84":[2,185],"96":[2,185],"101":[2,185],"109":[2,185],"111":127,"112":[2,185],"113":[2,185],"114":[2,185],"117":[2,185],"119":[2,185],"126":[2,185],"129":[2,185],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"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":[1,123]},{"104":246,"105":[1,247],"106":[1,248]},{"1":[2,145],"3":[2,145],"30":[2,145],"31":[2,145],"51":[2,145],"59":[2,145],"61":[2,145],"79":[2,145],"81":[2,145],"84":[2,145],"96":[2,145],"101":[2,145],"109":[2,145],"112":[2,145],"113":[2,145],"114":[2,145],"117":[2,145],"119":[2,145],"126":[2,145],"129":[2,145],"132":[2,145],"133":[2,145],"135":[2,145],"136":[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]},{"116":249,"117":[1,250],"118":[1,251]},{"59":[1,252],"117":[2,151],"118":[2,151]},{"30":[1,253],"51":[1,114],"61":[1,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"13":254,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":151,"62":152,"64":175,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"98":[1,74],"99":[1,75],"100":[1,73],"108":[1,72]},{"1":[2,96],"3":[2,96],"30":[1,256],"31":[2,96],"51":[2,96],"59":[2,96],"61":[2,96],"72":[2,68],"73":[2,68],"74":[2,68],"75":[2,68],"78":[2,68],"79":[2,96],"80":[2,68],"81":[2,96],"84":[2,96],"87":[1,255],"94":[2,68],"96":[2,96],"101":[2,96],"109":[2,96],"112":[2,96],"113":[2,96],"114":[2,96],"117":[2,96],"119":[2,96],"126":[2,96],"129":[2,96],"132":[2,96],"133":[2,96],"135":[2,96],"136":[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]},{"63":148,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"80":[1,145],"93":147,"94":[1,137]},{"1":[2,50],"3":[2,50],"31":[2,50],"51":[1,114],"61":[1,129],"109":[2,50],"111":127,"112":[2,50],"114":[1,128],"117":[1,124],"126":[2,50],"129":[2,50],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,140],"3":[2,140],"31":[2,140],"51":[1,114],"61":[1,129],"109":[2,140],"111":127,"112":[2,140],"114":[2,140],"117":[1,124],"126":[2,140],"129":[2,140],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"109":[1,257]},{"3":[2,126],"31":[2,126],"51":[1,114],"59":[2,126],"61":[1,258],"101":[2,126],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"3":[1,261],"31":[1,262],"59":[1,260],"101":[1,259]},{"7":263,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,118],"3":[2,118],"30":[2,118],"31":[2,118],"47":[2,118],"51":[2,118],"59":[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],"87":[2,118],"92":[2,118],"94":[2,118],"96":[2,118],"101":[2,118],"109":[2,118],"112":[2,118],"113":[2,118],"114":[2,118],"117":[2,118],"119":[2,118],"126":[2,118],"129":[2,118],"132":[2,118],"133":[2,118],"135":[2,118],"136":[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]},{"3":[2,125],"7":236,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,181],"31":[2,125],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"59":[2,125],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"95":264,"96":[2,125],"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"3":[1,157],"5":265,"30":[1,6],"126":[1,266]},{"1":[2,168],"3":[2,168],"30":[2,168],"31":[2,168],"51":[2,168],"59":[2,168],"61":[2,168],"79":[2,168],"81":[2,168],"84":[2,168],"96":[2,168],"101":[2,168],"109":[2,168],"112":[2,168],"113":[2,168],"114":[2,168],"117":[2,168],"119":[2,168],"122":[2,168],"126":[2,168],"129":[2,168],"132":[2,168],"133":[2,168],"135":[2,168],"136":[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,143],"3":[2,143],"30":[2,143],"31":[2,143],"51":[1,114],"59":[2,143],"61":[1,129],"79":[2,143],"81":[2,143],"84":[2,143],"96":[2,143],"101":[2,143],"109":[2,143],"111":127,"112":[1,80],"113":[1,267],"114":[1,128],"117":[1,124],"119":[2,143],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"3":[1,270],"59":[1,269],"84":[1,268]},{"59":[1,272],"84":[1,271]},{"3":[2,90],"31":[2,90],"59":[2,90],"84":[2,90]},{"3":[2,89],"28":193,"31":[2,89],"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":189,"50":[1,57],"59":[2,89],"83":273},{"47":[1,274]},{"47":[1,275]},{"3":[2,49],"31":[2,49],"59":[2,49],"84":[2,49]},{"3":[1,157],"5":276,"30":[1,6],"51":[1,114],"61":[1,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,6],"3":[2,6],"31":[2,6]},{"1":[2,31],"3":[2,31],"30":[2,31],"31":[2,31],"50":[2,31],"51":[2,31],"59":[2,31],"61":[2,31],"79":[2,31],"81":[2,31],"84":[2,31],"96":[2,31],"101":[2,31],"105":[2,31],"106":[2,31],"109":[2,31],"112":[2,31],"113":[2,31],"114":[2,31],"117":[2,31],"119":[2,31],"122":[2,31],"124":[2,31],"126":[2,31],"129":[2,31],"132":[2,31],"133":[2,31],"135":[2,31],"136":[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,188],"3":[2,188],"30":[2,188],"31":[2,188],"51":[1,114],"59":[2,188],"61":[2,188],"79":[2,188],"81":[2,188],"84":[2,188],"96":[2,188],"101":[2,188],"109":[2,188],"111":127,"112":[2,188],"113":[2,188],"114":[2,188],"117":[2,188],"119":[2,188],"126":[2,188],"129":[2,188],"132":[2,188],"133":[2,188],"135":[1,93],"136":[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],"162":[2,188],"163":[2,188],"164":[2,188]},{"1":[2,189],"3":[2,189],"30":[2,189],"31":[2,189],"51":[1,114],"59":[2,189],"61":[2,189],"79":[2,189],"81":[2,189],"84":[2,189],"96":[2,189],"101":[2,189],"109":[2,189],"111":127,"112":[2,189],"113":[2,189],"114":[2,189],"117":[2,189],"119":[2,189],"126":[2,189],"129":[2,189],"132":[2,189],"133":[2,189],"135":[1,93],"136":[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],"162":[2,189],"163":[2,189],"164":[2,189]},{"1":[2,190],"3":[2,190],"30":[2,190],"31":[2,190],"51":[1,114],"59":[2,190],"61":[2,190],"79":[2,190],"81":[2,190],"84":[2,190],"96":[2,190],"101":[2,190],"109":[2,190],"111":127,"112":[2,190],"113":[2,190],"114":[2,190],"117":[2,190],"119":[2,190],"126":[2,190],"129":[2,190],"132":[2,190],"133":[2,190],"135":[1,93],"136":[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],"162":[2,190],"163":[2,190],"164":[2,190]},{"1":[2,191],"3":[2,191],"30":[2,191],"31":[2,191],"51":[1,114],"59":[2,191],"61":[2,191],"79":[2,191],"81":[2,191],"84":[2,191],"96":[2,191],"101":[2,191],"109":[2,191],"111":127,"112":[2,191],"113":[2,191],"114":[2,191],"117":[2,191],"119":[2,191],"126":[2,191],"129":[2,191],"132":[2,191],"133":[2,191],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"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],"3":[2,192],"30":[2,192],"31":[2,192],"51":[1,114],"59":[2,192],"61":[2,192],"79":[2,192],"81":[2,192],"84":[2,192],"96":[2,192],"101":[2,192],"109":[2,192],"111":127,"112":[2,192],"113":[2,192],"114":[2,192],"117":[2,192],"119":[2,192],"126":[2,192],"129":[2,192],"132":[2,192],"133":[2,192],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"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],"3":[2,193],"30":[2,193],"31":[2,193],"51":[1,114],"59":[2,193],"61":[2,193],"79":[2,193],"81":[2,193],"84":[2,193],"96":[2,193],"101":[2,193],"109":[2,193],"111":127,"112":[2,193],"113":[2,193],"114":[2,193],"117":[2,193],"119":[2,193],"126":[2,193],"129":[2,193],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"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],"3":[2,194],"30":[2,194],"31":[2,194],"51":[1,114],"59":[2,194],"61":[2,194],"79":[2,194],"81":[2,194],"84":[2,194],"96":[2,194],"101":[2,194],"109":[2,194],"111":127,"112":[2,194],"113":[2,194],"114":[2,194],"117":[2,194],"119":[2,194],"126":[2,194],"129":[2,194],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"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],"164":[2,194]},{"1":[2,195],"3":[2,195],"30":[2,195],"31":[2,195],"51":[1,114],"59":[2,195],"61":[2,195],"79":[2,195],"81":[2,195],"84":[2,195],"96":[2,195],"101":[2,195],"109":[2,195],"111":127,"112":[2,195],"113":[2,195],"114":[2,195],"117":[2,195],"119":[2,195],"126":[2,195],"129":[2,195],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[2,195],"143":[2,195],"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],"3":[2,196],"30":[2,196],"31":[2,196],"51":[1,114],"59":[2,196],"61":[2,196],"79":[2,196],"81":[2,196],"84":[2,196],"96":[2,196],"101":[2,196],"109":[2,196],"111":127,"112":[2,196],"113":[2,196],"114":[2,196],"117":[2,196],"119":[2,196],"126":[2,196],"129":[2,196],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"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],"162":[2,196],"163":[2,196],"164":[2,196]},{"1":[2,197],"3":[2,197],"30":[2,197],"31":[2,197],"51":[1,114],"59":[2,197],"61":[2,197],"79":[2,197],"81":[2,197],"84":[2,197],"96":[2,197],"101":[2,197],"109":[2,197],"111":127,"112":[2,197],"113":[2,197],"114":[2,197],"117":[2,197],"119":[2,197],"126":[2,197],"129":[2,197],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"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],"162":[2,197],"163":[2,197],"164":[2,197]},{"1":[2,198],"3":[2,198],"30":[2,198],"31":[2,198],"51":[1,114],"59":[2,198],"61":[2,198],"79":[2,198],"81":[2,198],"84":[2,198],"96":[2,198],"101":[2,198],"109":[2,198],"111":127,"112":[2,198],"113":[2,198],"114":[2,198],"117":[2,198],"119":[2,198],"126":[2,198],"129":[2,198],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,198],"146":[2,198],"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],"3":[2,199],"30":[2,199],"31":[2,199],"51":[1,114],"59":[2,199],"61":[2,199],"79":[2,199],"81":[2,199],"84":[2,199],"96":[2,199],"101":[2,199],"109":[2,199],"111":127,"112":[2,199],"113":[2,199],"114":[2,199],"117":[2,199],"119":[2,199],"126":[2,199],"129":[2,199],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"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],"3":[2,200],"30":[2,200],"31":[2,200],"51":[1,114],"59":[2,200],"61":[2,200],"79":[2,200],"81":[2,200],"84":[2,200],"96":[2,200],"101":[2,200],"109":[2,200],"111":127,"112":[2,200],"113":[2,200],"114":[2,200],"117":[2,200],"119":[2,200],"126":[2,200],"129":[2,200],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"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],"3":[2,201],"30":[2,201],"31":[2,201],"51":[1,114],"59":[2,201],"61":[2,201],"79":[2,201],"81":[2,201],"84":[2,201],"96":[2,201],"101":[2,201],"109":[2,201],"111":127,"112":[2,201],"113":[2,201],"114":[2,201],"117":[2,201],"119":[2,201],"126":[2,201],"129":[2,201],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"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],"164":[2,201]},{"1":[2,202],"3":[2,202],"30":[2,202],"31":[2,202],"51":[1,114],"59":[2,202],"61":[2,202],"79":[2,202],"81":[2,202],"84":[2,202],"96":[2,202],"101":[2,202],"109":[2,202],"111":127,"112":[2,202],"113":[2,202],"114":[2,202],"117":[2,202],"119":[2,202],"126":[2,202],"129":[2,202],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"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],"162":[2,202],"163":[2,202],"164":[2,202]},{"1":[2,203],"3":[2,203],"30":[2,203],"31":[2,203],"51":[1,114],"59":[2,203],"61":[2,203],"79":[2,203],"81":[2,203],"84":[2,203],"96":[2,203],"101":[2,203],"109":[2,203],"111":127,"112":[2,203],"113":[2,203],"114":[2,203],"117":[2,203],"119":[2,203],"126":[2,203],"129":[2,203],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[2,203],"153":[2,203],"154":[2,203],"155":[2,203],"156":[2,203],"157":[2,203],"158":[2,203],"159":[2,203],"160":[2,203],"161":[2,203],"162":[2,203],"163":[2,203],"164":[1,123]},{"1":[2,204],"3":[2,204],"30":[2,204],"31":[2,204],"51":[1,114],"59":[2,204],"61":[2,204],"79":[2,204],"81":[2,204],"84":[2,204],"96":[2,204],"101":[2,204],"109":[2,204],"111":127,"112":[2,204],"113":[2,204],"114":[2,204],"117":[2,204],"119":[2,204],"126":[2,204],"129":[2,204],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[2,204],"153":[2,204],"154":[2,204],"155":[2,204],"156":[2,204],"157":[2,204],"158":[2,204],"159":[2,204],"160":[2,204],"161":[2,204],"162":[2,204],"163":[2,204],"164":[1,123]},{"1":[2,205],"3":[2,205],"30":[2,205],"31":[2,205],"51":[1,114],"59":[2,205],"61":[2,205],"79":[2,205],"81":[2,205],"84":[2,205],"96":[2,205],"101":[2,205],"109":[2,205],"111":127,"112":[2,205],"113":[2,205],"114":[2,205],"117":[2,205],"119":[2,205],"126":[2,205],"129":[2,205],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"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],"3":[2,206],"30":[2,206],"31":[2,206],"51":[1,114],"59":[2,206],"61":[2,206],"79":[2,206],"81":[2,206],"84":[2,206],"96":[2,206],"101":[2,206],"109":[2,206],"111":127,"112":[2,206],"113":[2,206],"114":[2,206],"117":[2,206],"119":[2,206],"126":[2,206],"129":[2,206],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"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],"164":[1,123]},{"1":[2,207],"3":[2,207],"30":[2,207],"31":[2,207],"51":[2,207],"59":[2,207],"61":[2,207],"79":[2,207],"81":[2,207],"84":[2,207],"96":[2,207],"101":[2,207],"109":[2,207],"111":127,"112":[2,207],"113":[2,207],"114":[2,207],"117":[2,207],"119":[2,207],"126":[2,207],"129":[2,207],"132":[2,207],"133":[2,207],"135":[2,207],"136":[2,207],"139":[2,207],"140":[2,207],"141":[2,207],"142":[2,207],"143":[2,207],"144":[2,207],"145":[2,207],"146":[2,207],"147":[2,207],"148":[2,207],"149":[2,207],"150":[2,207],"151":[2,207],"152":[2,207],"153":[2,207],"154":[2,207],"155":[2,207],"156":[2,207],"157":[2,207],"158":[2,207],"159":[2,207],"160":[2,207],"161":[2,207],"162":[2,207],"163":[2,207],"164":[2,207]},{"1":[2,208],"3":[2,208],"30":[2,208],"31":[2,208],"51":[1,114],"59":[2,208],"61":[2,208],"79":[2,208],"81":[2,208],"84":[2,208],"96":[2,208],"101":[2,208],"109":[2,208],"111":127,"112":[2,208],"113":[2,208],"114":[2,208],"117":[2,208],"119":[2,208],"126":[2,208],"129":[2,208],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,209],"30":[2,209],"31":[2,209],"51":[1,114],"59":[2,209],"61":[2,209],"79":[2,209],"81":[2,209],"84":[2,209],"96":[2,209],"101":[2,209],"109":[2,209],"111":127,"112":[2,209],"113":[2,209],"114":[2,209],"117":[2,209],"119":[2,209],"126":[2,209],"129":[2,209],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,210],"30":[2,210],"31":[2,210],"51":[1,114],"59":[2,210],"61":[2,210],"79":[2,210],"81":[2,210],"84":[2,210],"96":[2,210],"101":[2,210],"109":[2,210],"111":127,"112":[2,210],"113":[2,210],"114":[2,210],"117":[2,210],"119":[2,210],"126":[2,210],"129":[2,210],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,211],"30":[2,211],"31":[2,211],"51":[1,114],"59":[2,211],"61":[2,211],"79":[2,211],"81":[2,211],"84":[2,211],"96":[2,211],"101":[2,211],"109":[2,211],"111":127,"112":[2,211],"113":[2,211],"114":[2,211],"117":[2,211],"119":[2,211],"126":[2,211],"129":[2,211],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,212],"30":[2,212],"31":[2,212],"51":[1,114],"59":[2,212],"61":[2,212],"79":[2,212],"81":[2,212],"84":[2,212],"96":[2,212],"101":[2,212],"109":[2,212],"111":127,"112":[2,212],"113":[2,212],"114":[2,212],"117":[2,212],"119":[2,212],"126":[2,212],"129":[2,212],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,213],"30":[2,213],"31":[2,213],"51":[1,114],"59":[2,213],"61":[2,213],"79":[2,213],"81":[2,213],"84":[2,213],"96":[2,213],"101":[2,213],"109":[2,213],"111":127,"112":[2,213],"113":[2,213],"114":[2,213],"117":[2,213],"119":[2,213],"126":[2,213],"129":[2,213],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,214],"30":[2,214],"31":[2,214],"51":[1,114],"59":[2,214],"61":[2,214],"79":[2,214],"81":[2,214],"84":[2,214],"96":[2,214],"101":[2,214],"109":[2,214],"111":127,"112":[2,214],"113":[2,214],"114":[2,214],"117":[2,214],"119":[2,214],"126":[2,214],"129":[2,214],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,215],"3":[2,215],"30":[2,215],"31":[2,215],"51":[1,114],"59":[2,215],"61":[2,215],"79":[2,215],"81":[2,215],"84":[2,215],"96":[2,215],"101":[2,215],"109":[2,215],"111":127,"112":[2,215],"113":[2,215],"114":[2,215],"117":[2,215],"119":[2,215],"126":[2,215],"129":[2,215],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,216],"30":[2,216],"31":[2,216],"51":[1,114],"59":[2,216],"61":[2,216],"79":[2,216],"81":[2,216],"84":[2,216],"96":[2,216],"101":[2,216],"109":[2,216],"111":127,"112":[2,216],"113":[2,216],"114":[2,216],"117":[2,216],"119":[2,216],"126":[2,216],"129":[2,216],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[2,216],"153":[2,216],"154":[2,216],"155":[2,216],"156":[2,216],"157":[2,216],"158":[2,216],"159":[2,216],"160":[2,216],"161":[2,216],"162":[2,216],"163":[2,216],"164":[1,123]},{"1":[2,217],"3":[2,217],"30":[2,217],"31":[2,217],"51":[1,114],"59":[2,217],"61":[1,129],"79":[2,217],"81":[2,217],"84":[2,217],"96":[2,217],"101":[2,217],"109":[2,217],"111":127,"112":[2,217],"113":[2,217],"114":[2,217],"117":[1,124],"119":[2,217],"126":[2,217],"129":[2,217],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,174],"30":[2,174],"31":[2,174],"51":[1,114],"59":[2,174],"61":[1,129],"79":[2,174],"81":[2,174],"84":[2,174],"96":[2,174],"101":[2,174],"109":[2,174],"111":127,"112":[1,80],"113":[2,174],"114":[1,128],"117":[1,124],"119":[2,174],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,176],"3":[2,176],"30":[2,176],"31":[2,176],"51":[1,114],"59":[2,176],"61":[1,129],"79":[2,176],"81":[2,176],"84":[2,176],"96":[2,176],"101":[2,176],"109":[2,176],"111":127,"112":[1,80],"113":[2,176],"114":[1,128],"117":[1,124],"119":[2,176],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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":277,"117":[1,250],"118":[1,251]},{"61":[1,278]},{"1":[2,173],"3":[2,173],"30":[2,173],"31":[2,173],"51":[1,114],"59":[2,173],"61":[1,129],"79":[2,173],"81":[2,173],"84":[2,173],"96":[2,173],"101":[2,173],"109":[2,173],"111":127,"112":[1,80],"113":[2,173],"114":[1,128],"117":[1,124],"119":[2,173],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,175],"3":[2,175],"30":[2,175],"31":[2,175],"51":[1,114],"59":[2,175],"61":[1,129],"79":[2,175],"81":[2,175],"84":[2,175],"96":[2,175],"101":[2,175],"109":[2,175],"111":127,"112":[1,80],"113":[2,175],"114":[1,128],"117":[1,124],"119":[2,175],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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":279,"117":[1,250],"118":[1,251]},{"1":[2,108],"3":[2,108],"30":[2,108],"31":[2,108],"51":[2,108],"59":[2,108],"61":[2,108],"79":[2,108],"81":[2,108],"84":[2,108],"96":[2,108],"101":[2,108],"109":[2,108],"112":[2,108],"113":[2,108],"114":[2,108],"117":[2,108],"119":[2,108],"126":[2,108],"129":[2,108],"132":[2,108],"133":[2,108],"135":[2,108],"136":[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]},{"3":[1,261],"31":[1,262],"59":[1,281],"96":[1,280]},{"3":[2,126],"31":[2,126],"51":[1,114],"59":[2,126],"61":[1,129],"96":[2,126],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,77],"3":[2,77],"30":[2,77],"31":[2,77],"47":[2,77],"51":[2,77],"59":[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],"87":[2,77],"92":[2,77],"94":[2,77],"96":[2,77],"101":[2,77],"109":[2,77],"112":[2,77],"113":[2,77],"114":[2,77],"117":[2,77],"119":[2,77],"126":[2,77],"129":[2,77],"132":[2,77],"133":[2,77],"135":[2,77],"136":[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],"3":[2,78],"30":[2,78],"31":[2,78],"47":[2,78],"51":[2,78],"59":[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],"87":[2,78],"92":[2,78],"94":[2,78],"96":[2,78],"101":[2,78],"109":[2,78],"112":[2,78],"113":[2,78],"114":[2,78],"117":[2,78],"119":[2,78],"126":[2,78],"129":[2,78],"132":[2,78],"133":[2,78],"135":[2,78],"136":[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,80],"3":[2,80],"30":[2,80],"31":[2,80],"47":[2,80],"51":[2,80],"59":[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],"87":[2,80],"92":[2,80],"94":[2,80],"96":[2,80],"101":[2,80],"109":[2,80],"112":[2,80],"113":[2,80],"114":[2,80],"117":[2,80],"119":[2,80],"126":[2,80],"129":[2,80],"132":[2,80],"133":[2,80],"135":[2,80],"136":[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]},{"51":[1,114],"61":[1,283],"79":[1,282],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"51":[1,114],"61":[1,129],"81":[1,284],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,46],"3":[2,46],"30":[2,46],"31":[2,46],"51":[1,114],"59":[2,46],"61":[1,129],"79":[2,46],"81":[2,46],"84":[2,46],"96":[2,46],"101":[2,46],"109":[2,46],"111":127,"112":[2,46],"113":[2,46],"114":[1,128],"117":[1,124],"119":[2,46],"126":[2,46],"129":[2,46],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"55":285,"56":[1,77],"57":[1,78]},{"58":286,"60":[1,155]},{"61":[1,287]},{"1":[2,136],"3":[2,136],"30":[2,136],"31":[2,136],"51":[2,136],"59":[2,136],"61":[2,136],"79":[2,136],"81":[2,136],"84":[2,136],"96":[2,136],"101":[2,136],"105":[1,288],"109":[2,136],"112":[2,136],"113":[2,136],"114":[2,136],"117":[2,136],"119":[2,136],"126":[2,136],"129":[2,136],"132":[2,136],"133":[2,136],"135":[2,136],"136":[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],"162":[2,136],"163":[2,136],"164":[2,136]},{"3":[1,157],"5":289,"30":[1,6]},{"32":290,"33":[1,87]},{"3":[1,157],"5":291,"30":[1,6]},{"7":292,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":293,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"32":294,"33":[1,87]},{"28":298,"50":[1,57],"121":295,"123":296,"124":[1,297]},{"1":[2,109],"3":[2,109],"30":[2,109],"31":[2,109],"51":[2,109],"59":[2,109],"61":[2,109],"63":136,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"79":[2,109],"80":[1,145],"81":[2,109],"84":[2,109],"93":135,"94":[1,137],"96":[2,109],"101":[2,109],"109":[2,109],"112":[2,109],"113":[2,109],"114":[2,109],"117":[2,109],"119":[2,109],"126":[2,109],"129":[2,109],"132":[2,109],"133":[2,109],"135":[2,109],"136":[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]},{"13":299,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":151,"62":152,"64":175,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"98":[1,74],"99":[1,75],"100":[1,73],"108":[1,72]},{"3":[2,102],"28":193,"31":[2,102],"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":302,"50":[1,57],"65":303,"88":300,"89":301,"99":[1,304]},{"1":[2,141],"3":[2,141],"30":[2,141],"31":[2,141],"51":[2,141],"59":[2,141],"61":[2,141],"72":[2,141],"73":[2,141],"74":[2,141],"75":[2,141],"78":[2,141],"79":[2,141],"80":[2,141],"81":[2,141],"84":[2,141],"92":[2,141],"94":[2,141],"96":[2,141],"101":[2,141],"109":[2,141],"112":[2,141],"113":[2,141],"114":[2,141],"117":[2,141],"119":[2,141],"126":[2,141],"129":[2,141],"132":[2,141],"133":[2,141],"135":[2,141],"136":[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]},{"61":[1,305]},{"1":[2,123],"3":[2,123],"30":[2,123],"31":[2,123],"47":[2,123],"51":[2,123],"59":[2,123],"61":[2,123],"72":[2,123],"73":[2,123],"74":[2,123],"75":[2,123],"78":[2,123],"79":[2,123],"80":[2,123],"81":[2,123],"84":[2,123],"92":[2,123],"94":[2,123],"96":[2,123],"101":[2,123],"109":[2,123],"112":[2,123],"113":[2,123],"114":[2,123],"117":[2,123],"119":[2,123],"126":[2,123],"129":[2,123],"132":[2,123],"133":[2,123],"135":[2,123],"136":[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],"162":[2,123],"163":[2,123],"164":[2,123]},{"3":[1,308],"7":307,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,309],"31":[1,310],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"101":[1,306],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":311,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"3":[2,132],"31":[2,132],"59":[2,132],"96":[2,132],"101":[2,132]},{"3":[2,127],"31":[2,127],"51":[1,114],"59":[2,127],"61":[1,129],"96":[2,127],"101":[2,127],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"3":[1,261],"31":[1,262],"59":[1,313],"96":[1,312]},{"1":[2,170],"3":[2,170],"30":[2,170],"31":[2,170],"51":[2,170],"59":[2,170],"61":[2,170],"79":[2,170],"81":[2,170],"84":[2,170],"96":[2,170],"101":[2,170],"109":[2,170],"112":[2,170],"113":[2,170],"114":[2,170],"117":[2,170],"119":[2,170],"126":[2,170],"129":[2,170],"132":[2,170],"133":[2,170],"135":[2,170],"136":[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]},{"7":314,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":315,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,85],"3":[2,85],"30":[2,85],"31":[2,85],"47":[2,85],"51":[2,85],"59":[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],"92":[2,85],"94":[2,85],"96":[2,85],"101":[2,85],"109":[2,85],"112":[2,85],"113":[2,85],"114":[2,85],"117":[2,85],"119":[2,85],"126":[2,85],"129":[2,85],"132":[2,85],"133":[2,85],"135":[2,85],"136":[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]},{"3":[1,318],"28":193,"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":317,"50":[1,57],"84":[1,316]},{"28":193,"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":319,"50":[1,57]},{"1":[2,86],"3":[2,86],"30":[2,86],"31":[2,86],"47":[2,86],"51":[2,86],"59":[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],"92":[2,86],"94":[2,86],"96":[2,86],"101":[2,86],"109":[2,86],"112":[2,86],"113":[2,86],"114":[2,86],"117":[2,86],"119":[2,86],"126":[2,86],"129":[2,86],"132":[2,86],"133":[2,86],"135":[2,86],"136":[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]},{"84":[1,320]},{"3":[1,270],"31":[1,321],"59":[1,322]},{"7":323,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":324,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,167],"3":[2,167],"30":[2,167],"31":[2,167],"51":[2,167],"59":[2,167],"61":[2,167],"79":[2,167],"81":[2,167],"84":[2,167],"96":[2,167],"101":[2,167],"109":[2,167],"112":[2,167],"113":[2,167],"114":[2,167],"117":[2,167],"119":[2,167],"122":[2,167],"126":[2,167],"129":[2,167],"132":[2,167],"133":[2,167],"135":[2,167],"136":[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]},{"1":[2,149],"3":[2,149],"30":[2,149],"31":[2,149],"51":[2,149],"59":[2,149],"61":[2,149],"79":[2,149],"81":[2,149],"84":[2,149],"96":[2,149],"101":[2,149],"109":[2,149],"112":[2,149],"113":[2,149],"114":[2,149],"117":[2,149],"119":[2,149],"126":[2,149],"129":[2,149],"132":[2,149],"133":[2,149],"135":[2,149],"136":[2,149],"139":[2,149],"140":[2,149],"141":[2,149],"142":[2,149],"143":[2,149],"144":[2,149],"145":[2,149],"146":[2,149],"147":[2,149],"148":[2,149],"149":[2,149],"150":[2,149],"151":[2,149],"152":[2,149],"153":[2,149],"154":[2,149],"155":[2,149],"156":[2,149],"157":[2,149],"158":[2,149],"159":[2,149],"160":[2,149],"161":[2,149],"162":[2,149],"163":[2,149],"164":[2,149]},{"1":[2,63],"3":[2,63],"30":[2,63],"31":[2,63],"51":[2,63],"59":[2,63],"61":[2,63],"79":[2,63],"81":[2,63],"84":[2,63],"96":[2,63],"101":[2,63],"109":[2,63],"112":[2,63],"113":[2,63],"114":[2,63],"117":[2,63],"119":[2,63],"126":[2,63],"129":[2,63],"132":[2,63],"133":[2,63],"135":[2,63],"136":[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],"162":[2,63],"163":[2,63],"164":[2,63]},{"1":[2,148],"3":[2,148],"30":[2,148],"31":[2,148],"51":[2,148],"59":[2,148],"61":[2,148],"79":[2,148],"81":[2,148],"84":[2,148],"96":[2,148],"101":[2,148],"109":[2,148],"112":[2,148],"113":[2,148],"114":[2,148],"117":[2,148],"119":[2,148],"126":[2,148],"129":[2,148],"132":[2,148],"133":[2,148],"135":[2,148],"136":[2,148],"139":[2,148],"140":[2,148],"141":[2,148],"142":[2,148],"143":[2,148],"144":[2,148],"145":[2,148],"146":[2,148],"147":[2,148],"148":[2,148],"149":[2,148],"150":[2,148],"151":[2,148],"152":[2,148],"153":[2,148],"154":[2,148],"155":[2,148],"156":[2,148],"157":[2,148],"158":[2,148],"159":[2,148],"160":[2,148],"161":[2,148],"162":[2,148],"163":[2,148],"164":[2,148]},{"1":[2,112],"3":[2,112],"30":[2,112],"31":[2,112],"51":[2,112],"59":[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],"94":[2,112],"96":[2,112],"101":[2,112],"109":[2,112],"112":[2,112],"113":[2,112],"114":[2,112],"117":[2,112],"119":[2,112],"126":[2,112],"129":[2,112],"132":[2,112],"133":[2,112],"135":[2,112],"136":[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]},{"3":[1,308],"7":307,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,309],"31":[1,310],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"96":[1,325],"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,83],"3":[2,83],"30":[2,83],"31":[2,83],"47":[2,83],"51":[2,83],"59":[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],"87":[2,83],"92":[2,83],"94":[2,83],"96":[2,83],"101":[2,83],"109":[2,83],"112":[2,83],"113":[2,83],"114":[2,83],"117":[2,83],"119":[2,83],"126":[2,83],"129":[2,83],"132":[2,83],"133":[2,83],"135":[2,83],"136":[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]},{"61":[1,326]},{"1":[2,84],"3":[2,84],"30":[2,84],"31":[2,84],"47":[2,84],"51":[2,84],"59":[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],"87":[2,84],"92":[2,84],"94":[2,84],"96":[2,84],"101":[2,84],"109":[2,84],"112":[2,84],"113":[2,84],"114":[2,84],"117":[2,84],"119":[2,84],"126":[2,84],"129":[2,84],"132":[2,84],"133":[2,84],"135":[2,84],"136":[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]},{"3":[1,157],"5":327,"30":[1,6]},{"54":[2,60],"59":[2,60],"61":[1,245]},{"61":[1,328]},{"3":[1,157],"5":329,"30":[1,6]},{"1":[2,137],"3":[2,137],"30":[2,137],"31":[2,137],"51":[2,137],"59":[2,137],"61":[2,137],"79":[2,137],"81":[2,137],"84":[2,137],"96":[2,137],"101":[2,137],"109":[2,137],"112":[2,137],"113":[2,137],"114":[2,137],"117":[2,137],"119":[2,137],"126":[2,137],"129":[2,137],"132":[2,137],"133":[2,137],"135":[2,137],"136":[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]},{"3":[1,157],"5":330,"30":[1,6]},{"1":[2,150],"3":[2,150],"30":[2,150],"31":[2,150],"51":[2,150],"59":[2,150],"61":[2,150],"79":[2,150],"81":[2,150],"84":[2,150],"96":[2,150],"101":[2,150],"109":[2,150],"112":[2,150],"113":[2,150],"114":[2,150],"117":[2,150],"119":[2,150],"126":[2,150],"129":[2,150],"132":[2,150],"133":[2,150],"135":[2,150],"136":[2,150],"139":[2,150],"140":[2,150],"141":[2,150],"142":[2,150],"143":[2,150],"144":[2,150],"145":[2,150],"146":[2,150],"147":[2,150],"148":[2,150],"149":[2,150],"150":[2,150],"151":[2,150],"152":[2,150],"153":[2,150],"154":[2,150],"155":[2,150],"156":[2,150],"157":[2,150],"158":[2,150],"159":[2,150],"160":[2,150],"161":[2,150],"162":[2,150],"163":[2,150],"164":[2,150]},{"1":[2,153],"3":[2,153],"30":[2,153],"31":[2,153],"51":[1,114],"59":[2,153],"61":[1,129],"79":[2,153],"81":[2,153],"84":[2,153],"96":[2,153],"101":[2,153],"109":[2,153],"111":127,"112":[2,153],"113":[1,331],"114":[2,153],"117":[1,124],"119":[1,332],"126":[2,153],"129":[2,153],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,154],"30":[2,154],"31":[2,154],"51":[1,114],"59":[2,154],"61":[1,129],"79":[2,154],"81":[2,154],"84":[2,154],"96":[2,154],"101":[2,154],"109":[2,154],"111":127,"112":[2,154],"113":[1,333],"114":[2,154],"117":[1,124],"119":[2,154],"126":[2,154],"129":[2,154],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"117":[2,152],"118":[2,152]},{"28":298,"31":[1,334],"50":[1,57],"122":[1,335],"123":336,"124":[1,297]},{"31":[2,162],"50":[2,162],"122":[2,162],"124":[2,162]},{"7":338,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"102":337,"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"3":[1,339]},{"1":[2,97],"3":[2,97],"30":[1,340],"31":[2,97],"51":[2,97],"59":[2,97],"61":[2,97],"63":136,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"79":[2,97],"80":[1,145],"81":[2,97],"84":[2,97],"93":135,"94":[1,137],"96":[2,97],"101":[2,97],"109":[2,97],"112":[2,97],"113":[2,97],"114":[2,97],"117":[2,97],"119":[2,97],"126":[2,97],"129":[2,97],"132":[2,97],"133":[2,97],"135":[2,97],"136":[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]},{"3":[1,342],"31":[1,341]},{"3":[2,103],"31":[2,103]},{"3":[2,100],"31":[2,100]},{"47":[1,343]},{"32":182,"33":[1,87]},{"7":344,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"61":[1,345],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,124],"3":[2,124],"30":[2,124],"31":[2,124],"47":[2,124],"51":[2,124],"59":[2,124],"61":[2,124],"72":[2,124],"73":[2,124],"74":[2,124],"75":[2,124],"78":[2,124],"79":[2,124],"80":[2,124],"81":[2,124],"84":[2,124],"92":[2,124],"94":[2,124],"96":[2,124],"101":[2,124],"109":[2,124],"112":[2,124],"113":[2,124],"114":[2,124],"117":[2,124],"119":[2,124],"126":[2,124],"129":[2,124],"132":[2,124],"133":[2,124],"135":[2,124],"136":[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],"162":[2,124],"163":[2,124],"164":[2,124]},{"3":[2,128],"31":[2,128],"51":[1,114],"59":[2,128],"61":[1,129],"96":[2,128],"101":[2,128],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"7":346,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":347,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"3":[2,133],"31":[2,133],"59":[2,133],"96":[2,133],"101":[2,133]},{"3":[2,129],"31":[2,129],"51":[1,114],"59":[2,129],"61":[1,129],"96":[2,129],"101":[2,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,114],"3":[2,114],"30":[2,114],"31":[2,114],"51":[2,114],"59":[2,114],"61":[2,114],"79":[2,114],"81":[2,114],"84":[2,114],"96":[2,114],"101":[2,114],"109":[2,114],"112":[2,114],"113":[2,114],"114":[2,114],"117":[2,114],"119":[2,114],"126":[2,114],"129":[2,114],"132":[2,114],"133":[2,114],"135":[2,114],"136":[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]},{"3":[1,308],"7":307,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,309],"31":[1,310],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"96":[1,348],"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"3":[1,157],"5":349,"30":[1,6],"51":[1,114],"61":[1,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,144],"3":[2,144],"30":[2,144],"31":[2,144],"51":[1,114],"59":[2,144],"61":[1,129],"79":[2,144],"81":[2,144],"84":[2,144],"96":[2,144],"101":[2,144],"109":[2,144],"111":127,"112":[1,80],"113":[2,144],"114":[1,128],"117":[1,124],"119":[2,144],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,87],"3":[2,87],"30":[2,87],"31":[2,87],"47":[2,87],"51":[2,87],"59":[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],"92":[2,87],"94":[2,87],"96":[2,87],"101":[2,87],"109":[2,87],"112":[2,87],"113":[2,87],"114":[2,87],"117":[2,87],"119":[2,87],"126":[2,87],"129":[2,87],"132":[2,87],"133":[2,87],"135":[2,87],"136":[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]},{"3":[2,91],"31":[2,91],"59":[2,91],"84":[2,91]},{"28":193,"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":350,"50":[1,57]},{"3":[2,92],"31":[2,92],"59":[2,92],"84":[2,92]},{"1":[2,88],"3":[2,88],"30":[2,88],"31":[2,88],"47":[2,88],"51":[2,88],"59":[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],"96":[2,88],"101":[2,88],"109":[2,88],"112":[2,88],"113":[2,88],"114":[2,88],"117":[2,88],"119":[2,88],"126":[2,88],"129":[2,88],"132":[2,88],"133":[2,88],"135":[2,88],"136":[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]},{"59":[2,94],"84":[2,94]},{"3":[1,318],"28":193,"31":[1,351],"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":317,"50":[1,57]},{"3":[2,47],"31":[2,47],"51":[1,114],"59":[2,47],"61":[1,129],"84":[2,47],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"3":[2,48],"31":[2,48],"51":[1,114],"59":[2,48],"61":[1,129],"84":[2,48],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,113],"3":[2,113],"30":[2,113],"31":[2,113],"51":[2,113],"59":[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],"94":[2,113],"96":[2,113],"101":[2,113],"109":[2,113],"112":[2,113],"113":[2,113],"114":[2,113],"117":[2,113],"119":[2,113],"126":[2,113],"129":[2,113],"132":[2,113],"133":[2,113],"135":[2,113],"136":[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]},{"7":352,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"61":[1,353],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,54],"3":[2,54],"30":[2,54],"31":[2,54],"51":[2,54],"59":[2,54],"61":[2,54],"79":[2,54],"81":[2,54],"84":[2,54],"96":[2,54],"101":[2,54],"109":[2,54],"112":[2,54],"113":[2,54],"114":[2,54],"117":[2,54],"119":[2,54],"126":[2,54],"129":[2,54],"132":[2,54],"133":[2,54],"135":[2,54],"136":[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]},{"54":[2,62],"59":[2,62],"61":[2,62]},{"1":[2,138],"3":[2,138],"30":[2,138],"31":[2,138],"51":[2,138],"59":[2,138],"61":[2,138],"79":[2,138],"81":[2,138],"84":[2,138],"96":[2,138],"101":[2,138],"109":[2,138],"112":[2,138],"113":[2,138],"114":[2,138],"117":[2,138],"119":[2,138],"126":[2,138],"129":[2,138],"132":[2,138],"133":[2,138],"135":[2,138],"136":[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]},{"1":[2,139],"3":[2,139],"30":[2,139],"31":[2,139],"51":[2,139],"59":[2,139],"61":[2,139],"79":[2,139],"81":[2,139],"84":[2,139],"96":[2,139],"101":[2,139],"105":[2,139],"109":[2,139],"112":[2,139],"113":[2,139],"114":[2,139],"117":[2,139],"119":[2,139],"126":[2,139],"129":[2,139],"132":[2,139],"133":[2,139],"135":[2,139],"136":[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]},{"7":354,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":355,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":356,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,160],"3":[2,160],"30":[2,160],"31":[2,160],"51":[2,160],"59":[2,160],"61":[2,160],"79":[2,160],"81":[2,160],"84":[2,160],"96":[2,160],"101":[2,160],"109":[2,160],"112":[2,160],"113":[2,160],"114":[2,160],"117":[2,160],"119":[2,160],"126":[2,160],"129":[2,160],"132":[2,160],"133":[2,160],"135":[2,160],"136":[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]},{"3":[1,157],"5":357,"30":[1,6]},{"31":[2,163],"50":[2,163],"122":[2,163],"124":[2,163]},{"3":[1,157],"5":358,"30":[1,6],"59":[1,359]},{"3":[2,134],"30":[2,134],"51":[1,114],"59":[2,134],"61":[1,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"28":298,"50":[1,57],"123":360,"124":[1,297]},{"3":[2,102],"28":193,"31":[2,102],"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":302,"50":[1,57],"65":303,"88":361,"89":301,"99":[1,304]},{"1":[2,98],"3":[2,98],"30":[2,98],"31":[2,98],"51":[2,98],"59":[2,98],"61":[2,98],"79":[2,98],"81":[2,98],"84":[2,98],"96":[2,98],"101":[2,98],"109":[2,98],"112":[2,98],"113":[2,98],"114":[2,98],"117":[2,98],"119":[2,98],"126":[2,98],"129":[2,98],"132":[2,98],"133":[2,98],"135":[2,98],"136":[2,98],"139":[2,98],"140":[2,98],"141":[2,98],"142":[2,98],"143":[2,98],"144":[2,98],"145":[2,98],"146":[2,98],"147":[2,98],"148":[2,98],"149":[2,98],"150":[2,98],"151":[2,98],"152":[2,98],"153":[2,98],"154":[2,98],"155":[2,98],"156":[2,98],"157":[2,98],"158":[2,98],"159":[2,98],"160":[2,98],"161":[2,98],"162":[2,98],"163":[2,98],"164":[2,98]},{"28":193,"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":302,"50":[1,57],"65":303,"89":362,"99":[1,304]},{"7":363,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"51":[1,114],"61":[1,129],"101":[1,364],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"3":[2,63],"7":365,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"31":[2,63],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"51":[2,63],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"59":[2,63],"61":[2,63],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"101":[2,63],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[2,63],"114":[2,63],"117":[2,63],"120":[1,54],"125":79,"126":[2,63],"128":50,"129":[2,63],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49],"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],"162":[2,63],"163":[2,63],"164":[2,63]},{"3":[2,130],"31":[2,130],"51":[1,114],"59":[2,130],"61":[1,129],"96":[2,130],"101":[2,130],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"3":[2,131],"31":[2,131],"51":[1,114],"59":[2,131],"61":[1,129],"96":[2,131],"101":[2,131],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,115],"30":[2,115],"31":[2,115],"51":[2,115],"59":[2,115],"61":[2,115],"79":[2,115],"81":[2,115],"84":[2,115],"96":[2,115],"101":[2,115],"109":[2,115],"112":[2,115],"113":[2,115],"114":[2,115],"117":[2,115],"119":[2,115],"126":[2,115],"129":[2,115],"132":[2,115],"133":[2,115],"135":[2,115],"136":[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]},{"1":[2,171],"3":[2,171],"30":[2,171],"31":[2,171],"51":[2,171],"59":[2,171],"61":[2,171],"79":[2,171],"81":[2,171],"84":[2,171],"96":[2,171],"101":[2,171],"109":[2,171],"112":[2,171],"113":[2,171],"114":[2,171],"117":[2,171],"119":[2,171],"122":[2,171],"126":[2,171],"129":[2,171],"132":[2,171],"133":[2,171],"135":[2,171],"136":[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],"164":[2,171]},{"3":[2,93],"31":[2,93],"59":[2,93],"84":[2,93]},{"59":[2,95],"84":[2,95]},{"51":[1,114],"61":[1,129],"79":[1,366],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"7":367,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"51":[2,63],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"61":[2,63],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"79":[2,63],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[2,63],"114":[2,63],"117":[2,63],"120":[1,54],"125":79,"126":[2,63],"128":50,"129":[2,63],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49],"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],"162":[2,63],"163":[2,63],"164":[2,63]},{"1":[2,155],"3":[2,155],"30":[2,155],"31":[2,155],"51":[1,114],"59":[2,155],"61":[1,129],"79":[2,155],"81":[2,155],"84":[2,155],"96":[2,155],"101":[2,155],"109":[2,155],"111":127,"112":[2,155],"113":[2,155],"114":[2,155],"117":[1,124],"119":[1,368],"126":[2,155],"129":[2,155],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,157],"30":[2,157],"31":[2,157],"51":[1,114],"59":[2,157],"61":[1,129],"79":[2,157],"81":[2,157],"84":[2,157],"96":[2,157],"101":[2,157],"109":[2,157],"111":127,"112":[2,157],"113":[1,369],"114":[2,157],"117":[1,124],"119":[2,157],"126":[2,157],"129":[2,157],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,156],"3":[2,156],"30":[2,156],"31":[2,156],"51":[1,114],"59":[2,156],"61":[1,129],"79":[2,156],"81":[2,156],"84":[2,156],"96":[2,156],"101":[2,156],"109":[2,156],"111":127,"112":[2,156],"113":[2,156],"114":[2,156],"117":[1,124],"119":[2,156],"126":[2,156],"129":[2,156],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"31":[1,370]},{"3":[1,371],"31":[2,164],"50":[2,164],"122":[2,164],"124":[2,164]},{"7":372,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"31":[2,166],"50":[2,166],"122":[2,166],"124":[2,166]},{"3":[1,342],"31":[1,373]},{"3":[2,104],"31":[2,104]},{"3":[2,101],"31":[2,101],"51":[1,114],"61":[1,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,119],"3":[2,119],"30":[2,119],"31":[2,119],"51":[2,119],"59":[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],"96":[2,119],"101":[2,119],"109":[2,119],"112":[2,119],"113":[2,119],"114":[2,119],"117":[2,119],"119":[2,119],"126":[2,119],"129":[2,119],"132":[2,119],"133":[2,119],"135":[2,119],"136":[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]},{"51":[1,114],"61":[1,129],"101":[1,374],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,121],"3":[2,121],"30":[2,121],"31":[2,121],"47":[2,121],"51":[2,121],"59":[2,121],"61":[2,121],"72":[2,121],"73":[2,121],"74":[2,121],"75":[2,121],"78":[2,121],"79":[2,121],"80":[2,121],"81":[2,121],"84":[2,121],"87":[2,121],"92":[2,121],"94":[2,121],"96":[2,121],"101":[2,121],"109":[2,121],"112":[2,121],"113":[2,121],"114":[2,121],"117":[2,121],"119":[2,121],"126":[2,121],"129":[2,121],"132":[2,121],"133":[2,121],"135":[2,121],"136":[2,121],"139":[2,121],"140":[2,121],"141":[2,121],"142":[2,121],"143":[2,121],"144":[2,121],"145":[2,121],"146":[2,121],"147":[2,121],"148":[2,121],"149":[2,121],"150":[2,121],"151":[2,121],"152":[2,121],"153":[2,121],"154":[2,121],"155":[2,121],"156":[2,121],"157":[2,121],"158":[2,121],"159":[2,121],"160":[2,121],"161":[2,121],"162":[2,121],"163":[2,121],"164":[2,121]},{"51":[1,114],"61":[1,129],"79":[1,375],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"7":376,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":377,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,161],"3":[2,161],"30":[2,161],"31":[2,161],"51":[2,161],"59":[2,161],"61":[2,161],"79":[2,161],"81":[2,161],"84":[2,161],"96":[2,161],"101":[2,161],"109":[2,161],"112":[2,161],"113":[2,161],"114":[2,161],"117":[2,161],"119":[2,161],"126":[2,161],"129":[2,161],"132":[2,161],"133":[2,161],"135":[2,161],"136":[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]},{"31":[2,165],"50":[2,165],"122":[2,165],"124":[2,165]},{"3":[2,135],"30":[2,135],"51":[1,114],"59":[2,135],"61":[1,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,99],"3":[2,99],"30":[2,99],"31":[2,99],"51":[2,99],"59":[2,99],"61":[2,99],"79":[2,99],"81":[2,99],"84":[2,99],"96":[2,99],"101":[2,99],"109":[2,99],"112":[2,99],"113":[2,99],"114":[2,99],"117":[2,99],"119":[2,99],"126":[2,99],"129":[2,99],"132":[2,99],"133":[2,99],"135":[2,99],"136":[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],"162":[2,99],"163":[2,99],"164":[2,99]},{"1":[2,120],"3":[2,120],"30":[2,120],"31":[2,120],"51":[2,120],"59":[2,120],"61":[2,120],"72":[2,120],"73":[2,120],"74":[2,120],"75":[2,120],"78":[2,120],"79":[2,120],"80":[2,120],"81":[2,120],"84":[2,120],"92":[2,120],"94":[2,120],"96":[2,120],"101":[2,120],"109":[2,120],"112":[2,120],"113":[2,120],"114":[2,120],"117":[2,120],"119":[2,120],"126":[2,120],"129":[2,120],"132":[2,120],"133":[2,120],"135":[2,120],"136":[2,120],"139":[2,120],"140":[2,120],"141":[2,120],"142":[2,120],"143":[2,120],"144":[2,120],"145":[2,120],"146":[2,120],"147":[2,120],"148":[2,120],"149":[2,120],"150":[2,120],"151":[2,120],"152":[2,120],"153":[2,120],"154":[2,120],"155":[2,120],"156":[2,120],"157":[2,120],"158":[2,120],"159":[2,120],"160":[2,120],"161":[2,120],"162":[2,120],"163":[2,120],"164":[2,120]},{"1":[2,122],"3":[2,122],"30":[2,122],"31":[2,122],"47":[2,122],"51":[2,122],"59":[2,122],"61":[2,122],"72":[2,122],"73":[2,122],"74":[2,122],"75":[2,122],"78":[2,122],"79":[2,122],"80":[2,122],"81":[2,122],"84":[2,122],"87":[2,122],"92":[2,122],"94":[2,122],"96":[2,122],"101":[2,122],"109":[2,122],"112":[2,122],"113":[2,122],"114":[2,122],"117":[2,122],"119":[2,122],"126":[2,122],"129":[2,122],"132":[2,122],"133":[2,122],"135":[2,122],"136":[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],"162":[2,122],"163":[2,122],"164":[2,122]},{"1":[2,158],"3":[2,158],"30":[2,158],"31":[2,158],"51":[1,114],"59":[2,158],"61":[1,129],"79":[2,158],"81":[2,158],"84":[2,158],"96":[2,158],"101":[2,158],"109":[2,158],"111":127,"112":[2,158],"113":[2,158],"114":[2,158],"117":[1,124],"119":[2,158],"126":[2,158],"129":[2,158],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,159],"3":[2,159],"30":[2,159],"31":[2,159],"51":[1,114],"59":[2,159],"61":[1,129],"79":[2,159],"81":[2,159],"84":[2,159],"96":[2,159],"101":[2,159],"109":[2,159],"111":127,"112":[2,159],"113":[2,159],"114":[2,159],"117":[1,124],"119":[2,159],"126":[2,159],"129":[2,159],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]}], parseError: function parseError(str, hash) { throw new Error(str); }, diff --git a/src/grammar.coffee b/src/grammar.coffee index ee78c16ea4..c60b92930a 100644 --- a/src/grammar.coffee +++ b/src/grammar.coffee @@ -55,22 +55,35 @@ grammar: { Root: [ o "", -> new Expressions() o "TERMINATOR", -> new Expressions() - o "Expressions" + o "Body" o "Block TERMINATOR" ] - # Any list of expressions or method body, seperated by line breaks or - # semicolons. - Expressions: [ - o "Expression", -> Expressions.wrap [$1] - o "Expressions TERMINATOR Expression", -> $1.push $3 - o "Expressions TERMINATOR" + # Any list of statements and expressions, seperated by line breaks or semicolons. + Body: [ + o "Line", -> Expressions.wrap [$1] + o "Body TERMINATOR Line", -> $1.push $3 + o "Body TERMINATOR" + ] + + # Expressions and statements, which make up a line in a body. + Line: [ + o "Expression" + o "Statement" + ] + + # Pure statements which cannot be expressions. + Statement: [ + o "Return" + o "Throw" + o "BREAK", -> new LiteralNode yytext + o "CONTINUE", -> new LiteralNode yytext ] # All the different types of expressions in our language. The basic unit of - # CoffeeScript is the **Expression** -- you'll notice that there is no - # "statement" nonterminal. Expressions serve as the building blocks - # of many other rules, making them somewhat circular. + # CoffeeScript is the **Expression** -- everything that can be an expression + # is one. Expressions serve as the building blocks of many other rules, making + # them somewhat circular. Expression: [ o "Value" o "Call" @@ -80,8 +93,6 @@ grammar: { o "Assign" o "If" o "Try" - o "Throw" - o "Return" o "While" o "For" o "Switch" @@ -97,7 +108,7 @@ grammar: { # will convert some postfix forms into blocks for us, by adjusting the # token stream. Block: [ - o "INDENT Expressions OUTDENT", -> $2 + o "INDENT Body OUTDENT", -> $2 o "INDENT OUTDENT", -> new Expressions() o "TERMINATOR Comment", -> Expressions.wrap [$2] ] @@ -120,8 +131,6 @@ grammar: { o "AlphaNumeric" o "JS", -> new LiteralNode yytext o "REGEX", -> new LiteralNode yytext - o "BREAK", -> new LiteralNode yytext - o "CONTINUE", -> new LiteralNode yytext o "TRUE", -> new LiteralNode true o "FALSE", -> new LiteralNode false o "YES", -> new LiteralNode true @@ -396,7 +405,7 @@ grammar: { # where only values are accepted, wrapping it in parentheses will always do # the trick. Parenthetical: [ - o "( Expression )", -> new ParentheticalNode $2 + o "( Line )", -> new ParentheticalNode $2 ] # A language extension to CoffeeScript from the outside. We simply pass @@ -415,6 +424,7 @@ grammar: { # or postfix, with a single expression. There is no do..while. While: [ o "WhileSource Block", -> $1.add_body $2 + o "Statement WhileSource", -> $2.add_body Expressions.wrap [$1] o "Expression WhileSource", -> $2.add_body Expressions.wrap [$1] ] @@ -422,6 +432,7 @@ grammar: { # 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] ] @@ -491,7 +502,9 @@ grammar: { # *if* and *unless*. If: [ o "IfBlock" + o "Statement IF Expression", -> new IfNode $3, Expressions.wrap([$1]), null, {statement: true} o "Expression IF Expression", -> new IfNode $3, Expressions.wrap([$1]), null, {statement: true} + o "Statement UNLESS Expression", -> new IfNode $3, Expressions.wrap([$1]), null, {statement: true, invert: true} o "Expression UNLESS Expression", -> new IfNode $3, Expressions.wrap([$1]), null, {statement: true, invert: true} ] From 538e518d76220a5144186d96fb9fea12614076b8 Mon Sep 17 00:00:00 2001 From: Tim Jones Date: Tue, 6 Apr 2010 02:29:38 +1200 Subject: [PATCH 05/19] Realigning function arrows. --- src/grammar.coffee | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/grammar.coffee b/src/grammar.coffee index c60b92930a..87d1a9478b 100644 --- a/src/grammar.coffee +++ b/src/grammar.coffee @@ -108,7 +108,7 @@ grammar: { # will convert some postfix forms into blocks for us, by adjusting the # token stream. Block: [ - o "INDENT Body OUTDENT", -> $2 + o "INDENT Body OUTDENT", -> $2 o "INDENT OUTDENT", -> new Expressions() o "TERMINATOR Comment", -> Expressions.wrap [$2] ] @@ -290,7 +290,7 @@ grammar: { ClassBody: [ o "", -> [] o "ClassAssign", -> [$1] - o "ClassBody TERMINATOR ClassAssign", -> $1.concat $3 + o "ClassBody TERMINATOR ClassAssign", -> $1.concat $3 ] # The three flavors of function call: normal, object instantiation with `new`, @@ -405,7 +405,7 @@ grammar: { # where only values are accepted, wrapping it in parentheses will always do # the trick. Parenthetical: [ - o "( Line )", -> new ParentheticalNode $2 + o "( Line )", -> new ParentheticalNode $2 ] # A language extension to CoffeeScript from the outside. We simply pass @@ -424,7 +424,7 @@ grammar: { # or postfix, with a single expression. There is no do..while. While: [ o "WhileSource Block", -> $1.add_body $2 - o "Statement WhileSource", -> $2.add_body Expressions.wrap [$1] + o "Statement WhileSource", -> $2.add_body Expressions.wrap [$1] o "Expression WhileSource", -> $2.add_body Expressions.wrap [$1] ] @@ -432,7 +432,7 @@ grammar: { # 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 "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] ] From 2351948291e5e113ceace25bfa2b96dcca5ba721 Mon Sep 17 00:00:00 2001 From: noonat Date: Mon, 5 Apr 2010 22:58:56 -0700 Subject: [PATCH 06/19] Renamed Lexer.tag() argument to new_tag, due to Rhino scope confusion --- extras/coffee-script.js | 2 +- lib/lexer.js | 6 +++--- src/lexer.coffee | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/extras/coffee-script.js b/extras/coffee-script.js index 761a429112..4053b64f8b 100644 --- a/extras/coffee-script.js +++ b/extras/coffee-script.js @@ -1 +1 @@ -(function(){var balanced_string,compact,count,del,extend,flatten,helpers,include,merge,starts;var __hasProp=Object.prototype.hasOwnProperty;if(!((typeof process!=="undefined"&&process!==null))){this.exports=this}helpers=(exports.helpers={});helpers.include=(include=function include(list,value){return list.indexOf(value)>=0});helpers.starts=(starts=function starts(string,literal,start){return string.substring(start,(start||0)+literal.length)===literal});helpers.compact=(compact=function compact(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 count(string,letter){var num,pos;num=0;pos=string.indexOf(letter);while(pos!==-1){num+=1;pos=string.indexOf(letter,pos+1)}return num});helpers.merge=(merge=function merge(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 extend(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 flatten(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 del(obj,key){var val;val=obj[key];delete obj[key];return val});helpers.balanced_string=(balanced_string=function balanced_string(str,delimited,options){var _a,_b,_c,_d,close,i,levels,open,pair,slash;options=options||{};slash=delimited[0][0]==="/";levels=[];i=0;while(i0;if(!(typeof post!=="undefined"&&post!==null)||(start_parens>parens)||(parens===0&&include(IMPLICIT_END,tag))){if(tag==="INDENT"&&prev&&include(IMPLICIT_BLOCK,prev[0])){return 1}if(tag==="OUTDENT"&&token.generated){return 1}if(open||tag==="INDENT"){idx=tag==="OUTDENT"?i+1:i;stack_pointer=tag==="INDENT"?2:1;_b=0;_c=stack[stack.length-stack_pointer];for(_a=0,tmp=_b;(_b<=_c?tmp<_c:tmp>_c);(_b<=_c?tmp+=1:tmp-=1),_a++){this.tokens.splice(idx,0,["CALL_END",")",token[2]])}size=stack[stack.length-stack_pointer]+1;stack[stack.length-stack_pointer]=0;return size}}if(!(prev&&include(IMPLICIT_FUNC,prev[0])&&include(IMPLICIT_CALL,tag))){return 1}calls=0;start_parens=tag==="("?parens-1:parens;this.tokens.splice(i,0,["CALL_START","(",token[2]]);stack[stack.length-1]+=1;return 2},this))};Rewriter.prototype.add_implicit_indentation=function add_implicit_indentation(){return this.scan_tokens(__bind(function(prev,token,post,i){var idx,insertion,outdent,parens,pre,starter,tok;if(!(include(SINGLE_LINERS,token[0])&&post[0]!=="INDENT"&&!(token[0]==="ELSE"&&post[0]==="IF"))){return 1}starter=token[0];this.tokens.splice(i+1,0,["INDENT",2,token[2]]);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]!==";")||(tok[0]===")"&&parens===0))&&!(starter==="ELSE"&&tok[0]==="ELSE")){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},this))};Rewriter.prototype.ensure_balance=function ensure_balance(pairs){var _a,_b,key,levels,line,open,open_line,unclosed,value;levels={};open_line={};this.scan_tokens(__bind(function(prev,token,post,i){var _a,_b,_c,_d,close,open,pair;_b=pairs;for(_a=0,_c=_b.length;_a<_c;_a++){pair=_b[_a];_d=pair;open=_d[0];close=_d[1];levels[open]=levels[open]||0;if(token[0]===open){if(levels[open]===0){open_line[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},this));unclosed=(function(){_a=[];_b=levels;for(key in _b){if(__hasProp.call(_b,key)){value=_b[key];value>0?_a.push(key):null}}return _a}).call(this);if(unclosed.length){open=unclosed[0];line=open_line[open]+1;throw new Error("unclosed "+open+" on line "+line)}};Rewriter.prototype.rewrite_closing_parens=function rewrite_closing_parens(){var _a,debt,key,stack,val;stack=[];debt={};_a=INVERSES;for(key in _a){if(__hasProp.call(_a,key)){val=_a[key];(debt[key]=0)}}return this.scan_tokens(__bind(function(prev,token,post,i){var inv,match,mtag,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];if(tag===INVERSES[mtag]){return 1}debt[mtag]+=1;val=mtag==="INDENT"?match[1]:INVERSES[mtag];this.tokens.splice(i,0,[INVERSES[mtag],val]);return 1}}else{return 1}}},this))};return Rewriter}).call(this);BALANCED_PAIRS=[["(",")"],["[","]"],["{","}"],["INDENT","OUTDENT"],["PARAM_START","PARAM_END"],["CALL_START","CALL_END"],["INDEX_START","INDEX_END"],["SOAKED_INDEX_START","SOAKED_INDEX_END"]];INVERSES={};_b=BALANCED_PAIRS;for(_a=0,_c=_b.length;_a<_c;_a++){pair=_b[_a];INVERSES[pair[0]]=pair[1];INVERSES[pair[1]]=pair[0]}EXPRESSION_START=(function(){_d=[];_f=BALANCED_PAIRS;for(_e=0,_g=_f.length;_e<_g;_e++){pair=_f[_e];_d.push(pair[0])}return _d}).call(this);EXPRESSION_END=(function(){_h=[];_j=BALANCED_PAIRS;for(_i=0,_k=_j.length;_i<_k;_i++){pair=_j[_i];_h.push(pair[1])}return _h}).call(this);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","EXTENSION","TRUE","FALSE","YES","NO","ON","OFF","!","!!","NOT","THIS","NULL","@","->","=>","[","(","{"];IMPLICIT_BLOCK=["->","=>","{","[",","];IMPLICIT_END=["IF","UNLESS","FOR","WHILE","TERMINATOR","INDENT","OUTDENT"];SINGLE_LINERS=["ELSE","->","=>","TRY","FINALLY","THEN"];SINGLE_CLOSERS=["TERMINATOR","CATCH","FINALLY","ELSE","OUTDENT","LEADING_WHEN"]})();(function(){var ACCESSORS,ASSIGNMENT,CALLABLE,CODE,COFFEE_ALIASES,COFFEE_KEYWORDS,COMMENT,COMMENT_CLEANER,CONVERSIONS,HALF_ASSIGNMENTS,HEREDOC,HEREDOC_INDENT,IDENTIFIER,INTERPOLATION,JS_CLEANER,JS_FORBIDDEN,JS_KEYWORDS,KEYWORDS,LAST_DENT,LAST_DENTS,LINE_BREAK,Lexer,MULTILINER,MULTI_DENT,NOT_REGEX,NO_NEWLINE,NUMBER,OPERATOR,REGEX_ESCAPE,REGEX_FLAGS,REGEX_INTERPOLATION,REGEX_START,RESERVED,Rewriter,STRING_NEWLINES,WHITESPACE,balanced_string,compact,count,helpers,include,starts;var __slice=Array.prototype.slice;if((typeof process!=="undefined"&&process!==null)){Rewriter=require("./rewriter").Rewriter;helpers=require("./helpers").helpers}else{this.exports=this;Rewriter=this.Rewriter;helpers=this.helpers}include=helpers.include;count=helpers.count;starts=helpers.starts;compact=helpers.compact;balanced_string=helpers.balanced_string;exports.Lexer=(function(){Lexer=function Lexer(){};Lexer.prototype.tokenize=function tokenize(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.indents=[];this.tokens=[];while(this.ithis.indent){if(no_newlines){return this.suppress_newlines()}diff=size-this.indent;this.token("INDENT",diff);this.indents.push(diff)}else{this.outdent_token(this.indent-size,no_newlines)}}this.indent=size;return true};Lexer.prototype.outdent_token=function outdent_token(move_out,no_newlines){var last_indent;while(move_out>0&&this.indents.length){last_indent=this.indents.pop();this.token("OUTDENT",last_indent);move_out-=last_indent}if(!(this.tag()==="TERMINATOR"||no_newlines)){this.token("TERMINATOR","\n")}return true};Lexer.prototype.whitespace_token=function whitespace_token(){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.newline_token=function newline_token(newlines){if(!(this.tag()==="TERMINATOR")){this.token("TERMINATOR","\n")}return true};Lexer.prototype.suppress_newlines=function suppress_newlines(){if(this.value()==="\\"){this.tokens.pop()}return true};Lexer.prototype.literal_token=function literal_token(){var match,prev_spaced,space,tag,value;match=this.chunk.match(OPERATOR);value=match&&match[1];space=match&&match[2];if(value&&value.match(CODE)){this.tag_parameters()}value=value||this.chunk.substr(0,1);prev_spaced=this.prev()&&this.prev().spaced;tag=value;if(value.match(ASSIGNMENT)){tag="ASSIGN";if(include(JS_FORBIDDEN,this.value)){this.assignment_error()}}else{if(value===";"){tag="TERMINATOR"}else{if(value==="["&&this.tag()==="?"&&!prev_spaced){tag="SOAKED_INDEX_START";this.soaked_index=true;this.tokens.pop()}else{if(value==="]"&&this.soaked_index){tag="SOAKED_INDEX_END";this.soaked_index=false}else{if(include(CALLABLE,this.tag())&&!prev_spaced){if(value==="("){tag="CALL_START"}if(value==="["){tag="INDEX_START"}}}}}}this.i+=value.length;if(space&&prev_spaced&&this.prev()[0]==="ASSIGN"&&include(HALF_ASSIGNMENTS,tag)){return this.tag_half_assignment(tag)}this.token(tag,value);return true};Lexer.prototype.name_access_type=function name_access_type(){if(this.value()==="::"){this.tag(1,"PROTOTYPE_ACCESS")}if(this.value()==="."&&!(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")}}};Lexer.prototype.sanitize_heredoc=function sanitize_heredoc(doc,quote){var indent;indent=(doc.match(HEREDOC_INDENT)||[""]).sort()[0];return doc.replace(new RegExp("^"+indent,"gm"),"").replace(MULTILINER,"\\n").replace(new RegExp(quote,"g"),'\\"')};Lexer.prototype.tag_half_assignment=function tag_half_assignment(tag){var last;last=this.tokens.pop();this.tokens.push([""+tag+"=",""+tag+"=",last[2]]);return true};Lexer.prototype.tag_parameters=function tag_parameters(){var _a,i,tok;if(this.tag()!==")"){return null}i=0;while(true){i+=1;tok=this.prev(i);if(!tok){return null}if((_a=tok[0])==="IDENTIFIER"){tok[0]="PARAM"}else{if(_a===")"){tok[0]="PARAM_END"}else{if(_a==="("){tok[0]="PARAM_START";return tok[0]}}}}return true};Lexer.prototype.close_indentation=function close_indentation(){return this.outdent_token(this.indent)};Lexer.prototype.identifier_error=function identifier_error(word){throw new Error('SyntaxError: Reserved word "'+word+'" on line '+(this.line+1))};Lexer.prototype.assignment_error=function assignment_error(){throw new Error('SyntaxError: Reserved word "'+(this.value())+'" on line '+(this.line+1)+" can't be assigned")};Lexer.prototype.interpolate_string=function interpolate_string(str,escape_quotes){var _a,_b,_c,_d,_e,escaped,expr,group,i,inner,interp,lexer,match,nested,pi,quote,tag,token,tokens,value;if(str.length<3||!starts(str,'"')){return this.token("STRING",str)}else{lexer=new Lexer();tokens=[];quote=str.substring(0,1);_a=[1,1];i=_a[0];pi=_a[1];while(i:!?]+)([ \t]*)/;WHITESPACE=/^([ \t]+)/;COMMENT=/^(((\n?[ \t]*)?#[^\n]*)+)/;CODE=/^((-|=)>)/;MULTI_DENT=/^((\n([ \t]*))+)(\.)?/;LAST_DENTS=/\n([ \t]*)/g;LAST_DENT=/\n([ \t]*)/;ASSIGNMENT=/^(:|=)$/;REGEX_START=/^\/[^\/ ]/;REGEX_INTERPOLATION=/([^\\]\$[a-zA-Z_@]|[^\\]\$\{.*[^\\]\})/;REGEX_FLAGS=/^[imgy]{0,4}/;REGEX_ESCAPE=/\\[^\$]/g;JS_CLEANER=/(^`|`$)/g;MULTILINER=/\n/g;STRING_NEWLINES=/\n[ \t]*/g;COMMENT_CLEANER=/(^[ \t]*#|\n[ \t]*$)/mg;NO_NEWLINE=/^([+\*&|\/\-%=<>:!.\\][<>=&|]*|and|or|is|isnt|not|delete|typeof|instanceof)$/;HEREDOC_INDENT=/^[ \t]+/mg;NOT_REGEX=["NUMBER","REGEX","++","--","FALSE","NULL","TRUE"];CALLABLE=["IDENTIFIER","SUPER",")","]","}","STRING","@","THIS"];ACCESSORS=["PROPERTY_ACCESS","PROTOTYPE_ACCESS","SOAK_ACCESS","@"];LINE_BREAK=["INDENT","OUTDENT","TERMINATOR"];HALF_ASSIGNMENTS=["-","+","/","*","%","||","&&","?"];CONVERSIONS={and:"&&",or:"||",is:"==",isnt:"!=",not:"!"}})();var parser=(function(){var parser={trace:function trace(){},yy:{},symbols_:{Root:2,TERMINATOR:3,Expressions:4,Block:5,Expression:6,Value:7,Call:8,Curry:9,Code:10,Operation:11,Assign:12,If:13,Try:14,Throw:15,Return:16,While:17,For:18,Switch:19,Extends:20,Class:21,Splat:22,Existence:23,Comment:24,Extension:25,INDENT:26,OUTDENT:27,Identifier:28,IDENTIFIER:29,AlphaNumeric:30,NUMBER:31,STRING:32,Literal:33,JS:34,REGEX:35,BREAK:36,CONTINUE:37,TRUE:38,FALSE:39,YES:40,NO:41,ON:42,OFF:43,Assignable:44,ASSIGN:45,AssignObj:46,RETURN:47,COMMENT:48,"?":49,PARAM_START:50,ParamList:51,PARAM_END:52,FuncGlyph:53,"->":54,"=>":55,Param:56,",":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,SOAKED_INDEX_START:78,SOAKED_INDEX_END:79,"{":80,AssignList:81,"}":82,IndentedAssignList:83,CLASS:84,EXTENDS:85,ClassBody:86,ClassAssign:87,NEW:88,Super:89,"<-":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,EXTENSION:108,WhileSource:109,WHILE:110,WHEN:111,FOR:112,ForVariables:113,ForSource:114,IN:115,OF:116,BY:117,SWITCH:118,Whens:119,ELSE:120,When:121,LEADING_WHEN:122,IfStart:123,IF:124,ElsIf:125,IfBlock: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:162,"$accept":0,"$end":1},terminals_:{"3":"TERMINATOR","26":"INDENT","27":"OUTDENT","29":"IDENTIFIER","31":"NUMBER","32":"STRING","34":"JS","35":"REGEX","36":"BREAK","37":"CONTINUE","38":"TRUE","39":"FALSE","40":"YES","41":"NO","42":"ON","43":"OFF","45":"ASSIGN","47":"RETURN","48":"COMMENT","49":"?","50":"PARAM_START","52":"PARAM_END","54":"->","55":"=>","57":",","58":"PARAM","59":".","69":"NULL","70":"PROPERTY_ACCESS","71":"PROTOTYPE_ACCESS","72":"::","73":"SOAK_ACCESS","76":"INDEX_START","77":"INDEX_END","78":"SOAKED_INDEX_START","79":"SOAKED_INDEX_END","80":"{","82":"}","84":"CLASS","85":"EXTENDS","88":"NEW","90":"<-","92":"CALL_START","94":"CALL_END","95":"SUPER","96":"THIS","97":"@","98":"[","99":"]","101":"TRY","103":"FINALLY","104":"CATCH","105":"THROW","106":"(","107":")","108":"EXTENSION","110":"WHILE","111":"WHEN","112":"FOR","115":"IN","116":"OF","117":"BY","118":"SWITCH","120":"ELSE","122":"LEADING_WHEN","124":"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"},productions_:[0,[2,0],[2,1],[2,1],[2,2],[4,1],[4,3],[4,2],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[5,3],[5,2],[5,2],[28,1],[30,1],[30,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[12,3],[46,3],[46,3],[46,1],[16,2],[16,1],[24,1],[23,2],[10,5],[10,2],[53,1],[53,1],[51,0],[51,1],[51,3],[56,1],[56,4],[22,4],[60,1],[60,2],[60,2],[60,1],[44,1],[44,1],[44,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[61,2],[61,2],[61,1],[61,2],[61,1],[61,1],[74,3],[74,3],[65,3],[65,3],[65,4],[65,4],[81,0],[81,1],[81,3],[81,3],[81,4],[83,3],[83,4],[21,2],[21,4],[21,5],[21,7],[87,1],[87,3],[86,0],[86,1],[86,3],[8,1],[8,2],[8,1],[9,3],[20,3],[62,2],[62,2],[91,3],[91,4],[89,4],[89,5],[68,1],[68,1],[63,2],[67,6],[67,7],[75,6],[75,7],[64,3],[64,4],[93,0],[93,1],[93,2],[93,3],[93,3],[93,4],[93,4],[93,2],[93,3],[100,1],[100,3],[14,3],[14,4],[14,5],[102,3],[15,2],[66,3],[25,1],[109,2],[109,4],[17,2],[17,2],[18,4],[18,4],[113,1],[113,3],[114,2],[114,2],[114,4],[114,4],[114,4],[114,6],[114,6],[19,5],[19,7],[119,1],[119,2],[121,3],[121,4],[121,3],[123,3],[123,2],[126,1],[126,3],[125,4],[13,1],[13,3],[13,3],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3]],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.$=$$[$0-1+1-1];break;case 13:this.$=$$[$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-3+2-1];break;case 28:this.$=new Expressions();break;case 29:this.$=Expressions.wrap([$$[$0-2+2-1]]);break;case 30:this.$=new LiteralNode(yytext);break;case 31:this.$=new LiteralNode(yytext);break;case 32:this.$=new LiteralNode(yytext);break;case 33:this.$=$$[$0-1+1-1];break;case 34:this.$=new LiteralNode(yytext);break;case 35:this.$=new LiteralNode(yytext);break;case 36:this.$=new LiteralNode(yytext);break;case 37:this.$=new LiteralNode(yytext);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 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.$=$$[$0-1+1-1];break;case 48:this.$=new ReturnNode($$[$0-2+2-1]);break;case 49:this.$=new ReturnNode(new ValueNode(new LiteralNode("null")));break;case 50:this.$=new CommentNode(yytext);break;case 51:this.$=new ExistenceNode($$[$0-2+1-1]);break;case 52:this.$=new CodeNode($$[$0-5+2-1],$$[$0-5+5-1],$$[$0-5+4-1]);break;case 53:this.$=new CodeNode([],$$[$0-2+2-1],$$[$0-2+1-1]);break;case 54:this.$="func";break;case 55:this.$="boundfunc";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(yytext);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.$=new IndexNode($$[$0-3+2-1],"soak");break;case 83:this.$=new ObjectNode($$[$0-3+2-1]);break;case 84:this.$=new ObjectNode($$[$0-3+2-1]);break;case 85:this.$=new ObjectNode($$[$0-4+2-1]);break;case 86:this.$=new ObjectNode($$[$0-4+2-1]);break;case 87:this.$=[];break;case 88:this.$=[$$[$0-1+1-1]];break;case 89:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 90:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 91:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 92:this.$=$$[$0-3+2-1];break;case 93:this.$=$$[$0-4+2-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-2+2-1].new_instance();break;case 105:this.$=$$[$0-1+1-1];break;case 106:this.$=new CurryNode($$[$0-3+1-1],$$[$0-3+3-1]);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-3+2-1];break;case 111:this.$=$$[$0-4+2-1];break;case 112:this.$=new CallNode("super",$$[$0-4+3-1]);break;case 113:this.$=new CallNode("super",$$[$0-5+3-1]);break;case 114:this.$=new ValueNode(new LiteralNode("this"));break;case 115:this.$=new ValueNode(new LiteralNode("this"));break;case 116:this.$=new ValueNode(new LiteralNode("this"),[new AccessorNode($$[$0-2+2-1])]);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 RangeNode($$[$0-6+2-1],$$[$0-6+5-1]);break;case 120:this.$=new RangeNode($$[$0-7+2-1],$$[$0-7+6-1],true);break;case 121:this.$=new ArrayNode($$[$0-3+2-1]);break;case 122:this.$=new ArrayNode($$[$0-4+2-1]);break;case 123:this.$=[];break;case 124:this.$=[$$[$0-1+1-1]];break;case 125:this.$=[$$[$0-2+2-1]];break;case 126:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 127:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 128:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 129:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 130:this.$=$$[$0-2+1-1];break;case 131:this.$=$$[$0-3+1-1];break;case 132:this.$=$$[$0-1+1-1];break;case 133: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 134:this.$=new TryNode($$[$0-3+2-1],$$[$0-3+3-1][0],$$[$0-3+3-1][1]);break;case 135:this.$=new TryNode($$[$0-4+2-1],null,null,$$[$0-4+4-1]);break;case 136:this.$=new TryNode($$[$0-5+2-1],$$[$0-5+3-1][0],$$[$0-5+3-1][1],$$[$0-5+5-1]);break;case 137:this.$=[$$[$0-3+2-1],$$[$0-3+3-1]];break;case 138:this.$=new ThrowNode($$[$0-2+2-1]);break;case 139:this.$=new ParentheticalNode($$[$0-3+2-1]);break;case 140:this.$=yytext;break;case 141:this.$=new WhileNode($$[$0-2+2-1]);break;case 142:this.$=new WhileNode($$[$0-4+2-1],{filter:$$[$0-4+4-1]});break;case 143:this.$=$$[$0-2+1-1].add_body($$[$0-2+2-1]);break;case 144:this.$=$$[$0-2+2-1].add_body(Expressions.wrap([$$[$0-2+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]);break;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 147:this.$=[$$[$0-1+1-1]];break;case 148:this.$=[$$[$0-3+1-1],$$[$0-3+3-1]];break;case 149:this.$={source:$$[$0-2+2-1]};break;case 150:this.$={source:$$[$0-2+2-1],object:true};break;case 151:this.$={source:$$[$0-4+2-1],filter:$$[$0-4+4-1]};break;case 152:this.$={source:$$[$0-4+2-1],filter:$$[$0-4+4-1],object:true};break;case 153:this.$={source:$$[$0-4+2-1],step:$$[$0-4+4-1]};break;case 154:this.$={source:$$[$0-6+2-1],filter:$$[$0-6+4-1],step:$$[$0-6+6-1]};break;case 155:this.$={source:$$[$0-6+2-1],step:$$[$0-6+4-1],filter:$$[$0-6+6-1]};break;case 156:this.$=$$[$0-5+4-1].rewrite_condition($$[$0-5+2-1]);break;case 157:this.$=$$[$0-7+4-1].rewrite_condition($$[$0-7+2-1]).add_else($$[$0-7+6-1],true);break;case 158:this.$=$$[$0-1+1-1];break;case 159:this.$=$$[$0-2+1-1].push($$[$0-2+2-1]);break;case 160:this.$=new IfNode($$[$0-3+2-1],$$[$0-3+3-1],null,{statement:true});break;case 161:this.$=new IfNode($$[$0-4+2-1],$$[$0-4+3-1],null,{statement:true});break;case 162:this.$=(function(){$$[$0-3+3-1].comment=$$[$0-3+1-1];return $$[$0-3+3-1]}());break;case 163:this.$=new IfNode($$[$0-3+2-1],$$[$0-3+3-1]);break;case 164:this.$=$$[$0-2+1-1].add_else($$[$0-2+2-1]);break;case 165:this.$=$$[$0-1+1-1];break;case 166:this.$=$$[$0-3+1-1].add_else($$[$0-3+3-1]);break;case 167:this.$=(new IfNode($$[$0-4+3-1],$$[$0-4+4-1])).force_statement();break;case 168:this.$=$$[$0-1+1-1];break;case 169:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),null,{statement:true});break;case 170:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),null,{statement:true,invert:true});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("++",$$[$0-2+2-1]);break;case 178:this.$=new OpNode("delete",$$[$0-2+2-1]);break;case 179:this.$=new OpNode("typeof",$$[$0-2+2-1]);break;case 180:this.$=new OpNode("--",$$[$0-2+1-1],null,true);break;case 181:this.$=new OpNode("++",$$[$0-2+1-1],null,true);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("?=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 210:this.$=new OpNode("instanceof",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 211:this.$=new OpNode("in",$$[$0-3+1-1],$$[$0-3+3-1]);break}},table:[{"1":[2,1],"2":1,"3":[1,2],"4":3,"5":4,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,6],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[3]},{"1":[2,2],"24":86,"48":[1,55]},{"1":[2,3],"3":[1,87]},{"3":[1,88]},{"1":[2,5],"3":[2,5],"27":[2,5],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"4":126,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"27":[1,127],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,8],"3":[2,8],"26":[2,8],"27":[2,8],"49":[2,8],"57":[2,8],"59":[2,8],"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,8],"78":[1,139],"79":[2,8],"82":[2,8],"90":[1,128],"91":129,"92":[1,131],"94":[2,8],"99":[2,8],"107":[2,8],"110":[2,8],"111":[2,8],"112":[2,8],"115":[2,8],"117":[2,8],"124":[2,8],"127":[2,8],"130":[2,8],"131":[2,8],"133":[2,8],"134":[2,8],"137":[2,8],"138":[2,8],"139":[2,8],"140":[2,8],"141":[2,8],"142":[2,8],"143":[2,8],"144":[2,8],"145":[2,8],"146":[2,8],"147":[2,8],"148":[2,8],"149":[2,8],"150":[2,8],"151":[2,8],"152":[2,8],"153":[2,8],"154":[2,8],"155":[2,8],"156":[2,8],"157":[2,8],"158":[2,8],"159":[2,8],"160":[2,8],"161":[2,8],"162":[2,8]},{"1":[2,9],"3":[2,9],"26":[2,9],"27":[2,9],"49":[2,9],"57":[2,9],"59":[2,9],"77":[2,9],"79":[2,9],"82":[2,9],"94":[2,9],"99":[2,9],"107":[2,9],"110":[2,9],"111":[2,9],"112":[2,9],"115":[2,9],"117":[2,9],"124":[2,9],"127":[2,9],"130":[2,9],"131":[2,9],"133":[2,9],"134":[2,9],"137":[2,9],"138":[2,9],"139":[2,9],"140":[2,9],"141":[2,9],"142":[2,9],"143":[2,9],"144":[2,9],"145":[2,9],"146":[2,9],"147":[2,9],"148":[2,9],"149":[2,9],"150":[2,9],"151":[2,9],"152":[2,9],"153":[2,9],"154":[2,9],"155":[2,9],"156":[2,9],"157":[2,9],"158":[2,9],"159":[2,9],"160":[2,9],"161":[2,9],"162":[2,9]},{"1":[2,10],"3":[2,10],"26":[2,10],"27":[2,10],"49":[2,10],"57":[2,10],"59":[2,10],"77":[2,10],"79":[2,10],"82":[2,10],"94":[2,10],"99":[2,10],"107":[2,10],"110":[2,10],"111":[2,10],"112":[2,10],"115":[2,10],"117":[2,10],"124":[2,10],"127":[2,10],"130":[2,10],"131":[2,10],"133":[2,10],"134":[2,10],"137":[2,10],"138":[2,10],"139":[2,10],"140":[2,10],"141":[2,10],"142":[2,10],"143":[2,10],"144":[2,10],"145":[2,10],"146":[2,10],"147":[2,10],"148":[2,10],"149":[2,10],"150":[2,10],"151":[2,10],"152":[2,10],"153":[2,10],"154":[2,10],"155":[2,10],"156":[2,10],"157":[2,10],"158":[2,10],"159":[2,10],"160":[2,10],"161":[2,10],"162":[2,10]},{"1":[2,11],"3":[2,11],"26":[2,11],"27":[2,11],"49":[2,11],"57":[2,11],"59":[2,11],"77":[2,11],"79":[2,11],"82":[2,11],"94":[2,11],"99":[2,11],"107":[2,11],"110":[2,11],"111":[2,11],"112":[2,11],"115":[2,11],"117":[2,11],"124":[2,11],"127":[2,11],"130":[2,11],"131":[2,11],"133":[2,11],"134":[2,11],"137":[2,11],"138":[2,11],"139":[2,11],"140":[2,11],"141":[2,11],"142":[2,11],"143":[2,11],"144":[2,11],"145":[2,11],"146":[2,11],"147":[2,11],"148":[2,11],"149":[2,11],"150":[2,11],"151":[2,11],"152":[2,11],"153":[2,11],"154":[2,11],"155":[2,11],"156":[2,11],"157":[2,11],"158":[2,11],"159":[2,11],"160":[2,11],"161":[2,11],"162":[2,11]},{"1":[2,12],"3":[2,12],"26":[2,12],"27":[2,12],"49":[2,12],"57":[2,12],"59":[2,12],"77":[2,12],"79":[2,12],"82":[2,12],"94":[2,12],"99":[2,12],"107":[2,12],"110":[2,12],"111":[2,12],"112":[2,12],"115":[2,12],"117":[2,12],"124":[2,12],"127":[2,12],"130":[2,12],"131":[2,12],"133":[2,12],"134":[2,12],"137":[2,12],"138":[2,12],"139":[2,12],"140":[2,12],"141":[2,12],"142":[2,12],"143":[2,12],"144":[2,12],"145":[2,12],"146":[2,12],"147":[2,12],"148":[2,12],"149":[2,12],"150":[2,12],"151":[2,12],"152":[2,12],"153":[2,12],"154":[2,12],"155":[2,12],"156":[2,12],"157":[2,12],"158":[2,12],"159":[2,12],"160":[2,12],"161":[2,12],"162":[2,12]},{"1":[2,13],"3":[2,13],"26":[2,13],"27":[2,13],"49":[2,13],"57":[2,13],"59":[2,13],"77":[2,13],"79":[2,13],"82":[2,13],"94":[2,13],"99":[2,13],"107":[2,13],"110":[2,13],"111":[2,13],"112":[2,13],"115":[2,13],"117":[2,13],"124":[2,13],"127":[2,13],"130":[2,13],"131":[2,13],"133":[2,13],"134":[2,13],"137":[2,13],"138":[2,13],"139":[2,13],"140":[2,13],"141":[2,13],"142":[2,13],"143":[2,13],"144":[2,13],"145":[2,13],"146":[2,13],"147":[2,13],"148":[2,13],"149":[2,13],"150":[2,13],"151":[2,13],"152":[2,13],"153":[2,13],"154":[2,13],"155":[2,13],"156":[2,13],"157":[2,13],"158":[2,13],"159":[2,13],"160":[2,13],"161":[2,13],"162":[2,13]},{"1":[2,14],"3":[2,14],"26":[2,14],"27":[2,14],"49":[2,14],"57":[2,14],"59":[2,14],"77":[2,14],"79":[2,14],"82":[2,14],"94":[2,14],"99":[2,14],"107":[2,14],"110":[2,14],"111":[2,14],"112":[2,14],"115":[2,14],"117":[2,14],"124":[2,14],"127":[2,14],"130":[2,14],"131":[2,14],"133":[2,14],"134":[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],"162":[2,14]},{"1":[2,15],"3":[2,15],"26":[2,15],"27":[2,15],"49":[2,15],"57":[2,15],"59":[2,15],"77":[2,15],"79":[2,15],"82":[2,15],"94":[2,15],"99":[2,15],"107":[2,15],"110":[2,15],"111":[2,15],"112":[2,15],"115":[2,15],"117":[2,15],"124":[2,15],"127":[2,15],"130":[2,15],"131":[2,15],"133":[2,15],"134":[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],"162":[2,15]},{"1":[2,16],"3":[2,16],"26":[2,16],"27":[2,16],"49":[2,16],"57":[2,16],"59":[2,16],"77":[2,16],"79":[2,16],"82":[2,16],"94":[2,16],"99":[2,16],"107":[2,16],"110":[2,16],"111":[2,16],"112":[2,16],"115":[2,16],"117":[2,16],"124":[2,16],"127":[2,16],"130":[2,16],"131":[2,16],"133":[2,16],"134":[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],"162":[2,16]},{"1":[2,17],"3":[2,17],"26":[2,17],"27":[2,17],"49":[2,17],"57":[2,17],"59":[2,17],"77":[2,17],"79":[2,17],"82":[2,17],"94":[2,17],"99":[2,17],"107":[2,17],"110":[2,17],"111":[2,17],"112":[2,17],"115":[2,17],"117":[2,17],"124":[2,17],"127":[2,17],"130":[2,17],"131":[2,17],"133":[2,17],"134":[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],"162":[2,17]},{"1":[2,18],"3":[2,18],"26":[2,18],"27":[2,18],"49":[2,18],"57":[2,18],"59":[2,18],"77":[2,18],"79":[2,18],"82":[2,18],"94":[2,18],"99":[2,18],"107":[2,18],"110":[2,18],"111":[2,18],"112":[2,18],"115":[2,18],"117":[2,18],"124":[2,18],"127":[2,18],"130":[2,18],"131":[2,18],"133":[2,18],"134":[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],"162":[2,18]},{"1":[2,19],"3":[2,19],"26":[2,19],"27":[2,19],"49":[2,19],"57":[2,19],"59":[2,19],"77":[2,19],"79":[2,19],"82":[2,19],"94":[2,19],"99":[2,19],"107":[2,19],"110":[2,19],"111":[2,19],"112":[2,19],"115":[2,19],"117":[2,19],"124":[2,19],"127":[2,19],"130":[2,19],"131":[2,19],"133":[2,19],"134":[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],"162":[2,19]},{"1":[2,20],"3":[2,20],"26":[2,20],"27":[2,20],"49":[2,20],"57":[2,20],"59":[2,20],"77":[2,20],"79":[2,20],"82":[2,20],"94":[2,20],"99":[2,20],"107":[2,20],"110":[2,20],"111":[2,20],"112":[2,20],"115":[2,20],"117":[2,20],"124":[2,20],"127":[2,20],"130":[2,20],"131":[2,20],"133":[2,20],"134":[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],"162":[2,20]},{"1":[2,21],"3":[2,21],"26":[2,21],"27":[2,21],"49":[2,21],"57":[2,21],"59":[2,21],"77":[2,21],"79":[2,21],"82":[2,21],"94":[2,21],"99":[2,21],"107":[2,21],"110":[2,21],"111":[2,21],"112":[2,21],"115":[2,21],"117":[2,21],"124":[2,21],"127":[2,21],"130":[2,21],"131":[2,21],"133":[2,21],"134":[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],"162":[2,21]},{"1":[2,22],"3":[2,22],"26":[2,22],"27":[2,22],"49":[2,22],"57":[2,22],"59":[2,22],"77":[2,22],"79":[2,22],"82":[2,22],"94":[2,22],"99":[2,22],"107":[2,22],"110":[2,22],"111":[2,22],"112":[2,22],"115":[2,22],"117":[2,22],"124":[2,22],"127":[2,22],"130":[2,22],"131":[2,22],"133":[2,22],"134":[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],"162":[2,22]},{"1":[2,23],"3":[2,23],"26":[2,23],"27":[2,23],"49":[2,23],"57":[2,23],"59":[2,23],"77":[2,23],"79":[2,23],"82":[2,23],"94":[2,23],"99":[2,23],"107":[2,23],"110":[2,23],"111":[2,23],"112":[2,23],"115":[2,23],"117":[2,23],"124":[2,23],"127":[2,23],"130":[2,23],"131":[2,23],"133":[2,23],"134":[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],"162":[2,23]},{"1":[2,24],"3":[2,24],"26":[2,24],"27":[2,24],"49":[2,24],"57":[2,24],"59":[2,24],"77":[2,24],"79":[2,24],"82":[2,24],"94":[2,24],"99":[2,24],"107":[2,24],"110":[2,24],"111":[2,24],"112":[2,24],"115":[2,24],"117":[2,24],"124":[2,24],"127":[2,24],"130":[2,24],"131":[2,24],"133":[2,24],"134":[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],"162":[2,24]},{"1":[2,25],"3":[2,25],"26":[2,25],"27":[2,25],"49":[2,25],"57":[2,25],"59":[2,25],"77":[2,25],"79":[2,25],"82":[2,25],"94":[2,25],"99":[2,25],"107":[2,25],"110":[2,25],"111":[2,25],"112":[2,25],"115":[2,25],"117":[2,25],"124":[2,25],"127":[2,25],"130":[2,25],"131":[2,25],"133":[2,25],"134":[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],"162":[2,25]},{"1":[2,26],"3":[2,26],"26":[2,26],"27":[2,26],"49":[2,26],"57":[2,26],"59":[2,26],"77":[2,26],"79":[2,26],"82":[2,26],"94":[2,26],"99":[2,26],"107":[2,26],"110":[2,26],"111":[2,26],"112":[2,26],"115":[2,26],"117":[2,26],"124":[2,26],"127":[2,26],"130":[2,26],"131":[2,26],"133":[2,26],"134":[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],"162":[2,26]},{"1":[2,69],"3":[2,69],"26":[2,69],"27":[2,69],"45":[1,140],"49":[2,69],"57":[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],"94":[2,69],"99":[2,69],"107":[2,69],"110":[2,69],"111":[2,69],"112":[2,69],"115":[2,69],"117":[2,69],"124":[2,69],"127":[2,69],"130":[2,69],"131":[2,69],"133":[2,69],"134":[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],"162":[2,69]},{"1":[2,70],"3":[2,70],"26":[2,70],"27":[2,70],"49":[2,70],"57":[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],"94":[2,70],"99":[2,70],"107":[2,70],"110":[2,70],"111":[2,70],"112":[2,70],"115":[2,70],"117":[2,70],"124":[2,70],"127":[2,70],"130":[2,70],"131":[2,70],"133":[2,70],"134":[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],"162":[2,70]},{"1":[2,71],"3":[2,71],"26":[2,71],"27":[2,71],"49":[2,71],"57":[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],"94":[2,71],"99":[2,71],"107":[2,71],"110":[2,71],"111":[2,71],"112":[2,71],"115":[2,71],"117":[2,71],"124":[2,71],"127":[2,71],"130":[2,71],"131":[2,71],"133":[2,71],"134":[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],"162":[2,71]},{"1":[2,72],"3":[2,72],"26":[2,72],"27":[2,72],"49":[2,72],"57":[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],"94":[2,72],"99":[2,72],"107":[2,72],"110":[2,72],"111":[2,72],"112":[2,72],"115":[2,72],"117":[2,72],"124":[2,72],"127":[2,72],"130":[2,72],"131":[2,72],"133":[2,72],"134":[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],"162":[2,72]},{"1":[2,73],"3":[2,73],"26":[2,73],"27":[2,73],"49":[2,73],"57":[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],"94":[2,73],"99":[2,73],"107":[2,73],"110":[2,73],"111":[2,73],"112":[2,73],"115":[2,73],"117":[2,73],"124":[2,73],"127":[2,73],"130":[2,73],"131":[2,73],"133":[2,73],"134":[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],"162":[2,73]},{"1":[2,74],"3":[2,74],"26":[2,74],"27":[2,74],"49":[2,74],"57":[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],"94":[2,74],"99":[2,74],"107":[2,74],"110":[2,74],"111":[2,74],"112":[2,74],"115":[2,74],"117":[2,74],"124":[2,74],"127":[2,74],"130":[2,74],"131":[2,74],"133":[2,74],"134":[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],"162":[2,74]},{"1":[2,103],"3":[2,103],"26":[2,103],"27":[2,103],"49":[2,103],"57":[2,103],"59":[2,103],"61":142,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,103],"78":[1,139],"79":[2,103],"82":[2,103],"91":141,"92":[1,131],"94":[2,103],"99":[2,103],"107":[2,103],"110":[2,103],"111":[2,103],"112":[2,103],"115":[2,103],"117":[2,103],"124":[2,103],"127":[2,103],"130":[2,103],"131":[2,103],"133":[2,103],"134":[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],"162":[2,103]},{"7":144,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":146,"62":143,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,105],"3":[2,105],"26":[2,105],"27":[2,105],"49":[2,105],"57":[2,105],"59":[2,105],"77":[2,105],"79":[2,105],"82":[2,105],"94":[2,105],"99":[2,105],"107":[2,105],"110":[2,105],"111":[2,105],"112":[2,105],"115":[2,105],"117":[2,105],"124":[2,105],"127":[2,105],"130":[2,105],"131":[2,105],"133":[2,105],"134":[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],"162":[2,105]},{"51":147,"52":[2,56],"56":148,"57":[2,56],"58":[1,149]},{"3":[1,151],"5":150,"26":[1,6]},{"6":152,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":153,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":154,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":155,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":156,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":157,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":158,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":159,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":160,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,168],"3":[2,168],"26":[2,168],"27":[2,168],"49":[2,168],"57":[2,168],"59":[2,168],"77":[2,168],"79":[2,168],"82":[2,168],"94":[2,168],"99":[2,168],"107":[2,168],"110":[2,168],"111":[2,168],"112":[2,168],"115":[2,168],"117":[2,168],"124":[2,168],"127":[2,168],"130":[2,168],"131":[2,168],"133":[2,168],"134":[2,168],"137":[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]},{"3":[1,151],"5":161,"26":[1,6]},{"6":162,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,49],"3":[2,49],"6":163,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[2,49],"27":[2,49],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,49],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,49],"59":[2,49],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"77":[2,49],"79":[2,49],"80":[1,81],"82":[2,49],"84":[1,54],"88":[1,33],"89":34,"94":[2,49],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,49],"101":[1,47],"105":[1,48],"106":[1,70],"107":[2,49],"108":[1,56],"109":50,"110":[2,49],"111":[2,49],"112":[1,51],"115":[2,49],"117":[2,49],"118":[1,52],"123":77,"124":[2,49],"126":46,"127":[2,49],"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45],"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],"162":[2,49]},{"3":[1,151],"5":164,"26":[1,6]},{"28":166,"29":[1,85],"113":165},{"6":167,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,66],"3":[2,66],"26":[2,66],"27":[2,66],"45":[2,66],"49":[2,66],"57":[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],"85":[1,168],"90":[2,66],"92":[2,66],"94":[2,66],"99":[2,66],"107":[2,66],"110":[2,66],"111":[2,66],"112":[2,66],"115":[2,66],"117":[2,66],"124":[2,66],"127":[2,66],"130":[2,66],"131":[2,66],"133":[2,66],"134":[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],"162":[2,66]},{"7":144,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":169,"62":170,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,50],"3":[2,50],"26":[2,50],"27":[2,50],"48":[2,50],"49":[2,50],"57":[2,50],"59":[2,50],"77":[2,50],"79":[2,50],"82":[2,50],"94":[2,50],"99":[2,50],"103":[2,50],"104":[2,50],"107":[2,50],"110":[2,50],"111":[2,50],"112":[2,50],"115":[2,50],"117":[2,50],"120":[2,50],"122":[2,50],"124":[2,50],"127":[2,50],"130":[2,50],"131":[2,50],"133":[2,50],"134":[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],"162":[2,50]},{"1":[2,140],"3":[2,140],"26":[2,140],"27":[2,140],"49":[2,140],"57":[2,140],"59":[2,140],"77":[2,140],"79":[2,140],"82":[2,140],"94":[2,140],"99":[2,140],"107":[2,140],"110":[2,140],"111":[2,140],"112":[2,140],"115":[2,140],"117":[2,140],"124":[2,140],"127":[2,140],"130":[2,140],"131":[2,140],"133":[2,140],"134":[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],"162":[2,140]},{"1":[2,67],"3":[2,67],"26":[2,67],"27":[2,67],"45":[2,67],"49":[2,67],"57":[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],"94":[2,67],"99":[2,67],"107":[2,67],"110":[2,67],"111":[2,67],"112":[2,67],"115":[2,67],"117":[2,67],"124":[2,67],"127":[2,67],"130":[2,67],"131":[2,67],"133":[2,67],"134":[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],"162":[2,67]},{"1":[2,68],"3":[2,68],"26":[2,68],"27":[2,68],"45":[2,68],"49":[2,68],"57":[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],"94":[2,68],"99":[2,68],"107":[2,68],"110":[2,68],"111":[2,68],"112":[2,68],"115":[2,68],"117":[2,68],"124":[2,68],"127":[2,68],"130":[2,68],"131":[2,68],"133":[2,68],"134":[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],"162":[2,68]},{"1":[2,33],"3":[2,33],"26":[2,33],"27":[2,33],"49":[2,33],"57":[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],"94":[2,33],"99":[2,33],"107":[2,33],"110":[2,33],"111":[2,33],"112":[2,33],"115":[2,33],"117":[2,33],"124":[2,33],"127":[2,33],"130":[2,33],"131":[2,33],"133":[2,33],"134":[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],"162":[2,33]},{"1":[2,34],"3":[2,34],"26":[2,34],"27":[2,34],"49":[2,34],"57":[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],"94":[2,34],"99":[2,34],"107":[2,34],"110":[2,34],"111":[2,34],"112":[2,34],"115":[2,34],"117":[2,34],"124":[2,34],"127":[2,34],"130":[2,34],"131":[2,34],"133":[2,34],"134":[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],"162":[2,34]},{"1":[2,35],"3":[2,35],"26":[2,35],"27":[2,35],"49":[2,35],"57":[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],"94":[2,35],"99":[2,35],"107":[2,35],"110":[2,35],"111":[2,35],"112":[2,35],"115":[2,35],"117":[2,35],"124":[2,35],"127":[2,35],"130":[2,35],"131":[2,35],"133":[2,35],"134":[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],"162":[2,35]},{"1":[2,36],"3":[2,36],"26":[2,36],"27":[2,36],"49":[2,36],"57":[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],"94":[2,36],"99":[2,36],"107":[2,36],"110":[2,36],"111":[2,36],"112":[2,36],"115":[2,36],"117":[2,36],"124":[2,36],"127":[2,36],"130":[2,36],"131":[2,36],"133":[2,36],"134":[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],"162":[2,36]},{"1":[2,37],"3":[2,37],"26":[2,37],"27":[2,37],"49":[2,37],"57":[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],"94":[2,37],"99":[2,37],"107":[2,37],"110":[2,37],"111":[2,37],"112":[2,37],"115":[2,37],"117":[2,37],"124":[2,37],"127":[2,37],"130":[2,37],"131":[2,37],"133":[2,37],"134":[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],"162":[2,37]},{"1":[2,38],"3":[2,38],"26":[2,38],"27":[2,38],"49":[2,38],"57":[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],"94":[2,38],"99":[2,38],"107":[2,38],"110":[2,38],"111":[2,38],"112":[2,38],"115":[2,38],"117":[2,38],"124":[2,38],"127":[2,38],"130":[2,38],"131":[2,38],"133":[2,38],"134":[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],"162":[2,38]},{"1":[2,39],"3":[2,39],"26":[2,39],"27":[2,39],"49":[2,39],"57":[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],"94":[2,39],"99":[2,39],"107":[2,39],"110":[2,39],"111":[2,39],"112":[2,39],"115":[2,39],"117":[2,39],"124":[2,39],"127":[2,39],"130":[2,39],"131":[2,39],"133":[2,39],"134":[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],"162":[2,39]},{"1":[2,40],"3":[2,40],"26":[2,40],"27":[2,40],"49":[2,40],"57":[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],"94":[2,40],"99":[2,40],"107":[2,40],"110":[2,40],"111":[2,40],"112":[2,40],"115":[2,40],"117":[2,40],"124":[2,40],"127":[2,40],"130":[2,40],"131":[2,40],"133":[2,40],"134":[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],"162":[2,40]},{"1":[2,41],"3":[2,41],"26":[2,41],"27":[2,41],"49":[2,41],"57":[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],"94":[2,41],"99":[2,41],"107":[2,41],"110":[2,41],"111":[2,41],"112":[2,41],"115":[2,41],"117":[2,41],"124":[2,41],"127":[2,41],"130":[2,41],"131":[2,41],"133":[2,41],"134":[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],"162":[2,41]},{"1":[2,42],"3":[2,42],"26":[2,42],"27":[2,42],"49":[2,42],"57":[2,42],"59":[2,42],"70":[2,42],"71":[2,42],"72":[2,42],"73":[2,42],"76":[2,42],"77":[2,42],"78":[2,42],"79":[2,42],"82":[2,42],"90":[2,42],"92":[2,42],"94":[2,42],"99":[2,42],"107":[2,42],"110":[2,42],"111":[2,42],"112":[2,42],"115":[2,42],"117":[2,42],"124":[2,42],"127":[2,42],"130":[2,42],"131":[2,42],"133":[2,42],"134":[2,42],"137":[2,42],"138":[2,42],"139":[2,42],"140":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"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]},{"1":[2,43],"3":[2,43],"26":[2,43],"27":[2,43],"49":[2,43],"57":[2,43],"59":[2,43],"70":[2,43],"71":[2,43],"72":[2,43],"73":[2,43],"76":[2,43],"77":[2,43],"78":[2,43],"79":[2,43],"82":[2,43],"90":[2,43],"92":[2,43],"94":[2,43],"99":[2,43],"107":[2,43],"110":[2,43],"111":[2,43],"112":[2,43],"115":[2,43],"117":[2,43],"124":[2,43],"127":[2,43],"130":[2,43],"131":[2,43],"133":[2,43],"134":[2,43],"137":[2,43],"138":[2,43],"139":[2,43],"140":[2,43],"141":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43],"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]},{"6":171,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[2,123],"6":172,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,174],"27":[2,123],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,123],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"93":173,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,123],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,114],"3":[2,114],"26":[2,114],"27":[2,114],"49":[2,114],"57":[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],"94":[2,114],"99":[2,114],"107":[2,114],"110":[2,114],"111":[2,114],"112":[2,114],"115":[2,114],"117":[2,114],"124":[2,114],"127":[2,114],"130":[2,114],"131":[2,114],"133":[2,114],"134":[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],"162":[2,114]},{"1":[2,115],"3":[2,115],"26":[2,115],"27":[2,115],"28":175,"29":[1,85],"49":[2,115],"57":[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],"94":[2,115],"99":[2,115],"107":[2,115],"110":[2,115],"111":[2,115],"112":[2,115],"115":[2,115],"117":[2,115],"124":[2,115],"127":[2,115],"130":[2,115],"131":[2,115],"133":[2,115],"134":[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],"162":[2,115]},{"92":[1,176]},{"3":[2,54],"26":[2,54]},{"3":[2,55],"26":[2,55]},{"1":[2,165],"3":[2,165],"26":[2,165],"27":[2,165],"49":[2,165],"57":[2,165],"59":[2,165],"77":[2,165],"79":[2,165],"82":[2,165],"94":[2,165],"99":[2,165],"107":[2,165],"110":[2,165],"111":[2,165],"112":[2,165],"115":[2,165],"117":[2,165],"120":[1,177],"124":[2,165],"125":178,"127":[2,165],"130":[2,165],"131":[2,165],"133":[2,165],"134":[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],"162":[2,165]},{"6":179,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,62],"3":[2,62],"26":[2,62],"27":[2,62],"45":[2,62],"49":[2,62],"57":[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],"85":[2,62],"90":[2,62],"92":[2,62],"94":[2,62],"99":[2,62],"107":[2,62],"110":[2,62],"111":[2,62],"112":[2,62],"115":[2,62],"117":[2,62],"124":[2,62],"127":[2,62],"130":[2,62],"131":[2,62],"133":[2,62],"134":[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],"162":[2,62]},{"1":[2,65],"3":[2,65],"26":[2,65],"27":[2,65],"45":[2,65],"49":[2,65],"57":[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],"85":[2,65],"90":[2,65],"92":[2,65],"94":[2,65],"99":[2,65],"107":[2,65],"110":[2,65],"111":[2,65],"112":[2,65],"115":[2,65],"117":[2,65],"124":[2,65],"127":[2,65],"130":[2,65],"131":[2,65],"133":[2,65],"134":[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],"162":[2,65]},{"3":[2,87],"24":186,"26":[1,183],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":182,"48":[1,55],"57":[2,87],"81":180,"82":[2,87],"83":181},{"1":[2,31],"3":[2,31],"26":[2,31],"27":[2,31],"45":[2,31],"49":[2,31],"57":[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],"94":[2,31],"99":[2,31],"107":[2,31],"110":[2,31],"111":[2,31],"112":[2,31],"115":[2,31],"117":[2,31],"124":[2,31],"127":[2,31],"130":[2,31],"131":[2,31],"133":[2,31],"134":[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],"162":[2,31]},{"1":[2,32],"3":[2,32],"26":[2,32],"27":[2,32],"45":[2,32],"49":[2,32],"57":[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],"94":[2,32],"99":[2,32],"107":[2,32],"110":[2,32],"111":[2,32],"112":[2,32],"115":[2,32],"117":[2,32],"124":[2,32],"127":[2,32],"130":[2,32],"131":[2,32],"133":[2,32],"134":[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],"162":[2,32]},{"6":187,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,30],"3":[2,30],"26":[2,30],"27":[2,30],"45":[2,30],"49":[2,30],"57":[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],"85":[2,30],"90":[2,30],"92":[2,30],"94":[2,30],"99":[2,30],"107":[2,30],"110":[2,30],"111":[2,30],"112":[2,30],"115":[2,30],"116":[2,30],"117":[2,30],"124":[2,30],"127":[2,30],"130":[2,30],"131":[2,30],"133":[2,30],"134":[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],"162":[2,30]},{"1":[2,29],"3":[2,29],"26":[2,29],"27":[2,29],"48":[2,29],"49":[2,29],"57":[2,29],"59":[2,29],"77":[2,29],"79":[2,29],"82":[2,29],"94":[2,29],"99":[2,29],"103":[2,29],"104":[2,29],"107":[2,29],"110":[2,29],"111":[2,29],"112":[2,29],"115":[2,29],"117":[2,29],"120":[2,29],"122":[2,29],"124":[2,29],"127":[2,29],"130":[2,29],"131":[2,29],"133":[2,29],"134":[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],"162":[2,29]},{"1":[2,7],"3":[2,7],"6":188,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"27":[2,7],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,4]},{"1":[2,180],"3":[2,180],"26":[2,180],"27":[2,180],"49":[2,180],"57":[2,180],"59":[2,180],"77":[2,180],"79":[2,180],"82":[2,180],"94":[2,180],"99":[2,180],"107":[2,180],"110":[2,180],"111":[2,180],"112":[2,180],"115":[2,180],"117":[2,180],"124":[2,180],"127":[2,180],"130":[2,180],"131":[2,180],"133":[2,180],"134":[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],"162":[2,180]},{"1":[2,181],"3":[2,181],"26":[2,181],"27":[2,181],"49":[2,181],"57":[2,181],"59":[2,181],"77":[2,181],"79":[2,181],"82":[2,181],"94":[2,181],"99":[2,181],"107":[2,181],"110":[2,181],"111":[2,181],"112":[2,181],"115":[2,181],"117":[2,181],"124":[2,181],"127":[2,181],"130":[2,181],"131":[2,181],"133":[2,181],"134":[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],"162":[2,181]},{"6":189,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":190,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":191,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":192,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":193,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":194,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":195,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":196,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":197,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":198,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":199,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":200,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":201,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":202,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":203,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":204,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":205,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":206,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":207,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,51],"3":[2,51],"6":208,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[2,51],"27":[2,51],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,51],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,51],"59":[2,51],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"77":[2,51],"79":[2,51],"80":[1,81],"82":[2,51],"84":[1,54],"88":[1,33],"89":34,"94":[2,51],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,51],"101":[1,47],"105":[1,48],"106":[1,70],"107":[2,51],"108":[1,56],"109":50,"110":[2,51],"111":[2,51],"112":[2,51],"115":[2,51],"117":[2,51],"118":[1,52],"123":77,"124":[2,51],"126":46,"127":[2,51],"128":[1,37],"129":[1,38],"130":[2,51],"131":[2,51],"132":[1,41],"133":[2,51],"134":[2,51],"135":[1,44],"136":[1,45],"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],"162":[2,51]},{"6":209,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":210,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":211,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":212,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":213,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":214,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":215,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":216,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":217,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":218,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":219,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":220,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,144],"3":[2,144],"26":[2,144],"27":[2,144],"49":[2,144],"57":[2,144],"59":[2,144],"77":[2,144],"79":[2,144],"82":[2,144],"94":[2,144],"99":[2,144],"107":[2,144],"110":[2,144],"111":[2,144],"112":[2,144],"115":[2,144],"117":[2,144],"124":[2,144],"127":[2,144],"130":[2,144],"131":[2,144],"133":[2,144],"134":[2,144],"137":[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]},{"28":166,"29":[1,85],"113":221},{"59":[1,222]},{"3":[1,87],"27":[1,223]},{"1":[2,28],"3":[2,28],"26":[2,28],"27":[2,28],"48":[2,28],"49":[2,28],"57":[2,28],"59":[2,28],"77":[2,28],"79":[2,28],"82":[2,28],"94":[2,28],"99":[2,28],"103":[2,28],"104":[2,28],"107":[2,28],"110":[2,28],"111":[2,28],"112":[2,28],"115":[2,28],"117":[2,28],"120":[2,28],"122":[2,28],"124":[2,28],"127":[2,28],"130":[2,28],"131":[2,28],"133":[2,28],"134":[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],"162":[2,28]},{"91":224,"92":[1,131]},{"1":[2,108],"3":[2,108],"26":[2,108],"27":[2,108],"49":[2,108],"57":[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],"92":[2,108],"94":[2,108],"99":[2,108],"107":[2,108],"110":[2,108],"111":[2,108],"112":[2,108],"115":[2,108],"117":[2,108],"124":[2,108],"127":[2,108],"130":[2,108],"131":[2,108],"133":[2,108],"134":[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],"162":[2,108]},{"1":[2,63],"3":[2,63],"26":[2,63],"27":[2,63],"45":[2,63],"49":[2,63],"57":[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],"85":[2,63],"90":[2,63],"92":[2,63],"94":[2,63],"99":[2,63],"107":[2,63],"110":[2,63],"111":[2,63],"112":[2,63],"115":[2,63],"117":[2,63],"124":[2,63],"127":[2,63],"130":[2,63],"131":[2,63],"133":[2,63],"134":[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],"162":[2,63]},{"3":[2,123],"6":226,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,174],"27":[2,123],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,123],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"93":225,"94":[2,123],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"28":227,"29":[1,85]},{"28":228,"29":[1,85]},{"1":[2,77],"3":[2,77],"26":[2,77],"27":[2,77],"45":[2,77],"49":[2,77],"57":[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],"85":[2,77],"90":[2,77],"92":[2,77],"94":[2,77],"99":[2,77],"107":[2,77],"110":[2,77],"111":[2,77],"112":[2,77],"115":[2,77],"117":[2,77],"124":[2,77],"127":[2,77],"130":[2,77],"131":[2,77],"133":[2,77],"134":[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],"162":[2,77]},{"28":229,"29":[1,85]},{"1":[2,79],"3":[2,79],"26":[2,79],"27":[2,79],"45":[2,79],"49":[2,79],"57":[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],"85":[2,79],"90":[2,79],"92":[2,79],"94":[2,79],"99":[2,79],"107":[2,79],"110":[2,79],"111":[2,79],"112":[2,79],"115":[2,79],"117":[2,79],"124":[2,79],"127":[2,79],"130":[2,79],"131":[2,79],"133":[2,79],"134":[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],"162":[2,79]},{"1":[2,80],"3":[2,80],"26":[2,80],"27":[2,80],"45":[2,80],"49":[2,80],"57":[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],"85":[2,80],"90":[2,80],"92":[2,80],"94":[2,80],"99":[2,80],"107":[2,80],"110":[2,80],"111":[2,80],"112":[2,80],"115":[2,80],"117":[2,80],"124":[2,80],"127":[2,80],"130":[2,80],"131":[2,80],"133":[2,80],"134":[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],"162":[2,80]},{"6":230,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":231,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":232,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,109],"3":[2,109],"26":[2,109],"27":[2,109],"49":[2,109],"57":[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],"92":[2,109],"94":[2,109],"99":[2,109],"107":[2,109],"110":[2,109],"111":[2,109],"112":[2,109],"115":[2,109],"117":[2,109],"124":[2,109],"127":[2,109],"130":[2,109],"131":[2,109],"133":[2,109],"134":[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],"162":[2,109]},{"1":[2,64],"3":[2,64],"26":[2,64],"27":[2,64],"45":[2,64],"49":[2,64],"57":[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],"85":[2,64],"90":[2,64],"92":[2,64],"94":[2,64],"99":[2,64],"107":[2,64],"110":[2,64],"111":[2,64],"112":[2,64],"115":[2,64],"117":[2,64],"124":[2,64],"127":[2,64],"130":[2,64],"131":[2,64],"133":[2,64],"134":[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],"162":[2,64]},{"1":[2,104],"3":[2,104],"26":[2,104],"27":[2,104],"49":[2,104],"57":[2,104],"59":[2,104],"61":142,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,104],"78":[1,139],"79":[2,104],"82":[2,104],"91":141,"92":[1,131],"94":[2,104],"99":[2,104],"107":[2,104],"110":[2,104],"111":[2,104],"112":[2,104],"115":[2,104],"117":[2,104],"124":[2,104],"127":[2,104],"130":[2,104],"131":[2,104],"133":[2,104],"134":[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],"162":[2,104]},{"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"78":[1,139],"91":129,"92":[1,131]},{"1":[2,69],"3":[2,69],"26":[2,69],"27":[2,69],"49":[2,69],"57":[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],"92":[2,69],"94":[2,69],"99":[2,69],"107":[2,69],"110":[2,69],"111":[2,69],"112":[2,69],"115":[2,69],"117":[2,69],"124":[2,69],"127":[2,69],"130":[2,69],"131":[2,69],"133":[2,69],"134":[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],"162":[2,69]},{"1":[2,66],"3":[2,66],"26":[2,66],"27":[2,66],"49":[2,66],"57":[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],"92":[2,66],"94":[2,66],"99":[2,66],"107":[2,66],"110":[2,66],"111":[2,66],"112":[2,66],"115":[2,66],"117":[2,66],"124":[2,66],"127":[2,66],"130":[2,66],"131":[2,66],"133":[2,66],"134":[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],"162":[2,66]},{"52":[1,233],"57":[1,234]},{"52":[2,57],"57":[2,57],"59":[1,235]},{"52":[2,59],"57":[2,59],"59":[2,59]},{"1":[2,53],"3":[2,53],"26":[2,53],"27":[2,53],"49":[2,53],"57":[2,53],"59":[2,53],"77":[2,53],"79":[2,53],"82":[2,53],"94":[2,53],"99":[2,53],"107":[2,53],"110":[2,53],"111":[2,53],"112":[2,53],"115":[2,53],"117":[2,53],"124":[2,53],"127":[2,53],"130":[2,53],"131":[2,53],"133":[2,53],"134":[2,53],"137":[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]},{"24":86,"48":[1,55]},{"1":[2,171],"3":[2,171],"26":[2,171],"27":[2,171],"49":[1,110],"57":[2,171],"59":[2,171],"77":[2,171],"79":[2,171],"82":[2,171],"94":[2,171],"99":[2,171],"107":[2,171],"109":123,"110":[2,171],"111":[2,171],"112":[2,171],"115":[2,171],"117":[2,171],"124":[2,171],"127":[2,171],"130":[2,171],"131":[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],"162":[2,171]},{"1":[2,172],"3":[2,172],"26":[2,172],"27":[2,172],"49":[1,110],"57":[2,172],"59":[2,172],"77":[2,172],"79":[2,172],"82":[2,172],"94":[2,172],"99":[2,172],"107":[2,172],"109":123,"110":[2,172],"111":[2,172],"112":[2,172],"115":[2,172],"117":[2,172],"124":[2,172],"127":[2,172],"130":[2,172],"131":[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],"162":[2,172]},{"1":[2,173],"3":[2,173],"26":[2,173],"27":[2,173],"49":[1,110],"57":[2,173],"59":[2,173],"77":[2,173],"79":[2,173],"82":[2,173],"94":[2,173],"99":[2,173],"107":[2,173],"109":123,"110":[2,173],"111":[2,173],"112":[2,173],"115":[2,173],"117":[2,173],"124":[2,173],"127":[2,173],"130":[2,173],"131":[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],"162":[2,173]},{"1":[2,174],"3":[2,174],"26":[2,174],"27":[2,174],"49":[1,110],"57":[2,174],"59":[2,174],"77":[2,174],"79":[2,174],"82":[2,174],"94":[2,174],"99":[2,174],"107":[2,174],"109":123,"110":[2,174],"111":[2,174],"112":[2,174],"115":[2,174],"117":[2,174],"124":[2,174],"127":[2,174],"130":[2,174],"131":[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],"162":[2,174]},{"1":[2,175],"3":[2,175],"26":[2,175],"27":[2,175],"49":[1,110],"57":[2,175],"59":[2,175],"77":[2,175],"79":[2,175],"82":[2,175],"94":[2,175],"99":[2,175],"107":[2,175],"109":123,"110":[2,175],"111":[2,175],"112":[2,175],"115":[2,175],"117":[2,175],"124":[2,175],"127":[2,175],"130":[2,175],"131":[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],"162":[2,175]},{"1":[2,176],"3":[2,176],"26":[2,176],"27":[2,176],"49":[1,110],"57":[2,176],"59":[2,176],"77":[2,176],"79":[2,176],"82":[2,176],"94":[2,176],"99":[2,176],"107":[2,176],"109":123,"110":[2,176],"111":[2,176],"112":[2,176],"115":[2,176],"117":[2,176],"124":[2,176],"127":[2,176],"130":[2,176],"131":[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],"162":[2,176]},{"1":[2,177],"3":[2,177],"26":[2,177],"27":[2,177],"49":[1,110],"57":[2,177],"59":[2,177],"77":[2,177],"79":[2,177],"82":[2,177],"94":[2,177],"99":[2,177],"107":[2,177],"109":123,"110":[2,177],"111":[2,177],"112":[2,177],"115":[2,177],"117":[2,177],"124":[2,177],"127":[2,177],"130":[2,177],"131":[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],"162":[2,177]},{"1":[2,178],"3":[2,178],"26":[2,178],"27":[2,178],"49":[1,110],"57":[2,178],"59":[2,178],"77":[2,178],"79":[2,178],"82":[2,178],"94":[2,178],"99":[2,178],"107":[2,178],"109":123,"110":[2,178],"111":[2,178],"112":[2,178],"115":[2,178],"117":[2,178],"124":[2,178],"127":[2,178],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[1,119]},{"1":[2,179],"3":[2,179],"26":[2,179],"27":[2,179],"49":[1,110],"57":[2,179],"59":[2,179],"77":[2,179],"79":[2,179],"82":[2,179],"94":[2,179],"99":[2,179],"107":[2,179],"109":123,"110":[2,179],"111":[2,179],"112":[2,179],"115":[2,179],"117":[2,179],"124":[2,179],"127":[2,179],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[1,119]},{"102":236,"103":[1,237],"104":[1,238]},{"1":[2,138],"3":[2,138],"26":[2,138],"27":[2,138],"49":[1,110],"57":[2,138],"59":[1,125],"77":[2,138],"79":[2,138],"82":[2,138],"94":[2,138],"99":[2,138],"107":[2,138],"109":123,"110":[2,138],"111":[2,138],"112":[2,138],"115":[1,120],"117":[2,138],"124":[2,138],"127":[2,138],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,48],"3":[2,48],"26":[2,48],"27":[2,48],"49":[1,110],"57":[2,48],"59":[1,125],"77":[2,48],"79":[2,48],"82":[2,48],"94":[2,48],"99":[2,48],"107":[2,48],"109":123,"110":[2,48],"111":[2,48],"112":[1,124],"115":[1,120],"117":[2,48],"124":[2,48],"127":[2,48],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,143],"3":[2,143],"26":[2,143],"27":[2,143],"49":[2,143],"57":[2,143],"59":[2,143],"77":[2,143],"79":[2,143],"82":[2,143],"94":[2,143],"99":[2,143],"107":[2,143],"110":[2,143],"111":[2,143],"112":[2,143],"115":[2,143],"117":[2,143],"124":[2,143],"127":[2,143],"130":[2,143],"131":[2,143],"133":[2,143],"134":[2,143],"137":[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]},{"114":239,"115":[1,240],"116":[1,241]},{"57":[1,242],"115":[2,147],"116":[2,147]},{"26":[1,243],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"7":244,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":146,"62":170,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,94],"3":[2,94],"26":[1,246],"27":[2,94],"49":[2,94],"57":[2,94],"59":[2,94],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,94],"78":[2,66],"79":[2,94],"82":[2,94],"85":[1,245],"92":[2,66],"94":[2,94],"99":[2,94],"107":[2,94],"110":[2,94],"111":[2,94],"112":[2,94],"115":[2,94],"117":[2,94],"124":[2,94],"127":[2,94],"130":[2,94],"131":[2,94],"133":[2,94],"134":[2,94],"137":[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]},{"61":142,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"78":[1,139],"91":141,"92":[1,131]},{"49":[1,110],"59":[1,125],"107":[1,247],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[2,124],"27":[2,124],"49":[1,110],"57":[2,124],"59":[1,248],"99":[2,124],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[1,251],"27":[1,252],"57":[1,250],"99":[1,249]},{"6":253,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,116],"3":[2,116],"26":[2,116],"27":[2,116],"45":[2,116],"49":[2,116],"57":[2,116],"59":[2,116],"70":[2,116],"71":[2,116],"72":[2,116],"73":[2,116],"76":[2,116],"77":[2,116],"78":[2,116],"79":[2,116],"82":[2,116],"85":[2,116],"90":[2,116],"92":[2,116],"94":[2,116],"99":[2,116],"107":[2,116],"110":[2,116],"111":[2,116],"112":[2,116],"115":[2,116],"117":[2,116],"124":[2,116],"127":[2,116],"130":[2,116],"131":[2,116],"133":[2,116],"134":[2,116],"137":[2,116],"138":[2,116],"139":[2,116],"140":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"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]},{"3":[2,123],"6":226,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,174],"27":[2,123],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,123],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"93":254,"94":[2,123],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[1,151],"5":255,"26":[1,6],"124":[1,256]},{"1":[2,164],"3":[2,164],"26":[2,164],"27":[2,164],"49":[2,164],"57":[2,164],"59":[2,164],"77":[2,164],"79":[2,164],"82":[2,164],"94":[2,164],"99":[2,164],"107":[2,164],"110":[2,164],"111":[2,164],"112":[2,164],"115":[2,164],"117":[2,164],"120":[2,164],"124":[2,164],"127":[2,164],"130":[2,164],"131":[2,164],"133":[2,164],"134":[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],"162":[2,164]},{"1":[2,141],"3":[2,141],"26":[2,141],"27":[2,141],"49":[1,110],"57":[2,141],"59":[1,125],"77":[2,141],"79":[2,141],"82":[2,141],"94":[2,141],"99":[2,141],"107":[2,141],"109":123,"110":[1,78],"111":[1,257],"112":[1,124],"115":[1,120],"117":[2,141],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[1,260],"57":[1,259],"82":[1,258]},{"57":[1,262],"82":[1,261]},{"3":[2,88],"27":[2,88],"57":[2,88],"82":[2,88]},{"3":[2,87],"24":186,"27":[2,87],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":182,"48":[1,55],"57":[2,87],"81":263},{"45":[1,264]},{"45":[1,265]},{"3":[2,47],"27":[2,47],"57":[2,47],"82":[2,47]},{"3":[1,151],"5":266,"26":[1,6],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,6],"3":[2,6],"27":[2,6],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,182],"3":[2,182],"26":[2,182],"27":[2,182],"49":[1,110],"57":[2,182],"59":[2,182],"77":[2,182],"79":[2,182],"82":[2,182],"94":[2,182],"99":[2,182],"107":[2,182],"109":123,"110":[2,182],"111":[2,182],"112":[2,182],"115":[2,182],"117":[2,182],"124":[2,182],"127":[2,182],"130":[2,182],"131":[2,182],"133":[1,89],"134":[1,90],"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],"162":[2,182]},{"1":[2,183],"3":[2,183],"26":[2,183],"27":[2,183],"49":[1,110],"57":[2,183],"59":[2,183],"77":[2,183],"79":[2,183],"82":[2,183],"94":[2,183],"99":[2,183],"107":[2,183],"109":123,"110":[2,183],"111":[2,183],"112":[2,183],"115":[2,183],"117":[2,183],"124":[2,183],"127":[2,183],"130":[2,183],"131":[2,183],"133":[1,89],"134":[1,90],"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],"162":[2,183]},{"1":[2,184],"3":[2,184],"26":[2,184],"27":[2,184],"49":[1,110],"57":[2,184],"59":[2,184],"77":[2,184],"79":[2,184],"82":[2,184],"94":[2,184],"99":[2,184],"107":[2,184],"109":123,"110":[2,184],"111":[2,184],"112":[2,184],"115":[2,184],"117":[2,184],"124":[2,184],"127":[2,184],"130":[2,184],"131":[2,184],"133":[1,89],"134":[1,90],"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],"162":[2,184]},{"1":[2,185],"3":[2,185],"26":[2,185],"27":[2,185],"49":[1,110],"57":[2,185],"59":[2,185],"77":[2,185],"79":[2,185],"82":[2,185],"94":[2,185],"99":[2,185],"107":[2,185],"109":123,"110":[2,185],"111":[2,185],"112":[2,185],"115":[2,185],"117":[2,185],"124":[2,185],"127":[2,185],"130":[2,185],"131":[2,185],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,186],"3":[2,186],"26":[2,186],"27":[2,186],"49":[1,110],"57":[2,186],"59":[2,186],"77":[2,186],"79":[2,186],"82":[2,186],"94":[2,186],"99":[2,186],"107":[2,186],"109":123,"110":[2,186],"111":[2,186],"112":[2,186],"115":[2,186],"117":[2,186],"124":[2,186],"127":[2,186],"130":[2,186],"131":[2,186],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,187],"3":[2,187],"26":[2,187],"27":[2,187],"49":[1,110],"57":[2,187],"59":[2,187],"77":[2,187],"79":[2,187],"82":[2,187],"94":[2,187],"99":[2,187],"107":[2,187],"109":123,"110":[2,187],"111":[2,187],"112":[2,187],"115":[2,187],"117":[2,187],"124":[2,187],"127":[2,187],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,188],"3":[2,188],"26":[2,188],"27":[2,188],"49":[1,110],"57":[2,188],"59":[2,188],"77":[2,188],"79":[2,188],"82":[2,188],"94":[2,188],"99":[2,188],"107":[2,188],"109":123,"110":[2,188],"111":[2,188],"112":[2,188],"115":[2,188],"117":[2,188],"124":[2,188],"127":[2,188],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,189],"3":[2,189],"26":[2,189],"27":[2,189],"49":[1,110],"57":[2,189],"59":[2,189],"77":[2,189],"79":[2,189],"82":[2,189],"94":[2,189],"99":[2,189],"107":[2,189],"109":123,"110":[2,189],"111":[2,189],"112":[2,189],"115":[2,189],"117":[2,189],"124":[2,189],"127":[2,189],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,190],"3":[2,190],"26":[2,190],"27":[2,190],"49":[1,110],"57":[2,190],"59":[2,190],"77":[2,190],"79":[2,190],"82":[2,190],"94":[2,190],"99":[2,190],"107":[2,190],"109":123,"110":[2,190],"111":[2,190],"112":[2,190],"115":[2,190],"117":[2,190],"124":[2,190],"127":[2,190],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"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]},{"1":[2,191],"3":[2,191],"26":[2,191],"27":[2,191],"49":[1,110],"57":[2,191],"59":[2,191],"77":[2,191],"79":[2,191],"82":[2,191],"94":[2,191],"99":[2,191],"107":[2,191],"109":123,"110":[2,191],"111":[2,191],"112":[2,191],"115":[2,191],"117":[2,191],"124":[2,191],"127":[2,191],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"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]},{"1":[2,192],"3":[2,192],"26":[2,192],"27":[2,192],"49":[1,110],"57":[2,192],"59":[2,192],"77":[2,192],"79":[2,192],"82":[2,192],"94":[2,192],"99":[2,192],"107":[2,192],"109":123,"110":[2,192],"111":[2,192],"112":[2,192],"115":[2,192],"117":[2,192],"124":[2,192],"127":[2,192],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"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]},{"1":[2,193],"3":[2,193],"26":[2,193],"27":[2,193],"49":[1,110],"57":[2,193],"59":[2,193],"77":[2,193],"79":[2,193],"82":[2,193],"94":[2,193],"99":[2,193],"107":[2,193],"109":123,"110":[2,193],"111":[2,193],"112":[2,193],"115":[2,193],"117":[2,193],"124":[2,193],"127":[2,193],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"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]},{"1":[2,194],"3":[2,194],"26":[2,194],"27":[2,194],"49":[1,110],"57":[2,194],"59":[2,194],"77":[2,194],"79":[2,194],"82":[2,194],"94":[2,194],"99":[2,194],"107":[2,194],"109":123,"110":[2,194],"111":[2,194],"112":[2,194],"115":[2,194],"117":[2,194],"124":[2,194],"127":[2,194],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"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]},{"1":[2,195],"3":[2,195],"26":[2,195],"27":[2,195],"49":[1,110],"57":[2,195],"59":[2,195],"77":[2,195],"79":[2,195],"82":[2,195],"94":[2,195],"99":[2,195],"107":[2,195],"109":123,"110":[2,195],"111":[2,195],"112":[2,195],"115":[2,195],"117":[2,195],"124":[2,195],"127":[2,195],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"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]},{"1":[2,196],"3":[2,196],"26":[2,196],"27":[2,196],"49":[1,110],"57":[2,196],"59":[2,196],"77":[2,196],"79":[2,196],"82":[2,196],"94":[2,196],"99":[2,196],"107":[2,196],"109":123,"110":[2,196],"111":[2,196],"112":[2,196],"115":[2,196],"117":[2,196],"124":[2,196],"127":[2,196],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"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]},{"1":[2,197],"3":[2,197],"26":[2,197],"27":[2,197],"49":[1,110],"57":[2,197],"59":[2,197],"77":[2,197],"79":[2,197],"82":[2,197],"94":[2,197],"99":[2,197],"107":[2,197],"109":123,"110":[2,197],"111":[2,197],"112":[2,197],"115":[2,197],"117":[2,197],"124":[2,197],"127":[2,197],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[1,119]},{"1":[2,198],"3":[2,198],"26":[2,198],"27":[2,198],"49":[1,110],"57":[2,198],"59":[2,198],"77":[2,198],"79":[2,198],"82":[2,198],"94":[2,198],"99":[2,198],"107":[2,198],"109":123,"110":[2,198],"111":[2,198],"112":[2,198],"115":[2,198],"117":[2,198],"124":[2,198],"127":[2,198],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[1,119]},{"1":[2,199],"3":[2,199],"26":[2,199],"27":[2,199],"49":[1,110],"57":[2,199],"59":[2,199],"77":[2,199],"79":[2,199],"82":[2,199],"94":[2,199],"99":[2,199],"107":[2,199],"109":123,"110":[2,199],"111":[2,199],"112":[2,199],"115":[2,199],"117":[2,199],"124":[2,199],"127":[2,199],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"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":[1,119]},{"1":[2,200],"3":[2,200],"26":[2,200],"27":[2,200],"49":[1,110],"57":[2,200],"59":[2,200],"77":[2,200],"79":[2,200],"82":[2,200],"94":[2,200],"99":[2,200],"107":[2,200],"109":123,"110":[2,200],"111":[2,200],"112":[2,200],"115":[2,200],"117":[2,200],"124":[2,200],"127":[2,200],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"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":[1,119]},{"1":[2,201],"3":[2,201],"26":[2,201],"27":[2,201],"49":[2,201],"57":[2,201],"59":[2,201],"77":[2,201],"79":[2,201],"82":[2,201],"94":[2,201],"99":[2,201],"107":[2,201],"109":123,"110":[2,201],"111":[2,201],"112":[2,201],"115":[2,201],"117":[2,201],"124":[2,201],"127":[2,201],"130":[2,201],"131":[2,201],"133":[2,201],"134":[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],"162":[2,201]},{"1":[2,202],"3":[2,202],"26":[2,202],"27":[2,202],"49":[1,110],"57":[2,202],"59":[2,202],"77":[2,202],"79":[2,202],"82":[2,202],"94":[2,202],"99":[2,202],"107":[2,202],"109":123,"110":[2,202],"111":[2,202],"112":[2,202],"115":[2,202],"117":[2,202],"124":[2,202],"127":[2,202],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,203],"3":[2,203],"26":[2,203],"27":[2,203],"49":[1,110],"57":[2,203],"59":[2,203],"77":[2,203],"79":[2,203],"82":[2,203],"94":[2,203],"99":[2,203],"107":[2,203],"109":123,"110":[2,203],"111":[2,203],"112":[2,203],"115":[2,203],"117":[2,203],"124":[2,203],"127":[2,203],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,204],"3":[2,204],"26":[2,204],"27":[2,204],"49":[1,110],"57":[2,204],"59":[2,204],"77":[2,204],"79":[2,204],"82":[2,204],"94":[2,204],"99":[2,204],"107":[2,204],"109":123,"110":[2,204],"111":[2,204],"112":[2,204],"115":[2,204],"117":[2,204],"124":[2,204],"127":[2,204],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,205],"3":[2,205],"26":[2,205],"27":[2,205],"49":[1,110],"57":[2,205],"59":[2,205],"77":[2,205],"79":[2,205],"82":[2,205],"94":[2,205],"99":[2,205],"107":[2,205],"109":123,"110":[2,205],"111":[2,205],"112":[2,205],"115":[2,205],"117":[2,205],"124":[2,205],"127":[2,205],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,206],"3":[2,206],"26":[2,206],"27":[2,206],"49":[1,110],"57":[2,206],"59":[2,206],"77":[2,206],"79":[2,206],"82":[2,206],"94":[2,206],"99":[2,206],"107":[2,206],"109":123,"110":[2,206],"111":[2,206],"112":[2,206],"115":[2,206],"117":[2,206],"124":[2,206],"127":[2,206],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,207],"3":[2,207],"26":[2,207],"27":[2,207],"49":[1,110],"57":[2,207],"59":[2,207],"77":[2,207],"79":[2,207],"82":[2,207],"94":[2,207],"99":[2,207],"107":[2,207],"109":123,"110":[2,207],"111":[2,207],"112":[2,207],"115":[2,207],"117":[2,207],"124":[2,207],"127":[2,207],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,208],"3":[2,208],"26":[2,208],"27":[2,208],"49":[1,110],"57":[2,208],"59":[2,208],"77":[2,208],"79":[2,208],"82":[2,208],"94":[2,208],"99":[2,208],"107":[2,208],"109":123,"110":[2,208],"111":[2,208],"112":[2,208],"115":[2,208],"117":[2,208],"124":[2,208],"127":[2,208],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,209],"3":[2,209],"26":[2,209],"27":[2,209],"49":[1,110],"57":[2,209],"59":[2,209],"77":[2,209],"79":[2,209],"82":[2,209],"94":[2,209],"99":[2,209],"107":[2,209],"109":123,"110":[2,209],"111":[2,209],"112":[2,209],"115":[2,209],"117":[2,209],"124":[2,209],"127":[2,209],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,210],"3":[2,210],"26":[2,210],"27":[2,210],"49":[1,110],"57":[2,210],"59":[2,210],"77":[2,210],"79":[2,210],"82":[2,210],"94":[2,210],"99":[2,210],"107":[2,210],"109":123,"110":[2,210],"111":[2,210],"112":[2,210],"115":[2,210],"117":[2,210],"124":[2,210],"127":[2,210],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[2,210],"162":[1,119]},{"1":[2,211],"3":[2,211],"26":[2,211],"27":[2,211],"49":[1,110],"57":[2,211],"59":[1,125],"77":[2,211],"79":[2,211],"82":[2,211],"94":[2,211],"99":[2,211],"107":[2,211],"109":123,"110":[2,211],"111":[2,211],"112":[2,211],"115":[1,120],"117":[2,211],"124":[2,211],"127":[2,211],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,169],"3":[2,169],"26":[2,169],"27":[2,169],"49":[1,110],"57":[2,169],"59":[1,125],"77":[2,169],"79":[2,169],"82":[2,169],"94":[2,169],"99":[2,169],"107":[2,169],"109":123,"110":[1,78],"111":[2,169],"112":[1,124],"115":[1,120],"117":[2,169],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,170],"3":[2,170],"26":[2,170],"27":[2,170],"49":[1,110],"57":[2,170],"59":[1,125],"77":[2,170],"79":[2,170],"82":[2,170],"94":[2,170],"99":[2,170],"107":[2,170],"109":123,"110":[1,78],"111":[2,170],"112":[1,124],"115":[1,120],"117":[2,170],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"114":267,"115":[1,240],"116":[1,241]},{"59":[1,268]},{"1":[2,27],"3":[2,27],"26":[2,27],"27":[2,27],"48":[2,27],"49":[2,27],"57":[2,27],"59":[2,27],"77":[2,27],"79":[2,27],"82":[2,27],"94":[2,27],"99":[2,27],"103":[2,27],"104":[2,27],"107":[2,27],"110":[2,27],"111":[2,27],"112":[2,27],"115":[2,27],"117":[2,27],"120":[2,27],"122":[2,27],"124":[2,27],"127":[2,27],"130":[2,27],"131":[2,27],"133":[2,27],"134":[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],"162":[2,27]},{"1":[2,106],"3":[2,106],"26":[2,106],"27":[2,106],"49":[2,106],"57":[2,106],"59":[2,106],"77":[2,106],"79":[2,106],"82":[2,106],"94":[2,106],"99":[2,106],"107":[2,106],"110":[2,106],"111":[2,106],"112":[2,106],"115":[2,106],"117":[2,106],"124":[2,106],"127":[2,106],"130":[2,106],"131":[2,106],"133":[2,106],"134":[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],"162":[2,106]},{"3":[1,251],"27":[1,252],"57":[1,270],"94":[1,269]},{"3":[2,124],"27":[2,124],"49":[1,110],"57":[2,124],"59":[1,125],"94":[2,124],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,75],"3":[2,75],"26":[2,75],"27":[2,75],"45":[2,75],"49":[2,75],"57":[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],"85":[2,75],"90":[2,75],"92":[2,75],"94":[2,75],"99":[2,75],"107":[2,75],"110":[2,75],"111":[2,75],"112":[2,75],"115":[2,75],"117":[2,75],"124":[2,75],"127":[2,75],"130":[2,75],"131":[2,75],"133":[2,75],"134":[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],"162":[2,75]},{"1":[2,76],"3":[2,76],"26":[2,76],"27":[2,76],"45":[2,76],"49":[2,76],"57":[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],"85":[2,76],"90":[2,76],"92":[2,76],"94":[2,76],"99":[2,76],"107":[2,76],"110":[2,76],"111":[2,76],"112":[2,76],"115":[2,76],"117":[2,76],"124":[2,76],"127":[2,76],"130":[2,76],"131":[2,76],"133":[2,76],"134":[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],"162":[2,76]},{"1":[2,78],"3":[2,78],"26":[2,78],"27":[2,78],"45":[2,78],"49":[2,78],"57":[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],"85":[2,78],"90":[2,78],"92":[2,78],"94":[2,78],"99":[2,78],"107":[2,78],"110":[2,78],"111":[2,78],"112":[2,78],"115":[2,78],"117":[2,78],"124":[2,78],"127":[2,78],"130":[2,78],"131":[2,78],"133":[2,78],"134":[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],"162":[2,78]},{"49":[1,110],"59":[1,272],"77":[1,271],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"49":[1,110],"59":[1,125],"79":[1,273],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,44],"3":[2,44],"26":[2,44],"27":[2,44],"49":[1,110],"57":[2,44],"59":[1,125],"77":[2,44],"79":[2,44],"82":[2,44],"94":[2,44],"99":[2,44],"107":[2,44],"109":123,"110":[2,44],"111":[2,44],"112":[1,124],"115":[1,120],"117":[2,44],"124":[2,44],"127":[2,44],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"53":274,"54":[1,75],"55":[1,76]},{"56":275,"58":[1,149]},{"59":[1,276]},{"1":[2,134],"3":[2,134],"26":[2,134],"27":[2,134],"49":[2,134],"57":[2,134],"59":[2,134],"77":[2,134],"79":[2,134],"82":[2,134],"94":[2,134],"99":[2,134],"103":[1,277],"107":[2,134],"110":[2,134],"111":[2,134],"112":[2,134],"115":[2,134],"117":[2,134],"124":[2,134],"127":[2,134],"130":[2,134],"131":[2,134],"133":[2,134],"134":[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],"162":[2,134]},{"3":[1,151],"5":278,"26":[1,6]},{"28":279,"29":[1,85]},{"3":[1,151],"5":280,"26":[1,6]},{"6":281,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":282,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"28":283,"29":[1,85]},{"24":287,"48":[1,55],"119":284,"121":285,"122":[1,286]},{"1":[2,107],"3":[2,107],"26":[2,107],"27":[2,107],"49":[2,107],"57":[2,107],"59":[2,107],"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,107],"78":[1,139],"79":[2,107],"82":[2,107],"91":129,"92":[1,131],"94":[2,107],"99":[2,107],"107":[2,107],"110":[2,107],"111":[2,107],"112":[2,107],"115":[2,107],"117":[2,107],"124":[2,107],"127":[2,107],"130":[2,107],"131":[2,107],"133":[2,107],"134":[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],"162":[2,107]},{"7":288,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":146,"62":170,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"3":[2,100],"24":186,"27":[2,100],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":291,"48":[1,55],"63":292,"86":289,"87":290,"97":[1,293]},{"1":[2,139],"3":[2,139],"26":[2,139],"27":[2,139],"49":[2,139],"57":[2,139],"59":[2,139],"70":[2,139],"71":[2,139],"72":[2,139],"73":[2,139],"76":[2,139],"77":[2,139],"78":[2,139],"79":[2,139],"82":[2,139],"90":[2,139],"92":[2,139],"94":[2,139],"99":[2,139],"107":[2,139],"110":[2,139],"111":[2,139],"112":[2,139],"115":[2,139],"117":[2,139],"124":[2,139],"127":[2,139],"130":[2,139],"131":[2,139],"133":[2,139],"134":[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],"162":[2,139]},{"59":[1,294]},{"1":[2,121],"3":[2,121],"26":[2,121],"27":[2,121],"45":[2,121],"49":[2,121],"57":[2,121],"59":[2,121],"70":[2,121],"71":[2,121],"72":[2,121],"73":[2,121],"76":[2,121],"77":[2,121],"78":[2,121],"79":[2,121],"82":[2,121],"90":[2,121],"92":[2,121],"94":[2,121],"99":[2,121],"107":[2,121],"110":[2,121],"111":[2,121],"112":[2,121],"115":[2,121],"117":[2,121],"124":[2,121],"127":[2,121],"130":[2,121],"131":[2,121],"133":[2,121],"134":[2,121],"137":[2,121],"138":[2,121],"139":[2,121],"140":[2,121],"141":[2,121],"142":[2,121],"143":[2,121],"144":[2,121],"145":[2,121],"146":[2,121],"147":[2,121],"148":[2,121],"149":[2,121],"150":[2,121],"151":[2,121],"152":[2,121],"153":[2,121],"154":[2,121],"155":[2,121],"156":[2,121],"157":[2,121],"158":[2,121],"159":[2,121],"160":[2,121],"161":[2,121],"162":[2,121]},{"3":[1,297],"6":296,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,298],"27":[1,299],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[1,295],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":300,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[2,130],"27":[2,130],"57":[2,130],"94":[2,130],"99":[2,130]},{"3":[2,125],"27":[2,125],"49":[1,110],"57":[2,125],"59":[1,125],"94":[2,125],"99":[2,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[1,251],"27":[1,252],"57":[1,302],"94":[1,301]},{"1":[2,166],"3":[2,166],"26":[2,166],"27":[2,166],"49":[2,166],"57":[2,166],"59":[2,166],"77":[2,166],"79":[2,166],"82":[2,166],"94":[2,166],"99":[2,166],"107":[2,166],"110":[2,166],"111":[2,166],"112":[2,166],"115":[2,166],"117":[2,166],"124":[2,166],"127":[2,166],"130":[2,166],"131":[2,166],"133":[2,166],"134":[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],"162":[2,166]},{"6":303,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":304,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,83],"3":[2,83],"26":[2,83],"27":[2,83],"45":[2,83],"49":[2,83],"57":[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],"90":[2,83],"92":[2,83],"94":[2,83],"99":[2,83],"107":[2,83],"110":[2,83],"111":[2,83],"112":[2,83],"115":[2,83],"117":[2,83],"124":[2,83],"127":[2,83],"130":[2,83],"131":[2,83],"133":[2,83],"134":[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],"162":[2,83]},{"3":[1,307],"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":306,"48":[1,55],"82":[1,305]},{"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":308,"48":[1,55]},{"1":[2,84],"3":[2,84],"26":[2,84],"27":[2,84],"45":[2,84],"49":[2,84],"57":[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],"94":[2,84],"99":[2,84],"107":[2,84],"110":[2,84],"111":[2,84],"112":[2,84],"115":[2,84],"117":[2,84],"124":[2,84],"127":[2,84],"130":[2,84],"131":[2,84],"133":[2,84],"134":[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],"162":[2,84]},{"82":[1,309]},{"3":[1,260],"27":[1,310],"57":[1,311]},{"6":312,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":313,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,163],"3":[2,163],"26":[2,163],"27":[2,163],"49":[2,163],"57":[2,163],"59":[2,163],"77":[2,163],"79":[2,163],"82":[2,163],"94":[2,163],"99":[2,163],"107":[2,163],"110":[2,163],"111":[2,163],"112":[2,163],"115":[2,163],"117":[2,163],"120":[2,163],"124":[2,163],"127":[2,163],"130":[2,163],"131":[2,163],"133":[2,163],"134":[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],"162":[2,163]},{"1":[2,145],"3":[2,145],"26":[2,145],"27":[2,145],"49":[2,145],"57":[2,145],"59":[2,145],"77":[2,145],"79":[2,145],"82":[2,145],"94":[2,145],"99":[2,145],"107":[2,145],"110":[2,145],"111":[2,145],"112":[2,145],"115":[2,145],"117":[2,145],"124":[2,145],"127":[2,145],"130":[2,145],"131":[2,145],"133":[2,145],"134":[2,145],"137":[2,145],"138":[2,145],"139":[2,145],"140":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"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]},{"1":[2,61],"3":[2,61],"26":[2,61],"27":[2,61],"49":[2,61],"57":[2,61],"59":[2,61],"77":[2,61],"79":[2,61],"82":[2,61],"94":[2,61],"99":[2,61],"107":[2,61],"110":[2,61],"111":[2,61],"112":[2,61],"115":[2,61],"117":[2,61],"124":[2,61],"127":[2,61],"130":[2,61],"131":[2,61],"133":[2,61],"134":[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],"162":[2,61]},{"1":[2,110],"3":[2,110],"26":[2,110],"27":[2,110],"49":[2,110],"57":[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],"92":[2,110],"94":[2,110],"99":[2,110],"107":[2,110],"110":[2,110],"111":[2,110],"112":[2,110],"115":[2,110],"117":[2,110],"124":[2,110],"127":[2,110],"130":[2,110],"131":[2,110],"133":[2,110],"134":[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],"162":[2,110]},{"3":[1,297],"6":296,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,298],"27":[1,299],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"94":[1,314],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,81],"3":[2,81],"26":[2,81],"27":[2,81],"45":[2,81],"49":[2,81],"57":[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],"85":[2,81],"90":[2,81],"92":[2,81],"94":[2,81],"99":[2,81],"107":[2,81],"110":[2,81],"111":[2,81],"112":[2,81],"115":[2,81],"117":[2,81],"124":[2,81],"127":[2,81],"130":[2,81],"131":[2,81],"133":[2,81],"134":[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],"162":[2,81]},{"59":[1,315]},{"1":[2,82],"3":[2,82],"26":[2,82],"27":[2,82],"45":[2,82],"49":[2,82],"57":[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],"85":[2,82],"90":[2,82],"92":[2,82],"94":[2,82],"99":[2,82],"107":[2,82],"110":[2,82],"111":[2,82],"112":[2,82],"115":[2,82],"117":[2,82],"124":[2,82],"127":[2,82],"130":[2,82],"131":[2,82],"133":[2,82],"134":[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],"162":[2,82]},{"3":[1,151],"5":316,"26":[1,6]},{"52":[2,58],"57":[2,58],"59":[1,235]},{"59":[1,317]},{"3":[1,151],"5":318,"26":[1,6]},{"1":[2,135],"3":[2,135],"26":[2,135],"27":[2,135],"49":[2,135],"57":[2,135],"59":[2,135],"77":[2,135],"79":[2,135],"82":[2,135],"94":[2,135],"99":[2,135],"107":[2,135],"110":[2,135],"111":[2,135],"112":[2,135],"115":[2,135],"117":[2,135],"124":[2,135],"127":[2,135],"130":[2,135],"131":[2,135],"133":[2,135],"134":[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],"162":[2,135]},{"3":[1,151],"5":319,"26":[1,6]},{"1":[2,146],"3":[2,146],"26":[2,146],"27":[2,146],"49":[2,146],"57":[2,146],"59":[2,146],"77":[2,146],"79":[2,146],"82":[2,146],"94":[2,146],"99":[2,146],"107":[2,146],"110":[2,146],"111":[2,146],"112":[2,146],"115":[2,146],"117":[2,146],"124":[2,146],"127":[2,146],"130":[2,146],"131":[2,146],"133":[2,146],"134":[2,146],"137":[2,146],"138":[2,146],"139":[2,146],"140":[2,146],"141":[2,146],"142":[2,146],"143":[2,146],"144":[2,146],"145":[2,146],"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]},{"1":[2,149],"3":[2,149],"26":[2,149],"27":[2,149],"49":[1,110],"57":[2,149],"59":[1,125],"77":[2,149],"79":[2,149],"82":[2,149],"94":[2,149],"99":[2,149],"107":[2,149],"109":123,"110":[2,149],"111":[1,320],"112":[2,149],"115":[1,120],"117":[1,321],"124":[2,149],"127":[2,149],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,150],"3":[2,150],"26":[2,150],"27":[2,150],"49":[1,110],"57":[2,150],"59":[1,125],"77":[2,150],"79":[2,150],"82":[2,150],"94":[2,150],"99":[2,150],"107":[2,150],"109":123,"110":[2,150],"111":[1,322],"112":[2,150],"115":[1,120],"117":[2,150],"124":[2,150],"127":[2,150],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"115":[2,148],"116":[2,148]},{"24":287,"27":[1,323],"48":[1,55],"120":[1,324],"121":325,"122":[1,286]},{"27":[2,158],"48":[2,158],"120":[2,158],"122":[2,158]},{"6":327,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"100":326,"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[1,328]},{"1":[2,95],"3":[2,95],"26":[1,329],"27":[2,95],"49":[2,95],"57":[2,95],"59":[2,95],"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,95],"78":[1,139],"79":[2,95],"82":[2,95],"91":129,"92":[1,131],"94":[2,95],"99":[2,95],"107":[2,95],"110":[2,95],"111":[2,95],"112":[2,95],"115":[2,95],"117":[2,95],"124":[2,95],"127":[2,95],"130":[2,95],"131":[2,95],"133":[2,95],"134":[2,95],"137":[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]},{"3":[1,331],"27":[1,330]},{"3":[2,101],"27":[2,101]},{"3":[2,98],"27":[2,98]},{"45":[1,332]},{"28":175,"29":[1,85]},{"6":333,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"59":[1,334],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,122],"3":[2,122],"26":[2,122],"27":[2,122],"45":[2,122],"49":[2,122],"57":[2,122],"59":[2,122],"70":[2,122],"71":[2,122],"72":[2,122],"73":[2,122],"76":[2,122],"77":[2,122],"78":[2,122],"79":[2,122],"82":[2,122],"90":[2,122],"92":[2,122],"94":[2,122],"99":[2,122],"107":[2,122],"110":[2,122],"111":[2,122],"112":[2,122],"115":[2,122],"117":[2,122],"124":[2,122],"127":[2,122],"130":[2,122],"131":[2,122],"133":[2,122],"134":[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],"162":[2,122]},{"3":[2,126],"27":[2,126],"49":[1,110],"57":[2,126],"59":[1,125],"94":[2,126],"99":[2,126],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"6":335,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":336,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[2,131],"27":[2,131],"57":[2,131],"94":[2,131],"99":[2,131]},{"3":[2,127],"27":[2,127],"49":[1,110],"57":[2,127],"59":[1,125],"94":[2,127],"99":[2,127],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,112],"3":[2,112],"26":[2,112],"27":[2,112],"49":[2,112],"57":[2,112],"59":[2,112],"77":[2,112],"79":[2,112],"82":[2,112],"94":[2,112],"99":[2,112],"107":[2,112],"110":[2,112],"111":[2,112],"112":[2,112],"115":[2,112],"117":[2,112],"124":[2,112],"127":[2,112],"130":[2,112],"131":[2,112],"133":[2,112],"134":[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],"162":[2,112]},{"3":[1,297],"6":296,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,298],"27":[1,299],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"94":[1,337],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[1,151],"5":338,"26":[1,6],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,142],"3":[2,142],"26":[2,142],"27":[2,142],"49":[1,110],"57":[2,142],"59":[1,125],"77":[2,142],"79":[2,142],"82":[2,142],"94":[2,142],"99":[2,142],"107":[2,142],"109":123,"110":[1,78],"111":[2,142],"112":[1,124],"115":[1,120],"117":[2,142],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,85],"3":[2,85],"26":[2,85],"27":[2,85],"45":[2,85],"49":[2,85],"57":[2,85],"59":[2,85],"70":[2,85],"71":[2,85],"72":[2,85],"73":[2,85],"76":[2,85],"77":[2,85],"78":[2,85],"79":[2,85],"82":[2,85],"90":[2,85],"92":[2,85],"94":[2,85],"99":[2,85],"107":[2,85],"110":[2,85],"111":[2,85],"112":[2,85],"115":[2,85],"117":[2,85],"124":[2,85],"127":[2,85],"130":[2,85],"131":[2,85],"133":[2,85],"134":[2,85],"137":[2,85],"138":[2,85],"139":[2,85],"140":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"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]},{"3":[2,89],"27":[2,89],"57":[2,89],"82":[2,89]},{"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":339,"48":[1,55]},{"3":[2,90],"27":[2,90],"57":[2,90],"82":[2,90]},{"1":[2,86],"3":[2,86],"26":[2,86],"27":[2,86],"45":[2,86],"49":[2,86],"57":[2,86],"59":[2,86],"70":[2,86],"71":[2,86],"72":[2,86],"73":[2,86],"76":[2,86],"77":[2,86],"78":[2,86],"79":[2,86],"82":[2,86],"90":[2,86],"92":[2,86],"94":[2,86],"99":[2,86],"107":[2,86],"110":[2,86],"111":[2,86],"112":[2,86],"115":[2,86],"117":[2,86],"124":[2,86],"127":[2,86],"130":[2,86],"131":[2,86],"133":[2,86],"134":[2,86],"137":[2,86],"138":[2,86],"139":[2,86],"140":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"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]},{"57":[2,92],"82":[2,92]},{"3":[1,307],"24":186,"27":[1,340],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":306,"48":[1,55]},{"3":[2,45],"27":[2,45],"49":[1,110],"57":[2,45],"59":[1,125],"82":[2,45],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[2,46],"27":[2,46],"49":[1,110],"57":[2,46],"59":[1,125],"82":[2,46],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,111],"3":[2,111],"26":[2,111],"27":[2,111],"49":[2,111],"57":[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],"92":[2,111],"94":[2,111],"99":[2,111],"107":[2,111],"110":[2,111],"111":[2,111],"112":[2,111],"115":[2,111],"117":[2,111],"124":[2,111],"127":[2,111],"130":[2,111],"131":[2,111],"133":[2,111],"134":[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],"162":[2,111]},{"6":341,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"59":[1,342],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,52],"3":[2,52],"26":[2,52],"27":[2,52],"49":[2,52],"57":[2,52],"59":[2,52],"77":[2,52],"79":[2,52],"82":[2,52],"94":[2,52],"99":[2,52],"107":[2,52],"110":[2,52],"111":[2,52],"112":[2,52],"115":[2,52],"117":[2,52],"124":[2,52],"127":[2,52],"130":[2,52],"131":[2,52],"133":[2,52],"134":[2,52],"137":[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]},{"52":[2,60],"57":[2,60],"59":[2,60]},{"1":[2,136],"3":[2,136],"26":[2,136],"27":[2,136],"49":[2,136],"57":[2,136],"59":[2,136],"77":[2,136],"79":[2,136],"82":[2,136],"94":[2,136],"99":[2,136],"107":[2,136],"110":[2,136],"111":[2,136],"112":[2,136],"115":[2,136],"117":[2,136],"124":[2,136],"127":[2,136],"130":[2,136],"131":[2,136],"133":[2,136],"134":[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],"162":[2,136]},{"1":[2,137],"3":[2,137],"26":[2,137],"27":[2,137],"49":[2,137],"57":[2,137],"59":[2,137],"77":[2,137],"79":[2,137],"82":[2,137],"94":[2,137],"99":[2,137],"103":[2,137],"107":[2,137],"110":[2,137],"111":[2,137],"112":[2,137],"115":[2,137],"117":[2,137],"124":[2,137],"127":[2,137],"130":[2,137],"131":[2,137],"133":[2,137],"134":[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],"162":[2,137]},{"6":343,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":344,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":345,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,156],"3":[2,156],"26":[2,156],"27":[2,156],"49":[2,156],"57":[2,156],"59":[2,156],"77":[2,156],"79":[2,156],"82":[2,156],"94":[2,156],"99":[2,156],"107":[2,156],"110":[2,156],"111":[2,156],"112":[2,156],"115":[2,156],"117":[2,156],"124":[2,156],"127":[2,156],"130":[2,156],"131":[2,156],"133":[2,156],"134":[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],"162":[2,156]},{"3":[1,151],"5":346,"26":[1,6]},{"27":[2,159],"48":[2,159],"120":[2,159],"122":[2,159]},{"3":[1,151],"5":347,"26":[1,6],"57":[1,348]},{"3":[2,132],"26":[2,132],"49":[1,110],"57":[2,132],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"24":287,"48":[1,55],"121":349,"122":[1,286]},{"3":[2,100],"24":186,"27":[2,100],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":291,"48":[1,55],"63":292,"86":350,"87":290,"97":[1,293]},{"1":[2,96],"3":[2,96],"26":[2,96],"27":[2,96],"49":[2,96],"57":[2,96],"59":[2,96],"77":[2,96],"79":[2,96],"82":[2,96],"94":[2,96],"99":[2,96],"107":[2,96],"110":[2,96],"111":[2,96],"112":[2,96],"115":[2,96],"117":[2,96],"124":[2,96],"127":[2,96],"130":[2,96],"131":[2,96],"133":[2,96],"134":[2,96],"137":[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]},{"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":291,"48":[1,55],"63":292,"87":351,"97":[1,293]},{"6":352,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"49":[1,110],"59":[1,125],"99":[1,353],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[2,61],"6":354,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"27":[2,61],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,61],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,61],"59":[2,61],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,61],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[2,61],"112":[2,61],"115":[2,61],"118":[1,52],"123":77,"124":[2,61],"126":46,"127":[2,61],"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45],"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],"162":[2,61]},{"3":[2,128],"27":[2,128],"49":[1,110],"57":[2,128],"59":[1,125],"94":[2,128],"99":[2,128],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[2,129],"27":[2,129],"49":[1,110],"57":[2,129],"59":[1,125],"94":[2,129],"99":[2,129],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,113],"3":[2,113],"26":[2,113],"27":[2,113],"49":[2,113],"57":[2,113],"59":[2,113],"77":[2,113],"79":[2,113],"82":[2,113],"94":[2,113],"99":[2,113],"107":[2,113],"110":[2,113],"111":[2,113],"112":[2,113],"115":[2,113],"117":[2,113],"124":[2,113],"127":[2,113],"130":[2,113],"131":[2,113],"133":[2,113],"134":[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],"162":[2,113]},{"1":[2,167],"3":[2,167],"26":[2,167],"27":[2,167],"49":[2,167],"57":[2,167],"59":[2,167],"77":[2,167],"79":[2,167],"82":[2,167],"94":[2,167],"99":[2,167],"107":[2,167],"110":[2,167],"111":[2,167],"112":[2,167],"115":[2,167],"117":[2,167],"120":[2,167],"124":[2,167],"127":[2,167],"130":[2,167],"131":[2,167],"133":[2,167],"134":[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],"162":[2,167]},{"3":[2,91],"27":[2,91],"57":[2,91],"82":[2,91]},{"57":[2,93],"82":[2,93]},{"49":[1,110],"59":[1,125],"77":[1,355],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"6":356,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,61],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"59":[2,61],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"77":[2,61],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[2,61],"112":[2,61],"115":[2,61],"118":[1,52],"123":77,"124":[2,61],"126":46,"127":[2,61],"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45],"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],"162":[2,61]},{"1":[2,151],"3":[2,151],"26":[2,151],"27":[2,151],"49":[1,110],"57":[2,151],"59":[1,125],"77":[2,151],"79":[2,151],"82":[2,151],"94":[2,151],"99":[2,151],"107":[2,151],"109":123,"110":[2,151],"111":[2,151],"112":[2,151],"115":[1,120],"117":[1,357],"124":[2,151],"127":[2,151],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,153],"3":[2,153],"26":[2,153],"27":[2,153],"49":[1,110],"57":[2,153],"59":[1,125],"77":[2,153],"79":[2,153],"82":[2,153],"94":[2,153],"99":[2,153],"107":[2,153],"109":123,"110":[2,153],"111":[1,358],"112":[2,153],"115":[1,120],"117":[2,153],"124":[2,153],"127":[2,153],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,152],"3":[2,152],"26":[2,152],"27":[2,152],"49":[1,110],"57":[2,152],"59":[1,125],"77":[2,152],"79":[2,152],"82":[2,152],"94":[2,152],"99":[2,152],"107":[2,152],"109":123,"110":[2,152],"111":[2,152],"112":[2,152],"115":[1,120],"117":[2,152],"124":[2,152],"127":[2,152],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"27":[1,359]},{"3":[1,360],"27":[2,160],"48":[2,160],"120":[2,160],"122":[2,160]},{"6":361,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"27":[2,162],"48":[2,162],"120":[2,162],"122":[2,162]},{"3":[1,331],"27":[1,362]},{"3":[2,102],"27":[2,102]},{"3":[2,99],"27":[2,99],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,117],"3":[2,117],"26":[2,117],"27":[2,117],"49":[2,117],"57":[2,117],"59":[2,117],"70":[2,117],"71":[2,117],"72":[2,117],"73":[2,117],"76":[2,117],"77":[2,117],"78":[2,117],"79":[2,117],"82":[2,117],"90":[2,117],"92":[2,117],"94":[2,117],"99":[2,117],"107":[2,117],"110":[2,117],"111":[2,117],"112":[2,117],"115":[2,117],"117":[2,117],"124":[2,117],"127":[2,117],"130":[2,117],"131":[2,117],"133":[2,117],"134":[2,117],"137":[2,117],"138":[2,117],"139":[2,117],"140":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"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]},{"49":[1,110],"59":[1,125],"99":[1,363],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,119],"3":[2,119],"26":[2,119],"27":[2,119],"45":[2,119],"49":[2,119],"57":[2,119],"59":[2,119],"70":[2,119],"71":[2,119],"72":[2,119],"73":[2,119],"76":[2,119],"77":[2,119],"78":[2,119],"79":[2,119],"82":[2,119],"85":[2,119],"90":[2,119],"92":[2,119],"94":[2,119],"99":[2,119],"107":[2,119],"110":[2,119],"111":[2,119],"112":[2,119],"115":[2,119],"117":[2,119],"124":[2,119],"127":[2,119],"130":[2,119],"131":[2,119],"133":[2,119],"134":[2,119],"137":[2,119],"138":[2,119],"139":[2,119],"140":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"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]},{"49":[1,110],"59":[1,125],"77":[1,364],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"6":365,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":366,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,157],"3":[2,157],"26":[2,157],"27":[2,157],"49":[2,157],"57":[2,157],"59":[2,157],"77":[2,157],"79":[2,157],"82":[2,157],"94":[2,157],"99":[2,157],"107":[2,157],"110":[2,157],"111":[2,157],"112":[2,157],"115":[2,157],"117":[2,157],"124":[2,157],"127":[2,157],"130":[2,157],"131":[2,157],"133":[2,157],"134":[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],"162":[2,157]},{"27":[2,161],"48":[2,161],"120":[2,161],"122":[2,161]},{"3":[2,133],"26":[2,133],"49":[1,110],"57":[2,133],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,97],"3":[2,97],"26":[2,97],"27":[2,97],"49":[2,97],"57":[2,97],"59":[2,97],"77":[2,97],"79":[2,97],"82":[2,97],"94":[2,97],"99":[2,97],"107":[2,97],"110":[2,97],"111":[2,97],"112":[2,97],"115":[2,97],"117":[2,97],"124":[2,97],"127":[2,97],"130":[2,97],"131":[2,97],"133":[2,97],"134":[2,97],"137":[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]},{"1":[2,118],"3":[2,118],"26":[2,118],"27":[2,118],"49":[2,118],"57":[2,118],"59":[2,118],"70":[2,118],"71":[2,118],"72":[2,118],"73":[2,118],"76":[2,118],"77":[2,118],"78":[2,118],"79":[2,118],"82":[2,118],"90":[2,118],"92":[2,118],"94":[2,118],"99":[2,118],"107":[2,118],"110":[2,118],"111":[2,118],"112":[2,118],"115":[2,118],"117":[2,118],"124":[2,118],"127":[2,118],"130":[2,118],"131":[2,118],"133":[2,118],"134":[2,118],"137":[2,118],"138":[2,118],"139":[2,118],"140":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"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]},{"1":[2,120],"3":[2,120],"26":[2,120],"27":[2,120],"45":[2,120],"49":[2,120],"57":[2,120],"59":[2,120],"70":[2,120],"71":[2,120],"72":[2,120],"73":[2,120],"76":[2,120],"77":[2,120],"78":[2,120],"79":[2,120],"82":[2,120],"85":[2,120],"90":[2,120],"92":[2,120],"94":[2,120],"99":[2,120],"107":[2,120],"110":[2,120],"111":[2,120],"112":[2,120],"115":[2,120],"117":[2,120],"124":[2,120],"127":[2,120],"130":[2,120],"131":[2,120],"133":[2,120],"134":[2,120],"137":[2,120],"138":[2,120],"139":[2,120],"140":[2,120],"141":[2,120],"142":[2,120],"143":[2,120],"144":[2,120],"145":[2,120],"146":[2,120],"147":[2,120],"148":[2,120],"149":[2,120],"150":[2,120],"151":[2,120],"152":[2,120],"153":[2,120],"154":[2,120],"155":[2,120],"156":[2,120],"157":[2,120],"158":[2,120],"159":[2,120],"160":[2,120],"161":[2,120],"162":[2,120]},{"1":[2,154],"3":[2,154],"26":[2,154],"27":[2,154],"49":[1,110],"57":[2,154],"59":[1,125],"77":[2,154],"79":[2,154],"82":[2,154],"94":[2,154],"99":[2,154],"107":[2,154],"109":123,"110":[2,154],"111":[2,154],"112":[2,154],"115":[1,120],"117":[2,154],"124":[2,154],"127":[2,154],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,155],"3":[2,155],"26":[2,155],"27":[2,155],"49":[1,110],"57":[2,155],"59":[1,125],"77":[2,155],"79":[2,155],"82":[2,155],"94":[2,155],"99":[2,155],"107":[2,155],"109":123,"110":[2,155],"111":[2,155],"112":[2,155],"115":[1,120],"117":[2,155],"124":[2,155],"127":[2,155],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]}],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;this.lexer.setInput(input);this.lexer.yy=this.yy;var parseError=this.yy.parseError=this.yy.parseError||this.parseError;function lex(){var token;token=self.lexer.lex()||1;if(typeof token!=="number"){token=self.symbols_[token]}return token}var symbol,state,action,a,r,yyval={},p,len,ip=0,newState,expected;symbol=lex();while(true){state=stack[stack.length-1];action=table[state]&&table[state][symbol];if(typeof action==="undefined"||!action.length||!action[0]){expected=[];for(p in table[state]){if(this.terminals_[p]&&p!=1){expected.push("'"+this.terminals_[p]+"'")}}if(this.lexer.showPosition){parseError("Parse error on line "+(yylineno+1)+":\n"+this.lexer.showPosition()+"\nExpecting "+expected.join(", "),{text:this.lexer.match,token:this.terminals_[symbol],line:this.lexer.yylineno,expected:expected})}else{parseError("Parse error on line "+(yylineno+1)+": Unexpected '"+this.terminals_[symbol]+"'",{text:this.lexer.match,token:this.terminals_[symbol],line:this.lexer.yylineno,expected:expected})}}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);++ip;yyleng=this.lexer.yyleng;yytext=this.lexer.yytext;yylineno=this.lexer.yylineno;symbol=lex();vstack.push(null);stack.push(a[1]);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){var cwd=require("file").path(require("file").cwd());if(!args[1]){throw new Error("Usage: "+args[0]+" FILE")}var source=cwd.join(args[1]).read({charset:"utf-8"});this.parse(source)};if(require.main===module){exports.main(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 Scope(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.temp_var=this.parent.temp_var}else{Scope.root=this;this.temp_var="_a"}return this};Scope.root=null;Scope.prototype.find=function find(name){if(this.check(name)){return true}this.variables[name]="var";return false};Scope.prototype.any=function any(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 parameter(name){this.variables[name]="param";return this.variables[name]};Scope.prototype.check=function check(name){if(this.variables[name]){return true}return !!(this.parent&&this.parent.check(name))};Scope.prototype.free_variable=function free_variable(){var ordinal;while(this.check(this.temp_var)){ordinal=1+parseInt(this.temp_var.substr(1),36);this.temp_var="_"+ordinal.toString(36).replace(/\d/g,"a")}this.variables[this.temp_var]="var";return this.temp_var};Scope.prototype.assign=function assign(name,value){this.variables[name]={value:value,assigned:true};return this.variables[name]};Scope.prototype.has_declarations=function has_declarations(body){return body===this.expressions&&this.any(function(k,val){return val==="var"})};Scope.prototype.has_assignments=function has_assignments(body){return body===this.expressions&&this.any(function(k,val){return val.assigned})};Scope.prototype.declared_variables=function declared_variables(){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.assigned_variables=function assigned_variables(){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.compiled_declarations=function compiled_declarations(){return this.declared_variables().join(", ")};Scope.prototype.compiled_assignments=function compiled_assignments(){return this.assigned_variables().join(", ")};return Scope}).call(this)})();(function(){var AccessorNode,ArrayNode,AssignNode,BaseNode,CallNode,ClassNode,ClosureNode,CodeNode,CommentNode,CurryNode,ExistenceNode,Expressions,ExtendsNode,ForNode,IDENTIFIER,IfNode,IndexNode,LiteralNode,ObjectNode,OpNode,ParentheticalNode,PushNode,RangeNode,ReturnNode,Scope,SliceNode,SplatNode,TAB,TRAILING_WHITESPACE,ThrowNode,TryNode,UTILITIES,ValueNode,WhileNode,compact,del,flatten,helpers,literal,merge,statement,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},__slice=Array.prototype.slice,__bind=function(func,obj,args){return function(){return func.apply(obj||{},args?args.concat(__slice.call(arguments,0)):arguments)}};if((typeof process!=="undefined"&&process!==null)){Scope=require("./scope").Scope;helpers=require("./helpers").helpers}else{this.exports=this;helpers=this.helpers;Scope=this.Scope}compact=helpers.compact;flatten=helpers.flatten;merge=helpers.merge;del=helpers.del;statement=function statement(klass,only){klass.prototype.is_statement=function is_statement(){return true};if(only){klass.prototype.is_pure_statement=function is_pure_statement(){return true};return klass.prototype.is_pure_statement}};exports.BaseNode=(function(){BaseNode=function BaseNode(){};BaseNode.prototype.compile=function compile(o){var closure,top;this.options=merge(o||{});this.tab=o.indent;if(!(this instanceof ValueNode)){del(this.options,"operation")}top=this.top_sensitive()?this.options.top:del(this.options,"top");closure=this.is_statement()&&!this.is_pure_statement()&&!top&&!this.options.as_statement&&!(this instanceof CommentNode)&&!this.contains_pure_statement();if(closure){return this.compile_closure(this.options)}else{return this.compile_node(this.options)}};BaseNode.prototype.compile_closure=function compile_closure(o){this.tab=o.indent;o.shared_scope=o.scope;return ClosureNode.wrap(this).compile(o)};BaseNode.prototype.compile_reference=function compile_reference(o){var compiled,reference;reference=literal(o.scope.free_variable());compiled=new AssignNode(reference,this);return[compiled,reference]};BaseNode.prototype.idt=function idt(tabs){var idt,num;idt=this.tab||"";num=(tabs||0)+1;while(num-=1){idt+=TAB}return idt};BaseNode.prototype.make_return=function make_return(){return new ReturnNode(this)};BaseNode.prototype.contains=function contains(block){var _a,_b,_c,node;_b=this.children;for(_a=0,_c=_b.length;_a<_c;_a++){node=_b[_a];if(block(node)){return true}if(node.contains&&node.contains(block)){return true}}return false};BaseNode.prototype.contains_type=function contains_type(type){return this instanceof type||this.contains(function(n){return n instanceof type})};BaseNode.prototype.contains_pure_statement=function contains_pure_statement(){return this.is_pure_statement()||this.contains(function(n){return n.is_pure_statement()})};BaseNode.prototype.traverse=function traverse(block){var _a,_b,_c,_d,node;_a=[];_c=this.children;for(_b=0,_d=_c.length;_b<_d;_b++){node=_c[_b];_a.push((function(){block(node);if(node.traverse){return node.traverse(block)}}).call(this))}return _a};BaseNode.prototype.toString=function toString(idt){var _a,_b,_c,_d,child;idt=idt||"";return"\n"+idt+this.constructor.name+(function(){_a=[];_c=this.children;for(_b=0,_d=_c.length;_b<_d;_b++){child=_c[_b];_a.push(child.toString(idt+TAB))}return _a}).call(this).join("")};BaseNode.prototype.unwrap=function unwrap(){return this};BaseNode.prototype.children=[];BaseNode.prototype.is_statement=function is_statement(){return false};BaseNode.prototype.is_pure_statement=function is_pure_statement(){return false};BaseNode.prototype.top_sensitive=function top_sensitive(){return false};return BaseNode}).call(this);exports.Expressions=(function(){Expressions=function Expressions(nodes){this.children=(this.expressions=compact(flatten(nodes||[])));return this};__extends(Expressions,BaseNode);Expressions.prototype.push=function push(node){this.expressions.push(node);return this};Expressions.prototype.unshift=function unshift(node){this.expressions.unshift(node);return this};Expressions.prototype.unwrap=function unwrap(){if(this.expressions.length===1){return this.expressions[0]}else{return this}};Expressions.prototype.empty=function empty(){return this.expressions.length===0};Expressions.prototype.copy=function copy(){return new Expressions(this.children.slice())};Expressions.prototype.make_return=function make_return(){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}if(!(last.contains_pure_statement())){this.expressions[idx]=last.make_return()}return this};Expressions.prototype.compile=function compile(o){o=o||{};if(o.scope){return Expressions.__superClass__.compile.call(this,o)}else{return this.compile_root(o)}};Expressions.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,node;return(function(){_a=[];_c=this.expressions;for(_b=0,_d=_c.length;_b<_d;_b++){node=_c[_b];_a.push(this.compile_expression(node,merge(o)))}return _a}).call(this).join("\n")};Expressions.prototype.compile_root=function compile_root(o){var code;o.indent=(this.tab=o.no_wrap?"":TAB);o.scope=new Scope(null,this,null);code=o.globals?this.compile_node(o):this.compile_with_declarations(o);code=code.replace(TRAILING_WHITESPACE,"");if(o.no_wrap){return code}else{return"(function(){\n"+code+"\n})();\n"}};Expressions.prototype.compile_with_declarations=function compile_with_declarations(o){var code;code=this.compile_node(o);if(o.scope.has_assignments(this)){code=""+(this.tab)+"var "+(o.scope.compiled_assignments())+";\n"+code}if(o.scope.has_declarations(this)){code=""+(this.tab)+"var "+(o.scope.compiled_declarations())+";\n"+code}return code};Expressions.prototype.compile_expression=function compile_expression(node,o){var compiled_node;this.tab=o.indent;compiled_node=node.compile(merge(o,{top:true}));if(node.is_statement()){return compiled_node}else{return""+(this.idt())+compiled_node+";"}};return Expressions}).call(this);Expressions.wrap=function wrap(nodes){if(nodes.length===1&&nodes[0] instanceof Expressions){return nodes[0]}return new Expressions(nodes)};statement(Expressions);exports.LiteralNode=(function(){LiteralNode=function LiteralNode(value){this.value=value;return this};__extends(LiteralNode,BaseNode);LiteralNode.prototype.is_statement=function is_statement(){return this.value==="break"||this.value==="continue"};LiteralNode.prototype.is_pure_statement=LiteralNode.prototype.is_statement;LiteralNode.prototype.compile_node=function compile_node(o){var end,idt;idt=this.is_statement()?this.idt():"";end=this.is_statement()?";":"";return""+idt+this.value+end};LiteralNode.prototype.toString=function toString(idt){return' "'+this.value+'"'};return LiteralNode}).call(this);exports.ReturnNode=(function(){ReturnNode=function ReturnNode(expression){this.children=[(this.expression=expression)];return this};__extends(ReturnNode,BaseNode);ReturnNode.prototype.top_sensitive=function top_sensitive(){return true};ReturnNode.prototype.compile_node=function compile_node(o){var expr;expr=this.expression.make_return();if(!(expr instanceof ReturnNode)){return expr.compile(o)}del(o,"top");if(this.expression.is_statement()){o.as_statement=true}return""+(this.tab)+"return "+(this.expression.compile(o))+";"};return ReturnNode}).call(this);statement(ReturnNode,true);exports.ValueNode=(function(){ValueNode=function ValueNode(base,properties){this.children=flatten([(this.base=base),(this.properties=(properties||[]))]);return this};__extends(ValueNode,BaseNode);ValueNode.prototype.SOAK=" == undefined ? undefined : ";ValueNode.prototype.push=function push(prop){this.properties.push(prop);this.children.push(prop);return this};ValueNode.prototype.has_properties=function has_properties(){return !!this.properties.length};ValueNode.prototype.is_array=function is_array(){return this.base instanceof ArrayNode&&!this.has_properties()};ValueNode.prototype.is_object=function is_object(){return this.base instanceof ObjectNode&&!this.has_properties()};ValueNode.prototype.is_splice=function is_splice(){return this.has_properties()&&this.properties[this.properties.length-1] instanceof SliceNode};ValueNode.prototype.make_return=function make_return(){if(this.has_properties()){return ValueNode.__superClass__.make_return.call(this)}else{return this.base.make_return()}};ValueNode.prototype.unwrap=function unwrap(){if(this.properties.length){return this}else{return this.base}};ValueNode.prototype.is_statement=function is_statement(){return this.base.is_statement&&this.base.is_statement()&&!this.has_properties()};ValueNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,baseline,complete,only,op,part,prop,props,soaked,temp;soaked=false;only=del(o,"only_first");op=del(o,"operation");props=only?this.properties.slice(0,this.properties.length-1):this.properties;baseline=this.base.compile(o);if(this.base instanceof ObjectNode&&this.has_properties()){baseline="("+baseline+")"}complete=(this.last=baseline);_b=props;for(_a=0,_c=_b.length;_a<_c;_a++){prop=_b[_a];this.source=baseline;if(prop.soak_node){soaked=true;if(this.base instanceof CallNode&&prop===props[0]){temp=o.scope.free_variable();complete="("+temp+" = "+complete+")"+this.SOAK+(baseline=temp+prop.compile(o))}else{complete=complete+this.SOAK+(baseline+=prop.compile(o))}}else{part=prop.compile(o);baseline+=part;complete+=part;this.last=part}}if(op&&soaked){return"("+complete+")"}else{return complete}};return ValueNode}).call(this);exports.CommentNode=(function(){CommentNode=function CommentNode(lines){this.lines=lines;this;return this};__extends(CommentNode,BaseNode);CommentNode.prototype.make_return=function make_return(){return this};CommentNode.prototype.compile_node=function compile_node(o){return""+this.tab+"//"+this.lines.join("\n"+this.tab+"//")};return CommentNode}).call(this);statement(CommentNode);exports.CallNode=(function(){CallNode=function CallNode(variable,args){this.is_new=false;this.is_super=variable==="super";this.variable=this.is_super?null:variable;this.children=compact(flatten([this.variable,(this.args=(args||[]))]));this.compile_splat_arguments=__bind(SplatNode.compile_mixed_array,this,[this.args]);return this};__extends(CallNode,BaseNode);CallNode.prototype.new_instance=function new_instance(){this.is_new=true;return this};CallNode.prototype.prefix=function prefix(){if(this.is_new){return"new "}else{return""}};CallNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,_e,_f,_g,arg,args;_b=this.args;for(_a=0,_c=_b.length;_a<_c;_a++){arg=_b[_a];if(arg instanceof SplatNode){return this.compile_splat(o)}}args=(function(){_d=[];_f=this.args;for(_e=0,_g=_f.length;_e<_g;_e++){arg=_f[_e];_d.push(arg.compile(o))}return _d}).call(this).join(", ");if(this.is_super){return this.compile_super(args,o)}return""+(this.prefix())+(this.variable.compile(o))+"("+args+")"};CallNode.prototype.compile_super=function compile_super(args,o){var meth,methname;methname=o.scope.method.name;meth=o.scope.method.proto?""+(o.scope.method.proto)+".__superClass__."+methname:""+(methname)+".__superClass__.constructor";return""+(meth)+".call(this"+(args.length?", ":"")+args+")"};CallNode.prototype.compile_splat=function compile_splat(o){var meth,obj,temp;meth=this.variable.compile(o);obj=this.variable.source||"this";if(obj.match(/\(/)){temp=o.scope.free_variable();obj=temp;meth="("+temp+" = "+(this.variable.source)+")"+(this.variable.last)}return""+(this.prefix())+(meth)+".apply("+obj+", "+(this.compile_splat_arguments(o))+")"};return CallNode}).call(this);exports.CurryNode=(function(){CurryNode=function CurryNode(meth,args){this.children=flatten([(this.meth=meth),(this.context=args[0]),(this.args=(args.slice(1)||[]))]);this.compile_splat_arguments=__bind(SplatNode.compile_mixed_array,this,[this.args]);return this};__extends(CurryNode,CallNode);CurryNode.prototype.arguments=function arguments(o){var _a,_b,_c,arg;_b=this.args;for(_a=0,_c=_b.length;_a<_c;_a++){arg=_b[_a];if(arg instanceof SplatNode){return this.compile_splat_arguments(o)}}return(new ArrayNode(this.args)).compile(o)};CurryNode.prototype.compile_node=function compile_node(o){var ref;utility("slice");ref=new ValueNode(literal(utility("bind")));return(new CallNode(ref,[this.meth,this.context,literal(this.arguments(o))])).compile(o)};return CurryNode}).call(this);exports.ExtendsNode=(function(){ExtendsNode=function ExtendsNode(child,parent){this.children=[(this.child=child),(this.parent=parent)];return this};__extends(ExtendsNode,BaseNode);ExtendsNode.prototype.compile_node=function compile_node(o){var ref;ref=new ValueNode(literal(utility("extends")));return(new CallNode(ref,[this.child,this.parent])).compile(o)};return ExtendsNode}).call(this);exports.AccessorNode=(function(){AccessorNode=function AccessorNode(name,tag){this.children=[(this.name=name)];this.prototype=tag==="prototype";this.soak_node=tag==="soak";this;return this};__extends(AccessorNode,BaseNode);AccessorNode.prototype.compile_node=function compile_node(o){var proto_part;proto_part=this.prototype?"prototype.":"";return"."+proto_part+(this.name.compile(o))};return AccessorNode}).call(this);exports.IndexNode=(function(){IndexNode=function IndexNode(index,tag){this.children=[(this.index=index)];this.soak_node=tag==="soak";return this};__extends(IndexNode,BaseNode);IndexNode.prototype.compile_node=function compile_node(o){var idx;idx=this.index.compile(o);return"["+idx+"]"};return IndexNode}).call(this);exports.RangeNode=(function(){RangeNode=function RangeNode(from,to,exclusive){this.children=[(this.from=from),(this.to=to)];this.exclusive=!!exclusive;return this};__extends(RangeNode,BaseNode);RangeNode.prototype.compile_variables=function compile_variables(o){var _a,_b,from,to;this.tab=o.indent;_a=[o.scope.free_variable(),o.scope.free_variable()];this.from_var=_a[0];this.to_var=_a[1];_b=[this.from.compile(o),this.to.compile(o)];from=_b[0];to=_b[1];return""+this.from_var+" = "+from+"; "+this.to_var+" = "+to+";\n"+this.tab};RangeNode.prototype.compile_node=function compile_node(o){var compare,equals,idx,incr,intro,step,vars;if(!(o.index)){return this.compile_array(o)}idx=del(o,"index");step=del(o,"step");vars=""+idx+" = "+this.from_var;step=step?step.compile(o):"1";equals=this.exclusive?"":"=";intro="("+this.from_var+" <= "+this.to_var+" ? "+idx;compare=""+intro+" <"+equals+" "+this.to_var+" : "+idx+" >"+equals+" "+this.to_var+")";incr=""+intro+" += "+step+" : "+idx+" -= "+step+")";return""+vars+"; "+compare+"; "+incr};RangeNode.prototype.compile_array=function compile_array(o){var arr,body,name;name=o.scope.free_variable();body=Expressions.wrap([literal(name)]);arr=Expressions.wrap([new ForNode(body,{source:(new ValueNode(this))},literal(name))]);return(new ParentheticalNode(new CallNode(new CodeNode([],arr.make_return())))).compile(o)};return RangeNode}).call(this);exports.SliceNode=(function(){SliceNode=function SliceNode(range){this.children=[(this.range=range)];this;return this};__extends(SliceNode,BaseNode);SliceNode.prototype.compile_node=function compile_node(o){var from,plus_part,to;from=this.range.from.compile(o);to=this.range.to.compile(o);plus_part=this.range.exclusive?"":" + 1";return".slice("+from+", "+to+plus_part+")"};return SliceNode}).call(this);exports.ObjectNode=(function(){ObjectNode=function ObjectNode(props){this.children=(this.objects=(this.properties=props||[]));return this};__extends(ObjectNode,BaseNode);ObjectNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,_e,_f,_g,i,indent,inner,join,last_noncom,non_comments,prop,props;o.indent=this.idt(1);non_comments=(function(){_a=[];_c=this.properties;for(_b=0,_d=_c.length;_b<_d;_b++){prop=_c[_b];!(prop instanceof CommentNode)?_a.push(prop):null}return _a}).call(this);last_noncom=non_comments[non_comments.length-1];props=(function(){_e=[];_f=this.properties;for(i=0,_g=_f.length;i<_g;i++){prop=_f[i];_e.push((function(){join=",\n";if((prop===last_noncom)||(prop instanceof CommentNode)){join="\n"}if(i===this.properties.length-1){join=""}indent=prop instanceof CommentNode?"":this.idt(1);return indent+prop.compile(o)+join}).call(this))}return _e}).call(this);props=props.join("");inner=props?"\n"+props+"\n"+this.idt():"";return"{"+inner+"}"};return ObjectNode}).call(this);exports.ArrayNode=(function(){ArrayNode=function ArrayNode(objects){this.children=(this.objects=objects||[]);this.compile_splat_literal=__bind(SplatNode.compile_mixed_array,this,[this.objects]);return this};__extends(ArrayNode,BaseNode);ArrayNode.prototype.compile_node=function compile_node(o){var _a,_b,code,ending,i,obj,objects;o.indent=this.idt(1);objects=[];_a=this.objects;for(i=0,_b=_a.length;i<_b;i++){obj=_a[i];code=obj.compile(o);if(obj instanceof SplatNode){return this.compile_splat_literal(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("");ending=objects.indexOf("\n")>=0?"\n"+this.tab+"]":"]";return"["+objects+ending};return ArrayNode}).call(this);exports.ClassNode=(function(){ClassNode=function ClassNode(variable,parent,props){this.children=compact(flatten([(this.variable=variable),(this.parent=parent),(this.properties=props||[])]));this.returns=false;return this};__extends(ClassNode,BaseNode);ClassNode.prototype.make_return=function make_return(){this.returns=true;return this};ClassNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,access,applied,construct,extension,func,prop,props,pvar,returns,val;extension=this.parent&&new ExtendsNode(this.variable,this.parent);constructor=null;props=new Expressions();o.top=true;_b=this.properties;for(_a=0,_c=_b.length;_a<_c;_a++){prop=_b[_a];_d=[prop.variable,prop.value];pvar=_d[0];func=_d[1];if(pvar&&pvar.base.value==="constructor"&&func instanceof CodeNode){func.body.push(new ReturnNode(literal("this")));constructor=new AssignNode(this.variable,func)}else{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(!constructor){if(this.parent){applied=new ValueNode(this.parent,[new AccessorNode(literal("apply"))]);constructor=new AssignNode(this.variable,new CodeNode([],new Expressions([new CallNode(applied,[literal("this"),literal("arguments")])])))}else{constructor=new AssignNode(this.variable,new CodeNode())}}construct=this.idt()+constructor.compile(o)+";\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}).call(this);statement(ClassNode);exports.AssignNode=(function(){AssignNode=function AssignNode(variable,value,context){this.children=[(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.top_sensitive=function top_sensitive(){return true};AssignNode.prototype.is_value=function is_value(){return this.variable instanceof ValueNode};AssignNode.prototype.make_return=function make_return(){return new Expressions([this,new ReturnNode(this.variable)])};AssignNode.prototype.is_statement=function is_statement(){return this.is_value()&&(this.variable.is_array()||this.variable.is_object())};AssignNode.prototype.compile_node=function compile_node(o){var last,match,name,proto,stmt,top,val;top=del(o,"top");if(this.is_statement()){return this.compile_pattern_match(o)}if(this.is_value()&&this.variable.is_splice()){return this.compile_splice(o)}stmt=del(o,"as_statement");name=this.variable.compile(o);last=this.is_value()?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.is_value()&&this.variable.has_properties())){o.scope.find(name)}val=""+name+" = "+val;if(stmt){return""+this.tab+val+";"}if(top){return val}else{return"("+val+")"}};AssignNode.prototype.compile_pattern_match=function compile_pattern_match(o){var _a,_b,_c,access_class,assigns,code,i,idx,obj,oindex,olength,splat,val,val_var,value;val_var=o.scope.free_variable();value=this.value.is_statement()?ClosureNode.wrap(this.value):this.value;assigns=[""+this.tab+val_var+" = "+(value.compile(o))+";"];o.top=true;o.as_statement=true;splat=false;_a=this.variable.base.objects;for(i=0,_b=_a.length;i<_b;i++){obj=_a[i];idx=i;if(this.variable.is_object()){_c=[obj.value,obj.variable.base];obj=_c[0];idx=_c[1]}access_class=this.variable.is_array()?IndexNode:AccessorNode;if(obj instanceof SplatNode&&!splat){val=literal(obj.compile_value(o,val_var,(oindex=this.variable.base.objects.indexOf(obj)),(olength=this.variable.base.objects.length)-oindex-1));splat=true}else{if(typeof idx!=="object"){idx=literal(splat?""+(val_var)+".length - "+(olength-idx):idx)}val=new ValueNode(literal(val_var),[new access_class(idx)])}assigns.push(new AssignNode(obj,val).compile(o))}code=assigns.join("\n");return code};AssignNode.prototype.compile_splice=function compile_splice(o){var from,l,name,plus,range,to,val;name=this.variable.compile(merge(o,{only_first: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}).call(this);exports.CodeNode=(function(){CodeNode=function CodeNode(params,body,tag){this.params=params||[];this.body=body||new Expressions();this.bound=tag==="boundfunc";return this};__extends(CodeNode,BaseNode);CodeNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,_e,_f,_g,_h,_i,_j,code,func,i,name_part,param,params,ref,shared_scope,splat,top;shared_scope=del(o,"shared_scope");top=del(o,"top");o.scope=shared_scope||new Scope(o.scope,this.body,this);o.top=true;o.indent=this.idt(this.bound?2:1);del(o,"no_wrap");del(o,"globals");i=0;splat=undefined;params=[];_b=this.params;for(_a=0,_c=_b.length;_a<_c;_a++){param=_b[_a];if(param instanceof SplatNode&&!(typeof splat!=="undefined"&&splat!==null)){splat=param;splat.index=i;this.body.unshift(splat);splat.trailings=[]}else{if((typeof splat!=="undefined"&&splat!==null)){splat.trailings.push(param)}else{params.push(param)}}i+=1}params=(function(){_d=[];_f=params;for(_e=0,_g=_f.length;_e<_g;_e++){param=_f[_e];_d.push(param.compile(o))}return _d}).call(this);this.body.make_return();_i=params;for(_h=0,_j=_i.length;_h<_j;_h++){param=_i[_h];(o.scope.parameter(param))}code=this.body.expressions.length?"\n"+(this.body.compile_with_declarations(o))+"\n":"";name_part=this.name?" "+this.name:"";func="function"+(this.bound?"":name_part)+"("+(params.join(", "))+") {"+code+(this.idt(this.bound?1:0))+"}";if(top&&!this.bound){func="("+func+")"}if(!(this.bound)){return func}utility("slice");ref=new ValueNode(literal(utility("bind")));return(new CallNode(ref,[literal(func),literal("this")])).compile(o)};CodeNode.prototype.top_sensitive=function top_sensitive(){return true};CodeNode.prototype.real_children=function real_children(){return flatten([this.params,this.body.expressions])};CodeNode.prototype.traverse=function traverse(block){var _a,_b,_c,_d,child;block(this);_a=[];_c=this.real_children();for(_b=0,_d=_c.length;_b<_d;_b++){child=_c[_b];_a.push(child.traverse(block))}return _a};CodeNode.prototype.toString=function toString(idt){var _a,_b,_c,_d,child,children;idt=idt||"";children=(function(){_a=[];_c=this.real_children();for(_b=0,_d=_c.length;_b<_d;_b++){child=_c[_b];_a.push(child.toString(idt+TAB))}return _a}).call(this).join("");return"\n"+idt+children};return CodeNode}).call(this);exports.SplatNode=(function(){SplatNode=function SplatNode(name){if(!(name.compile)){name=literal(name)}this.children=[(this.name=name)];return this};__extends(SplatNode,BaseNode);SplatNode.prototype.compile_node=function compile_node(o){var _a;if((typeof(_a=this.index)!=="undefined"&&_a!==null)){return this.compile_param(o)}else{return this.name.compile(o)}};SplatNode.prototype.compile_param=function compile_param(o){var _a,_b,_c,i,name,trailing;name=this.name.compile(o);o.scope.find(name);i=0;_b=this.trailings;for(_a=0,_c=_b.length;_a<_c;_a++){trailing=_b[_a];o.scope.assign(trailing.compile(o),"arguments[arguments.length - "+this.trailings.length+" + "+i+"]");i+=1}return""+name+" = "+(utility("slice"))+".call(arguments, "+this.index+", arguments.length - "+(this.trailings.length)+")"};SplatNode.prototype.compile_value=function compile_value(o,name,index,trailings){var trail;trail=trailings?", "+(name)+".length - "+trailings:"";return""+(utility("slice"))+".call("+name+", "+index+trail+")"};SplatNode.compile_mixed_array=function compile_mixed_array(list,o){var _a,_b,_c,arg,args,code,i,prev;args=[];i=0;_b=list;for(_a=0,_c=_b.length;_a<_c;_a++){arg=_b[_a];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 WhileNode(condition,opts){this.children=[(this.condition=condition)];this.filter=opts&&opts.filter;return this};__extends(WhileNode,BaseNode);WhileNode.prototype.add_body=function add_body(body){this.children.push((this.body=body));return this};WhileNode.prototype.make_return=function make_return(){this.returns=true;return this};WhileNode.prototype.top_sensitive=function top_sensitive(){return true};WhileNode.prototype.compile_node=function compile_node(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.free_variable();set=""+this.tab+rvar+" = [];\n";if(this.body){this.body=PushNode.wrap(rvar,this.body)}}pre=""+set+(this.tab)+"while ("+cond+")";if(!this.body){return""+pre+" null;"+post}if(this.filter){this.body=Expressions.wrap([new IfNode(this.filter,this.body)])}this.returns?(post=new ReturnNode(literal(rvar)).compile(merge(o,{indent:this.idt()}))):(post="");return""+pre+" {\n"+(this.body.compile(o))+"\n"+this.tab+"}\n"+post};return WhileNode}).call(this);statement(WhileNode);exports.OpNode=(function(){OpNode=function OpNode(operator,first,second,flip){this.constructor.name+=" "+operator;this.children=compact([(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.is_unary=function is_unary(){return !this.second};OpNode.prototype.is_chainable=function is_chainable(){return this.CHAINABLE.indexOf(this.operator)>=0};OpNode.prototype.compile_node=function compile_node(o){o.operation=true;if(this.is_chainable()&&this.first.unwrap() instanceof OpNode&&this.first.unwrap().is_chainable()){return this.compile_chain(o)}if(this.ASSIGNMENT.indexOf(this.operator)>=0){return this.compile_assignment(o)}if(this.is_unary()){return this.compile_unary(o)}if(this.operator==="?"){return this.compile_existence(o)}return[this.first.compile(o),this.operator,this.second.compile(o)].join(" ")};OpNode.prototype.compile_chain=function compile_chain(o){var _a,_b,first,second,shared;shared=this.first.unwrap().second;if(shared.contains_type(CallNode)){_a=shared.compile_reference(o);this.first.second=_a[0];shared=_a[1]}_b=[this.first.compile(o),this.second.compile(o),shared.compile(o)];first=_b[0];second=_b[1];shared=_b[2];return"("+first+") && ("+shared+" "+this.operator+" "+second+")"};OpNode.prototype.compile_assignment=function compile_assignment(o){var _a,first,second;_a=[this.first.compile(o),this.second.compile(o)];first=_a[0];second=_a[1];if(first.match(IDENTIFIER)){o.scope.find(first)}if(this.operator==="?="){return""+first+" = "+(ExistenceNode.compile_test(o,this.first))+" ? "+first+" : "+second}return""+first+" = "+first+" "+(this.operator.substr(0,2))+" "+second};OpNode.prototype.compile_existence=function compile_existence(o){var _a,first,second,test;_a=[this.first.compile(o),this.second.compile(o)];first=_a[0];second=_a[1];test=ExistenceNode.compile_test(o,this.first);return""+test+" ? "+first+" : "+second};OpNode.prototype.compile_unary=function compile_unary(o){var parts,space;space=this.PREFIX_OPERATORS.indexOf(this.operator)>=0?" ":"";parts=[this.operator,space,this.first.compile(o)];if(this.flip){parts=parts.reverse()}return parts.join("")};return OpNode}).call(this);exports.TryNode=(function(){TryNode=function TryNode(attempt,error,recovery,ensure){this.children=compact([(this.attempt=attempt),(this.recovery=recovery),(this.ensure=ensure)]);this.error=error;this;return this};__extends(TryNode,BaseNode);TryNode.prototype.make_return=function make_return(){if(this.attempt){this.attempt=this.attempt.make_return()}if(this.recovery){this.recovery=this.recovery.make_return()}return this};TryNode.prototype.compile_node=function compile_node(o){var attempt_part,catch_part,error_part,finally_part;o.indent=this.idt(1);o.top=true;attempt_part=this.attempt.compile(o);error_part=this.error?" ("+(this.error.compile(o))+") ":" ";catch_part=this.recovery?" catch"+error_part+"{\n"+(this.recovery.compile(o))+"\n"+this.tab+"}":"";finally_part=(this.ensure||"")&&" finally {\n"+this.ensure.compile(merge(o))+"\n"+this.tab+"}";return""+(this.tab)+"try {\n"+attempt_part+"\n"+this.tab+"}"+catch_part+finally_part};return TryNode}).call(this);statement(TryNode);exports.ThrowNode=(function(){ThrowNode=function ThrowNode(expression){this.children=[(this.expression=expression)];return this};__extends(ThrowNode,BaseNode);ThrowNode.prototype.make_return=function make_return(){return this};ThrowNode.prototype.compile_node=function compile_node(o){return""+(this.tab)+"throw "+(this.expression.compile(o))+";"};return ThrowNode}).call(this);statement(ThrowNode);exports.ExistenceNode=(function(){ExistenceNode=function ExistenceNode(expression){this.children=[(this.expression=expression)];return this};__extends(ExistenceNode,BaseNode);ExistenceNode.prototype.compile_node=function compile_node(o){return ExistenceNode.compile_test(o,this.expression)};ExistenceNode.compile_test=function compile_test(o,variable){var _a,_b,_c,first,second;_a=[variable,variable];first=_a[0];second=_a[1];if(variable instanceof CallNode||(variable instanceof ValueNode&&variable.has_properties())){_b=variable.compile_reference(o);first=_b[0];second=_b[1]}_c=[first.compile(o),second.compile(o)];first=_c[0];second=_c[1];return"(typeof "+first+' !== "undefined" && '+second+" !== null)"};return ExistenceNode}).call(this);exports.ParentheticalNode=(function(){ParentheticalNode=function ParentheticalNode(expression){this.children=[(this.expression=expression)];return this};__extends(ParentheticalNode,BaseNode);ParentheticalNode.prototype.is_statement=function is_statement(){return this.expression.is_statement()};ParentheticalNode.prototype.make_return=function make_return(){return this.expression.make_return()};ParentheticalNode.prototype.compile_node=function compile_node(o){var code,l;code=this.expression.compile(o);if(this.is_statement()){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}).call(this);exports.ForNode=(function(){ForNode=function ForNode(body,source,name,index){var _a;this.body=body;this.name=name;this.index=index||null;this.source=source.source;this.filter=source.filter;this.step=source.step;this.object=!!source.object;if(this.object){_a=[this.index,this.name];this.name=_a[0];this.index=_a[1]}this.children=compact([this.body,this.source,this.filter]);this.returns=false;return this};__extends(ForNode,BaseNode);ForNode.prototype.top_sensitive=function top_sensitive(){return true};ForNode.prototype.make_return=function make_return(){this.returns=true;return this};ForNode.prototype.compile_return_value=function compile_return_value(val,o){if(this.returns){return new ReturnNode(literal(val)).compile(o)}return val||""};ForNode.prototype.compile_node=function compile_node(o){var body,body_dent,close,for_part,index,index_var,ivar,lvar,name,range,return_result,rvar,scope,set_result,source,source_part,step_part,svar,top_level,var_part,vars;top_level=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;scope=o.scope;name=this.name&&this.name.compile(o);index=this.index&&this.index.compile(o);if(name){scope.find(name)}if(index){scope.find(index)}body_dent=this.idt(1);if(!(top_level)){rvar=scope.free_variable()}ivar=range?name:index||scope.free_variable();var_part="";body=Expressions.wrap([this.body]);if(range){index_var=scope.free_variable();source_part=source.compile_variables(o);for_part=source.compile(merge(o,{index:ivar,step:this.step}));for_part=""+index_var+" = 0, "+for_part+", "+index_var+"++"}else{svar=scope.free_variable();index_var=null;source_part=""+svar+" = "+(this.source.compile(o))+";\n"+this.tab;if(name){var_part=""+body_dent+name+" = "+svar+"["+ivar+"];\n"}if(!this.object){lvar=scope.free_variable();step_part=this.step?""+ivar+" += "+(this.step.compile(o)):""+ivar+"++";for_part=""+ivar+" = 0, "+lvar+" = "+(svar)+".length; "+ivar+" < "+lvar+"; "+step_part}}set_result=rvar?this.idt()+rvar+" = []; ":this.idt();return_result=this.compile_return_value(rvar,o);if(top_level&&body.contains(function(n){return n instanceof CodeNode})){body=ClosureNode.wrap(body,true)}if(!(top_level)){body=PushNode.wrap(rvar,body)}this.filter?(body=Expressions.wrap([new IfNode(this.filter,body)])):null;this.object?(for_part=""+ivar+" in "+svar+") { if ("+(utility("hasProp"))+".call("+svar+", "+ivar+")"):null;body=body.compile(merge(o,{indent:body_dent,top:true}));vars=range?name:""+name+", "+ivar;close=this.object?"}}\n":"}\n";return""+set_result+(source_part)+"for ("+for_part+") {\n"+var_part+body+"\n"+this.tab+close+return_result};return ForNode}).call(this);statement(ForNode);exports.IfNode=(function(){IfNode=function IfNode(condition,body,else_body,tags){this.condition=condition;this.body=body&&body.unwrap();this.else_body=else_body&&else_body.unwrap();this.children=compact(flatten([this.condition,this.body,this.else_body]));this.tags=tags||{};if(this.condition instanceof Array){this.multiple=true}if(this.tags.invert){this.condition=new OpNode("!",new ParentheticalNode(this.condition))}return this};__extends(IfNode,BaseNode);IfNode.prototype.push=function push(else_body){var eb;eb=else_body.unwrap();this.else_body?this.else_body.push(eb):(this.else_body=eb);return this};IfNode.prototype.force_statement=function force_statement(){this.tags.statement=true;return this};IfNode.prototype.rewrite_condition=function rewrite_condition(expression){this.switcher=expression;return this};IfNode.prototype.rewrite_switch=function rewrite_switch(o){var _a,_b,_c,assigner,cond,i,variable;assigner=this.switcher;if(!(this.switcher.unwrap() instanceof LiteralNode)){variable=literal(o.scope.free_variable());assigner=new AssignNode(variable,this.switcher);this.switcher=variable}this.condition=(function(){if(this.multiple){_a=[];_b=this.condition;for(i=0,_c=_b.length;i<_c;i++){cond=_b[i];_a.push(new OpNode("==",(i===0?assigner:this.switcher),cond))}return _a}else{return new OpNode("==",assigner,this.condition)}}).call(this);if(this.is_chain()){this.else_body.rewrite_condition(this.switcher)}return this};IfNode.prototype.add_else=function add_else(exprs,statement){if(this.is_chain()){this.else_body.add_else(exprs,statement)}else{if(!(statement)){exprs=exprs.unwrap()}this.children.push((this.else_body=exprs))}return this};IfNode.prototype.is_chain=function is_chain(){return this.chain=this.chain||this.else_body&&this.else_body instanceof IfNode};IfNode.prototype.is_statement=function is_statement(){return this.statement=this.statement||!!(this.comment||this.tags.statement||this.body.is_statement()||(this.else_body&&this.else_body.is_statement()))};IfNode.prototype.compile_condition=function compile_condition(o){var _a,_b,_c,_d,cond;return(function(){_a=[];_c=flatten([this.condition]);for(_b=0,_d=_c.length;_b<_d;_b++){cond=_c[_b];_a.push(cond.compile(o))}return _a}).call(this).join(" || ")};IfNode.prototype.compile_node=function compile_node(o){if(this.is_statement()){return this.compile_statement(o)}else{return this.compile_ternary(o)}};IfNode.prototype.make_return=function make_return(){this.body=this.body&&this.body.make_return();this.else_body=this.else_body&&this.else_body.make_return();return this};IfNode.prototype.compile_statement=function compile_statement(o){var body,child,com_dent,cond_o,else_part,if_dent,if_part,prefix;if(this.switcher){this.rewrite_switch(o)}child=del(o,"chain_child");cond_o=merge(o);o.indent=this.idt(1);o.top=true;if_dent=child?"":this.idt();com_dent=child?this.idt():"";prefix=this.comment?""+(this.comment.compile(cond_o))+"\n"+com_dent:"";body=Expressions.wrap([this.body]).compile(o);if_part=""+prefix+(if_dent)+"if ("+(this.compile_condition(cond_o))+") {\n"+body+"\n"+this.tab+"}";if(!(this.else_body)){return if_part}else_part=this.is_chain()?" else "+this.else_body.compile(merge(o,{indent:this.idt(),chain_child:true})):" else {\n"+(Expressions.wrap([this.else_body]).compile(o))+"\n"+this.tab+"}";return""+if_part+else_part};IfNode.prototype.compile_ternary=function compile_ternary(o){var else_part,if_part;if_part=this.condition.compile(o)+" ? "+this.body.compile(o);else_part=this.else_body?this.else_body.compile(o):"null";return""+if_part+" : "+else_part};return IfNode}).call(this);PushNode=(exports.PushNode={wrap:function wrap(array,expressions){var expr;expr=expressions.unwrap();if(expr.is_pure_statement()||expr.contains_pure_statement()){return expressions}return Expressions.wrap([new CallNode(new ValueNode(literal(array),[new AccessorNode(literal("push"))]),[expr])])}});ClosureNode=(exports.ClosureNode={wrap:function wrap(expressions,statement){var call,func;if(expressions.contains_pure_statement()){return expressions}func=new ParentheticalNode(new CodeNode([],Expressions.wrap([expressions])));call=new CallNode(new ValueNode(func,[new AccessorNode(literal("call"))]),[literal("this")]);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 }",__bind:"function(func, obj, args) {\n return function() {\n return func.apply(obj || {}, args ? args.concat(__slice.call(arguments, 0)) : arguments);\n };\n }",__hasProp:"Object.prototype.hasOwnProperty",__slice:"Array.prototype.slice"};TAB=" ";TRAILING_WHITESPACE=/\s+$/gm;IDENTIFIER=/^[a-zA-Z\$_](\w|\$)*$/;literal=function literal(name){return new LiteralNode(name)};utility=function utility(name){var ref;ref="__"+name;Scope.root.assign(ref,UTILITIES[ref]);return ref}})();(function(){var Lexer,compile,helpers,lexer,parser,path,process_scripts;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.6.0";lexer=new Lexer();exports.compile=(compile=function compile(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 tokens(code){return lexer.tokenize(code)};exports.nodes=function nodes(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))});exports.extend=function extend(func){return Lexer.extensions.push(func)};parser.lexer={lex:function lex(){var token;token=this.tokens[this.pos]||[""];this.pos+=1;this.yylineno=token[2];this.yytext=token[1];return token[0]},setInput:function setInput(tokens){this.tokens=tokens;this.pos=0;return this.pos},upcomingInput:function upcomingInput(){return""},showPosition:function showPosition(){return this.pos}};if((typeof document!=="undefined"&&document!==null)&&document.getElementsByTagName){process_scripts=function process_scripts(){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",process_scripts,false)}else{if(window.attachEvent){window.attachEvent("onload",process_scripts)}}}})(); \ No newline at end of file +(function(){var balanced_string,compact,count,del,extend,flatten,helpers,include,merge,starts;var __hasProp=Object.prototype.hasOwnProperty;if(!((typeof process!=="undefined"&&process!==null))){this.exports=this}helpers=(exports.helpers={});helpers.include=(include=function include(list,value){return list.indexOf(value)>=0});helpers.starts=(starts=function starts(string,literal,start){return string.substring(start,(start||0)+literal.length)===literal});helpers.compact=(compact=function compact(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 count(string,letter){var num,pos;num=0;pos=string.indexOf(letter);while(pos!==-1){num+=1;pos=string.indexOf(letter,pos+1)}return num});helpers.merge=(merge=function merge(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 extend(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 flatten(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 del(obj,key){var val;val=obj[key];delete obj[key];return val});helpers.balanced_string=(balanced_string=function balanced_string(str,delimited,options){var _a,_b,_c,_d,close,i,levels,open,pair,slash;options=options||{};slash=delimited[0][0]==="/";levels=[];i=0;while(i0;if(!(typeof post!=="undefined"&&post!==null)||(start_parens>parens)||(parens===0&&include(IMPLICIT_END,tag))){if(tag==="INDENT"&&prev&&include(IMPLICIT_BLOCK,prev[0])){return 1}if(tag==="OUTDENT"&&token.generated){return 1}if(open||tag==="INDENT"){idx=tag==="OUTDENT"?i+1:i;stack_pointer=tag==="INDENT"?2:1;_b=0;_c=stack[stack.length-stack_pointer];for(_a=0,tmp=_b;(_b<=_c?tmp<_c:tmp>_c);(_b<=_c?tmp+=1:tmp-=1),_a++){this.tokens.splice(idx,0,["CALL_END",")",token[2]])}size=stack[stack.length-stack_pointer]+1;stack[stack.length-stack_pointer]=0;return size}}if(!(prev&&include(IMPLICIT_FUNC,prev[0])&&include(IMPLICIT_CALL,tag))){return 1}calls=0;start_parens=tag==="("?parens-1:parens;this.tokens.splice(i,0,["CALL_START","(",token[2]]);stack[stack.length-1]+=1;return 2},this))};Rewriter.prototype.add_implicit_indentation=function add_implicit_indentation(){return this.scan_tokens(__bind(function(prev,token,post,i){var idx,insertion,outdent,parens,pre,starter,tok;if(!(include(SINGLE_LINERS,token[0])&&post[0]!=="INDENT"&&!(token[0]==="ELSE"&&post[0]==="IF"))){return 1}starter=token[0];this.tokens.splice(i+1,0,["INDENT",2,token[2]]);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]!==";")||(tok[0]===")"&&parens===0))&&!(starter==="ELSE"&&tok[0]==="ELSE")){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},this))};Rewriter.prototype.ensure_balance=function ensure_balance(pairs){var _a,_b,key,levels,line,open,open_line,unclosed,value;levels={};open_line={};this.scan_tokens(__bind(function(prev,token,post,i){var _a,_b,_c,_d,close,open,pair;_b=pairs;for(_a=0,_c=_b.length;_a<_c;_a++){pair=_b[_a];_d=pair;open=_d[0];close=_d[1];levels[open]=levels[open]||0;if(token[0]===open){if(levels[open]===0){open_line[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},this));unclosed=(function(){_a=[];_b=levels;for(key in _b){if(__hasProp.call(_b,key)){value=_b[key];value>0?_a.push(key):null}}return _a}).call(this);if(unclosed.length){open=unclosed[0];line=open_line[open]+1;throw new Error(("unclosed "+open+" on line "+line))}};Rewriter.prototype.rewrite_closing_parens=function rewrite_closing_parens(){var _a,debt,key,stack,val;stack=[];debt={};_a=INVERSES;for(key in _a){if(__hasProp.call(_a,key)){val=_a[key];(debt[key]=0)}}return this.scan_tokens(__bind(function(prev,token,post,i){var inv,match,mtag,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];if(tag===INVERSES[mtag]){return 1}debt[mtag]+=1;val=mtag==="INDENT"?match[1]:INVERSES[mtag];this.tokens.splice(i,0,[INVERSES[mtag],val]);return 1}}else{return 1}}},this))};return Rewriter}).call(this);BALANCED_PAIRS=[["(",")"],["[","]"],["{","}"],["INDENT","OUTDENT"],["PARAM_START","PARAM_END"],["CALL_START","CALL_END"],["INDEX_START","INDEX_END"],["SOAKED_INDEX_START","SOAKED_INDEX_END"]];INVERSES={};_b=BALANCED_PAIRS;for(_a=0,_c=_b.length;_a<_c;_a++){pair=_b[_a];INVERSES[pair[0]]=pair[1];INVERSES[pair[1]]=pair[0]}EXPRESSION_START=(function(){_d=[];_f=BALANCED_PAIRS;for(_e=0,_g=_f.length;_e<_g;_e++){pair=_f[_e];_d.push(pair[0])}return _d}).call(this);EXPRESSION_END=(function(){_h=[];_j=BALANCED_PAIRS;for(_i=0,_k=_j.length;_i<_k;_i++){pair=_j[_i];_h.push(pair[1])}return _h}).call(this);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","EXTENSION","TRUE","FALSE","YES","NO","ON","OFF","!","!!","NOT","THIS","NULL","@","->","=>","[","(","{"];IMPLICIT_BLOCK=["->","=>","{","[",","];IMPLICIT_END=["IF","UNLESS","FOR","WHILE","TERMINATOR","INDENT","OUTDENT"];SINGLE_LINERS=["ELSE","->","=>","TRY","FINALLY","THEN"];SINGLE_CLOSERS=["TERMINATOR","CATCH","FINALLY","ELSE","OUTDENT","LEADING_WHEN"]})();(function(){var ACCESSORS,ASSIGNMENT,CALLABLE,CODE,COFFEE_ALIASES,COFFEE_KEYWORDS,COMMENT,COMMENT_CLEANER,CONVERSIONS,HALF_ASSIGNMENTS,HEREDOC,HEREDOC_INDENT,IDENTIFIER,INTERPOLATION,JS_CLEANER,JS_FORBIDDEN,JS_KEYWORDS,KEYWORDS,LAST_DENT,LAST_DENTS,LINE_BREAK,Lexer,MULTILINER,MULTI_DENT,NOT_REGEX,NO_NEWLINE,NUMBER,OPERATOR,REGEX_ESCAPE,REGEX_FLAGS,REGEX_INTERPOLATION,REGEX_START,RESERVED,Rewriter,STRING_NEWLINES,WHITESPACE,balanced_string,compact,count,helpers,include,starts;var __slice=Array.prototype.slice;if((typeof process!=="undefined"&&process!==null)){Rewriter=require("./rewriter").Rewriter;helpers=require("./helpers").helpers}else{this.exports=this;Rewriter=this.Rewriter;helpers=this.helpers}include=helpers.include;count=helpers.count;starts=helpers.starts;compact=helpers.compact;balanced_string=helpers.balanced_string;exports.Lexer=(function(){Lexer=function Lexer(){};Lexer.prototype.tokenize=function tokenize(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.indents=[];this.tokens=[];while(this.ithis.indent){if(no_newlines){return this.suppress_newlines()}diff=size-this.indent;this.token("INDENT",diff);this.indents.push(diff)}else{this.outdent_token(this.indent-size,no_newlines)}}this.indent=size;return true};Lexer.prototype.outdent_token=function outdent_token(move_out,no_newlines){var last_indent;while(move_out>0&&this.indents.length){last_indent=this.indents.pop();this.token("OUTDENT",last_indent);move_out-=last_indent}if(!(this.tag()==="TERMINATOR"||no_newlines)){this.token("TERMINATOR","\n")}return true};Lexer.prototype.whitespace_token=function whitespace_token(){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.newline_token=function newline_token(newlines){if(!(this.tag()==="TERMINATOR")){this.token("TERMINATOR","\n")}return true};Lexer.prototype.suppress_newlines=function suppress_newlines(){if(this.value()==="\\"){this.tokens.pop()}return true};Lexer.prototype.literal_token=function literal_token(){var match,prev_spaced,space,tag,value;match=this.chunk.match(OPERATOR);value=match&&match[1];space=match&&match[2];if(value&&value.match(CODE)){this.tag_parameters()}value=value||this.chunk.substr(0,1);prev_spaced=this.prev()&&this.prev().spaced;tag=value;if(value.match(ASSIGNMENT)){tag="ASSIGN";if(include(JS_FORBIDDEN,this.value)){this.assignment_error()}}else{if(value===";"){tag="TERMINATOR"}else{if(value==="["&&this.tag()==="?"&&!prev_spaced){tag="SOAKED_INDEX_START";this.soaked_index=true;this.tokens.pop()}else{if(value==="]"&&this.soaked_index){tag="SOAKED_INDEX_END";this.soaked_index=false}else{if(include(CALLABLE,this.tag())&&!prev_spaced){if(value==="("){tag="CALL_START"}if(value==="["){tag="INDEX_START"}}}}}}this.i+=value.length;if(space&&prev_spaced&&this.prev()[0]==="ASSIGN"&&include(HALF_ASSIGNMENTS,tag)){return this.tag_half_assignment(tag)}this.token(tag,value);return true};Lexer.prototype.name_access_type=function name_access_type(){if(this.value()==="::"){this.tag(1,"PROTOTYPE_ACCESS")}if(this.value()==="."&&!(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")}}};Lexer.prototype.sanitize_heredoc=function sanitize_heredoc(doc,quote){var indent;indent=(doc.match(HEREDOC_INDENT)||[""]).sort()[0];return doc.replace(new RegExp("^"+indent,"gm"),"").replace(MULTILINER,"\\n").replace(new RegExp(quote,"g"),'\\"')};Lexer.prototype.tag_half_assignment=function tag_half_assignment(tag){var last;last=this.tokens.pop();this.tokens.push([(""+tag+"="),(""+tag+"="),last[2]]);return true};Lexer.prototype.tag_parameters=function tag_parameters(){var _a,i,tok;if(this.tag()!==")"){return null}i=0;while(true){i+=1;tok=this.prev(i);if(!tok){return null}if((_a=tok[0])==="IDENTIFIER"){tok[0]="PARAM"}else{if(_a===")"){tok[0]="PARAM_END"}else{if(_a==="("){tok[0]="PARAM_START";return tok[0]}}}}return true};Lexer.prototype.close_indentation=function close_indentation(){return this.outdent_token(this.indent)};Lexer.prototype.identifier_error=function identifier_error(word){throw new Error(('SyntaxError: Reserved word "'+word+'" on line '+(this.line+1)))};Lexer.prototype.assignment_error=function assignment_error(){throw new Error(('SyntaxError: Reserved word "'+(this.value())+'" on line '+(this.line+1)+" can't be assigned"))};Lexer.prototype.interpolate_string=function interpolate_string(str,escape_quotes){var _a,_b,_c,_d,_e,escaped,expr,group,i,inner,interp,interpolated,lexer,match,nested,pi,quote,tag,token,tokens,value;if(str.length<3||!starts(str,'"')){return this.token("STRING",str)}else{lexer=new Lexer();tokens=[];quote=str.substring(0,1);_a=[1,1];i=_a[0];pi=_a[1];while(i1;if(interpolated){this.token("(","(")}_c=tokens;for(i=0,_d=_c.length;i<_d;i++){token=_c[i];_e=token;tag=_e[0];value=_e[1];if(tag==="TOKENS"){this.tokens=this.tokens.concat(value)}else{if(tag==="STRING"&&escape_quotes){escaped=value.substring(1,value.length-1).replace(/"/g,'\\"');this.token(tag,('"'+escaped+'"'))}else{this.token(tag,value)}}if(i:!?]+)([ \t]*)/;WHITESPACE=/^([ \t]+)/;COMMENT=/^(((\n?[ \t]*)?#[^\n]*)+)/;CODE=/^((-|=)>)/;MULTI_DENT=/^((\n([ \t]*))+)(\.)?/;LAST_DENTS=/\n([ \t]*)/g;LAST_DENT=/\n([ \t]*)/;ASSIGNMENT=/^(:|=)$/;REGEX_START=/^\/[^\/ ]/;REGEX_INTERPOLATION=/([^\\]\$[a-zA-Z_@]|[^\\]\$\{.*[^\\]\})/;REGEX_FLAGS=/^[imgy]{0,4}/;REGEX_ESCAPE=/\\[^\$]/g;JS_CLEANER=/(^`|`$)/g;MULTILINER=/\n/g;STRING_NEWLINES=/\n[ \t]*/g;COMMENT_CLEANER=/(^[ \t]*#|\n[ \t]*$)/mg;NO_NEWLINE=/^([+\*&|\/\-%=<>:!.\\][<>=&|]*|and|or|is|isnt|not|delete|typeof|instanceof)$/;HEREDOC_INDENT=/^[ \t]+/mg;NOT_REGEX=["NUMBER","REGEX","++","--","FALSE","NULL","TRUE"];CALLABLE=["IDENTIFIER","SUPER",")","]","}","STRING","@","THIS"];ACCESSORS=["PROPERTY_ACCESS","PROTOTYPE_ACCESS","SOAK_ACCESS","@"];LINE_BREAK=["INDENT","OUTDENT","TERMINATOR"];HALF_ASSIGNMENTS=["-","+","/","*","%","||","&&","?"];CONVERSIONS={and:"&&",or:"||",is:"==",isnt:"!=",not:"!"}})();var parser=(function(){var parser={trace:function trace(){},yy:{},symbols_:{Root:2,TERMINATOR:3,Expressions:4,Block:5,Expression:6,Value:7,Call:8,Curry:9,Code:10,Operation:11,Assign:12,If:13,Try:14,Throw:15,Return:16,While:17,For:18,Switch:19,Extends:20,Class:21,Splat:22,Existence:23,Comment:24,Extension:25,INDENT:26,OUTDENT:27,Identifier:28,IDENTIFIER:29,AlphaNumeric:30,NUMBER:31,STRING:32,Literal:33,JS:34,REGEX:35,BREAK:36,CONTINUE:37,TRUE:38,FALSE:39,YES:40,NO:41,ON:42,OFF:43,Assignable:44,ASSIGN:45,AssignObj:46,RETURN:47,COMMENT:48,"?":49,PARAM_START:50,ParamList:51,PARAM_END:52,FuncGlyph:53,"->":54,"=>":55,Param:56,",":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,SOAKED_INDEX_START:78,SOAKED_INDEX_END:79,"{":80,AssignList:81,"}":82,IndentedAssignList:83,CLASS:84,EXTENDS:85,ClassBody:86,ClassAssign:87,NEW:88,Super:89,"<-":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,EXTENSION:108,WhileSource:109,WHILE:110,WHEN:111,FOR:112,ForVariables:113,ForSource:114,IN:115,OF:116,BY:117,SWITCH:118,Whens:119,ELSE:120,When:121,LEADING_WHEN:122,IfStart:123,IF:124,ElsIf:125,IfBlock: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:162,"$accept":0,"$end":1},terminals_:{"3":"TERMINATOR","26":"INDENT","27":"OUTDENT","29":"IDENTIFIER","31":"NUMBER","32":"STRING","34":"JS","35":"REGEX","36":"BREAK","37":"CONTINUE","38":"TRUE","39":"FALSE","40":"YES","41":"NO","42":"ON","43":"OFF","45":"ASSIGN","47":"RETURN","48":"COMMENT","49":"?","50":"PARAM_START","52":"PARAM_END","54":"->","55":"=>","57":",","58":"PARAM","59":".","69":"NULL","70":"PROPERTY_ACCESS","71":"PROTOTYPE_ACCESS","72":"::","73":"SOAK_ACCESS","76":"INDEX_START","77":"INDEX_END","78":"SOAKED_INDEX_START","79":"SOAKED_INDEX_END","80":"{","82":"}","84":"CLASS","85":"EXTENDS","88":"NEW","90":"<-","92":"CALL_START","94":"CALL_END","95":"SUPER","96":"THIS","97":"@","98":"[","99":"]","101":"TRY","103":"FINALLY","104":"CATCH","105":"THROW","106":"(","107":")","108":"EXTENSION","110":"WHILE","111":"WHEN","112":"FOR","115":"IN","116":"OF","117":"BY","118":"SWITCH","120":"ELSE","122":"LEADING_WHEN","124":"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"},productions_:[0,[2,0],[2,1],[2,1],[2,2],[4,1],[4,3],[4,2],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[5,3],[5,2],[5,2],[28,1],[30,1],[30,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[12,3],[46,3],[46,3],[46,1],[16,2],[16,1],[24,1],[23,2],[10,5],[10,2],[53,1],[53,1],[51,0],[51,1],[51,3],[56,1],[56,4],[22,4],[60,1],[60,2],[60,2],[60,1],[44,1],[44,1],[44,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[61,2],[61,2],[61,1],[61,2],[61,1],[61,1],[74,3],[74,3],[65,3],[65,3],[65,4],[65,4],[81,0],[81,1],[81,3],[81,3],[81,4],[83,3],[83,4],[21,2],[21,4],[21,5],[21,7],[87,1],[87,3],[86,0],[86,1],[86,3],[8,1],[8,2],[8,1],[9,3],[20,3],[62,2],[62,2],[91,3],[91,4],[89,4],[89,5],[68,1],[68,1],[63,2],[67,6],[67,7],[75,6],[75,7],[64,3],[64,4],[93,0],[93,1],[93,2],[93,3],[93,3],[93,4],[93,4],[93,2],[93,3],[100,1],[100,3],[14,3],[14,4],[14,5],[102,3],[15,2],[66,3],[25,1],[109,2],[109,4],[17,2],[17,2],[18,4],[18,4],[113,1],[113,3],[114,2],[114,2],[114,4],[114,4],[114,4],[114,6],[114,6],[19,5],[19,7],[119,1],[119,2],[121,3],[121,4],[121,3],[123,3],[123,2],[126,1],[126,3],[125,4],[13,1],[13,3],[13,3],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3]],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.$=$$[$0-1+1-1];break;case 13:this.$=$$[$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-3+2-1];break;case 28:this.$=new Expressions();break;case 29:this.$=Expressions.wrap([$$[$0-2+2-1]]);break;case 30:this.$=new LiteralNode(yytext);break;case 31:this.$=new LiteralNode(yytext);break;case 32:this.$=new LiteralNode(yytext);break;case 33:this.$=$$[$0-1+1-1];break;case 34:this.$=new LiteralNode(yytext);break;case 35:this.$=new LiteralNode(yytext);break;case 36:this.$=new LiteralNode(yytext);break;case 37:this.$=new LiteralNode(yytext);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 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.$=$$[$0-1+1-1];break;case 48:this.$=new ReturnNode($$[$0-2+2-1]);break;case 49:this.$=new ReturnNode(new ValueNode(new LiteralNode("null")));break;case 50:this.$=new CommentNode(yytext);break;case 51:this.$=new ExistenceNode($$[$0-2+1-1]);break;case 52:this.$=new CodeNode($$[$0-5+2-1],$$[$0-5+5-1],$$[$0-5+4-1]);break;case 53:this.$=new CodeNode([],$$[$0-2+2-1],$$[$0-2+1-1]);break;case 54:this.$="func";break;case 55:this.$="boundfunc";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(yytext);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.$=new IndexNode($$[$0-3+2-1],"soak");break;case 83:this.$=new ObjectNode($$[$0-3+2-1]);break;case 84:this.$=new ObjectNode($$[$0-3+2-1]);break;case 85:this.$=new ObjectNode($$[$0-4+2-1]);break;case 86:this.$=new ObjectNode($$[$0-4+2-1]);break;case 87:this.$=[];break;case 88:this.$=[$$[$0-1+1-1]];break;case 89:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 90:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 91:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 92:this.$=$$[$0-3+2-1];break;case 93:this.$=$$[$0-4+2-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-2+2-1].new_instance();break;case 105:this.$=$$[$0-1+1-1];break;case 106:this.$=new CurryNode($$[$0-3+1-1],$$[$0-3+3-1]);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-3+2-1];break;case 111:this.$=$$[$0-4+2-1];break;case 112:this.$=new CallNode("super",$$[$0-4+3-1]);break;case 113:this.$=new CallNode("super",$$[$0-5+3-1]);break;case 114:this.$=new ValueNode(new LiteralNode("this"));break;case 115:this.$=new ValueNode(new LiteralNode("this"));break;case 116:this.$=new ValueNode(new LiteralNode("this"),[new AccessorNode($$[$0-2+2-1])]);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 RangeNode($$[$0-6+2-1],$$[$0-6+5-1]);break;case 120:this.$=new RangeNode($$[$0-7+2-1],$$[$0-7+6-1],true);break;case 121:this.$=new ArrayNode($$[$0-3+2-1]);break;case 122:this.$=new ArrayNode($$[$0-4+2-1]);break;case 123:this.$=[];break;case 124:this.$=[$$[$0-1+1-1]];break;case 125:this.$=[$$[$0-2+2-1]];break;case 126:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 127:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 128:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 129:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 130:this.$=$$[$0-2+1-1];break;case 131:this.$=$$[$0-3+1-1];break;case 132:this.$=$$[$0-1+1-1];break;case 133: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 134:this.$=new TryNode($$[$0-3+2-1],$$[$0-3+3-1][0],$$[$0-3+3-1][1]);break;case 135:this.$=new TryNode($$[$0-4+2-1],null,null,$$[$0-4+4-1]);break;case 136:this.$=new TryNode($$[$0-5+2-1],$$[$0-5+3-1][0],$$[$0-5+3-1][1],$$[$0-5+5-1]);break;case 137:this.$=[$$[$0-3+2-1],$$[$0-3+3-1]];break;case 138:this.$=new ThrowNode($$[$0-2+2-1]);break;case 139:this.$=new ParentheticalNode($$[$0-3+2-1]);break;case 140:this.$=yytext;break;case 141:this.$=new WhileNode($$[$0-2+2-1]);break;case 142:this.$=new WhileNode($$[$0-4+2-1],{filter:$$[$0-4+4-1]});break;case 143:this.$=$$[$0-2+1-1].add_body($$[$0-2+2-1]);break;case 144:this.$=$$[$0-2+2-1].add_body(Expressions.wrap([$$[$0-2+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]);break;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 147:this.$=[$$[$0-1+1-1]];break;case 148:this.$=[$$[$0-3+1-1],$$[$0-3+3-1]];break;case 149:this.$={source:$$[$0-2+2-1]};break;case 150:this.$={source:$$[$0-2+2-1],object:true};break;case 151:this.$={source:$$[$0-4+2-1],filter:$$[$0-4+4-1]};break;case 152:this.$={source:$$[$0-4+2-1],filter:$$[$0-4+4-1],object:true};break;case 153:this.$={source:$$[$0-4+2-1],step:$$[$0-4+4-1]};break;case 154:this.$={source:$$[$0-6+2-1],filter:$$[$0-6+4-1],step:$$[$0-6+6-1]};break;case 155:this.$={source:$$[$0-6+2-1],step:$$[$0-6+4-1],filter:$$[$0-6+6-1]};break;case 156:this.$=$$[$0-5+4-1].rewrite_condition($$[$0-5+2-1]);break;case 157:this.$=$$[$0-7+4-1].rewrite_condition($$[$0-7+2-1]).add_else($$[$0-7+6-1],true);break;case 158:this.$=$$[$0-1+1-1];break;case 159:this.$=$$[$0-2+1-1].push($$[$0-2+2-1]);break;case 160:this.$=new IfNode($$[$0-3+2-1],$$[$0-3+3-1],null,{statement:true});break;case 161:this.$=new IfNode($$[$0-4+2-1],$$[$0-4+3-1],null,{statement:true});break;case 162:this.$=(function(){$$[$0-3+3-1].comment=$$[$0-3+1-1];return $$[$0-3+3-1]}());break;case 163:this.$=new IfNode($$[$0-3+2-1],$$[$0-3+3-1]);break;case 164:this.$=$$[$0-2+1-1].add_else($$[$0-2+2-1]);break;case 165:this.$=$$[$0-1+1-1];break;case 166:this.$=$$[$0-3+1-1].add_else($$[$0-3+3-1]);break;case 167:this.$=(new IfNode($$[$0-4+3-1],$$[$0-4+4-1])).force_statement();break;case 168:this.$=$$[$0-1+1-1];break;case 169:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),null,{statement:true});break;case 170:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),null,{statement:true,invert:true});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("++",$$[$0-2+2-1]);break;case 178:this.$=new OpNode("delete",$$[$0-2+2-1]);break;case 179:this.$=new OpNode("typeof",$$[$0-2+2-1]);break;case 180:this.$=new OpNode("--",$$[$0-2+1-1],null,true);break;case 181:this.$=new OpNode("++",$$[$0-2+1-1],null,true);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("?=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 210:this.$=new OpNode("instanceof",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 211:this.$=new OpNode("in",$$[$0-3+1-1],$$[$0-3+3-1]);break}},table:[{"1":[2,1],"2":1,"3":[1,2],"4":3,"5":4,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,6],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[3]},{"1":[2,2],"24":86,"48":[1,55]},{"1":[2,3],"3":[1,87]},{"3":[1,88]},{"1":[2,5],"3":[2,5],"27":[2,5],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"4":126,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"27":[1,127],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,8],"3":[2,8],"26":[2,8],"27":[2,8],"49":[2,8],"57":[2,8],"59":[2,8],"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,8],"78":[1,139],"79":[2,8],"82":[2,8],"90":[1,128],"91":129,"92":[1,131],"94":[2,8],"99":[2,8],"107":[2,8],"110":[2,8],"111":[2,8],"112":[2,8],"115":[2,8],"117":[2,8],"124":[2,8],"127":[2,8],"130":[2,8],"131":[2,8],"133":[2,8],"134":[2,8],"137":[2,8],"138":[2,8],"139":[2,8],"140":[2,8],"141":[2,8],"142":[2,8],"143":[2,8],"144":[2,8],"145":[2,8],"146":[2,8],"147":[2,8],"148":[2,8],"149":[2,8],"150":[2,8],"151":[2,8],"152":[2,8],"153":[2,8],"154":[2,8],"155":[2,8],"156":[2,8],"157":[2,8],"158":[2,8],"159":[2,8],"160":[2,8],"161":[2,8],"162":[2,8]},{"1":[2,9],"3":[2,9],"26":[2,9],"27":[2,9],"49":[2,9],"57":[2,9],"59":[2,9],"77":[2,9],"79":[2,9],"82":[2,9],"94":[2,9],"99":[2,9],"107":[2,9],"110":[2,9],"111":[2,9],"112":[2,9],"115":[2,9],"117":[2,9],"124":[2,9],"127":[2,9],"130":[2,9],"131":[2,9],"133":[2,9],"134":[2,9],"137":[2,9],"138":[2,9],"139":[2,9],"140":[2,9],"141":[2,9],"142":[2,9],"143":[2,9],"144":[2,9],"145":[2,9],"146":[2,9],"147":[2,9],"148":[2,9],"149":[2,9],"150":[2,9],"151":[2,9],"152":[2,9],"153":[2,9],"154":[2,9],"155":[2,9],"156":[2,9],"157":[2,9],"158":[2,9],"159":[2,9],"160":[2,9],"161":[2,9],"162":[2,9]},{"1":[2,10],"3":[2,10],"26":[2,10],"27":[2,10],"49":[2,10],"57":[2,10],"59":[2,10],"77":[2,10],"79":[2,10],"82":[2,10],"94":[2,10],"99":[2,10],"107":[2,10],"110":[2,10],"111":[2,10],"112":[2,10],"115":[2,10],"117":[2,10],"124":[2,10],"127":[2,10],"130":[2,10],"131":[2,10],"133":[2,10],"134":[2,10],"137":[2,10],"138":[2,10],"139":[2,10],"140":[2,10],"141":[2,10],"142":[2,10],"143":[2,10],"144":[2,10],"145":[2,10],"146":[2,10],"147":[2,10],"148":[2,10],"149":[2,10],"150":[2,10],"151":[2,10],"152":[2,10],"153":[2,10],"154":[2,10],"155":[2,10],"156":[2,10],"157":[2,10],"158":[2,10],"159":[2,10],"160":[2,10],"161":[2,10],"162":[2,10]},{"1":[2,11],"3":[2,11],"26":[2,11],"27":[2,11],"49":[2,11],"57":[2,11],"59":[2,11],"77":[2,11],"79":[2,11],"82":[2,11],"94":[2,11],"99":[2,11],"107":[2,11],"110":[2,11],"111":[2,11],"112":[2,11],"115":[2,11],"117":[2,11],"124":[2,11],"127":[2,11],"130":[2,11],"131":[2,11],"133":[2,11],"134":[2,11],"137":[2,11],"138":[2,11],"139":[2,11],"140":[2,11],"141":[2,11],"142":[2,11],"143":[2,11],"144":[2,11],"145":[2,11],"146":[2,11],"147":[2,11],"148":[2,11],"149":[2,11],"150":[2,11],"151":[2,11],"152":[2,11],"153":[2,11],"154":[2,11],"155":[2,11],"156":[2,11],"157":[2,11],"158":[2,11],"159":[2,11],"160":[2,11],"161":[2,11],"162":[2,11]},{"1":[2,12],"3":[2,12],"26":[2,12],"27":[2,12],"49":[2,12],"57":[2,12],"59":[2,12],"77":[2,12],"79":[2,12],"82":[2,12],"94":[2,12],"99":[2,12],"107":[2,12],"110":[2,12],"111":[2,12],"112":[2,12],"115":[2,12],"117":[2,12],"124":[2,12],"127":[2,12],"130":[2,12],"131":[2,12],"133":[2,12],"134":[2,12],"137":[2,12],"138":[2,12],"139":[2,12],"140":[2,12],"141":[2,12],"142":[2,12],"143":[2,12],"144":[2,12],"145":[2,12],"146":[2,12],"147":[2,12],"148":[2,12],"149":[2,12],"150":[2,12],"151":[2,12],"152":[2,12],"153":[2,12],"154":[2,12],"155":[2,12],"156":[2,12],"157":[2,12],"158":[2,12],"159":[2,12],"160":[2,12],"161":[2,12],"162":[2,12]},{"1":[2,13],"3":[2,13],"26":[2,13],"27":[2,13],"49":[2,13],"57":[2,13],"59":[2,13],"77":[2,13],"79":[2,13],"82":[2,13],"94":[2,13],"99":[2,13],"107":[2,13],"110":[2,13],"111":[2,13],"112":[2,13],"115":[2,13],"117":[2,13],"124":[2,13],"127":[2,13],"130":[2,13],"131":[2,13],"133":[2,13],"134":[2,13],"137":[2,13],"138":[2,13],"139":[2,13],"140":[2,13],"141":[2,13],"142":[2,13],"143":[2,13],"144":[2,13],"145":[2,13],"146":[2,13],"147":[2,13],"148":[2,13],"149":[2,13],"150":[2,13],"151":[2,13],"152":[2,13],"153":[2,13],"154":[2,13],"155":[2,13],"156":[2,13],"157":[2,13],"158":[2,13],"159":[2,13],"160":[2,13],"161":[2,13],"162":[2,13]},{"1":[2,14],"3":[2,14],"26":[2,14],"27":[2,14],"49":[2,14],"57":[2,14],"59":[2,14],"77":[2,14],"79":[2,14],"82":[2,14],"94":[2,14],"99":[2,14],"107":[2,14],"110":[2,14],"111":[2,14],"112":[2,14],"115":[2,14],"117":[2,14],"124":[2,14],"127":[2,14],"130":[2,14],"131":[2,14],"133":[2,14],"134":[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],"162":[2,14]},{"1":[2,15],"3":[2,15],"26":[2,15],"27":[2,15],"49":[2,15],"57":[2,15],"59":[2,15],"77":[2,15],"79":[2,15],"82":[2,15],"94":[2,15],"99":[2,15],"107":[2,15],"110":[2,15],"111":[2,15],"112":[2,15],"115":[2,15],"117":[2,15],"124":[2,15],"127":[2,15],"130":[2,15],"131":[2,15],"133":[2,15],"134":[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],"162":[2,15]},{"1":[2,16],"3":[2,16],"26":[2,16],"27":[2,16],"49":[2,16],"57":[2,16],"59":[2,16],"77":[2,16],"79":[2,16],"82":[2,16],"94":[2,16],"99":[2,16],"107":[2,16],"110":[2,16],"111":[2,16],"112":[2,16],"115":[2,16],"117":[2,16],"124":[2,16],"127":[2,16],"130":[2,16],"131":[2,16],"133":[2,16],"134":[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],"162":[2,16]},{"1":[2,17],"3":[2,17],"26":[2,17],"27":[2,17],"49":[2,17],"57":[2,17],"59":[2,17],"77":[2,17],"79":[2,17],"82":[2,17],"94":[2,17],"99":[2,17],"107":[2,17],"110":[2,17],"111":[2,17],"112":[2,17],"115":[2,17],"117":[2,17],"124":[2,17],"127":[2,17],"130":[2,17],"131":[2,17],"133":[2,17],"134":[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],"162":[2,17]},{"1":[2,18],"3":[2,18],"26":[2,18],"27":[2,18],"49":[2,18],"57":[2,18],"59":[2,18],"77":[2,18],"79":[2,18],"82":[2,18],"94":[2,18],"99":[2,18],"107":[2,18],"110":[2,18],"111":[2,18],"112":[2,18],"115":[2,18],"117":[2,18],"124":[2,18],"127":[2,18],"130":[2,18],"131":[2,18],"133":[2,18],"134":[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],"162":[2,18]},{"1":[2,19],"3":[2,19],"26":[2,19],"27":[2,19],"49":[2,19],"57":[2,19],"59":[2,19],"77":[2,19],"79":[2,19],"82":[2,19],"94":[2,19],"99":[2,19],"107":[2,19],"110":[2,19],"111":[2,19],"112":[2,19],"115":[2,19],"117":[2,19],"124":[2,19],"127":[2,19],"130":[2,19],"131":[2,19],"133":[2,19],"134":[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],"162":[2,19]},{"1":[2,20],"3":[2,20],"26":[2,20],"27":[2,20],"49":[2,20],"57":[2,20],"59":[2,20],"77":[2,20],"79":[2,20],"82":[2,20],"94":[2,20],"99":[2,20],"107":[2,20],"110":[2,20],"111":[2,20],"112":[2,20],"115":[2,20],"117":[2,20],"124":[2,20],"127":[2,20],"130":[2,20],"131":[2,20],"133":[2,20],"134":[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],"162":[2,20]},{"1":[2,21],"3":[2,21],"26":[2,21],"27":[2,21],"49":[2,21],"57":[2,21],"59":[2,21],"77":[2,21],"79":[2,21],"82":[2,21],"94":[2,21],"99":[2,21],"107":[2,21],"110":[2,21],"111":[2,21],"112":[2,21],"115":[2,21],"117":[2,21],"124":[2,21],"127":[2,21],"130":[2,21],"131":[2,21],"133":[2,21],"134":[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],"162":[2,21]},{"1":[2,22],"3":[2,22],"26":[2,22],"27":[2,22],"49":[2,22],"57":[2,22],"59":[2,22],"77":[2,22],"79":[2,22],"82":[2,22],"94":[2,22],"99":[2,22],"107":[2,22],"110":[2,22],"111":[2,22],"112":[2,22],"115":[2,22],"117":[2,22],"124":[2,22],"127":[2,22],"130":[2,22],"131":[2,22],"133":[2,22],"134":[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],"162":[2,22]},{"1":[2,23],"3":[2,23],"26":[2,23],"27":[2,23],"49":[2,23],"57":[2,23],"59":[2,23],"77":[2,23],"79":[2,23],"82":[2,23],"94":[2,23],"99":[2,23],"107":[2,23],"110":[2,23],"111":[2,23],"112":[2,23],"115":[2,23],"117":[2,23],"124":[2,23],"127":[2,23],"130":[2,23],"131":[2,23],"133":[2,23],"134":[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],"162":[2,23]},{"1":[2,24],"3":[2,24],"26":[2,24],"27":[2,24],"49":[2,24],"57":[2,24],"59":[2,24],"77":[2,24],"79":[2,24],"82":[2,24],"94":[2,24],"99":[2,24],"107":[2,24],"110":[2,24],"111":[2,24],"112":[2,24],"115":[2,24],"117":[2,24],"124":[2,24],"127":[2,24],"130":[2,24],"131":[2,24],"133":[2,24],"134":[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],"162":[2,24]},{"1":[2,25],"3":[2,25],"26":[2,25],"27":[2,25],"49":[2,25],"57":[2,25],"59":[2,25],"77":[2,25],"79":[2,25],"82":[2,25],"94":[2,25],"99":[2,25],"107":[2,25],"110":[2,25],"111":[2,25],"112":[2,25],"115":[2,25],"117":[2,25],"124":[2,25],"127":[2,25],"130":[2,25],"131":[2,25],"133":[2,25],"134":[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],"162":[2,25]},{"1":[2,26],"3":[2,26],"26":[2,26],"27":[2,26],"49":[2,26],"57":[2,26],"59":[2,26],"77":[2,26],"79":[2,26],"82":[2,26],"94":[2,26],"99":[2,26],"107":[2,26],"110":[2,26],"111":[2,26],"112":[2,26],"115":[2,26],"117":[2,26],"124":[2,26],"127":[2,26],"130":[2,26],"131":[2,26],"133":[2,26],"134":[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],"162":[2,26]},{"1":[2,69],"3":[2,69],"26":[2,69],"27":[2,69],"45":[1,140],"49":[2,69],"57":[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],"94":[2,69],"99":[2,69],"107":[2,69],"110":[2,69],"111":[2,69],"112":[2,69],"115":[2,69],"117":[2,69],"124":[2,69],"127":[2,69],"130":[2,69],"131":[2,69],"133":[2,69],"134":[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],"162":[2,69]},{"1":[2,70],"3":[2,70],"26":[2,70],"27":[2,70],"49":[2,70],"57":[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],"94":[2,70],"99":[2,70],"107":[2,70],"110":[2,70],"111":[2,70],"112":[2,70],"115":[2,70],"117":[2,70],"124":[2,70],"127":[2,70],"130":[2,70],"131":[2,70],"133":[2,70],"134":[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],"162":[2,70]},{"1":[2,71],"3":[2,71],"26":[2,71],"27":[2,71],"49":[2,71],"57":[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],"94":[2,71],"99":[2,71],"107":[2,71],"110":[2,71],"111":[2,71],"112":[2,71],"115":[2,71],"117":[2,71],"124":[2,71],"127":[2,71],"130":[2,71],"131":[2,71],"133":[2,71],"134":[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],"162":[2,71]},{"1":[2,72],"3":[2,72],"26":[2,72],"27":[2,72],"49":[2,72],"57":[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],"94":[2,72],"99":[2,72],"107":[2,72],"110":[2,72],"111":[2,72],"112":[2,72],"115":[2,72],"117":[2,72],"124":[2,72],"127":[2,72],"130":[2,72],"131":[2,72],"133":[2,72],"134":[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],"162":[2,72]},{"1":[2,73],"3":[2,73],"26":[2,73],"27":[2,73],"49":[2,73],"57":[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],"94":[2,73],"99":[2,73],"107":[2,73],"110":[2,73],"111":[2,73],"112":[2,73],"115":[2,73],"117":[2,73],"124":[2,73],"127":[2,73],"130":[2,73],"131":[2,73],"133":[2,73],"134":[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],"162":[2,73]},{"1":[2,74],"3":[2,74],"26":[2,74],"27":[2,74],"49":[2,74],"57":[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],"94":[2,74],"99":[2,74],"107":[2,74],"110":[2,74],"111":[2,74],"112":[2,74],"115":[2,74],"117":[2,74],"124":[2,74],"127":[2,74],"130":[2,74],"131":[2,74],"133":[2,74],"134":[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],"162":[2,74]},{"1":[2,103],"3":[2,103],"26":[2,103],"27":[2,103],"49":[2,103],"57":[2,103],"59":[2,103],"61":142,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,103],"78":[1,139],"79":[2,103],"82":[2,103],"91":141,"92":[1,131],"94":[2,103],"99":[2,103],"107":[2,103],"110":[2,103],"111":[2,103],"112":[2,103],"115":[2,103],"117":[2,103],"124":[2,103],"127":[2,103],"130":[2,103],"131":[2,103],"133":[2,103],"134":[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],"162":[2,103]},{"7":144,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":146,"62":143,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,105],"3":[2,105],"26":[2,105],"27":[2,105],"49":[2,105],"57":[2,105],"59":[2,105],"77":[2,105],"79":[2,105],"82":[2,105],"94":[2,105],"99":[2,105],"107":[2,105],"110":[2,105],"111":[2,105],"112":[2,105],"115":[2,105],"117":[2,105],"124":[2,105],"127":[2,105],"130":[2,105],"131":[2,105],"133":[2,105],"134":[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],"162":[2,105]},{"51":147,"52":[2,56],"56":148,"57":[2,56],"58":[1,149]},{"3":[1,151],"5":150,"26":[1,6]},{"6":152,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":153,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":154,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":155,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":156,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":157,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":158,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":159,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":160,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,168],"3":[2,168],"26":[2,168],"27":[2,168],"49":[2,168],"57":[2,168],"59":[2,168],"77":[2,168],"79":[2,168],"82":[2,168],"94":[2,168],"99":[2,168],"107":[2,168],"110":[2,168],"111":[2,168],"112":[2,168],"115":[2,168],"117":[2,168],"124":[2,168],"127":[2,168],"130":[2,168],"131":[2,168],"133":[2,168],"134":[2,168],"137":[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]},{"3":[1,151],"5":161,"26":[1,6]},{"6":162,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,49],"3":[2,49],"6":163,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[2,49],"27":[2,49],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,49],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,49],"59":[2,49],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"77":[2,49],"79":[2,49],"80":[1,81],"82":[2,49],"84":[1,54],"88":[1,33],"89":34,"94":[2,49],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,49],"101":[1,47],"105":[1,48],"106":[1,70],"107":[2,49],"108":[1,56],"109":50,"110":[2,49],"111":[2,49],"112":[1,51],"115":[2,49],"117":[2,49],"118":[1,52],"123":77,"124":[2,49],"126":46,"127":[2,49],"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45],"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],"162":[2,49]},{"3":[1,151],"5":164,"26":[1,6]},{"28":166,"29":[1,85],"113":165},{"6":167,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,66],"3":[2,66],"26":[2,66],"27":[2,66],"45":[2,66],"49":[2,66],"57":[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],"85":[1,168],"90":[2,66],"92":[2,66],"94":[2,66],"99":[2,66],"107":[2,66],"110":[2,66],"111":[2,66],"112":[2,66],"115":[2,66],"117":[2,66],"124":[2,66],"127":[2,66],"130":[2,66],"131":[2,66],"133":[2,66],"134":[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],"162":[2,66]},{"7":144,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":169,"62":170,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,50],"3":[2,50],"26":[2,50],"27":[2,50],"48":[2,50],"49":[2,50],"57":[2,50],"59":[2,50],"77":[2,50],"79":[2,50],"82":[2,50],"94":[2,50],"99":[2,50],"103":[2,50],"104":[2,50],"107":[2,50],"110":[2,50],"111":[2,50],"112":[2,50],"115":[2,50],"117":[2,50],"120":[2,50],"122":[2,50],"124":[2,50],"127":[2,50],"130":[2,50],"131":[2,50],"133":[2,50],"134":[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],"162":[2,50]},{"1":[2,140],"3":[2,140],"26":[2,140],"27":[2,140],"49":[2,140],"57":[2,140],"59":[2,140],"77":[2,140],"79":[2,140],"82":[2,140],"94":[2,140],"99":[2,140],"107":[2,140],"110":[2,140],"111":[2,140],"112":[2,140],"115":[2,140],"117":[2,140],"124":[2,140],"127":[2,140],"130":[2,140],"131":[2,140],"133":[2,140],"134":[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],"162":[2,140]},{"1":[2,67],"3":[2,67],"26":[2,67],"27":[2,67],"45":[2,67],"49":[2,67],"57":[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],"94":[2,67],"99":[2,67],"107":[2,67],"110":[2,67],"111":[2,67],"112":[2,67],"115":[2,67],"117":[2,67],"124":[2,67],"127":[2,67],"130":[2,67],"131":[2,67],"133":[2,67],"134":[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],"162":[2,67]},{"1":[2,68],"3":[2,68],"26":[2,68],"27":[2,68],"45":[2,68],"49":[2,68],"57":[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],"94":[2,68],"99":[2,68],"107":[2,68],"110":[2,68],"111":[2,68],"112":[2,68],"115":[2,68],"117":[2,68],"124":[2,68],"127":[2,68],"130":[2,68],"131":[2,68],"133":[2,68],"134":[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],"162":[2,68]},{"1":[2,33],"3":[2,33],"26":[2,33],"27":[2,33],"49":[2,33],"57":[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],"94":[2,33],"99":[2,33],"107":[2,33],"110":[2,33],"111":[2,33],"112":[2,33],"115":[2,33],"117":[2,33],"124":[2,33],"127":[2,33],"130":[2,33],"131":[2,33],"133":[2,33],"134":[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],"162":[2,33]},{"1":[2,34],"3":[2,34],"26":[2,34],"27":[2,34],"49":[2,34],"57":[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],"94":[2,34],"99":[2,34],"107":[2,34],"110":[2,34],"111":[2,34],"112":[2,34],"115":[2,34],"117":[2,34],"124":[2,34],"127":[2,34],"130":[2,34],"131":[2,34],"133":[2,34],"134":[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],"162":[2,34]},{"1":[2,35],"3":[2,35],"26":[2,35],"27":[2,35],"49":[2,35],"57":[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],"94":[2,35],"99":[2,35],"107":[2,35],"110":[2,35],"111":[2,35],"112":[2,35],"115":[2,35],"117":[2,35],"124":[2,35],"127":[2,35],"130":[2,35],"131":[2,35],"133":[2,35],"134":[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],"162":[2,35]},{"1":[2,36],"3":[2,36],"26":[2,36],"27":[2,36],"49":[2,36],"57":[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],"94":[2,36],"99":[2,36],"107":[2,36],"110":[2,36],"111":[2,36],"112":[2,36],"115":[2,36],"117":[2,36],"124":[2,36],"127":[2,36],"130":[2,36],"131":[2,36],"133":[2,36],"134":[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],"162":[2,36]},{"1":[2,37],"3":[2,37],"26":[2,37],"27":[2,37],"49":[2,37],"57":[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],"94":[2,37],"99":[2,37],"107":[2,37],"110":[2,37],"111":[2,37],"112":[2,37],"115":[2,37],"117":[2,37],"124":[2,37],"127":[2,37],"130":[2,37],"131":[2,37],"133":[2,37],"134":[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],"162":[2,37]},{"1":[2,38],"3":[2,38],"26":[2,38],"27":[2,38],"49":[2,38],"57":[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],"94":[2,38],"99":[2,38],"107":[2,38],"110":[2,38],"111":[2,38],"112":[2,38],"115":[2,38],"117":[2,38],"124":[2,38],"127":[2,38],"130":[2,38],"131":[2,38],"133":[2,38],"134":[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],"162":[2,38]},{"1":[2,39],"3":[2,39],"26":[2,39],"27":[2,39],"49":[2,39],"57":[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],"94":[2,39],"99":[2,39],"107":[2,39],"110":[2,39],"111":[2,39],"112":[2,39],"115":[2,39],"117":[2,39],"124":[2,39],"127":[2,39],"130":[2,39],"131":[2,39],"133":[2,39],"134":[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],"162":[2,39]},{"1":[2,40],"3":[2,40],"26":[2,40],"27":[2,40],"49":[2,40],"57":[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],"94":[2,40],"99":[2,40],"107":[2,40],"110":[2,40],"111":[2,40],"112":[2,40],"115":[2,40],"117":[2,40],"124":[2,40],"127":[2,40],"130":[2,40],"131":[2,40],"133":[2,40],"134":[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],"162":[2,40]},{"1":[2,41],"3":[2,41],"26":[2,41],"27":[2,41],"49":[2,41],"57":[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],"94":[2,41],"99":[2,41],"107":[2,41],"110":[2,41],"111":[2,41],"112":[2,41],"115":[2,41],"117":[2,41],"124":[2,41],"127":[2,41],"130":[2,41],"131":[2,41],"133":[2,41],"134":[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],"162":[2,41]},{"1":[2,42],"3":[2,42],"26":[2,42],"27":[2,42],"49":[2,42],"57":[2,42],"59":[2,42],"70":[2,42],"71":[2,42],"72":[2,42],"73":[2,42],"76":[2,42],"77":[2,42],"78":[2,42],"79":[2,42],"82":[2,42],"90":[2,42],"92":[2,42],"94":[2,42],"99":[2,42],"107":[2,42],"110":[2,42],"111":[2,42],"112":[2,42],"115":[2,42],"117":[2,42],"124":[2,42],"127":[2,42],"130":[2,42],"131":[2,42],"133":[2,42],"134":[2,42],"137":[2,42],"138":[2,42],"139":[2,42],"140":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"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]},{"1":[2,43],"3":[2,43],"26":[2,43],"27":[2,43],"49":[2,43],"57":[2,43],"59":[2,43],"70":[2,43],"71":[2,43],"72":[2,43],"73":[2,43],"76":[2,43],"77":[2,43],"78":[2,43],"79":[2,43],"82":[2,43],"90":[2,43],"92":[2,43],"94":[2,43],"99":[2,43],"107":[2,43],"110":[2,43],"111":[2,43],"112":[2,43],"115":[2,43],"117":[2,43],"124":[2,43],"127":[2,43],"130":[2,43],"131":[2,43],"133":[2,43],"134":[2,43],"137":[2,43],"138":[2,43],"139":[2,43],"140":[2,43],"141":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43],"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]},{"6":171,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[2,123],"6":172,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,174],"27":[2,123],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,123],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"93":173,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,123],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,114],"3":[2,114],"26":[2,114],"27":[2,114],"49":[2,114],"57":[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],"94":[2,114],"99":[2,114],"107":[2,114],"110":[2,114],"111":[2,114],"112":[2,114],"115":[2,114],"117":[2,114],"124":[2,114],"127":[2,114],"130":[2,114],"131":[2,114],"133":[2,114],"134":[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],"162":[2,114]},{"1":[2,115],"3":[2,115],"26":[2,115],"27":[2,115],"28":175,"29":[1,85],"49":[2,115],"57":[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],"94":[2,115],"99":[2,115],"107":[2,115],"110":[2,115],"111":[2,115],"112":[2,115],"115":[2,115],"117":[2,115],"124":[2,115],"127":[2,115],"130":[2,115],"131":[2,115],"133":[2,115],"134":[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],"162":[2,115]},{"92":[1,176]},{"3":[2,54],"26":[2,54]},{"3":[2,55],"26":[2,55]},{"1":[2,165],"3":[2,165],"26":[2,165],"27":[2,165],"49":[2,165],"57":[2,165],"59":[2,165],"77":[2,165],"79":[2,165],"82":[2,165],"94":[2,165],"99":[2,165],"107":[2,165],"110":[2,165],"111":[2,165],"112":[2,165],"115":[2,165],"117":[2,165],"120":[1,177],"124":[2,165],"125":178,"127":[2,165],"130":[2,165],"131":[2,165],"133":[2,165],"134":[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],"162":[2,165]},{"6":179,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,62],"3":[2,62],"26":[2,62],"27":[2,62],"45":[2,62],"49":[2,62],"57":[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],"85":[2,62],"90":[2,62],"92":[2,62],"94":[2,62],"99":[2,62],"107":[2,62],"110":[2,62],"111":[2,62],"112":[2,62],"115":[2,62],"117":[2,62],"124":[2,62],"127":[2,62],"130":[2,62],"131":[2,62],"133":[2,62],"134":[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],"162":[2,62]},{"1":[2,65],"3":[2,65],"26":[2,65],"27":[2,65],"45":[2,65],"49":[2,65],"57":[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],"85":[2,65],"90":[2,65],"92":[2,65],"94":[2,65],"99":[2,65],"107":[2,65],"110":[2,65],"111":[2,65],"112":[2,65],"115":[2,65],"117":[2,65],"124":[2,65],"127":[2,65],"130":[2,65],"131":[2,65],"133":[2,65],"134":[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],"162":[2,65]},{"3":[2,87],"24":186,"26":[1,183],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":182,"48":[1,55],"57":[2,87],"81":180,"82":[2,87],"83":181},{"1":[2,31],"3":[2,31],"26":[2,31],"27":[2,31],"45":[2,31],"49":[2,31],"57":[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],"94":[2,31],"99":[2,31],"107":[2,31],"110":[2,31],"111":[2,31],"112":[2,31],"115":[2,31],"117":[2,31],"124":[2,31],"127":[2,31],"130":[2,31],"131":[2,31],"133":[2,31],"134":[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],"162":[2,31]},{"1":[2,32],"3":[2,32],"26":[2,32],"27":[2,32],"45":[2,32],"49":[2,32],"57":[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],"94":[2,32],"99":[2,32],"107":[2,32],"110":[2,32],"111":[2,32],"112":[2,32],"115":[2,32],"117":[2,32],"124":[2,32],"127":[2,32],"130":[2,32],"131":[2,32],"133":[2,32],"134":[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],"162":[2,32]},{"6":187,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,30],"3":[2,30],"26":[2,30],"27":[2,30],"45":[2,30],"49":[2,30],"57":[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],"85":[2,30],"90":[2,30],"92":[2,30],"94":[2,30],"99":[2,30],"107":[2,30],"110":[2,30],"111":[2,30],"112":[2,30],"115":[2,30],"116":[2,30],"117":[2,30],"124":[2,30],"127":[2,30],"130":[2,30],"131":[2,30],"133":[2,30],"134":[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],"162":[2,30]},{"1":[2,29],"3":[2,29],"26":[2,29],"27":[2,29],"48":[2,29],"49":[2,29],"57":[2,29],"59":[2,29],"77":[2,29],"79":[2,29],"82":[2,29],"94":[2,29],"99":[2,29],"103":[2,29],"104":[2,29],"107":[2,29],"110":[2,29],"111":[2,29],"112":[2,29],"115":[2,29],"117":[2,29],"120":[2,29],"122":[2,29],"124":[2,29],"127":[2,29],"130":[2,29],"131":[2,29],"133":[2,29],"134":[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],"162":[2,29]},{"1":[2,7],"3":[2,7],"6":188,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"27":[2,7],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,4]},{"1":[2,180],"3":[2,180],"26":[2,180],"27":[2,180],"49":[2,180],"57":[2,180],"59":[2,180],"77":[2,180],"79":[2,180],"82":[2,180],"94":[2,180],"99":[2,180],"107":[2,180],"110":[2,180],"111":[2,180],"112":[2,180],"115":[2,180],"117":[2,180],"124":[2,180],"127":[2,180],"130":[2,180],"131":[2,180],"133":[2,180],"134":[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],"162":[2,180]},{"1":[2,181],"3":[2,181],"26":[2,181],"27":[2,181],"49":[2,181],"57":[2,181],"59":[2,181],"77":[2,181],"79":[2,181],"82":[2,181],"94":[2,181],"99":[2,181],"107":[2,181],"110":[2,181],"111":[2,181],"112":[2,181],"115":[2,181],"117":[2,181],"124":[2,181],"127":[2,181],"130":[2,181],"131":[2,181],"133":[2,181],"134":[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],"162":[2,181]},{"6":189,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":190,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":191,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":192,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":193,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":194,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":195,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":196,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":197,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":198,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":199,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":200,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":201,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":202,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":203,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":204,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":205,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":206,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":207,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,51],"3":[2,51],"6":208,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[2,51],"27":[2,51],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,51],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,51],"59":[2,51],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"77":[2,51],"79":[2,51],"80":[1,81],"82":[2,51],"84":[1,54],"88":[1,33],"89":34,"94":[2,51],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,51],"101":[1,47],"105":[1,48],"106":[1,70],"107":[2,51],"108":[1,56],"109":50,"110":[2,51],"111":[2,51],"112":[2,51],"115":[2,51],"117":[2,51],"118":[1,52],"123":77,"124":[2,51],"126":46,"127":[2,51],"128":[1,37],"129":[1,38],"130":[2,51],"131":[2,51],"132":[1,41],"133":[2,51],"134":[2,51],"135":[1,44],"136":[1,45],"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],"162":[2,51]},{"6":209,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":210,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":211,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":212,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":213,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":214,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":215,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":216,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":217,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":218,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":219,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":220,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,144],"3":[2,144],"26":[2,144],"27":[2,144],"49":[2,144],"57":[2,144],"59":[2,144],"77":[2,144],"79":[2,144],"82":[2,144],"94":[2,144],"99":[2,144],"107":[2,144],"110":[2,144],"111":[2,144],"112":[2,144],"115":[2,144],"117":[2,144],"124":[2,144],"127":[2,144],"130":[2,144],"131":[2,144],"133":[2,144],"134":[2,144],"137":[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]},{"28":166,"29":[1,85],"113":221},{"59":[1,222]},{"3":[1,87],"27":[1,223]},{"1":[2,28],"3":[2,28],"26":[2,28],"27":[2,28],"48":[2,28],"49":[2,28],"57":[2,28],"59":[2,28],"77":[2,28],"79":[2,28],"82":[2,28],"94":[2,28],"99":[2,28],"103":[2,28],"104":[2,28],"107":[2,28],"110":[2,28],"111":[2,28],"112":[2,28],"115":[2,28],"117":[2,28],"120":[2,28],"122":[2,28],"124":[2,28],"127":[2,28],"130":[2,28],"131":[2,28],"133":[2,28],"134":[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],"162":[2,28]},{"91":224,"92":[1,131]},{"1":[2,108],"3":[2,108],"26":[2,108],"27":[2,108],"49":[2,108],"57":[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],"92":[2,108],"94":[2,108],"99":[2,108],"107":[2,108],"110":[2,108],"111":[2,108],"112":[2,108],"115":[2,108],"117":[2,108],"124":[2,108],"127":[2,108],"130":[2,108],"131":[2,108],"133":[2,108],"134":[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],"162":[2,108]},{"1":[2,63],"3":[2,63],"26":[2,63],"27":[2,63],"45":[2,63],"49":[2,63],"57":[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],"85":[2,63],"90":[2,63],"92":[2,63],"94":[2,63],"99":[2,63],"107":[2,63],"110":[2,63],"111":[2,63],"112":[2,63],"115":[2,63],"117":[2,63],"124":[2,63],"127":[2,63],"130":[2,63],"131":[2,63],"133":[2,63],"134":[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],"162":[2,63]},{"3":[2,123],"6":226,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,174],"27":[2,123],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,123],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"93":225,"94":[2,123],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"28":227,"29":[1,85]},{"28":228,"29":[1,85]},{"1":[2,77],"3":[2,77],"26":[2,77],"27":[2,77],"45":[2,77],"49":[2,77],"57":[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],"85":[2,77],"90":[2,77],"92":[2,77],"94":[2,77],"99":[2,77],"107":[2,77],"110":[2,77],"111":[2,77],"112":[2,77],"115":[2,77],"117":[2,77],"124":[2,77],"127":[2,77],"130":[2,77],"131":[2,77],"133":[2,77],"134":[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],"162":[2,77]},{"28":229,"29":[1,85]},{"1":[2,79],"3":[2,79],"26":[2,79],"27":[2,79],"45":[2,79],"49":[2,79],"57":[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],"85":[2,79],"90":[2,79],"92":[2,79],"94":[2,79],"99":[2,79],"107":[2,79],"110":[2,79],"111":[2,79],"112":[2,79],"115":[2,79],"117":[2,79],"124":[2,79],"127":[2,79],"130":[2,79],"131":[2,79],"133":[2,79],"134":[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],"162":[2,79]},{"1":[2,80],"3":[2,80],"26":[2,80],"27":[2,80],"45":[2,80],"49":[2,80],"57":[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],"85":[2,80],"90":[2,80],"92":[2,80],"94":[2,80],"99":[2,80],"107":[2,80],"110":[2,80],"111":[2,80],"112":[2,80],"115":[2,80],"117":[2,80],"124":[2,80],"127":[2,80],"130":[2,80],"131":[2,80],"133":[2,80],"134":[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],"162":[2,80]},{"6":230,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":231,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":232,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,109],"3":[2,109],"26":[2,109],"27":[2,109],"49":[2,109],"57":[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],"92":[2,109],"94":[2,109],"99":[2,109],"107":[2,109],"110":[2,109],"111":[2,109],"112":[2,109],"115":[2,109],"117":[2,109],"124":[2,109],"127":[2,109],"130":[2,109],"131":[2,109],"133":[2,109],"134":[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],"162":[2,109]},{"1":[2,64],"3":[2,64],"26":[2,64],"27":[2,64],"45":[2,64],"49":[2,64],"57":[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],"85":[2,64],"90":[2,64],"92":[2,64],"94":[2,64],"99":[2,64],"107":[2,64],"110":[2,64],"111":[2,64],"112":[2,64],"115":[2,64],"117":[2,64],"124":[2,64],"127":[2,64],"130":[2,64],"131":[2,64],"133":[2,64],"134":[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],"162":[2,64]},{"1":[2,104],"3":[2,104],"26":[2,104],"27":[2,104],"49":[2,104],"57":[2,104],"59":[2,104],"61":142,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,104],"78":[1,139],"79":[2,104],"82":[2,104],"91":141,"92":[1,131],"94":[2,104],"99":[2,104],"107":[2,104],"110":[2,104],"111":[2,104],"112":[2,104],"115":[2,104],"117":[2,104],"124":[2,104],"127":[2,104],"130":[2,104],"131":[2,104],"133":[2,104],"134":[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],"162":[2,104]},{"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"78":[1,139],"91":129,"92":[1,131]},{"1":[2,69],"3":[2,69],"26":[2,69],"27":[2,69],"49":[2,69],"57":[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],"92":[2,69],"94":[2,69],"99":[2,69],"107":[2,69],"110":[2,69],"111":[2,69],"112":[2,69],"115":[2,69],"117":[2,69],"124":[2,69],"127":[2,69],"130":[2,69],"131":[2,69],"133":[2,69],"134":[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],"162":[2,69]},{"1":[2,66],"3":[2,66],"26":[2,66],"27":[2,66],"49":[2,66],"57":[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],"92":[2,66],"94":[2,66],"99":[2,66],"107":[2,66],"110":[2,66],"111":[2,66],"112":[2,66],"115":[2,66],"117":[2,66],"124":[2,66],"127":[2,66],"130":[2,66],"131":[2,66],"133":[2,66],"134":[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],"162":[2,66]},{"52":[1,233],"57":[1,234]},{"52":[2,57],"57":[2,57],"59":[1,235]},{"52":[2,59],"57":[2,59],"59":[2,59]},{"1":[2,53],"3":[2,53],"26":[2,53],"27":[2,53],"49":[2,53],"57":[2,53],"59":[2,53],"77":[2,53],"79":[2,53],"82":[2,53],"94":[2,53],"99":[2,53],"107":[2,53],"110":[2,53],"111":[2,53],"112":[2,53],"115":[2,53],"117":[2,53],"124":[2,53],"127":[2,53],"130":[2,53],"131":[2,53],"133":[2,53],"134":[2,53],"137":[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]},{"24":86,"48":[1,55]},{"1":[2,171],"3":[2,171],"26":[2,171],"27":[2,171],"49":[1,110],"57":[2,171],"59":[2,171],"77":[2,171],"79":[2,171],"82":[2,171],"94":[2,171],"99":[2,171],"107":[2,171],"109":123,"110":[2,171],"111":[2,171],"112":[2,171],"115":[2,171],"117":[2,171],"124":[2,171],"127":[2,171],"130":[2,171],"131":[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],"162":[2,171]},{"1":[2,172],"3":[2,172],"26":[2,172],"27":[2,172],"49":[1,110],"57":[2,172],"59":[2,172],"77":[2,172],"79":[2,172],"82":[2,172],"94":[2,172],"99":[2,172],"107":[2,172],"109":123,"110":[2,172],"111":[2,172],"112":[2,172],"115":[2,172],"117":[2,172],"124":[2,172],"127":[2,172],"130":[2,172],"131":[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],"162":[2,172]},{"1":[2,173],"3":[2,173],"26":[2,173],"27":[2,173],"49":[1,110],"57":[2,173],"59":[2,173],"77":[2,173],"79":[2,173],"82":[2,173],"94":[2,173],"99":[2,173],"107":[2,173],"109":123,"110":[2,173],"111":[2,173],"112":[2,173],"115":[2,173],"117":[2,173],"124":[2,173],"127":[2,173],"130":[2,173],"131":[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],"162":[2,173]},{"1":[2,174],"3":[2,174],"26":[2,174],"27":[2,174],"49":[1,110],"57":[2,174],"59":[2,174],"77":[2,174],"79":[2,174],"82":[2,174],"94":[2,174],"99":[2,174],"107":[2,174],"109":123,"110":[2,174],"111":[2,174],"112":[2,174],"115":[2,174],"117":[2,174],"124":[2,174],"127":[2,174],"130":[2,174],"131":[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],"162":[2,174]},{"1":[2,175],"3":[2,175],"26":[2,175],"27":[2,175],"49":[1,110],"57":[2,175],"59":[2,175],"77":[2,175],"79":[2,175],"82":[2,175],"94":[2,175],"99":[2,175],"107":[2,175],"109":123,"110":[2,175],"111":[2,175],"112":[2,175],"115":[2,175],"117":[2,175],"124":[2,175],"127":[2,175],"130":[2,175],"131":[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],"162":[2,175]},{"1":[2,176],"3":[2,176],"26":[2,176],"27":[2,176],"49":[1,110],"57":[2,176],"59":[2,176],"77":[2,176],"79":[2,176],"82":[2,176],"94":[2,176],"99":[2,176],"107":[2,176],"109":123,"110":[2,176],"111":[2,176],"112":[2,176],"115":[2,176],"117":[2,176],"124":[2,176],"127":[2,176],"130":[2,176],"131":[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],"162":[2,176]},{"1":[2,177],"3":[2,177],"26":[2,177],"27":[2,177],"49":[1,110],"57":[2,177],"59":[2,177],"77":[2,177],"79":[2,177],"82":[2,177],"94":[2,177],"99":[2,177],"107":[2,177],"109":123,"110":[2,177],"111":[2,177],"112":[2,177],"115":[2,177],"117":[2,177],"124":[2,177],"127":[2,177],"130":[2,177],"131":[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],"162":[2,177]},{"1":[2,178],"3":[2,178],"26":[2,178],"27":[2,178],"49":[1,110],"57":[2,178],"59":[2,178],"77":[2,178],"79":[2,178],"82":[2,178],"94":[2,178],"99":[2,178],"107":[2,178],"109":123,"110":[2,178],"111":[2,178],"112":[2,178],"115":[2,178],"117":[2,178],"124":[2,178],"127":[2,178],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[1,119]},{"1":[2,179],"3":[2,179],"26":[2,179],"27":[2,179],"49":[1,110],"57":[2,179],"59":[2,179],"77":[2,179],"79":[2,179],"82":[2,179],"94":[2,179],"99":[2,179],"107":[2,179],"109":123,"110":[2,179],"111":[2,179],"112":[2,179],"115":[2,179],"117":[2,179],"124":[2,179],"127":[2,179],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[1,119]},{"102":236,"103":[1,237],"104":[1,238]},{"1":[2,138],"3":[2,138],"26":[2,138],"27":[2,138],"49":[1,110],"57":[2,138],"59":[1,125],"77":[2,138],"79":[2,138],"82":[2,138],"94":[2,138],"99":[2,138],"107":[2,138],"109":123,"110":[2,138],"111":[2,138],"112":[2,138],"115":[1,120],"117":[2,138],"124":[2,138],"127":[2,138],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,48],"3":[2,48],"26":[2,48],"27":[2,48],"49":[1,110],"57":[2,48],"59":[1,125],"77":[2,48],"79":[2,48],"82":[2,48],"94":[2,48],"99":[2,48],"107":[2,48],"109":123,"110":[2,48],"111":[2,48],"112":[1,124],"115":[1,120],"117":[2,48],"124":[2,48],"127":[2,48],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,143],"3":[2,143],"26":[2,143],"27":[2,143],"49":[2,143],"57":[2,143],"59":[2,143],"77":[2,143],"79":[2,143],"82":[2,143],"94":[2,143],"99":[2,143],"107":[2,143],"110":[2,143],"111":[2,143],"112":[2,143],"115":[2,143],"117":[2,143],"124":[2,143],"127":[2,143],"130":[2,143],"131":[2,143],"133":[2,143],"134":[2,143],"137":[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]},{"114":239,"115":[1,240],"116":[1,241]},{"57":[1,242],"115":[2,147],"116":[2,147]},{"26":[1,243],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"7":244,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":146,"62":170,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,94],"3":[2,94],"26":[1,246],"27":[2,94],"49":[2,94],"57":[2,94],"59":[2,94],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,94],"78":[2,66],"79":[2,94],"82":[2,94],"85":[1,245],"92":[2,66],"94":[2,94],"99":[2,94],"107":[2,94],"110":[2,94],"111":[2,94],"112":[2,94],"115":[2,94],"117":[2,94],"124":[2,94],"127":[2,94],"130":[2,94],"131":[2,94],"133":[2,94],"134":[2,94],"137":[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]},{"61":142,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"78":[1,139],"91":141,"92":[1,131]},{"49":[1,110],"59":[1,125],"107":[1,247],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[2,124],"27":[2,124],"49":[1,110],"57":[2,124],"59":[1,248],"99":[2,124],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[1,251],"27":[1,252],"57":[1,250],"99":[1,249]},{"6":253,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,116],"3":[2,116],"26":[2,116],"27":[2,116],"45":[2,116],"49":[2,116],"57":[2,116],"59":[2,116],"70":[2,116],"71":[2,116],"72":[2,116],"73":[2,116],"76":[2,116],"77":[2,116],"78":[2,116],"79":[2,116],"82":[2,116],"85":[2,116],"90":[2,116],"92":[2,116],"94":[2,116],"99":[2,116],"107":[2,116],"110":[2,116],"111":[2,116],"112":[2,116],"115":[2,116],"117":[2,116],"124":[2,116],"127":[2,116],"130":[2,116],"131":[2,116],"133":[2,116],"134":[2,116],"137":[2,116],"138":[2,116],"139":[2,116],"140":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"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]},{"3":[2,123],"6":226,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,174],"27":[2,123],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,123],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"93":254,"94":[2,123],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[1,151],"5":255,"26":[1,6],"124":[1,256]},{"1":[2,164],"3":[2,164],"26":[2,164],"27":[2,164],"49":[2,164],"57":[2,164],"59":[2,164],"77":[2,164],"79":[2,164],"82":[2,164],"94":[2,164],"99":[2,164],"107":[2,164],"110":[2,164],"111":[2,164],"112":[2,164],"115":[2,164],"117":[2,164],"120":[2,164],"124":[2,164],"127":[2,164],"130":[2,164],"131":[2,164],"133":[2,164],"134":[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],"162":[2,164]},{"1":[2,141],"3":[2,141],"26":[2,141],"27":[2,141],"49":[1,110],"57":[2,141],"59":[1,125],"77":[2,141],"79":[2,141],"82":[2,141],"94":[2,141],"99":[2,141],"107":[2,141],"109":123,"110":[1,78],"111":[1,257],"112":[1,124],"115":[1,120],"117":[2,141],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[1,260],"57":[1,259],"82":[1,258]},{"57":[1,262],"82":[1,261]},{"3":[2,88],"27":[2,88],"57":[2,88],"82":[2,88]},{"3":[2,87],"24":186,"27":[2,87],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":182,"48":[1,55],"57":[2,87],"81":263},{"45":[1,264]},{"45":[1,265]},{"3":[2,47],"27":[2,47],"57":[2,47],"82":[2,47]},{"3":[1,151],"5":266,"26":[1,6],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,6],"3":[2,6],"27":[2,6],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,182],"3":[2,182],"26":[2,182],"27":[2,182],"49":[1,110],"57":[2,182],"59":[2,182],"77":[2,182],"79":[2,182],"82":[2,182],"94":[2,182],"99":[2,182],"107":[2,182],"109":123,"110":[2,182],"111":[2,182],"112":[2,182],"115":[2,182],"117":[2,182],"124":[2,182],"127":[2,182],"130":[2,182],"131":[2,182],"133":[1,89],"134":[1,90],"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],"162":[2,182]},{"1":[2,183],"3":[2,183],"26":[2,183],"27":[2,183],"49":[1,110],"57":[2,183],"59":[2,183],"77":[2,183],"79":[2,183],"82":[2,183],"94":[2,183],"99":[2,183],"107":[2,183],"109":123,"110":[2,183],"111":[2,183],"112":[2,183],"115":[2,183],"117":[2,183],"124":[2,183],"127":[2,183],"130":[2,183],"131":[2,183],"133":[1,89],"134":[1,90],"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],"162":[2,183]},{"1":[2,184],"3":[2,184],"26":[2,184],"27":[2,184],"49":[1,110],"57":[2,184],"59":[2,184],"77":[2,184],"79":[2,184],"82":[2,184],"94":[2,184],"99":[2,184],"107":[2,184],"109":123,"110":[2,184],"111":[2,184],"112":[2,184],"115":[2,184],"117":[2,184],"124":[2,184],"127":[2,184],"130":[2,184],"131":[2,184],"133":[1,89],"134":[1,90],"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],"162":[2,184]},{"1":[2,185],"3":[2,185],"26":[2,185],"27":[2,185],"49":[1,110],"57":[2,185],"59":[2,185],"77":[2,185],"79":[2,185],"82":[2,185],"94":[2,185],"99":[2,185],"107":[2,185],"109":123,"110":[2,185],"111":[2,185],"112":[2,185],"115":[2,185],"117":[2,185],"124":[2,185],"127":[2,185],"130":[2,185],"131":[2,185],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,186],"3":[2,186],"26":[2,186],"27":[2,186],"49":[1,110],"57":[2,186],"59":[2,186],"77":[2,186],"79":[2,186],"82":[2,186],"94":[2,186],"99":[2,186],"107":[2,186],"109":123,"110":[2,186],"111":[2,186],"112":[2,186],"115":[2,186],"117":[2,186],"124":[2,186],"127":[2,186],"130":[2,186],"131":[2,186],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,187],"3":[2,187],"26":[2,187],"27":[2,187],"49":[1,110],"57":[2,187],"59":[2,187],"77":[2,187],"79":[2,187],"82":[2,187],"94":[2,187],"99":[2,187],"107":[2,187],"109":123,"110":[2,187],"111":[2,187],"112":[2,187],"115":[2,187],"117":[2,187],"124":[2,187],"127":[2,187],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,188],"3":[2,188],"26":[2,188],"27":[2,188],"49":[1,110],"57":[2,188],"59":[2,188],"77":[2,188],"79":[2,188],"82":[2,188],"94":[2,188],"99":[2,188],"107":[2,188],"109":123,"110":[2,188],"111":[2,188],"112":[2,188],"115":[2,188],"117":[2,188],"124":[2,188],"127":[2,188],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,189],"3":[2,189],"26":[2,189],"27":[2,189],"49":[1,110],"57":[2,189],"59":[2,189],"77":[2,189],"79":[2,189],"82":[2,189],"94":[2,189],"99":[2,189],"107":[2,189],"109":123,"110":[2,189],"111":[2,189],"112":[2,189],"115":[2,189],"117":[2,189],"124":[2,189],"127":[2,189],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,190],"3":[2,190],"26":[2,190],"27":[2,190],"49":[1,110],"57":[2,190],"59":[2,190],"77":[2,190],"79":[2,190],"82":[2,190],"94":[2,190],"99":[2,190],"107":[2,190],"109":123,"110":[2,190],"111":[2,190],"112":[2,190],"115":[2,190],"117":[2,190],"124":[2,190],"127":[2,190],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"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]},{"1":[2,191],"3":[2,191],"26":[2,191],"27":[2,191],"49":[1,110],"57":[2,191],"59":[2,191],"77":[2,191],"79":[2,191],"82":[2,191],"94":[2,191],"99":[2,191],"107":[2,191],"109":123,"110":[2,191],"111":[2,191],"112":[2,191],"115":[2,191],"117":[2,191],"124":[2,191],"127":[2,191],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"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]},{"1":[2,192],"3":[2,192],"26":[2,192],"27":[2,192],"49":[1,110],"57":[2,192],"59":[2,192],"77":[2,192],"79":[2,192],"82":[2,192],"94":[2,192],"99":[2,192],"107":[2,192],"109":123,"110":[2,192],"111":[2,192],"112":[2,192],"115":[2,192],"117":[2,192],"124":[2,192],"127":[2,192],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"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]},{"1":[2,193],"3":[2,193],"26":[2,193],"27":[2,193],"49":[1,110],"57":[2,193],"59":[2,193],"77":[2,193],"79":[2,193],"82":[2,193],"94":[2,193],"99":[2,193],"107":[2,193],"109":123,"110":[2,193],"111":[2,193],"112":[2,193],"115":[2,193],"117":[2,193],"124":[2,193],"127":[2,193],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"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]},{"1":[2,194],"3":[2,194],"26":[2,194],"27":[2,194],"49":[1,110],"57":[2,194],"59":[2,194],"77":[2,194],"79":[2,194],"82":[2,194],"94":[2,194],"99":[2,194],"107":[2,194],"109":123,"110":[2,194],"111":[2,194],"112":[2,194],"115":[2,194],"117":[2,194],"124":[2,194],"127":[2,194],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"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]},{"1":[2,195],"3":[2,195],"26":[2,195],"27":[2,195],"49":[1,110],"57":[2,195],"59":[2,195],"77":[2,195],"79":[2,195],"82":[2,195],"94":[2,195],"99":[2,195],"107":[2,195],"109":123,"110":[2,195],"111":[2,195],"112":[2,195],"115":[2,195],"117":[2,195],"124":[2,195],"127":[2,195],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"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]},{"1":[2,196],"3":[2,196],"26":[2,196],"27":[2,196],"49":[1,110],"57":[2,196],"59":[2,196],"77":[2,196],"79":[2,196],"82":[2,196],"94":[2,196],"99":[2,196],"107":[2,196],"109":123,"110":[2,196],"111":[2,196],"112":[2,196],"115":[2,196],"117":[2,196],"124":[2,196],"127":[2,196],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"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]},{"1":[2,197],"3":[2,197],"26":[2,197],"27":[2,197],"49":[1,110],"57":[2,197],"59":[2,197],"77":[2,197],"79":[2,197],"82":[2,197],"94":[2,197],"99":[2,197],"107":[2,197],"109":123,"110":[2,197],"111":[2,197],"112":[2,197],"115":[2,197],"117":[2,197],"124":[2,197],"127":[2,197],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[1,119]},{"1":[2,198],"3":[2,198],"26":[2,198],"27":[2,198],"49":[1,110],"57":[2,198],"59":[2,198],"77":[2,198],"79":[2,198],"82":[2,198],"94":[2,198],"99":[2,198],"107":[2,198],"109":123,"110":[2,198],"111":[2,198],"112":[2,198],"115":[2,198],"117":[2,198],"124":[2,198],"127":[2,198],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[1,119]},{"1":[2,199],"3":[2,199],"26":[2,199],"27":[2,199],"49":[1,110],"57":[2,199],"59":[2,199],"77":[2,199],"79":[2,199],"82":[2,199],"94":[2,199],"99":[2,199],"107":[2,199],"109":123,"110":[2,199],"111":[2,199],"112":[2,199],"115":[2,199],"117":[2,199],"124":[2,199],"127":[2,199],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"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":[1,119]},{"1":[2,200],"3":[2,200],"26":[2,200],"27":[2,200],"49":[1,110],"57":[2,200],"59":[2,200],"77":[2,200],"79":[2,200],"82":[2,200],"94":[2,200],"99":[2,200],"107":[2,200],"109":123,"110":[2,200],"111":[2,200],"112":[2,200],"115":[2,200],"117":[2,200],"124":[2,200],"127":[2,200],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"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":[1,119]},{"1":[2,201],"3":[2,201],"26":[2,201],"27":[2,201],"49":[2,201],"57":[2,201],"59":[2,201],"77":[2,201],"79":[2,201],"82":[2,201],"94":[2,201],"99":[2,201],"107":[2,201],"109":123,"110":[2,201],"111":[2,201],"112":[2,201],"115":[2,201],"117":[2,201],"124":[2,201],"127":[2,201],"130":[2,201],"131":[2,201],"133":[2,201],"134":[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],"162":[2,201]},{"1":[2,202],"3":[2,202],"26":[2,202],"27":[2,202],"49":[1,110],"57":[2,202],"59":[2,202],"77":[2,202],"79":[2,202],"82":[2,202],"94":[2,202],"99":[2,202],"107":[2,202],"109":123,"110":[2,202],"111":[2,202],"112":[2,202],"115":[2,202],"117":[2,202],"124":[2,202],"127":[2,202],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,203],"3":[2,203],"26":[2,203],"27":[2,203],"49":[1,110],"57":[2,203],"59":[2,203],"77":[2,203],"79":[2,203],"82":[2,203],"94":[2,203],"99":[2,203],"107":[2,203],"109":123,"110":[2,203],"111":[2,203],"112":[2,203],"115":[2,203],"117":[2,203],"124":[2,203],"127":[2,203],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,204],"3":[2,204],"26":[2,204],"27":[2,204],"49":[1,110],"57":[2,204],"59":[2,204],"77":[2,204],"79":[2,204],"82":[2,204],"94":[2,204],"99":[2,204],"107":[2,204],"109":123,"110":[2,204],"111":[2,204],"112":[2,204],"115":[2,204],"117":[2,204],"124":[2,204],"127":[2,204],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,205],"3":[2,205],"26":[2,205],"27":[2,205],"49":[1,110],"57":[2,205],"59":[2,205],"77":[2,205],"79":[2,205],"82":[2,205],"94":[2,205],"99":[2,205],"107":[2,205],"109":123,"110":[2,205],"111":[2,205],"112":[2,205],"115":[2,205],"117":[2,205],"124":[2,205],"127":[2,205],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,206],"3":[2,206],"26":[2,206],"27":[2,206],"49":[1,110],"57":[2,206],"59":[2,206],"77":[2,206],"79":[2,206],"82":[2,206],"94":[2,206],"99":[2,206],"107":[2,206],"109":123,"110":[2,206],"111":[2,206],"112":[2,206],"115":[2,206],"117":[2,206],"124":[2,206],"127":[2,206],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,207],"3":[2,207],"26":[2,207],"27":[2,207],"49":[1,110],"57":[2,207],"59":[2,207],"77":[2,207],"79":[2,207],"82":[2,207],"94":[2,207],"99":[2,207],"107":[2,207],"109":123,"110":[2,207],"111":[2,207],"112":[2,207],"115":[2,207],"117":[2,207],"124":[2,207],"127":[2,207],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,208],"3":[2,208],"26":[2,208],"27":[2,208],"49":[1,110],"57":[2,208],"59":[2,208],"77":[2,208],"79":[2,208],"82":[2,208],"94":[2,208],"99":[2,208],"107":[2,208],"109":123,"110":[2,208],"111":[2,208],"112":[2,208],"115":[2,208],"117":[2,208],"124":[2,208],"127":[2,208],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,209],"3":[2,209],"26":[2,209],"27":[2,209],"49":[1,110],"57":[2,209],"59":[2,209],"77":[2,209],"79":[2,209],"82":[2,209],"94":[2,209],"99":[2,209],"107":[2,209],"109":123,"110":[2,209],"111":[2,209],"112":[2,209],"115":[2,209],"117":[2,209],"124":[2,209],"127":[2,209],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,210],"3":[2,210],"26":[2,210],"27":[2,210],"49":[1,110],"57":[2,210],"59":[2,210],"77":[2,210],"79":[2,210],"82":[2,210],"94":[2,210],"99":[2,210],"107":[2,210],"109":123,"110":[2,210],"111":[2,210],"112":[2,210],"115":[2,210],"117":[2,210],"124":[2,210],"127":[2,210],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[2,210],"162":[1,119]},{"1":[2,211],"3":[2,211],"26":[2,211],"27":[2,211],"49":[1,110],"57":[2,211],"59":[1,125],"77":[2,211],"79":[2,211],"82":[2,211],"94":[2,211],"99":[2,211],"107":[2,211],"109":123,"110":[2,211],"111":[2,211],"112":[2,211],"115":[1,120],"117":[2,211],"124":[2,211],"127":[2,211],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,169],"3":[2,169],"26":[2,169],"27":[2,169],"49":[1,110],"57":[2,169],"59":[1,125],"77":[2,169],"79":[2,169],"82":[2,169],"94":[2,169],"99":[2,169],"107":[2,169],"109":123,"110":[1,78],"111":[2,169],"112":[1,124],"115":[1,120],"117":[2,169],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,170],"3":[2,170],"26":[2,170],"27":[2,170],"49":[1,110],"57":[2,170],"59":[1,125],"77":[2,170],"79":[2,170],"82":[2,170],"94":[2,170],"99":[2,170],"107":[2,170],"109":123,"110":[1,78],"111":[2,170],"112":[1,124],"115":[1,120],"117":[2,170],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"114":267,"115":[1,240],"116":[1,241]},{"59":[1,268]},{"1":[2,27],"3":[2,27],"26":[2,27],"27":[2,27],"48":[2,27],"49":[2,27],"57":[2,27],"59":[2,27],"77":[2,27],"79":[2,27],"82":[2,27],"94":[2,27],"99":[2,27],"103":[2,27],"104":[2,27],"107":[2,27],"110":[2,27],"111":[2,27],"112":[2,27],"115":[2,27],"117":[2,27],"120":[2,27],"122":[2,27],"124":[2,27],"127":[2,27],"130":[2,27],"131":[2,27],"133":[2,27],"134":[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],"162":[2,27]},{"1":[2,106],"3":[2,106],"26":[2,106],"27":[2,106],"49":[2,106],"57":[2,106],"59":[2,106],"77":[2,106],"79":[2,106],"82":[2,106],"94":[2,106],"99":[2,106],"107":[2,106],"110":[2,106],"111":[2,106],"112":[2,106],"115":[2,106],"117":[2,106],"124":[2,106],"127":[2,106],"130":[2,106],"131":[2,106],"133":[2,106],"134":[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],"162":[2,106]},{"3":[1,251],"27":[1,252],"57":[1,270],"94":[1,269]},{"3":[2,124],"27":[2,124],"49":[1,110],"57":[2,124],"59":[1,125],"94":[2,124],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,75],"3":[2,75],"26":[2,75],"27":[2,75],"45":[2,75],"49":[2,75],"57":[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],"85":[2,75],"90":[2,75],"92":[2,75],"94":[2,75],"99":[2,75],"107":[2,75],"110":[2,75],"111":[2,75],"112":[2,75],"115":[2,75],"117":[2,75],"124":[2,75],"127":[2,75],"130":[2,75],"131":[2,75],"133":[2,75],"134":[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],"162":[2,75]},{"1":[2,76],"3":[2,76],"26":[2,76],"27":[2,76],"45":[2,76],"49":[2,76],"57":[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],"85":[2,76],"90":[2,76],"92":[2,76],"94":[2,76],"99":[2,76],"107":[2,76],"110":[2,76],"111":[2,76],"112":[2,76],"115":[2,76],"117":[2,76],"124":[2,76],"127":[2,76],"130":[2,76],"131":[2,76],"133":[2,76],"134":[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],"162":[2,76]},{"1":[2,78],"3":[2,78],"26":[2,78],"27":[2,78],"45":[2,78],"49":[2,78],"57":[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],"85":[2,78],"90":[2,78],"92":[2,78],"94":[2,78],"99":[2,78],"107":[2,78],"110":[2,78],"111":[2,78],"112":[2,78],"115":[2,78],"117":[2,78],"124":[2,78],"127":[2,78],"130":[2,78],"131":[2,78],"133":[2,78],"134":[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],"162":[2,78]},{"49":[1,110],"59":[1,272],"77":[1,271],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"49":[1,110],"59":[1,125],"79":[1,273],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,44],"3":[2,44],"26":[2,44],"27":[2,44],"49":[1,110],"57":[2,44],"59":[1,125],"77":[2,44],"79":[2,44],"82":[2,44],"94":[2,44],"99":[2,44],"107":[2,44],"109":123,"110":[2,44],"111":[2,44],"112":[1,124],"115":[1,120],"117":[2,44],"124":[2,44],"127":[2,44],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"53":274,"54":[1,75],"55":[1,76]},{"56":275,"58":[1,149]},{"59":[1,276]},{"1":[2,134],"3":[2,134],"26":[2,134],"27":[2,134],"49":[2,134],"57":[2,134],"59":[2,134],"77":[2,134],"79":[2,134],"82":[2,134],"94":[2,134],"99":[2,134],"103":[1,277],"107":[2,134],"110":[2,134],"111":[2,134],"112":[2,134],"115":[2,134],"117":[2,134],"124":[2,134],"127":[2,134],"130":[2,134],"131":[2,134],"133":[2,134],"134":[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],"162":[2,134]},{"3":[1,151],"5":278,"26":[1,6]},{"28":279,"29":[1,85]},{"3":[1,151],"5":280,"26":[1,6]},{"6":281,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":282,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"28":283,"29":[1,85]},{"24":287,"48":[1,55],"119":284,"121":285,"122":[1,286]},{"1":[2,107],"3":[2,107],"26":[2,107],"27":[2,107],"49":[2,107],"57":[2,107],"59":[2,107],"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,107],"78":[1,139],"79":[2,107],"82":[2,107],"91":129,"92":[1,131],"94":[2,107],"99":[2,107],"107":[2,107],"110":[2,107],"111":[2,107],"112":[2,107],"115":[2,107],"117":[2,107],"124":[2,107],"127":[2,107],"130":[2,107],"131":[2,107],"133":[2,107],"134":[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],"162":[2,107]},{"7":288,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":146,"62":170,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"3":[2,100],"24":186,"27":[2,100],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":291,"48":[1,55],"63":292,"86":289,"87":290,"97":[1,293]},{"1":[2,139],"3":[2,139],"26":[2,139],"27":[2,139],"49":[2,139],"57":[2,139],"59":[2,139],"70":[2,139],"71":[2,139],"72":[2,139],"73":[2,139],"76":[2,139],"77":[2,139],"78":[2,139],"79":[2,139],"82":[2,139],"90":[2,139],"92":[2,139],"94":[2,139],"99":[2,139],"107":[2,139],"110":[2,139],"111":[2,139],"112":[2,139],"115":[2,139],"117":[2,139],"124":[2,139],"127":[2,139],"130":[2,139],"131":[2,139],"133":[2,139],"134":[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],"162":[2,139]},{"59":[1,294]},{"1":[2,121],"3":[2,121],"26":[2,121],"27":[2,121],"45":[2,121],"49":[2,121],"57":[2,121],"59":[2,121],"70":[2,121],"71":[2,121],"72":[2,121],"73":[2,121],"76":[2,121],"77":[2,121],"78":[2,121],"79":[2,121],"82":[2,121],"90":[2,121],"92":[2,121],"94":[2,121],"99":[2,121],"107":[2,121],"110":[2,121],"111":[2,121],"112":[2,121],"115":[2,121],"117":[2,121],"124":[2,121],"127":[2,121],"130":[2,121],"131":[2,121],"133":[2,121],"134":[2,121],"137":[2,121],"138":[2,121],"139":[2,121],"140":[2,121],"141":[2,121],"142":[2,121],"143":[2,121],"144":[2,121],"145":[2,121],"146":[2,121],"147":[2,121],"148":[2,121],"149":[2,121],"150":[2,121],"151":[2,121],"152":[2,121],"153":[2,121],"154":[2,121],"155":[2,121],"156":[2,121],"157":[2,121],"158":[2,121],"159":[2,121],"160":[2,121],"161":[2,121],"162":[2,121]},{"3":[1,297],"6":296,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,298],"27":[1,299],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[1,295],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":300,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[2,130],"27":[2,130],"57":[2,130],"94":[2,130],"99":[2,130]},{"3":[2,125],"27":[2,125],"49":[1,110],"57":[2,125],"59":[1,125],"94":[2,125],"99":[2,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[1,251],"27":[1,252],"57":[1,302],"94":[1,301]},{"1":[2,166],"3":[2,166],"26":[2,166],"27":[2,166],"49":[2,166],"57":[2,166],"59":[2,166],"77":[2,166],"79":[2,166],"82":[2,166],"94":[2,166],"99":[2,166],"107":[2,166],"110":[2,166],"111":[2,166],"112":[2,166],"115":[2,166],"117":[2,166],"124":[2,166],"127":[2,166],"130":[2,166],"131":[2,166],"133":[2,166],"134":[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],"162":[2,166]},{"6":303,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":304,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,83],"3":[2,83],"26":[2,83],"27":[2,83],"45":[2,83],"49":[2,83],"57":[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],"90":[2,83],"92":[2,83],"94":[2,83],"99":[2,83],"107":[2,83],"110":[2,83],"111":[2,83],"112":[2,83],"115":[2,83],"117":[2,83],"124":[2,83],"127":[2,83],"130":[2,83],"131":[2,83],"133":[2,83],"134":[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],"162":[2,83]},{"3":[1,307],"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":306,"48":[1,55],"82":[1,305]},{"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":308,"48":[1,55]},{"1":[2,84],"3":[2,84],"26":[2,84],"27":[2,84],"45":[2,84],"49":[2,84],"57":[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],"94":[2,84],"99":[2,84],"107":[2,84],"110":[2,84],"111":[2,84],"112":[2,84],"115":[2,84],"117":[2,84],"124":[2,84],"127":[2,84],"130":[2,84],"131":[2,84],"133":[2,84],"134":[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],"162":[2,84]},{"82":[1,309]},{"3":[1,260],"27":[1,310],"57":[1,311]},{"6":312,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":313,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,163],"3":[2,163],"26":[2,163],"27":[2,163],"49":[2,163],"57":[2,163],"59":[2,163],"77":[2,163],"79":[2,163],"82":[2,163],"94":[2,163],"99":[2,163],"107":[2,163],"110":[2,163],"111":[2,163],"112":[2,163],"115":[2,163],"117":[2,163],"120":[2,163],"124":[2,163],"127":[2,163],"130":[2,163],"131":[2,163],"133":[2,163],"134":[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],"162":[2,163]},{"1":[2,145],"3":[2,145],"26":[2,145],"27":[2,145],"49":[2,145],"57":[2,145],"59":[2,145],"77":[2,145],"79":[2,145],"82":[2,145],"94":[2,145],"99":[2,145],"107":[2,145],"110":[2,145],"111":[2,145],"112":[2,145],"115":[2,145],"117":[2,145],"124":[2,145],"127":[2,145],"130":[2,145],"131":[2,145],"133":[2,145],"134":[2,145],"137":[2,145],"138":[2,145],"139":[2,145],"140":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"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]},{"1":[2,61],"3":[2,61],"26":[2,61],"27":[2,61],"49":[2,61],"57":[2,61],"59":[2,61],"77":[2,61],"79":[2,61],"82":[2,61],"94":[2,61],"99":[2,61],"107":[2,61],"110":[2,61],"111":[2,61],"112":[2,61],"115":[2,61],"117":[2,61],"124":[2,61],"127":[2,61],"130":[2,61],"131":[2,61],"133":[2,61],"134":[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],"162":[2,61]},{"1":[2,110],"3":[2,110],"26":[2,110],"27":[2,110],"49":[2,110],"57":[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],"92":[2,110],"94":[2,110],"99":[2,110],"107":[2,110],"110":[2,110],"111":[2,110],"112":[2,110],"115":[2,110],"117":[2,110],"124":[2,110],"127":[2,110],"130":[2,110],"131":[2,110],"133":[2,110],"134":[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],"162":[2,110]},{"3":[1,297],"6":296,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,298],"27":[1,299],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"94":[1,314],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,81],"3":[2,81],"26":[2,81],"27":[2,81],"45":[2,81],"49":[2,81],"57":[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],"85":[2,81],"90":[2,81],"92":[2,81],"94":[2,81],"99":[2,81],"107":[2,81],"110":[2,81],"111":[2,81],"112":[2,81],"115":[2,81],"117":[2,81],"124":[2,81],"127":[2,81],"130":[2,81],"131":[2,81],"133":[2,81],"134":[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],"162":[2,81]},{"59":[1,315]},{"1":[2,82],"3":[2,82],"26":[2,82],"27":[2,82],"45":[2,82],"49":[2,82],"57":[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],"85":[2,82],"90":[2,82],"92":[2,82],"94":[2,82],"99":[2,82],"107":[2,82],"110":[2,82],"111":[2,82],"112":[2,82],"115":[2,82],"117":[2,82],"124":[2,82],"127":[2,82],"130":[2,82],"131":[2,82],"133":[2,82],"134":[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],"162":[2,82]},{"3":[1,151],"5":316,"26":[1,6]},{"52":[2,58],"57":[2,58],"59":[1,235]},{"59":[1,317]},{"3":[1,151],"5":318,"26":[1,6]},{"1":[2,135],"3":[2,135],"26":[2,135],"27":[2,135],"49":[2,135],"57":[2,135],"59":[2,135],"77":[2,135],"79":[2,135],"82":[2,135],"94":[2,135],"99":[2,135],"107":[2,135],"110":[2,135],"111":[2,135],"112":[2,135],"115":[2,135],"117":[2,135],"124":[2,135],"127":[2,135],"130":[2,135],"131":[2,135],"133":[2,135],"134":[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],"162":[2,135]},{"3":[1,151],"5":319,"26":[1,6]},{"1":[2,146],"3":[2,146],"26":[2,146],"27":[2,146],"49":[2,146],"57":[2,146],"59":[2,146],"77":[2,146],"79":[2,146],"82":[2,146],"94":[2,146],"99":[2,146],"107":[2,146],"110":[2,146],"111":[2,146],"112":[2,146],"115":[2,146],"117":[2,146],"124":[2,146],"127":[2,146],"130":[2,146],"131":[2,146],"133":[2,146],"134":[2,146],"137":[2,146],"138":[2,146],"139":[2,146],"140":[2,146],"141":[2,146],"142":[2,146],"143":[2,146],"144":[2,146],"145":[2,146],"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]},{"1":[2,149],"3":[2,149],"26":[2,149],"27":[2,149],"49":[1,110],"57":[2,149],"59":[1,125],"77":[2,149],"79":[2,149],"82":[2,149],"94":[2,149],"99":[2,149],"107":[2,149],"109":123,"110":[2,149],"111":[1,320],"112":[2,149],"115":[1,120],"117":[1,321],"124":[2,149],"127":[2,149],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,150],"3":[2,150],"26":[2,150],"27":[2,150],"49":[1,110],"57":[2,150],"59":[1,125],"77":[2,150],"79":[2,150],"82":[2,150],"94":[2,150],"99":[2,150],"107":[2,150],"109":123,"110":[2,150],"111":[1,322],"112":[2,150],"115":[1,120],"117":[2,150],"124":[2,150],"127":[2,150],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"115":[2,148],"116":[2,148]},{"24":287,"27":[1,323],"48":[1,55],"120":[1,324],"121":325,"122":[1,286]},{"27":[2,158],"48":[2,158],"120":[2,158],"122":[2,158]},{"6":327,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"100":326,"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[1,328]},{"1":[2,95],"3":[2,95],"26":[1,329],"27":[2,95],"49":[2,95],"57":[2,95],"59":[2,95],"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,95],"78":[1,139],"79":[2,95],"82":[2,95],"91":129,"92":[1,131],"94":[2,95],"99":[2,95],"107":[2,95],"110":[2,95],"111":[2,95],"112":[2,95],"115":[2,95],"117":[2,95],"124":[2,95],"127":[2,95],"130":[2,95],"131":[2,95],"133":[2,95],"134":[2,95],"137":[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]},{"3":[1,331],"27":[1,330]},{"3":[2,101],"27":[2,101]},{"3":[2,98],"27":[2,98]},{"45":[1,332]},{"28":175,"29":[1,85]},{"6":333,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"59":[1,334],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,122],"3":[2,122],"26":[2,122],"27":[2,122],"45":[2,122],"49":[2,122],"57":[2,122],"59":[2,122],"70":[2,122],"71":[2,122],"72":[2,122],"73":[2,122],"76":[2,122],"77":[2,122],"78":[2,122],"79":[2,122],"82":[2,122],"90":[2,122],"92":[2,122],"94":[2,122],"99":[2,122],"107":[2,122],"110":[2,122],"111":[2,122],"112":[2,122],"115":[2,122],"117":[2,122],"124":[2,122],"127":[2,122],"130":[2,122],"131":[2,122],"133":[2,122],"134":[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],"162":[2,122]},{"3":[2,126],"27":[2,126],"49":[1,110],"57":[2,126],"59":[1,125],"94":[2,126],"99":[2,126],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"6":335,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":336,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[2,131],"27":[2,131],"57":[2,131],"94":[2,131],"99":[2,131]},{"3":[2,127],"27":[2,127],"49":[1,110],"57":[2,127],"59":[1,125],"94":[2,127],"99":[2,127],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,112],"3":[2,112],"26":[2,112],"27":[2,112],"49":[2,112],"57":[2,112],"59":[2,112],"77":[2,112],"79":[2,112],"82":[2,112],"94":[2,112],"99":[2,112],"107":[2,112],"110":[2,112],"111":[2,112],"112":[2,112],"115":[2,112],"117":[2,112],"124":[2,112],"127":[2,112],"130":[2,112],"131":[2,112],"133":[2,112],"134":[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],"162":[2,112]},{"3":[1,297],"6":296,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,298],"27":[1,299],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"94":[1,337],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[1,151],"5":338,"26":[1,6],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,142],"3":[2,142],"26":[2,142],"27":[2,142],"49":[1,110],"57":[2,142],"59":[1,125],"77":[2,142],"79":[2,142],"82":[2,142],"94":[2,142],"99":[2,142],"107":[2,142],"109":123,"110":[1,78],"111":[2,142],"112":[1,124],"115":[1,120],"117":[2,142],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,85],"3":[2,85],"26":[2,85],"27":[2,85],"45":[2,85],"49":[2,85],"57":[2,85],"59":[2,85],"70":[2,85],"71":[2,85],"72":[2,85],"73":[2,85],"76":[2,85],"77":[2,85],"78":[2,85],"79":[2,85],"82":[2,85],"90":[2,85],"92":[2,85],"94":[2,85],"99":[2,85],"107":[2,85],"110":[2,85],"111":[2,85],"112":[2,85],"115":[2,85],"117":[2,85],"124":[2,85],"127":[2,85],"130":[2,85],"131":[2,85],"133":[2,85],"134":[2,85],"137":[2,85],"138":[2,85],"139":[2,85],"140":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"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]},{"3":[2,89],"27":[2,89],"57":[2,89],"82":[2,89]},{"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":339,"48":[1,55]},{"3":[2,90],"27":[2,90],"57":[2,90],"82":[2,90]},{"1":[2,86],"3":[2,86],"26":[2,86],"27":[2,86],"45":[2,86],"49":[2,86],"57":[2,86],"59":[2,86],"70":[2,86],"71":[2,86],"72":[2,86],"73":[2,86],"76":[2,86],"77":[2,86],"78":[2,86],"79":[2,86],"82":[2,86],"90":[2,86],"92":[2,86],"94":[2,86],"99":[2,86],"107":[2,86],"110":[2,86],"111":[2,86],"112":[2,86],"115":[2,86],"117":[2,86],"124":[2,86],"127":[2,86],"130":[2,86],"131":[2,86],"133":[2,86],"134":[2,86],"137":[2,86],"138":[2,86],"139":[2,86],"140":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"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]},{"57":[2,92],"82":[2,92]},{"3":[1,307],"24":186,"27":[1,340],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":306,"48":[1,55]},{"3":[2,45],"27":[2,45],"49":[1,110],"57":[2,45],"59":[1,125],"82":[2,45],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[2,46],"27":[2,46],"49":[1,110],"57":[2,46],"59":[1,125],"82":[2,46],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,111],"3":[2,111],"26":[2,111],"27":[2,111],"49":[2,111],"57":[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],"92":[2,111],"94":[2,111],"99":[2,111],"107":[2,111],"110":[2,111],"111":[2,111],"112":[2,111],"115":[2,111],"117":[2,111],"124":[2,111],"127":[2,111],"130":[2,111],"131":[2,111],"133":[2,111],"134":[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],"162":[2,111]},{"6":341,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"59":[1,342],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,52],"3":[2,52],"26":[2,52],"27":[2,52],"49":[2,52],"57":[2,52],"59":[2,52],"77":[2,52],"79":[2,52],"82":[2,52],"94":[2,52],"99":[2,52],"107":[2,52],"110":[2,52],"111":[2,52],"112":[2,52],"115":[2,52],"117":[2,52],"124":[2,52],"127":[2,52],"130":[2,52],"131":[2,52],"133":[2,52],"134":[2,52],"137":[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]},{"52":[2,60],"57":[2,60],"59":[2,60]},{"1":[2,136],"3":[2,136],"26":[2,136],"27":[2,136],"49":[2,136],"57":[2,136],"59":[2,136],"77":[2,136],"79":[2,136],"82":[2,136],"94":[2,136],"99":[2,136],"107":[2,136],"110":[2,136],"111":[2,136],"112":[2,136],"115":[2,136],"117":[2,136],"124":[2,136],"127":[2,136],"130":[2,136],"131":[2,136],"133":[2,136],"134":[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],"162":[2,136]},{"1":[2,137],"3":[2,137],"26":[2,137],"27":[2,137],"49":[2,137],"57":[2,137],"59":[2,137],"77":[2,137],"79":[2,137],"82":[2,137],"94":[2,137],"99":[2,137],"103":[2,137],"107":[2,137],"110":[2,137],"111":[2,137],"112":[2,137],"115":[2,137],"117":[2,137],"124":[2,137],"127":[2,137],"130":[2,137],"131":[2,137],"133":[2,137],"134":[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],"162":[2,137]},{"6":343,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":344,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":345,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,156],"3":[2,156],"26":[2,156],"27":[2,156],"49":[2,156],"57":[2,156],"59":[2,156],"77":[2,156],"79":[2,156],"82":[2,156],"94":[2,156],"99":[2,156],"107":[2,156],"110":[2,156],"111":[2,156],"112":[2,156],"115":[2,156],"117":[2,156],"124":[2,156],"127":[2,156],"130":[2,156],"131":[2,156],"133":[2,156],"134":[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],"162":[2,156]},{"3":[1,151],"5":346,"26":[1,6]},{"27":[2,159],"48":[2,159],"120":[2,159],"122":[2,159]},{"3":[1,151],"5":347,"26":[1,6],"57":[1,348]},{"3":[2,132],"26":[2,132],"49":[1,110],"57":[2,132],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"24":287,"48":[1,55],"121":349,"122":[1,286]},{"3":[2,100],"24":186,"27":[2,100],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":291,"48":[1,55],"63":292,"86":350,"87":290,"97":[1,293]},{"1":[2,96],"3":[2,96],"26":[2,96],"27":[2,96],"49":[2,96],"57":[2,96],"59":[2,96],"77":[2,96],"79":[2,96],"82":[2,96],"94":[2,96],"99":[2,96],"107":[2,96],"110":[2,96],"111":[2,96],"112":[2,96],"115":[2,96],"117":[2,96],"124":[2,96],"127":[2,96],"130":[2,96],"131":[2,96],"133":[2,96],"134":[2,96],"137":[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]},{"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":291,"48":[1,55],"63":292,"87":351,"97":[1,293]},{"6":352,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"49":[1,110],"59":[1,125],"99":[1,353],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[2,61],"6":354,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"27":[2,61],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,61],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,61],"59":[2,61],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,61],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[2,61],"112":[2,61],"115":[2,61],"118":[1,52],"123":77,"124":[2,61],"126":46,"127":[2,61],"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45],"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],"162":[2,61]},{"3":[2,128],"27":[2,128],"49":[1,110],"57":[2,128],"59":[1,125],"94":[2,128],"99":[2,128],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[2,129],"27":[2,129],"49":[1,110],"57":[2,129],"59":[1,125],"94":[2,129],"99":[2,129],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,113],"3":[2,113],"26":[2,113],"27":[2,113],"49":[2,113],"57":[2,113],"59":[2,113],"77":[2,113],"79":[2,113],"82":[2,113],"94":[2,113],"99":[2,113],"107":[2,113],"110":[2,113],"111":[2,113],"112":[2,113],"115":[2,113],"117":[2,113],"124":[2,113],"127":[2,113],"130":[2,113],"131":[2,113],"133":[2,113],"134":[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],"162":[2,113]},{"1":[2,167],"3":[2,167],"26":[2,167],"27":[2,167],"49":[2,167],"57":[2,167],"59":[2,167],"77":[2,167],"79":[2,167],"82":[2,167],"94":[2,167],"99":[2,167],"107":[2,167],"110":[2,167],"111":[2,167],"112":[2,167],"115":[2,167],"117":[2,167],"120":[2,167],"124":[2,167],"127":[2,167],"130":[2,167],"131":[2,167],"133":[2,167],"134":[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],"162":[2,167]},{"3":[2,91],"27":[2,91],"57":[2,91],"82":[2,91]},{"57":[2,93],"82":[2,93]},{"49":[1,110],"59":[1,125],"77":[1,355],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"6":356,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,61],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"59":[2,61],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"77":[2,61],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[2,61],"112":[2,61],"115":[2,61],"118":[1,52],"123":77,"124":[2,61],"126":46,"127":[2,61],"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45],"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],"162":[2,61]},{"1":[2,151],"3":[2,151],"26":[2,151],"27":[2,151],"49":[1,110],"57":[2,151],"59":[1,125],"77":[2,151],"79":[2,151],"82":[2,151],"94":[2,151],"99":[2,151],"107":[2,151],"109":123,"110":[2,151],"111":[2,151],"112":[2,151],"115":[1,120],"117":[1,357],"124":[2,151],"127":[2,151],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,153],"3":[2,153],"26":[2,153],"27":[2,153],"49":[1,110],"57":[2,153],"59":[1,125],"77":[2,153],"79":[2,153],"82":[2,153],"94":[2,153],"99":[2,153],"107":[2,153],"109":123,"110":[2,153],"111":[1,358],"112":[2,153],"115":[1,120],"117":[2,153],"124":[2,153],"127":[2,153],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,152],"3":[2,152],"26":[2,152],"27":[2,152],"49":[1,110],"57":[2,152],"59":[1,125],"77":[2,152],"79":[2,152],"82":[2,152],"94":[2,152],"99":[2,152],"107":[2,152],"109":123,"110":[2,152],"111":[2,152],"112":[2,152],"115":[1,120],"117":[2,152],"124":[2,152],"127":[2,152],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"27":[1,359]},{"3":[1,360],"27":[2,160],"48":[2,160],"120":[2,160],"122":[2,160]},{"6":361,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"27":[2,162],"48":[2,162],"120":[2,162],"122":[2,162]},{"3":[1,331],"27":[1,362]},{"3":[2,102],"27":[2,102]},{"3":[2,99],"27":[2,99],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,117],"3":[2,117],"26":[2,117],"27":[2,117],"49":[2,117],"57":[2,117],"59":[2,117],"70":[2,117],"71":[2,117],"72":[2,117],"73":[2,117],"76":[2,117],"77":[2,117],"78":[2,117],"79":[2,117],"82":[2,117],"90":[2,117],"92":[2,117],"94":[2,117],"99":[2,117],"107":[2,117],"110":[2,117],"111":[2,117],"112":[2,117],"115":[2,117],"117":[2,117],"124":[2,117],"127":[2,117],"130":[2,117],"131":[2,117],"133":[2,117],"134":[2,117],"137":[2,117],"138":[2,117],"139":[2,117],"140":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"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]},{"49":[1,110],"59":[1,125],"99":[1,363],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,119],"3":[2,119],"26":[2,119],"27":[2,119],"45":[2,119],"49":[2,119],"57":[2,119],"59":[2,119],"70":[2,119],"71":[2,119],"72":[2,119],"73":[2,119],"76":[2,119],"77":[2,119],"78":[2,119],"79":[2,119],"82":[2,119],"85":[2,119],"90":[2,119],"92":[2,119],"94":[2,119],"99":[2,119],"107":[2,119],"110":[2,119],"111":[2,119],"112":[2,119],"115":[2,119],"117":[2,119],"124":[2,119],"127":[2,119],"130":[2,119],"131":[2,119],"133":[2,119],"134":[2,119],"137":[2,119],"138":[2,119],"139":[2,119],"140":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"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]},{"49":[1,110],"59":[1,125],"77":[1,364],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"6":365,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":366,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,157],"3":[2,157],"26":[2,157],"27":[2,157],"49":[2,157],"57":[2,157],"59":[2,157],"77":[2,157],"79":[2,157],"82":[2,157],"94":[2,157],"99":[2,157],"107":[2,157],"110":[2,157],"111":[2,157],"112":[2,157],"115":[2,157],"117":[2,157],"124":[2,157],"127":[2,157],"130":[2,157],"131":[2,157],"133":[2,157],"134":[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],"162":[2,157]},{"27":[2,161],"48":[2,161],"120":[2,161],"122":[2,161]},{"3":[2,133],"26":[2,133],"49":[1,110],"57":[2,133],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,97],"3":[2,97],"26":[2,97],"27":[2,97],"49":[2,97],"57":[2,97],"59":[2,97],"77":[2,97],"79":[2,97],"82":[2,97],"94":[2,97],"99":[2,97],"107":[2,97],"110":[2,97],"111":[2,97],"112":[2,97],"115":[2,97],"117":[2,97],"124":[2,97],"127":[2,97],"130":[2,97],"131":[2,97],"133":[2,97],"134":[2,97],"137":[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]},{"1":[2,118],"3":[2,118],"26":[2,118],"27":[2,118],"49":[2,118],"57":[2,118],"59":[2,118],"70":[2,118],"71":[2,118],"72":[2,118],"73":[2,118],"76":[2,118],"77":[2,118],"78":[2,118],"79":[2,118],"82":[2,118],"90":[2,118],"92":[2,118],"94":[2,118],"99":[2,118],"107":[2,118],"110":[2,118],"111":[2,118],"112":[2,118],"115":[2,118],"117":[2,118],"124":[2,118],"127":[2,118],"130":[2,118],"131":[2,118],"133":[2,118],"134":[2,118],"137":[2,118],"138":[2,118],"139":[2,118],"140":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"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]},{"1":[2,120],"3":[2,120],"26":[2,120],"27":[2,120],"45":[2,120],"49":[2,120],"57":[2,120],"59":[2,120],"70":[2,120],"71":[2,120],"72":[2,120],"73":[2,120],"76":[2,120],"77":[2,120],"78":[2,120],"79":[2,120],"82":[2,120],"85":[2,120],"90":[2,120],"92":[2,120],"94":[2,120],"99":[2,120],"107":[2,120],"110":[2,120],"111":[2,120],"112":[2,120],"115":[2,120],"117":[2,120],"124":[2,120],"127":[2,120],"130":[2,120],"131":[2,120],"133":[2,120],"134":[2,120],"137":[2,120],"138":[2,120],"139":[2,120],"140":[2,120],"141":[2,120],"142":[2,120],"143":[2,120],"144":[2,120],"145":[2,120],"146":[2,120],"147":[2,120],"148":[2,120],"149":[2,120],"150":[2,120],"151":[2,120],"152":[2,120],"153":[2,120],"154":[2,120],"155":[2,120],"156":[2,120],"157":[2,120],"158":[2,120],"159":[2,120],"160":[2,120],"161":[2,120],"162":[2,120]},{"1":[2,154],"3":[2,154],"26":[2,154],"27":[2,154],"49":[1,110],"57":[2,154],"59":[1,125],"77":[2,154],"79":[2,154],"82":[2,154],"94":[2,154],"99":[2,154],"107":[2,154],"109":123,"110":[2,154],"111":[2,154],"112":[2,154],"115":[1,120],"117":[2,154],"124":[2,154],"127":[2,154],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,155],"3":[2,155],"26":[2,155],"27":[2,155],"49":[1,110],"57":[2,155],"59":[1,125],"77":[2,155],"79":[2,155],"82":[2,155],"94":[2,155],"99":[2,155],"107":[2,155],"109":123,"110":[2,155],"111":[2,155],"112":[2,155],"115":[1,120],"117":[2,155],"124":[2,155],"127":[2,155],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]}],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;this.lexer.setInput(input);this.lexer.yy=this.yy;var parseError=this.yy.parseError=this.yy.parseError||this.parseError;function lex(){var token;token=self.lexer.lex()||1;if(typeof token!=="number"){token=self.symbols_[token]}return token}var symbol,state,action,a,r,yyval={},p,len,ip=0,newState,expected;symbol=lex();while(true){state=stack[stack.length-1];action=table[state]&&table[state][symbol];if(typeof action==="undefined"||!action.length||!action[0]){expected=[];for(p in table[state]){if(this.terminals_[p]&&p!=1){expected.push("'"+this.terminals_[p]+"'")}}if(this.lexer.showPosition){parseError("Parse error on line "+(yylineno+1)+":\n"+this.lexer.showPosition()+"\nExpecting "+expected.join(", "),{text:this.lexer.match,token:this.terminals_[symbol],line:this.lexer.yylineno,expected:expected})}else{parseError("Parse error on line "+(yylineno+1)+": Unexpected '"+this.terminals_[symbol]+"'",{text:this.lexer.match,token:this.terminals_[symbol],line:this.lexer.yylineno,expected:expected})}}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);++ip;yyleng=this.lexer.yyleng;yytext=this.lexer.yytext;yylineno=this.lexer.yylineno;symbol=lex();vstack.push(null);stack.push(a[1]);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){var cwd=require("file").path(require("file").cwd());if(!args[1]){throw new Error("Usage: "+args[0]+" FILE")}var source=cwd.join(args[1]).read({charset:"utf-8"});this.parse(source)};if(require.main===module){exports.main(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 Scope(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.temp_var=this.parent.temp_var}else{Scope.root=this;this.temp_var="_a"}return this};Scope.root=null;Scope.prototype.find=function find(name){if(this.check(name)){return true}this.variables[name]="var";return false};Scope.prototype.any=function any(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 parameter(name){this.variables[name]="param";return this.variables[name]};Scope.prototype.check=function check(name){if(this.variables[name]){return true}return !!(this.parent&&this.parent.check(name))};Scope.prototype.free_variable=function free_variable(){var ordinal;while(this.check(this.temp_var)){ordinal=1+parseInt(this.temp_var.substr(1),36);this.temp_var="_"+ordinal.toString(36).replace(/\d/g,"a")}this.variables[this.temp_var]="var";return this.temp_var};Scope.prototype.assign=function assign(name,value){this.variables[name]={value:value,assigned:true};return this.variables[name]};Scope.prototype.has_declarations=function has_declarations(body){return body===this.expressions&&this.any(function(k,val){return val==="var"})};Scope.prototype.has_assignments=function has_assignments(body){return body===this.expressions&&this.any(function(k,val){return val.assigned})};Scope.prototype.declared_variables=function declared_variables(){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.assigned_variables=function assigned_variables(){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.compiled_declarations=function compiled_declarations(){return this.declared_variables().join(", ")};Scope.prototype.compiled_assignments=function compiled_assignments(){return this.assigned_variables().join(", ")};return Scope}).call(this)})();(function(){var AccessorNode,ArrayNode,AssignNode,BaseNode,CallNode,ClassNode,ClosureNode,CodeNode,CommentNode,CurryNode,ExistenceNode,Expressions,ExtendsNode,ForNode,IDENTIFIER,IfNode,IndexNode,LiteralNode,ObjectNode,OpNode,ParentheticalNode,PushNode,RangeNode,ReturnNode,Scope,SliceNode,SplatNode,TAB,TRAILING_WHITESPACE,ThrowNode,TryNode,UTILITIES,ValueNode,WhileNode,compact,del,flatten,helpers,literal,merge,statement,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},__slice=Array.prototype.slice,__bind=function(func,obj,args){return function(){return func.apply(obj||{},args?args.concat(__slice.call(arguments,0)):arguments)}};if((typeof process!=="undefined"&&process!==null)){Scope=require("./scope").Scope;helpers=require("./helpers").helpers}else{this.exports=this;helpers=this.helpers;Scope=this.Scope}compact=helpers.compact;flatten=helpers.flatten;merge=helpers.merge;del=helpers.del;statement=function statement(klass,only){klass.prototype.is_statement=function is_statement(){return true};if(only){klass.prototype.is_pure_statement=function is_pure_statement(){return true};return klass.prototype.is_pure_statement}};exports.BaseNode=(function(){BaseNode=function BaseNode(){};BaseNode.prototype.compile=function compile(o){var closure,top;this.options=merge(o||{});this.tab=o.indent;if(!(this instanceof ValueNode)){del(this.options,"operation")}top=this.top_sensitive()?this.options.top:del(this.options,"top");closure=this.is_statement()&&!this.is_pure_statement()&&!top&&!this.options.as_statement&&!(this instanceof CommentNode)&&!this.contains_pure_statement();if(closure){return this.compile_closure(this.options)}else{return this.compile_node(this.options)}};BaseNode.prototype.compile_closure=function compile_closure(o){this.tab=o.indent;o.shared_scope=o.scope;return ClosureNode.wrap(this).compile(o)};BaseNode.prototype.compile_reference=function compile_reference(o){var compiled,reference;reference=literal(o.scope.free_variable());compiled=new AssignNode(reference,this);return[compiled,reference]};BaseNode.prototype.idt=function idt(tabs){var idt,num;idt=this.tab||"";num=(tabs||0)+1;while(num-=1){idt+=TAB}return idt};BaseNode.prototype.make_return=function make_return(){return new ReturnNode(this)};BaseNode.prototype.contains=function contains(block){var _a,_b,_c,node;_b=this.children;for(_a=0,_c=_b.length;_a<_c;_a++){node=_b[_a];if(block(node)){return true}if(node.contains&&node.contains(block)){return true}}return false};BaseNode.prototype.contains_type=function contains_type(type){return this instanceof type||this.contains(function(n){return n instanceof type})};BaseNode.prototype.contains_pure_statement=function contains_pure_statement(){return this.is_pure_statement()||this.contains(function(n){return n.is_pure_statement()})};BaseNode.prototype.traverse=function traverse(block){var _a,_b,_c,_d,node;_a=[];_c=this.children;for(_b=0,_d=_c.length;_b<_d;_b++){node=_c[_b];_a.push((function(){block(node);if(node.traverse){return node.traverse(block)}}).call(this))}return _a};BaseNode.prototype.toString=function toString(idt){var _a,_b,_c,_d,child;idt=idt||"";return"\n"+idt+this.constructor.name+(function(){_a=[];_c=this.children;for(_b=0,_d=_c.length;_b<_d;_b++){child=_c[_b];_a.push(child.toString(idt+TAB))}return _a}).call(this).join("")};BaseNode.prototype.unwrap=function unwrap(){return this};BaseNode.prototype.children=[];BaseNode.prototype.is_statement=function is_statement(){return false};BaseNode.prototype.is_pure_statement=function is_pure_statement(){return false};BaseNode.prototype.top_sensitive=function top_sensitive(){return false};return BaseNode}).call(this);exports.Expressions=(function(){Expressions=function Expressions(nodes){this.children=(this.expressions=compact(flatten(nodes||[])));return this};__extends(Expressions,BaseNode);Expressions.prototype.push=function push(node){this.expressions.push(node);return this};Expressions.prototype.unshift=function unshift(node){this.expressions.unshift(node);return this};Expressions.prototype.unwrap=function unwrap(){if(this.expressions.length===1){return this.expressions[0]}else{return this}};Expressions.prototype.empty=function empty(){return this.expressions.length===0};Expressions.prototype.copy=function copy(){return new Expressions(this.children.slice())};Expressions.prototype.make_return=function make_return(){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}if(!(last.contains_pure_statement())){this.expressions[idx]=last.make_return()}return this};Expressions.prototype.compile=function compile(o){o=o||{};if(o.scope){return Expressions.__superClass__.compile.call(this,o)}else{return this.compile_root(o)}};Expressions.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,node;return(function(){_a=[];_c=this.expressions;for(_b=0,_d=_c.length;_b<_d;_b++){node=_c[_b];_a.push(this.compile_expression(node,merge(o)))}return _a}).call(this).join("\n")};Expressions.prototype.compile_root=function compile_root(o){var code;o.indent=(this.tab=o.no_wrap?"":TAB);o.scope=new Scope(null,this,null);code=o.globals?this.compile_node(o):this.compile_with_declarations(o);code=code.replace(TRAILING_WHITESPACE,"");if(o.no_wrap){return code}else{return"(function(){\n"+code+"\n})();\n"}};Expressions.prototype.compile_with_declarations=function compile_with_declarations(o){var code;code=this.compile_node(o);if(o.scope.has_assignments(this)){code=(""+(this.tab)+"var "+(o.scope.compiled_assignments())+";\n"+code)}if(o.scope.has_declarations(this)){code=(""+(this.tab)+"var "+(o.scope.compiled_declarations())+";\n"+code)}return code};Expressions.prototype.compile_expression=function compile_expression(node,o){var compiled_node;this.tab=o.indent;compiled_node=node.compile(merge(o,{top:true}));if(node.is_statement()){return compiled_node}else{return""+(this.idt())+compiled_node+";"}};return Expressions}).call(this);Expressions.wrap=function wrap(nodes){if(nodes.length===1&&nodes[0] instanceof Expressions){return nodes[0]}return new Expressions(nodes)};statement(Expressions);exports.LiteralNode=(function(){LiteralNode=function LiteralNode(value){this.value=value;return this};__extends(LiteralNode,BaseNode);LiteralNode.prototype.is_statement=function is_statement(){return this.value==="break"||this.value==="continue"};LiteralNode.prototype.is_pure_statement=LiteralNode.prototype.is_statement;LiteralNode.prototype.compile_node=function compile_node(o){var end,idt;idt=this.is_statement()?this.idt():"";end=this.is_statement()?";":"";return""+idt+this.value+end};LiteralNode.prototype.toString=function toString(idt){return' "'+this.value+'"'};return LiteralNode}).call(this);exports.ReturnNode=(function(){ReturnNode=function ReturnNode(expression){this.children=[(this.expression=expression)];return this};__extends(ReturnNode,BaseNode);ReturnNode.prototype.top_sensitive=function top_sensitive(){return true};ReturnNode.prototype.compile_node=function compile_node(o){var expr;expr=this.expression.make_return();if(!(expr instanceof ReturnNode)){return expr.compile(o)}del(o,"top");if(this.expression.is_statement()){o.as_statement=true}return""+(this.tab)+"return "+(this.expression.compile(o))+";"};return ReturnNode}).call(this);statement(ReturnNode,true);exports.ValueNode=(function(){ValueNode=function ValueNode(base,properties){this.children=flatten([(this.base=base),(this.properties=(properties||[]))]);return this};__extends(ValueNode,BaseNode);ValueNode.prototype.SOAK=" == undefined ? undefined : ";ValueNode.prototype.push=function push(prop){this.properties.push(prop);this.children.push(prop);return this};ValueNode.prototype.has_properties=function has_properties(){return !!this.properties.length};ValueNode.prototype.is_array=function is_array(){return this.base instanceof ArrayNode&&!this.has_properties()};ValueNode.prototype.is_object=function is_object(){return this.base instanceof ObjectNode&&!this.has_properties()};ValueNode.prototype.is_splice=function is_splice(){return this.has_properties()&&this.properties[this.properties.length-1] instanceof SliceNode};ValueNode.prototype.make_return=function make_return(){if(this.has_properties()){return ValueNode.__superClass__.make_return.call(this)}else{return this.base.make_return()}};ValueNode.prototype.unwrap=function unwrap(){if(this.properties.length){return this}else{return this.base}};ValueNode.prototype.is_statement=function is_statement(){return this.base.is_statement&&this.base.is_statement()&&!this.has_properties()};ValueNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,baseline,complete,only,op,part,prop,props,soaked,temp;soaked=false;only=del(o,"only_first");op=del(o,"operation");props=only?this.properties.slice(0,this.properties.length-1):this.properties;baseline=this.base.compile(o);if(this.base instanceof ObjectNode&&this.has_properties()){baseline=("("+baseline+")")}complete=(this.last=baseline);_b=props;for(_a=0,_c=_b.length;_a<_c;_a++){prop=_b[_a];this.source=baseline;if(prop.soak_node){soaked=true;if(this.base instanceof CallNode&&prop===props[0]){temp=o.scope.free_variable();complete=("("+temp+" = "+complete+")"+this.SOAK)+(baseline=temp+prop.compile(o))}else{complete=complete+this.SOAK+(baseline+=prop.compile(o))}}else{part=prop.compile(o);baseline+=part;complete+=part;this.last=part}}if(op&&soaked){return"("+complete+")"}else{return complete}};return ValueNode}).call(this);exports.CommentNode=(function(){CommentNode=function CommentNode(lines){this.lines=lines;this;return this};__extends(CommentNode,BaseNode);CommentNode.prototype.make_return=function make_return(){return this};CommentNode.prototype.compile_node=function compile_node(o){return(""+this.tab+"//")+this.lines.join(("\n"+this.tab+"//"))};return CommentNode}).call(this);statement(CommentNode);exports.CallNode=(function(){CallNode=function CallNode(variable,args){this.is_new=false;this.is_super=variable==="super";this.variable=this.is_super?null:variable;this.children=compact(flatten([this.variable,(this.args=(args||[]))]));this.compile_splat_arguments=__bind(SplatNode.compile_mixed_array,this,[this.args]);return this};__extends(CallNode,BaseNode);CallNode.prototype.new_instance=function new_instance(){this.is_new=true;return this};CallNode.prototype.prefix=function prefix(){if(this.is_new){return"new "}else{return""}};CallNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,_e,_f,_g,arg,args;_b=this.args;for(_a=0,_c=_b.length;_a<_c;_a++){arg=_b[_a];if(arg instanceof SplatNode){return this.compile_splat(o)}}args=(function(){_d=[];_f=this.args;for(_e=0,_g=_f.length;_e<_g;_e++){arg=_f[_e];_d.push(arg.compile(o))}return _d}).call(this).join(", ");if(this.is_super){return this.compile_super(args,o)}return""+(this.prefix())+(this.variable.compile(o))+"("+args+")"};CallNode.prototype.compile_super=function compile_super(args,o){var meth,methname;methname=o.scope.method.name;meth=o.scope.method.proto?(""+(o.scope.method.proto)+".__superClass__."+methname):(""+(methname)+".__superClass__.constructor");return""+(meth)+".call(this"+(args.length?", ":"")+args+")"};CallNode.prototype.compile_splat=function compile_splat(o){var meth,obj,temp;meth=this.variable.compile(o);obj=this.variable.source||"this";if(obj.match(/\(/)){temp=o.scope.free_variable();obj=temp;meth=("("+temp+" = "+(this.variable.source)+")"+(this.variable.last))}return""+(this.prefix())+(meth)+".apply("+obj+", "+(this.compile_splat_arguments(o))+")"};return CallNode}).call(this);exports.CurryNode=(function(){CurryNode=function CurryNode(meth,args){this.children=flatten([(this.meth=meth),(this.context=args[0]),(this.args=(args.slice(1)||[]))]);this.compile_splat_arguments=__bind(SplatNode.compile_mixed_array,this,[this.args]);return this};__extends(CurryNode,CallNode);CurryNode.prototype.arguments=function arguments(o){var _a,_b,_c,arg;_b=this.args;for(_a=0,_c=_b.length;_a<_c;_a++){arg=_b[_a];if(arg instanceof SplatNode){return this.compile_splat_arguments(o)}}return(new ArrayNode(this.args)).compile(o)};CurryNode.prototype.compile_node=function compile_node(o){var ref;utility("slice");ref=new ValueNode(literal(utility("bind")));return(new CallNode(ref,[this.meth,this.context,literal(this.arguments(o))])).compile(o)};return CurryNode}).call(this);exports.ExtendsNode=(function(){ExtendsNode=function ExtendsNode(child,parent){this.children=[(this.child=child),(this.parent=parent)];return this};__extends(ExtendsNode,BaseNode);ExtendsNode.prototype.compile_node=function compile_node(o){var ref;ref=new ValueNode(literal(utility("extends")));return(new CallNode(ref,[this.child,this.parent])).compile(o)};return ExtendsNode}).call(this);exports.AccessorNode=(function(){AccessorNode=function AccessorNode(name,tag){this.children=[(this.name=name)];this.prototype=tag==="prototype";this.soak_node=tag==="soak";this;return this};__extends(AccessorNode,BaseNode);AccessorNode.prototype.compile_node=function compile_node(o){var proto_part;proto_part=this.prototype?"prototype.":"";return"."+proto_part+(this.name.compile(o))};return AccessorNode}).call(this);exports.IndexNode=(function(){IndexNode=function IndexNode(index,tag){this.children=[(this.index=index)];this.soak_node=tag==="soak";return this};__extends(IndexNode,BaseNode);IndexNode.prototype.compile_node=function compile_node(o){var idx;idx=this.index.compile(o);return"["+idx+"]"};return IndexNode}).call(this);exports.RangeNode=(function(){RangeNode=function RangeNode(from,to,exclusive){this.children=[(this.from=from),(this.to=to)];this.exclusive=!!exclusive;return this};__extends(RangeNode,BaseNode);RangeNode.prototype.compile_variables=function compile_variables(o){var _a,_b,from,to;this.tab=o.indent;_a=[o.scope.free_variable(),o.scope.free_variable()];this.from_var=_a[0];this.to_var=_a[1];_b=[this.from.compile(o),this.to.compile(o)];from=_b[0];to=_b[1];return""+this.from_var+" = "+from+"; "+this.to_var+" = "+to+";\n"+this.tab};RangeNode.prototype.compile_node=function compile_node(o){var compare,equals,idx,incr,intro,step,vars;if(!(o.index)){return this.compile_array(o)}idx=del(o,"index");step=del(o,"step");vars=(""+idx+" = "+this.from_var);step=step?step.compile(o):"1";equals=this.exclusive?"":"=";intro=("("+this.from_var+" <= "+this.to_var+" ? "+idx);compare=(""+intro+" <"+equals+" "+this.to_var+" : "+idx+" >"+equals+" "+this.to_var+")");incr=(""+intro+" += "+step+" : "+idx+" -= "+step+")");return""+vars+"; "+compare+"; "+incr};RangeNode.prototype.compile_array=function compile_array(o){var arr,body,name;name=o.scope.free_variable();body=Expressions.wrap([literal(name)]);arr=Expressions.wrap([new ForNode(body,{source:(new ValueNode(this))},literal(name))]);return(new ParentheticalNode(new CallNode(new CodeNode([],arr.make_return())))).compile(o)};return RangeNode}).call(this);exports.SliceNode=(function(){SliceNode=function SliceNode(range){this.children=[(this.range=range)];this;return this};__extends(SliceNode,BaseNode);SliceNode.prototype.compile_node=function compile_node(o){var from,plus_part,to;from=this.range.from.compile(o);to=this.range.to.compile(o);plus_part=this.range.exclusive?"":" + 1";return".slice("+from+", "+to+plus_part+")"};return SliceNode}).call(this);exports.ObjectNode=(function(){ObjectNode=function ObjectNode(props){this.children=(this.objects=(this.properties=props||[]));return this};__extends(ObjectNode,BaseNode);ObjectNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,_e,_f,_g,i,indent,inner,join,last_noncom,non_comments,prop,props;o.indent=this.idt(1);non_comments=(function(){_a=[];_c=this.properties;for(_b=0,_d=_c.length;_b<_d;_b++){prop=_c[_b];!(prop instanceof CommentNode)?_a.push(prop):null}return _a}).call(this);last_noncom=non_comments[non_comments.length-1];props=(function(){_e=[];_f=this.properties;for(i=0,_g=_f.length;i<_g;i++){prop=_f[i];_e.push((function(){join=",\n";if((prop===last_noncom)||(prop instanceof CommentNode)){join="\n"}if(i===this.properties.length-1){join=""}indent=prop instanceof CommentNode?"":this.idt(1);return indent+prop.compile(o)+join}).call(this))}return _e}).call(this);props=props.join("");inner=props?"\n"+props+"\n"+this.idt():"";return"{"+inner+"}"};return ObjectNode}).call(this);exports.ArrayNode=(function(){ArrayNode=function ArrayNode(objects){this.children=(this.objects=objects||[]);this.compile_splat_literal=__bind(SplatNode.compile_mixed_array,this,[this.objects]);return this};__extends(ArrayNode,BaseNode);ArrayNode.prototype.compile_node=function compile_node(o){var _a,_b,code,ending,i,obj,objects;o.indent=this.idt(1);objects=[];_a=this.objects;for(i=0,_b=_a.length;i<_b;i++){obj=_a[i];code=obj.compile(o);if(obj instanceof SplatNode){return this.compile_splat_literal(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("");ending=objects.indexOf("\n")>=0?("\n"+this.tab+"]"):"]";return"["+objects+ending};return ArrayNode}).call(this);exports.ClassNode=(function(){ClassNode=function ClassNode(variable,parent,props){this.children=compact(flatten([(this.variable=variable),(this.parent=parent),(this.properties=props||[])]));this.returns=false;return this};__extends(ClassNode,BaseNode);ClassNode.prototype.make_return=function make_return(){this.returns=true;return this};ClassNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,access,applied,construct,extension,func,prop,props,pvar,returns,val;extension=this.parent&&new ExtendsNode(this.variable,this.parent);constructor=null;props=new Expressions();o.top=true;_b=this.properties;for(_a=0,_c=_b.length;_a<_c;_a++){prop=_b[_a];_d=[prop.variable,prop.value];pvar=_d[0];func=_d[1];if(pvar&&pvar.base.value==="constructor"&&func instanceof CodeNode){func.body.push(new ReturnNode(literal("this")));constructor=new AssignNode(this.variable,func)}else{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(!constructor){if(this.parent){applied=new ValueNode(this.parent,[new AccessorNode(literal("apply"))]);constructor=new AssignNode(this.variable,new CodeNode([],new Expressions([new CallNode(applied,[literal("this"),literal("arguments")])])))}else{constructor=new AssignNode(this.variable,new CodeNode())}}construct=this.idt()+constructor.compile(o)+";\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}).call(this);statement(ClassNode);exports.AssignNode=(function(){AssignNode=function AssignNode(variable,value,context){this.children=[(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.top_sensitive=function top_sensitive(){return true};AssignNode.prototype.is_value=function is_value(){return this.variable instanceof ValueNode};AssignNode.prototype.make_return=function make_return(){return new Expressions([this,new ReturnNode(this.variable)])};AssignNode.prototype.is_statement=function is_statement(){return this.is_value()&&(this.variable.is_array()||this.variable.is_object())};AssignNode.prototype.compile_node=function compile_node(o){var last,match,name,proto,stmt,top,val;top=del(o,"top");if(this.is_statement()){return this.compile_pattern_match(o)}if(this.is_value()&&this.variable.is_splice()){return this.compile_splice(o)}stmt=del(o,"as_statement");name=this.variable.compile(o);last=this.is_value()?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.is_value()&&this.variable.has_properties())){o.scope.find(name)}val=(""+name+" = "+val);if(stmt){return(""+this.tab+val+";")}if(top){return val}else{return"("+val+")"}};AssignNode.prototype.compile_pattern_match=function compile_pattern_match(o){var _a,_b,_c,access_class,assigns,code,i,idx,obj,oindex,olength,splat,val,val_var,value;val_var=o.scope.free_variable();value=this.value.is_statement()?ClosureNode.wrap(this.value):this.value;assigns=[(""+this.tab+val_var+" = "+(value.compile(o))+";")];o.top=true;o.as_statement=true;splat=false;_a=this.variable.base.objects;for(i=0,_b=_a.length;i<_b;i++){obj=_a[i];idx=i;if(this.variable.is_object()){_c=[obj.value,obj.variable.base];obj=_c[0];idx=_c[1]}access_class=this.variable.is_array()?IndexNode:AccessorNode;if(obj instanceof SplatNode&&!splat){val=literal(obj.compile_value(o,val_var,(oindex=this.variable.base.objects.indexOf(obj)),(olength=this.variable.base.objects.length)-oindex-1));splat=true}else{if(typeof idx!=="object"){idx=literal(splat?(""+(val_var)+".length - "+(olength-idx)):idx)}val=new ValueNode(literal(val_var),[new access_class(idx)])}assigns.push(new AssignNode(obj,val).compile(o))}code=assigns.join("\n");return code};AssignNode.prototype.compile_splice=function compile_splice(o){var from,l,name,plus,range,to,val;name=this.variable.compile(merge(o,{only_first: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}).call(this);exports.CodeNode=(function(){CodeNode=function CodeNode(params,body,tag){this.params=params||[];this.body=body||new Expressions();this.bound=tag==="boundfunc";return this};__extends(CodeNode,BaseNode);CodeNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,_e,_f,_g,_h,_i,_j,code,func,i,name_part,param,params,ref,shared_scope,splat,top;shared_scope=del(o,"shared_scope");top=del(o,"top");o.scope=shared_scope||new Scope(o.scope,this.body,this);o.top=true;o.indent=this.idt(this.bound?2:1);del(o,"no_wrap");del(o,"globals");i=0;splat=undefined;params=[];_b=this.params;for(_a=0,_c=_b.length;_a<_c;_a++){param=_b[_a];if(param instanceof SplatNode&&!(typeof splat!=="undefined"&&splat!==null)){splat=param;splat.index=i;this.body.unshift(splat);splat.trailings=[]}else{if((typeof splat!=="undefined"&&splat!==null)){splat.trailings.push(param)}else{params.push(param)}}i+=1}params=(function(){_d=[];_f=params;for(_e=0,_g=_f.length;_e<_g;_e++){param=_f[_e];_d.push(param.compile(o))}return _d}).call(this);this.body.make_return();_i=params;for(_h=0,_j=_i.length;_h<_j;_h++){param=_i[_h];(o.scope.parameter(param))}code=this.body.expressions.length?("\n"+(this.body.compile_with_declarations(o))+"\n"):"";name_part=this.name?" "+this.name:"";func=("function"+(this.bound?"":name_part)+"("+(params.join(", "))+") {"+code+(this.idt(this.bound?1:0))+"}");if(top&&!this.bound){func=("("+func+")")}if(!(this.bound)){return func}utility("slice");ref=new ValueNode(literal(utility("bind")));return(new CallNode(ref,[literal(func),literal("this")])).compile(o)};CodeNode.prototype.top_sensitive=function top_sensitive(){return true};CodeNode.prototype.real_children=function real_children(){return flatten([this.params,this.body.expressions])};CodeNode.prototype.traverse=function traverse(block){var _a,_b,_c,_d,child;block(this);_a=[];_c=this.real_children();for(_b=0,_d=_c.length;_b<_d;_b++){child=_c[_b];_a.push(child.traverse(block))}return _a};CodeNode.prototype.toString=function toString(idt){var _a,_b,_c,_d,child,children;idt=idt||"";children=(function(){_a=[];_c=this.real_children();for(_b=0,_d=_c.length;_b<_d;_b++){child=_c[_b];_a.push(child.toString(idt+TAB))}return _a}).call(this).join("");return"\n"+idt+children};return CodeNode}).call(this);exports.SplatNode=(function(){SplatNode=function SplatNode(name){if(!(name.compile)){name=literal(name)}this.children=[(this.name=name)];return this};__extends(SplatNode,BaseNode);SplatNode.prototype.compile_node=function compile_node(o){var _a;if((typeof(_a=this.index)!=="undefined"&&_a!==null)){return this.compile_param(o)}else{return this.name.compile(o)}};SplatNode.prototype.compile_param=function compile_param(o){var _a,_b,_c,i,name,trailing;name=this.name.compile(o);o.scope.find(name);i=0;_b=this.trailings;for(_a=0,_c=_b.length;_a<_c;_a++){trailing=_b[_a];o.scope.assign(trailing.compile(o),("arguments[arguments.length - "+this.trailings.length+" + "+i+"]"));i+=1}return""+name+" = "+(utility("slice"))+".call(arguments, "+this.index+", arguments.length - "+(this.trailings.length)+")"};SplatNode.prototype.compile_value=function compile_value(o,name,index,trailings){var trail;trail=trailings?(", "+(name)+".length - "+trailings):"";return""+(utility("slice"))+".call("+name+", "+index+trail+")"};SplatNode.compile_mixed_array=function compile_mixed_array(list,o){var _a,_b,_c,arg,args,code,i,prev;args=[];i=0;_b=list;for(_a=0,_c=_b.length;_a<_c;_a++){arg=_b[_a];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 WhileNode(condition,opts){this.children=[(this.condition=condition)];this.filter=opts&&opts.filter;return this};__extends(WhileNode,BaseNode);WhileNode.prototype.add_body=function add_body(body){this.children.push((this.body=body));return this};WhileNode.prototype.make_return=function make_return(){this.returns=true;return this};WhileNode.prototype.top_sensitive=function top_sensitive(){return true};WhileNode.prototype.compile_node=function compile_node(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.free_variable();set=(""+this.tab+rvar+" = [];\n");if(this.body){this.body=PushNode.wrap(rvar,this.body)}}pre=(""+set+(this.tab)+"while ("+cond+")");if(!this.body){return(""+pre+" null;"+post)}if(this.filter){this.body=Expressions.wrap([new IfNode(this.filter,this.body)])}this.returns?(post=new ReturnNode(literal(rvar)).compile(merge(o,{indent:this.idt()}))):(post="");return""+pre+" {\n"+(this.body.compile(o))+"\n"+this.tab+"}\n"+post};return WhileNode}).call(this);statement(WhileNode);exports.OpNode=(function(){OpNode=function OpNode(operator,first,second,flip){this.constructor.name+=" "+operator;this.children=compact([(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.is_unary=function is_unary(){return !this.second};OpNode.prototype.is_chainable=function is_chainable(){return this.CHAINABLE.indexOf(this.operator)>=0};OpNode.prototype.compile_node=function compile_node(o){o.operation=true;if(this.is_chainable()&&this.first.unwrap() instanceof OpNode&&this.first.unwrap().is_chainable()){return this.compile_chain(o)}if(this.ASSIGNMENT.indexOf(this.operator)>=0){return this.compile_assignment(o)}if(this.is_unary()){return this.compile_unary(o)}if(this.operator==="?"){return this.compile_existence(o)}return[this.first.compile(o),this.operator,this.second.compile(o)].join(" ")};OpNode.prototype.compile_chain=function compile_chain(o){var _a,_b,first,second,shared;shared=this.first.unwrap().second;if(shared.contains_type(CallNode)){_a=shared.compile_reference(o);this.first.second=_a[0];shared=_a[1]}_b=[this.first.compile(o),this.second.compile(o),shared.compile(o)];first=_b[0];second=_b[1];shared=_b[2];return"("+first+") && ("+shared+" "+this.operator+" "+second+")"};OpNode.prototype.compile_assignment=function compile_assignment(o){var _a,first,second;_a=[this.first.compile(o),this.second.compile(o)];first=_a[0];second=_a[1];if(first.match(IDENTIFIER)){o.scope.find(first)}if(this.operator==="?="){return(""+first+" = "+(ExistenceNode.compile_test(o,this.first))+" ? "+first+" : "+second)}return""+first+" = "+first+" "+(this.operator.substr(0,2))+" "+second};OpNode.prototype.compile_existence=function compile_existence(o){var _a,first,second,test;_a=[this.first.compile(o),this.second.compile(o)];first=_a[0];second=_a[1];test=ExistenceNode.compile_test(o,this.first);return""+test+" ? "+first+" : "+second};OpNode.prototype.compile_unary=function compile_unary(o){var parts,space;space=this.PREFIX_OPERATORS.indexOf(this.operator)>=0?" ":"";parts=[this.operator,space,this.first.compile(o)];if(this.flip){parts=parts.reverse()}return parts.join("")};return OpNode}).call(this);exports.TryNode=(function(){TryNode=function TryNode(attempt,error,recovery,ensure){this.children=compact([(this.attempt=attempt),(this.recovery=recovery),(this.ensure=ensure)]);this.error=error;this;return this};__extends(TryNode,BaseNode);TryNode.prototype.make_return=function make_return(){if(this.attempt){this.attempt=this.attempt.make_return()}if(this.recovery){this.recovery=this.recovery.make_return()}return this};TryNode.prototype.compile_node=function compile_node(o){var attempt_part,catch_part,error_part,finally_part;o.indent=this.idt(1);o.top=true;attempt_part=this.attempt.compile(o);error_part=this.error?(" ("+(this.error.compile(o))+") "):" ";catch_part=this.recovery?(" catch"+error_part+"{\n"+(this.recovery.compile(o))+"\n"+this.tab+"}"):"";finally_part=(this.ensure||"")&&" finally {\n"+this.ensure.compile(merge(o))+("\n"+this.tab+"}");return""+(this.tab)+"try {\n"+attempt_part+"\n"+this.tab+"}"+catch_part+finally_part};return TryNode}).call(this);statement(TryNode);exports.ThrowNode=(function(){ThrowNode=function ThrowNode(expression){this.children=[(this.expression=expression)];return this};__extends(ThrowNode,BaseNode);ThrowNode.prototype.make_return=function make_return(){return this};ThrowNode.prototype.compile_node=function compile_node(o){return""+(this.tab)+"throw "+(this.expression.compile(o))+";"};return ThrowNode}).call(this);statement(ThrowNode);exports.ExistenceNode=(function(){ExistenceNode=function ExistenceNode(expression){this.children=[(this.expression=expression)];return this};__extends(ExistenceNode,BaseNode);ExistenceNode.prototype.compile_node=function compile_node(o){return ExistenceNode.compile_test(o,this.expression)};ExistenceNode.compile_test=function compile_test(o,variable){var _a,_b,_c,first,second;_a=[variable,variable];first=_a[0];second=_a[1];if(variable instanceof CallNode||(variable instanceof ValueNode&&variable.has_properties())){_b=variable.compile_reference(o);first=_b[0];second=_b[1]}_c=[first.compile(o),second.compile(o)];first=_c[0];second=_c[1];return"(typeof "+first+' !== "undefined" && '+second+" !== null)"};return ExistenceNode}).call(this);exports.ParentheticalNode=(function(){ParentheticalNode=function ParentheticalNode(expression){this.children=[(this.expression=expression)];return this};__extends(ParentheticalNode,BaseNode);ParentheticalNode.prototype.is_statement=function is_statement(){return this.expression.is_statement()};ParentheticalNode.prototype.make_return=function make_return(){return this.expression.make_return()};ParentheticalNode.prototype.compile_node=function compile_node(o){var code,l;code=this.expression.compile(o);if(this.is_statement()){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}).call(this);exports.ForNode=(function(){ForNode=function ForNode(body,source,name,index){var _a;this.body=body;this.name=name;this.index=index||null;this.source=source.source;this.filter=source.filter;this.step=source.step;this.object=!!source.object;if(this.object){_a=[this.index,this.name];this.name=_a[0];this.index=_a[1]}this.children=compact([this.body,this.source,this.filter]);this.returns=false;return this};__extends(ForNode,BaseNode);ForNode.prototype.top_sensitive=function top_sensitive(){return true};ForNode.prototype.make_return=function make_return(){this.returns=true;return this};ForNode.prototype.compile_return_value=function compile_return_value(val,o){if(this.returns){return new ReturnNode(literal(val)).compile(o)}return val||""};ForNode.prototype.compile_node=function compile_node(o){var body,body_dent,close,for_part,index,index_var,ivar,lvar,name,range,return_result,rvar,scope,set_result,source,source_part,step_part,svar,top_level,var_part,vars;top_level=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;scope=o.scope;name=this.name&&this.name.compile(o);index=this.index&&this.index.compile(o);if(name){scope.find(name)}if(index){scope.find(index)}body_dent=this.idt(1);if(!(top_level)){rvar=scope.free_variable()}ivar=range?name:index||scope.free_variable();var_part="";body=Expressions.wrap([this.body]);if(range){index_var=scope.free_variable();source_part=source.compile_variables(o);for_part=source.compile(merge(o,{index:ivar,step:this.step}));for_part=(""+index_var+" = 0, "+for_part+", "+index_var+"++")}else{svar=scope.free_variable();index_var=null;source_part=(""+svar+" = "+(this.source.compile(o))+";\n"+this.tab);if(name){var_part=(""+body_dent+name+" = "+svar+"["+ivar+"];\n")}if(!this.object){lvar=scope.free_variable();step_part=this.step?(""+ivar+" += "+(this.step.compile(o))):(""+ivar+"++");for_part=(""+ivar+" = 0, "+lvar+" = "+(svar)+".length; "+ivar+" < "+lvar+"; "+step_part)}}set_result=rvar?this.idt()+rvar+" = []; ":this.idt();return_result=this.compile_return_value(rvar,o);if(top_level&&body.contains(function(n){return n instanceof CodeNode})){body=ClosureNode.wrap(body,true)}if(!(top_level)){body=PushNode.wrap(rvar,body)}this.filter?(body=Expressions.wrap([new IfNode(this.filter,body)])):null;this.object?(for_part=(""+ivar+" in "+svar+") { if ("+(utility("hasProp"))+".call("+svar+", "+ivar+")")):null;body=body.compile(merge(o,{indent:body_dent,top:true}));vars=range?name:(""+name+", "+ivar);close=this.object?"}}\n":"}\n";return""+set_result+(source_part)+"for ("+for_part+") {\n"+var_part+body+"\n"+this.tab+close+return_result};return ForNode}).call(this);statement(ForNode);exports.IfNode=(function(){IfNode=function IfNode(condition,body,else_body,tags){this.condition=condition;this.body=body&&body.unwrap();this.else_body=else_body&&else_body.unwrap();this.children=compact(flatten([this.condition,this.body,this.else_body]));this.tags=tags||{};if(this.condition instanceof Array){this.multiple=true}if(this.tags.invert){this.condition=new OpNode("!",new ParentheticalNode(this.condition))}return this};__extends(IfNode,BaseNode);IfNode.prototype.push=function push(else_body){var eb;eb=else_body.unwrap();this.else_body?this.else_body.push(eb):(this.else_body=eb);return this};IfNode.prototype.force_statement=function force_statement(){this.tags.statement=true;return this};IfNode.prototype.rewrite_condition=function rewrite_condition(expression){this.switcher=expression;return this};IfNode.prototype.rewrite_switch=function rewrite_switch(o){var _a,_b,_c,assigner,cond,i,variable;assigner=this.switcher;if(!(this.switcher.unwrap() instanceof LiteralNode)){variable=literal(o.scope.free_variable());assigner=new AssignNode(variable,this.switcher);this.switcher=variable}this.condition=(function(){if(this.multiple){_a=[];_b=this.condition;for(i=0,_c=_b.length;i<_c;i++){cond=_b[i];_a.push(new OpNode("==",(i===0?assigner:this.switcher),cond))}return _a}else{return new OpNode("==",assigner,this.condition)}}).call(this);if(this.is_chain()){this.else_body.rewrite_condition(this.switcher)}return this};IfNode.prototype.add_else=function add_else(exprs,statement){if(this.is_chain()){this.else_body.add_else(exprs,statement)}else{if(!(statement)){exprs=exprs.unwrap()}this.children.push((this.else_body=exprs))}return this};IfNode.prototype.is_chain=function is_chain(){return this.chain=this.chain||this.else_body&&this.else_body instanceof IfNode};IfNode.prototype.is_statement=function is_statement(){return this.statement=this.statement||!!(this.comment||this.tags.statement||this.body.is_statement()||(this.else_body&&this.else_body.is_statement()))};IfNode.prototype.compile_condition=function compile_condition(o){var _a,_b,_c,_d,cond;return(function(){_a=[];_c=flatten([this.condition]);for(_b=0,_d=_c.length;_b<_d;_b++){cond=_c[_b];_a.push(cond.compile(o))}return _a}).call(this).join(" || ")};IfNode.prototype.compile_node=function compile_node(o){if(this.is_statement()){return this.compile_statement(o)}else{return this.compile_ternary(o)}};IfNode.prototype.make_return=function make_return(){this.body=this.body&&this.body.make_return();this.else_body=this.else_body&&this.else_body.make_return();return this};IfNode.prototype.compile_statement=function compile_statement(o){var body,child,com_dent,cond_o,else_part,if_dent,if_part,prefix;if(this.switcher){this.rewrite_switch(o)}child=del(o,"chain_child");cond_o=merge(o);o.indent=this.idt(1);o.top=true;if_dent=child?"":this.idt();com_dent=child?this.idt():"";prefix=this.comment?(""+(this.comment.compile(cond_o))+"\n"+com_dent):"";body=Expressions.wrap([this.body]).compile(o);if_part=(""+prefix+(if_dent)+"if ("+(this.compile_condition(cond_o))+") {\n"+body+"\n"+this.tab+"}");if(!(this.else_body)){return if_part}else_part=this.is_chain()?" else "+this.else_body.compile(merge(o,{indent:this.idt(),chain_child:true})):(" else {\n"+(Expressions.wrap([this.else_body]).compile(o))+"\n"+this.tab+"}");return""+if_part+else_part};IfNode.prototype.compile_ternary=function compile_ternary(o){var else_part,if_part;if_part=this.condition.compile(o)+" ? "+this.body.compile(o);else_part=this.else_body?this.else_body.compile(o):"null";return""+if_part+" : "+else_part};return IfNode}).call(this);PushNode=(exports.PushNode={wrap:function wrap(array,expressions){var expr;expr=expressions.unwrap();if(expr.is_pure_statement()||expr.contains_pure_statement()){return expressions}return Expressions.wrap([new CallNode(new ValueNode(literal(array),[new AccessorNode(literal("push"))]),[expr])])}});ClosureNode=(exports.ClosureNode={wrap:function wrap(expressions,statement){var call,func;if(expressions.contains_pure_statement()){return expressions}func=new ParentheticalNode(new CodeNode([],Expressions.wrap([expressions])));call=new CallNode(new ValueNode(func,[new AccessorNode(literal("call"))]),[literal("this")]);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 }",__bind:"function(func, obj, args) {\n return function() {\n return func.apply(obj || {}, args ? args.concat(__slice.call(arguments, 0)) : arguments);\n };\n }",__hasProp:"Object.prototype.hasOwnProperty",__slice:"Array.prototype.slice"};TAB=" ";TRAILING_WHITESPACE=/\s+$/gm;IDENTIFIER=/^[a-zA-Z\$_](\w|\$)*$/;literal=function literal(name){return new LiteralNode(name)};utility=function utility(name){var ref;ref=("__"+name);Scope.root.assign(ref,UTILITIES[ref]);return ref}})();(function(){var Lexer,compile,helpers,lexer,parser,path,process_scripts;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.6.0";lexer=new Lexer();exports.compile=(compile=function compile(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 tokens(code){return lexer.tokenize(code)};exports.nodes=function nodes(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))});exports.extend=function extend(func){return Lexer.extensions.push(func)};parser.lexer={lex:function lex(){var token;token=this.tokens[this.pos]||[""];this.pos+=1;this.yylineno=token[2];this.yytext=token[1];return token[0]},setInput:function setInput(tokens){this.tokens=tokens;this.pos=0;return this.pos},upcomingInput:function upcomingInput(){return""},showPosition:function showPosition(){return this.pos}};if((typeof document!=="undefined"&&document!==null)&&document.getElementsByTagName){process_scripts=function process_scripts(){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",process_scripts,false)}else{if(window.attachEvent){window.attachEvent("onload",process_scripts)}}}})(); \ No newline at end of file diff --git a/lib/lexer.js b/lib/lexer.js index 7435ac8014..16fd99d99d 100644 --- a/lib/lexer.js +++ b/lib/lexer.js @@ -551,13 +551,13 @@ return this.tokens.push([tag, value, this.line]); }; // Peek at a tag in the current token stream. - Lexer.prototype.tag = function tag(index, tag) { + Lexer.prototype.tag = function tag(index, new_tag) { var tok; if (!(tok = this.prev(index))) { return null; } - if ((typeof tag !== "undefined" && tag !== null)) { - tok[0] = tag; + if ((typeof new_tag !== "undefined" && new_tag !== null)) { + tok[0] = new_tag; return tok[0]; } return tok[0]; diff --git a/src/lexer.coffee b/src/lexer.coffee index 36001cbc58..f9654ec0dd 100644 --- a/src/lexer.coffee +++ b/src/lexer.coffee @@ -399,9 +399,9 @@ exports.Lexer: class Lexer @tokens.push [tag, value, @line] # Peek at a tag in the current token stream. - tag: (index, tag) -> + tag: (index, new_tag) -> return unless tok: @prev index - return tok[0]: tag if tag? + return tok[0]: new_tag if new_tag? tok[0] # Peek at a value in the current token stream. From 3eedf8ed1bfd05c2fda82e3a351ee3fee3fd72fa Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Tue, 6 Apr 2010 21:09:23 -0400 Subject: [PATCH 07/19] Adding noonat to the contributor list --- README | 1 + 1 file changed, 1 insertion(+) diff --git a/README b/README index 68ca7c3e05..c17aa615c9 100644 --- a/README +++ b/README @@ -54,6 +54,7 @@ Chris Lloyd (chrislloyd) Matt Lyon (mattly) Jeff Olson (olsonjeffery) + Nathan Ostgard (noonat) Samuel Reis (grgh) Tom Robinson (tlrobinson) Tim Smart (Tim-Smart) From 491ad6de9507da821bf7e0d2687bcb33494d04ee Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sat, 10 Apr 2010 13:42:39 -0400 Subject: [PATCH 08/19] adding webchat to the doc page --- documentation/index.html.erb | 27 ++++++++++++-- documentation/js/interpolation.js | 2 +- documentation/js/interpolation_expression.js | 4 +- index.html | 39 +++++++++++++++----- 4 files changed, 55 insertions(+), 17 deletions(-) diff --git a/documentation/index.html.erb b/documentation/index.html.erb index 9ccb7c316a..d64cfb60df 100644 --- a/documentation/index.html.erb +++ b/documentation/index.html.erb @@ -63,6 +63,7 @@ Cake, and Cakefiles "text/coffeescript" Script Tags Resources + Web Chat (IRC) Change Log @@ -432,7 +433,7 @@ coffee --print app/scripts/*.coffee > concatenation.js <%= code_for('conditionals') %>

You can assign a variable to a half-expression to perform an operation - like Ruby's ||=, which only assigns a value to a variable + like Ruby's ||=, which only assigns a value to a variable if the variable's current value is falsy.

@@ -883,15 +884,30 @@ coffee --print app/scripts/*.coffee > concatenation.js +

+ + Web Chat (IRC) +

+ +

+ Quick help and advice can usually be found in the CoffeeScript IRC room. + Join #coffeescript on irc.freenode.net, or click the + button below to open a webchat session on this page. +

+ +

+ +

+

Change Log

- +

0.6.0 - Trailing commas are now allowed, a-la Python. Static - properties may be assigned directly within class definitions, + Trailing commas are now allowed, a-la Python. Static + properties may be assigned directly within class definitions, using @property notation.

@@ -1159,6 +1175,9 @@ coffee --print app/scripts/*.coffee > concatenation.js $('.navigation .minimize').click -> document.body.className: 'minimized' + $('#open_webchat').click -> + $(this).replaceWith $('') + compile_source() diff --git a/documentation/js/interpolation.js b/documentation/js/interpolation.js index adcc4beeae..369d5c8ad4 100644 --- a/documentation/js/interpolation.js +++ b/documentation/js/interpolation.js @@ -1,5 +1,5 @@ (function(){ var author, quote; author = "Wittgenstein"; - quote = "A picture is a fact. -- " + author; + quote = ("A picture is a fact. -- " + author); })(); diff --git a/documentation/js/interpolation_expression.js b/documentation/js/interpolation_expression.js index 88fff5914d..fe7e523948 100644 --- a/documentation/js/interpolation_expression.js +++ b/documentation/js/interpolation_expression.js @@ -1,6 +1,6 @@ (function(){ var dates, sentence, sep; - sentence = "" + (22 / 7) + " is a decent approximation of π"; + sentence = ("" + (22 / 7) + " is a decent approximation of π"); sep = "[.\\/\\- ]"; - dates = (new RegExp("\\d+" + sep + "\\d+" + sep + "\\d+", "g")); + dates = (new RegExp(("\\d+" + sep + "\\d+" + sep + "\\d+"), "g")); })(); diff --git a/index.html b/index.html index 1de841c849..d60f984789 100644 --- a/index.html +++ b/index.html @@ -49,6 +49,7 @@ Cake, and Cakefiles "text/coffeescript" Script Tags Resources + Web Chat (IRC) Change Log @@ -626,7 +627,7 @@


You can assign a variable to a half-expression to perform an operation - like Ruby's ||=, which only assigns a value to a variable + like Ruby's ||=, which only assigns a value to a variable if the variable's current value is falsy.

@@ -1643,10 +1644,10 @@

quote: "A picture is a fact. -- $author"
var author, quote;
 author = "Wittgenstein";
-quote = "A picture is a fact. -- " + author;
+quote = ("A picture is a fact. -- " + author);
 

And arbitrary expressions can be interpolated by using brackets ${ ... }
@@ -1659,13 +1660,13 @@

var dates, sentence, sep;
-sentence = "" + (22 / 7) + " is a decent approximation of π";
+sentence = ("" + (22 / 7) + " is a decent approximation of π");
 sep = "[.\\/\\- ]";
-dates = (new RegExp("\\d+" + sep + "\\d+" + sep + "\\d+", "g"));
+dates = (new RegExp(("\\d+" + sep + "\\d+" + sep + "\\d+"), "g"));
 

@@ -1831,15 +1832,30 @@

+

+ + Web Chat (IRC) +

+ +

+ Quick help and advice can usually be found in the CoffeeScript IRC room. + Join #coffeescript on irc.freenode.net, or click the + button below to open a webchat session on this page. +

+ +

+ +

+

Change Log

- +

0.6.0 - Trailing commas are now allowed, a-la Python. Static - properties may be assigned directly within class definitions, + Trailing commas are now allowed, a-la Python. Static + properties may be assigned directly within class definitions, using @property notation.

@@ -2107,6 +2123,9 @@

$('.navigation .minimize').click -> document.body.className: 'minimized' + $('#open_webchat').click -> + $(this).replaceWith $('') + compile_source() From f36acc27e5c511570619ba2d8e4536c02ce3035d Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sat, 10 Apr 2010 14:20:32 -0400 Subject: [PATCH 09/19] safely preserving the arguments object through generated closure wrappers. --- lib/nodes.js | 17 +++++++++++++---- src/nodes.coffee | 9 +++++++-- test/test_comprehensions.coffee | 7 +++++++ 3 files changed, 27 insertions(+), 6 deletions(-) diff --git a/lib/nodes.js b/lib/nodes.js index 6999a763a6..30e2922cc2 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -582,7 +582,7 @@ return (new CallNode(ref, [this.meth, this.context, literal(this.arguments(o))])).compile(o); }; return CurryNode; - }).call(this); + }).apply(this, arguments); //### ExtendsNode // Node to extend an object's prototype with an ancestor object. // After `goog.inherits` from the @@ -1697,14 +1697,23 @@ // 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. + // in which case, no dice. If the body mentions `arguments`, then make sure + // that the closure wrapper preserves the original arguments. wrap: function wrap(expressions, statement) { - var call, func; + var args, call, func, mentions_args, meth; if (expressions.contains_pure_statement()) { return expressions; } + mentions_args = expressions.contains(function(n) { + return (n instanceof LiteralNode) && (n.value === 'arguments'); + }); + meth = literal(mentions_args ? 'apply' : 'call'); + args = [literal('this')]; + if (mentions_args) { + args.push(literal('arguments')); + } func = new ParentheticalNode(new CodeNode([], Expressions.wrap([expressions]))); - call = new CallNode(new ValueNode(func, [new AccessorNode(literal('call'))]), [literal('this')]); + call = new CallNode(new ValueNode(func, [new AccessorNode(meth)]), args); if (statement) { return Expressions.wrap([call]); } else { diff --git a/src/nodes.coffee b/src/nodes.coffee index 3e73a5103c..c68b50c283 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -1263,11 +1263,16 @@ PushNode: exports.PushNode: { ClosureNode: exports.ClosureNode: { # Wrap the expressions body, unless it contains a pure statement, - # in which case, no dice. + # in which case, no dice. If the body mentions `arguments`, then make sure + # that the closure wrapper preserves the original arguments. wrap: (expressions, statement) -> return expressions if expressions.contains_pure_statement() + mentions_args: expressions.contains (n) -> (n instanceof LiteralNode) and (n.value is 'arguments') + meth: literal(if mentions_args then 'apply' else 'call') + args: [literal('this')] + args.push literal 'arguments' if mentions_args func: new ParentheticalNode(new CodeNode([], Expressions.wrap([expressions]))) - call: new CallNode(new ValueNode(func, [new AccessorNode(literal('call'))]), [literal('this')]) + call: new CallNode(new ValueNode(func, [new AccessorNode(meth)]), args) if statement then Expressions.wrap([call]) else call } diff --git a/test/test_comprehensions.coffee b/test/test_comprehensions.coffee index 10be827315..35f9bea829 100644 --- a/test/test_comprehensions.coffee +++ b/test/test_comprehensions.coffee @@ -92,3 +92,10 @@ store: (obj) -> result: obj store (x * 2 for x in [3, 2, 1]) ok result.join(' ') is '6 4 2' + + +# Closure-wrapped comprehensions that refer to the "arguments" object. +expr: -> + result: item * item for item in arguments + +ok expr(2, 4, 8).join(' ') is '4 16 64' From 065bf54094f97853425aa304b5c242eaeaecaa8a Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sat, 10 Apr 2010 14:40:05 -0400 Subject: [PATCH 10/19] generated closures should only call() or apply() when necessary. --- lib/cake.js | 2 +- lib/command.js | 4 +-- lib/grammar.js | 4 +-- lib/nodes.js | 77 ++++++++++++++++++++++++++---------------------- lib/optparse.js | 6 ++-- lib/rewriter.js | 8 ++--- src/nodes.coffee | 18 ++++++----- 7 files changed, 65 insertions(+), 54 deletions(-) diff --git a/lib/cake.js b/lib/cake.js index 5c98fcfec9..9f81a3115a 100755 --- a/lib/cake.js +++ b/lib/cake.js @@ -90,7 +90,7 @@ _b.push(' '); } return _b; - }).call(this).join('') : ''; + })().join('') : ''; desc = task.description ? ("# " + (task.description)) : ''; puts(("cake " + name + spaces + " " + desc)); }} diff --git a/lib/command.js b/lib/command.js index 6dc97e418d..64ad52a238 100644 --- a/lib/command.js +++ b/lib/command.js @@ -188,10 +188,10 @@ tag = _e[0]; value = _e[1]; return "[" + tag + " " + value + "]"; - }).call(this)); + })()); } return _a; - }).call(this); + })(); return puts(strings.join(' ')); }; // Use the [OptionParser module](optparse.html) to extract all options from diff --git a/lib/grammar.js b/lib/grammar.js index 961c30a11c..409575f485 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -713,10 +713,10 @@ alt[1] = ("return " + (alt[1])); } return alt; - }).call(this)); + })()); } return _b; - }).call(this); + })(); }} // Initialize the **Parser** with our list of terminal **tokens**, our **grammar** // rules, and the name of the root. Reverse the operators because Jison orders diff --git a/lib/nodes.js b/lib/nodes.js index 30e2922cc2..2b098e6c4f 100644 --- a/lib/nodes.js +++ b/lib/nodes.js @@ -155,7 +155,7 @@ if (node.traverse) { return node.traverse(block); } - }).call(this)); + })()); } return _a; }; @@ -189,7 +189,7 @@ return false; }; return BaseNode; - }).call(this); + })(); //### 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 @@ -307,7 +307,7 @@ } }; return Expressions; - }).call(this); + })(); // Wrap up the given nodes as an **Expressions**, unless it already happens // to be one. Expressions.wrap = function wrap(nodes) { @@ -343,7 +343,7 @@ return " \"" + this.value + "\""; }; return LiteralNode; - }).call(this); + })(); //### ReturnNode // A `return` is a *pure_statement* -- wrapping it in a closure wouldn't // make sense. @@ -369,7 +369,7 @@ return "" + (this.tab) + "return " + (this.expression.compile(o)) + ";"; }; return ReturnNode; - }).call(this); + })(); statement(ReturnNode, true); //### ValueNode // A value, variable or literal or parenthesized, indexed or dotted into, @@ -462,7 +462,7 @@ } }; return ValueNode; - }).call(this); + })(); //### CommentNode // CoffeeScript passes through comments as JavaScript comments at the // same position. @@ -480,7 +480,7 @@ return ("" + this.tab + "//") + this.lines.join(("\n" + this.tab + "//")); }; return CommentNode; - }).call(this); + })(); statement(CommentNode); //### CallNode // Node for a function invocation. Takes care of converting `super()` calls into @@ -552,7 +552,7 @@ return "" + (this.prefix()) + (meth) + ".apply(" + obj + ", " + (this.compile_splat_arguments(o)) + ")"; }; return CallNode; - }).call(this); + })(); //### CurryNode // Binds a context object and a list of arguments to a function, // returning the bound function. After ECMAScript 5, Prototype.js, and @@ -600,7 +600,7 @@ return (new CallNode(ref, [this.child, this.parent])).compile(o); }; return ExtendsNode; - }).call(this); + })(); //### AccessorNode // A `.` accessor into a property of a value, or the `::` shorthand for // an accessor into the object's prototype. @@ -619,7 +619,7 @@ return "." + proto_part + (this.name.compile(o)); }; return AccessorNode; - }).call(this); + })(); //### IndexNode // A `[ ... ]` indexed accessor into an array or object. exports.IndexNode = (function() { @@ -635,7 +635,7 @@ return "[" + idx + "]"; }; return IndexNode; - }).call(this); + })(); //### 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 @@ -690,7 +690,7 @@ return (new ParentheticalNode(new CallNode(new CodeNode([], arr.make_return())))).compile(o); }; return RangeNode; - }).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 @@ -710,7 +710,7 @@ return ".slice(" + from + ", " + to + plus_part + ")"; }; return SliceNode; - }).call(this); + })(); //### ObjectNode // An object literal, nothing fancy. exports.ObjectNode = (function() { @@ -757,7 +757,7 @@ return "{" + inner + "}"; }; return ObjectNode; - }).call(this); + })(); //### ArrayNode // An array literal. exports.ArrayNode = (function() { @@ -790,7 +790,7 @@ return "[" + objects + ending; }; return ArrayNode; - }).call(this); + })(); //### ClassNode // The CoffeeScript class definition. exports.ClassNode = (function() { @@ -848,7 +848,7 @@ return "" + construct + extension + props + returns; }; return ClassNode; - }).call(this); + })(); statement(ClassNode); //### AssignNode // The **AssignNode** is used to assign a local variable to value, or to set the @@ -970,7 +970,7 @@ return "" + (name) + ".splice.apply(" + name + ", [" + from + ", " + to + "].concat(" + val + "))"; }; return AssignNode; - }).call(this); + })(); //### 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 @@ -1022,7 +1022,7 @@ _d.push(param.compile(o)); } return _d; - }).call(this); + })(); this.body.make_return(); _i = params; for (_h = 0, _j = _i.length; _h < _j; _h++) { @@ -1075,7 +1075,7 @@ return "\n" + idt + children; }; return CodeNode; - }).call(this); + })(); //### SplatNode // A splat, either as a parameter to a function, an argument to a call, // or as part of a destructuring assignment. @@ -1199,7 +1199,7 @@ return "" + pre + " {\n" + (this.body.compile(o)) + "\n" + this.tab + "}\n" + post; }; return WhileNode; - }).call(this); + })(); statement(WhileNode); //### OpNode // Simple Arithmetic and logical operations. Performs some conversion from @@ -1302,7 +1302,7 @@ return parts.join(''); }; return OpNode; - }).call(this); + })(); //### TryNode // A classic *try/catch/finally* block. exports.TryNode = (function() { @@ -1335,7 +1335,7 @@ return "" + (this.tab) + "try {\n" + attempt_part + "\n" + this.tab + "}" + catch_part + finally_part; }; return TryNode; - }).call(this); + })(); statement(TryNode); //### ThrowNode // Simple node to throw an exception. @@ -1353,7 +1353,7 @@ return "" + (this.tab) + "throw " + (this.expression.compile(o)) + ";"; }; return ThrowNode; - }).call(this); + })(); statement(ThrowNode); //### ExistenceNode // Checks a variable for existence -- not *null* and not *undefined*. This is @@ -1422,7 +1422,7 @@ } }; return ParentheticalNode; - }).call(this); + })(); //### 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 @@ -1530,7 +1530,7 @@ return "" + set_result + (source_part) + "for (" + for_part + ") {\n" + var_part + body + "\n" + this.tab + close + return_result; }; return ForNode; - }).call(this); + })(); statement(ForNode); //### IfNode // *If/else* statements. Our *switch/when* will be compiled into this. Acts as an @@ -1675,7 +1675,7 @@ return "" + if_part + " : " + else_part; }; return IfNode; - }).call(this); + })(); // Faux-Nodes // ---------- //### PushNode @@ -1697,23 +1697,30 @@ // 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 `arguments`, then make sure - // that the closure wrapper preserves the original arguments. + // in which case, no dice. If the body mentions `this` or `arguments`, + // then make sure that the closure wrapper preserves the original values. wrap: function wrap(expressions, statement) { - var args, call, func, mentions_args, meth; + var args, call, func, mentions_args, mentions_this, meth; if (expressions.contains_pure_statement()) { return expressions; } + func = new ParentheticalNode(new CodeNode([], Expressions.wrap([expressions]))); + args = []; mentions_args = expressions.contains(function(n) { return (n instanceof LiteralNode) && (n.value === 'arguments'); }); - meth = literal(mentions_args ? 'apply' : 'call'); - args = [literal('this')]; - if (mentions_args) { - args.push(literal('arguments')); + mentions_this = expressions.contains(function(n) { + return (n instanceof LiteralNode) && (n.value === 'this'); + }); + if (mentions_args || mentions_this) { + meth = literal(mentions_args ? 'apply' : 'call'); + args = [literal('this')]; + if (mentions_args) { + args.push(literal('arguments')); + } + func = new ValueNode(func, [new AccessorNode(meth)]); } - func = new ParentheticalNode(new CodeNode([], Expressions.wrap([expressions]))); - call = new CallNode(new ValueNode(func, [new AccessorNode(meth)]), args); + call = new CallNode(func, args); if (statement) { return Expressions.wrap([call]); } else { diff --git a/lib/optparse.js b/lib/optparse.js index f8454973f0..3b263f1fb1 100755 --- a/lib/optparse.js +++ b/lib/optparse.js @@ -63,14 +63,14 @@ _d.push(' '); } return _d; - }).call(this).join('') : ''; + })().join('') : ''; let_part = rule.short_flag ? rule.short_flag + ', ' : ' '; lines.push((" " + let_part + (rule.long_flag) + spaces + (rule.description))); } return "\n" + (lines.join('\n')) + "\n"; }; return OptionParser; - }).call(this); + })(); // Helpers // ------- // Regex matchers for option flags. @@ -90,7 +90,7 @@ tuple.unshift(null); } return build_rule.apply(this, tuple); - }).call(this)); + })()); } return _a; }; diff --git a/lib/rewriter.js b/lib/rewriter.js index fc13a4cb54..5adc164a95 100644 --- a/lib/rewriter.js +++ b/lib/rewriter.js @@ -267,7 +267,7 @@ value > 0 ? _a.push(key) : null; }} return _a; - }).call(this); + })(); if (unclosed.length) { open = unclosed[0]; line = open_line[open] + 1; @@ -323,7 +323,7 @@ }, this)); }; return Rewriter; - }).call(this); + })(); // Constants // --------- // List of the token pairs that must be balanced. @@ -345,7 +345,7 @@ _d.push(pair[0]); } return _d; - }).call(this); + })(); // The tokens that signal the end of a balanced pair. EXPRESSION_END = (function() { _h = []; _j = BALANCED_PAIRS; @@ -354,7 +354,7 @@ _h.push(pair[1]); } return _h; - }).call(this); + })(); // 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. diff --git a/src/nodes.coffee b/src/nodes.coffee index c68b50c283..ffa2527273 100644 --- a/src/nodes.coffee +++ b/src/nodes.coffee @@ -1263,16 +1263,20 @@ PushNode: exports.PushNode: { ClosureNode: exports.ClosureNode: { # Wrap the expressions body, unless it contains a pure statement, - # in which case, no dice. If the body mentions `arguments`, then make sure - # that the closure wrapper preserves the original arguments. + # 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.contains_pure_statement() - mentions_args: expressions.contains (n) -> (n instanceof LiteralNode) and (n.value is 'arguments') - meth: literal(if mentions_args then 'apply' else 'call') - args: [literal('this')] - args.push literal 'arguments' if mentions_args func: new ParentheticalNode(new CodeNode([], Expressions.wrap([expressions]))) - call: new CallNode(new ValueNode(func, [new AccessorNode(meth)]), args) + args: [] + mentions_args: expressions.contains (n) -> (n instanceof LiteralNode) and (n.value is 'arguments') + mentions_this: expressions.contains (n) -> (n instanceof LiteralNode) and (n.value is 'this') + if mentions_args or mentions_this + meth: literal(if mentions_args then 'apply' else 'call') + args: [literal('this')] + args.push literal 'arguments' if mentions_args + func: new ValueNode func, [new AccessorNode(meth)] + call: new CallNode(func, args) if statement then Expressions.wrap([call]) else call } From 8317960f813e2eefd1271748730c5b621975571c Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sat, 10 Apr 2010 18:05:35 -0400 Subject: [PATCH 11/19] Battery of patches for compatibility with Node v0.1.90 --- Cakefile | 7 +-- examples/web_server.coffee | 2 +- lib/cake.js | 2 +- lib/command.js | 91 ++++++++++++++++++++------------------ lib/repl.js | 12 ++--- src/cake.coffee | 2 +- src/command.coffee | 28 ++++++------ src/repl.coffee | 10 ++--- 8 files changed, 81 insertions(+), 73 deletions(-) diff --git a/Cakefile b/Cakefile index dd0b6d4605..db66b20299 100644 --- a/Cakefile +++ b/Cakefile @@ -1,10 +1,11 @@ -fs: require 'fs' -helpers: require('./lib/helpers').helpers +fs: require 'fs' +helpers: require('./lib/helpers').helpers CoffeeScript: require './lib/coffee-script' +{spawn: spawn, exec: exec}: require('child_process') # Run a CoffeeScript through our node/coffee interpreter. run: (args) -> - proc: process.createChildProcess 'bin/coffee', args + proc: spawn 'bin/coffee', args proc.addListener 'error', (err) -> if err then puts err diff --git a/examples/web_server.coffee b/examples/web_server.coffee index 5ee5c7af47..c8273c7377 100644 --- a/examples/web_server.coffee +++ b/examples/web_server.coffee @@ -6,7 +6,7 @@ http: require 'http' server: http.createServer (req, res) -> res.writeHeader 200, {'Content-Type': 'text/plain'} res.write 'Hello, World!' - res.close() + res.end() server.listen 3000 diff --git a/lib/cake.js b/lib/cake.js index 9f81a3115a..30bd1e0db9 100755 --- a/lib/cake.js +++ b/lib/cake.js @@ -100,7 +100,7 @@ }; // Print an error and exit when attempting to all an undefined task. no_such_task = function no_such_task(task) { - process.stdio.writeError(("No such task: \"" + task + "\"\n")); + puts(("No such task: \"" + task + "\"\n")); return process.exit(1); }; })(); diff --git a/lib/command.js b/lib/command.js index 64ad52a238..7efec3a125 100644 --- a/lib/command.js +++ b/lib/command.js @@ -1,5 +1,5 @@ (function(){ - var BANNER, CoffeeScript, SWITCHES, compile_options, compile_script, compile_scripts, compile_stdio, fs, lint, option_parser, options, optparse, parse_options, path, print_tokens, sources, usage, version, watch_scripts, write_js; + var BANNER, CoffeeScript, SWITCHES, _a, compile_options, compile_script, compile_scripts, compile_stdio, exec, fs, lint, option_parser, options, optparse, parse_options, path, print_tokens, sources, spawn, usage, version, watch_scripts, write_js; // The `coffee` utility. Handles command-line compilation of CoffeeScript // into various forms: saved into `.js` files or printed to stdout, piped to // [JSLint](http://javascriptlint.com/) or recompiled every time the source is @@ -10,6 +10,9 @@ path = require('path'); optparse = require('./optparse'); CoffeeScript = require('./coffee-script'); + _a = require('child_process'); + spawn = _a.spawn; + exec = _a.exec; // The help banner that is printed when `coffee` is called without arguments. BANNER = 'coffee compiles CoffeeScript source files into JavaScript.\n\nUsage:\n coffee path/to/script.coffee'; // The list of all the valid option flags that `coffee` knows how to handle. @@ -57,7 +60,7 @@ // Asynchronously read in each CoffeeScript in a list of source files and // compile them. compile_scripts = function compile_scripts() { - var _a, _b, _c, _d, compile, source; + var compile, run; compile = function compile(source) { return path.exists(source, function(exists) { if (!(exists)) { @@ -68,12 +71,19 @@ }); }); }; - _a = []; _c = sources; - for (_b = 0, _d = _c.length; _b < _d; _b++) { - source = _c[_b]; - _a.push(compile(source)); + run = function run() { + var _b, _c, _d, _e, source; + _b = []; _d = sources; + for (_c = 0, _e = _d.length; _c < _e; _c++) { + source = _d[_c]; + _b.push(compile(source)); + } + return _b; + }; + if (!(options.output && options.compile)) { + return run(); } - return _a; + return exec(("mkdir -p " + options.output), run); }; // Compile a single source script, containing the given code, according to the // requested options. Both compile_scripts and watch_scripts share this method @@ -93,7 +103,7 @@ } else { js = CoffeeScript.compile(code, code_opts); if (o.print) { - return process.stdio.write(js); + return print(js); } else if (o.compile) { return write_js(source, js); } else if (o.lint) { @@ -111,15 +121,15 @@ // Attach the appropriate listeners to compile scripts incoming over **stdin**, // and write them back to **stdout**. compile_stdio = function compile_stdio() { - var code; + var code, stdin; code = ''; - process.stdio.open(); - process.stdio.addListener('data', function(string) { - if (string) { - return code += string; + stdin = process.openStdin(); + stdin.addListener('data', function(buffer) { + if (buffer) { + return code += buffer.toString(); } }); - return process.stdio.addListener('close', function() { + return stdin.addListener('end', function() { return compile_script('stdio', code); }); }; @@ -127,7 +137,7 @@ // them every time the files are updated. May be used in combination with other // options, such as `--lint` or `--print`. watch_scripts = function watch_scripts() { - var _a, _b, _c, _d, source, watch; + var _b, _c, _d, _e, source, watch; watch = function watch(source) { return fs.watchFile(source, { persistent: true, @@ -141,12 +151,12 @@ }); }); }; - _a = []; _c = sources; - for (_b = 0, _d = _c.length; _b < _d; _b++) { - source = _c[_b]; - _a.push(watch(source)); + _b = []; _d = sources; + for (_c = 0, _e = _d.length; _c < _e; _c++) { + source = _d[_c]; + _b.push(watch(source)); } - return _a; + return _b; }; // Write out a JavaScript source file with the compiled code. By default, files // are written out in `cwd` as `.js` files with the same name, but the output @@ -161,36 +171,31 @@ // Pipe compiled JS through JSLint (requires a working `jsl` command), printing // any errors or warnings that arise. lint = function lint(js) { - var jsl; - jsl = process.createChildProcess('jsl', ['-nologo', '-stdin']); - jsl.addListener('output', function(result) { - if (result) { - return puts(result.replace(/\n/g, '')); - } - }); - jsl.addListener('error', function(result) { - if (result) { - return puts(result); - } - }); - jsl.write(js); - return jsl.close(); + var jsl, print_it; + print_it = function print_it(buffer) { + return puts(buffer.toString()); + }; + jsl = spawn('jsl', ['-nologo', '-stdin']); + jsl.stdout.addListener('data', print_it); + jsl.stderr.addListener('data', print_it); + jsl.stdin.write(js); + return jsl.stdin.end(); }; // Pretty-print a stream of tokens. print_tokens = function print_tokens(tokens) { - var _a, _b, _c, _d, _e, strings, tag, token, value; + var _b, _c, _d, _e, _f, strings, tag, token, value; strings = (function() { - _a = []; _c = tokens; - for (_b = 0, _d = _c.length; _b < _d; _b++) { - token = _c[_b]; - _a.push((function() { - _e = [token[0], token[1].toString().replace(/\n/, '\\n')]; - tag = _e[0]; - value = _e[1]; + _b = []; _d = tokens; + for (_c = 0, _e = _d.length; _c < _e; _c++) { + token = _d[_c]; + _b.push((function() { + _f = [token[0], token[1].toString().replace(/\n/, '\\n')]; + tag = _f[0]; + value = _f[1]; return "[" + tag + " " + value + "]"; })()); } - return _a; + return _b; })(); return puts(strings.join(' ')); }; diff --git a/lib/repl.js b/lib/repl.js index 2c73cfe585..ddd2e3d57b 100644 --- a/lib/repl.js +++ b/lib/repl.js @@ -1,5 +1,5 @@ (function(){ - var CoffeeScript, helpers, prompt, run; + var CoffeeScript, helpers, prompt, run, stdin; // A very simple Read-Eval-Print-Loop. Compiles one line at a time to JavaScript // and evaluates it. Good for simple tests, or poking around the **Node.js** API. // Using it looks like this: @@ -18,10 +18,10 @@ // The main REPL function. **run** is called every time a line of code is entered. // Attempt to evaluate the command. If there's an exception, print it out instead // of exiting. - run = function run(code) { + run = function run(buffer) { var val; try { - val = CoffeeScript.run(code, { + val = CoffeeScript.run(buffer.toString(), { no_wrap: true, globals: true, source: 'repl' @@ -34,8 +34,8 @@ } return print(prompt); }; - // Start up the REPL by opening **stdio** and listening for input. - process.stdio.addListener('data', run); - process.stdio.open(); + // Start up the REPL by opening **stdin** and listening for input. + stdin = process.openStdin(); + stdin.addListener('data', run); print(prompt); })(); diff --git a/src/cake.coffee b/src/cake.coffee index d3438a9ce1..65f3b70c2b 100644 --- a/src/cake.coffee +++ b/src/cake.coffee @@ -66,5 +66,5 @@ print_tasks: -> # Print an error and exit when attempting to all an undefined task. no_such_task: (task) -> - process.stdio.writeError "No such task: \"$task\"\n" + puts "No such task: \"$task\"\n" process.exit 1 diff --git a/src/command.coffee b/src/command.coffee index 739784f81a..ded44912dc 100644 --- a/src/command.coffee +++ b/src/command.coffee @@ -9,6 +9,7 @@ fs: require 'fs' path: require 'path' optparse: require './optparse' CoffeeScript: require './coffee-script' +{spawn: spawn, exec: exec}: require('child_process') # The help banner that is printed when `coffee` is called without arguments. BANNER: ''' @@ -67,7 +68,9 @@ compile_scripts: -> path.exists source, (exists) -> throw new Error "File not found: $source" unless exists fs.readFile source, (err, code) -> compile_script(source, code) - compile(source) for source in sources + run: -> compile(source) for source in sources + return run() unless options.output and options.compile + exec "mkdir -p $options.output", run # Compile a single source script, containing the given code, according to the # requested options. Both compile_scripts and watch_scripts share this method @@ -82,7 +85,7 @@ compile_script: (source, code) -> else if o.run then CoffeeScript.run code, code_opts else js: CoffeeScript.compile code, code_opts - if o.print then process.stdio.write js + if o.print then print js else if o.compile then write_js source, js else if o.lint then lint js catch err @@ -92,10 +95,10 @@ compile_script: (source, code) -> # and write them back to **stdout**. compile_stdio: -> code: '' - process.stdio.open() - process.stdio.addListener 'data', (string) -> - code: + string if string - process.stdio.addListener 'close', -> + stdin: process.openStdin() + stdin.addListener 'data', (buffer) -> + code: + buffer.toString() if buffer + stdin.addListener 'end', -> compile_script 'stdio', code # Watch a list of source CoffeeScript files using `fs.watchFile`, recompiling @@ -120,13 +123,12 @@ write_js: (source, js) -> # Pipe compiled JS through JSLint (requires a working `jsl` command), printing # any errors or warnings that arise. lint: (js) -> - jsl: process.createChildProcess('jsl', ['-nologo', '-stdin']) - jsl.addListener 'output', (result) -> - puts result.replace(/\n/g, '') if result - jsl.addListener 'error', (result) -> - puts result if result - jsl.write js - jsl.close() + print_it: (buffer) -> puts buffer.toString() + jsl: spawn 'jsl', ['-nologo', '-stdin'] + jsl.stdout.addListener 'data', print_it + jsl.stderr.addListener 'data', print_it + jsl.stdin.write js + jsl.stdin.end() # Pretty-print a stream of tokens. print_tokens: (tokens) -> diff --git a/src/repl.coffee b/src/repl.coffee index f0cb54df01..85eab52265 100644 --- a/src/repl.coffee +++ b/src/repl.coffee @@ -19,15 +19,15 @@ helpers.extend global, { # The main REPL function. **run** is called every time a line of code is entered. # Attempt to evaluate the command. If there's an exception, print it out instead # of exiting. -run: (code) -> +run: (buffer) -> try - val: CoffeeScript.run code, {no_wrap: true, globals: true, source: 'repl'} + val: CoffeeScript.run buffer.toString(), {no_wrap: true, globals: true, source: 'repl'} p val if val isnt undefined catch err puts err.stack or err.toString() print prompt -# Start up the REPL by opening **stdio** and listening for input. -process.stdio.addListener 'data', run -process.stdio.open() +# Start up the REPL by opening **stdin** and listening for input. +stdin: process.openStdin() +stdin.addListener 'data', run print prompt \ No newline at end of file From df97effb9cab38eba4dc13da5a59f644b630e4b8 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sat, 10 Apr 2010 18:56:46 -0400 Subject: [PATCH 12/19] fixing implicit-call-in-function-in-parens bug. --- lib/rewriter.js | 2 +- src/rewriter.coffee | 2 +- test/test_functions.coffee | 9 +++++++++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/lib/rewriter.js b/lib/rewriter.js index 5adc164a95..5b278246c5 100644 --- a/lib/rewriter.js +++ b/lib/rewriter.js @@ -162,7 +162,7 @@ stack[stack.length - 1] += last; } open = stack[stack.length - 1] > 0; - if (!(typeof post !== "undefined" && post !== null) || (start_parens > parens) || (parens === 0 && include(IMPLICIT_END, tag))) { + if (!(typeof post !== "undefined" && post !== null) || (start_parens > parens) || (start_parens === parens && include(IMPLICIT_END, tag))) { if (tag === 'INDENT' && prev && include(IMPLICIT_BLOCK, prev[0])) { return 1; } diff --git a/src/rewriter.coffee b/src/rewriter.coffee index 9965f5853f..40b5739021 100644 --- a/src/rewriter.coffee +++ b/src/rewriter.coffee @@ -124,7 +124,7 @@ exports.Rewriter: class Rewriter last: stack.pop() stack[stack.length - 1]: + last open: stack[stack.length - 1] > 0 - if !post? or (start_parens > parens) or (parens is 0 and include IMPLICIT_END, tag) + if !post? or (start_parens > parens) or (start_parens is parens and include IMPLICIT_END, tag) return 1 if tag is 'INDENT' and prev and include IMPLICIT_BLOCK, prev[0] return 1 if tag is 'OUTDENT' and token.generated if open or tag is 'INDENT' diff --git a/test/test_functions.coffee b/test/test_functions.coffee index 2fde21f567..6c8c2bc432 100644 --- a/test/test_functions.coffee +++ b/test/test_functions.coffee @@ -129,3 +129,12 @@ result: (f 1).toString() .length ok result is 1 + + +# Test implicit calls in functions in parens: +result: ((val) -> + [].push val + val +)(10) + +ok result is 10 From ef67561fb32ce9d13ea33e9d759a50867c3a64aa Mon Sep 17 00:00:00 2001 From: Dr Nic Williams Date: Sun, 11 Apr 2010 19:05:49 +1000 Subject: [PATCH 13/19] Using anonymous callback for 'exit' event when running tests --- Cakefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Cakefile b/Cakefile index db66b20299..4f016007c1 100644 --- a/Cakefile +++ b/Cakefile @@ -74,8 +74,8 @@ task 'doc:underscore', 'rebuild the Underscore.coffee documentation page', -> task 'test', 'run the CoffeeScript language test suite', -> helpers.extend global, require 'assert' passed_tests: failed_tests: 0 - start_time: new Date() - original_ok: ok + start_time: new Date() + original_ok: ok helpers.extend global, { ok: (args...) -> passed_tests += 1; original_ok(args...) CoffeeScript: CoffeeScript @@ -83,11 +83,10 @@ task 'test', 'run the CoffeeScript language test suite', -> red: '\033[0;31m' green: '\033[0;32m' reset: '\033[0m' - on_exit: -> + process.addListener 'exit', -> time: ((new Date() - start_time) / 1000).toFixed(2) message: "passed $passed_tests tests in $time seconds$reset" puts(if failed_tests then "${red}failed $failed_tests and $message" else "$green$message") - process.addListener 'exit', on_exit fs.readdir 'test', (err, files) -> files.forEach (file) -> return unless file.match(/\.coffee$/i) From 17e177405a024051158c901ed7e0eddbd40c2389 Mon Sep 17 00:00:00 2001 From: Stan Angeloff Date: Sun, 11 Apr 2010 12:22:54 +0300 Subject: [PATCH 14/19] FIXES #309: Optional parens and interpolation. --- lib/lexer.js | 23 ++++++++++++----------- src/lexer.coffee | 4 ++-- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/lib/lexer.js b/lib/lexer.js index 16fd99d99d..2782d3f667 100644 --- a/lib/lexer.js +++ b/lib/lexer.js @@ -60,9 +60,6 @@ this.extract_next_token(); } this.close_indentation(); - if (o.rewrite === false) { - return this.tokens; - } return (new Rewriter()).rewrite(this.tokens); }; // At every position, run through this list of attempted matches, @@ -464,7 +461,7 @@ // new Lexer, tokenize the interpolated contents, and merge them into the // token stream. Lexer.prototype.interpolate_string = function interpolate_string(str, escape_quotes) { - var _a, _b, _c, _d, _e, escaped, expr, group, i, inner, interp, interpolated, lexer, match, nested, pi, quote, tag, token, tokens, value; + var _a, _b, _c, _d, _e, _f, _g, escaped, expr, group, i, index, inner, interp, interpolated, lexer, match, nested, pi, quote, tag, token, tokens, value; if (str.length < 3 || !starts(str, '"')) { return this.token('STRING', str); } else { @@ -497,9 +494,13 @@ inner = expr.substring(2, expr.length - 1); if (inner.length) { nested = lexer.tokenize(("(" + inner + ")"), { - rewrite: false, line: this.line }); + _c = nested; + for (index = 0, _d = _c.length; index < _d; index++) { + value = _c[index]; + value[0] === 'CALL_END' ? (nested[index][0] = ')') : null; + } nested.pop(); tokens.push(['TOKENS', nested]); } else { @@ -520,12 +521,12 @@ if (interpolated) { this.token('(', '('); } - _c = tokens; - for (i = 0, _d = _c.length; i < _d; i++) { - token = _c[i]; - _e = token; - tag = _e[0]; - value = _e[1]; + _e = tokens; + for (i = 0, _f = _e.length; i < _f; i++) { + token = _e[i]; + _g = token; + tag = _g[0]; + value = _g[1]; if (tag === 'TOKENS') { this.tokens = this.tokens.concat(value); } else if (tag === 'STRING' && escape_quotes) { diff --git a/src/lexer.coffee b/src/lexer.coffee index f9654ec0dd..20a6bdfca7 100644 --- a/src/lexer.coffee +++ b/src/lexer.coffee @@ -56,7 +56,6 @@ exports.Lexer: class Lexer @chunk: @code.slice @i @extract_next_token() @close_indentation() - return @tokens if o.rewrite is off (new Rewriter()).rewrite @tokens # At every position, run through this list of attempted matches, @@ -366,7 +365,8 @@ 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 - nested: lexer.tokenize "($inner)", {rewrite: no, line: @line} + nested: lexer.tokenize "($inner)", {line: @line} + (nested[index][0]: ')') for value, index in nested when value[0] is 'CALL_END' nested.pop() tokens.push ['TOKENS', nested] else From 2e842f0146854f1d742ceb292c2fa9ebe1103542 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sun, 11 Apr 2010 09:26:21 -0400 Subject: [PATCH 15/19] merging Stan's recursive tokenizing fix for interpolations. --- lib/lexer.js | 11 +++++++---- src/lexer.coffee | 3 ++- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/lib/lexer.js b/lib/lexer.js index 2782d3f667..9a0827a1be 100644 --- a/lib/lexer.js +++ b/lib/lexer.js @@ -60,6 +60,9 @@ this.extract_next_token(); } this.close_indentation(); + if (o.rewrite === false) { + return this.tokens; + } return (new Rewriter()).rewrite(this.tokens); }; // At every position, run through this list of attempted matches, @@ -461,7 +464,7 @@ // new Lexer, tokenize the interpolated contents, and merge them into the // token stream. Lexer.prototype.interpolate_string = function interpolate_string(str, escape_quotes) { - var _a, _b, _c, _d, _e, _f, _g, escaped, expr, group, i, index, inner, interp, interpolated, lexer, match, nested, pi, quote, tag, token, tokens, value; + var _a, _b, _c, _d, _e, _f, _g, escaped, expr, group, i, idx, inner, interp, interpolated, lexer, match, nested, pi, quote, tag, tok, token, tokens, value; if (str.length < 3 || !starts(str, '"')) { return this.token('STRING', str); } else { @@ -497,9 +500,9 @@ line: this.line }); _c = nested; - for (index = 0, _d = _c.length; index < _d; index++) { - value = _c[index]; - value[0] === 'CALL_END' ? (nested[index][0] = ')') : null; + for (idx = 0, _d = _c.length; idx < _d; idx++) { + tok = _c[idx]; + tok[0] === 'CALL_END' ? (tok[0] = ')') : null; } nested.pop(); tokens.push(['TOKENS', nested]); diff --git a/src/lexer.coffee b/src/lexer.coffee index 20a6bdfca7..5497276795 100644 --- a/src/lexer.coffee +++ b/src/lexer.coffee @@ -56,6 +56,7 @@ exports.Lexer: class Lexer @chunk: @code.slice @i @extract_next_token() @close_indentation() + return @tokens if o.rewrite is off (new Rewriter()).rewrite @tokens # At every position, run through this list of attempted matches, @@ -366,7 +367,7 @@ exports.Lexer: class Lexer inner: expr.substring(2, expr.length - 1) if inner.length nested: lexer.tokenize "($inner)", {line: @line} - (nested[index][0]: ')') for value, index in nested when value[0] is 'CALL_END' + (tok[0]: ')') for tok, idx in nested when tok[0] is 'CALL_END' nested.pop() tokens.push ['TOKENS', nested] else From c3bbb48041d7cd9d2251a430067cfc395f4cb142 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sun, 11 Apr 2010 09:37:48 -0400 Subject: [PATCH 16/19] adding a test case for issue 309, interpolations with implicit calls. --- test/test_string_interpolation.coffee | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/test_string_interpolation.coffee b/test/test_string_interpolation.coffee index b7b8c79c8b..c1ea542f74 100644 --- a/test/test_string_interpolation.coffee +++ b/test/test_string_interpolation.coffee @@ -68,3 +68,8 @@ a: 1 b: 2 c: 3 ok "$a$b$c" is '123' + +result: null +stash: (str) -> result: str +stash "a ${ ('aa').replace /a/g, 'b' } c" +ok result is 'a bb c' \ No newline at end of file From 835ecac8dbf686f0898b0290233aa658cbefcd79 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sun, 11 Apr 2010 16:57:53 -0400 Subject: [PATCH 17/19] simplifying some unecessary interpolated expressions into interpolated values. --- lib/cake.js | 2 +- lib/coffee-script.js | 2 +- lib/command.js | 2 +- lib/optparse.js | 2 +- lib/scope.js | 2 +- src/cake.coffee | 2 +- src/coffee-script.coffee | 2 +- src/command.coffee | 2 +- src/optparse.coffee | 2 +- src/scope.coffee | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/cake.js b/lib/cake.js index 30bd1e0db9..635f28abea 100755 --- a/lib/cake.js +++ b/lib/cake.js @@ -91,7 +91,7 @@ } return _b; })().join('') : ''; - desc = task.description ? ("# " + (task.description)) : ''; + desc = task.description ? ("# " + task.description) : ''; puts(("cake " + name + spaces + " " + desc)); }} if (switches.length) { diff --git a/lib/coffee-script.js b/lib/coffee-script.js index 253c383328..931386a27b 100644 --- a/lib/coffee-script.js +++ b/lib/coffee-script.js @@ -34,7 +34,7 @@ return (parser.parse(lexer.tokenize(code))).compile(options); } catch (err) { if (options.source) { - err.message = ("In " + (options.source) + ", " + (err.message)); + err.message = ("In " + options.source + ", " + err.message); } throw err; } diff --git a/lib/command.js b/lib/command.js index 7efec3a125..857f9f93b4 100644 --- a/lib/command.js +++ b/lib/command.js @@ -226,7 +226,7 @@ }; // Print the `--version` message and exit. version = function version() { - puts(("CoffeeScript version " + (CoffeeScript.VERSION))); + puts(("CoffeeScript version " + CoffeeScript.VERSION)); return process.exit(0); }; })(); diff --git a/lib/optparse.js b/lib/optparse.js index 3b263f1fb1..db54d3e62c 100755 --- a/lib/optparse.js +++ b/lib/optparse.js @@ -65,7 +65,7 @@ return _d; })().join('') : ''; let_part = rule.short_flag ? rule.short_flag + ', ' : ' '; - lines.push((" " + let_part + (rule.long_flag) + spaces + (rule.description))); + lines.push((" " + let_part + rule.long_flag + spaces + rule.description)); } return "\n" + (lines.join('\n')) + "\n"; }; diff --git a/lib/scope.js b/lib/scope.js index f95bb33573..843ea72005 100644 --- a/lib/scope.js +++ b/lib/scope.js @@ -120,7 +120,7 @@ _a = []; _b = this.variables; for (key in _b) { if (__hasProp.call(_b, key)) { val = _b[key]; - val.assigned ? _a.push(("" + key + " = " + (val.value))) : null; + val.assigned ? _a.push(("" + key + " = " + val.value)) : null; }} return _a; }; diff --git a/src/cake.coffee b/src/cake.coffee index 65f3b70c2b..4788499443 100644 --- a/src/cake.coffee +++ b/src/cake.coffee @@ -60,7 +60,7 @@ print_tasks: -> for name, task of tasks spaces: 20 - name.length spaces: if spaces > 0 then (' ' for i in [0..spaces]).join('') else '' - desc: if task.description then "# ${task.description}" else '' + desc: if task.description then "# $task.description" else '' puts "cake $name$spaces $desc" puts oparse.help() if switches.length diff --git a/src/coffee-script.coffee b/src/coffee-script.coffee index 7c4e4f52d3..b591ca5fbe 100644 --- a/src/coffee-script.coffee +++ b/src/coffee-script.coffee @@ -34,7 +34,7 @@ exports.compile: compile: (code, options) -> try (parser.parse lexer.tokenize code).compile options catch err - err.message: "In ${options.source}, ${err.message}" if options.source + err.message: "In $options.source, $err.message" if options.source throw err # Tokenize a string of CoffeeScript code, and return the array of tokens. diff --git a/src/command.coffee b/src/command.coffee index ded44912dc..3e95c698b0 100644 --- a/src/command.coffee +++ b/src/command.coffee @@ -159,5 +159,5 @@ usage: -> # Print the `--version` message and exit. version: -> - puts "CoffeeScript version ${CoffeeScript.VERSION}" + puts "CoffeeScript version $CoffeeScript.VERSION" process.exit 0 diff --git a/src/optparse.coffee b/src/optparse.coffee index a740a64013..2f177c5f11 100644 --- a/src/optparse.coffee +++ b/src/optparse.coffee @@ -43,7 +43,7 @@ exports.OptionParser: class OptionParser spaces: 15 - rule.long_flag.length spaces: if spaces > 0 then (' ' for i in [0..spaces]).join('') else '' let_part: if rule.short_flag then rule.short_flag + ', ' else ' ' - lines.push " $let_part${rule.long_flag}$spaces${rule.description}" + lines.push " $let_part$rule.long_flag$spaces$rule.description" "\n${ lines.join('\n') }\n" # Helpers diff --git a/src/scope.coffee b/src/scope.coffee index 42a3abfbc8..ec96ac5c47 100644 --- a/src/scope.coffee +++ b/src/scope.coffee @@ -80,7 +80,7 @@ exports.Scope: class Scope # Return the list of assignments that are supposed to be made at the top # of this scope. assigned_variables: -> - "$key = ${val.value}" for key, val of @variables when val.assigned + "$key = $val.value" for key, val of @variables when val.assigned # Compile the JavaScript for all of the variable declarations in this scope. compiled_declarations: -> From ea982a627e056a332f8fa339c515ed210b59f84d Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sun, 11 Apr 2010 17:57:29 -0400 Subject: [PATCH 18/19] adding coffee-haml-filter to the docs --- documentation/index.html.erb | 5 +++ documentation/js/array_comprehensions.js | 2 +- documentation/js/expressions_comprehension.js | 2 +- documentation/js/expressions_try.js | 2 +- documentation/js/object_comprehensions.js | 2 +- documentation/js/overview.js | 2 +- documentation/js/range_comprehensions.js | 4 +-- documentation/js/while.js | 2 +- index.html | 35 +++++++++++-------- 9 files changed, 33 insertions(+), 23 deletions(-) diff --git a/documentation/index.html.erb b/documentation/index.html.erb index d64cfb60df..210b0b5236 100644 --- a/documentation/index.html.erb +++ b/documentation/index.html.erb @@ -882,6 +882,11 @@ coffee --print app/scripts/*.coffee > concatenation.js — a plugin that serves and bundles CoffeeScript from within your Rails application. +
  • + inem and gerad's coffee-haml-filter + — a custom filter for rendering CoffeeScript inline within + HAML templates. +
  • diff --git a/documentation/js/array_comprehensions.js b/documentation/js/array_comprehensions.js index 465ce26d67..db98b10338 100644 --- a/documentation/js/array_comprehensions.js +++ b/documentation/js/array_comprehensions.js @@ -8,7 +8,7 @@ _a.push(eat(food)); } return _a; - }).call(this); + })(); // Naive collision detection. _f = asteroids; for (_e = 0, _g = _f.length; _e < _g; _e++) { diff --git a/documentation/js/expressions_comprehension.js b/documentation/js/expressions_comprehension.js index 0c9f37f70a..6104c2a2ec 100644 --- a/documentation/js/expressions_comprehension.js +++ b/documentation/js/expressions_comprehension.js @@ -8,5 +8,5 @@ _a.push(name); }} return _a; - }).call(this).slice(0, 10); + })().slice(0, 10); })(); diff --git a/documentation/js/expressions_try.js b/documentation/js/expressions_try.js index c2f8cb9df4..a6bb2bcae7 100644 --- a/documentation/js/expressions_try.js +++ b/documentation/js/expressions_try.js @@ -5,5 +5,5 @@ } catch (error) { return "And the error is ... " + error; } - }).call(this)); + })()); })(); diff --git a/documentation/js/object_comprehensions.js b/documentation/js/object_comprehensions.js index 914391d144..0c38d44040 100644 --- a/documentation/js/object_comprehensions.js +++ b/documentation/js/object_comprehensions.js @@ -13,5 +13,5 @@ _a.push(child + " is " + age); }} return _a; - }).call(this); + })(); })(); diff --git a/documentation/js/overview.js b/documentation/js/overview.js index 917c478cce..919f8effab 100644 --- a/documentation/js/overview.js +++ b/documentation/js/overview.js @@ -40,5 +40,5 @@ _a.push(math.cube(num)); } return _a; - }).call(this); + })(); })(); diff --git a/documentation/js/range_comprehensions.js b/documentation/js/range_comprehensions.js index b844fdfd50..4cdded26b0 100644 --- a/documentation/js/range_comprehensions.js +++ b/documentation/js/range_comprehensions.js @@ -6,7 +6,7 @@ _a.push(num); } return _a; - }).call(this); + })(); egg_delivery = function egg_delivery() { var _e, _f, _g, _h, dozen_eggs, i; _e = []; _g = 0; _h = eggs.length; @@ -14,7 +14,7 @@ _e.push((function() { dozen_eggs = eggs.slice(i, i + 12); return deliver(new egg_carton(dozen)); - }).call(this)); + })()); } return _e; }; diff --git a/documentation/js/while.js b/documentation/js/while.js index 312b2399f9..b17025cd98 100644 --- a/documentation/js/while.js +++ b/documentation/js/while.js @@ -18,5 +18,5 @@ One fell out and bumped his head."); } return _a; - }).call(this); + })(); })(); diff --git a/index.html b/index.html index d60f984789..73654cf2d4 100644 --- a/index.html +++ b/index.html @@ -196,7 +196,7 @@

    _a.push(math.cube(num)); } return _a; -}).call(this); +})();

    @@ -790,7 +790,7 @@

    One fell out and bumped his head."); } return _a; -}).call(this); +})();

    Other JavaScript loops, such as for loops and do-while loops @@ -845,7 +845,7 @@

    _a.push(eat(food)); } return _a; -}).call(this); +})(); // Naive collision detection. _f = asteroids; for (_e = 0, _g = _f.length; _e < _g; _e++) { @@ -880,7 +880,7 @@

    _a.push(num); } return _a; -}).call(this); +})(); egg_delivery = function egg_delivery() { var _e, _f, _g, _h, dozen_eggs, i; _e = []; _g = 0; _h = eggs.length; @@ -888,7 +888,7 @@

    _e.push((function() { dozen_eggs = eggs.slice(i, i + 12); return deliver(new egg_carton(dozen)); - }).call(this)); + })()); } return _e; }; @@ -899,7 +899,7 @@

    _a.push(num); } return _a; -}).call(this); +})(); egg_delivery = function egg_delivery() { var _e, _f, _g, _h, dozen_eggs, i; _e = []; _g = 0; _h = eggs.length; @@ -907,7 +907,7 @@

    _e.push((function() { dozen_eggs = eggs.slice(i, i + 12); return deliver(new egg_carton(dozen)); - }).call(this)); + })()); } return _e; }; @@ -935,7 +935,7 @@

    _a.push(child + " is " + age); }} return _a; -}).call(this); +})();

    @@ -1078,7 +1078,7 @@

    _a.push(name); }} return _a; -}).call(this).slice(0, 10); +})().slice(0, 10);

    As well as silly things, like passing a try/catch statement directly @@ -1106,14 +1106,14 @@

    } catch (error) { return "And the error is ... " + error; } -}).call(this)); +})());

    There are a handful of statements in JavaScript that can't be meaningfully @@ -1830,6 +1830,11 @@

    — a plugin that serves and bundles CoffeeScript from within your Rails application. +
  • + inem and gerad's coffee-haml-filter + — a custom filter for rendering CoffeeScript inline within + HAML templates. +
  • From 92540d5e85d89f1a2332f61e7f0e8cbdf225f12b Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Mon, 12 Apr 2010 21:20:00 -0400 Subject: [PATCH 19/19] CoffeeScript 0.6.1, for Node.js v0.1.90 --- documentation/docs/cake.html | 8 +- documentation/docs/coffee-script.html | 4 +- documentation/docs/command.html | 32 +++-- documentation/docs/grammar.html | 192 ++++++++++++-------------- documentation/docs/lexer.html | 10 +- documentation/docs/nodes.html | 13 +- documentation/docs/optparse.html | 2 +- documentation/docs/repl.html | 8 +- documentation/docs/rewriter.html | 2 +- documentation/docs/scope.html | 2 +- documentation/index.html.erb | 12 +- extras/coffee-script.js | 2 +- index.html | 12 +- lib/coffee-script.js | 2 +- package.json | 2 +- src/coffee-script.coffee | 2 +- 16 files changed, 159 insertions(+), 146 deletions(-) diff --git a/documentation/docs/cake.html b/documentation/docs/cake.html index 8236d020d8..b4f7a9e38a 100644 --- a/documentation/docs/cake.html +++ b/documentation/docs/cake.html @@ -11,8 +11,9 @@ CoffeeScript: require './coffee-script'
    #

    Keep track of the list of defined tasks, the accepted options, and so on.

    tasks: {}
     options: {}
     switches: []
    -oparse: null
    #

    Mixin the top-level Cake functions for Cakefiles to use directly.

    helpers.extend global, {
    #

    Define a Cake task with a short name, a sentence description, +oparse: null

    #

    Mixin the top-level Cake functions for Cakefiles to use directly.

    helpers.extend global, {
    #

    Define a Cake task with a short name, an optional sentence description, and the function to run as the action itself.

      task: (name, description, action) ->
    +    [action, description]: [description, action] unless action
         tasks[name]: {name: name, description: description, action: action}
    #

    Define an option that the Cakefile accepts. The parsed options hash, containing all of the command-line options passed, will be made available as the first argument to the action.

      option: (letter, flag, description) ->
    @@ -35,9 +36,10 @@
       for name, task of tasks
         spaces: 20 - name.length
         spaces: if spaces > 0 then (' ' for i in [0..spaces]).join('') else ''
    -    puts "cake $name$spaces # ${task.description}"
    +    desc:   if task.description then "# $task.description" else ''
    +    puts "cake $name$spaces $desc"
       puts oparse.help() if switches.length
    #

    Print an error and exit when attempting to all an undefined task.

    no_such_task: (task) ->
    -  process.stdio.writeError "No such task: \"$task\"\n"
    +  puts "No such task: \"$task\"\n"
       process.exit 1
     
     
    \ No newline at end of file diff --git a/documentation/docs/coffee-script.html b/documentation/docs/coffee-script.html index 273f974a05..d130c9661c 100644 --- a/documentation/docs/coffee-script.html +++ b/documentation/docs/coffee-script.html @@ -16,13 +16,13 @@ this.exports: this.CoffeeScript: {} Lexer: this.Lexer parser: this.parser - helpers: this.helpers
    #

    The current CoffeeScript version number.

    exports.VERSION: '0.6.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.6.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
         (parser.parse lexer.tokenize code).compile options
       catch err
    -    err.message: "In ${options.source}, ${err.message}" if options.source
    +    err.message: "In $options.source, $err.message" if options.source
         throw err
    #

    Tokenize a string of CoffeeScript code, and return the array of tokens.

    exports.tokens: (code) ->
       lexer.tokenize code
    #

    Tokenize and parse a string of CoffeeScript code, and return the AST. You can then compile it by calling .compile() on the root, or traverse it by using diff --git a/documentation/docs/command.html b/documentation/docs/command.html index 5e4ea7c79c..7dcea677d8 100644 --- a/documentation/docs/command.html +++ b/documentation/docs/command.html @@ -5,7 +5,8 @@ interactive REPL.

    #

    External dependencies.

    fs:           require 'fs'
     path:         require 'path'
     optparse:     require './optparse'
    -CoffeeScript: require './coffee-script'
    #

    The help banner that is printed when coffee is called without arguments.

    BANNER: '''
    +CoffeeScript: require './coffee-script'
    +{spawn: spawn, exec: exec}: require('child_process')
    #

    The help banner that is printed when coffee is called without arguments.

    BANNER: '''
       coffee compiles CoffeeScript source files into JavaScript.
     
       Usage:
    @@ -49,7 +50,9 @@
         path.exists source, (exists) ->
           throw new Error "File not found: $source" unless exists
           fs.readFile source, (err, code) -> compile_script(source, code)
    -  compile(source) for source in sources
    #

    Compile a single source script, containing the given code, according to the + run: -> compile(source) for source in sources + return run() unless options.output and options.compile + exec "mkdir -p $options.output", run

    #

    Compile a single source script, containing the given code, according to the requested options. Both compile_scripts and watch_scripts share this method in common. If evaluating the script directly sets __filename, __dirname and module.filename to be correct relative to the script's path.

    compile_script: (source, code) ->
    @@ -61,17 +64,17 @@
         else if o.run         then CoffeeScript.run code, code_opts
         else
           js: CoffeeScript.compile code, code_opts
    -      if o.print          then process.stdio.write js
    +      if o.print          then print js
           else if o.compile   then write_js source, js
           else if o.lint      then lint js
       catch err
         if o.watch            then puts err.message else throw err
    #

    Attach the appropriate listeners to compile scripts incoming over stdin, and write them back to stdout.

    compile_stdio: ->
       code: ''
    -  process.stdio.open()
    -  process.stdio.addListener 'data', (string) ->
    -    code: + string if string
    -  process.stdio.addListener 'close', ->
    +  stdin: process.openStdin()
    +  stdin.addListener 'data', (buffer) ->
    +    code: + buffer.toString() if buffer
    +  stdin.addListener 'end', ->
         compile_script 'stdio', code
    #

    Watch a list of source CoffeeScript files using fs.watchFile, recompiling them every time the files are updated. May be used in combination with other options, such as --lint or --print.

    watch_scripts: ->
    @@ -87,13 +90,12 @@
       js_path:  path.join dir, filename
       fs.writeFile js_path, js
    #

    Pipe compiled JS through JSLint (requires a working jsl command), printing any errors or warnings that arise.

    lint: (js) ->
    -  jsl: process.createChildProcess('jsl', ['-nologo', '-stdin'])
    -  jsl.addListener 'output', (result) ->
    -    puts result.replace(/\n/g, '') if result
    -  jsl.addListener 'error', (result) ->
    -    puts result if result
    -  jsl.write js
    -  jsl.close()
    #

    Pretty-print a stream of tokens.

    print_tokens: (tokens) ->
    +  print_it: (buffer) -> puts buffer.toString()
    +  jsl: spawn 'jsl', ['-nologo', '-stdin']
    +  jsl.stdout.addListener 'data', print_it
    +  jsl.stderr.addListener 'data', print_it
    +  jsl.stdin.write js
    +  jsl.stdin.end()
    #

    Pretty-print a stream of tokens.

    print_tokens: (tokens) ->
       strings: for token in tokens
         [tag, value]: [token[0], token[1].toString().replace(/\n/, '\\n')]
         "[$tag $value]"
    @@ -109,7 +111,7 @@
       o
    #

    Print the --help usage message and exit.

    usage: ->
       puts option_parser.help()
       process.exit 0
    #

    Print the --version message and exit.

    version: ->
    -  puts "CoffeeScript version ${CoffeeScript.VERSION}"
    +  puts "CoffeeScript version $CoffeeScript.VERSION"
       process.exit 0
     
     
    \ No newline at end of file diff --git a/documentation/docs/grammar.html b/documentation/docs/grammar.html index 383e5e9694..dcc2a1911a 100644 --- a/documentation/docs/grammar.html +++ b/documentation/docs/grammar.html @@ -35,17 +35,26 @@ all parsing must end here.

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

    Any list of expressions or method body, seperated by line breaks or -semicolons.

      Expressions: [
    -    o "Expression",                             -> Expressions.wrap [$1]
    -    o "Expressions TERMINATOR Expression",      -> $1.push $3
    -    o "Expressions TERMINATOR"
    -  ]
    #

    All the different types of expressions in our language. The basic unit of -CoffeeScript is the Expression -- you'll notice that there is no -"statement" nonterminal. Expressions serve as the building blocks -of many other rules, making them somewhat circular.

      Expression: [
    +  ]
    #

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

      Body: [
    +    o "Line",                                   -> Expressions.wrap [$1]
    +    o "Body TERMINATOR Line",                   -> $1.push $3
    +    o "Body TERMINATOR"
    +  ]
    +  
    #

    Expressions and statements, which make up a line in a body.

      Line: [
    +    o "Expression"
    +    o "Statement"
    +  ]
    +  
    #

    Pure statements which cannot be expressions.

      Statement: [
    +    o "Return"
    +    o "Throw"
    +    o "BREAK",                                  -> new LiteralNode yytext
    +    o "CONTINUE",                               -> new LiteralNode yytext
    +  ]
    #

    All the different types of expressions in our language. The basic unit of +CoffeeScript is the Expression -- everything that can be an expression +is one. Expressions serve as the building blocks of many other rules, making +them somewhat circular.

      Expression: [
         o "Value"
         o "Call"
         o "Curry"
    @@ -54,8 +63,6 @@
         o "Assign"
         o "If"
         o "Try"
    -    o "Throw"
    -    o "Return"
         o "While"
         o "For"
         o "Switch"
    @@ -65,76 +72,74 @@
         o "Existence"
         o "Comment"
         o "Extension"
    -  ]
    #

    A an indented block of expressions. Note that the Rewriter + ]

    #

    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 Expressions OUTDENT",             -> $2
    +    o "INDENT Body OUTDENT",                    -> $2
         o "INDENT OUTDENT",                         -> new Expressions()
         o "TERMINATOR Comment",                     -> Expressions.wrap [$2]
    -  ]
    #

    A literal identifier, a variable name or property.

      Identifier: [
    +  ]
    #

    A literal identifier, a variable name or property.

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

    Alphanumerics are separated from the other Literal matchers because + ]

    #

    Alphanumerics are separated from the other Literal matchers because they can also serve as keys in object literals.

      AlphaNumeric: [
         o "NUMBER",                                 -> new LiteralNode yytext
         o "STRING",                                 -> new LiteralNode yytext
    -  ]
    #

    All of our immediate values. These can (in general), be passed straight + ]

    #

    All of our immediate values. These can (in general), be passed straight through and printed to JavaScript.

      Literal: [
         o "AlphaNumeric"
         o "JS",                                     -> new LiteralNode yytext
         o "REGEX",                                  -> new LiteralNode yytext
    -    o "BREAK",                                  -> new LiteralNode yytext
    -    o "CONTINUE",                               -> new LiteralNode yytext
         o "TRUE",                                   -> new LiteralNode true
         o "FALSE",                                  -> new LiteralNode false
         o "YES",                                    -> new LiteralNode true
         o "NO",                                     -> new LiteralNode false
         o "ON",                                     -> new LiteralNode true
         o "OFF",                                    -> new LiteralNode false
    -  ]
    #

    Assignment of a variable, property, or index to a value.

      Assign: [
    +  ]
    #

    Assignment of a variable, property, or index to a value.

      Assign: [
         o "Assignable ASSIGN Expression",           -> new AssignNode $1, $3
    -  ]
    #

    Assignment when it happens within an object literal. The difference from + ]

    #

    Assignment when it happens within an object literal. The difference from the ordinary Assign is that these allow numbers and strings as keys.

      AssignObj: [
         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: [
    +  ]
    #

    A return statement from a function body.

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

    A comment. Because CoffeeScript passes comments through to JavaScript, we + ]

    #

    A comment. Because CoffeeScript passes comments through to JavaScript, we have to parse comments like any other construct, and identify all of the positions in which they can occur in the grammar.

      Comment: [
         o "COMMENT",                                -> new CommentNode yytext
    -  ]
    #

    The existential operator.

      Existence: [
    +  ]
    #

    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'
    -  ]
    #

    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 yytext
         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
    @@ -142,7 +147,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'
    @@ -150,71 +155,71 @@
         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 "SOAKED_INDEX_START Expression SOAKED_INDEX_END", -> new IndexNode $2, 'soak'
    -  ]
    #

    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 }",                         -> new ObjectNode $2
         o "{ IndentedAssignList }",                 -> new ObjectNode $2
         o "{ AssignList , }",                       -> new ObjectNode $2
         o "{ IndentedAssignList , }",               -> 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 TERMINATOR AssignObj",        -> $1.concat [$3]
         o "AssignList , TERMINATOR AssignObj",      -> $1.concat [$4]
    -  ]
    #

    An AssignList within a block indentation.

      IndentedAssignList: [
    +  ]
    #

    An AssignList within a block indentation.

      IndentedAssignList: [
         o "INDENT AssignList OUTDENT",              -> $2
         o "INDENT AssignList , OUTDENT",            -> $2
    -  ]
    #

    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, + o "ClassBody TERMINATOR ClassAssign", -> $1.concat $3 + ]

    #

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

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

    Binds a function call to a context and/or arguments.

      Curry: [
    +  ]
    #

    Binds a function call to a context and/or arguments.

      Curry: [
         o "Value <- Arguments",                     -> new CurryNode $1, $3
    -  ]
    #

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

    #

    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 CALL_END",            -> $2
         o "CALL_START ArgList , CALL_END",          -> $2
    -  ]
    #

    Calling super.

      Super: [
    +  ]
    #

    Calling super.

      Super: [
         o "SUPER CALL_START ArgList CALL_END",      -> new CallNode 'super', $3
         o "SUPER CALL_START ArgList , CALL_END",    -> new CallNode 'super', $3
    -  ]
    #

    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 ]",                            -> new ArrayNode $2
         o "[ ArgList , ]",                          -> 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 "",                                       -> []
    @@ -226,46 +231,48 @@
         o "ArgList , INDENT Expression",            -> $1.concat [$4]
         o "ArgList OUTDENT"
         o "ArgList , OUTDENT"
    -  ]
    #

    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 "( Expression )",                         -> new ParentheticalNode $2
    -  ]
    #

    A language extension to CoffeeScript from the outside. We simply pass + o "( Line )", -> new ParentheticalNode $2 + ]

    #

    A language extension to CoffeeScript from the outside. We simply pass it through unaltered.

      Extension: [
         o "EXTENSION",                              -> yytext
    -  ]
    #

    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, {filter : $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.add_body $2
    +    o "Statement WhileSource",                  -> $2.add_body Expressions.wrap [$1]
         o "Expression WhileSource",                 -> $2.add_body Expressions.wrap [$1]
    -  ]
    #

    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 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 "Identifier",                             -> [$1]
         o "Identifier , Identifier",                -> [$1, $3]
    -  ]
    #

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

    #

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

      ForSource: [
         o "IN Expression",                               -> {source: $2}
    @@ -275,34 +282,36 @@
         o "IN Expression BY Expression",                 -> {source: $2, step:   $4}
         o "IN Expression WHEN Expression BY Expression", -> {source: $2, filter: $4; step:   $6}
         o "IN Expression BY Expression WHEN Expression", -> {source: $2, step:   $4, filter: $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.rewrite_condition $2
         o "SWITCH Expression INDENT Whens ELSE Block OUTDENT", -> $4.rewrite_condition($2).add_else $6, 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.push $2
    -  ]
    #

    An individual When clause, with action.

      When: [
    +  ]
    #

    An individual When clause, with action.

      When: [
         o "LEADING_WHEN SimpleArgs Block",            -> new IfNode $2, $3, null, {statement: true}
         o "LEADING_WHEN SimpleArgs Block TERMINATOR", -> new IfNode $2, $3, null, {statement: true}
         o "Comment TERMINATOR When",                  -> $3.comment: $1; $3
    -  ]
    #

    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.

      IfStart: [
         o "IF Expression Block",                    -> new IfNode $2, $3
         o "IfStart ElsIf",                          -> $1.add_else $2
    -  ]
    #

    An IfStart can optionally be followed by an else block.

      IfBlock: [
    +  ]
    #

    An IfStart can optionally be followed by an else block.

      IfBlock: [
         o "IfStart"
         o "IfStart ELSE Block",                     -> $1.add_else $3
    -  ]
    #

    An else if continuation of the if expression.

      ElsIf: [
    +  ]
    #

    An else if continuation of the if expression.

      ElsIf: [
         o "ELSE IF Expression Block",               -> (new IfNode($3, $4)).force_statement()
    -  ]
    #

    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]), null, {statement: true}
         o "Expression IF Expression",               -> new IfNode $3, Expressions.wrap([$1]), null, {statement: true}
    +    o "Statement UNLESS Expression",            -> new IfNode $3, Expressions.wrap([$1]), null, {statement: true, invert: true}
         o "Expression UNLESS Expression",           -> new IfNode $3, Expressions.wrap([$1]), null, {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 @@ -359,7 +368,7 @@ o "Expression IN Expression", -> new OpNode 'in', $1, $3 ] -}

    #

    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)
    @@ -374,37 +383,12 @@
       ["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', 'NEW', 'SUPER', 'CLASS']
    -  ["left",      'EXTENDS']
    -  ["right",     'ASSIGN', 'RETURN']
    -  ["right",     '->', '=>', '<-', 'UNLESS', 'IF', 'ELSE', 'WHILE']
    -]
    #

    Wrapping Up

    #

    Finally, now what we have our grammar and our operators, we can create + ["left", '&', '|', '^' + +

    #

    Wrapping Up

    undefined
    #

    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: []
    -for name, alternatives of grammar
    -  grammar[name]: for alt in alternatives
    -    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 +as "tokens".

    undefined
    #

    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 {
    -  tokens:       tokens.join ' '
    -  bnf:          grammar
    -  operators:    operators.reverse()
    -  startSymbol:  'Root'
    -}
    -
    -
    \ No newline at end of file +(as in Yacc).

    undefined
    \ No newline at end of file diff --git a/documentation/docs/lexer.html b/documentation/docs/lexer.html index 61db7b3fa0..33ab9f3b84 100644 --- a/documentation/docs/lexer.html +++ b/documentation/docs/lexer.html @@ -276,7 +276,8 @@ tokens.push ['STRING', "$quote${ str.substring(pi, i) }$quote"] if pi < i inner: expr.substring(2, expr.length - 1) if inner.length - nested: lexer.tokenize "($inner)", {rewrite: no, line: @line} + nested: lexer.tokenize "($inner)", {line: @line} + (tok[0]: ')') for tok, idx in nested when tok[0] is 'CALL_END' nested.pop() tokens.push ['TOKENS', nested] else @@ -286,6 +287,8 @@ i: + 1 tokens.push ['STRING', "$quote${ str.substring(pi, i) }$quote"] if pi < i and pi < str.length - 1 tokens.unshift ['STRING', '""'] unless tokens[0][0] is 'STRING' + interpolated: tokens.length > 1 + @token '(', '(' if interpolated for token, i in tokens [tag, value]: token if tag is 'TOKENS' @@ -296,10 +299,11 @@ else @token tag, value @token '+', '+' if i < tokens.length - 1 + @token ')', ')' if interpolated tokens
    #

    Helpers

    #

    Add a token to the results, taking note of the line number.

      token: (tag, value) ->
    -    @tokens.push [tag, value, @line]
    #

    Peek at a tag in the current token stream.

      tag: (index, tag) ->
    +    @tokens.push [tag, value, @line]
    #

    Peek at a tag in the current token stream.

      tag: (index, new_tag) ->
         return unless tok: @prev index
    -    return tok[0]: tag if tag?
    +    return tok[0]: new_tag if new_tag?
         tok[0]
    #

    Peek at a value in the current token stream.

      value: (index, val) ->
         return unless tok: @prev index
         return tok[1]: val if val?
    diff --git a/documentation/docs/nodes.html b/documentation/docs/nodes.html
    index a4ff5c50a2..da9e0d9d40 100644
    --- a/documentation/docs/nodes.html
    +++ b/documentation/docs/nodes.html
    @@ -890,10 +890,19 @@
         )])
     
     }
    #

    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.

      wrap: (expressions, 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.contains_pure_statement()
         func: new ParentheticalNode(new CodeNode([], Expressions.wrap([expressions])))
    -    call: new CallNode(new ValueNode(func, [new AccessorNode(literal('call'))]), [literal('this')])
    +    args: []
    +    mentions_args: expressions.contains (n) -> (n instanceof LiteralNode) and (n.value is 'arguments')
    +    mentions_this: expressions.contains (n) -> (n instanceof LiteralNode) and (n.value is 'this')
    +    if mentions_args or mentions_this
    +      meth: literal(if mentions_args then 'apply' else 'call')
    +      args: [literal('this')]
    +      args.push literal 'arguments' if mentions_args
    +      func: new ValueNode func, [new AccessorNode(meth)]
    +    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 diff --git a/documentation/docs/optparse.html b/documentation/docs/optparse.html index 8ed0ddaa25..8685ea97ad 100644 --- a/documentation/docs/optparse.html +++ b/documentation/docs/optparse.html @@ -35,7 +35,7 @@ spaces: 15 - rule.long_flag.length spaces: if spaces > 0 then (' ' for i in [0..spaces]).join('') else '' let_part: if rule.short_flag then rule.short_flag + ', ' else ' ' - lines.push " $let_part${rule.long_flag}$spaces${rule.description}" + lines.push " $let_part$rule.long_flag$spaces$rule.description" "\n${ lines.join('\n') }\n"

    #

    Helpers

    #

    Regex matchers for option flags.

    LONG_FLAG:  /^(--\w[\w\-]+)/
     SHORT_FLAG: /^(-\w)/
     MULTI_FLAG: /^-(\w{2,})/
    diff --git a/documentation/docs/repl.html b/documentation/docs/repl.html
    index ddf7c06e0b..eb0d56582f 100644
    --- a/documentation/docs/repl.html
    +++ b/documentation/docs/repl.html
    @@ -8,14 +8,14 @@
       quit: -> process.exit(0)
     }
    #

    The main REPL function. run is called every time a line of code is entered. Attempt to evaluate the command. If there's an exception, print it out instead -of exiting.

    run: (code) ->
    +of exiting.

    run: (buffer) ->
       try
    -    val: CoffeeScript.run code, {no_wrap: true, globals: true, source: 'repl'}
    +    val: CoffeeScript.run buffer.toString(), {no_wrap: true, globals: true, source: 'repl'}
         p val if val isnt undefined
       catch err
         puts err.stack or err.toString()
    -  print prompt
    #

    Start up the REPL by opening stdio and listening for input.

    process.stdio.addListener 'data', run
    -process.stdio.open()
    +  print prompt
    #

    Start up the REPL by opening stdin and listening for input.

    stdin: process.openStdin()
    +stdin.addListener 'data', run
     print prompt
     
     
    \ No newline at end of file diff --git a/documentation/docs/rewriter.html b/documentation/docs/rewriter.html index 17060ec2f0..42b908e00b 100644 --- a/documentation/docs/rewriter.html +++ b/documentation/docs/rewriter.html @@ -94,7 +94,7 @@ last: stack.pop() stack[stack.length - 1]: + last open: stack[stack.length - 1] > 0 - if !post? or (start_parens > parens) or (parens is 0 and include IMPLICIT_END, tag) + if !post? or (start_parens > parens) or (start_parens is parens and include IMPLICIT_END, tag) return 1 if tag is 'INDENT' and prev and include IMPLICIT_BLOCK, prev[0] return 1 if tag is 'OUTDENT' and token.generated if open or tag is 'INDENT' diff --git a/documentation/docs/scope.html b/documentation/docs/scope.html index d4156a430b..0664479cd3 100644 --- a/documentation/docs/scope.html +++ b/documentation/docs/scope.html @@ -41,7 +41,7 @@ body is @expressions and @any (k, val) -> val.assigned
    #

    Return the list of variables first declared in this scope.

      declared_variables: ->
         (key for key, val of @variables when val is 'var').sort()
    #

    Return the list of assignments that are supposed to be made at the top of this scope.

      assigned_variables: ->
    -    "$key = ${val.value}" for key, val of @variables when val.assigned
    #

    Compile the JavaScript for all of the variable declarations in this scope.

      compiled_declarations: ->
    +    "$key = $val.value" for key, val of @variables when val.assigned
    #

    Compile the JavaScript for all of the variable declarations in this scope.

      compiled_declarations: ->
         @declared_variables().join ', '
    #

    Compile the JavaScript for all of the variable assignments in this scope.

      compiled_assignments: ->
         @assigned_variables().join ', '
     
    diff --git a/documentation/index.html.erb b/documentation/index.html.erb
    index 210b0b5236..b0b2abc455 100644
    --- a/documentation/index.html.erb
    +++ b/documentation/index.html.erb
    @@ -130,7 +130,7 @@ alert reverse '.eeffoC yrT'

    Latest Version: - 0.6.0 + 0.6.1

    @@ -172,11 +172,11 @@ alert reverse '.eeffoC yrT'

    To install, first make sure you have a working copy of the latest tagged version of - Node.js, currently 0.1.33 or higher. + Node.js, currently 0.1.90 or higher. Then clone the CoffeeScript source repository from GitHub, or download the latest - release: 0.6.0. + release: 0.6.1. To install the CoffeeScript compiler system-wide under /usr/local, open the directory and run:

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

    + +

    + 0.6.1 + Upgraded CoffeeScript for compatibility with the new Node.js v0.1.90 + series. +

    0.6.0 diff --git a/extras/coffee-script.js b/extras/coffee-script.js index 4053b64f8b..f8e14368ee 100644 --- a/extras/coffee-script.js +++ b/extras/coffee-script.js @@ -1 +1 @@ -(function(){var balanced_string,compact,count,del,extend,flatten,helpers,include,merge,starts;var __hasProp=Object.prototype.hasOwnProperty;if(!((typeof process!=="undefined"&&process!==null))){this.exports=this}helpers=(exports.helpers={});helpers.include=(include=function include(list,value){return list.indexOf(value)>=0});helpers.starts=(starts=function starts(string,literal,start){return string.substring(start,(start||0)+literal.length)===literal});helpers.compact=(compact=function compact(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 count(string,letter){var num,pos;num=0;pos=string.indexOf(letter);while(pos!==-1){num+=1;pos=string.indexOf(letter,pos+1)}return num});helpers.merge=(merge=function merge(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 extend(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 flatten(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 del(obj,key){var val;val=obj[key];delete obj[key];return val});helpers.balanced_string=(balanced_string=function balanced_string(str,delimited,options){var _a,_b,_c,_d,close,i,levels,open,pair,slash;options=options||{};slash=delimited[0][0]==="/";levels=[];i=0;while(i0;if(!(typeof post!=="undefined"&&post!==null)||(start_parens>parens)||(parens===0&&include(IMPLICIT_END,tag))){if(tag==="INDENT"&&prev&&include(IMPLICIT_BLOCK,prev[0])){return 1}if(tag==="OUTDENT"&&token.generated){return 1}if(open||tag==="INDENT"){idx=tag==="OUTDENT"?i+1:i;stack_pointer=tag==="INDENT"?2:1;_b=0;_c=stack[stack.length-stack_pointer];for(_a=0,tmp=_b;(_b<=_c?tmp<_c:tmp>_c);(_b<=_c?tmp+=1:tmp-=1),_a++){this.tokens.splice(idx,0,["CALL_END",")",token[2]])}size=stack[stack.length-stack_pointer]+1;stack[stack.length-stack_pointer]=0;return size}}if(!(prev&&include(IMPLICIT_FUNC,prev[0])&&include(IMPLICIT_CALL,tag))){return 1}calls=0;start_parens=tag==="("?parens-1:parens;this.tokens.splice(i,0,["CALL_START","(",token[2]]);stack[stack.length-1]+=1;return 2},this))};Rewriter.prototype.add_implicit_indentation=function add_implicit_indentation(){return this.scan_tokens(__bind(function(prev,token,post,i){var idx,insertion,outdent,parens,pre,starter,tok;if(!(include(SINGLE_LINERS,token[0])&&post[0]!=="INDENT"&&!(token[0]==="ELSE"&&post[0]==="IF"))){return 1}starter=token[0];this.tokens.splice(i+1,0,["INDENT",2,token[2]]);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]!==";")||(tok[0]===")"&&parens===0))&&!(starter==="ELSE"&&tok[0]==="ELSE")){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},this))};Rewriter.prototype.ensure_balance=function ensure_balance(pairs){var _a,_b,key,levels,line,open,open_line,unclosed,value;levels={};open_line={};this.scan_tokens(__bind(function(prev,token,post,i){var _a,_b,_c,_d,close,open,pair;_b=pairs;for(_a=0,_c=_b.length;_a<_c;_a++){pair=_b[_a];_d=pair;open=_d[0];close=_d[1];levels[open]=levels[open]||0;if(token[0]===open){if(levels[open]===0){open_line[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},this));unclosed=(function(){_a=[];_b=levels;for(key in _b){if(__hasProp.call(_b,key)){value=_b[key];value>0?_a.push(key):null}}return _a}).call(this);if(unclosed.length){open=unclosed[0];line=open_line[open]+1;throw new Error(("unclosed "+open+" on line "+line))}};Rewriter.prototype.rewrite_closing_parens=function rewrite_closing_parens(){var _a,debt,key,stack,val;stack=[];debt={};_a=INVERSES;for(key in _a){if(__hasProp.call(_a,key)){val=_a[key];(debt[key]=0)}}return this.scan_tokens(__bind(function(prev,token,post,i){var inv,match,mtag,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];if(tag===INVERSES[mtag]){return 1}debt[mtag]+=1;val=mtag==="INDENT"?match[1]:INVERSES[mtag];this.tokens.splice(i,0,[INVERSES[mtag],val]);return 1}}else{return 1}}},this))};return Rewriter}).call(this);BALANCED_PAIRS=[["(",")"],["[","]"],["{","}"],["INDENT","OUTDENT"],["PARAM_START","PARAM_END"],["CALL_START","CALL_END"],["INDEX_START","INDEX_END"],["SOAKED_INDEX_START","SOAKED_INDEX_END"]];INVERSES={};_b=BALANCED_PAIRS;for(_a=0,_c=_b.length;_a<_c;_a++){pair=_b[_a];INVERSES[pair[0]]=pair[1];INVERSES[pair[1]]=pair[0]}EXPRESSION_START=(function(){_d=[];_f=BALANCED_PAIRS;for(_e=0,_g=_f.length;_e<_g;_e++){pair=_f[_e];_d.push(pair[0])}return _d}).call(this);EXPRESSION_END=(function(){_h=[];_j=BALANCED_PAIRS;for(_i=0,_k=_j.length;_i<_k;_i++){pair=_j[_i];_h.push(pair[1])}return _h}).call(this);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","EXTENSION","TRUE","FALSE","YES","NO","ON","OFF","!","!!","NOT","THIS","NULL","@","->","=>","[","(","{"];IMPLICIT_BLOCK=["->","=>","{","[",","];IMPLICIT_END=["IF","UNLESS","FOR","WHILE","TERMINATOR","INDENT","OUTDENT"];SINGLE_LINERS=["ELSE","->","=>","TRY","FINALLY","THEN"];SINGLE_CLOSERS=["TERMINATOR","CATCH","FINALLY","ELSE","OUTDENT","LEADING_WHEN"]})();(function(){var ACCESSORS,ASSIGNMENT,CALLABLE,CODE,COFFEE_ALIASES,COFFEE_KEYWORDS,COMMENT,COMMENT_CLEANER,CONVERSIONS,HALF_ASSIGNMENTS,HEREDOC,HEREDOC_INDENT,IDENTIFIER,INTERPOLATION,JS_CLEANER,JS_FORBIDDEN,JS_KEYWORDS,KEYWORDS,LAST_DENT,LAST_DENTS,LINE_BREAK,Lexer,MULTILINER,MULTI_DENT,NOT_REGEX,NO_NEWLINE,NUMBER,OPERATOR,REGEX_ESCAPE,REGEX_FLAGS,REGEX_INTERPOLATION,REGEX_START,RESERVED,Rewriter,STRING_NEWLINES,WHITESPACE,balanced_string,compact,count,helpers,include,starts;var __slice=Array.prototype.slice;if((typeof process!=="undefined"&&process!==null)){Rewriter=require("./rewriter").Rewriter;helpers=require("./helpers").helpers}else{this.exports=this;Rewriter=this.Rewriter;helpers=this.helpers}include=helpers.include;count=helpers.count;starts=helpers.starts;compact=helpers.compact;balanced_string=helpers.balanced_string;exports.Lexer=(function(){Lexer=function Lexer(){};Lexer.prototype.tokenize=function tokenize(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.indents=[];this.tokens=[];while(this.ithis.indent){if(no_newlines){return this.suppress_newlines()}diff=size-this.indent;this.token("INDENT",diff);this.indents.push(diff)}else{this.outdent_token(this.indent-size,no_newlines)}}this.indent=size;return true};Lexer.prototype.outdent_token=function outdent_token(move_out,no_newlines){var last_indent;while(move_out>0&&this.indents.length){last_indent=this.indents.pop();this.token("OUTDENT",last_indent);move_out-=last_indent}if(!(this.tag()==="TERMINATOR"||no_newlines)){this.token("TERMINATOR","\n")}return true};Lexer.prototype.whitespace_token=function whitespace_token(){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.newline_token=function newline_token(newlines){if(!(this.tag()==="TERMINATOR")){this.token("TERMINATOR","\n")}return true};Lexer.prototype.suppress_newlines=function suppress_newlines(){if(this.value()==="\\"){this.tokens.pop()}return true};Lexer.prototype.literal_token=function literal_token(){var match,prev_spaced,space,tag,value;match=this.chunk.match(OPERATOR);value=match&&match[1];space=match&&match[2];if(value&&value.match(CODE)){this.tag_parameters()}value=value||this.chunk.substr(0,1);prev_spaced=this.prev()&&this.prev().spaced;tag=value;if(value.match(ASSIGNMENT)){tag="ASSIGN";if(include(JS_FORBIDDEN,this.value)){this.assignment_error()}}else{if(value===";"){tag="TERMINATOR"}else{if(value==="["&&this.tag()==="?"&&!prev_spaced){tag="SOAKED_INDEX_START";this.soaked_index=true;this.tokens.pop()}else{if(value==="]"&&this.soaked_index){tag="SOAKED_INDEX_END";this.soaked_index=false}else{if(include(CALLABLE,this.tag())&&!prev_spaced){if(value==="("){tag="CALL_START"}if(value==="["){tag="INDEX_START"}}}}}}this.i+=value.length;if(space&&prev_spaced&&this.prev()[0]==="ASSIGN"&&include(HALF_ASSIGNMENTS,tag)){return this.tag_half_assignment(tag)}this.token(tag,value);return true};Lexer.prototype.name_access_type=function name_access_type(){if(this.value()==="::"){this.tag(1,"PROTOTYPE_ACCESS")}if(this.value()==="."&&!(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")}}};Lexer.prototype.sanitize_heredoc=function sanitize_heredoc(doc,quote){var indent;indent=(doc.match(HEREDOC_INDENT)||[""]).sort()[0];return doc.replace(new RegExp("^"+indent,"gm"),"").replace(MULTILINER,"\\n").replace(new RegExp(quote,"g"),'\\"')};Lexer.prototype.tag_half_assignment=function tag_half_assignment(tag){var last;last=this.tokens.pop();this.tokens.push([(""+tag+"="),(""+tag+"="),last[2]]);return true};Lexer.prototype.tag_parameters=function tag_parameters(){var _a,i,tok;if(this.tag()!==")"){return null}i=0;while(true){i+=1;tok=this.prev(i);if(!tok){return null}if((_a=tok[0])==="IDENTIFIER"){tok[0]="PARAM"}else{if(_a===")"){tok[0]="PARAM_END"}else{if(_a==="("){tok[0]="PARAM_START";return tok[0]}}}}return true};Lexer.prototype.close_indentation=function close_indentation(){return this.outdent_token(this.indent)};Lexer.prototype.identifier_error=function identifier_error(word){throw new Error(('SyntaxError: Reserved word "'+word+'" on line '+(this.line+1)))};Lexer.prototype.assignment_error=function assignment_error(){throw new Error(('SyntaxError: Reserved word "'+(this.value())+'" on line '+(this.line+1)+" can't be assigned"))};Lexer.prototype.interpolate_string=function interpolate_string(str,escape_quotes){var _a,_b,_c,_d,_e,escaped,expr,group,i,inner,interp,interpolated,lexer,match,nested,pi,quote,tag,token,tokens,value;if(str.length<3||!starts(str,'"')){return this.token("STRING",str)}else{lexer=new Lexer();tokens=[];quote=str.substring(0,1);_a=[1,1];i=_a[0];pi=_a[1];while(i1;if(interpolated){this.token("(","(")}_c=tokens;for(i=0,_d=_c.length;i<_d;i++){token=_c[i];_e=token;tag=_e[0];value=_e[1];if(tag==="TOKENS"){this.tokens=this.tokens.concat(value)}else{if(tag==="STRING"&&escape_quotes){escaped=value.substring(1,value.length-1).replace(/"/g,'\\"');this.token(tag,('"'+escaped+'"'))}else{this.token(tag,value)}}if(i:!?]+)([ \t]*)/;WHITESPACE=/^([ \t]+)/;COMMENT=/^(((\n?[ \t]*)?#[^\n]*)+)/;CODE=/^((-|=)>)/;MULTI_DENT=/^((\n([ \t]*))+)(\.)?/;LAST_DENTS=/\n([ \t]*)/g;LAST_DENT=/\n([ \t]*)/;ASSIGNMENT=/^(:|=)$/;REGEX_START=/^\/[^\/ ]/;REGEX_INTERPOLATION=/([^\\]\$[a-zA-Z_@]|[^\\]\$\{.*[^\\]\})/;REGEX_FLAGS=/^[imgy]{0,4}/;REGEX_ESCAPE=/\\[^\$]/g;JS_CLEANER=/(^`|`$)/g;MULTILINER=/\n/g;STRING_NEWLINES=/\n[ \t]*/g;COMMENT_CLEANER=/(^[ \t]*#|\n[ \t]*$)/mg;NO_NEWLINE=/^([+\*&|\/\-%=<>:!.\\][<>=&|]*|and|or|is|isnt|not|delete|typeof|instanceof)$/;HEREDOC_INDENT=/^[ \t]+/mg;NOT_REGEX=["NUMBER","REGEX","++","--","FALSE","NULL","TRUE"];CALLABLE=["IDENTIFIER","SUPER",")","]","}","STRING","@","THIS"];ACCESSORS=["PROPERTY_ACCESS","PROTOTYPE_ACCESS","SOAK_ACCESS","@"];LINE_BREAK=["INDENT","OUTDENT","TERMINATOR"];HALF_ASSIGNMENTS=["-","+","/","*","%","||","&&","?"];CONVERSIONS={and:"&&",or:"||",is:"==",isnt:"!=",not:"!"}})();var parser=(function(){var parser={trace:function trace(){},yy:{},symbols_:{Root:2,TERMINATOR:3,Expressions:4,Block:5,Expression:6,Value:7,Call:8,Curry:9,Code:10,Operation:11,Assign:12,If:13,Try:14,Throw:15,Return:16,While:17,For:18,Switch:19,Extends:20,Class:21,Splat:22,Existence:23,Comment:24,Extension:25,INDENT:26,OUTDENT:27,Identifier:28,IDENTIFIER:29,AlphaNumeric:30,NUMBER:31,STRING:32,Literal:33,JS:34,REGEX:35,BREAK:36,CONTINUE:37,TRUE:38,FALSE:39,YES:40,NO:41,ON:42,OFF:43,Assignable:44,ASSIGN:45,AssignObj:46,RETURN:47,COMMENT:48,"?":49,PARAM_START:50,ParamList:51,PARAM_END:52,FuncGlyph:53,"->":54,"=>":55,Param:56,",":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,SOAKED_INDEX_START:78,SOAKED_INDEX_END:79,"{":80,AssignList:81,"}":82,IndentedAssignList:83,CLASS:84,EXTENDS:85,ClassBody:86,ClassAssign:87,NEW:88,Super:89,"<-":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,EXTENSION:108,WhileSource:109,WHILE:110,WHEN:111,FOR:112,ForVariables:113,ForSource:114,IN:115,OF:116,BY:117,SWITCH:118,Whens:119,ELSE:120,When:121,LEADING_WHEN:122,IfStart:123,IF:124,ElsIf:125,IfBlock: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:162,"$accept":0,"$end":1},terminals_:{"3":"TERMINATOR","26":"INDENT","27":"OUTDENT","29":"IDENTIFIER","31":"NUMBER","32":"STRING","34":"JS","35":"REGEX","36":"BREAK","37":"CONTINUE","38":"TRUE","39":"FALSE","40":"YES","41":"NO","42":"ON","43":"OFF","45":"ASSIGN","47":"RETURN","48":"COMMENT","49":"?","50":"PARAM_START","52":"PARAM_END","54":"->","55":"=>","57":",","58":"PARAM","59":".","69":"NULL","70":"PROPERTY_ACCESS","71":"PROTOTYPE_ACCESS","72":"::","73":"SOAK_ACCESS","76":"INDEX_START","77":"INDEX_END","78":"SOAKED_INDEX_START","79":"SOAKED_INDEX_END","80":"{","82":"}","84":"CLASS","85":"EXTENDS","88":"NEW","90":"<-","92":"CALL_START","94":"CALL_END","95":"SUPER","96":"THIS","97":"@","98":"[","99":"]","101":"TRY","103":"FINALLY","104":"CATCH","105":"THROW","106":"(","107":")","108":"EXTENSION","110":"WHILE","111":"WHEN","112":"FOR","115":"IN","116":"OF","117":"BY","118":"SWITCH","120":"ELSE","122":"LEADING_WHEN","124":"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"},productions_:[0,[2,0],[2,1],[2,1],[2,2],[4,1],[4,3],[4,2],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[5,3],[5,2],[5,2],[28,1],[30,1],[30,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[33,1],[12,3],[46,3],[46,3],[46,1],[16,2],[16,1],[24,1],[23,2],[10,5],[10,2],[53,1],[53,1],[51,0],[51,1],[51,3],[56,1],[56,4],[22,4],[60,1],[60,2],[60,2],[60,1],[44,1],[44,1],[44,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[61,2],[61,2],[61,1],[61,2],[61,1],[61,1],[74,3],[74,3],[65,3],[65,3],[65,4],[65,4],[81,0],[81,1],[81,3],[81,3],[81,4],[83,3],[83,4],[21,2],[21,4],[21,5],[21,7],[87,1],[87,3],[86,0],[86,1],[86,3],[8,1],[8,2],[8,1],[9,3],[20,3],[62,2],[62,2],[91,3],[91,4],[89,4],[89,5],[68,1],[68,1],[63,2],[67,6],[67,7],[75,6],[75,7],[64,3],[64,4],[93,0],[93,1],[93,2],[93,3],[93,3],[93,4],[93,4],[93,2],[93,3],[100,1],[100,3],[14,3],[14,4],[14,5],[102,3],[15,2],[66,3],[25,1],[109,2],[109,4],[17,2],[17,2],[18,4],[18,4],[113,1],[113,3],[114,2],[114,2],[114,4],[114,4],[114,4],[114,6],[114,6],[19,5],[19,7],[119,1],[119,2],[121,3],[121,4],[121,3],[123,3],[123,2],[126,1],[126,3],[125,4],[13,1],[13,3],[13,3],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,2],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3],[11,3]],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.$=$$[$0-1+1-1];break;case 13:this.$=$$[$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-3+2-1];break;case 28:this.$=new Expressions();break;case 29:this.$=Expressions.wrap([$$[$0-2+2-1]]);break;case 30:this.$=new LiteralNode(yytext);break;case 31:this.$=new LiteralNode(yytext);break;case 32:this.$=new LiteralNode(yytext);break;case 33:this.$=$$[$0-1+1-1];break;case 34:this.$=new LiteralNode(yytext);break;case 35:this.$=new LiteralNode(yytext);break;case 36:this.$=new LiteralNode(yytext);break;case 37:this.$=new LiteralNode(yytext);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 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.$=$$[$0-1+1-1];break;case 48:this.$=new ReturnNode($$[$0-2+2-1]);break;case 49:this.$=new ReturnNode(new ValueNode(new LiteralNode("null")));break;case 50:this.$=new CommentNode(yytext);break;case 51:this.$=new ExistenceNode($$[$0-2+1-1]);break;case 52:this.$=new CodeNode($$[$0-5+2-1],$$[$0-5+5-1],$$[$0-5+4-1]);break;case 53:this.$=new CodeNode([],$$[$0-2+2-1],$$[$0-2+1-1]);break;case 54:this.$="func";break;case 55:this.$="boundfunc";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(yytext);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.$=new IndexNode($$[$0-3+2-1],"soak");break;case 83:this.$=new ObjectNode($$[$0-3+2-1]);break;case 84:this.$=new ObjectNode($$[$0-3+2-1]);break;case 85:this.$=new ObjectNode($$[$0-4+2-1]);break;case 86:this.$=new ObjectNode($$[$0-4+2-1]);break;case 87:this.$=[];break;case 88:this.$=[$$[$0-1+1-1]];break;case 89:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 90:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 91:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 92:this.$=$$[$0-3+2-1];break;case 93:this.$=$$[$0-4+2-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-2+2-1].new_instance();break;case 105:this.$=$$[$0-1+1-1];break;case 106:this.$=new CurryNode($$[$0-3+1-1],$$[$0-3+3-1]);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-3+2-1];break;case 111:this.$=$$[$0-4+2-1];break;case 112:this.$=new CallNode("super",$$[$0-4+3-1]);break;case 113:this.$=new CallNode("super",$$[$0-5+3-1]);break;case 114:this.$=new ValueNode(new LiteralNode("this"));break;case 115:this.$=new ValueNode(new LiteralNode("this"));break;case 116:this.$=new ValueNode(new LiteralNode("this"),[new AccessorNode($$[$0-2+2-1])]);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 RangeNode($$[$0-6+2-1],$$[$0-6+5-1]);break;case 120:this.$=new RangeNode($$[$0-7+2-1],$$[$0-7+6-1],true);break;case 121:this.$=new ArrayNode($$[$0-3+2-1]);break;case 122:this.$=new ArrayNode($$[$0-4+2-1]);break;case 123:this.$=[];break;case 124:this.$=[$$[$0-1+1-1]];break;case 125:this.$=[$$[$0-2+2-1]];break;case 126:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 127:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 128:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 129:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 130:this.$=$$[$0-2+1-1];break;case 131:this.$=$$[$0-3+1-1];break;case 132:this.$=$$[$0-1+1-1];break;case 133: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 134:this.$=new TryNode($$[$0-3+2-1],$$[$0-3+3-1][0],$$[$0-3+3-1][1]);break;case 135:this.$=new TryNode($$[$0-4+2-1],null,null,$$[$0-4+4-1]);break;case 136:this.$=new TryNode($$[$0-5+2-1],$$[$0-5+3-1][0],$$[$0-5+3-1][1],$$[$0-5+5-1]);break;case 137:this.$=[$$[$0-3+2-1],$$[$0-3+3-1]];break;case 138:this.$=new ThrowNode($$[$0-2+2-1]);break;case 139:this.$=new ParentheticalNode($$[$0-3+2-1]);break;case 140:this.$=yytext;break;case 141:this.$=new WhileNode($$[$0-2+2-1]);break;case 142:this.$=new WhileNode($$[$0-4+2-1],{filter:$$[$0-4+4-1]});break;case 143:this.$=$$[$0-2+1-1].add_body($$[$0-2+2-1]);break;case 144:this.$=$$[$0-2+2-1].add_body(Expressions.wrap([$$[$0-2+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]);break;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 147:this.$=[$$[$0-1+1-1]];break;case 148:this.$=[$$[$0-3+1-1],$$[$0-3+3-1]];break;case 149:this.$={source:$$[$0-2+2-1]};break;case 150:this.$={source:$$[$0-2+2-1],object:true};break;case 151:this.$={source:$$[$0-4+2-1],filter:$$[$0-4+4-1]};break;case 152:this.$={source:$$[$0-4+2-1],filter:$$[$0-4+4-1],object:true};break;case 153:this.$={source:$$[$0-4+2-1],step:$$[$0-4+4-1]};break;case 154:this.$={source:$$[$0-6+2-1],filter:$$[$0-6+4-1],step:$$[$0-6+6-1]};break;case 155:this.$={source:$$[$0-6+2-1],step:$$[$0-6+4-1],filter:$$[$0-6+6-1]};break;case 156:this.$=$$[$0-5+4-1].rewrite_condition($$[$0-5+2-1]);break;case 157:this.$=$$[$0-7+4-1].rewrite_condition($$[$0-7+2-1]).add_else($$[$0-7+6-1],true);break;case 158:this.$=$$[$0-1+1-1];break;case 159:this.$=$$[$0-2+1-1].push($$[$0-2+2-1]);break;case 160:this.$=new IfNode($$[$0-3+2-1],$$[$0-3+3-1],null,{statement:true});break;case 161:this.$=new IfNode($$[$0-4+2-1],$$[$0-4+3-1],null,{statement:true});break;case 162:this.$=(function(){$$[$0-3+3-1].comment=$$[$0-3+1-1];return $$[$0-3+3-1]}());break;case 163:this.$=new IfNode($$[$0-3+2-1],$$[$0-3+3-1]);break;case 164:this.$=$$[$0-2+1-1].add_else($$[$0-2+2-1]);break;case 165:this.$=$$[$0-1+1-1];break;case 166:this.$=$$[$0-3+1-1].add_else($$[$0-3+3-1]);break;case 167:this.$=(new IfNode($$[$0-4+3-1],$$[$0-4+4-1])).force_statement();break;case 168:this.$=$$[$0-1+1-1];break;case 169:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),null,{statement:true});break;case 170:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),null,{statement:true,invert:true});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("++",$$[$0-2+2-1]);break;case 178:this.$=new OpNode("delete",$$[$0-2+2-1]);break;case 179:this.$=new OpNode("typeof",$$[$0-2+2-1]);break;case 180:this.$=new OpNode("--",$$[$0-2+1-1],null,true);break;case 181:this.$=new OpNode("++",$$[$0-2+1-1],null,true);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("?=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 210:this.$=new OpNode("instanceof",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 211:this.$=new OpNode("in",$$[$0-3+1-1],$$[$0-3+3-1]);break}},table:[{"1":[2,1],"2":1,"3":[1,2],"4":3,"5":4,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,6],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[3]},{"1":[2,2],"24":86,"48":[1,55]},{"1":[2,3],"3":[1,87]},{"3":[1,88]},{"1":[2,5],"3":[2,5],"27":[2,5],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"4":126,"6":5,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"27":[1,127],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,8],"3":[2,8],"26":[2,8],"27":[2,8],"49":[2,8],"57":[2,8],"59":[2,8],"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,8],"78":[1,139],"79":[2,8],"82":[2,8],"90":[1,128],"91":129,"92":[1,131],"94":[2,8],"99":[2,8],"107":[2,8],"110":[2,8],"111":[2,8],"112":[2,8],"115":[2,8],"117":[2,8],"124":[2,8],"127":[2,8],"130":[2,8],"131":[2,8],"133":[2,8],"134":[2,8],"137":[2,8],"138":[2,8],"139":[2,8],"140":[2,8],"141":[2,8],"142":[2,8],"143":[2,8],"144":[2,8],"145":[2,8],"146":[2,8],"147":[2,8],"148":[2,8],"149":[2,8],"150":[2,8],"151":[2,8],"152":[2,8],"153":[2,8],"154":[2,8],"155":[2,8],"156":[2,8],"157":[2,8],"158":[2,8],"159":[2,8],"160":[2,8],"161":[2,8],"162":[2,8]},{"1":[2,9],"3":[2,9],"26":[2,9],"27":[2,9],"49":[2,9],"57":[2,9],"59":[2,9],"77":[2,9],"79":[2,9],"82":[2,9],"94":[2,9],"99":[2,9],"107":[2,9],"110":[2,9],"111":[2,9],"112":[2,9],"115":[2,9],"117":[2,9],"124":[2,9],"127":[2,9],"130":[2,9],"131":[2,9],"133":[2,9],"134":[2,9],"137":[2,9],"138":[2,9],"139":[2,9],"140":[2,9],"141":[2,9],"142":[2,9],"143":[2,9],"144":[2,9],"145":[2,9],"146":[2,9],"147":[2,9],"148":[2,9],"149":[2,9],"150":[2,9],"151":[2,9],"152":[2,9],"153":[2,9],"154":[2,9],"155":[2,9],"156":[2,9],"157":[2,9],"158":[2,9],"159":[2,9],"160":[2,9],"161":[2,9],"162":[2,9]},{"1":[2,10],"3":[2,10],"26":[2,10],"27":[2,10],"49":[2,10],"57":[2,10],"59":[2,10],"77":[2,10],"79":[2,10],"82":[2,10],"94":[2,10],"99":[2,10],"107":[2,10],"110":[2,10],"111":[2,10],"112":[2,10],"115":[2,10],"117":[2,10],"124":[2,10],"127":[2,10],"130":[2,10],"131":[2,10],"133":[2,10],"134":[2,10],"137":[2,10],"138":[2,10],"139":[2,10],"140":[2,10],"141":[2,10],"142":[2,10],"143":[2,10],"144":[2,10],"145":[2,10],"146":[2,10],"147":[2,10],"148":[2,10],"149":[2,10],"150":[2,10],"151":[2,10],"152":[2,10],"153":[2,10],"154":[2,10],"155":[2,10],"156":[2,10],"157":[2,10],"158":[2,10],"159":[2,10],"160":[2,10],"161":[2,10],"162":[2,10]},{"1":[2,11],"3":[2,11],"26":[2,11],"27":[2,11],"49":[2,11],"57":[2,11],"59":[2,11],"77":[2,11],"79":[2,11],"82":[2,11],"94":[2,11],"99":[2,11],"107":[2,11],"110":[2,11],"111":[2,11],"112":[2,11],"115":[2,11],"117":[2,11],"124":[2,11],"127":[2,11],"130":[2,11],"131":[2,11],"133":[2,11],"134":[2,11],"137":[2,11],"138":[2,11],"139":[2,11],"140":[2,11],"141":[2,11],"142":[2,11],"143":[2,11],"144":[2,11],"145":[2,11],"146":[2,11],"147":[2,11],"148":[2,11],"149":[2,11],"150":[2,11],"151":[2,11],"152":[2,11],"153":[2,11],"154":[2,11],"155":[2,11],"156":[2,11],"157":[2,11],"158":[2,11],"159":[2,11],"160":[2,11],"161":[2,11],"162":[2,11]},{"1":[2,12],"3":[2,12],"26":[2,12],"27":[2,12],"49":[2,12],"57":[2,12],"59":[2,12],"77":[2,12],"79":[2,12],"82":[2,12],"94":[2,12],"99":[2,12],"107":[2,12],"110":[2,12],"111":[2,12],"112":[2,12],"115":[2,12],"117":[2,12],"124":[2,12],"127":[2,12],"130":[2,12],"131":[2,12],"133":[2,12],"134":[2,12],"137":[2,12],"138":[2,12],"139":[2,12],"140":[2,12],"141":[2,12],"142":[2,12],"143":[2,12],"144":[2,12],"145":[2,12],"146":[2,12],"147":[2,12],"148":[2,12],"149":[2,12],"150":[2,12],"151":[2,12],"152":[2,12],"153":[2,12],"154":[2,12],"155":[2,12],"156":[2,12],"157":[2,12],"158":[2,12],"159":[2,12],"160":[2,12],"161":[2,12],"162":[2,12]},{"1":[2,13],"3":[2,13],"26":[2,13],"27":[2,13],"49":[2,13],"57":[2,13],"59":[2,13],"77":[2,13],"79":[2,13],"82":[2,13],"94":[2,13],"99":[2,13],"107":[2,13],"110":[2,13],"111":[2,13],"112":[2,13],"115":[2,13],"117":[2,13],"124":[2,13],"127":[2,13],"130":[2,13],"131":[2,13],"133":[2,13],"134":[2,13],"137":[2,13],"138":[2,13],"139":[2,13],"140":[2,13],"141":[2,13],"142":[2,13],"143":[2,13],"144":[2,13],"145":[2,13],"146":[2,13],"147":[2,13],"148":[2,13],"149":[2,13],"150":[2,13],"151":[2,13],"152":[2,13],"153":[2,13],"154":[2,13],"155":[2,13],"156":[2,13],"157":[2,13],"158":[2,13],"159":[2,13],"160":[2,13],"161":[2,13],"162":[2,13]},{"1":[2,14],"3":[2,14],"26":[2,14],"27":[2,14],"49":[2,14],"57":[2,14],"59":[2,14],"77":[2,14],"79":[2,14],"82":[2,14],"94":[2,14],"99":[2,14],"107":[2,14],"110":[2,14],"111":[2,14],"112":[2,14],"115":[2,14],"117":[2,14],"124":[2,14],"127":[2,14],"130":[2,14],"131":[2,14],"133":[2,14],"134":[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],"162":[2,14]},{"1":[2,15],"3":[2,15],"26":[2,15],"27":[2,15],"49":[2,15],"57":[2,15],"59":[2,15],"77":[2,15],"79":[2,15],"82":[2,15],"94":[2,15],"99":[2,15],"107":[2,15],"110":[2,15],"111":[2,15],"112":[2,15],"115":[2,15],"117":[2,15],"124":[2,15],"127":[2,15],"130":[2,15],"131":[2,15],"133":[2,15],"134":[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],"162":[2,15]},{"1":[2,16],"3":[2,16],"26":[2,16],"27":[2,16],"49":[2,16],"57":[2,16],"59":[2,16],"77":[2,16],"79":[2,16],"82":[2,16],"94":[2,16],"99":[2,16],"107":[2,16],"110":[2,16],"111":[2,16],"112":[2,16],"115":[2,16],"117":[2,16],"124":[2,16],"127":[2,16],"130":[2,16],"131":[2,16],"133":[2,16],"134":[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],"162":[2,16]},{"1":[2,17],"3":[2,17],"26":[2,17],"27":[2,17],"49":[2,17],"57":[2,17],"59":[2,17],"77":[2,17],"79":[2,17],"82":[2,17],"94":[2,17],"99":[2,17],"107":[2,17],"110":[2,17],"111":[2,17],"112":[2,17],"115":[2,17],"117":[2,17],"124":[2,17],"127":[2,17],"130":[2,17],"131":[2,17],"133":[2,17],"134":[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],"162":[2,17]},{"1":[2,18],"3":[2,18],"26":[2,18],"27":[2,18],"49":[2,18],"57":[2,18],"59":[2,18],"77":[2,18],"79":[2,18],"82":[2,18],"94":[2,18],"99":[2,18],"107":[2,18],"110":[2,18],"111":[2,18],"112":[2,18],"115":[2,18],"117":[2,18],"124":[2,18],"127":[2,18],"130":[2,18],"131":[2,18],"133":[2,18],"134":[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],"162":[2,18]},{"1":[2,19],"3":[2,19],"26":[2,19],"27":[2,19],"49":[2,19],"57":[2,19],"59":[2,19],"77":[2,19],"79":[2,19],"82":[2,19],"94":[2,19],"99":[2,19],"107":[2,19],"110":[2,19],"111":[2,19],"112":[2,19],"115":[2,19],"117":[2,19],"124":[2,19],"127":[2,19],"130":[2,19],"131":[2,19],"133":[2,19],"134":[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],"162":[2,19]},{"1":[2,20],"3":[2,20],"26":[2,20],"27":[2,20],"49":[2,20],"57":[2,20],"59":[2,20],"77":[2,20],"79":[2,20],"82":[2,20],"94":[2,20],"99":[2,20],"107":[2,20],"110":[2,20],"111":[2,20],"112":[2,20],"115":[2,20],"117":[2,20],"124":[2,20],"127":[2,20],"130":[2,20],"131":[2,20],"133":[2,20],"134":[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],"162":[2,20]},{"1":[2,21],"3":[2,21],"26":[2,21],"27":[2,21],"49":[2,21],"57":[2,21],"59":[2,21],"77":[2,21],"79":[2,21],"82":[2,21],"94":[2,21],"99":[2,21],"107":[2,21],"110":[2,21],"111":[2,21],"112":[2,21],"115":[2,21],"117":[2,21],"124":[2,21],"127":[2,21],"130":[2,21],"131":[2,21],"133":[2,21],"134":[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],"162":[2,21]},{"1":[2,22],"3":[2,22],"26":[2,22],"27":[2,22],"49":[2,22],"57":[2,22],"59":[2,22],"77":[2,22],"79":[2,22],"82":[2,22],"94":[2,22],"99":[2,22],"107":[2,22],"110":[2,22],"111":[2,22],"112":[2,22],"115":[2,22],"117":[2,22],"124":[2,22],"127":[2,22],"130":[2,22],"131":[2,22],"133":[2,22],"134":[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],"162":[2,22]},{"1":[2,23],"3":[2,23],"26":[2,23],"27":[2,23],"49":[2,23],"57":[2,23],"59":[2,23],"77":[2,23],"79":[2,23],"82":[2,23],"94":[2,23],"99":[2,23],"107":[2,23],"110":[2,23],"111":[2,23],"112":[2,23],"115":[2,23],"117":[2,23],"124":[2,23],"127":[2,23],"130":[2,23],"131":[2,23],"133":[2,23],"134":[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],"162":[2,23]},{"1":[2,24],"3":[2,24],"26":[2,24],"27":[2,24],"49":[2,24],"57":[2,24],"59":[2,24],"77":[2,24],"79":[2,24],"82":[2,24],"94":[2,24],"99":[2,24],"107":[2,24],"110":[2,24],"111":[2,24],"112":[2,24],"115":[2,24],"117":[2,24],"124":[2,24],"127":[2,24],"130":[2,24],"131":[2,24],"133":[2,24],"134":[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],"162":[2,24]},{"1":[2,25],"3":[2,25],"26":[2,25],"27":[2,25],"49":[2,25],"57":[2,25],"59":[2,25],"77":[2,25],"79":[2,25],"82":[2,25],"94":[2,25],"99":[2,25],"107":[2,25],"110":[2,25],"111":[2,25],"112":[2,25],"115":[2,25],"117":[2,25],"124":[2,25],"127":[2,25],"130":[2,25],"131":[2,25],"133":[2,25],"134":[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],"162":[2,25]},{"1":[2,26],"3":[2,26],"26":[2,26],"27":[2,26],"49":[2,26],"57":[2,26],"59":[2,26],"77":[2,26],"79":[2,26],"82":[2,26],"94":[2,26],"99":[2,26],"107":[2,26],"110":[2,26],"111":[2,26],"112":[2,26],"115":[2,26],"117":[2,26],"124":[2,26],"127":[2,26],"130":[2,26],"131":[2,26],"133":[2,26],"134":[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],"162":[2,26]},{"1":[2,69],"3":[2,69],"26":[2,69],"27":[2,69],"45":[1,140],"49":[2,69],"57":[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],"94":[2,69],"99":[2,69],"107":[2,69],"110":[2,69],"111":[2,69],"112":[2,69],"115":[2,69],"117":[2,69],"124":[2,69],"127":[2,69],"130":[2,69],"131":[2,69],"133":[2,69],"134":[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],"162":[2,69]},{"1":[2,70],"3":[2,70],"26":[2,70],"27":[2,70],"49":[2,70],"57":[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],"94":[2,70],"99":[2,70],"107":[2,70],"110":[2,70],"111":[2,70],"112":[2,70],"115":[2,70],"117":[2,70],"124":[2,70],"127":[2,70],"130":[2,70],"131":[2,70],"133":[2,70],"134":[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],"162":[2,70]},{"1":[2,71],"3":[2,71],"26":[2,71],"27":[2,71],"49":[2,71],"57":[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],"94":[2,71],"99":[2,71],"107":[2,71],"110":[2,71],"111":[2,71],"112":[2,71],"115":[2,71],"117":[2,71],"124":[2,71],"127":[2,71],"130":[2,71],"131":[2,71],"133":[2,71],"134":[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],"162":[2,71]},{"1":[2,72],"3":[2,72],"26":[2,72],"27":[2,72],"49":[2,72],"57":[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],"94":[2,72],"99":[2,72],"107":[2,72],"110":[2,72],"111":[2,72],"112":[2,72],"115":[2,72],"117":[2,72],"124":[2,72],"127":[2,72],"130":[2,72],"131":[2,72],"133":[2,72],"134":[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],"162":[2,72]},{"1":[2,73],"3":[2,73],"26":[2,73],"27":[2,73],"49":[2,73],"57":[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],"94":[2,73],"99":[2,73],"107":[2,73],"110":[2,73],"111":[2,73],"112":[2,73],"115":[2,73],"117":[2,73],"124":[2,73],"127":[2,73],"130":[2,73],"131":[2,73],"133":[2,73],"134":[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],"162":[2,73]},{"1":[2,74],"3":[2,74],"26":[2,74],"27":[2,74],"49":[2,74],"57":[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],"94":[2,74],"99":[2,74],"107":[2,74],"110":[2,74],"111":[2,74],"112":[2,74],"115":[2,74],"117":[2,74],"124":[2,74],"127":[2,74],"130":[2,74],"131":[2,74],"133":[2,74],"134":[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],"162":[2,74]},{"1":[2,103],"3":[2,103],"26":[2,103],"27":[2,103],"49":[2,103],"57":[2,103],"59":[2,103],"61":142,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,103],"78":[1,139],"79":[2,103],"82":[2,103],"91":141,"92":[1,131],"94":[2,103],"99":[2,103],"107":[2,103],"110":[2,103],"111":[2,103],"112":[2,103],"115":[2,103],"117":[2,103],"124":[2,103],"127":[2,103],"130":[2,103],"131":[2,103],"133":[2,103],"134":[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],"162":[2,103]},{"7":144,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":146,"62":143,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,105],"3":[2,105],"26":[2,105],"27":[2,105],"49":[2,105],"57":[2,105],"59":[2,105],"77":[2,105],"79":[2,105],"82":[2,105],"94":[2,105],"99":[2,105],"107":[2,105],"110":[2,105],"111":[2,105],"112":[2,105],"115":[2,105],"117":[2,105],"124":[2,105],"127":[2,105],"130":[2,105],"131":[2,105],"133":[2,105],"134":[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],"162":[2,105]},{"51":147,"52":[2,56],"56":148,"57":[2,56],"58":[1,149]},{"3":[1,151],"5":150,"26":[1,6]},{"6":152,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":153,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":154,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":155,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":156,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":157,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":158,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":159,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":160,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,168],"3":[2,168],"26":[2,168],"27":[2,168],"49":[2,168],"57":[2,168],"59":[2,168],"77":[2,168],"79":[2,168],"82":[2,168],"94":[2,168],"99":[2,168],"107":[2,168],"110":[2,168],"111":[2,168],"112":[2,168],"115":[2,168],"117":[2,168],"124":[2,168],"127":[2,168],"130":[2,168],"131":[2,168],"133":[2,168],"134":[2,168],"137":[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]},{"3":[1,151],"5":161,"26":[1,6]},{"6":162,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,49],"3":[2,49],"6":163,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[2,49],"27":[2,49],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,49],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,49],"59":[2,49],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"77":[2,49],"79":[2,49],"80":[1,81],"82":[2,49],"84":[1,54],"88":[1,33],"89":34,"94":[2,49],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,49],"101":[1,47],"105":[1,48],"106":[1,70],"107":[2,49],"108":[1,56],"109":50,"110":[2,49],"111":[2,49],"112":[1,51],"115":[2,49],"117":[2,49],"118":[1,52],"123":77,"124":[2,49],"126":46,"127":[2,49],"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45],"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],"162":[2,49]},{"3":[1,151],"5":164,"26":[1,6]},{"28":166,"29":[1,85],"113":165},{"6":167,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,66],"3":[2,66],"26":[2,66],"27":[2,66],"45":[2,66],"49":[2,66],"57":[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],"85":[1,168],"90":[2,66],"92":[2,66],"94":[2,66],"99":[2,66],"107":[2,66],"110":[2,66],"111":[2,66],"112":[2,66],"115":[2,66],"117":[2,66],"124":[2,66],"127":[2,66],"130":[2,66],"131":[2,66],"133":[2,66],"134":[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],"162":[2,66]},{"7":144,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":169,"62":170,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,50],"3":[2,50],"26":[2,50],"27":[2,50],"48":[2,50],"49":[2,50],"57":[2,50],"59":[2,50],"77":[2,50],"79":[2,50],"82":[2,50],"94":[2,50],"99":[2,50],"103":[2,50],"104":[2,50],"107":[2,50],"110":[2,50],"111":[2,50],"112":[2,50],"115":[2,50],"117":[2,50],"120":[2,50],"122":[2,50],"124":[2,50],"127":[2,50],"130":[2,50],"131":[2,50],"133":[2,50],"134":[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],"162":[2,50]},{"1":[2,140],"3":[2,140],"26":[2,140],"27":[2,140],"49":[2,140],"57":[2,140],"59":[2,140],"77":[2,140],"79":[2,140],"82":[2,140],"94":[2,140],"99":[2,140],"107":[2,140],"110":[2,140],"111":[2,140],"112":[2,140],"115":[2,140],"117":[2,140],"124":[2,140],"127":[2,140],"130":[2,140],"131":[2,140],"133":[2,140],"134":[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],"162":[2,140]},{"1":[2,67],"3":[2,67],"26":[2,67],"27":[2,67],"45":[2,67],"49":[2,67],"57":[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],"94":[2,67],"99":[2,67],"107":[2,67],"110":[2,67],"111":[2,67],"112":[2,67],"115":[2,67],"117":[2,67],"124":[2,67],"127":[2,67],"130":[2,67],"131":[2,67],"133":[2,67],"134":[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],"162":[2,67]},{"1":[2,68],"3":[2,68],"26":[2,68],"27":[2,68],"45":[2,68],"49":[2,68],"57":[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],"94":[2,68],"99":[2,68],"107":[2,68],"110":[2,68],"111":[2,68],"112":[2,68],"115":[2,68],"117":[2,68],"124":[2,68],"127":[2,68],"130":[2,68],"131":[2,68],"133":[2,68],"134":[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],"162":[2,68]},{"1":[2,33],"3":[2,33],"26":[2,33],"27":[2,33],"49":[2,33],"57":[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],"94":[2,33],"99":[2,33],"107":[2,33],"110":[2,33],"111":[2,33],"112":[2,33],"115":[2,33],"117":[2,33],"124":[2,33],"127":[2,33],"130":[2,33],"131":[2,33],"133":[2,33],"134":[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],"162":[2,33]},{"1":[2,34],"3":[2,34],"26":[2,34],"27":[2,34],"49":[2,34],"57":[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],"94":[2,34],"99":[2,34],"107":[2,34],"110":[2,34],"111":[2,34],"112":[2,34],"115":[2,34],"117":[2,34],"124":[2,34],"127":[2,34],"130":[2,34],"131":[2,34],"133":[2,34],"134":[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],"162":[2,34]},{"1":[2,35],"3":[2,35],"26":[2,35],"27":[2,35],"49":[2,35],"57":[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],"94":[2,35],"99":[2,35],"107":[2,35],"110":[2,35],"111":[2,35],"112":[2,35],"115":[2,35],"117":[2,35],"124":[2,35],"127":[2,35],"130":[2,35],"131":[2,35],"133":[2,35],"134":[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],"162":[2,35]},{"1":[2,36],"3":[2,36],"26":[2,36],"27":[2,36],"49":[2,36],"57":[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],"94":[2,36],"99":[2,36],"107":[2,36],"110":[2,36],"111":[2,36],"112":[2,36],"115":[2,36],"117":[2,36],"124":[2,36],"127":[2,36],"130":[2,36],"131":[2,36],"133":[2,36],"134":[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],"162":[2,36]},{"1":[2,37],"3":[2,37],"26":[2,37],"27":[2,37],"49":[2,37],"57":[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],"94":[2,37],"99":[2,37],"107":[2,37],"110":[2,37],"111":[2,37],"112":[2,37],"115":[2,37],"117":[2,37],"124":[2,37],"127":[2,37],"130":[2,37],"131":[2,37],"133":[2,37],"134":[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],"162":[2,37]},{"1":[2,38],"3":[2,38],"26":[2,38],"27":[2,38],"49":[2,38],"57":[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],"94":[2,38],"99":[2,38],"107":[2,38],"110":[2,38],"111":[2,38],"112":[2,38],"115":[2,38],"117":[2,38],"124":[2,38],"127":[2,38],"130":[2,38],"131":[2,38],"133":[2,38],"134":[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],"162":[2,38]},{"1":[2,39],"3":[2,39],"26":[2,39],"27":[2,39],"49":[2,39],"57":[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],"94":[2,39],"99":[2,39],"107":[2,39],"110":[2,39],"111":[2,39],"112":[2,39],"115":[2,39],"117":[2,39],"124":[2,39],"127":[2,39],"130":[2,39],"131":[2,39],"133":[2,39],"134":[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],"162":[2,39]},{"1":[2,40],"3":[2,40],"26":[2,40],"27":[2,40],"49":[2,40],"57":[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],"94":[2,40],"99":[2,40],"107":[2,40],"110":[2,40],"111":[2,40],"112":[2,40],"115":[2,40],"117":[2,40],"124":[2,40],"127":[2,40],"130":[2,40],"131":[2,40],"133":[2,40],"134":[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],"162":[2,40]},{"1":[2,41],"3":[2,41],"26":[2,41],"27":[2,41],"49":[2,41],"57":[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],"94":[2,41],"99":[2,41],"107":[2,41],"110":[2,41],"111":[2,41],"112":[2,41],"115":[2,41],"117":[2,41],"124":[2,41],"127":[2,41],"130":[2,41],"131":[2,41],"133":[2,41],"134":[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],"162":[2,41]},{"1":[2,42],"3":[2,42],"26":[2,42],"27":[2,42],"49":[2,42],"57":[2,42],"59":[2,42],"70":[2,42],"71":[2,42],"72":[2,42],"73":[2,42],"76":[2,42],"77":[2,42],"78":[2,42],"79":[2,42],"82":[2,42],"90":[2,42],"92":[2,42],"94":[2,42],"99":[2,42],"107":[2,42],"110":[2,42],"111":[2,42],"112":[2,42],"115":[2,42],"117":[2,42],"124":[2,42],"127":[2,42],"130":[2,42],"131":[2,42],"133":[2,42],"134":[2,42],"137":[2,42],"138":[2,42],"139":[2,42],"140":[2,42],"141":[2,42],"142":[2,42],"143":[2,42],"144":[2,42],"145":[2,42],"146":[2,42],"147":[2,42],"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]},{"1":[2,43],"3":[2,43],"26":[2,43],"27":[2,43],"49":[2,43],"57":[2,43],"59":[2,43],"70":[2,43],"71":[2,43],"72":[2,43],"73":[2,43],"76":[2,43],"77":[2,43],"78":[2,43],"79":[2,43],"82":[2,43],"90":[2,43],"92":[2,43],"94":[2,43],"99":[2,43],"107":[2,43],"110":[2,43],"111":[2,43],"112":[2,43],"115":[2,43],"117":[2,43],"124":[2,43],"127":[2,43],"130":[2,43],"131":[2,43],"133":[2,43],"134":[2,43],"137":[2,43],"138":[2,43],"139":[2,43],"140":[2,43],"141":[2,43],"142":[2,43],"143":[2,43],"144":[2,43],"145":[2,43],"146":[2,43],"147":[2,43],"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]},{"6":171,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[2,123],"6":172,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,174],"27":[2,123],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,123],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"93":173,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,123],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,114],"3":[2,114],"26":[2,114],"27":[2,114],"49":[2,114],"57":[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],"94":[2,114],"99":[2,114],"107":[2,114],"110":[2,114],"111":[2,114],"112":[2,114],"115":[2,114],"117":[2,114],"124":[2,114],"127":[2,114],"130":[2,114],"131":[2,114],"133":[2,114],"134":[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],"162":[2,114]},{"1":[2,115],"3":[2,115],"26":[2,115],"27":[2,115],"28":175,"29":[1,85],"49":[2,115],"57":[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],"94":[2,115],"99":[2,115],"107":[2,115],"110":[2,115],"111":[2,115],"112":[2,115],"115":[2,115],"117":[2,115],"124":[2,115],"127":[2,115],"130":[2,115],"131":[2,115],"133":[2,115],"134":[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],"162":[2,115]},{"92":[1,176]},{"3":[2,54],"26":[2,54]},{"3":[2,55],"26":[2,55]},{"1":[2,165],"3":[2,165],"26":[2,165],"27":[2,165],"49":[2,165],"57":[2,165],"59":[2,165],"77":[2,165],"79":[2,165],"82":[2,165],"94":[2,165],"99":[2,165],"107":[2,165],"110":[2,165],"111":[2,165],"112":[2,165],"115":[2,165],"117":[2,165],"120":[1,177],"124":[2,165],"125":178,"127":[2,165],"130":[2,165],"131":[2,165],"133":[2,165],"134":[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],"162":[2,165]},{"6":179,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,62],"3":[2,62],"26":[2,62],"27":[2,62],"45":[2,62],"49":[2,62],"57":[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],"85":[2,62],"90":[2,62],"92":[2,62],"94":[2,62],"99":[2,62],"107":[2,62],"110":[2,62],"111":[2,62],"112":[2,62],"115":[2,62],"117":[2,62],"124":[2,62],"127":[2,62],"130":[2,62],"131":[2,62],"133":[2,62],"134":[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],"162":[2,62]},{"1":[2,65],"3":[2,65],"26":[2,65],"27":[2,65],"45":[2,65],"49":[2,65],"57":[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],"85":[2,65],"90":[2,65],"92":[2,65],"94":[2,65],"99":[2,65],"107":[2,65],"110":[2,65],"111":[2,65],"112":[2,65],"115":[2,65],"117":[2,65],"124":[2,65],"127":[2,65],"130":[2,65],"131":[2,65],"133":[2,65],"134":[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],"162":[2,65]},{"3":[2,87],"24":186,"26":[1,183],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":182,"48":[1,55],"57":[2,87],"81":180,"82":[2,87],"83":181},{"1":[2,31],"3":[2,31],"26":[2,31],"27":[2,31],"45":[2,31],"49":[2,31],"57":[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],"94":[2,31],"99":[2,31],"107":[2,31],"110":[2,31],"111":[2,31],"112":[2,31],"115":[2,31],"117":[2,31],"124":[2,31],"127":[2,31],"130":[2,31],"131":[2,31],"133":[2,31],"134":[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],"162":[2,31]},{"1":[2,32],"3":[2,32],"26":[2,32],"27":[2,32],"45":[2,32],"49":[2,32],"57":[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],"94":[2,32],"99":[2,32],"107":[2,32],"110":[2,32],"111":[2,32],"112":[2,32],"115":[2,32],"117":[2,32],"124":[2,32],"127":[2,32],"130":[2,32],"131":[2,32],"133":[2,32],"134":[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],"162":[2,32]},{"6":187,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,30],"3":[2,30],"26":[2,30],"27":[2,30],"45":[2,30],"49":[2,30],"57":[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],"85":[2,30],"90":[2,30],"92":[2,30],"94":[2,30],"99":[2,30],"107":[2,30],"110":[2,30],"111":[2,30],"112":[2,30],"115":[2,30],"116":[2,30],"117":[2,30],"124":[2,30],"127":[2,30],"130":[2,30],"131":[2,30],"133":[2,30],"134":[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],"162":[2,30]},{"1":[2,29],"3":[2,29],"26":[2,29],"27":[2,29],"48":[2,29],"49":[2,29],"57":[2,29],"59":[2,29],"77":[2,29],"79":[2,29],"82":[2,29],"94":[2,29],"99":[2,29],"103":[2,29],"104":[2,29],"107":[2,29],"110":[2,29],"111":[2,29],"112":[2,29],"115":[2,29],"117":[2,29],"120":[2,29],"122":[2,29],"124":[2,29],"127":[2,29],"130":[2,29],"131":[2,29],"133":[2,29],"134":[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],"162":[2,29]},{"1":[2,7],"3":[2,7],"6":188,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"27":[2,7],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,4]},{"1":[2,180],"3":[2,180],"26":[2,180],"27":[2,180],"49":[2,180],"57":[2,180],"59":[2,180],"77":[2,180],"79":[2,180],"82":[2,180],"94":[2,180],"99":[2,180],"107":[2,180],"110":[2,180],"111":[2,180],"112":[2,180],"115":[2,180],"117":[2,180],"124":[2,180],"127":[2,180],"130":[2,180],"131":[2,180],"133":[2,180],"134":[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],"162":[2,180]},{"1":[2,181],"3":[2,181],"26":[2,181],"27":[2,181],"49":[2,181],"57":[2,181],"59":[2,181],"77":[2,181],"79":[2,181],"82":[2,181],"94":[2,181],"99":[2,181],"107":[2,181],"110":[2,181],"111":[2,181],"112":[2,181],"115":[2,181],"117":[2,181],"124":[2,181],"127":[2,181],"130":[2,181],"131":[2,181],"133":[2,181],"134":[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],"162":[2,181]},{"6":189,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":190,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":191,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":192,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":193,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":194,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":195,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":196,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":197,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":198,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":199,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":200,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":201,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":202,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":203,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":204,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":205,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":206,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":207,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,51],"3":[2,51],"6":208,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[2,51],"27":[2,51],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,51],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,51],"59":[2,51],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"77":[2,51],"79":[2,51],"80":[1,81],"82":[2,51],"84":[1,54],"88":[1,33],"89":34,"94":[2,51],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,51],"101":[1,47],"105":[1,48],"106":[1,70],"107":[2,51],"108":[1,56],"109":50,"110":[2,51],"111":[2,51],"112":[2,51],"115":[2,51],"117":[2,51],"118":[1,52],"123":77,"124":[2,51],"126":46,"127":[2,51],"128":[1,37],"129":[1,38],"130":[2,51],"131":[2,51],"132":[1,41],"133":[2,51],"134":[2,51],"135":[1,44],"136":[1,45],"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],"162":[2,51]},{"6":209,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":210,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":211,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":212,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":213,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":214,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":215,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":216,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":217,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":218,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":219,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":220,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,144],"3":[2,144],"26":[2,144],"27":[2,144],"49":[2,144],"57":[2,144],"59":[2,144],"77":[2,144],"79":[2,144],"82":[2,144],"94":[2,144],"99":[2,144],"107":[2,144],"110":[2,144],"111":[2,144],"112":[2,144],"115":[2,144],"117":[2,144],"124":[2,144],"127":[2,144],"130":[2,144],"131":[2,144],"133":[2,144],"134":[2,144],"137":[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]},{"28":166,"29":[1,85],"113":221},{"59":[1,222]},{"3":[1,87],"27":[1,223]},{"1":[2,28],"3":[2,28],"26":[2,28],"27":[2,28],"48":[2,28],"49":[2,28],"57":[2,28],"59":[2,28],"77":[2,28],"79":[2,28],"82":[2,28],"94":[2,28],"99":[2,28],"103":[2,28],"104":[2,28],"107":[2,28],"110":[2,28],"111":[2,28],"112":[2,28],"115":[2,28],"117":[2,28],"120":[2,28],"122":[2,28],"124":[2,28],"127":[2,28],"130":[2,28],"131":[2,28],"133":[2,28],"134":[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],"162":[2,28]},{"91":224,"92":[1,131]},{"1":[2,108],"3":[2,108],"26":[2,108],"27":[2,108],"49":[2,108],"57":[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],"92":[2,108],"94":[2,108],"99":[2,108],"107":[2,108],"110":[2,108],"111":[2,108],"112":[2,108],"115":[2,108],"117":[2,108],"124":[2,108],"127":[2,108],"130":[2,108],"131":[2,108],"133":[2,108],"134":[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],"162":[2,108]},{"1":[2,63],"3":[2,63],"26":[2,63],"27":[2,63],"45":[2,63],"49":[2,63],"57":[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],"85":[2,63],"90":[2,63],"92":[2,63],"94":[2,63],"99":[2,63],"107":[2,63],"110":[2,63],"111":[2,63],"112":[2,63],"115":[2,63],"117":[2,63],"124":[2,63],"127":[2,63],"130":[2,63],"131":[2,63],"133":[2,63],"134":[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],"162":[2,63]},{"3":[2,123],"6":226,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,174],"27":[2,123],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,123],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"93":225,"94":[2,123],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"28":227,"29":[1,85]},{"28":228,"29":[1,85]},{"1":[2,77],"3":[2,77],"26":[2,77],"27":[2,77],"45":[2,77],"49":[2,77],"57":[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],"85":[2,77],"90":[2,77],"92":[2,77],"94":[2,77],"99":[2,77],"107":[2,77],"110":[2,77],"111":[2,77],"112":[2,77],"115":[2,77],"117":[2,77],"124":[2,77],"127":[2,77],"130":[2,77],"131":[2,77],"133":[2,77],"134":[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],"162":[2,77]},{"28":229,"29":[1,85]},{"1":[2,79],"3":[2,79],"26":[2,79],"27":[2,79],"45":[2,79],"49":[2,79],"57":[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],"85":[2,79],"90":[2,79],"92":[2,79],"94":[2,79],"99":[2,79],"107":[2,79],"110":[2,79],"111":[2,79],"112":[2,79],"115":[2,79],"117":[2,79],"124":[2,79],"127":[2,79],"130":[2,79],"131":[2,79],"133":[2,79],"134":[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],"162":[2,79]},{"1":[2,80],"3":[2,80],"26":[2,80],"27":[2,80],"45":[2,80],"49":[2,80],"57":[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],"85":[2,80],"90":[2,80],"92":[2,80],"94":[2,80],"99":[2,80],"107":[2,80],"110":[2,80],"111":[2,80],"112":[2,80],"115":[2,80],"117":[2,80],"124":[2,80],"127":[2,80],"130":[2,80],"131":[2,80],"133":[2,80],"134":[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],"162":[2,80]},{"6":230,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":231,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":232,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,109],"3":[2,109],"26":[2,109],"27":[2,109],"49":[2,109],"57":[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],"92":[2,109],"94":[2,109],"99":[2,109],"107":[2,109],"110":[2,109],"111":[2,109],"112":[2,109],"115":[2,109],"117":[2,109],"124":[2,109],"127":[2,109],"130":[2,109],"131":[2,109],"133":[2,109],"134":[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],"162":[2,109]},{"1":[2,64],"3":[2,64],"26":[2,64],"27":[2,64],"45":[2,64],"49":[2,64],"57":[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],"85":[2,64],"90":[2,64],"92":[2,64],"94":[2,64],"99":[2,64],"107":[2,64],"110":[2,64],"111":[2,64],"112":[2,64],"115":[2,64],"117":[2,64],"124":[2,64],"127":[2,64],"130":[2,64],"131":[2,64],"133":[2,64],"134":[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],"162":[2,64]},{"1":[2,104],"3":[2,104],"26":[2,104],"27":[2,104],"49":[2,104],"57":[2,104],"59":[2,104],"61":142,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,104],"78":[1,139],"79":[2,104],"82":[2,104],"91":141,"92":[1,131],"94":[2,104],"99":[2,104],"107":[2,104],"110":[2,104],"111":[2,104],"112":[2,104],"115":[2,104],"117":[2,104],"124":[2,104],"127":[2,104],"130":[2,104],"131":[2,104],"133":[2,104],"134":[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],"162":[2,104]},{"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"78":[1,139],"91":129,"92":[1,131]},{"1":[2,69],"3":[2,69],"26":[2,69],"27":[2,69],"49":[2,69],"57":[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],"92":[2,69],"94":[2,69],"99":[2,69],"107":[2,69],"110":[2,69],"111":[2,69],"112":[2,69],"115":[2,69],"117":[2,69],"124":[2,69],"127":[2,69],"130":[2,69],"131":[2,69],"133":[2,69],"134":[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],"162":[2,69]},{"1":[2,66],"3":[2,66],"26":[2,66],"27":[2,66],"49":[2,66],"57":[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],"92":[2,66],"94":[2,66],"99":[2,66],"107":[2,66],"110":[2,66],"111":[2,66],"112":[2,66],"115":[2,66],"117":[2,66],"124":[2,66],"127":[2,66],"130":[2,66],"131":[2,66],"133":[2,66],"134":[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],"162":[2,66]},{"52":[1,233],"57":[1,234]},{"52":[2,57],"57":[2,57],"59":[1,235]},{"52":[2,59],"57":[2,59],"59":[2,59]},{"1":[2,53],"3":[2,53],"26":[2,53],"27":[2,53],"49":[2,53],"57":[2,53],"59":[2,53],"77":[2,53],"79":[2,53],"82":[2,53],"94":[2,53],"99":[2,53],"107":[2,53],"110":[2,53],"111":[2,53],"112":[2,53],"115":[2,53],"117":[2,53],"124":[2,53],"127":[2,53],"130":[2,53],"131":[2,53],"133":[2,53],"134":[2,53],"137":[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]},{"24":86,"48":[1,55]},{"1":[2,171],"3":[2,171],"26":[2,171],"27":[2,171],"49":[1,110],"57":[2,171],"59":[2,171],"77":[2,171],"79":[2,171],"82":[2,171],"94":[2,171],"99":[2,171],"107":[2,171],"109":123,"110":[2,171],"111":[2,171],"112":[2,171],"115":[2,171],"117":[2,171],"124":[2,171],"127":[2,171],"130":[2,171],"131":[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],"162":[2,171]},{"1":[2,172],"3":[2,172],"26":[2,172],"27":[2,172],"49":[1,110],"57":[2,172],"59":[2,172],"77":[2,172],"79":[2,172],"82":[2,172],"94":[2,172],"99":[2,172],"107":[2,172],"109":123,"110":[2,172],"111":[2,172],"112":[2,172],"115":[2,172],"117":[2,172],"124":[2,172],"127":[2,172],"130":[2,172],"131":[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],"162":[2,172]},{"1":[2,173],"3":[2,173],"26":[2,173],"27":[2,173],"49":[1,110],"57":[2,173],"59":[2,173],"77":[2,173],"79":[2,173],"82":[2,173],"94":[2,173],"99":[2,173],"107":[2,173],"109":123,"110":[2,173],"111":[2,173],"112":[2,173],"115":[2,173],"117":[2,173],"124":[2,173],"127":[2,173],"130":[2,173],"131":[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],"162":[2,173]},{"1":[2,174],"3":[2,174],"26":[2,174],"27":[2,174],"49":[1,110],"57":[2,174],"59":[2,174],"77":[2,174],"79":[2,174],"82":[2,174],"94":[2,174],"99":[2,174],"107":[2,174],"109":123,"110":[2,174],"111":[2,174],"112":[2,174],"115":[2,174],"117":[2,174],"124":[2,174],"127":[2,174],"130":[2,174],"131":[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],"162":[2,174]},{"1":[2,175],"3":[2,175],"26":[2,175],"27":[2,175],"49":[1,110],"57":[2,175],"59":[2,175],"77":[2,175],"79":[2,175],"82":[2,175],"94":[2,175],"99":[2,175],"107":[2,175],"109":123,"110":[2,175],"111":[2,175],"112":[2,175],"115":[2,175],"117":[2,175],"124":[2,175],"127":[2,175],"130":[2,175],"131":[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],"162":[2,175]},{"1":[2,176],"3":[2,176],"26":[2,176],"27":[2,176],"49":[1,110],"57":[2,176],"59":[2,176],"77":[2,176],"79":[2,176],"82":[2,176],"94":[2,176],"99":[2,176],"107":[2,176],"109":123,"110":[2,176],"111":[2,176],"112":[2,176],"115":[2,176],"117":[2,176],"124":[2,176],"127":[2,176],"130":[2,176],"131":[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],"162":[2,176]},{"1":[2,177],"3":[2,177],"26":[2,177],"27":[2,177],"49":[1,110],"57":[2,177],"59":[2,177],"77":[2,177],"79":[2,177],"82":[2,177],"94":[2,177],"99":[2,177],"107":[2,177],"109":123,"110":[2,177],"111":[2,177],"112":[2,177],"115":[2,177],"117":[2,177],"124":[2,177],"127":[2,177],"130":[2,177],"131":[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],"162":[2,177]},{"1":[2,178],"3":[2,178],"26":[2,178],"27":[2,178],"49":[1,110],"57":[2,178],"59":[2,178],"77":[2,178],"79":[2,178],"82":[2,178],"94":[2,178],"99":[2,178],"107":[2,178],"109":123,"110":[2,178],"111":[2,178],"112":[2,178],"115":[2,178],"117":[2,178],"124":[2,178],"127":[2,178],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[1,119]},{"1":[2,179],"3":[2,179],"26":[2,179],"27":[2,179],"49":[1,110],"57":[2,179],"59":[2,179],"77":[2,179],"79":[2,179],"82":[2,179],"94":[2,179],"99":[2,179],"107":[2,179],"109":123,"110":[2,179],"111":[2,179],"112":[2,179],"115":[2,179],"117":[2,179],"124":[2,179],"127":[2,179],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[1,119]},{"102":236,"103":[1,237],"104":[1,238]},{"1":[2,138],"3":[2,138],"26":[2,138],"27":[2,138],"49":[1,110],"57":[2,138],"59":[1,125],"77":[2,138],"79":[2,138],"82":[2,138],"94":[2,138],"99":[2,138],"107":[2,138],"109":123,"110":[2,138],"111":[2,138],"112":[2,138],"115":[1,120],"117":[2,138],"124":[2,138],"127":[2,138],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,48],"3":[2,48],"26":[2,48],"27":[2,48],"49":[1,110],"57":[2,48],"59":[1,125],"77":[2,48],"79":[2,48],"82":[2,48],"94":[2,48],"99":[2,48],"107":[2,48],"109":123,"110":[2,48],"111":[2,48],"112":[1,124],"115":[1,120],"117":[2,48],"124":[2,48],"127":[2,48],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,143],"3":[2,143],"26":[2,143],"27":[2,143],"49":[2,143],"57":[2,143],"59":[2,143],"77":[2,143],"79":[2,143],"82":[2,143],"94":[2,143],"99":[2,143],"107":[2,143],"110":[2,143],"111":[2,143],"112":[2,143],"115":[2,143],"117":[2,143],"124":[2,143],"127":[2,143],"130":[2,143],"131":[2,143],"133":[2,143],"134":[2,143],"137":[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]},{"114":239,"115":[1,240],"116":[1,241]},{"57":[1,242],"115":[2,147],"116":[2,147]},{"26":[1,243],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"7":244,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":146,"62":170,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"1":[2,94],"3":[2,94],"26":[1,246],"27":[2,94],"49":[2,94],"57":[2,94],"59":[2,94],"70":[2,66],"71":[2,66],"72":[2,66],"73":[2,66],"76":[2,66],"77":[2,94],"78":[2,66],"79":[2,94],"82":[2,94],"85":[1,245],"92":[2,66],"94":[2,94],"99":[2,94],"107":[2,94],"110":[2,94],"111":[2,94],"112":[2,94],"115":[2,94],"117":[2,94],"124":[2,94],"127":[2,94],"130":[2,94],"131":[2,94],"133":[2,94],"134":[2,94],"137":[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]},{"61":142,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"78":[1,139],"91":141,"92":[1,131]},{"49":[1,110],"59":[1,125],"107":[1,247],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[2,124],"27":[2,124],"49":[1,110],"57":[2,124],"59":[1,248],"99":[2,124],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[1,251],"27":[1,252],"57":[1,250],"99":[1,249]},{"6":253,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,116],"3":[2,116],"26":[2,116],"27":[2,116],"45":[2,116],"49":[2,116],"57":[2,116],"59":[2,116],"70":[2,116],"71":[2,116],"72":[2,116],"73":[2,116],"76":[2,116],"77":[2,116],"78":[2,116],"79":[2,116],"82":[2,116],"85":[2,116],"90":[2,116],"92":[2,116],"94":[2,116],"99":[2,116],"107":[2,116],"110":[2,116],"111":[2,116],"112":[2,116],"115":[2,116],"117":[2,116],"124":[2,116],"127":[2,116],"130":[2,116],"131":[2,116],"133":[2,116],"134":[2,116],"137":[2,116],"138":[2,116],"139":[2,116],"140":[2,116],"141":[2,116],"142":[2,116],"143":[2,116],"144":[2,116],"145":[2,116],"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]},{"3":[2,123],"6":226,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,174],"27":[2,123],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,123],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"93":254,"94":[2,123],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[1,151],"5":255,"26":[1,6],"124":[1,256]},{"1":[2,164],"3":[2,164],"26":[2,164],"27":[2,164],"49":[2,164],"57":[2,164],"59":[2,164],"77":[2,164],"79":[2,164],"82":[2,164],"94":[2,164],"99":[2,164],"107":[2,164],"110":[2,164],"111":[2,164],"112":[2,164],"115":[2,164],"117":[2,164],"120":[2,164],"124":[2,164],"127":[2,164],"130":[2,164],"131":[2,164],"133":[2,164],"134":[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],"162":[2,164]},{"1":[2,141],"3":[2,141],"26":[2,141],"27":[2,141],"49":[1,110],"57":[2,141],"59":[1,125],"77":[2,141],"79":[2,141],"82":[2,141],"94":[2,141],"99":[2,141],"107":[2,141],"109":123,"110":[1,78],"111":[1,257],"112":[1,124],"115":[1,120],"117":[2,141],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[1,260],"57":[1,259],"82":[1,258]},{"57":[1,262],"82":[1,261]},{"3":[2,88],"27":[2,88],"57":[2,88],"82":[2,88]},{"3":[2,87],"24":186,"27":[2,87],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":182,"48":[1,55],"57":[2,87],"81":263},{"45":[1,264]},{"45":[1,265]},{"3":[2,47],"27":[2,47],"57":[2,47],"82":[2,47]},{"3":[1,151],"5":266,"26":[1,6],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,6],"3":[2,6],"27":[2,6],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,182],"3":[2,182],"26":[2,182],"27":[2,182],"49":[1,110],"57":[2,182],"59":[2,182],"77":[2,182],"79":[2,182],"82":[2,182],"94":[2,182],"99":[2,182],"107":[2,182],"109":123,"110":[2,182],"111":[2,182],"112":[2,182],"115":[2,182],"117":[2,182],"124":[2,182],"127":[2,182],"130":[2,182],"131":[2,182],"133":[1,89],"134":[1,90],"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],"162":[2,182]},{"1":[2,183],"3":[2,183],"26":[2,183],"27":[2,183],"49":[1,110],"57":[2,183],"59":[2,183],"77":[2,183],"79":[2,183],"82":[2,183],"94":[2,183],"99":[2,183],"107":[2,183],"109":123,"110":[2,183],"111":[2,183],"112":[2,183],"115":[2,183],"117":[2,183],"124":[2,183],"127":[2,183],"130":[2,183],"131":[2,183],"133":[1,89],"134":[1,90],"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],"162":[2,183]},{"1":[2,184],"3":[2,184],"26":[2,184],"27":[2,184],"49":[1,110],"57":[2,184],"59":[2,184],"77":[2,184],"79":[2,184],"82":[2,184],"94":[2,184],"99":[2,184],"107":[2,184],"109":123,"110":[2,184],"111":[2,184],"112":[2,184],"115":[2,184],"117":[2,184],"124":[2,184],"127":[2,184],"130":[2,184],"131":[2,184],"133":[1,89],"134":[1,90],"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],"162":[2,184]},{"1":[2,185],"3":[2,185],"26":[2,185],"27":[2,185],"49":[1,110],"57":[2,185],"59":[2,185],"77":[2,185],"79":[2,185],"82":[2,185],"94":[2,185],"99":[2,185],"107":[2,185],"109":123,"110":[2,185],"111":[2,185],"112":[2,185],"115":[2,185],"117":[2,185],"124":[2,185],"127":[2,185],"130":[2,185],"131":[2,185],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,186],"3":[2,186],"26":[2,186],"27":[2,186],"49":[1,110],"57":[2,186],"59":[2,186],"77":[2,186],"79":[2,186],"82":[2,186],"94":[2,186],"99":[2,186],"107":[2,186],"109":123,"110":[2,186],"111":[2,186],"112":[2,186],"115":[2,186],"117":[2,186],"124":[2,186],"127":[2,186],"130":[2,186],"131":[2,186],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,187],"3":[2,187],"26":[2,187],"27":[2,187],"49":[1,110],"57":[2,187],"59":[2,187],"77":[2,187],"79":[2,187],"82":[2,187],"94":[2,187],"99":[2,187],"107":[2,187],"109":123,"110":[2,187],"111":[2,187],"112":[2,187],"115":[2,187],"117":[2,187],"124":[2,187],"127":[2,187],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,188],"3":[2,188],"26":[2,188],"27":[2,188],"49":[1,110],"57":[2,188],"59":[2,188],"77":[2,188],"79":[2,188],"82":[2,188],"94":[2,188],"99":[2,188],"107":[2,188],"109":123,"110":[2,188],"111":[2,188],"112":[2,188],"115":[2,188],"117":[2,188],"124":[2,188],"127":[2,188],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,189],"3":[2,189],"26":[2,189],"27":[2,189],"49":[1,110],"57":[2,189],"59":[2,189],"77":[2,189],"79":[2,189],"82":[2,189],"94":[2,189],"99":[2,189],"107":[2,189],"109":123,"110":[2,189],"111":[2,189],"112":[2,189],"115":[2,189],"117":[2,189],"124":[2,189],"127":[2,189],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"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]},{"1":[2,190],"3":[2,190],"26":[2,190],"27":[2,190],"49":[1,110],"57":[2,190],"59":[2,190],"77":[2,190],"79":[2,190],"82":[2,190],"94":[2,190],"99":[2,190],"107":[2,190],"109":123,"110":[2,190],"111":[2,190],"112":[2,190],"115":[2,190],"117":[2,190],"124":[2,190],"127":[2,190],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"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]},{"1":[2,191],"3":[2,191],"26":[2,191],"27":[2,191],"49":[1,110],"57":[2,191],"59":[2,191],"77":[2,191],"79":[2,191],"82":[2,191],"94":[2,191],"99":[2,191],"107":[2,191],"109":123,"110":[2,191],"111":[2,191],"112":[2,191],"115":[2,191],"117":[2,191],"124":[2,191],"127":[2,191],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"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]},{"1":[2,192],"3":[2,192],"26":[2,192],"27":[2,192],"49":[1,110],"57":[2,192],"59":[2,192],"77":[2,192],"79":[2,192],"82":[2,192],"94":[2,192],"99":[2,192],"107":[2,192],"109":123,"110":[2,192],"111":[2,192],"112":[2,192],"115":[2,192],"117":[2,192],"124":[2,192],"127":[2,192],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"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]},{"1":[2,193],"3":[2,193],"26":[2,193],"27":[2,193],"49":[1,110],"57":[2,193],"59":[2,193],"77":[2,193],"79":[2,193],"82":[2,193],"94":[2,193],"99":[2,193],"107":[2,193],"109":123,"110":[2,193],"111":[2,193],"112":[2,193],"115":[2,193],"117":[2,193],"124":[2,193],"127":[2,193],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"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]},{"1":[2,194],"3":[2,194],"26":[2,194],"27":[2,194],"49":[1,110],"57":[2,194],"59":[2,194],"77":[2,194],"79":[2,194],"82":[2,194],"94":[2,194],"99":[2,194],"107":[2,194],"109":123,"110":[2,194],"111":[2,194],"112":[2,194],"115":[2,194],"117":[2,194],"124":[2,194],"127":[2,194],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"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]},{"1":[2,195],"3":[2,195],"26":[2,195],"27":[2,195],"49":[1,110],"57":[2,195],"59":[2,195],"77":[2,195],"79":[2,195],"82":[2,195],"94":[2,195],"99":[2,195],"107":[2,195],"109":123,"110":[2,195],"111":[2,195],"112":[2,195],"115":[2,195],"117":[2,195],"124":[2,195],"127":[2,195],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"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]},{"1":[2,196],"3":[2,196],"26":[2,196],"27":[2,196],"49":[1,110],"57":[2,196],"59":[2,196],"77":[2,196],"79":[2,196],"82":[2,196],"94":[2,196],"99":[2,196],"107":[2,196],"109":123,"110":[2,196],"111":[2,196],"112":[2,196],"115":[2,196],"117":[2,196],"124":[2,196],"127":[2,196],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"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]},{"1":[2,197],"3":[2,197],"26":[2,197],"27":[2,197],"49":[1,110],"57":[2,197],"59":[2,197],"77":[2,197],"79":[2,197],"82":[2,197],"94":[2,197],"99":[2,197],"107":[2,197],"109":123,"110":[2,197],"111":[2,197],"112":[2,197],"115":[2,197],"117":[2,197],"124":[2,197],"127":[2,197],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[1,119]},{"1":[2,198],"3":[2,198],"26":[2,198],"27":[2,198],"49":[1,110],"57":[2,198],"59":[2,198],"77":[2,198],"79":[2,198],"82":[2,198],"94":[2,198],"99":[2,198],"107":[2,198],"109":123,"110":[2,198],"111":[2,198],"112":[2,198],"115":[2,198],"117":[2,198],"124":[2,198],"127":[2,198],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[1,119]},{"1":[2,199],"3":[2,199],"26":[2,199],"27":[2,199],"49":[1,110],"57":[2,199],"59":[2,199],"77":[2,199],"79":[2,199],"82":[2,199],"94":[2,199],"99":[2,199],"107":[2,199],"109":123,"110":[2,199],"111":[2,199],"112":[2,199],"115":[2,199],"117":[2,199],"124":[2,199],"127":[2,199],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"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":[1,119]},{"1":[2,200],"3":[2,200],"26":[2,200],"27":[2,200],"49":[1,110],"57":[2,200],"59":[2,200],"77":[2,200],"79":[2,200],"82":[2,200],"94":[2,200],"99":[2,200],"107":[2,200],"109":123,"110":[2,200],"111":[2,200],"112":[2,200],"115":[2,200],"117":[2,200],"124":[2,200],"127":[2,200],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"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":[1,119]},{"1":[2,201],"3":[2,201],"26":[2,201],"27":[2,201],"49":[2,201],"57":[2,201],"59":[2,201],"77":[2,201],"79":[2,201],"82":[2,201],"94":[2,201],"99":[2,201],"107":[2,201],"109":123,"110":[2,201],"111":[2,201],"112":[2,201],"115":[2,201],"117":[2,201],"124":[2,201],"127":[2,201],"130":[2,201],"131":[2,201],"133":[2,201],"134":[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],"162":[2,201]},{"1":[2,202],"3":[2,202],"26":[2,202],"27":[2,202],"49":[1,110],"57":[2,202],"59":[2,202],"77":[2,202],"79":[2,202],"82":[2,202],"94":[2,202],"99":[2,202],"107":[2,202],"109":123,"110":[2,202],"111":[2,202],"112":[2,202],"115":[2,202],"117":[2,202],"124":[2,202],"127":[2,202],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,203],"3":[2,203],"26":[2,203],"27":[2,203],"49":[1,110],"57":[2,203],"59":[2,203],"77":[2,203],"79":[2,203],"82":[2,203],"94":[2,203],"99":[2,203],"107":[2,203],"109":123,"110":[2,203],"111":[2,203],"112":[2,203],"115":[2,203],"117":[2,203],"124":[2,203],"127":[2,203],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,204],"3":[2,204],"26":[2,204],"27":[2,204],"49":[1,110],"57":[2,204],"59":[2,204],"77":[2,204],"79":[2,204],"82":[2,204],"94":[2,204],"99":[2,204],"107":[2,204],"109":123,"110":[2,204],"111":[2,204],"112":[2,204],"115":[2,204],"117":[2,204],"124":[2,204],"127":[2,204],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,205],"3":[2,205],"26":[2,205],"27":[2,205],"49":[1,110],"57":[2,205],"59":[2,205],"77":[2,205],"79":[2,205],"82":[2,205],"94":[2,205],"99":[2,205],"107":[2,205],"109":123,"110":[2,205],"111":[2,205],"112":[2,205],"115":[2,205],"117":[2,205],"124":[2,205],"127":[2,205],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,206],"3":[2,206],"26":[2,206],"27":[2,206],"49":[1,110],"57":[2,206],"59":[2,206],"77":[2,206],"79":[2,206],"82":[2,206],"94":[2,206],"99":[2,206],"107":[2,206],"109":123,"110":[2,206],"111":[2,206],"112":[2,206],"115":[2,206],"117":[2,206],"124":[2,206],"127":[2,206],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,207],"3":[2,207],"26":[2,207],"27":[2,207],"49":[1,110],"57":[2,207],"59":[2,207],"77":[2,207],"79":[2,207],"82":[2,207],"94":[2,207],"99":[2,207],"107":[2,207],"109":123,"110":[2,207],"111":[2,207],"112":[2,207],"115":[2,207],"117":[2,207],"124":[2,207],"127":[2,207],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,208],"3":[2,208],"26":[2,208],"27":[2,208],"49":[1,110],"57":[2,208],"59":[2,208],"77":[2,208],"79":[2,208],"82":[2,208],"94":[2,208],"99":[2,208],"107":[2,208],"109":123,"110":[2,208],"111":[2,208],"112":[2,208],"115":[2,208],"117":[2,208],"124":[2,208],"127":[2,208],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,209],"3":[2,209],"26":[2,209],"27":[2,209],"49":[1,110],"57":[2,209],"59":[2,209],"77":[2,209],"79":[2,209],"82":[2,209],"94":[2,209],"99":[2,209],"107":[2,209],"109":123,"110":[2,209],"111":[2,209],"112":[2,209],"115":[2,209],"117":[2,209],"124":[2,209],"127":[2,209],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,210],"3":[2,210],"26":[2,210],"27":[2,210],"49":[1,110],"57":[2,210],"59":[2,210],"77":[2,210],"79":[2,210],"82":[2,210],"94":[2,210],"99":[2,210],"107":[2,210],"109":123,"110":[2,210],"111":[2,210],"112":[2,210],"115":[2,210],"117":[2,210],"124":[2,210],"127":[2,210],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"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":[2,210],"162":[1,119]},{"1":[2,211],"3":[2,211],"26":[2,211],"27":[2,211],"49":[1,110],"57":[2,211],"59":[1,125],"77":[2,211],"79":[2,211],"82":[2,211],"94":[2,211],"99":[2,211],"107":[2,211],"109":123,"110":[2,211],"111":[2,211],"112":[2,211],"115":[1,120],"117":[2,211],"124":[2,211],"127":[2,211],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,169],"3":[2,169],"26":[2,169],"27":[2,169],"49":[1,110],"57":[2,169],"59":[1,125],"77":[2,169],"79":[2,169],"82":[2,169],"94":[2,169],"99":[2,169],"107":[2,169],"109":123,"110":[1,78],"111":[2,169],"112":[1,124],"115":[1,120],"117":[2,169],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,170],"3":[2,170],"26":[2,170],"27":[2,170],"49":[1,110],"57":[2,170],"59":[1,125],"77":[2,170],"79":[2,170],"82":[2,170],"94":[2,170],"99":[2,170],"107":[2,170],"109":123,"110":[1,78],"111":[2,170],"112":[1,124],"115":[1,120],"117":[2,170],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"114":267,"115":[1,240],"116":[1,241]},{"59":[1,268]},{"1":[2,27],"3":[2,27],"26":[2,27],"27":[2,27],"48":[2,27],"49":[2,27],"57":[2,27],"59":[2,27],"77":[2,27],"79":[2,27],"82":[2,27],"94":[2,27],"99":[2,27],"103":[2,27],"104":[2,27],"107":[2,27],"110":[2,27],"111":[2,27],"112":[2,27],"115":[2,27],"117":[2,27],"120":[2,27],"122":[2,27],"124":[2,27],"127":[2,27],"130":[2,27],"131":[2,27],"133":[2,27],"134":[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],"162":[2,27]},{"1":[2,106],"3":[2,106],"26":[2,106],"27":[2,106],"49":[2,106],"57":[2,106],"59":[2,106],"77":[2,106],"79":[2,106],"82":[2,106],"94":[2,106],"99":[2,106],"107":[2,106],"110":[2,106],"111":[2,106],"112":[2,106],"115":[2,106],"117":[2,106],"124":[2,106],"127":[2,106],"130":[2,106],"131":[2,106],"133":[2,106],"134":[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],"162":[2,106]},{"3":[1,251],"27":[1,252],"57":[1,270],"94":[1,269]},{"3":[2,124],"27":[2,124],"49":[1,110],"57":[2,124],"59":[1,125],"94":[2,124],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,75],"3":[2,75],"26":[2,75],"27":[2,75],"45":[2,75],"49":[2,75],"57":[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],"85":[2,75],"90":[2,75],"92":[2,75],"94":[2,75],"99":[2,75],"107":[2,75],"110":[2,75],"111":[2,75],"112":[2,75],"115":[2,75],"117":[2,75],"124":[2,75],"127":[2,75],"130":[2,75],"131":[2,75],"133":[2,75],"134":[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],"162":[2,75]},{"1":[2,76],"3":[2,76],"26":[2,76],"27":[2,76],"45":[2,76],"49":[2,76],"57":[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],"85":[2,76],"90":[2,76],"92":[2,76],"94":[2,76],"99":[2,76],"107":[2,76],"110":[2,76],"111":[2,76],"112":[2,76],"115":[2,76],"117":[2,76],"124":[2,76],"127":[2,76],"130":[2,76],"131":[2,76],"133":[2,76],"134":[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],"162":[2,76]},{"1":[2,78],"3":[2,78],"26":[2,78],"27":[2,78],"45":[2,78],"49":[2,78],"57":[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],"85":[2,78],"90":[2,78],"92":[2,78],"94":[2,78],"99":[2,78],"107":[2,78],"110":[2,78],"111":[2,78],"112":[2,78],"115":[2,78],"117":[2,78],"124":[2,78],"127":[2,78],"130":[2,78],"131":[2,78],"133":[2,78],"134":[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],"162":[2,78]},{"49":[1,110],"59":[1,272],"77":[1,271],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"49":[1,110],"59":[1,125],"79":[1,273],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,44],"3":[2,44],"26":[2,44],"27":[2,44],"49":[1,110],"57":[2,44],"59":[1,125],"77":[2,44],"79":[2,44],"82":[2,44],"94":[2,44],"99":[2,44],"107":[2,44],"109":123,"110":[2,44],"111":[2,44],"112":[1,124],"115":[1,120],"117":[2,44],"124":[2,44],"127":[2,44],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"53":274,"54":[1,75],"55":[1,76]},{"56":275,"58":[1,149]},{"59":[1,276]},{"1":[2,134],"3":[2,134],"26":[2,134],"27":[2,134],"49":[2,134],"57":[2,134],"59":[2,134],"77":[2,134],"79":[2,134],"82":[2,134],"94":[2,134],"99":[2,134],"103":[1,277],"107":[2,134],"110":[2,134],"111":[2,134],"112":[2,134],"115":[2,134],"117":[2,134],"124":[2,134],"127":[2,134],"130":[2,134],"131":[2,134],"133":[2,134],"134":[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],"162":[2,134]},{"3":[1,151],"5":278,"26":[1,6]},{"28":279,"29":[1,85]},{"3":[1,151],"5":280,"26":[1,6]},{"6":281,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":282,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"28":283,"29":[1,85]},{"24":287,"48":[1,55],"119":284,"121":285,"122":[1,286]},{"1":[2,107],"3":[2,107],"26":[2,107],"27":[2,107],"49":[2,107],"57":[2,107],"59":[2,107],"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,107],"78":[1,139],"79":[2,107],"82":[2,107],"91":129,"92":[1,131],"94":[2,107],"99":[2,107],"107":[2,107],"110":[2,107],"111":[2,107],"112":[2,107],"115":[2,107],"117":[2,107],"124":[2,107],"127":[2,107],"130":[2,107],"131":[2,107],"133":[2,107],"134":[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],"162":[2,107]},{"7":288,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":145,"60":146,"62":170,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"96":[1,72],"97":[1,73],"98":[1,71],"106":[1,70]},{"3":[2,100],"24":186,"27":[2,100],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":291,"48":[1,55],"63":292,"86":289,"87":290,"97":[1,293]},{"1":[2,139],"3":[2,139],"26":[2,139],"27":[2,139],"49":[2,139],"57":[2,139],"59":[2,139],"70":[2,139],"71":[2,139],"72":[2,139],"73":[2,139],"76":[2,139],"77":[2,139],"78":[2,139],"79":[2,139],"82":[2,139],"90":[2,139],"92":[2,139],"94":[2,139],"99":[2,139],"107":[2,139],"110":[2,139],"111":[2,139],"112":[2,139],"115":[2,139],"117":[2,139],"124":[2,139],"127":[2,139],"130":[2,139],"131":[2,139],"133":[2,139],"134":[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],"162":[2,139]},{"59":[1,294]},{"1":[2,121],"3":[2,121],"26":[2,121],"27":[2,121],"45":[2,121],"49":[2,121],"57":[2,121],"59":[2,121],"70":[2,121],"71":[2,121],"72":[2,121],"73":[2,121],"76":[2,121],"77":[2,121],"78":[2,121],"79":[2,121],"82":[2,121],"90":[2,121],"92":[2,121],"94":[2,121],"99":[2,121],"107":[2,121],"110":[2,121],"111":[2,121],"112":[2,121],"115":[2,121],"117":[2,121],"124":[2,121],"127":[2,121],"130":[2,121],"131":[2,121],"133":[2,121],"134":[2,121],"137":[2,121],"138":[2,121],"139":[2,121],"140":[2,121],"141":[2,121],"142":[2,121],"143":[2,121],"144":[2,121],"145":[2,121],"146":[2,121],"147":[2,121],"148":[2,121],"149":[2,121],"150":[2,121],"151":[2,121],"152":[2,121],"153":[2,121],"154":[2,121],"155":[2,121],"156":[2,121],"157":[2,121],"158":[2,121],"159":[2,121],"160":[2,121],"161":[2,121],"162":[2,121]},{"3":[1,297],"6":296,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,298],"27":[1,299],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[1,295],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":300,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[2,130],"27":[2,130],"57":[2,130],"94":[2,130],"99":[2,130]},{"3":[2,125],"27":[2,125],"49":[1,110],"57":[2,125],"59":[1,125],"94":[2,125],"99":[2,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[1,251],"27":[1,252],"57":[1,302],"94":[1,301]},{"1":[2,166],"3":[2,166],"26":[2,166],"27":[2,166],"49":[2,166],"57":[2,166],"59":[2,166],"77":[2,166],"79":[2,166],"82":[2,166],"94":[2,166],"99":[2,166],"107":[2,166],"110":[2,166],"111":[2,166],"112":[2,166],"115":[2,166],"117":[2,166],"124":[2,166],"127":[2,166],"130":[2,166],"131":[2,166],"133":[2,166],"134":[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],"162":[2,166]},{"6":303,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":304,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,83],"3":[2,83],"26":[2,83],"27":[2,83],"45":[2,83],"49":[2,83],"57":[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],"90":[2,83],"92":[2,83],"94":[2,83],"99":[2,83],"107":[2,83],"110":[2,83],"111":[2,83],"112":[2,83],"115":[2,83],"117":[2,83],"124":[2,83],"127":[2,83],"130":[2,83],"131":[2,83],"133":[2,83],"134":[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],"162":[2,83]},{"3":[1,307],"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":306,"48":[1,55],"82":[1,305]},{"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":308,"48":[1,55]},{"1":[2,84],"3":[2,84],"26":[2,84],"27":[2,84],"45":[2,84],"49":[2,84],"57":[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],"94":[2,84],"99":[2,84],"107":[2,84],"110":[2,84],"111":[2,84],"112":[2,84],"115":[2,84],"117":[2,84],"124":[2,84],"127":[2,84],"130":[2,84],"131":[2,84],"133":[2,84],"134":[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],"162":[2,84]},{"82":[1,309]},{"3":[1,260],"27":[1,310],"57":[1,311]},{"6":312,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":313,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,163],"3":[2,163],"26":[2,163],"27":[2,163],"49":[2,163],"57":[2,163],"59":[2,163],"77":[2,163],"79":[2,163],"82":[2,163],"94":[2,163],"99":[2,163],"107":[2,163],"110":[2,163],"111":[2,163],"112":[2,163],"115":[2,163],"117":[2,163],"120":[2,163],"124":[2,163],"127":[2,163],"130":[2,163],"131":[2,163],"133":[2,163],"134":[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],"162":[2,163]},{"1":[2,145],"3":[2,145],"26":[2,145],"27":[2,145],"49":[2,145],"57":[2,145],"59":[2,145],"77":[2,145],"79":[2,145],"82":[2,145],"94":[2,145],"99":[2,145],"107":[2,145],"110":[2,145],"111":[2,145],"112":[2,145],"115":[2,145],"117":[2,145],"124":[2,145],"127":[2,145],"130":[2,145],"131":[2,145],"133":[2,145],"134":[2,145],"137":[2,145],"138":[2,145],"139":[2,145],"140":[2,145],"141":[2,145],"142":[2,145],"143":[2,145],"144":[2,145],"145":[2,145],"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]},{"1":[2,61],"3":[2,61],"26":[2,61],"27":[2,61],"49":[2,61],"57":[2,61],"59":[2,61],"77":[2,61],"79":[2,61],"82":[2,61],"94":[2,61],"99":[2,61],"107":[2,61],"110":[2,61],"111":[2,61],"112":[2,61],"115":[2,61],"117":[2,61],"124":[2,61],"127":[2,61],"130":[2,61],"131":[2,61],"133":[2,61],"134":[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],"162":[2,61]},{"1":[2,110],"3":[2,110],"26":[2,110],"27":[2,110],"49":[2,110],"57":[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],"92":[2,110],"94":[2,110],"99":[2,110],"107":[2,110],"110":[2,110],"111":[2,110],"112":[2,110],"115":[2,110],"117":[2,110],"124":[2,110],"127":[2,110],"130":[2,110],"131":[2,110],"133":[2,110],"134":[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],"162":[2,110]},{"3":[1,297],"6":296,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,298],"27":[1,299],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"94":[1,314],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,81],"3":[2,81],"26":[2,81],"27":[2,81],"45":[2,81],"49":[2,81],"57":[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],"85":[2,81],"90":[2,81],"92":[2,81],"94":[2,81],"99":[2,81],"107":[2,81],"110":[2,81],"111":[2,81],"112":[2,81],"115":[2,81],"117":[2,81],"124":[2,81],"127":[2,81],"130":[2,81],"131":[2,81],"133":[2,81],"134":[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],"162":[2,81]},{"59":[1,315]},{"1":[2,82],"3":[2,82],"26":[2,82],"27":[2,82],"45":[2,82],"49":[2,82],"57":[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],"85":[2,82],"90":[2,82],"92":[2,82],"94":[2,82],"99":[2,82],"107":[2,82],"110":[2,82],"111":[2,82],"112":[2,82],"115":[2,82],"117":[2,82],"124":[2,82],"127":[2,82],"130":[2,82],"131":[2,82],"133":[2,82],"134":[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],"162":[2,82]},{"3":[1,151],"5":316,"26":[1,6]},{"52":[2,58],"57":[2,58],"59":[1,235]},{"59":[1,317]},{"3":[1,151],"5":318,"26":[1,6]},{"1":[2,135],"3":[2,135],"26":[2,135],"27":[2,135],"49":[2,135],"57":[2,135],"59":[2,135],"77":[2,135],"79":[2,135],"82":[2,135],"94":[2,135],"99":[2,135],"107":[2,135],"110":[2,135],"111":[2,135],"112":[2,135],"115":[2,135],"117":[2,135],"124":[2,135],"127":[2,135],"130":[2,135],"131":[2,135],"133":[2,135],"134":[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],"162":[2,135]},{"3":[1,151],"5":319,"26":[1,6]},{"1":[2,146],"3":[2,146],"26":[2,146],"27":[2,146],"49":[2,146],"57":[2,146],"59":[2,146],"77":[2,146],"79":[2,146],"82":[2,146],"94":[2,146],"99":[2,146],"107":[2,146],"110":[2,146],"111":[2,146],"112":[2,146],"115":[2,146],"117":[2,146],"124":[2,146],"127":[2,146],"130":[2,146],"131":[2,146],"133":[2,146],"134":[2,146],"137":[2,146],"138":[2,146],"139":[2,146],"140":[2,146],"141":[2,146],"142":[2,146],"143":[2,146],"144":[2,146],"145":[2,146],"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]},{"1":[2,149],"3":[2,149],"26":[2,149],"27":[2,149],"49":[1,110],"57":[2,149],"59":[1,125],"77":[2,149],"79":[2,149],"82":[2,149],"94":[2,149],"99":[2,149],"107":[2,149],"109":123,"110":[2,149],"111":[1,320],"112":[2,149],"115":[1,120],"117":[1,321],"124":[2,149],"127":[2,149],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,150],"3":[2,150],"26":[2,150],"27":[2,150],"49":[1,110],"57":[2,150],"59":[1,125],"77":[2,150],"79":[2,150],"82":[2,150],"94":[2,150],"99":[2,150],"107":[2,150],"109":123,"110":[2,150],"111":[1,322],"112":[2,150],"115":[1,120],"117":[2,150],"124":[2,150],"127":[2,150],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"115":[2,148],"116":[2,148]},{"24":287,"27":[1,323],"48":[1,55],"120":[1,324],"121":325,"122":[1,286]},{"27":[2,158],"48":[2,158],"120":[2,158],"122":[2,158]},{"6":327,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"100":326,"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[1,328]},{"1":[2,95],"3":[2,95],"26":[1,329],"27":[2,95],"49":[2,95],"57":[2,95],"59":[2,95],"61":130,"70":[1,132],"71":[1,133],"72":[1,134],"73":[1,135],"74":136,"75":137,"76":[1,138],"77":[2,95],"78":[1,139],"79":[2,95],"82":[2,95],"91":129,"92":[1,131],"94":[2,95],"99":[2,95],"107":[2,95],"110":[2,95],"111":[2,95],"112":[2,95],"115":[2,95],"117":[2,95],"124":[2,95],"127":[2,95],"130":[2,95],"131":[2,95],"133":[2,95],"134":[2,95],"137":[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]},{"3":[1,331],"27":[1,330]},{"3":[2,101],"27":[2,101]},{"3":[2,98],"27":[2,98]},{"45":[1,332]},{"28":175,"29":[1,85]},{"6":333,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"59":[1,334],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,122],"3":[2,122],"26":[2,122],"27":[2,122],"45":[2,122],"49":[2,122],"57":[2,122],"59":[2,122],"70":[2,122],"71":[2,122],"72":[2,122],"73":[2,122],"76":[2,122],"77":[2,122],"78":[2,122],"79":[2,122],"82":[2,122],"90":[2,122],"92":[2,122],"94":[2,122],"99":[2,122],"107":[2,122],"110":[2,122],"111":[2,122],"112":[2,122],"115":[2,122],"117":[2,122],"124":[2,122],"127":[2,122],"130":[2,122],"131":[2,122],"133":[2,122],"134":[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],"162":[2,122]},{"3":[2,126],"27":[2,126],"49":[1,110],"57":[2,126],"59":[1,125],"94":[2,126],"99":[2,126],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"6":335,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":336,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[2,131],"27":[2,131],"57":[2,131],"94":[2,131],"99":[2,131]},{"3":[2,127],"27":[2,127],"49":[1,110],"57":[2,127],"59":[1,125],"94":[2,127],"99":[2,127],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,112],"3":[2,112],"26":[2,112],"27":[2,112],"49":[2,112],"57":[2,112],"59":[2,112],"77":[2,112],"79":[2,112],"82":[2,112],"94":[2,112],"99":[2,112],"107":[2,112],"110":[2,112],"111":[2,112],"112":[2,112],"115":[2,112],"117":[2,112],"124":[2,112],"127":[2,112],"130":[2,112],"131":[2,112],"133":[2,112],"134":[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],"162":[2,112]},{"3":[1,297],"6":296,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":[1,298],"27":[1,299],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"94":[1,337],"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"3":[1,151],"5":338,"26":[1,6],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,142],"3":[2,142],"26":[2,142],"27":[2,142],"49":[1,110],"57":[2,142],"59":[1,125],"77":[2,142],"79":[2,142],"82":[2,142],"94":[2,142],"99":[2,142],"107":[2,142],"109":123,"110":[1,78],"111":[2,142],"112":[1,124],"115":[1,120],"117":[2,142],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,85],"3":[2,85],"26":[2,85],"27":[2,85],"45":[2,85],"49":[2,85],"57":[2,85],"59":[2,85],"70":[2,85],"71":[2,85],"72":[2,85],"73":[2,85],"76":[2,85],"77":[2,85],"78":[2,85],"79":[2,85],"82":[2,85],"90":[2,85],"92":[2,85],"94":[2,85],"99":[2,85],"107":[2,85],"110":[2,85],"111":[2,85],"112":[2,85],"115":[2,85],"117":[2,85],"124":[2,85],"127":[2,85],"130":[2,85],"131":[2,85],"133":[2,85],"134":[2,85],"137":[2,85],"138":[2,85],"139":[2,85],"140":[2,85],"141":[2,85],"142":[2,85],"143":[2,85],"144":[2,85],"145":[2,85],"146":[2,85],"147":[2,85],"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]},{"3":[2,89],"27":[2,89],"57":[2,89],"82":[2,89]},{"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":339,"48":[1,55]},{"3":[2,90],"27":[2,90],"57":[2,90],"82":[2,90]},{"1":[2,86],"3":[2,86],"26":[2,86],"27":[2,86],"45":[2,86],"49":[2,86],"57":[2,86],"59":[2,86],"70":[2,86],"71":[2,86],"72":[2,86],"73":[2,86],"76":[2,86],"77":[2,86],"78":[2,86],"79":[2,86],"82":[2,86],"90":[2,86],"92":[2,86],"94":[2,86],"99":[2,86],"107":[2,86],"110":[2,86],"111":[2,86],"112":[2,86],"115":[2,86],"117":[2,86],"124":[2,86],"127":[2,86],"130":[2,86],"131":[2,86],"133":[2,86],"134":[2,86],"137":[2,86],"138":[2,86],"139":[2,86],"140":[2,86],"141":[2,86],"142":[2,86],"143":[2,86],"144":[2,86],"145":[2,86],"146":[2,86],"147":[2,86],"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]},{"57":[2,92],"82":[2,92]},{"3":[1,307],"24":186,"27":[1,340],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":306,"48":[1,55]},{"3":[2,45],"27":[2,45],"49":[1,110],"57":[2,45],"59":[1,125],"82":[2,45],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[2,46],"27":[2,46],"49":[1,110],"57":[2,46],"59":[1,125],"82":[2,46],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,111],"3":[2,111],"26":[2,111],"27":[2,111],"49":[2,111],"57":[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],"92":[2,111],"94":[2,111],"99":[2,111],"107":[2,111],"110":[2,111],"111":[2,111],"112":[2,111],"115":[2,111],"117":[2,111],"124":[2,111],"127":[2,111],"130":[2,111],"131":[2,111],"133":[2,111],"134":[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],"162":[2,111]},{"6":341,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"59":[1,342],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,52],"3":[2,52],"26":[2,52],"27":[2,52],"49":[2,52],"57":[2,52],"59":[2,52],"77":[2,52],"79":[2,52],"82":[2,52],"94":[2,52],"99":[2,52],"107":[2,52],"110":[2,52],"111":[2,52],"112":[2,52],"115":[2,52],"117":[2,52],"124":[2,52],"127":[2,52],"130":[2,52],"131":[2,52],"133":[2,52],"134":[2,52],"137":[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]},{"52":[2,60],"57":[2,60],"59":[2,60]},{"1":[2,136],"3":[2,136],"26":[2,136],"27":[2,136],"49":[2,136],"57":[2,136],"59":[2,136],"77":[2,136],"79":[2,136],"82":[2,136],"94":[2,136],"99":[2,136],"107":[2,136],"110":[2,136],"111":[2,136],"112":[2,136],"115":[2,136],"117":[2,136],"124":[2,136],"127":[2,136],"130":[2,136],"131":[2,136],"133":[2,136],"134":[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],"162":[2,136]},{"1":[2,137],"3":[2,137],"26":[2,137],"27":[2,137],"49":[2,137],"57":[2,137],"59":[2,137],"77":[2,137],"79":[2,137],"82":[2,137],"94":[2,137],"99":[2,137],"103":[2,137],"107":[2,137],"110":[2,137],"111":[2,137],"112":[2,137],"115":[2,137],"117":[2,137],"124":[2,137],"127":[2,137],"130":[2,137],"131":[2,137],"133":[2,137],"134":[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],"162":[2,137]},{"6":343,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":344,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":345,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,156],"3":[2,156],"26":[2,156],"27":[2,156],"49":[2,156],"57":[2,156],"59":[2,156],"77":[2,156],"79":[2,156],"82":[2,156],"94":[2,156],"99":[2,156],"107":[2,156],"110":[2,156],"111":[2,156],"112":[2,156],"115":[2,156],"117":[2,156],"124":[2,156],"127":[2,156],"130":[2,156],"131":[2,156],"133":[2,156],"134":[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],"162":[2,156]},{"3":[1,151],"5":346,"26":[1,6]},{"27":[2,159],"48":[2,159],"120":[2,159],"122":[2,159]},{"3":[1,151],"5":347,"26":[1,6],"57":[1,348]},{"3":[2,132],"26":[2,132],"49":[1,110],"57":[2,132],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"24":287,"48":[1,55],"121":349,"122":[1,286]},{"3":[2,100],"24":186,"27":[2,100],"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":291,"48":[1,55],"63":292,"86":350,"87":290,"97":[1,293]},{"1":[2,96],"3":[2,96],"26":[2,96],"27":[2,96],"49":[2,96],"57":[2,96],"59":[2,96],"77":[2,96],"79":[2,96],"82":[2,96],"94":[2,96],"99":[2,96],"107":[2,96],"110":[2,96],"111":[2,96],"112":[2,96],"115":[2,96],"117":[2,96],"124":[2,96],"127":[2,96],"130":[2,96],"131":[2,96],"133":[2,96],"134":[2,96],"137":[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]},{"24":186,"28":184,"29":[1,85],"30":185,"31":[1,82],"32":[1,83],"46":291,"48":[1,55],"63":292,"87":351,"97":[1,293]},{"6":352,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"49":[1,110],"59":[1,125],"99":[1,353],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[2,61],"6":354,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"27":[2,61],"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,61],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"57":[2,61],"59":[2,61],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"99":[2,61],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[2,61],"112":[2,61],"115":[2,61],"118":[1,52],"123":77,"124":[2,61],"126":46,"127":[2,61],"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45],"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],"162":[2,61]},{"3":[2,128],"27":[2,128],"49":[1,110],"57":[2,128],"59":[1,125],"94":[2,128],"99":[2,128],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"3":[2,129],"27":[2,129],"49":[1,110],"57":[2,129],"59":[1,125],"94":[2,129],"99":[2,129],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,113],"3":[2,113],"26":[2,113],"27":[2,113],"49":[2,113],"57":[2,113],"59":[2,113],"77":[2,113],"79":[2,113],"82":[2,113],"94":[2,113],"99":[2,113],"107":[2,113],"110":[2,113],"111":[2,113],"112":[2,113],"115":[2,113],"117":[2,113],"124":[2,113],"127":[2,113],"130":[2,113],"131":[2,113],"133":[2,113],"134":[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],"162":[2,113]},{"1":[2,167],"3":[2,167],"26":[2,167],"27":[2,167],"49":[2,167],"57":[2,167],"59":[2,167],"77":[2,167],"79":[2,167],"82":[2,167],"94":[2,167],"99":[2,167],"107":[2,167],"110":[2,167],"111":[2,167],"112":[2,167],"115":[2,167],"117":[2,167],"120":[2,167],"124":[2,167],"127":[2,167],"130":[2,167],"131":[2,167],"133":[2,167],"134":[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],"162":[2,167]},{"3":[2,91],"27":[2,91],"57":[2,91],"82":[2,91]},{"57":[2,93],"82":[2,93]},{"49":[1,110],"59":[1,125],"77":[1,355],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"6":356,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"49":[2,61],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"59":[2,61],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"77":[2,61],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[2,61],"112":[2,61],"115":[2,61],"118":[1,52],"123":77,"124":[2,61],"126":46,"127":[2,61],"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45],"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],"162":[2,61]},{"1":[2,151],"3":[2,151],"26":[2,151],"27":[2,151],"49":[1,110],"57":[2,151],"59":[1,125],"77":[2,151],"79":[2,151],"82":[2,151],"94":[2,151],"99":[2,151],"107":[2,151],"109":123,"110":[2,151],"111":[2,151],"112":[2,151],"115":[1,120],"117":[1,357],"124":[2,151],"127":[2,151],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,153],"3":[2,153],"26":[2,153],"27":[2,153],"49":[1,110],"57":[2,153],"59":[1,125],"77":[2,153],"79":[2,153],"82":[2,153],"94":[2,153],"99":[2,153],"107":[2,153],"109":123,"110":[2,153],"111":[1,358],"112":[2,153],"115":[1,120],"117":[2,153],"124":[2,153],"127":[2,153],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,152],"3":[2,152],"26":[2,152],"27":[2,152],"49":[1,110],"57":[2,152],"59":[1,125],"77":[2,152],"79":[2,152],"82":[2,152],"94":[2,152],"99":[2,152],"107":[2,152],"109":123,"110":[2,152],"111":[2,152],"112":[2,152],"115":[1,120],"117":[2,152],"124":[2,152],"127":[2,152],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"27":[1,359]},{"3":[1,360],"27":[2,160],"48":[2,160],"120":[2,160],"122":[2,160]},{"6":361,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"27":[2,162],"48":[2,162],"120":[2,162],"122":[2,162]},{"3":[1,331],"27":[1,362]},{"3":[2,102],"27":[2,102]},{"3":[2,99],"27":[2,99],"49":[1,110],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,117],"3":[2,117],"26":[2,117],"27":[2,117],"49":[2,117],"57":[2,117],"59":[2,117],"70":[2,117],"71":[2,117],"72":[2,117],"73":[2,117],"76":[2,117],"77":[2,117],"78":[2,117],"79":[2,117],"82":[2,117],"90":[2,117],"92":[2,117],"94":[2,117],"99":[2,117],"107":[2,117],"110":[2,117],"111":[2,117],"112":[2,117],"115":[2,117],"117":[2,117],"124":[2,117],"127":[2,117],"130":[2,117],"131":[2,117],"133":[2,117],"134":[2,117],"137":[2,117],"138":[2,117],"139":[2,117],"140":[2,117],"141":[2,117],"142":[2,117],"143":[2,117],"144":[2,117],"145":[2,117],"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]},{"49":[1,110],"59":[1,125],"99":[1,363],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,119],"3":[2,119],"26":[2,119],"27":[2,119],"45":[2,119],"49":[2,119],"57":[2,119],"59":[2,119],"70":[2,119],"71":[2,119],"72":[2,119],"73":[2,119],"76":[2,119],"77":[2,119],"78":[2,119],"79":[2,119],"82":[2,119],"85":[2,119],"90":[2,119],"92":[2,119],"94":[2,119],"99":[2,119],"107":[2,119],"110":[2,119],"111":[2,119],"112":[2,119],"115":[2,119],"117":[2,119],"124":[2,119],"127":[2,119],"130":[2,119],"131":[2,119],"133":[2,119],"134":[2,119],"137":[2,119],"138":[2,119],"139":[2,119],"140":[2,119],"141":[2,119],"142":[2,119],"143":[2,119],"144":[2,119],"145":[2,119],"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]},{"49":[1,110],"59":[1,125],"77":[1,364],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"6":365,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"6":366,"7":7,"8":8,"9":9,"10":10,"11":11,"12":12,"13":13,"14":14,"15":15,"16":16,"17":17,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"28":79,"29":[1,85],"30":59,"31":[1,82],"32":[1,83],"33":27,"34":[1,60],"35":[1,61],"36":[1,62],"37":[1,63],"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":26,"47":[1,49],"48":[1,55],"50":[1,35],"53":36,"54":[1,75],"55":[1,76],"60":53,"62":32,"63":80,"64":57,"65":58,"66":28,"67":29,"68":30,"69":[1,31],"80":[1,81],"84":[1,54],"88":[1,33],"89":34,"95":[1,74],"96":[1,72],"97":[1,73],"98":[1,71],"101":[1,47],"105":[1,48],"106":[1,70],"108":[1,56],"109":50,"110":[1,78],"112":[1,51],"118":[1,52],"123":77,"124":[1,84],"126":46,"128":[1,37],"129":[1,38],"130":[1,39],"131":[1,40],"132":[1,41],"133":[1,42],"134":[1,43],"135":[1,44],"136":[1,45]},{"1":[2,157],"3":[2,157],"26":[2,157],"27":[2,157],"49":[2,157],"57":[2,157],"59":[2,157],"77":[2,157],"79":[2,157],"82":[2,157],"94":[2,157],"99":[2,157],"107":[2,157],"110":[2,157],"111":[2,157],"112":[2,157],"115":[2,157],"117":[2,157],"124":[2,157],"127":[2,157],"130":[2,157],"131":[2,157],"133":[2,157],"134":[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],"162":[2,157]},{"27":[2,161],"48":[2,161],"120":[2,161],"122":[2,161]},{"3":[2,133],"26":[2,133],"49":[1,110],"57":[2,133],"59":[1,125],"109":123,"110":[1,78],"112":[1,124],"115":[1,120],"124":[1,121],"127":[1,122],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,97],"3":[2,97],"26":[2,97],"27":[2,97],"49":[2,97],"57":[2,97],"59":[2,97],"77":[2,97],"79":[2,97],"82":[2,97],"94":[2,97],"99":[2,97],"107":[2,97],"110":[2,97],"111":[2,97],"112":[2,97],"115":[2,97],"117":[2,97],"124":[2,97],"127":[2,97],"130":[2,97],"131":[2,97],"133":[2,97],"134":[2,97],"137":[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]},{"1":[2,118],"3":[2,118],"26":[2,118],"27":[2,118],"49":[2,118],"57":[2,118],"59":[2,118],"70":[2,118],"71":[2,118],"72":[2,118],"73":[2,118],"76":[2,118],"77":[2,118],"78":[2,118],"79":[2,118],"82":[2,118],"90":[2,118],"92":[2,118],"94":[2,118],"99":[2,118],"107":[2,118],"110":[2,118],"111":[2,118],"112":[2,118],"115":[2,118],"117":[2,118],"124":[2,118],"127":[2,118],"130":[2,118],"131":[2,118],"133":[2,118],"134":[2,118],"137":[2,118],"138":[2,118],"139":[2,118],"140":[2,118],"141":[2,118],"142":[2,118],"143":[2,118],"144":[2,118],"145":[2,118],"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]},{"1":[2,120],"3":[2,120],"26":[2,120],"27":[2,120],"45":[2,120],"49":[2,120],"57":[2,120],"59":[2,120],"70":[2,120],"71":[2,120],"72":[2,120],"73":[2,120],"76":[2,120],"77":[2,120],"78":[2,120],"79":[2,120],"82":[2,120],"85":[2,120],"90":[2,120],"92":[2,120],"94":[2,120],"99":[2,120],"107":[2,120],"110":[2,120],"111":[2,120],"112":[2,120],"115":[2,120],"117":[2,120],"124":[2,120],"127":[2,120],"130":[2,120],"131":[2,120],"133":[2,120],"134":[2,120],"137":[2,120],"138":[2,120],"139":[2,120],"140":[2,120],"141":[2,120],"142":[2,120],"143":[2,120],"144":[2,120],"145":[2,120],"146":[2,120],"147":[2,120],"148":[2,120],"149":[2,120],"150":[2,120],"151":[2,120],"152":[2,120],"153":[2,120],"154":[2,120],"155":[2,120],"156":[2,120],"157":[2,120],"158":[2,120],"159":[2,120],"160":[2,120],"161":[2,120],"162":[2,120]},{"1":[2,154],"3":[2,154],"26":[2,154],"27":[2,154],"49":[1,110],"57":[2,154],"59":[1,125],"77":[2,154],"79":[2,154],"82":[2,154],"94":[2,154],"99":[2,154],"107":[2,154],"109":123,"110":[2,154],"111":[2,154],"112":[2,154],"115":[1,120],"117":[2,154],"124":[2,154],"127":[2,154],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]},{"1":[2,155],"3":[2,155],"26":[2,155],"27":[2,155],"49":[1,110],"57":[2,155],"59":[1,125],"77":[2,155],"79":[2,155],"82":[2,155],"94":[2,155],"99":[2,155],"107":[2,155],"109":123,"110":[2,155],"111":[2,155],"112":[2,155],"115":[1,120],"117":[2,155],"124":[2,155],"127":[2,155],"130":[1,95],"131":[1,94],"133":[1,89],"134":[1,90],"137":[1,91],"138":[1,92],"139":[1,93],"140":[1,96],"141":[1,97],"142":[1,98],"143":[1,99],"144":[1,100],"145":[1,101],"146":[1,102],"147":[1,103],"148":[1,104],"149":[1,105],"150":[1,106],"151":[1,107],"152":[1,108],"153":[1,109],"154":[1,111],"155":[1,112],"156":[1,113],"157":[1,114],"158":[1,115],"159":[1,116],"160":[1,117],"161":[1,118],"162":[1,119]}],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;this.lexer.setInput(input);this.lexer.yy=this.yy;var parseError=this.yy.parseError=this.yy.parseError||this.parseError;function lex(){var token;token=self.lexer.lex()||1;if(typeof token!=="number"){token=self.symbols_[token]}return token}var symbol,state,action,a,r,yyval={},p,len,ip=0,newState,expected;symbol=lex();while(true){state=stack[stack.length-1];action=table[state]&&table[state][symbol];if(typeof action==="undefined"||!action.length||!action[0]){expected=[];for(p in table[state]){if(this.terminals_[p]&&p!=1){expected.push("'"+this.terminals_[p]+"'")}}if(this.lexer.showPosition){parseError("Parse error on line "+(yylineno+1)+":\n"+this.lexer.showPosition()+"\nExpecting "+expected.join(", "),{text:this.lexer.match,token:this.terminals_[symbol],line:this.lexer.yylineno,expected:expected})}else{parseError("Parse error on line "+(yylineno+1)+": Unexpected '"+this.terminals_[symbol]+"'",{text:this.lexer.match,token:this.terminals_[symbol],line:this.lexer.yylineno,expected:expected})}}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);++ip;yyleng=this.lexer.yyleng;yytext=this.lexer.yytext;yylineno=this.lexer.yylineno;symbol=lex();vstack.push(null);stack.push(a[1]);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){var cwd=require("file").path(require("file").cwd());if(!args[1]){throw new Error("Usage: "+args[0]+" FILE")}var source=cwd.join(args[1]).read({charset:"utf-8"});this.parse(source)};if(require.main===module){exports.main(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 Scope(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.temp_var=this.parent.temp_var}else{Scope.root=this;this.temp_var="_a"}return this};Scope.root=null;Scope.prototype.find=function find(name){if(this.check(name)){return true}this.variables[name]="var";return false};Scope.prototype.any=function any(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 parameter(name){this.variables[name]="param";return this.variables[name]};Scope.prototype.check=function check(name){if(this.variables[name]){return true}return !!(this.parent&&this.parent.check(name))};Scope.prototype.free_variable=function free_variable(){var ordinal;while(this.check(this.temp_var)){ordinal=1+parseInt(this.temp_var.substr(1),36);this.temp_var="_"+ordinal.toString(36).replace(/\d/g,"a")}this.variables[this.temp_var]="var";return this.temp_var};Scope.prototype.assign=function assign(name,value){this.variables[name]={value:value,assigned:true};return this.variables[name]};Scope.prototype.has_declarations=function has_declarations(body){return body===this.expressions&&this.any(function(k,val){return val==="var"})};Scope.prototype.has_assignments=function has_assignments(body){return body===this.expressions&&this.any(function(k,val){return val.assigned})};Scope.prototype.declared_variables=function declared_variables(){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.assigned_variables=function assigned_variables(){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.compiled_declarations=function compiled_declarations(){return this.declared_variables().join(", ")};Scope.prototype.compiled_assignments=function compiled_assignments(){return this.assigned_variables().join(", ")};return Scope}).call(this)})();(function(){var AccessorNode,ArrayNode,AssignNode,BaseNode,CallNode,ClassNode,ClosureNode,CodeNode,CommentNode,CurryNode,ExistenceNode,Expressions,ExtendsNode,ForNode,IDENTIFIER,IfNode,IndexNode,LiteralNode,ObjectNode,OpNode,ParentheticalNode,PushNode,RangeNode,ReturnNode,Scope,SliceNode,SplatNode,TAB,TRAILING_WHITESPACE,ThrowNode,TryNode,UTILITIES,ValueNode,WhileNode,compact,del,flatten,helpers,literal,merge,statement,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},__slice=Array.prototype.slice,__bind=function(func,obj,args){return function(){return func.apply(obj||{},args?args.concat(__slice.call(arguments,0)):arguments)}};if((typeof process!=="undefined"&&process!==null)){Scope=require("./scope").Scope;helpers=require("./helpers").helpers}else{this.exports=this;helpers=this.helpers;Scope=this.Scope}compact=helpers.compact;flatten=helpers.flatten;merge=helpers.merge;del=helpers.del;statement=function statement(klass,only){klass.prototype.is_statement=function is_statement(){return true};if(only){klass.prototype.is_pure_statement=function is_pure_statement(){return true};return klass.prototype.is_pure_statement}};exports.BaseNode=(function(){BaseNode=function BaseNode(){};BaseNode.prototype.compile=function compile(o){var closure,top;this.options=merge(o||{});this.tab=o.indent;if(!(this instanceof ValueNode)){del(this.options,"operation")}top=this.top_sensitive()?this.options.top:del(this.options,"top");closure=this.is_statement()&&!this.is_pure_statement()&&!top&&!this.options.as_statement&&!(this instanceof CommentNode)&&!this.contains_pure_statement();if(closure){return this.compile_closure(this.options)}else{return this.compile_node(this.options)}};BaseNode.prototype.compile_closure=function compile_closure(o){this.tab=o.indent;o.shared_scope=o.scope;return ClosureNode.wrap(this).compile(o)};BaseNode.prototype.compile_reference=function compile_reference(o){var compiled,reference;reference=literal(o.scope.free_variable());compiled=new AssignNode(reference,this);return[compiled,reference]};BaseNode.prototype.idt=function idt(tabs){var idt,num;idt=this.tab||"";num=(tabs||0)+1;while(num-=1){idt+=TAB}return idt};BaseNode.prototype.make_return=function make_return(){return new ReturnNode(this)};BaseNode.prototype.contains=function contains(block){var _a,_b,_c,node;_b=this.children;for(_a=0,_c=_b.length;_a<_c;_a++){node=_b[_a];if(block(node)){return true}if(node.contains&&node.contains(block)){return true}}return false};BaseNode.prototype.contains_type=function contains_type(type){return this instanceof type||this.contains(function(n){return n instanceof type})};BaseNode.prototype.contains_pure_statement=function contains_pure_statement(){return this.is_pure_statement()||this.contains(function(n){return n.is_pure_statement()})};BaseNode.prototype.traverse=function traverse(block){var _a,_b,_c,_d,node;_a=[];_c=this.children;for(_b=0,_d=_c.length;_b<_d;_b++){node=_c[_b];_a.push((function(){block(node);if(node.traverse){return node.traverse(block)}}).call(this))}return _a};BaseNode.prototype.toString=function toString(idt){var _a,_b,_c,_d,child;idt=idt||"";return"\n"+idt+this.constructor.name+(function(){_a=[];_c=this.children;for(_b=0,_d=_c.length;_b<_d;_b++){child=_c[_b];_a.push(child.toString(idt+TAB))}return _a}).call(this).join("")};BaseNode.prototype.unwrap=function unwrap(){return this};BaseNode.prototype.children=[];BaseNode.prototype.is_statement=function is_statement(){return false};BaseNode.prototype.is_pure_statement=function is_pure_statement(){return false};BaseNode.prototype.top_sensitive=function top_sensitive(){return false};return BaseNode}).call(this);exports.Expressions=(function(){Expressions=function Expressions(nodes){this.children=(this.expressions=compact(flatten(nodes||[])));return this};__extends(Expressions,BaseNode);Expressions.prototype.push=function push(node){this.expressions.push(node);return this};Expressions.prototype.unshift=function unshift(node){this.expressions.unshift(node);return this};Expressions.prototype.unwrap=function unwrap(){if(this.expressions.length===1){return this.expressions[0]}else{return this}};Expressions.prototype.empty=function empty(){return this.expressions.length===0};Expressions.prototype.copy=function copy(){return new Expressions(this.children.slice())};Expressions.prototype.make_return=function make_return(){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}if(!(last.contains_pure_statement())){this.expressions[idx]=last.make_return()}return this};Expressions.prototype.compile=function compile(o){o=o||{};if(o.scope){return Expressions.__superClass__.compile.call(this,o)}else{return this.compile_root(o)}};Expressions.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,node;return(function(){_a=[];_c=this.expressions;for(_b=0,_d=_c.length;_b<_d;_b++){node=_c[_b];_a.push(this.compile_expression(node,merge(o)))}return _a}).call(this).join("\n")};Expressions.prototype.compile_root=function compile_root(o){var code;o.indent=(this.tab=o.no_wrap?"":TAB);o.scope=new Scope(null,this,null);code=o.globals?this.compile_node(o):this.compile_with_declarations(o);code=code.replace(TRAILING_WHITESPACE,"");if(o.no_wrap){return code}else{return"(function(){\n"+code+"\n})();\n"}};Expressions.prototype.compile_with_declarations=function compile_with_declarations(o){var code;code=this.compile_node(o);if(o.scope.has_assignments(this)){code=(""+(this.tab)+"var "+(o.scope.compiled_assignments())+";\n"+code)}if(o.scope.has_declarations(this)){code=(""+(this.tab)+"var "+(o.scope.compiled_declarations())+";\n"+code)}return code};Expressions.prototype.compile_expression=function compile_expression(node,o){var compiled_node;this.tab=o.indent;compiled_node=node.compile(merge(o,{top:true}));if(node.is_statement()){return compiled_node}else{return""+(this.idt())+compiled_node+";"}};return Expressions}).call(this);Expressions.wrap=function wrap(nodes){if(nodes.length===1&&nodes[0] instanceof Expressions){return nodes[0]}return new Expressions(nodes)};statement(Expressions);exports.LiteralNode=(function(){LiteralNode=function LiteralNode(value){this.value=value;return this};__extends(LiteralNode,BaseNode);LiteralNode.prototype.is_statement=function is_statement(){return this.value==="break"||this.value==="continue"};LiteralNode.prototype.is_pure_statement=LiteralNode.prototype.is_statement;LiteralNode.prototype.compile_node=function compile_node(o){var end,idt;idt=this.is_statement()?this.idt():"";end=this.is_statement()?";":"";return""+idt+this.value+end};LiteralNode.prototype.toString=function toString(idt){return' "'+this.value+'"'};return LiteralNode}).call(this);exports.ReturnNode=(function(){ReturnNode=function ReturnNode(expression){this.children=[(this.expression=expression)];return this};__extends(ReturnNode,BaseNode);ReturnNode.prototype.top_sensitive=function top_sensitive(){return true};ReturnNode.prototype.compile_node=function compile_node(o){var expr;expr=this.expression.make_return();if(!(expr instanceof ReturnNode)){return expr.compile(o)}del(o,"top");if(this.expression.is_statement()){o.as_statement=true}return""+(this.tab)+"return "+(this.expression.compile(o))+";"};return ReturnNode}).call(this);statement(ReturnNode,true);exports.ValueNode=(function(){ValueNode=function ValueNode(base,properties){this.children=flatten([(this.base=base),(this.properties=(properties||[]))]);return this};__extends(ValueNode,BaseNode);ValueNode.prototype.SOAK=" == undefined ? undefined : ";ValueNode.prototype.push=function push(prop){this.properties.push(prop);this.children.push(prop);return this};ValueNode.prototype.has_properties=function has_properties(){return !!this.properties.length};ValueNode.prototype.is_array=function is_array(){return this.base instanceof ArrayNode&&!this.has_properties()};ValueNode.prototype.is_object=function is_object(){return this.base instanceof ObjectNode&&!this.has_properties()};ValueNode.prototype.is_splice=function is_splice(){return this.has_properties()&&this.properties[this.properties.length-1] instanceof SliceNode};ValueNode.prototype.make_return=function make_return(){if(this.has_properties()){return ValueNode.__superClass__.make_return.call(this)}else{return this.base.make_return()}};ValueNode.prototype.unwrap=function unwrap(){if(this.properties.length){return this}else{return this.base}};ValueNode.prototype.is_statement=function is_statement(){return this.base.is_statement&&this.base.is_statement()&&!this.has_properties()};ValueNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,baseline,complete,only,op,part,prop,props,soaked,temp;soaked=false;only=del(o,"only_first");op=del(o,"operation");props=only?this.properties.slice(0,this.properties.length-1):this.properties;baseline=this.base.compile(o);if(this.base instanceof ObjectNode&&this.has_properties()){baseline=("("+baseline+")")}complete=(this.last=baseline);_b=props;for(_a=0,_c=_b.length;_a<_c;_a++){prop=_b[_a];this.source=baseline;if(prop.soak_node){soaked=true;if(this.base instanceof CallNode&&prop===props[0]){temp=o.scope.free_variable();complete=("("+temp+" = "+complete+")"+this.SOAK)+(baseline=temp+prop.compile(o))}else{complete=complete+this.SOAK+(baseline+=prop.compile(o))}}else{part=prop.compile(o);baseline+=part;complete+=part;this.last=part}}if(op&&soaked){return"("+complete+")"}else{return complete}};return ValueNode}).call(this);exports.CommentNode=(function(){CommentNode=function CommentNode(lines){this.lines=lines;this;return this};__extends(CommentNode,BaseNode);CommentNode.prototype.make_return=function make_return(){return this};CommentNode.prototype.compile_node=function compile_node(o){return(""+this.tab+"//")+this.lines.join(("\n"+this.tab+"//"))};return CommentNode}).call(this);statement(CommentNode);exports.CallNode=(function(){CallNode=function CallNode(variable,args){this.is_new=false;this.is_super=variable==="super";this.variable=this.is_super?null:variable;this.children=compact(flatten([this.variable,(this.args=(args||[]))]));this.compile_splat_arguments=__bind(SplatNode.compile_mixed_array,this,[this.args]);return this};__extends(CallNode,BaseNode);CallNode.prototype.new_instance=function new_instance(){this.is_new=true;return this};CallNode.prototype.prefix=function prefix(){if(this.is_new){return"new "}else{return""}};CallNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,_e,_f,_g,arg,args;_b=this.args;for(_a=0,_c=_b.length;_a<_c;_a++){arg=_b[_a];if(arg instanceof SplatNode){return this.compile_splat(o)}}args=(function(){_d=[];_f=this.args;for(_e=0,_g=_f.length;_e<_g;_e++){arg=_f[_e];_d.push(arg.compile(o))}return _d}).call(this).join(", ");if(this.is_super){return this.compile_super(args,o)}return""+(this.prefix())+(this.variable.compile(o))+"("+args+")"};CallNode.prototype.compile_super=function compile_super(args,o){var meth,methname;methname=o.scope.method.name;meth=o.scope.method.proto?(""+(o.scope.method.proto)+".__superClass__."+methname):(""+(methname)+".__superClass__.constructor");return""+(meth)+".call(this"+(args.length?", ":"")+args+")"};CallNode.prototype.compile_splat=function compile_splat(o){var meth,obj,temp;meth=this.variable.compile(o);obj=this.variable.source||"this";if(obj.match(/\(/)){temp=o.scope.free_variable();obj=temp;meth=("("+temp+" = "+(this.variable.source)+")"+(this.variable.last))}return""+(this.prefix())+(meth)+".apply("+obj+", "+(this.compile_splat_arguments(o))+")"};return CallNode}).call(this);exports.CurryNode=(function(){CurryNode=function CurryNode(meth,args){this.children=flatten([(this.meth=meth),(this.context=args[0]),(this.args=(args.slice(1)||[]))]);this.compile_splat_arguments=__bind(SplatNode.compile_mixed_array,this,[this.args]);return this};__extends(CurryNode,CallNode);CurryNode.prototype.arguments=function arguments(o){var _a,_b,_c,arg;_b=this.args;for(_a=0,_c=_b.length;_a<_c;_a++){arg=_b[_a];if(arg instanceof SplatNode){return this.compile_splat_arguments(o)}}return(new ArrayNode(this.args)).compile(o)};CurryNode.prototype.compile_node=function compile_node(o){var ref;utility("slice");ref=new ValueNode(literal(utility("bind")));return(new CallNode(ref,[this.meth,this.context,literal(this.arguments(o))])).compile(o)};return CurryNode}).call(this);exports.ExtendsNode=(function(){ExtendsNode=function ExtendsNode(child,parent){this.children=[(this.child=child),(this.parent=parent)];return this};__extends(ExtendsNode,BaseNode);ExtendsNode.prototype.compile_node=function compile_node(o){var ref;ref=new ValueNode(literal(utility("extends")));return(new CallNode(ref,[this.child,this.parent])).compile(o)};return ExtendsNode}).call(this);exports.AccessorNode=(function(){AccessorNode=function AccessorNode(name,tag){this.children=[(this.name=name)];this.prototype=tag==="prototype";this.soak_node=tag==="soak";this;return this};__extends(AccessorNode,BaseNode);AccessorNode.prototype.compile_node=function compile_node(o){var proto_part;proto_part=this.prototype?"prototype.":"";return"."+proto_part+(this.name.compile(o))};return AccessorNode}).call(this);exports.IndexNode=(function(){IndexNode=function IndexNode(index,tag){this.children=[(this.index=index)];this.soak_node=tag==="soak";return this};__extends(IndexNode,BaseNode);IndexNode.prototype.compile_node=function compile_node(o){var idx;idx=this.index.compile(o);return"["+idx+"]"};return IndexNode}).call(this);exports.RangeNode=(function(){RangeNode=function RangeNode(from,to,exclusive){this.children=[(this.from=from),(this.to=to)];this.exclusive=!!exclusive;return this};__extends(RangeNode,BaseNode);RangeNode.prototype.compile_variables=function compile_variables(o){var _a,_b,from,to;this.tab=o.indent;_a=[o.scope.free_variable(),o.scope.free_variable()];this.from_var=_a[0];this.to_var=_a[1];_b=[this.from.compile(o),this.to.compile(o)];from=_b[0];to=_b[1];return""+this.from_var+" = "+from+"; "+this.to_var+" = "+to+";\n"+this.tab};RangeNode.prototype.compile_node=function compile_node(o){var compare,equals,idx,incr,intro,step,vars;if(!(o.index)){return this.compile_array(o)}idx=del(o,"index");step=del(o,"step");vars=(""+idx+" = "+this.from_var);step=step?step.compile(o):"1";equals=this.exclusive?"":"=";intro=("("+this.from_var+" <= "+this.to_var+" ? "+idx);compare=(""+intro+" <"+equals+" "+this.to_var+" : "+idx+" >"+equals+" "+this.to_var+")");incr=(""+intro+" += "+step+" : "+idx+" -= "+step+")");return""+vars+"; "+compare+"; "+incr};RangeNode.prototype.compile_array=function compile_array(o){var arr,body,name;name=o.scope.free_variable();body=Expressions.wrap([literal(name)]);arr=Expressions.wrap([new ForNode(body,{source:(new ValueNode(this))},literal(name))]);return(new ParentheticalNode(new CallNode(new CodeNode([],arr.make_return())))).compile(o)};return RangeNode}).call(this);exports.SliceNode=(function(){SliceNode=function SliceNode(range){this.children=[(this.range=range)];this;return this};__extends(SliceNode,BaseNode);SliceNode.prototype.compile_node=function compile_node(o){var from,plus_part,to;from=this.range.from.compile(o);to=this.range.to.compile(o);plus_part=this.range.exclusive?"":" + 1";return".slice("+from+", "+to+plus_part+")"};return SliceNode}).call(this);exports.ObjectNode=(function(){ObjectNode=function ObjectNode(props){this.children=(this.objects=(this.properties=props||[]));return this};__extends(ObjectNode,BaseNode);ObjectNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,_e,_f,_g,i,indent,inner,join,last_noncom,non_comments,prop,props;o.indent=this.idt(1);non_comments=(function(){_a=[];_c=this.properties;for(_b=0,_d=_c.length;_b<_d;_b++){prop=_c[_b];!(prop instanceof CommentNode)?_a.push(prop):null}return _a}).call(this);last_noncom=non_comments[non_comments.length-1];props=(function(){_e=[];_f=this.properties;for(i=0,_g=_f.length;i<_g;i++){prop=_f[i];_e.push((function(){join=",\n";if((prop===last_noncom)||(prop instanceof CommentNode)){join="\n"}if(i===this.properties.length-1){join=""}indent=prop instanceof CommentNode?"":this.idt(1);return indent+prop.compile(o)+join}).call(this))}return _e}).call(this);props=props.join("");inner=props?"\n"+props+"\n"+this.idt():"";return"{"+inner+"}"};return ObjectNode}).call(this);exports.ArrayNode=(function(){ArrayNode=function ArrayNode(objects){this.children=(this.objects=objects||[]);this.compile_splat_literal=__bind(SplatNode.compile_mixed_array,this,[this.objects]);return this};__extends(ArrayNode,BaseNode);ArrayNode.prototype.compile_node=function compile_node(o){var _a,_b,code,ending,i,obj,objects;o.indent=this.idt(1);objects=[];_a=this.objects;for(i=0,_b=_a.length;i<_b;i++){obj=_a[i];code=obj.compile(o);if(obj instanceof SplatNode){return this.compile_splat_literal(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("");ending=objects.indexOf("\n")>=0?("\n"+this.tab+"]"):"]";return"["+objects+ending};return ArrayNode}).call(this);exports.ClassNode=(function(){ClassNode=function ClassNode(variable,parent,props){this.children=compact(flatten([(this.variable=variable),(this.parent=parent),(this.properties=props||[])]));this.returns=false;return this};__extends(ClassNode,BaseNode);ClassNode.prototype.make_return=function make_return(){this.returns=true;return this};ClassNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,access,applied,construct,extension,func,prop,props,pvar,returns,val;extension=this.parent&&new ExtendsNode(this.variable,this.parent);constructor=null;props=new Expressions();o.top=true;_b=this.properties;for(_a=0,_c=_b.length;_a<_c;_a++){prop=_b[_a];_d=[prop.variable,prop.value];pvar=_d[0];func=_d[1];if(pvar&&pvar.base.value==="constructor"&&func instanceof CodeNode){func.body.push(new ReturnNode(literal("this")));constructor=new AssignNode(this.variable,func)}else{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(!constructor){if(this.parent){applied=new ValueNode(this.parent,[new AccessorNode(literal("apply"))]);constructor=new AssignNode(this.variable,new CodeNode([],new Expressions([new CallNode(applied,[literal("this"),literal("arguments")])])))}else{constructor=new AssignNode(this.variable,new CodeNode())}}construct=this.idt()+constructor.compile(o)+";\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}).call(this);statement(ClassNode);exports.AssignNode=(function(){AssignNode=function AssignNode(variable,value,context){this.children=[(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.top_sensitive=function top_sensitive(){return true};AssignNode.prototype.is_value=function is_value(){return this.variable instanceof ValueNode};AssignNode.prototype.make_return=function make_return(){return new Expressions([this,new ReturnNode(this.variable)])};AssignNode.prototype.is_statement=function is_statement(){return this.is_value()&&(this.variable.is_array()||this.variable.is_object())};AssignNode.prototype.compile_node=function compile_node(o){var last,match,name,proto,stmt,top,val;top=del(o,"top");if(this.is_statement()){return this.compile_pattern_match(o)}if(this.is_value()&&this.variable.is_splice()){return this.compile_splice(o)}stmt=del(o,"as_statement");name=this.variable.compile(o);last=this.is_value()?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.is_value()&&this.variable.has_properties())){o.scope.find(name)}val=(""+name+" = "+val);if(stmt){return(""+this.tab+val+";")}if(top){return val}else{return"("+val+")"}};AssignNode.prototype.compile_pattern_match=function compile_pattern_match(o){var _a,_b,_c,access_class,assigns,code,i,idx,obj,oindex,olength,splat,val,val_var,value;val_var=o.scope.free_variable();value=this.value.is_statement()?ClosureNode.wrap(this.value):this.value;assigns=[(""+this.tab+val_var+" = "+(value.compile(o))+";")];o.top=true;o.as_statement=true;splat=false;_a=this.variable.base.objects;for(i=0,_b=_a.length;i<_b;i++){obj=_a[i];idx=i;if(this.variable.is_object()){_c=[obj.value,obj.variable.base];obj=_c[0];idx=_c[1]}access_class=this.variable.is_array()?IndexNode:AccessorNode;if(obj instanceof SplatNode&&!splat){val=literal(obj.compile_value(o,val_var,(oindex=this.variable.base.objects.indexOf(obj)),(olength=this.variable.base.objects.length)-oindex-1));splat=true}else{if(typeof idx!=="object"){idx=literal(splat?(""+(val_var)+".length - "+(olength-idx)):idx)}val=new ValueNode(literal(val_var),[new access_class(idx)])}assigns.push(new AssignNode(obj,val).compile(o))}code=assigns.join("\n");return code};AssignNode.prototype.compile_splice=function compile_splice(o){var from,l,name,plus,range,to,val;name=this.variable.compile(merge(o,{only_first: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}).call(this);exports.CodeNode=(function(){CodeNode=function CodeNode(params,body,tag){this.params=params||[];this.body=body||new Expressions();this.bound=tag==="boundfunc";return this};__extends(CodeNode,BaseNode);CodeNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,_e,_f,_g,_h,_i,_j,code,func,i,name_part,param,params,ref,shared_scope,splat,top;shared_scope=del(o,"shared_scope");top=del(o,"top");o.scope=shared_scope||new Scope(o.scope,this.body,this);o.top=true;o.indent=this.idt(this.bound?2:1);del(o,"no_wrap");del(o,"globals");i=0;splat=undefined;params=[];_b=this.params;for(_a=0,_c=_b.length;_a<_c;_a++){param=_b[_a];if(param instanceof SplatNode&&!(typeof splat!=="undefined"&&splat!==null)){splat=param;splat.index=i;this.body.unshift(splat);splat.trailings=[]}else{if((typeof splat!=="undefined"&&splat!==null)){splat.trailings.push(param)}else{params.push(param)}}i+=1}params=(function(){_d=[];_f=params;for(_e=0,_g=_f.length;_e<_g;_e++){param=_f[_e];_d.push(param.compile(o))}return _d}).call(this);this.body.make_return();_i=params;for(_h=0,_j=_i.length;_h<_j;_h++){param=_i[_h];(o.scope.parameter(param))}code=this.body.expressions.length?("\n"+(this.body.compile_with_declarations(o))+"\n"):"";name_part=this.name?" "+this.name:"";func=("function"+(this.bound?"":name_part)+"("+(params.join(", "))+") {"+code+(this.idt(this.bound?1:0))+"}");if(top&&!this.bound){func=("("+func+")")}if(!(this.bound)){return func}utility("slice");ref=new ValueNode(literal(utility("bind")));return(new CallNode(ref,[literal(func),literal("this")])).compile(o)};CodeNode.prototype.top_sensitive=function top_sensitive(){return true};CodeNode.prototype.real_children=function real_children(){return flatten([this.params,this.body.expressions])};CodeNode.prototype.traverse=function traverse(block){var _a,_b,_c,_d,child;block(this);_a=[];_c=this.real_children();for(_b=0,_d=_c.length;_b<_d;_b++){child=_c[_b];_a.push(child.traverse(block))}return _a};CodeNode.prototype.toString=function toString(idt){var _a,_b,_c,_d,child,children;idt=idt||"";children=(function(){_a=[];_c=this.real_children();for(_b=0,_d=_c.length;_b<_d;_b++){child=_c[_b];_a.push(child.toString(idt+TAB))}return _a}).call(this).join("");return"\n"+idt+children};return CodeNode}).call(this);exports.SplatNode=(function(){SplatNode=function SplatNode(name){if(!(name.compile)){name=literal(name)}this.children=[(this.name=name)];return this};__extends(SplatNode,BaseNode);SplatNode.prototype.compile_node=function compile_node(o){var _a;if((typeof(_a=this.index)!=="undefined"&&_a!==null)){return this.compile_param(o)}else{return this.name.compile(o)}};SplatNode.prototype.compile_param=function compile_param(o){var _a,_b,_c,i,name,trailing;name=this.name.compile(o);o.scope.find(name);i=0;_b=this.trailings;for(_a=0,_c=_b.length;_a<_c;_a++){trailing=_b[_a];o.scope.assign(trailing.compile(o),("arguments[arguments.length - "+this.trailings.length+" + "+i+"]"));i+=1}return""+name+" = "+(utility("slice"))+".call(arguments, "+this.index+", arguments.length - "+(this.trailings.length)+")"};SplatNode.prototype.compile_value=function compile_value(o,name,index,trailings){var trail;trail=trailings?(", "+(name)+".length - "+trailings):"";return""+(utility("slice"))+".call("+name+", "+index+trail+")"};SplatNode.compile_mixed_array=function compile_mixed_array(list,o){var _a,_b,_c,arg,args,code,i,prev;args=[];i=0;_b=list;for(_a=0,_c=_b.length;_a<_c;_a++){arg=_b[_a];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 WhileNode(condition,opts){this.children=[(this.condition=condition)];this.filter=opts&&opts.filter;return this};__extends(WhileNode,BaseNode);WhileNode.prototype.add_body=function add_body(body){this.children.push((this.body=body));return this};WhileNode.prototype.make_return=function make_return(){this.returns=true;return this};WhileNode.prototype.top_sensitive=function top_sensitive(){return true};WhileNode.prototype.compile_node=function compile_node(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.free_variable();set=(""+this.tab+rvar+" = [];\n");if(this.body){this.body=PushNode.wrap(rvar,this.body)}}pre=(""+set+(this.tab)+"while ("+cond+")");if(!this.body){return(""+pre+" null;"+post)}if(this.filter){this.body=Expressions.wrap([new IfNode(this.filter,this.body)])}this.returns?(post=new ReturnNode(literal(rvar)).compile(merge(o,{indent:this.idt()}))):(post="");return""+pre+" {\n"+(this.body.compile(o))+"\n"+this.tab+"}\n"+post};return WhileNode}).call(this);statement(WhileNode);exports.OpNode=(function(){OpNode=function OpNode(operator,first,second,flip){this.constructor.name+=" "+operator;this.children=compact([(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.is_unary=function is_unary(){return !this.second};OpNode.prototype.is_chainable=function is_chainable(){return this.CHAINABLE.indexOf(this.operator)>=0};OpNode.prototype.compile_node=function compile_node(o){o.operation=true;if(this.is_chainable()&&this.first.unwrap() instanceof OpNode&&this.first.unwrap().is_chainable()){return this.compile_chain(o)}if(this.ASSIGNMENT.indexOf(this.operator)>=0){return this.compile_assignment(o)}if(this.is_unary()){return this.compile_unary(o)}if(this.operator==="?"){return this.compile_existence(o)}return[this.first.compile(o),this.operator,this.second.compile(o)].join(" ")};OpNode.prototype.compile_chain=function compile_chain(o){var _a,_b,first,second,shared;shared=this.first.unwrap().second;if(shared.contains_type(CallNode)){_a=shared.compile_reference(o);this.first.second=_a[0];shared=_a[1]}_b=[this.first.compile(o),this.second.compile(o),shared.compile(o)];first=_b[0];second=_b[1];shared=_b[2];return"("+first+") && ("+shared+" "+this.operator+" "+second+")"};OpNode.prototype.compile_assignment=function compile_assignment(o){var _a,first,second;_a=[this.first.compile(o),this.second.compile(o)];first=_a[0];second=_a[1];if(first.match(IDENTIFIER)){o.scope.find(first)}if(this.operator==="?="){return(""+first+" = "+(ExistenceNode.compile_test(o,this.first))+" ? "+first+" : "+second)}return""+first+" = "+first+" "+(this.operator.substr(0,2))+" "+second};OpNode.prototype.compile_existence=function compile_existence(o){var _a,first,second,test;_a=[this.first.compile(o),this.second.compile(o)];first=_a[0];second=_a[1];test=ExistenceNode.compile_test(o,this.first);return""+test+" ? "+first+" : "+second};OpNode.prototype.compile_unary=function compile_unary(o){var parts,space;space=this.PREFIX_OPERATORS.indexOf(this.operator)>=0?" ":"";parts=[this.operator,space,this.first.compile(o)];if(this.flip){parts=parts.reverse()}return parts.join("")};return OpNode}).call(this);exports.TryNode=(function(){TryNode=function TryNode(attempt,error,recovery,ensure){this.children=compact([(this.attempt=attempt),(this.recovery=recovery),(this.ensure=ensure)]);this.error=error;this;return this};__extends(TryNode,BaseNode);TryNode.prototype.make_return=function make_return(){if(this.attempt){this.attempt=this.attempt.make_return()}if(this.recovery){this.recovery=this.recovery.make_return()}return this};TryNode.prototype.compile_node=function compile_node(o){var attempt_part,catch_part,error_part,finally_part;o.indent=this.idt(1);o.top=true;attempt_part=this.attempt.compile(o);error_part=this.error?(" ("+(this.error.compile(o))+") "):" ";catch_part=this.recovery?(" catch"+error_part+"{\n"+(this.recovery.compile(o))+"\n"+this.tab+"}"):"";finally_part=(this.ensure||"")&&" finally {\n"+this.ensure.compile(merge(o))+("\n"+this.tab+"}");return""+(this.tab)+"try {\n"+attempt_part+"\n"+this.tab+"}"+catch_part+finally_part};return TryNode}).call(this);statement(TryNode);exports.ThrowNode=(function(){ThrowNode=function ThrowNode(expression){this.children=[(this.expression=expression)];return this};__extends(ThrowNode,BaseNode);ThrowNode.prototype.make_return=function make_return(){return this};ThrowNode.prototype.compile_node=function compile_node(o){return""+(this.tab)+"throw "+(this.expression.compile(o))+";"};return ThrowNode}).call(this);statement(ThrowNode);exports.ExistenceNode=(function(){ExistenceNode=function ExistenceNode(expression){this.children=[(this.expression=expression)];return this};__extends(ExistenceNode,BaseNode);ExistenceNode.prototype.compile_node=function compile_node(o){return ExistenceNode.compile_test(o,this.expression)};ExistenceNode.compile_test=function compile_test(o,variable){var _a,_b,_c,first,second;_a=[variable,variable];first=_a[0];second=_a[1];if(variable instanceof CallNode||(variable instanceof ValueNode&&variable.has_properties())){_b=variable.compile_reference(o);first=_b[0];second=_b[1]}_c=[first.compile(o),second.compile(o)];first=_c[0];second=_c[1];return"(typeof "+first+' !== "undefined" && '+second+" !== null)"};return ExistenceNode}).call(this);exports.ParentheticalNode=(function(){ParentheticalNode=function ParentheticalNode(expression){this.children=[(this.expression=expression)];return this};__extends(ParentheticalNode,BaseNode);ParentheticalNode.prototype.is_statement=function is_statement(){return this.expression.is_statement()};ParentheticalNode.prototype.make_return=function make_return(){return this.expression.make_return()};ParentheticalNode.prototype.compile_node=function compile_node(o){var code,l;code=this.expression.compile(o);if(this.is_statement()){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}).call(this);exports.ForNode=(function(){ForNode=function ForNode(body,source,name,index){var _a;this.body=body;this.name=name;this.index=index||null;this.source=source.source;this.filter=source.filter;this.step=source.step;this.object=!!source.object;if(this.object){_a=[this.index,this.name];this.name=_a[0];this.index=_a[1]}this.children=compact([this.body,this.source,this.filter]);this.returns=false;return this};__extends(ForNode,BaseNode);ForNode.prototype.top_sensitive=function top_sensitive(){return true};ForNode.prototype.make_return=function make_return(){this.returns=true;return this};ForNode.prototype.compile_return_value=function compile_return_value(val,o){if(this.returns){return new ReturnNode(literal(val)).compile(o)}return val||""};ForNode.prototype.compile_node=function compile_node(o){var body,body_dent,close,for_part,index,index_var,ivar,lvar,name,range,return_result,rvar,scope,set_result,source,source_part,step_part,svar,top_level,var_part,vars;top_level=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;scope=o.scope;name=this.name&&this.name.compile(o);index=this.index&&this.index.compile(o);if(name){scope.find(name)}if(index){scope.find(index)}body_dent=this.idt(1);if(!(top_level)){rvar=scope.free_variable()}ivar=range?name:index||scope.free_variable();var_part="";body=Expressions.wrap([this.body]);if(range){index_var=scope.free_variable();source_part=source.compile_variables(o);for_part=source.compile(merge(o,{index:ivar,step:this.step}));for_part=(""+index_var+" = 0, "+for_part+", "+index_var+"++")}else{svar=scope.free_variable();index_var=null;source_part=(""+svar+" = "+(this.source.compile(o))+";\n"+this.tab);if(name){var_part=(""+body_dent+name+" = "+svar+"["+ivar+"];\n")}if(!this.object){lvar=scope.free_variable();step_part=this.step?(""+ivar+" += "+(this.step.compile(o))):(""+ivar+"++");for_part=(""+ivar+" = 0, "+lvar+" = "+(svar)+".length; "+ivar+" < "+lvar+"; "+step_part)}}set_result=rvar?this.idt()+rvar+" = []; ":this.idt();return_result=this.compile_return_value(rvar,o);if(top_level&&body.contains(function(n){return n instanceof CodeNode})){body=ClosureNode.wrap(body,true)}if(!(top_level)){body=PushNode.wrap(rvar,body)}this.filter?(body=Expressions.wrap([new IfNode(this.filter,body)])):null;this.object?(for_part=(""+ivar+" in "+svar+") { if ("+(utility("hasProp"))+".call("+svar+", "+ivar+")")):null;body=body.compile(merge(o,{indent:body_dent,top:true}));vars=range?name:(""+name+", "+ivar);close=this.object?"}}\n":"}\n";return""+set_result+(source_part)+"for ("+for_part+") {\n"+var_part+body+"\n"+this.tab+close+return_result};return ForNode}).call(this);statement(ForNode);exports.IfNode=(function(){IfNode=function IfNode(condition,body,else_body,tags){this.condition=condition;this.body=body&&body.unwrap();this.else_body=else_body&&else_body.unwrap();this.children=compact(flatten([this.condition,this.body,this.else_body]));this.tags=tags||{};if(this.condition instanceof Array){this.multiple=true}if(this.tags.invert){this.condition=new OpNode("!",new ParentheticalNode(this.condition))}return this};__extends(IfNode,BaseNode);IfNode.prototype.push=function push(else_body){var eb;eb=else_body.unwrap();this.else_body?this.else_body.push(eb):(this.else_body=eb);return this};IfNode.prototype.force_statement=function force_statement(){this.tags.statement=true;return this};IfNode.prototype.rewrite_condition=function rewrite_condition(expression){this.switcher=expression;return this};IfNode.prototype.rewrite_switch=function rewrite_switch(o){var _a,_b,_c,assigner,cond,i,variable;assigner=this.switcher;if(!(this.switcher.unwrap() instanceof LiteralNode)){variable=literal(o.scope.free_variable());assigner=new AssignNode(variable,this.switcher);this.switcher=variable}this.condition=(function(){if(this.multiple){_a=[];_b=this.condition;for(i=0,_c=_b.length;i<_c;i++){cond=_b[i];_a.push(new OpNode("==",(i===0?assigner:this.switcher),cond))}return _a}else{return new OpNode("==",assigner,this.condition)}}).call(this);if(this.is_chain()){this.else_body.rewrite_condition(this.switcher)}return this};IfNode.prototype.add_else=function add_else(exprs,statement){if(this.is_chain()){this.else_body.add_else(exprs,statement)}else{if(!(statement)){exprs=exprs.unwrap()}this.children.push((this.else_body=exprs))}return this};IfNode.prototype.is_chain=function is_chain(){return this.chain=this.chain||this.else_body&&this.else_body instanceof IfNode};IfNode.prototype.is_statement=function is_statement(){return this.statement=this.statement||!!(this.comment||this.tags.statement||this.body.is_statement()||(this.else_body&&this.else_body.is_statement()))};IfNode.prototype.compile_condition=function compile_condition(o){var _a,_b,_c,_d,cond;return(function(){_a=[];_c=flatten([this.condition]);for(_b=0,_d=_c.length;_b<_d;_b++){cond=_c[_b];_a.push(cond.compile(o))}return _a}).call(this).join(" || ")};IfNode.prototype.compile_node=function compile_node(o){if(this.is_statement()){return this.compile_statement(o)}else{return this.compile_ternary(o)}};IfNode.prototype.make_return=function make_return(){this.body=this.body&&this.body.make_return();this.else_body=this.else_body&&this.else_body.make_return();return this};IfNode.prototype.compile_statement=function compile_statement(o){var body,child,com_dent,cond_o,else_part,if_dent,if_part,prefix;if(this.switcher){this.rewrite_switch(o)}child=del(o,"chain_child");cond_o=merge(o);o.indent=this.idt(1);o.top=true;if_dent=child?"":this.idt();com_dent=child?this.idt():"";prefix=this.comment?(""+(this.comment.compile(cond_o))+"\n"+com_dent):"";body=Expressions.wrap([this.body]).compile(o);if_part=(""+prefix+(if_dent)+"if ("+(this.compile_condition(cond_o))+") {\n"+body+"\n"+this.tab+"}");if(!(this.else_body)){return if_part}else_part=this.is_chain()?" else "+this.else_body.compile(merge(o,{indent:this.idt(),chain_child:true})):(" else {\n"+(Expressions.wrap([this.else_body]).compile(o))+"\n"+this.tab+"}");return""+if_part+else_part};IfNode.prototype.compile_ternary=function compile_ternary(o){var else_part,if_part;if_part=this.condition.compile(o)+" ? "+this.body.compile(o);else_part=this.else_body?this.else_body.compile(o):"null";return""+if_part+" : "+else_part};return IfNode}).call(this);PushNode=(exports.PushNode={wrap:function wrap(array,expressions){var expr;expr=expressions.unwrap();if(expr.is_pure_statement()||expr.contains_pure_statement()){return expressions}return Expressions.wrap([new CallNode(new ValueNode(literal(array),[new AccessorNode(literal("push"))]),[expr])])}});ClosureNode=(exports.ClosureNode={wrap:function wrap(expressions,statement){var call,func;if(expressions.contains_pure_statement()){return expressions}func=new ParentheticalNode(new CodeNode([],Expressions.wrap([expressions])));call=new CallNode(new ValueNode(func,[new AccessorNode(literal("call"))]),[literal("this")]);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 }",__bind:"function(func, obj, args) {\n return function() {\n return func.apply(obj || {}, args ? args.concat(__slice.call(arguments, 0)) : arguments);\n };\n }",__hasProp:"Object.prototype.hasOwnProperty",__slice:"Array.prototype.slice"};TAB=" ";TRAILING_WHITESPACE=/\s+$/gm;IDENTIFIER=/^[a-zA-Z\$_](\w|\$)*$/;literal=function literal(name){return new LiteralNode(name)};utility=function utility(name){var ref;ref=("__"+name);Scope.root.assign(ref,UTILITIES[ref]);return ref}})();(function(){var Lexer,compile,helpers,lexer,parser,path,process_scripts;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.6.0";lexer=new Lexer();exports.compile=(compile=function compile(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 tokens(code){return lexer.tokenize(code)};exports.nodes=function nodes(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))});exports.extend=function extend(func){return Lexer.extensions.push(func)};parser.lexer={lex:function lex(){var token;token=this.tokens[this.pos]||[""];this.pos+=1;this.yylineno=token[2];this.yytext=token[1];return token[0]},setInput:function setInput(tokens){this.tokens=tokens;this.pos=0;return this.pos},upcomingInput:function upcomingInput(){return""},showPosition:function showPosition(){return this.pos}};if((typeof document!=="undefined"&&document!==null)&&document.getElementsByTagName){process_scripts=function process_scripts(){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",process_scripts,false)}else{if(window.attachEvent){window.attachEvent("onload",process_scripts)}}}})(); \ No newline at end of file +(function(){var balanced_string,compact,count,del,extend,flatten,helpers,include,merge,starts;var __hasProp=Object.prototype.hasOwnProperty;if(!((typeof process!=="undefined"&&process!==null))){this.exports=this}helpers=(exports.helpers={});helpers.include=(include=function include(list,value){return list.indexOf(value)>=0});helpers.starts=(starts=function starts(string,literal,start){return string.substring(start,(start||0)+literal.length)===literal});helpers.compact=(compact=function compact(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 count(string,letter){var num,pos;num=0;pos=string.indexOf(letter);while(pos!==-1){num+=1;pos=string.indexOf(letter,pos+1)}return num});helpers.merge=(merge=function merge(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 extend(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 flatten(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 del(obj,key){var val;val=obj[key];delete obj[key];return val});helpers.balanced_string=(balanced_string=function balanced_string(str,delimited,options){var _a,_b,_c,_d,close,i,levels,open,pair,slash;options=options||{};slash=delimited[0][0]==="/";levels=[];i=0;while(i0;if(!(typeof post!=="undefined"&&post!==null)||(start_parens>parens)||(start_parens===parens&&include(IMPLICIT_END,tag))){if(tag==="INDENT"&&prev&&include(IMPLICIT_BLOCK,prev[0])){return 1}if(tag==="OUTDENT"&&token.generated){return 1}if(open||tag==="INDENT"){idx=tag==="OUTDENT"?i+1:i;stack_pointer=tag==="INDENT"?2:1;_b=0;_c=stack[stack.length-stack_pointer];for(_a=0,tmp=_b;(_b<=_c?tmp<_c:tmp>_c);(_b<=_c?tmp+=1:tmp-=1),_a++){this.tokens.splice(idx,0,["CALL_END",")",token[2]])}size=stack[stack.length-stack_pointer]+1;stack[stack.length-stack_pointer]=0;return size}}if(!(prev&&include(IMPLICIT_FUNC,prev[0])&&include(IMPLICIT_CALL,tag))){return 1}calls=0;start_parens=tag==="("?parens-1:parens;this.tokens.splice(i,0,["CALL_START","(",token[2]]);stack[stack.length-1]+=1;return 2},this))};Rewriter.prototype.add_implicit_indentation=function add_implicit_indentation(){return this.scan_tokens(__bind(function(prev,token,post,i){var idx,insertion,outdent,parens,pre,starter,tok;if(!(include(SINGLE_LINERS,token[0])&&post[0]!=="INDENT"&&!(token[0]==="ELSE"&&post[0]==="IF"))){return 1}starter=token[0];this.tokens.splice(i+1,0,["INDENT",2,token[2]]);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]!==";")||(tok[0]===")"&&parens===0))&&!(starter==="ELSE"&&tok[0]==="ELSE")){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},this))};Rewriter.prototype.ensure_balance=function ensure_balance(pairs){var _a,_b,key,levels,line,open,open_line,unclosed,value;levels={};open_line={};this.scan_tokens(__bind(function(prev,token,post,i){var _a,_b,_c,_d,close,open,pair;_b=pairs;for(_a=0,_c=_b.length;_a<_c;_a++){pair=_b[_a];_d=pair;open=_d[0];close=_d[1];levels[open]=levels[open]||0;if(token[0]===open){if(levels[open]===0){open_line[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},this));unclosed=(function(){_a=[];_b=levels;for(key in _b){if(__hasProp.call(_b,key)){value=_b[key];value>0?_a.push(key):null}}return _a})();if(unclosed.length){open=unclosed[0];line=open_line[open]+1;throw new Error(("unclosed "+open+" on line "+line))}};Rewriter.prototype.rewrite_closing_parens=function rewrite_closing_parens(){var _a,debt,key,stack,val;stack=[];debt={};_a=INVERSES;for(key in _a){if(__hasProp.call(_a,key)){val=_a[key];(debt[key]=0)}}return this.scan_tokens(__bind(function(prev,token,post,i){var inv,match,mtag,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];if(tag===INVERSES[mtag]){return 1}debt[mtag]+=1;val=mtag==="INDENT"?match[1]:INVERSES[mtag];this.tokens.splice(i,0,[INVERSES[mtag],val]);return 1}}else{return 1}}},this))};return Rewriter})();BALANCED_PAIRS=[["(",")"],["[","]"],["{","}"],["INDENT","OUTDENT"],["PARAM_START","PARAM_END"],["CALL_START","CALL_END"],["INDEX_START","INDEX_END"],["SOAKED_INDEX_START","SOAKED_INDEX_END"]];INVERSES={};_b=BALANCED_PAIRS;for(_a=0,_c=_b.length;_a<_c;_a++){pair=_b[_a];INVERSES[pair[0]]=pair[1];INVERSES[pair[1]]=pair[0]}EXPRESSION_START=(function(){_d=[];_f=BALANCED_PAIRS;for(_e=0,_g=_f.length;_e<_g;_e++){pair=_f[_e];_d.push(pair[0])}return _d})();EXPRESSION_END=(function(){_h=[];_j=BALANCED_PAIRS;for(_i=0,_k=_j.length;_i<_k;_i++){pair=_j[_i];_h.push(pair[1])}return _h})();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","EXTENSION","TRUE","FALSE","YES","NO","ON","OFF","!","!!","NOT","THIS","NULL","@","->","=>","[","(","{"];IMPLICIT_BLOCK=["->","=>","{","[",","];IMPLICIT_END=["IF","UNLESS","FOR","WHILE","TERMINATOR","INDENT","OUTDENT"];SINGLE_LINERS=["ELSE","->","=>","TRY","FINALLY","THEN"];SINGLE_CLOSERS=["TERMINATOR","CATCH","FINALLY","ELSE","OUTDENT","LEADING_WHEN"]})();(function(){var ACCESSORS,ASSIGNMENT,CALLABLE,CODE,COFFEE_ALIASES,COFFEE_KEYWORDS,COMMENT,COMMENT_CLEANER,CONVERSIONS,HALF_ASSIGNMENTS,HEREDOC,HEREDOC_INDENT,IDENTIFIER,INTERPOLATION,JS_CLEANER,JS_FORBIDDEN,JS_KEYWORDS,KEYWORDS,LAST_DENT,LAST_DENTS,LINE_BREAK,Lexer,MULTILINER,MULTI_DENT,NOT_REGEX,NO_NEWLINE,NUMBER,OPERATOR,REGEX_ESCAPE,REGEX_FLAGS,REGEX_INTERPOLATION,REGEX_START,RESERVED,Rewriter,STRING_NEWLINES,WHITESPACE,balanced_string,compact,count,helpers,include,starts;var __slice=Array.prototype.slice;if((typeof process!=="undefined"&&process!==null)){Rewriter=require("./rewriter").Rewriter;helpers=require("./helpers").helpers}else{this.exports=this;Rewriter=this.Rewriter;helpers=this.helpers}include=helpers.include;count=helpers.count;starts=helpers.starts;compact=helpers.compact;balanced_string=helpers.balanced_string;exports.Lexer=(function(){Lexer=function Lexer(){};Lexer.prototype.tokenize=function tokenize(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.indents=[];this.tokens=[];while(this.ithis.indent){if(no_newlines){return this.suppress_newlines()}diff=size-this.indent;this.token("INDENT",diff);this.indents.push(diff)}else{this.outdent_token(this.indent-size,no_newlines)}}this.indent=size;return true};Lexer.prototype.outdent_token=function outdent_token(move_out,no_newlines){var last_indent;while(move_out>0&&this.indents.length){last_indent=this.indents.pop();this.token("OUTDENT",last_indent);move_out-=last_indent}if(!(this.tag()==="TERMINATOR"||no_newlines)){this.token("TERMINATOR","\n")}return true};Lexer.prototype.whitespace_token=function whitespace_token(){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.newline_token=function newline_token(newlines){if(!(this.tag()==="TERMINATOR")){this.token("TERMINATOR","\n")}return true};Lexer.prototype.suppress_newlines=function suppress_newlines(){if(this.value()==="\\"){this.tokens.pop()}return true};Lexer.prototype.literal_token=function literal_token(){var match,prev_spaced,space,tag,value;match=this.chunk.match(OPERATOR);value=match&&match[1];space=match&&match[2];if(value&&value.match(CODE)){this.tag_parameters()}value=value||this.chunk.substr(0,1);prev_spaced=this.prev()&&this.prev().spaced;tag=value;if(value.match(ASSIGNMENT)){tag="ASSIGN";if(include(JS_FORBIDDEN,this.value)){this.assignment_error()}}else{if(value===";"){tag="TERMINATOR"}else{if(value==="["&&this.tag()==="?"&&!prev_spaced){tag="SOAKED_INDEX_START";this.soaked_index=true;this.tokens.pop()}else{if(value==="]"&&this.soaked_index){tag="SOAKED_INDEX_END";this.soaked_index=false}else{if(include(CALLABLE,this.tag())&&!prev_spaced){if(value==="("){tag="CALL_START"}if(value==="["){tag="INDEX_START"}}}}}}this.i+=value.length;if(space&&prev_spaced&&this.prev()[0]==="ASSIGN"&&include(HALF_ASSIGNMENTS,tag)){return this.tag_half_assignment(tag)}this.token(tag,value);return true};Lexer.prototype.name_access_type=function name_access_type(){if(this.value()==="::"){this.tag(1,"PROTOTYPE_ACCESS")}if(this.value()==="."&&!(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")}}};Lexer.prototype.sanitize_heredoc=function sanitize_heredoc(doc,quote){var indent;indent=(doc.match(HEREDOC_INDENT)||[""]).sort()[0];return doc.replace(new RegExp("^"+indent,"gm"),"").replace(MULTILINER,"\\n").replace(new RegExp(quote,"g"),'\\"')};Lexer.prototype.tag_half_assignment=function tag_half_assignment(tag){var last;last=this.tokens.pop();this.tokens.push([(""+tag+"="),(""+tag+"="),last[2]]);return true};Lexer.prototype.tag_parameters=function tag_parameters(){var _a,i,tok;if(this.tag()!==")"){return null}i=0;while(true){i+=1;tok=this.prev(i);if(!tok){return null}if((_a=tok[0])==="IDENTIFIER"){tok[0]="PARAM"}else{if(_a===")"){tok[0]="PARAM_END"}else{if(_a==="("){tok[0]="PARAM_START";return tok[0]}}}}return true};Lexer.prototype.close_indentation=function close_indentation(){return this.outdent_token(this.indent)};Lexer.prototype.identifier_error=function identifier_error(word){throw new Error(('SyntaxError: Reserved word "'+word+'" on line '+(this.line+1)))};Lexer.prototype.assignment_error=function assignment_error(){throw new Error(('SyntaxError: Reserved word "'+(this.value())+'" on line '+(this.line+1)+" can't be assigned"))};Lexer.prototype.interpolate_string=function interpolate_string(str,escape_quotes){var _a,_b,_c,_d,_e,_f,_g,escaped,expr,group,i,idx,inner,interp,interpolated,lexer,match,nested,pi,quote,tag,tok,token,tokens,value;if(str.length<3||!starts(str,'"')){return this.token("STRING",str)}else{lexer=new Lexer();tokens=[];quote=str.substring(0,1);_a=[1,1];i=_a[0];pi=_a[1];while(i1;if(interpolated){this.token("(","(")}_e=tokens;for(i=0,_f=_e.length;i<_f;i++){token=_e[i];_g=token;tag=_g[0];value=_g[1];if(tag==="TOKENS"){this.tokens=this.tokens.concat(value)}else{if(tag==="STRING"&&escape_quotes){escaped=value.substring(1,value.length-1).replace(/"/g,'\\"');this.token(tag,('"'+escaped+'"'))}else{this.token(tag,value)}}if(i:!?]+)([ \t]*)/;WHITESPACE=/^([ \t]+)/;COMMENT=/^(((\n?[ \t]*)?#[^\n]*)+)/;CODE=/^((-|=)>)/;MULTI_DENT=/^((\n([ \t]*))+)(\.)?/;LAST_DENTS=/\n([ \t]*)/g;LAST_DENT=/\n([ \t]*)/;ASSIGNMENT=/^(:|=)$/;REGEX_START=/^\/[^\/ ]/;REGEX_INTERPOLATION=/([^\\]\$[a-zA-Z_@]|[^\\]\$\{.*[^\\]\})/;REGEX_FLAGS=/^[imgy]{0,4}/;REGEX_ESCAPE=/\\[^\$]/g;JS_CLEANER=/(^`|`$)/g;MULTILINER=/\n/g;STRING_NEWLINES=/\n[ \t]*/g;COMMENT_CLEANER=/(^[ \t]*#|\n[ \t]*$)/mg;NO_NEWLINE=/^([+\*&|\/\-%=<>:!.\\][<>=&|]*|and|or|is|isnt|not|delete|typeof|instanceof)$/;HEREDOC_INDENT=/^[ \t]+/mg;NOT_REGEX=["NUMBER","REGEX","++","--","FALSE","NULL","TRUE"];CALLABLE=["IDENTIFIER","SUPER",")","]","}","STRING","@","THIS"];ACCESSORS=["PROPERTY_ACCESS","PROTOTYPE_ACCESS","SOAK_ACCESS","@"];LINE_BREAK=["INDENT","OUTDENT","TERMINATOR"];HALF_ASSIGNMENTS=["-","+","/","*","%","||","&&","?"];CONVERSIONS={and:"&&",or:"||",is:"==",isnt:"!=",not:"!"}})();var parser=(function(){var parser={trace:function trace(){},yy:{},symbols_:{Root:2,TERMINATOR:3,Body:4,Block:5,Line:6,Expression:7,Statement:8,Return:9,Throw:10,BREAK:11,CONTINUE:12,Value:13,Call:14,Curry:15,Code:16,Operation:17,Assign:18,If:19,Try:20,While:21,For:22,Switch:23,Extends:24,Class:25,Splat:26,Existence:27,Comment:28,Extension:29,INDENT:30,OUTDENT:31,Identifier:32,IDENTIFIER:33,AlphaNumeric:34,NUMBER:35,STRING:36,Literal:37,JS:38,REGEX:39,TRUE:40,FALSE:41,YES:42,NO:43,ON:44,OFF:45,Assignable:46,ASSIGN:47,AssignObj:48,RETURN:49,COMMENT:50,"?":51,PARAM_START:52,ParamList:53,PARAM_END:54,FuncGlyph:55,"->":56,"=>":57,Param:58,",":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,SOAKED_INDEX_START:80,SOAKED_INDEX_END:81,"{":82,AssignList:83,"}":84,IndentedAssignList:85,CLASS:86,EXTENDS:87,ClassBody:88,ClassAssign:89,NEW:90,Super:91,"<-":92,Arguments:93,CALL_START:94,ArgList:95,CALL_END:96,SUPER:97,THIS:98,"@":99,"[":100,"]":101,SimpleArgs:102,TRY:103,Catch:104,FINALLY:105,CATCH:106,THROW:107,"(":108,")":109,EXTENSION:110,WhileSource:111,WHILE:112,WHEN:113,FOR:114,ForVariables:115,ForSource:116,IN:117,OF:118,BY:119,SWITCH:120,Whens:121,ELSE:122,When:123,LEADING_WHEN:124,IfStart:125,IF:126,ElsIf:127,IfBlock: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:164,"$accept":0,"$end":1},terminals_:{"3":"TERMINATOR","11":"BREAK","12":"CONTINUE","30":"INDENT","31":"OUTDENT","33":"IDENTIFIER","35":"NUMBER","36":"STRING","38":"JS","39":"REGEX","40":"TRUE","41":"FALSE","42":"YES","43":"NO","44":"ON","45":"OFF","47":"ASSIGN","49":"RETURN","50":"COMMENT","51":"?","52":"PARAM_START","54":"PARAM_END","56":"->","57":"=>","59":",","60":"PARAM","61":".","71":"NULL","72":"PROPERTY_ACCESS","73":"PROTOTYPE_ACCESS","74":"::","75":"SOAK_ACCESS","78":"INDEX_START","79":"INDEX_END","80":"SOAKED_INDEX_START","81":"SOAKED_INDEX_END","82":"{","84":"}","86":"CLASS","87":"EXTENDS","90":"NEW","92":"<-","94":"CALL_START","96":"CALL_END","97":"SUPER","98":"THIS","99":"@","100":"[","101":"]","103":"TRY","105":"FINALLY","106":"CATCH","107":"THROW","108":"(","109":")","110":"EXTENSION","112":"WHILE","113":"WHEN","114":"FOR","117":"IN","118":"OF","119":"BY","120":"SWITCH","122":"ELSE","124":"LEADING_WHEN","126":"IF","129":"UNLESS","130":"!","131":"!!","132":"-","133":"+","134":"~","135":"--","136":"++","137":"DELETE","138":"TYPEOF","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":"?=","164":"INSTANCEOF"},productions_:[0,[2,0],[2,1],[2,1],[2,2],[4,1],[4,3],[4,2],[6,1],[6,1],[8,1],[8,1],[8,1],[8,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[5,3],[5,2],[5,2],[32,1],[34,1],[34,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[37,1],[18,3],[48,3],[48,3],[48,1],[9,2],[9,1],[28,1],[27,2],[16,5],[16,2],[55,1],[55,1],[53,0],[53,1],[53,3],[58,1],[58,4],[26,4],[62,1],[62,2],[62,2],[62,1],[46,1],[46,1],[46,1],[13,1],[13,1],[13,1],[13,1],[13,1],[13,1],[63,2],[63,2],[63,1],[63,2],[63,1],[63,1],[76,3],[76,3],[67,3],[67,3],[67,4],[67,4],[83,0],[83,1],[83,3],[83,3],[83,4],[85,3],[85,4],[25,2],[25,4],[25,5],[25,7],[89,1],[89,3],[88,0],[88,1],[88,3],[14,1],[14,2],[14,1],[15,3],[24,3],[64,2],[64,2],[93,3],[93,4],[91,4],[91,5],[70,1],[70,1],[65,2],[69,6],[69,7],[77,6],[77,7],[66,3],[66,4],[95,0],[95,1],[95,2],[95,3],[95,3],[95,4],[95,4],[95,2],[95,3],[102,1],[102,3],[20,3],[20,4],[20,5],[104,3],[10,2],[68,3],[29,1],[111,2],[111,4],[21,2],[21,2],[21,2],[22,4],[22,4],[22,4],[115,1],[115,3],[116,2],[116,2],[116,4],[116,4],[116,4],[116,6],[116,6],[23,5],[23,7],[121,1],[121,2],[123,3],[123,4],[123,3],[125,3],[125,2],[128,1],[128,3],[127,4],[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]],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(yytext);break;case 13:this.$=new LiteralNode(yytext);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-1+1-1];break;case 30:this.$=$$[$0-1+1-1];break;case 31:this.$=$$[$0-3+2-1];break;case 32:this.$=new Expressions();break;case 33:this.$=Expressions.wrap([$$[$0-2+2-1]]);break;case 34:this.$=new LiteralNode(yytext);break;case 35:this.$=new LiteralNode(yytext);break;case 36:this.$=new LiteralNode(yytext);break;case 37:this.$=$$[$0-1+1-1];break;case 38:this.$=new LiteralNode(yytext);break;case 39:this.$=new LiteralNode(yytext);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 LiteralNode(true);break;case 45:this.$=new LiteralNode(false);break;case 46:this.$=new AssignNode($$[$0-3+1-1],$$[$0-3+3-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(yytext);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.$=[];break;case 59:this.$=[$$[$0-1+1-1]];break;case 60:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 61:this.$=new LiteralNode(yytext);break;case 62:this.$=new SplatNode($$[$0-4+1-1]);break;case 63:this.$=new SplatNode($$[$0-4+1-1]);break;case 64:this.$=new ValueNode($$[$0-1+1-1]);break;case 65:this.$=$$[$0-2+1-1].push($$[$0-2+2-1]);break;case 66:this.$=new ValueNode($$[$0-2+1-1],[$$[$0-2+2-1]]);break;case 67:this.$=$$[$0-1+1-1];break;case 68:this.$=$$[$0-1+1-1];break;case 69:this.$=new ValueNode($$[$0-1+1-1]);break;case 70:this.$=new ValueNode($$[$0-1+1-1]);break;case 71:this.$=$$[$0-1+1-1];break;case 72:this.$=new ValueNode($$[$0-1+1-1]);break;case 73:this.$=new ValueNode($$[$0-1+1-1]);break;case 74:this.$=new ValueNode($$[$0-1+1-1]);break;case 75:this.$=$$[$0-1+1-1];break;case 76:this.$=new ValueNode(new LiteralNode("null"));break;case 77:this.$=new AccessorNode($$[$0-2+2-1]);break;case 78:this.$=new AccessorNode($$[$0-2+2-1],"prototype");break;case 79:this.$=new AccessorNode(new LiteralNode("prototype"));break;case 80:this.$=new AccessorNode($$[$0-2+2-1],"soak");break;case 81:this.$=$$[$0-1+1-1];break;case 82:this.$=new SliceNode($$[$0-1+1-1]);break;case 83:this.$=new IndexNode($$[$0-3+2-1]);break;case 84:this.$=new IndexNode($$[$0-3+2-1],"soak");break;case 85:this.$=new ObjectNode($$[$0-3+2-1]);break;case 86:this.$=new ObjectNode($$[$0-3+2-1]);break;case 87:this.$=new ObjectNode($$[$0-4+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-3+1-1].concat([$$[$0-3+3-1]]);break;case 93:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 94:this.$=$$[$0-3+2-1];break;case 95:this.$=$$[$0-4+2-1];break;case 96:this.$=new ClassNode($$[$0-2+2-1]);break;case 97:this.$=new ClassNode($$[$0-4+2-1],$$[$0-4+4-1]);break;case 98:this.$=new ClassNode($$[$0-5+2-1],null,$$[$0-5+4-1]);break;case 99:this.$=new ClassNode($$[$0-7+2-1],$$[$0-7+4-1],$$[$0-7+6-1]);break;case 100:this.$=$$[$0-1+1-1];break;case 101:this.$=new AssignNode(new ValueNode($$[$0-3+1-1]),$$[$0-3+3-1],"this");break;case 102:this.$=[];break;case 103:this.$=[$$[$0-1+1-1]];break;case 104:this.$=$$[$0-3+1-1].concat($$[$0-3+3-1]);break;case 105:this.$=$$[$0-1+1-1];break;case 106:this.$=$$[$0-2+2-1].new_instance();break;case 107:this.$=$$[$0-1+1-1];break;case 108:this.$=new CurryNode($$[$0-3+1-1],$$[$0-3+3-1]);break;case 109:this.$=new ExtendsNode($$[$0-3+1-1],$$[$0-3+3-1]);break;case 110:this.$=new CallNode($$[$0-2+1-1],$$[$0-2+2-1]);break;case 111:this.$=new CallNode($$[$0-2+1-1],$$[$0-2+2-1]);break;case 112:this.$=$$[$0-3+2-1];break;case 113:this.$=$$[$0-4+2-1];break;case 114:this.$=new CallNode("super",$$[$0-4+3-1]);break;case 115:this.$=new CallNode("super",$$[$0-5+3-1]);break;case 116:this.$=new ValueNode(new LiteralNode("this"));break;case 117:this.$=new ValueNode(new LiteralNode("this"));break;case 118:this.$=new ValueNode(new LiteralNode("this"),[new AccessorNode($$[$0-2+2-1])]);break;case 119:this.$=new RangeNode($$[$0-6+2-1],$$[$0-6+5-1]);break;case 120:this.$=new RangeNode($$[$0-7+2-1],$$[$0-7+6-1],true);break;case 121:this.$=new RangeNode($$[$0-6+2-1],$$[$0-6+5-1]);break;case 122:this.$=new RangeNode($$[$0-7+2-1],$$[$0-7+6-1],true);break;case 123:this.$=new ArrayNode($$[$0-3+2-1]);break;case 124:this.$=new ArrayNode($$[$0-4+2-1]);break;case 125:this.$=[];break;case 126:this.$=[$$[$0-1+1-1]];break;case 127:this.$=[$$[$0-2+2-1]];break;case 128:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 129:this.$=$$[$0-3+1-1].concat([$$[$0-3+3-1]]);break;case 130:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 131:this.$=$$[$0-4+1-1].concat([$$[$0-4+4-1]]);break;case 132:this.$=$$[$0-2+1-1];break;case 133:this.$=$$[$0-3+1-1];break;case 134:this.$=$$[$0-1+1-1];break;case 135: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 136:this.$=new TryNode($$[$0-3+2-1],$$[$0-3+3-1][0],$$[$0-3+3-1][1]);break;case 137:this.$=new TryNode($$[$0-4+2-1],null,null,$$[$0-4+4-1]);break;case 138:this.$=new TryNode($$[$0-5+2-1],$$[$0-5+3-1][0],$$[$0-5+3-1][1],$$[$0-5+5-1]);break;case 139:this.$=[$$[$0-3+2-1],$$[$0-3+3-1]];break;case 140:this.$=new ThrowNode($$[$0-2+2-1]);break;case 141:this.$=new ParentheticalNode($$[$0-3+2-1]);break;case 142:this.$=yytext;break;case 143:this.$=new WhileNode($$[$0-2+2-1]);break;case 144:this.$=new WhileNode($$[$0-4+2-1],{filter:$$[$0-4+4-1]});break;case 145:this.$=$$[$0-2+1-1].add_body($$[$0-2+2-1]);break;case 146:this.$=$$[$0-2+2-1].add_body(Expressions.wrap([$$[$0-2+1-1]]));break;case 147:this.$=$$[$0-2+2-1].add_body(Expressions.wrap([$$[$0-2+1-1]]));break;case 148:this.$=new ForNode($$[$0-4+1-1],$$[$0-4+4-1],$$[$0-4+3-1][0],$$[$0-4+3-1][1]);break;case 149:this.$=new ForNode($$[$0-4+1-1],$$[$0-4+4-1],$$[$0-4+3-1][0],$$[$0-4+3-1][1]);break;case 150:this.$=new ForNode($$[$0-4+4-1],$$[$0-4+3-1],$$[$0-4+2-1][0],$$[$0-4+2-1][1]);break;case 151:this.$=[$$[$0-1+1-1]];break;case 152:this.$=[$$[$0-3+1-1],$$[$0-3+3-1]];break;case 153:this.$={source:$$[$0-2+2-1]};break;case 154:this.$={source:$$[$0-2+2-1],object:true};break;case 155:this.$={source:$$[$0-4+2-1],filter:$$[$0-4+4-1]};break;case 156:this.$={source:$$[$0-4+2-1],filter:$$[$0-4+4-1],object:true};break;case 157:this.$={source:$$[$0-4+2-1],step:$$[$0-4+4-1]};break;case 158:this.$={source:$$[$0-6+2-1],filter:$$[$0-6+4-1],step:$$[$0-6+6-1]};break;case 159:this.$={source:$$[$0-6+2-1],step:$$[$0-6+4-1],filter:$$[$0-6+6-1]};break;case 160:this.$=$$[$0-5+4-1].rewrite_condition($$[$0-5+2-1]);break;case 161:this.$=$$[$0-7+4-1].rewrite_condition($$[$0-7+2-1]).add_else($$[$0-7+6-1],true);break;case 162:this.$=$$[$0-1+1-1];break;case 163:this.$=$$[$0-2+1-1].push($$[$0-2+2-1]);break;case 164:this.$=new IfNode($$[$0-3+2-1],$$[$0-3+3-1],null,{statement:true});break;case 165:this.$=new IfNode($$[$0-4+2-1],$$[$0-4+3-1],null,{statement:true});break;case 166:this.$=(function(){$$[$0-3+3-1].comment=$$[$0-3+1-1];return $$[$0-3+3-1]}());break;case 167:this.$=new IfNode($$[$0-3+2-1],$$[$0-3+3-1]);break;case 168:this.$=$$[$0-2+1-1].add_else($$[$0-2+2-1]);break;case 169:this.$=$$[$0-1+1-1];break;case 170:this.$=$$[$0-3+1-1].add_else($$[$0-3+3-1]);break;case 171:this.$=(new IfNode($$[$0-4+3-1],$$[$0-4+4-1])).force_statement();break;case 172:this.$=$$[$0-1+1-1];break;case 173:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),null,{statement:true});break;case 174:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),null,{statement:true});break;case 175:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),null,{statement:true,invert:true});break;case 176:this.$=new IfNode($$[$0-3+3-1],Expressions.wrap([$$[$0-3+1-1]]),null,{statement:true,invert:true});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("--",$$[$0-2+2-1]);break;case 183:this.$=new OpNode("++",$$[$0-2+2-1]);break;case 184:this.$=new OpNode("delete",$$[$0-2+2-1]);break;case 185:this.$=new OpNode("typeof",$$[$0-2+2-1]);break;case 186:this.$=new OpNode("--",$$[$0-2+1-1],null,true);break;case 187:this.$=new OpNode("++",$$[$0-2+1-1],null,true);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("&&=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 215:this.$=new OpNode("?=",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 216:this.$=new OpNode("instanceof",$$[$0-3+1-1],$$[$0-3+3-1]);break;case 217:this.$=new OpNode("in",$$[$0-3+1-1],$$[$0-3+3-1]);break}},table:[{"1":[2,1],"2":1,"3":[1,2],"4":3,"5":4,"6":5,"7":7,"8":8,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,6],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[3]},{"1":[2,2],"28":88,"50":[1,57]},{"1":[2,3],"3":[1,89]},{"3":[1,90]},{"1":[2,5],"3":[2,5],"31":[2,5]},{"4":91,"6":5,"7":7,"8":8,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"31":[1,92],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,8],"3":[2,8],"31":[2,8],"51":[1,114],"61":[1,129],"109":[2,8],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,9],"31":[2,9],"109":[2,9],"111":132,"112":[1,80],"114":[1,133],"126":[1,130],"129":[1,131]},{"1":[2,14],"3":[2,14],"30":[2,14],"31":[2,14],"51":[2,14],"59":[2,14],"61":[2,14],"63":136,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"79":[2,14],"80":[1,145],"81":[2,14],"84":[2,14],"92":[1,134],"93":135,"94":[1,137],"96":[2,14],"101":[2,14],"109":[2,14],"112":[2,14],"113":[2,14],"114":[2,14],"117":[2,14],"119":[2,14],"126":[2,14],"129":[2,14],"132":[2,14],"133":[2,14],"135":[2,14],"136":[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],"3":[2,15],"30":[2,15],"31":[2,15],"51":[2,15],"59":[2,15],"61":[2,15],"79":[2,15],"81":[2,15],"84":[2,15],"96":[2,15],"101":[2,15],"109":[2,15],"112":[2,15],"113":[2,15],"114":[2,15],"117":[2,15],"119":[2,15],"126":[2,15],"129":[2,15],"132":[2,15],"133":[2,15],"135":[2,15],"136":[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],"3":[2,16],"30":[2,16],"31":[2,16],"51":[2,16],"59":[2,16],"61":[2,16],"79":[2,16],"81":[2,16],"84":[2,16],"96":[2,16],"101":[2,16],"109":[2,16],"112":[2,16],"113":[2,16],"114":[2,16],"117":[2,16],"119":[2,16],"126":[2,16],"129":[2,16],"132":[2,16],"133":[2,16],"135":[2,16],"136":[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],"3":[2,17],"30":[2,17],"31":[2,17],"51":[2,17],"59":[2,17],"61":[2,17],"79":[2,17],"81":[2,17],"84":[2,17],"96":[2,17],"101":[2,17],"109":[2,17],"112":[2,17],"113":[2,17],"114":[2,17],"117":[2,17],"119":[2,17],"126":[2,17],"129":[2,17],"132":[2,17],"133":[2,17],"135":[2,17],"136":[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],"3":[2,18],"30":[2,18],"31":[2,18],"51":[2,18],"59":[2,18],"61":[2,18],"79":[2,18],"81":[2,18],"84":[2,18],"96":[2,18],"101":[2,18],"109":[2,18],"112":[2,18],"113":[2,18],"114":[2,18],"117":[2,18],"119":[2,18],"126":[2,18],"129":[2,18],"132":[2,18],"133":[2,18],"135":[2,18],"136":[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],"3":[2,19],"30":[2,19],"31":[2,19],"51":[2,19],"59":[2,19],"61":[2,19],"79":[2,19],"81":[2,19],"84":[2,19],"96":[2,19],"101":[2,19],"109":[2,19],"112":[2,19],"113":[2,19],"114":[2,19],"117":[2,19],"119":[2,19],"126":[2,19],"129":[2,19],"132":[2,19],"133":[2,19],"135":[2,19],"136":[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],"3":[2,20],"30":[2,20],"31":[2,20],"51":[2,20],"59":[2,20],"61":[2,20],"79":[2,20],"81":[2,20],"84":[2,20],"96":[2,20],"101":[2,20],"109":[2,20],"112":[2,20],"113":[2,20],"114":[2,20],"117":[2,20],"119":[2,20],"126":[2,20],"129":[2,20],"132":[2,20],"133":[2,20],"135":[2,20],"136":[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],"3":[2,21],"30":[2,21],"31":[2,21],"51":[2,21],"59":[2,21],"61":[2,21],"79":[2,21],"81":[2,21],"84":[2,21],"96":[2,21],"101":[2,21],"109":[2,21],"112":[2,21],"113":[2,21],"114":[2,21],"117":[2,21],"119":[2,21],"126":[2,21],"129":[2,21],"132":[2,21],"133":[2,21],"135":[2,21],"136":[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],"3":[2,22],"30":[2,22],"31":[2,22],"51":[2,22],"59":[2,22],"61":[2,22],"79":[2,22],"81":[2,22],"84":[2,22],"96":[2,22],"101":[2,22],"109":[2,22],"112":[2,22],"113":[2,22],"114":[2,22],"117":[2,22],"119":[2,22],"126":[2,22],"129":[2,22],"132":[2,22],"133":[2,22],"135":[2,22],"136":[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],"3":[2,23],"30":[2,23],"31":[2,23],"51":[2,23],"59":[2,23],"61":[2,23],"79":[2,23],"81":[2,23],"84":[2,23],"96":[2,23],"101":[2,23],"109":[2,23],"112":[2,23],"113":[2,23],"114":[2,23],"117":[2,23],"119":[2,23],"126":[2,23],"129":[2,23],"132":[2,23],"133":[2,23],"135":[2,23],"136":[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],"3":[2,24],"30":[2,24],"31":[2,24],"51":[2,24],"59":[2,24],"61":[2,24],"79":[2,24],"81":[2,24],"84":[2,24],"96":[2,24],"101":[2,24],"109":[2,24],"112":[2,24],"113":[2,24],"114":[2,24],"117":[2,24],"119":[2,24],"126":[2,24],"129":[2,24],"132":[2,24],"133":[2,24],"135":[2,24],"136":[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],"3":[2,25],"30":[2,25],"31":[2,25],"51":[2,25],"59":[2,25],"61":[2,25],"79":[2,25],"81":[2,25],"84":[2,25],"96":[2,25],"101":[2,25],"109":[2,25],"112":[2,25],"113":[2,25],"114":[2,25],"117":[2,25],"119":[2,25],"126":[2,25],"129":[2,25],"132":[2,25],"133":[2,25],"135":[2,25],"136":[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],"3":[2,26],"30":[2,26],"31":[2,26],"51":[2,26],"59":[2,26],"61":[2,26],"79":[2,26],"81":[2,26],"84":[2,26],"96":[2,26],"101":[2,26],"109":[2,26],"112":[2,26],"113":[2,26],"114":[2,26],"117":[2,26],"119":[2,26],"126":[2,26],"129":[2,26],"132":[2,26],"133":[2,26],"135":[2,26],"136":[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],"3":[2,27],"30":[2,27],"31":[2,27],"51":[2,27],"59":[2,27],"61":[2,27],"79":[2,27],"81":[2,27],"84":[2,27],"96":[2,27],"101":[2,27],"109":[2,27],"112":[2,27],"113":[2,27],"114":[2,27],"117":[2,27],"119":[2,27],"126":[2,27],"129":[2,27],"132":[2,27],"133":[2,27],"135":[2,27],"136":[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],"3":[2,28],"30":[2,28],"31":[2,28],"51":[2,28],"59":[2,28],"61":[2,28],"79":[2,28],"81":[2,28],"84":[2,28],"96":[2,28],"101":[2,28],"109":[2,28],"112":[2,28],"113":[2,28],"114":[2,28],"117":[2,28],"119":[2,28],"126":[2,28],"129":[2,28],"132":[2,28],"133":[2,28],"135":[2,28],"136":[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,29],"3":[2,29],"30":[2,29],"31":[2,29],"51":[2,29],"59":[2,29],"61":[2,29],"79":[2,29],"81":[2,29],"84":[2,29],"96":[2,29],"101":[2,29],"109":[2,29],"112":[2,29],"113":[2,29],"114":[2,29],"117":[2,29],"119":[2,29],"126":[2,29],"129":[2,29],"132":[2,29],"133":[2,29],"135":[2,29],"136":[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,30],"3":[2,30],"30":[2,30],"31":[2,30],"51":[2,30],"59":[2,30],"61":[2,30],"79":[2,30],"81":[2,30],"84":[2,30],"96":[2,30],"101":[2,30],"109":[2,30],"112":[2,30],"113":[2,30],"114":[2,30],"117":[2,30],"119":[2,30],"126":[2,30],"129":[2,30],"132":[2,30],"133":[2,30],"135":[2,30],"136":[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,10],"3":[2,10],"31":[2,10],"109":[2,10],"112":[2,10],"114":[2,10],"126":[2,10],"129":[2,10]},{"1":[2,11],"3":[2,11],"31":[2,11],"109":[2,11],"112":[2,11],"114":[2,11],"126":[2,11],"129":[2,11]},{"1":[2,12],"3":[2,12],"31":[2,12],"109":[2,12],"112":[2,12],"114":[2,12],"126":[2,12],"129":[2,12]},{"1":[2,13],"3":[2,13],"31":[2,13],"109":[2,13],"112":[2,13],"114":[2,13],"126":[2,13],"129":[2,13]},{"1":[2,71],"3":[2,71],"30":[2,71],"31":[2,71],"47":[1,146],"51":[2,71],"59":[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],"96":[2,71],"101":[2,71],"109":[2,71],"112":[2,71],"113":[2,71],"114":[2,71],"117":[2,71],"119":[2,71],"126":[2,71],"129":[2,71],"132":[2,71],"133":[2,71],"135":[2,71],"136":[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],"3":[2,72],"30":[2,72],"31":[2,72],"51":[2,72],"59":[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],"96":[2,72],"101":[2,72],"109":[2,72],"112":[2,72],"113":[2,72],"114":[2,72],"117":[2,72],"119":[2,72],"126":[2,72],"129":[2,72],"132":[2,72],"133":[2,72],"135":[2,72],"136":[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,73],"3":[2,73],"30":[2,73],"31":[2,73],"51":[2,73],"59":[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],"96":[2,73],"101":[2,73],"109":[2,73],"112":[2,73],"113":[2,73],"114":[2,73],"117":[2,73],"119":[2,73],"126":[2,73],"129":[2,73],"132":[2,73],"133":[2,73],"135":[2,73],"136":[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],"3":[2,74],"30":[2,74],"31":[2,74],"51":[2,74],"59":[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],"96":[2,74],"101":[2,74],"109":[2,74],"112":[2,74],"113":[2,74],"114":[2,74],"117":[2,74],"119":[2,74],"126":[2,74],"129":[2,74],"132":[2,74],"133":[2,74],"135":[2,74],"136":[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],"3":[2,75],"30":[2,75],"31":[2,75],"51":[2,75],"59":[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],"96":[2,75],"101":[2,75],"109":[2,75],"112":[2,75],"113":[2,75],"114":[2,75],"117":[2,75],"119":[2,75],"126":[2,75],"129":[2,75],"132":[2,75],"133":[2,75],"135":[2,75],"136":[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],"3":[2,76],"30":[2,76],"31":[2,76],"51":[2,76],"59":[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],"96":[2,76],"101":[2,76],"109":[2,76],"112":[2,76],"113":[2,76],"114":[2,76],"117":[2,76],"119":[2,76],"126":[2,76],"129":[2,76],"132":[2,76],"133":[2,76],"135":[2,76],"136":[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,105],"3":[2,105],"30":[2,105],"31":[2,105],"51":[2,105],"59":[2,105],"61":[2,105],"63":148,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"79":[2,105],"80":[1,145],"81":[2,105],"84":[2,105],"93":147,"94":[1,137],"96":[2,105],"101":[2,105],"109":[2,105],"112":[2,105],"113":[2,105],"114":[2,105],"117":[2,105],"119":[2,105],"126":[2,105],"129":[2,105],"132":[2,105],"133":[2,105],"135":[2,105],"136":[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]},{"13":150,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":151,"62":152,"64":149,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"98":[1,74],"99":[1,75],"100":[1,73],"108":[1,72]},{"1":[2,107],"3":[2,107],"30":[2,107],"31":[2,107],"51":[2,107],"59":[2,107],"61":[2,107],"79":[2,107],"81":[2,107],"84":[2,107],"96":[2,107],"101":[2,107],"109":[2,107],"112":[2,107],"113":[2,107],"114":[2,107],"117":[2,107],"119":[2,107],"126":[2,107],"129":[2,107],"132":[2,107],"133":[2,107],"135":[2,107],"136":[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]},{"53":153,"54":[2,58],"58":154,"59":[2,58],"60":[1,155]},{"3":[1,157],"5":156,"30":[1,6]},{"7":158,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":160,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":161,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":162,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":163,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":164,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":165,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":166,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":167,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,172],"3":[2,172],"30":[2,172],"31":[2,172],"51":[2,172],"59":[2,172],"61":[2,172],"79":[2,172],"81":[2,172],"84":[2,172],"96":[2,172],"101":[2,172],"109":[2,172],"112":[2,172],"113":[2,172],"114":[2,172],"117":[2,172],"119":[2,172],"126":[2,172],"129":[2,172],"132":[2,172],"133":[2,172],"135":[2,172],"136":[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],"162":[2,172],"163":[2,172],"164":[2,172]},{"3":[1,157],"5":168,"30":[1,6]},{"3":[1,157],"5":169,"30":[1,6]},{"32":171,"33":[1,87],"115":170},{"7":172,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,68],"3":[2,68],"30":[2,68],"31":[2,68],"47":[2,68],"51":[2,68],"59":[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],"87":[1,173],"92":[2,68],"94":[2,68],"96":[2,68],"101":[2,68],"109":[2,68],"112":[2,68],"113":[2,68],"114":[2,68],"117":[2,68],"119":[2,68],"126":[2,68],"129":[2,68],"132":[2,68],"133":[2,68],"135":[2,68],"136":[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]},{"13":150,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":151,"62":174,"64":175,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"98":[1,74],"99":[1,75],"100":[1,73],"108":[1,72]},{"1":[2,52],"3":[2,52],"30":[2,52],"31":[2,52],"50":[2,52],"51":[2,52],"59":[2,52],"61":[2,52],"79":[2,52],"81":[2,52],"84":[2,52],"96":[2,52],"101":[2,52],"105":[2,52],"106":[2,52],"109":[2,52],"112":[2,52],"113":[2,52],"114":[2,52],"117":[2,52],"119":[2,52],"122":[2,52],"124":[2,52],"126":[2,52],"129":[2,52],"132":[2,52],"133":[2,52],"135":[2,52],"136":[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,142],"3":[2,142],"30":[2,142],"31":[2,142],"51":[2,142],"59":[2,142],"61":[2,142],"79":[2,142],"81":[2,142],"84":[2,142],"96":[2,142],"101":[2,142],"109":[2,142],"112":[2,142],"113":[2,142],"114":[2,142],"117":[2,142],"119":[2,142],"126":[2,142],"129":[2,142],"132":[2,142],"133":[2,142],"135":[2,142],"136":[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],"164":[2,142]},{"1":[2,51],"3":[2,51],"7":176,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"31":[2,51],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"109":[2,51],"110":[1,58],"111":52,"112":[2,51],"114":[1,53],"120":[1,54],"125":79,"126":[2,51],"128":50,"129":[2,51],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":177,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,69],"3":[2,69],"30":[2,69],"31":[2,69],"47":[2,69],"51":[2,69],"59":[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],"92":[2,69],"94":[2,69],"96":[2,69],"101":[2,69],"109":[2,69],"112":[2,69],"113":[2,69],"114":[2,69],"117":[2,69],"119":[2,69],"126":[2,69],"129":[2,69],"132":[2,69],"133":[2,69],"135":[2,69],"136":[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]},{"1":[2,70],"3":[2,70],"30":[2,70],"31":[2,70],"47":[2,70],"51":[2,70],"59":[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],"96":[2,70],"101":[2,70],"109":[2,70],"112":[2,70],"113":[2,70],"114":[2,70],"117":[2,70],"119":[2,70],"126":[2,70],"129":[2,70],"132":[2,70],"133":[2,70],"135":[2,70],"136":[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]},{"1":[2,37],"3":[2,37],"30":[2,37],"31":[2,37],"51":[2,37],"59":[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],"96":[2,37],"101":[2,37],"109":[2,37],"112":[2,37],"113":[2,37],"114":[2,37],"117":[2,37],"119":[2,37],"126":[2,37],"129":[2,37],"132":[2,37],"133":[2,37],"135":[2,37],"136":[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],"3":[2,38],"30":[2,38],"31":[2,38],"51":[2,38],"59":[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],"96":[2,38],"101":[2,38],"109":[2,38],"112":[2,38],"113":[2,38],"114":[2,38],"117":[2,38],"119":[2,38],"126":[2,38],"129":[2,38],"132":[2,38],"133":[2,38],"135":[2,38],"136":[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],"3":[2,39],"30":[2,39],"31":[2,39],"51":[2,39],"59":[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],"96":[2,39],"101":[2,39],"109":[2,39],"112":[2,39],"113":[2,39],"114":[2,39],"117":[2,39],"119":[2,39],"126":[2,39],"129":[2,39],"132":[2,39],"133":[2,39],"135":[2,39],"136":[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],"3":[2,40],"30":[2,40],"31":[2,40],"51":[2,40],"59":[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],"96":[2,40],"101":[2,40],"109":[2,40],"112":[2,40],"113":[2,40],"114":[2,40],"117":[2,40],"119":[2,40],"126":[2,40],"129":[2,40],"132":[2,40],"133":[2,40],"135":[2,40],"136":[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],"3":[2,41],"30":[2,41],"31":[2,41],"51":[2,41],"59":[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],"96":[2,41],"101":[2,41],"109":[2,41],"112":[2,41],"113":[2,41],"114":[2,41],"117":[2,41],"119":[2,41],"126":[2,41],"129":[2,41],"132":[2,41],"133":[2,41],"135":[2,41],"136":[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],"3":[2,42],"30":[2,42],"31":[2,42],"51":[2,42],"59":[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],"96":[2,42],"101":[2,42],"109":[2,42],"112":[2,42],"113":[2,42],"114":[2,42],"117":[2,42],"119":[2,42],"126":[2,42],"129":[2,42],"132":[2,42],"133":[2,42],"135":[2,42],"136":[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],"3":[2,43],"30":[2,43],"31":[2,43],"51":[2,43],"59":[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],"96":[2,43],"101":[2,43],"109":[2,43],"112":[2,43],"113":[2,43],"114":[2,43],"117":[2,43],"119":[2,43],"126":[2,43],"129":[2,43],"132":[2,43],"133":[2,43],"135":[2,43],"136":[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]},{"1":[2,44],"3":[2,44],"30":[2,44],"31":[2,44],"51":[2,44],"59":[2,44],"61":[2,44],"72":[2,44],"73":[2,44],"74":[2,44],"75":[2,44],"78":[2,44],"79":[2,44],"80":[2,44],"81":[2,44],"84":[2,44],"92":[2,44],"94":[2,44],"96":[2,44],"101":[2,44],"109":[2,44],"112":[2,44],"113":[2,44],"114":[2,44],"117":[2,44],"119":[2,44],"126":[2,44],"129":[2,44],"132":[2,44],"133":[2,44],"135":[2,44],"136":[2,44],"139":[2,44],"140":[2,44],"141":[2,44],"142":[2,44],"143":[2,44],"144":[2,44],"145":[2,44],"146":[2,44],"147":[2,44],"148":[2,44],"149":[2,44],"150":[2,44],"151":[2,44],"152":[2,44],"153":[2,44],"154":[2,44],"155":[2,44],"156":[2,44],"157":[2,44],"158":[2,44],"159":[2,44],"160":[2,44],"161":[2,44],"162":[2,44],"163":[2,44],"164":[2,44]},{"1":[2,45],"3":[2,45],"30":[2,45],"31":[2,45],"51":[2,45],"59":[2,45],"61":[2,45],"72":[2,45],"73":[2,45],"74":[2,45],"75":[2,45],"78":[2,45],"79":[2,45],"80":[2,45],"81":[2,45],"84":[2,45],"92":[2,45],"94":[2,45],"96":[2,45],"101":[2,45],"109":[2,45],"112":[2,45],"113":[2,45],"114":[2,45],"117":[2,45],"119":[2,45],"126":[2,45],"129":[2,45],"132":[2,45],"133":[2,45],"135":[2,45],"136":[2,45],"139":[2,45],"140":[2,45],"141":[2,45],"142":[2,45],"143":[2,45],"144":[2,45],"145":[2,45],"146":[2,45],"147":[2,45],"148":[2,45],"149":[2,45],"150":[2,45],"151":[2,45],"152":[2,45],"153":[2,45],"154":[2,45],"155":[2,45],"156":[2,45],"157":[2,45],"158":[2,45],"159":[2,45],"160":[2,45],"161":[2,45],"162":[2,45],"163":[2,45],"164":[2,45]},{"6":178,"7":7,"8":8,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"3":[2,125],"7":179,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,181],"31":[2,125],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"59":[2,125],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"95":180,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"101":[2,125],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,116],"3":[2,116],"30":[2,116],"31":[2,116],"51":[2,116],"59":[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],"96":[2,116],"101":[2,116],"109":[2,116],"112":[2,116],"113":[2,116],"114":[2,116],"117":[2,116],"119":[2,116],"126":[2,116],"129":[2,116],"132":[2,116],"133":[2,116],"135":[2,116],"136":[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]},{"1":[2,117],"3":[2,117],"30":[2,117],"31":[2,117],"32":182,"33":[1,87],"51":[2,117],"59":[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],"92":[2,117],"94":[2,117],"96":[2,117],"101":[2,117],"109":[2,117],"112":[2,117],"113":[2,117],"114":[2,117],"117":[2,117],"119":[2,117],"126":[2,117],"129":[2,117],"132":[2,117],"133":[2,117],"135":[2,117],"136":[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]},{"94":[1,183]},{"3":[2,56],"30":[2,56]},{"3":[2,57],"30":[2,57]},{"1":[2,169],"3":[2,169],"30":[2,169],"31":[2,169],"51":[2,169],"59":[2,169],"61":[2,169],"79":[2,169],"81":[2,169],"84":[2,169],"96":[2,169],"101":[2,169],"109":[2,169],"112":[2,169],"113":[2,169],"114":[2,169],"117":[2,169],"119":[2,169],"122":[1,184],"126":[2,169],"127":185,"129":[2,169],"132":[2,169],"133":[2,169],"135":[2,169],"136":[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]},{"7":186,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,64],"3":[2,64],"30":[2,64],"31":[2,64],"47":[2,64],"51":[2,64],"59":[2,64],"61":[2,64],"72":[2,64],"73":[2,64],"74":[2,64],"75":[2,64],"78":[2,64],"79":[2,64],"80":[2,64],"81":[2,64],"84":[2,64],"87":[2,64],"92":[2,64],"94":[2,64],"96":[2,64],"101":[2,64],"109":[2,64],"112":[2,64],"113":[2,64],"114":[2,64],"117":[2,64],"119":[2,64],"126":[2,64],"129":[2,64],"132":[2,64],"133":[2,64],"135":[2,64],"136":[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],"162":[2,64],"163":[2,64],"164":[2,64]},{"1":[2,67],"3":[2,67],"30":[2,67],"31":[2,67],"47":[2,67],"51":[2,67],"59":[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],"87":[2,67],"92":[2,67],"94":[2,67],"96":[2,67],"101":[2,67],"109":[2,67],"112":[2,67],"113":[2,67],"114":[2,67],"117":[2,67],"119":[2,67],"126":[2,67],"129":[2,67],"132":[2,67],"133":[2,67],"135":[2,67],"136":[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]},{"3":[2,89],"28":193,"30":[1,190],"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":189,"50":[1,57],"59":[2,89],"83":187,"84":[2,89],"85":188},{"1":[2,35],"3":[2,35],"30":[2,35],"31":[2,35],"47":[2,35],"51":[2,35],"59":[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],"96":[2,35],"101":[2,35],"109":[2,35],"112":[2,35],"113":[2,35],"114":[2,35],"117":[2,35],"119":[2,35],"126":[2,35],"129":[2,35],"132":[2,35],"133":[2,35],"135":[2,35],"136":[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],"3":[2,36],"30":[2,36],"31":[2,36],"47":[2,36],"51":[2,36],"59":[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],"96":[2,36],"101":[2,36],"109":[2,36],"112":[2,36],"113":[2,36],"114":[2,36],"117":[2,36],"119":[2,36],"126":[2,36],"129":[2,36],"132":[2,36],"133":[2,36],"135":[2,36],"136":[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]},{"7":194,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,34],"3":[2,34],"30":[2,34],"31":[2,34],"47":[2,34],"51":[2,34],"59":[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],"87":[2,34],"92":[2,34],"94":[2,34],"96":[2,34],"101":[2,34],"109":[2,34],"112":[2,34],"113":[2,34],"114":[2,34],"117":[2,34],"118":[2,34],"119":[2,34],"126":[2,34],"129":[2,34],"132":[2,34],"133":[2,34],"135":[2,34],"136":[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,33],"3":[2,33],"30":[2,33],"31":[2,33],"50":[2,33],"51":[2,33],"59":[2,33],"61":[2,33],"79":[2,33],"81":[2,33],"84":[2,33],"96":[2,33],"101":[2,33],"105":[2,33],"106":[2,33],"109":[2,33],"112":[2,33],"113":[2,33],"114":[2,33],"117":[2,33],"119":[2,33],"122":[2,33],"124":[2,33],"126":[2,33],"129":[2,33],"132":[2,33],"133":[2,33],"135":[2,33],"136":[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,7],"3":[2,7],"6":195,"7":7,"8":8,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"31":[2,7],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,4]},{"3":[1,89],"31":[1,196]},{"1":[2,32],"3":[2,32],"30":[2,32],"31":[2,32],"50":[2,32],"51":[2,32],"59":[2,32],"61":[2,32],"79":[2,32],"81":[2,32],"84":[2,32],"96":[2,32],"101":[2,32],"105":[2,32],"106":[2,32],"109":[2,32],"112":[2,32],"113":[2,32],"114":[2,32],"117":[2,32],"119":[2,32],"122":[2,32],"124":[2,32],"126":[2,32],"129":[2,32],"132":[2,32],"133":[2,32],"135":[2,32],"136":[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,186],"3":[2,186],"30":[2,186],"31":[2,186],"51":[2,186],"59":[2,186],"61":[2,186],"79":[2,186],"81":[2,186],"84":[2,186],"96":[2,186],"101":[2,186],"109":[2,186],"112":[2,186],"113":[2,186],"114":[2,186],"117":[2,186],"119":[2,186],"126":[2,186],"129":[2,186],"132":[2,186],"133":[2,186],"135":[2,186],"136":[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],"3":[2,187],"30":[2,187],"31":[2,187],"51":[2,187],"59":[2,187],"61":[2,187],"79":[2,187],"81":[2,187],"84":[2,187],"96":[2,187],"101":[2,187],"109":[2,187],"112":[2,187],"113":[2,187],"114":[2,187],"117":[2,187],"119":[2,187],"126":[2,187],"129":[2,187],"132":[2,187],"133":[2,187],"135":[2,187],"136":[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]},{"7":197,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":198,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":199,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":200,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":201,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":202,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":203,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":204,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":205,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":206,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":207,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":208,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":209,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":210,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":211,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":212,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":213,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":214,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":215,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,53],"3":[2,53],"7":216,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[2,53],"31":[2,53],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"51":[2,53],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"59":[2,53],"61":[2,53],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"79":[2,53],"81":[2,53],"82":[1,83],"84":[2,53],"86":[1,56],"90":[1,37],"91":38,"96":[2,53],"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"101":[2,53],"103":[1,51],"107":[1,60],"108":[1,72],"109":[2,53],"110":[1,58],"111":52,"112":[2,53],"113":[2,53],"114":[2,53],"117":[2,53],"119":[2,53],"120":[1,54],"125":79,"126":[2,53],"128":50,"129":[2,53],"130":[1,41],"131":[1,42],"132":[2,53],"133":[2,53],"134":[1,45],"135":[2,53],"136":[2,53],"137":[1,48],"138":[1,49],"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]},{"7":217,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":218,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":219,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":220,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":221,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":222,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":223,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":224,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":225,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":226,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":227,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":228,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,147],"3":[2,147],"30":[2,147],"31":[2,147],"51":[2,147],"59":[2,147],"61":[2,147],"79":[2,147],"81":[2,147],"84":[2,147],"96":[2,147],"101":[2,147],"109":[2,147],"112":[2,147],"113":[2,147],"114":[2,147],"117":[2,147],"119":[2,147],"126":[2,147],"129":[2,147],"132":[2,147],"133":[2,147],"135":[2,147],"136":[2,147],"139":[2,147],"140":[2,147],"141":[2,147],"142":[2,147],"143":[2,147],"144":[2,147],"145":[2,147],"146":[2,147],"147":[2,147],"148":[2,147],"149":[2,147],"150":[2,147],"151":[2,147],"152":[2,147],"153":[2,147],"154":[2,147],"155":[2,147],"156":[2,147],"157":[2,147],"158":[2,147],"159":[2,147],"160":[2,147],"161":[2,147],"162":[2,147],"163":[2,147],"164":[2,147]},{"32":171,"33":[1,87],"115":229},{"61":[1,230]},{"7":231,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":232,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,146],"3":[2,146],"30":[2,146],"31":[2,146],"51":[2,146],"59":[2,146],"61":[2,146],"79":[2,146],"81":[2,146],"84":[2,146],"96":[2,146],"101":[2,146],"109":[2,146],"112":[2,146],"113":[2,146],"114":[2,146],"117":[2,146],"119":[2,146],"126":[2,146],"129":[2,146],"132":[2,146],"133":[2,146],"135":[2,146],"136":[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],"164":[2,146]},{"32":171,"33":[1,87],"115":233},{"93":234,"94":[1,137]},{"1":[2,110],"3":[2,110],"30":[2,110],"31":[2,110],"51":[2,110],"59":[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],"94":[2,110],"96":[2,110],"101":[2,110],"109":[2,110],"112":[2,110],"113":[2,110],"114":[2,110],"117":[2,110],"119":[2,110],"126":[2,110],"129":[2,110],"132":[2,110],"133":[2,110],"135":[2,110],"136":[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]},{"1":[2,65],"3":[2,65],"30":[2,65],"31":[2,65],"47":[2,65],"51":[2,65],"59":[2,65],"61":[2,65],"72":[2,65],"73":[2,65],"74":[2,65],"75":[2,65],"78":[2,65],"79":[2,65],"80":[2,65],"81":[2,65],"84":[2,65],"87":[2,65],"92":[2,65],"94":[2,65],"96":[2,65],"101":[2,65],"109":[2,65],"112":[2,65],"113":[2,65],"114":[2,65],"117":[2,65],"119":[2,65],"126":[2,65],"129":[2,65],"132":[2,65],"133":[2,65],"135":[2,65],"136":[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]},{"3":[2,125],"7":236,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,181],"31":[2,125],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"59":[2,125],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"95":235,"96":[2,125],"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"32":237,"33":[1,87]},{"32":238,"33":[1,87]},{"1":[2,79],"3":[2,79],"30":[2,79],"31":[2,79],"47":[2,79],"51":[2,79],"59":[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],"87":[2,79],"92":[2,79],"94":[2,79],"96":[2,79],"101":[2,79],"109":[2,79],"112":[2,79],"113":[2,79],"114":[2,79],"117":[2,79],"119":[2,79],"126":[2,79],"129":[2,79],"132":[2,79],"133":[2,79],"135":[2,79],"136":[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]},{"32":239,"33":[1,87]},{"1":[2,81],"3":[2,81],"30":[2,81],"31":[2,81],"47":[2,81],"51":[2,81],"59":[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],"87":[2,81],"92":[2,81],"94":[2,81],"96":[2,81],"101":[2,81],"109":[2,81],"112":[2,81],"113":[2,81],"114":[2,81],"117":[2,81],"119":[2,81],"126":[2,81],"129":[2,81],"132":[2,81],"133":[2,81],"135":[2,81],"136":[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]},{"1":[2,82],"3":[2,82],"30":[2,82],"31":[2,82],"47":[2,82],"51":[2,82],"59":[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],"87":[2,82],"92":[2,82],"94":[2,82],"96":[2,82],"101":[2,82],"109":[2,82],"112":[2,82],"113":[2,82],"114":[2,82],"117":[2,82],"119":[2,82],"126":[2,82],"129":[2,82],"132":[2,82],"133":[2,82],"135":[2,82],"136":[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]},{"7":240,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":241,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":242,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,111],"3":[2,111],"30":[2,111],"31":[2,111],"51":[2,111],"59":[2,111],"61":[2,111],"72":[2,111],"73":[2,111],"74":[2,111],"75":[2,111],"78":[2,111],"79":[2,111],"80":[2,111],"81":[2,111],"84":[2,111],"94":[2,111],"96":[2,111],"101":[2,111],"109":[2,111],"112":[2,111],"113":[2,111],"114":[2,111],"117":[2,111],"119":[2,111],"126":[2,111],"129":[2,111],"132":[2,111],"133":[2,111],"135":[2,111],"136":[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]},{"1":[2,66],"3":[2,66],"30":[2,66],"31":[2,66],"47":[2,66],"51":[2,66],"59":[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],"87":[2,66],"92":[2,66],"94":[2,66],"96":[2,66],"101":[2,66],"109":[2,66],"112":[2,66],"113":[2,66],"114":[2,66],"117":[2,66],"119":[2,66],"126":[2,66],"129":[2,66],"132":[2,66],"133":[2,66],"135":[2,66],"136":[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,106],"3":[2,106],"30":[2,106],"31":[2,106],"51":[2,106],"59":[2,106],"61":[2,106],"63":148,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"79":[2,106],"80":[1,145],"81":[2,106],"84":[2,106],"93":147,"94":[1,137],"96":[2,106],"101":[2,106],"109":[2,106],"112":[2,106],"113":[2,106],"114":[2,106],"117":[2,106],"119":[2,106],"126":[2,106],"129":[2,106],"132":[2,106],"133":[2,106],"135":[2,106],"136":[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]},{"63":136,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"80":[1,145],"93":135,"94":[1,137]},{"1":[2,71],"3":[2,71],"30":[2,71],"31":[2,71],"51":[2,71],"59":[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],"94":[2,71],"96":[2,71],"101":[2,71],"109":[2,71],"112":[2,71],"113":[2,71],"114":[2,71],"117":[2,71],"119":[2,71],"126":[2,71],"129":[2,71],"132":[2,71],"133":[2,71],"135":[2,71],"136":[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,68],"3":[2,68],"30":[2,68],"31":[2,68],"51":[2,68],"59":[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],"94":[2,68],"96":[2,68],"101":[2,68],"109":[2,68],"112":[2,68],"113":[2,68],"114":[2,68],"117":[2,68],"119":[2,68],"126":[2,68],"129":[2,68],"132":[2,68],"133":[2,68],"135":[2,68],"136":[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]},{"54":[1,243],"59":[1,244]},{"54":[2,59],"59":[2,59],"61":[1,245]},{"54":[2,61],"59":[2,61],"61":[2,61]},{"1":[2,55],"3":[2,55],"30":[2,55],"31":[2,55],"51":[2,55],"59":[2,55],"61":[2,55],"79":[2,55],"81":[2,55],"84":[2,55],"96":[2,55],"101":[2,55],"109":[2,55],"112":[2,55],"113":[2,55],"114":[2,55],"117":[2,55],"119":[2,55],"126":[2,55],"129":[2,55],"132":[2,55],"133":[2,55],"135":[2,55],"136":[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,"50":[1,57]},{"1":[2,177],"3":[2,177],"30":[2,177],"31":[2,177],"51":[1,114],"59":[2,177],"61":[2,177],"79":[2,177],"81":[2,177],"84":[2,177],"96":[2,177],"101":[2,177],"109":[2,177],"111":127,"112":[2,177],"113":[2,177],"114":[2,177],"117":[2,177],"119":[2,177],"126":[2,177],"129":[2,177],"132":[2,177],"133":[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]},{"111":132,"112":[1,80],"114":[1,133],"126":[1,130],"129":[1,131]},{"1":[2,178],"3":[2,178],"30":[2,178],"31":[2,178],"51":[1,114],"59":[2,178],"61":[2,178],"79":[2,178],"81":[2,178],"84":[2,178],"96":[2,178],"101":[2,178],"109":[2,178],"111":127,"112":[2,178],"113":[2,178],"114":[2,178],"117":[2,178],"119":[2,178],"126":[2,178],"129":[2,178],"132":[2,178],"133":[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],"3":[2,179],"30":[2,179],"31":[2,179],"51":[1,114],"59":[2,179],"61":[2,179],"79":[2,179],"81":[2,179],"84":[2,179],"96":[2,179],"101":[2,179],"109":[2,179],"111":127,"112":[2,179],"113":[2,179],"114":[2,179],"117":[2,179],"119":[2,179],"126":[2,179],"129":[2,179],"132":[2,179],"133":[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],"3":[2,180],"30":[2,180],"31":[2,180],"51":[1,114],"59":[2,180],"61":[2,180],"79":[2,180],"81":[2,180],"84":[2,180],"96":[2,180],"101":[2,180],"109":[2,180],"111":127,"112":[2,180],"113":[2,180],"114":[2,180],"117":[2,180],"119":[2,180],"126":[2,180],"129":[2,180],"132":[2,180],"133":[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],"3":[2,181],"30":[2,181],"31":[2,181],"51":[1,114],"59":[2,181],"61":[2,181],"79":[2,181],"81":[2,181],"84":[2,181],"96":[2,181],"101":[2,181],"109":[2,181],"111":127,"112":[2,181],"113":[2,181],"114":[2,181],"117":[2,181],"119":[2,181],"126":[2,181],"129":[2,181],"132":[2,181],"133":[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],"3":[2,182],"30":[2,182],"31":[2,182],"51":[1,114],"59":[2,182],"61":[2,182],"79":[2,182],"81":[2,182],"84":[2,182],"96":[2,182],"101":[2,182],"109":[2,182],"111":127,"112":[2,182],"113":[2,182],"114":[2,182],"117":[2,182],"119":[2,182],"126":[2,182],"129":[2,182],"132":[2,182],"133":[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],"164":[2,182]},{"1":[2,183],"3":[2,183],"30":[2,183],"31":[2,183],"51":[1,114],"59":[2,183],"61":[2,183],"79":[2,183],"81":[2,183],"84":[2,183],"96":[2,183],"101":[2,183],"109":[2,183],"111":127,"112":[2,183],"113":[2,183],"114":[2,183],"117":[2,183],"119":[2,183],"126":[2,183],"129":[2,183],"132":[2,183],"133":[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],"162":[2,183],"163":[2,183],"164":[2,183]},{"1":[2,184],"3":[2,184],"30":[2,184],"31":[2,184],"51":[1,114],"59":[2,184],"61":[2,184],"79":[2,184],"81":[2,184],"84":[2,184],"96":[2,184],"101":[2,184],"109":[2,184],"111":127,"112":[2,184],"113":[2,184],"114":[2,184],"117":[2,184],"119":[2,184],"126":[2,184],"129":[2,184],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"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":[1,123]},{"1":[2,185],"3":[2,185],"30":[2,185],"31":[2,185],"51":[1,114],"59":[2,185],"61":[2,185],"79":[2,185],"81":[2,185],"84":[2,185],"96":[2,185],"101":[2,185],"109":[2,185],"111":127,"112":[2,185],"113":[2,185],"114":[2,185],"117":[2,185],"119":[2,185],"126":[2,185],"129":[2,185],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"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":[1,123]},{"104":246,"105":[1,247],"106":[1,248]},{"1":[2,145],"3":[2,145],"30":[2,145],"31":[2,145],"51":[2,145],"59":[2,145],"61":[2,145],"79":[2,145],"81":[2,145],"84":[2,145],"96":[2,145],"101":[2,145],"109":[2,145],"112":[2,145],"113":[2,145],"114":[2,145],"117":[2,145],"119":[2,145],"126":[2,145],"129":[2,145],"132":[2,145],"133":[2,145],"135":[2,145],"136":[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]},{"116":249,"117":[1,250],"118":[1,251]},{"59":[1,252],"117":[2,151],"118":[2,151]},{"30":[1,253],"51":[1,114],"61":[1,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"13":254,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":151,"62":152,"64":175,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"98":[1,74],"99":[1,75],"100":[1,73],"108":[1,72]},{"1":[2,96],"3":[2,96],"30":[1,256],"31":[2,96],"51":[2,96],"59":[2,96],"61":[2,96],"72":[2,68],"73":[2,68],"74":[2,68],"75":[2,68],"78":[2,68],"79":[2,96],"80":[2,68],"81":[2,96],"84":[2,96],"87":[1,255],"94":[2,68],"96":[2,96],"101":[2,96],"109":[2,96],"112":[2,96],"113":[2,96],"114":[2,96],"117":[2,96],"119":[2,96],"126":[2,96],"129":[2,96],"132":[2,96],"133":[2,96],"135":[2,96],"136":[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]},{"63":148,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"80":[1,145],"93":147,"94":[1,137]},{"1":[2,50],"3":[2,50],"31":[2,50],"51":[1,114],"61":[1,129],"109":[2,50],"111":127,"112":[2,50],"114":[1,128],"117":[1,124],"126":[2,50],"129":[2,50],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,140],"3":[2,140],"31":[2,140],"51":[1,114],"61":[1,129],"109":[2,140],"111":127,"112":[2,140],"114":[2,140],"117":[1,124],"126":[2,140],"129":[2,140],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"109":[1,257]},{"3":[2,126],"31":[2,126],"51":[1,114],"59":[2,126],"61":[1,258],"101":[2,126],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"3":[1,261],"31":[1,262],"59":[1,260],"101":[1,259]},{"7":263,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,118],"3":[2,118],"30":[2,118],"31":[2,118],"47":[2,118],"51":[2,118],"59":[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],"87":[2,118],"92":[2,118],"94":[2,118],"96":[2,118],"101":[2,118],"109":[2,118],"112":[2,118],"113":[2,118],"114":[2,118],"117":[2,118],"119":[2,118],"126":[2,118],"129":[2,118],"132":[2,118],"133":[2,118],"135":[2,118],"136":[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]},{"3":[2,125],"7":236,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,181],"31":[2,125],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"59":[2,125],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"95":264,"96":[2,125],"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"3":[1,157],"5":265,"30":[1,6],"126":[1,266]},{"1":[2,168],"3":[2,168],"30":[2,168],"31":[2,168],"51":[2,168],"59":[2,168],"61":[2,168],"79":[2,168],"81":[2,168],"84":[2,168],"96":[2,168],"101":[2,168],"109":[2,168],"112":[2,168],"113":[2,168],"114":[2,168],"117":[2,168],"119":[2,168],"122":[2,168],"126":[2,168],"129":[2,168],"132":[2,168],"133":[2,168],"135":[2,168],"136":[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,143],"3":[2,143],"30":[2,143],"31":[2,143],"51":[1,114],"59":[2,143],"61":[1,129],"79":[2,143],"81":[2,143],"84":[2,143],"96":[2,143],"101":[2,143],"109":[2,143],"111":127,"112":[1,80],"113":[1,267],"114":[1,128],"117":[1,124],"119":[2,143],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"3":[1,270],"59":[1,269],"84":[1,268]},{"59":[1,272],"84":[1,271]},{"3":[2,90],"31":[2,90],"59":[2,90],"84":[2,90]},{"3":[2,89],"28":193,"31":[2,89],"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":189,"50":[1,57],"59":[2,89],"83":273},{"47":[1,274]},{"47":[1,275]},{"3":[2,49],"31":[2,49],"59":[2,49],"84":[2,49]},{"3":[1,157],"5":276,"30":[1,6],"51":[1,114],"61":[1,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,6],"3":[2,6],"31":[2,6]},{"1":[2,31],"3":[2,31],"30":[2,31],"31":[2,31],"50":[2,31],"51":[2,31],"59":[2,31],"61":[2,31],"79":[2,31],"81":[2,31],"84":[2,31],"96":[2,31],"101":[2,31],"105":[2,31],"106":[2,31],"109":[2,31],"112":[2,31],"113":[2,31],"114":[2,31],"117":[2,31],"119":[2,31],"122":[2,31],"124":[2,31],"126":[2,31],"129":[2,31],"132":[2,31],"133":[2,31],"135":[2,31],"136":[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,188],"3":[2,188],"30":[2,188],"31":[2,188],"51":[1,114],"59":[2,188],"61":[2,188],"79":[2,188],"81":[2,188],"84":[2,188],"96":[2,188],"101":[2,188],"109":[2,188],"111":127,"112":[2,188],"113":[2,188],"114":[2,188],"117":[2,188],"119":[2,188],"126":[2,188],"129":[2,188],"132":[2,188],"133":[2,188],"135":[1,93],"136":[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],"162":[2,188],"163":[2,188],"164":[2,188]},{"1":[2,189],"3":[2,189],"30":[2,189],"31":[2,189],"51":[1,114],"59":[2,189],"61":[2,189],"79":[2,189],"81":[2,189],"84":[2,189],"96":[2,189],"101":[2,189],"109":[2,189],"111":127,"112":[2,189],"113":[2,189],"114":[2,189],"117":[2,189],"119":[2,189],"126":[2,189],"129":[2,189],"132":[2,189],"133":[2,189],"135":[1,93],"136":[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],"162":[2,189],"163":[2,189],"164":[2,189]},{"1":[2,190],"3":[2,190],"30":[2,190],"31":[2,190],"51":[1,114],"59":[2,190],"61":[2,190],"79":[2,190],"81":[2,190],"84":[2,190],"96":[2,190],"101":[2,190],"109":[2,190],"111":127,"112":[2,190],"113":[2,190],"114":[2,190],"117":[2,190],"119":[2,190],"126":[2,190],"129":[2,190],"132":[2,190],"133":[2,190],"135":[1,93],"136":[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],"162":[2,190],"163":[2,190],"164":[2,190]},{"1":[2,191],"3":[2,191],"30":[2,191],"31":[2,191],"51":[1,114],"59":[2,191],"61":[2,191],"79":[2,191],"81":[2,191],"84":[2,191],"96":[2,191],"101":[2,191],"109":[2,191],"111":127,"112":[2,191],"113":[2,191],"114":[2,191],"117":[2,191],"119":[2,191],"126":[2,191],"129":[2,191],"132":[2,191],"133":[2,191],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"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],"3":[2,192],"30":[2,192],"31":[2,192],"51":[1,114],"59":[2,192],"61":[2,192],"79":[2,192],"81":[2,192],"84":[2,192],"96":[2,192],"101":[2,192],"109":[2,192],"111":127,"112":[2,192],"113":[2,192],"114":[2,192],"117":[2,192],"119":[2,192],"126":[2,192],"129":[2,192],"132":[2,192],"133":[2,192],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"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],"3":[2,193],"30":[2,193],"31":[2,193],"51":[1,114],"59":[2,193],"61":[2,193],"79":[2,193],"81":[2,193],"84":[2,193],"96":[2,193],"101":[2,193],"109":[2,193],"111":127,"112":[2,193],"113":[2,193],"114":[2,193],"117":[2,193],"119":[2,193],"126":[2,193],"129":[2,193],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"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],"3":[2,194],"30":[2,194],"31":[2,194],"51":[1,114],"59":[2,194],"61":[2,194],"79":[2,194],"81":[2,194],"84":[2,194],"96":[2,194],"101":[2,194],"109":[2,194],"111":127,"112":[2,194],"113":[2,194],"114":[2,194],"117":[2,194],"119":[2,194],"126":[2,194],"129":[2,194],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"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],"164":[2,194]},{"1":[2,195],"3":[2,195],"30":[2,195],"31":[2,195],"51":[1,114],"59":[2,195],"61":[2,195],"79":[2,195],"81":[2,195],"84":[2,195],"96":[2,195],"101":[2,195],"109":[2,195],"111":127,"112":[2,195],"113":[2,195],"114":[2,195],"117":[2,195],"119":[2,195],"126":[2,195],"129":[2,195],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[2,195],"143":[2,195],"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],"3":[2,196],"30":[2,196],"31":[2,196],"51":[1,114],"59":[2,196],"61":[2,196],"79":[2,196],"81":[2,196],"84":[2,196],"96":[2,196],"101":[2,196],"109":[2,196],"111":127,"112":[2,196],"113":[2,196],"114":[2,196],"117":[2,196],"119":[2,196],"126":[2,196],"129":[2,196],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"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],"162":[2,196],"163":[2,196],"164":[2,196]},{"1":[2,197],"3":[2,197],"30":[2,197],"31":[2,197],"51":[1,114],"59":[2,197],"61":[2,197],"79":[2,197],"81":[2,197],"84":[2,197],"96":[2,197],"101":[2,197],"109":[2,197],"111":127,"112":[2,197],"113":[2,197],"114":[2,197],"117":[2,197],"119":[2,197],"126":[2,197],"129":[2,197],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"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],"162":[2,197],"163":[2,197],"164":[2,197]},{"1":[2,198],"3":[2,198],"30":[2,198],"31":[2,198],"51":[1,114],"59":[2,198],"61":[2,198],"79":[2,198],"81":[2,198],"84":[2,198],"96":[2,198],"101":[2,198],"109":[2,198],"111":127,"112":[2,198],"113":[2,198],"114":[2,198],"117":[2,198],"119":[2,198],"126":[2,198],"129":[2,198],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[2,198],"146":[2,198],"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],"3":[2,199],"30":[2,199],"31":[2,199],"51":[1,114],"59":[2,199],"61":[2,199],"79":[2,199],"81":[2,199],"84":[2,199],"96":[2,199],"101":[2,199],"109":[2,199],"111":127,"112":[2,199],"113":[2,199],"114":[2,199],"117":[2,199],"119":[2,199],"126":[2,199],"129":[2,199],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"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],"3":[2,200],"30":[2,200],"31":[2,200],"51":[1,114],"59":[2,200],"61":[2,200],"79":[2,200],"81":[2,200],"84":[2,200],"96":[2,200],"101":[2,200],"109":[2,200],"111":127,"112":[2,200],"113":[2,200],"114":[2,200],"117":[2,200],"119":[2,200],"126":[2,200],"129":[2,200],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"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],"3":[2,201],"30":[2,201],"31":[2,201],"51":[1,114],"59":[2,201],"61":[2,201],"79":[2,201],"81":[2,201],"84":[2,201],"96":[2,201],"101":[2,201],"109":[2,201],"111":127,"112":[2,201],"113":[2,201],"114":[2,201],"117":[2,201],"119":[2,201],"126":[2,201],"129":[2,201],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"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],"164":[2,201]},{"1":[2,202],"3":[2,202],"30":[2,202],"31":[2,202],"51":[1,114],"59":[2,202],"61":[2,202],"79":[2,202],"81":[2,202],"84":[2,202],"96":[2,202],"101":[2,202],"109":[2,202],"111":127,"112":[2,202],"113":[2,202],"114":[2,202],"117":[2,202],"119":[2,202],"126":[2,202],"129":[2,202],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"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],"162":[2,202],"163":[2,202],"164":[2,202]},{"1":[2,203],"3":[2,203],"30":[2,203],"31":[2,203],"51":[1,114],"59":[2,203],"61":[2,203],"79":[2,203],"81":[2,203],"84":[2,203],"96":[2,203],"101":[2,203],"109":[2,203],"111":127,"112":[2,203],"113":[2,203],"114":[2,203],"117":[2,203],"119":[2,203],"126":[2,203],"129":[2,203],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[2,203],"153":[2,203],"154":[2,203],"155":[2,203],"156":[2,203],"157":[2,203],"158":[2,203],"159":[2,203],"160":[2,203],"161":[2,203],"162":[2,203],"163":[2,203],"164":[1,123]},{"1":[2,204],"3":[2,204],"30":[2,204],"31":[2,204],"51":[1,114],"59":[2,204],"61":[2,204],"79":[2,204],"81":[2,204],"84":[2,204],"96":[2,204],"101":[2,204],"109":[2,204],"111":127,"112":[2,204],"113":[2,204],"114":[2,204],"117":[2,204],"119":[2,204],"126":[2,204],"129":[2,204],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[2,204],"153":[2,204],"154":[2,204],"155":[2,204],"156":[2,204],"157":[2,204],"158":[2,204],"159":[2,204],"160":[2,204],"161":[2,204],"162":[2,204],"163":[2,204],"164":[1,123]},{"1":[2,205],"3":[2,205],"30":[2,205],"31":[2,205],"51":[1,114],"59":[2,205],"61":[2,205],"79":[2,205],"81":[2,205],"84":[2,205],"96":[2,205],"101":[2,205],"109":[2,205],"111":127,"112":[2,205],"113":[2,205],"114":[2,205],"117":[2,205],"119":[2,205],"126":[2,205],"129":[2,205],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"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],"3":[2,206],"30":[2,206],"31":[2,206],"51":[1,114],"59":[2,206],"61":[2,206],"79":[2,206],"81":[2,206],"84":[2,206],"96":[2,206],"101":[2,206],"109":[2,206],"111":127,"112":[2,206],"113":[2,206],"114":[2,206],"117":[2,206],"119":[2,206],"126":[2,206],"129":[2,206],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"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],"164":[1,123]},{"1":[2,207],"3":[2,207],"30":[2,207],"31":[2,207],"51":[2,207],"59":[2,207],"61":[2,207],"79":[2,207],"81":[2,207],"84":[2,207],"96":[2,207],"101":[2,207],"109":[2,207],"111":127,"112":[2,207],"113":[2,207],"114":[2,207],"117":[2,207],"119":[2,207],"126":[2,207],"129":[2,207],"132":[2,207],"133":[2,207],"135":[2,207],"136":[2,207],"139":[2,207],"140":[2,207],"141":[2,207],"142":[2,207],"143":[2,207],"144":[2,207],"145":[2,207],"146":[2,207],"147":[2,207],"148":[2,207],"149":[2,207],"150":[2,207],"151":[2,207],"152":[2,207],"153":[2,207],"154":[2,207],"155":[2,207],"156":[2,207],"157":[2,207],"158":[2,207],"159":[2,207],"160":[2,207],"161":[2,207],"162":[2,207],"163":[2,207],"164":[2,207]},{"1":[2,208],"3":[2,208],"30":[2,208],"31":[2,208],"51":[1,114],"59":[2,208],"61":[2,208],"79":[2,208],"81":[2,208],"84":[2,208],"96":[2,208],"101":[2,208],"109":[2,208],"111":127,"112":[2,208],"113":[2,208],"114":[2,208],"117":[2,208],"119":[2,208],"126":[2,208],"129":[2,208],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,209],"30":[2,209],"31":[2,209],"51":[1,114],"59":[2,209],"61":[2,209],"79":[2,209],"81":[2,209],"84":[2,209],"96":[2,209],"101":[2,209],"109":[2,209],"111":127,"112":[2,209],"113":[2,209],"114":[2,209],"117":[2,209],"119":[2,209],"126":[2,209],"129":[2,209],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,210],"30":[2,210],"31":[2,210],"51":[1,114],"59":[2,210],"61":[2,210],"79":[2,210],"81":[2,210],"84":[2,210],"96":[2,210],"101":[2,210],"109":[2,210],"111":127,"112":[2,210],"113":[2,210],"114":[2,210],"117":[2,210],"119":[2,210],"126":[2,210],"129":[2,210],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,211],"30":[2,211],"31":[2,211],"51":[1,114],"59":[2,211],"61":[2,211],"79":[2,211],"81":[2,211],"84":[2,211],"96":[2,211],"101":[2,211],"109":[2,211],"111":127,"112":[2,211],"113":[2,211],"114":[2,211],"117":[2,211],"119":[2,211],"126":[2,211],"129":[2,211],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,212],"30":[2,212],"31":[2,212],"51":[1,114],"59":[2,212],"61":[2,212],"79":[2,212],"81":[2,212],"84":[2,212],"96":[2,212],"101":[2,212],"109":[2,212],"111":127,"112":[2,212],"113":[2,212],"114":[2,212],"117":[2,212],"119":[2,212],"126":[2,212],"129":[2,212],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,213],"30":[2,213],"31":[2,213],"51":[1,114],"59":[2,213],"61":[2,213],"79":[2,213],"81":[2,213],"84":[2,213],"96":[2,213],"101":[2,213],"109":[2,213],"111":127,"112":[2,213],"113":[2,213],"114":[2,213],"117":[2,213],"119":[2,213],"126":[2,213],"129":[2,213],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,214],"30":[2,214],"31":[2,214],"51":[1,114],"59":[2,214],"61":[2,214],"79":[2,214],"81":[2,214],"84":[2,214],"96":[2,214],"101":[2,214],"109":[2,214],"111":127,"112":[2,214],"113":[2,214],"114":[2,214],"117":[2,214],"119":[2,214],"126":[2,214],"129":[2,214],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,215],"3":[2,215],"30":[2,215],"31":[2,215],"51":[1,114],"59":[2,215],"61":[2,215],"79":[2,215],"81":[2,215],"84":[2,215],"96":[2,215],"101":[2,215],"109":[2,215],"111":127,"112":[2,215],"113":[2,215],"114":[2,215],"117":[2,215],"119":[2,215],"126":[2,215],"129":[2,215],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,216],"30":[2,216],"31":[2,216],"51":[1,114],"59":[2,216],"61":[2,216],"79":[2,216],"81":[2,216],"84":[2,216],"96":[2,216],"101":[2,216],"109":[2,216],"111":127,"112":[2,216],"113":[2,216],"114":[2,216],"117":[2,216],"119":[2,216],"126":[2,216],"129":[2,216],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[2,216],"153":[2,216],"154":[2,216],"155":[2,216],"156":[2,216],"157":[2,216],"158":[2,216],"159":[2,216],"160":[2,216],"161":[2,216],"162":[2,216],"163":[2,216],"164":[1,123]},{"1":[2,217],"3":[2,217],"30":[2,217],"31":[2,217],"51":[1,114],"59":[2,217],"61":[1,129],"79":[2,217],"81":[2,217],"84":[2,217],"96":[2,217],"101":[2,217],"109":[2,217],"111":127,"112":[2,217],"113":[2,217],"114":[2,217],"117":[1,124],"119":[2,217],"126":[2,217],"129":[2,217],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,174],"30":[2,174],"31":[2,174],"51":[1,114],"59":[2,174],"61":[1,129],"79":[2,174],"81":[2,174],"84":[2,174],"96":[2,174],"101":[2,174],"109":[2,174],"111":127,"112":[1,80],"113":[2,174],"114":[1,128],"117":[1,124],"119":[2,174],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,176],"3":[2,176],"30":[2,176],"31":[2,176],"51":[1,114],"59":[2,176],"61":[1,129],"79":[2,176],"81":[2,176],"84":[2,176],"96":[2,176],"101":[2,176],"109":[2,176],"111":127,"112":[1,80],"113":[2,176],"114":[1,128],"117":[1,124],"119":[2,176],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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":277,"117":[1,250],"118":[1,251]},{"61":[1,278]},{"1":[2,173],"3":[2,173],"30":[2,173],"31":[2,173],"51":[1,114],"59":[2,173],"61":[1,129],"79":[2,173],"81":[2,173],"84":[2,173],"96":[2,173],"101":[2,173],"109":[2,173],"111":127,"112":[1,80],"113":[2,173],"114":[1,128],"117":[1,124],"119":[2,173],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,175],"3":[2,175],"30":[2,175],"31":[2,175],"51":[1,114],"59":[2,175],"61":[1,129],"79":[2,175],"81":[2,175],"84":[2,175],"96":[2,175],"101":[2,175],"109":[2,175],"111":127,"112":[1,80],"113":[2,175],"114":[1,128],"117":[1,124],"119":[2,175],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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":279,"117":[1,250],"118":[1,251]},{"1":[2,108],"3":[2,108],"30":[2,108],"31":[2,108],"51":[2,108],"59":[2,108],"61":[2,108],"79":[2,108],"81":[2,108],"84":[2,108],"96":[2,108],"101":[2,108],"109":[2,108],"112":[2,108],"113":[2,108],"114":[2,108],"117":[2,108],"119":[2,108],"126":[2,108],"129":[2,108],"132":[2,108],"133":[2,108],"135":[2,108],"136":[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]},{"3":[1,261],"31":[1,262],"59":[1,281],"96":[1,280]},{"3":[2,126],"31":[2,126],"51":[1,114],"59":[2,126],"61":[1,129],"96":[2,126],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,77],"3":[2,77],"30":[2,77],"31":[2,77],"47":[2,77],"51":[2,77],"59":[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],"87":[2,77],"92":[2,77],"94":[2,77],"96":[2,77],"101":[2,77],"109":[2,77],"112":[2,77],"113":[2,77],"114":[2,77],"117":[2,77],"119":[2,77],"126":[2,77],"129":[2,77],"132":[2,77],"133":[2,77],"135":[2,77],"136":[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],"3":[2,78],"30":[2,78],"31":[2,78],"47":[2,78],"51":[2,78],"59":[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],"87":[2,78],"92":[2,78],"94":[2,78],"96":[2,78],"101":[2,78],"109":[2,78],"112":[2,78],"113":[2,78],"114":[2,78],"117":[2,78],"119":[2,78],"126":[2,78],"129":[2,78],"132":[2,78],"133":[2,78],"135":[2,78],"136":[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,80],"3":[2,80],"30":[2,80],"31":[2,80],"47":[2,80],"51":[2,80],"59":[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],"87":[2,80],"92":[2,80],"94":[2,80],"96":[2,80],"101":[2,80],"109":[2,80],"112":[2,80],"113":[2,80],"114":[2,80],"117":[2,80],"119":[2,80],"126":[2,80],"129":[2,80],"132":[2,80],"133":[2,80],"135":[2,80],"136":[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]},{"51":[1,114],"61":[1,283],"79":[1,282],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"51":[1,114],"61":[1,129],"81":[1,284],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,46],"3":[2,46],"30":[2,46],"31":[2,46],"51":[1,114],"59":[2,46],"61":[1,129],"79":[2,46],"81":[2,46],"84":[2,46],"96":[2,46],"101":[2,46],"109":[2,46],"111":127,"112":[2,46],"113":[2,46],"114":[1,128],"117":[1,124],"119":[2,46],"126":[2,46],"129":[2,46],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"55":285,"56":[1,77],"57":[1,78]},{"58":286,"60":[1,155]},{"61":[1,287]},{"1":[2,136],"3":[2,136],"30":[2,136],"31":[2,136],"51":[2,136],"59":[2,136],"61":[2,136],"79":[2,136],"81":[2,136],"84":[2,136],"96":[2,136],"101":[2,136],"105":[1,288],"109":[2,136],"112":[2,136],"113":[2,136],"114":[2,136],"117":[2,136],"119":[2,136],"126":[2,136],"129":[2,136],"132":[2,136],"133":[2,136],"135":[2,136],"136":[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],"162":[2,136],"163":[2,136],"164":[2,136]},{"3":[1,157],"5":289,"30":[1,6]},{"32":290,"33":[1,87]},{"3":[1,157],"5":291,"30":[1,6]},{"7":292,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":293,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"32":294,"33":[1,87]},{"28":298,"50":[1,57],"121":295,"123":296,"124":[1,297]},{"1":[2,109],"3":[2,109],"30":[2,109],"31":[2,109],"51":[2,109],"59":[2,109],"61":[2,109],"63":136,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"79":[2,109],"80":[1,145],"81":[2,109],"84":[2,109],"93":135,"94":[1,137],"96":[2,109],"101":[2,109],"109":[2,109],"112":[2,109],"113":[2,109],"114":[2,109],"117":[2,109],"119":[2,109],"126":[2,109],"129":[2,109],"132":[2,109],"133":[2,109],"135":[2,109],"136":[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]},{"13":299,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":151,"62":152,"64":175,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"98":[1,74],"99":[1,75],"100":[1,73],"108":[1,72]},{"3":[2,102],"28":193,"31":[2,102],"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":302,"50":[1,57],"65":303,"88":300,"89":301,"99":[1,304]},{"1":[2,141],"3":[2,141],"30":[2,141],"31":[2,141],"51":[2,141],"59":[2,141],"61":[2,141],"72":[2,141],"73":[2,141],"74":[2,141],"75":[2,141],"78":[2,141],"79":[2,141],"80":[2,141],"81":[2,141],"84":[2,141],"92":[2,141],"94":[2,141],"96":[2,141],"101":[2,141],"109":[2,141],"112":[2,141],"113":[2,141],"114":[2,141],"117":[2,141],"119":[2,141],"126":[2,141],"129":[2,141],"132":[2,141],"133":[2,141],"135":[2,141],"136":[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]},{"61":[1,305]},{"1":[2,123],"3":[2,123],"30":[2,123],"31":[2,123],"47":[2,123],"51":[2,123],"59":[2,123],"61":[2,123],"72":[2,123],"73":[2,123],"74":[2,123],"75":[2,123],"78":[2,123],"79":[2,123],"80":[2,123],"81":[2,123],"84":[2,123],"92":[2,123],"94":[2,123],"96":[2,123],"101":[2,123],"109":[2,123],"112":[2,123],"113":[2,123],"114":[2,123],"117":[2,123],"119":[2,123],"126":[2,123],"129":[2,123],"132":[2,123],"133":[2,123],"135":[2,123],"136":[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],"162":[2,123],"163":[2,123],"164":[2,123]},{"3":[1,308],"7":307,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,309],"31":[1,310],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"101":[1,306],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":311,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"3":[2,132],"31":[2,132],"59":[2,132],"96":[2,132],"101":[2,132]},{"3":[2,127],"31":[2,127],"51":[1,114],"59":[2,127],"61":[1,129],"96":[2,127],"101":[2,127],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"3":[1,261],"31":[1,262],"59":[1,313],"96":[1,312]},{"1":[2,170],"3":[2,170],"30":[2,170],"31":[2,170],"51":[2,170],"59":[2,170],"61":[2,170],"79":[2,170],"81":[2,170],"84":[2,170],"96":[2,170],"101":[2,170],"109":[2,170],"112":[2,170],"113":[2,170],"114":[2,170],"117":[2,170],"119":[2,170],"126":[2,170],"129":[2,170],"132":[2,170],"133":[2,170],"135":[2,170],"136":[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]},{"7":314,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":315,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,85],"3":[2,85],"30":[2,85],"31":[2,85],"47":[2,85],"51":[2,85],"59":[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],"92":[2,85],"94":[2,85],"96":[2,85],"101":[2,85],"109":[2,85],"112":[2,85],"113":[2,85],"114":[2,85],"117":[2,85],"119":[2,85],"126":[2,85],"129":[2,85],"132":[2,85],"133":[2,85],"135":[2,85],"136":[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]},{"3":[1,318],"28":193,"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":317,"50":[1,57],"84":[1,316]},{"28":193,"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":319,"50":[1,57]},{"1":[2,86],"3":[2,86],"30":[2,86],"31":[2,86],"47":[2,86],"51":[2,86],"59":[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],"92":[2,86],"94":[2,86],"96":[2,86],"101":[2,86],"109":[2,86],"112":[2,86],"113":[2,86],"114":[2,86],"117":[2,86],"119":[2,86],"126":[2,86],"129":[2,86],"132":[2,86],"133":[2,86],"135":[2,86],"136":[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]},{"84":[1,320]},{"3":[1,270],"31":[1,321],"59":[1,322]},{"7":323,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":324,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,167],"3":[2,167],"30":[2,167],"31":[2,167],"51":[2,167],"59":[2,167],"61":[2,167],"79":[2,167],"81":[2,167],"84":[2,167],"96":[2,167],"101":[2,167],"109":[2,167],"112":[2,167],"113":[2,167],"114":[2,167],"117":[2,167],"119":[2,167],"122":[2,167],"126":[2,167],"129":[2,167],"132":[2,167],"133":[2,167],"135":[2,167],"136":[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]},{"1":[2,149],"3":[2,149],"30":[2,149],"31":[2,149],"51":[2,149],"59":[2,149],"61":[2,149],"79":[2,149],"81":[2,149],"84":[2,149],"96":[2,149],"101":[2,149],"109":[2,149],"112":[2,149],"113":[2,149],"114":[2,149],"117":[2,149],"119":[2,149],"126":[2,149],"129":[2,149],"132":[2,149],"133":[2,149],"135":[2,149],"136":[2,149],"139":[2,149],"140":[2,149],"141":[2,149],"142":[2,149],"143":[2,149],"144":[2,149],"145":[2,149],"146":[2,149],"147":[2,149],"148":[2,149],"149":[2,149],"150":[2,149],"151":[2,149],"152":[2,149],"153":[2,149],"154":[2,149],"155":[2,149],"156":[2,149],"157":[2,149],"158":[2,149],"159":[2,149],"160":[2,149],"161":[2,149],"162":[2,149],"163":[2,149],"164":[2,149]},{"1":[2,63],"3":[2,63],"30":[2,63],"31":[2,63],"51":[2,63],"59":[2,63],"61":[2,63],"79":[2,63],"81":[2,63],"84":[2,63],"96":[2,63],"101":[2,63],"109":[2,63],"112":[2,63],"113":[2,63],"114":[2,63],"117":[2,63],"119":[2,63],"126":[2,63],"129":[2,63],"132":[2,63],"133":[2,63],"135":[2,63],"136":[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],"162":[2,63],"163":[2,63],"164":[2,63]},{"1":[2,148],"3":[2,148],"30":[2,148],"31":[2,148],"51":[2,148],"59":[2,148],"61":[2,148],"79":[2,148],"81":[2,148],"84":[2,148],"96":[2,148],"101":[2,148],"109":[2,148],"112":[2,148],"113":[2,148],"114":[2,148],"117":[2,148],"119":[2,148],"126":[2,148],"129":[2,148],"132":[2,148],"133":[2,148],"135":[2,148],"136":[2,148],"139":[2,148],"140":[2,148],"141":[2,148],"142":[2,148],"143":[2,148],"144":[2,148],"145":[2,148],"146":[2,148],"147":[2,148],"148":[2,148],"149":[2,148],"150":[2,148],"151":[2,148],"152":[2,148],"153":[2,148],"154":[2,148],"155":[2,148],"156":[2,148],"157":[2,148],"158":[2,148],"159":[2,148],"160":[2,148],"161":[2,148],"162":[2,148],"163":[2,148],"164":[2,148]},{"1":[2,112],"3":[2,112],"30":[2,112],"31":[2,112],"51":[2,112],"59":[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],"94":[2,112],"96":[2,112],"101":[2,112],"109":[2,112],"112":[2,112],"113":[2,112],"114":[2,112],"117":[2,112],"119":[2,112],"126":[2,112],"129":[2,112],"132":[2,112],"133":[2,112],"135":[2,112],"136":[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]},{"3":[1,308],"7":307,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,309],"31":[1,310],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"96":[1,325],"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,83],"3":[2,83],"30":[2,83],"31":[2,83],"47":[2,83],"51":[2,83],"59":[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],"87":[2,83],"92":[2,83],"94":[2,83],"96":[2,83],"101":[2,83],"109":[2,83],"112":[2,83],"113":[2,83],"114":[2,83],"117":[2,83],"119":[2,83],"126":[2,83],"129":[2,83],"132":[2,83],"133":[2,83],"135":[2,83],"136":[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]},{"61":[1,326]},{"1":[2,84],"3":[2,84],"30":[2,84],"31":[2,84],"47":[2,84],"51":[2,84],"59":[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],"87":[2,84],"92":[2,84],"94":[2,84],"96":[2,84],"101":[2,84],"109":[2,84],"112":[2,84],"113":[2,84],"114":[2,84],"117":[2,84],"119":[2,84],"126":[2,84],"129":[2,84],"132":[2,84],"133":[2,84],"135":[2,84],"136":[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]},{"3":[1,157],"5":327,"30":[1,6]},{"54":[2,60],"59":[2,60],"61":[1,245]},{"61":[1,328]},{"3":[1,157],"5":329,"30":[1,6]},{"1":[2,137],"3":[2,137],"30":[2,137],"31":[2,137],"51":[2,137],"59":[2,137],"61":[2,137],"79":[2,137],"81":[2,137],"84":[2,137],"96":[2,137],"101":[2,137],"109":[2,137],"112":[2,137],"113":[2,137],"114":[2,137],"117":[2,137],"119":[2,137],"126":[2,137],"129":[2,137],"132":[2,137],"133":[2,137],"135":[2,137],"136":[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]},{"3":[1,157],"5":330,"30":[1,6]},{"1":[2,150],"3":[2,150],"30":[2,150],"31":[2,150],"51":[2,150],"59":[2,150],"61":[2,150],"79":[2,150],"81":[2,150],"84":[2,150],"96":[2,150],"101":[2,150],"109":[2,150],"112":[2,150],"113":[2,150],"114":[2,150],"117":[2,150],"119":[2,150],"126":[2,150],"129":[2,150],"132":[2,150],"133":[2,150],"135":[2,150],"136":[2,150],"139":[2,150],"140":[2,150],"141":[2,150],"142":[2,150],"143":[2,150],"144":[2,150],"145":[2,150],"146":[2,150],"147":[2,150],"148":[2,150],"149":[2,150],"150":[2,150],"151":[2,150],"152":[2,150],"153":[2,150],"154":[2,150],"155":[2,150],"156":[2,150],"157":[2,150],"158":[2,150],"159":[2,150],"160":[2,150],"161":[2,150],"162":[2,150],"163":[2,150],"164":[2,150]},{"1":[2,153],"3":[2,153],"30":[2,153],"31":[2,153],"51":[1,114],"59":[2,153],"61":[1,129],"79":[2,153],"81":[2,153],"84":[2,153],"96":[2,153],"101":[2,153],"109":[2,153],"111":127,"112":[2,153],"113":[1,331],"114":[2,153],"117":[1,124],"119":[1,332],"126":[2,153],"129":[2,153],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,154],"30":[2,154],"31":[2,154],"51":[1,114],"59":[2,154],"61":[1,129],"79":[2,154],"81":[2,154],"84":[2,154],"96":[2,154],"101":[2,154],"109":[2,154],"111":127,"112":[2,154],"113":[1,333],"114":[2,154],"117":[1,124],"119":[2,154],"126":[2,154],"129":[2,154],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"117":[2,152],"118":[2,152]},{"28":298,"31":[1,334],"50":[1,57],"122":[1,335],"123":336,"124":[1,297]},{"31":[2,162],"50":[2,162],"122":[2,162],"124":[2,162]},{"7":338,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"102":337,"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"3":[1,339]},{"1":[2,97],"3":[2,97],"30":[1,340],"31":[2,97],"51":[2,97],"59":[2,97],"61":[2,97],"63":136,"72":[1,138],"73":[1,139],"74":[1,140],"75":[1,141],"76":142,"77":143,"78":[1,144],"79":[2,97],"80":[1,145],"81":[2,97],"84":[2,97],"93":135,"94":[1,137],"96":[2,97],"101":[2,97],"109":[2,97],"112":[2,97],"113":[2,97],"114":[2,97],"117":[2,97],"119":[2,97],"126":[2,97],"129":[2,97],"132":[2,97],"133":[2,97],"135":[2,97],"136":[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]},{"3":[1,342],"31":[1,341]},{"3":[2,103],"31":[2,103]},{"3":[2,100],"31":[2,100]},{"47":[1,343]},{"32":182,"33":[1,87]},{"7":344,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"61":[1,345],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,124],"3":[2,124],"30":[2,124],"31":[2,124],"47":[2,124],"51":[2,124],"59":[2,124],"61":[2,124],"72":[2,124],"73":[2,124],"74":[2,124],"75":[2,124],"78":[2,124],"79":[2,124],"80":[2,124],"81":[2,124],"84":[2,124],"92":[2,124],"94":[2,124],"96":[2,124],"101":[2,124],"109":[2,124],"112":[2,124],"113":[2,124],"114":[2,124],"117":[2,124],"119":[2,124],"126":[2,124],"129":[2,124],"132":[2,124],"133":[2,124],"135":[2,124],"136":[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],"162":[2,124],"163":[2,124],"164":[2,124]},{"3":[2,128],"31":[2,128],"51":[1,114],"59":[2,128],"61":[1,129],"96":[2,128],"101":[2,128],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"7":346,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":347,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"3":[2,133],"31":[2,133],"59":[2,133],"96":[2,133],"101":[2,133]},{"3":[2,129],"31":[2,129],"51":[1,114],"59":[2,129],"61":[1,129],"96":[2,129],"101":[2,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,114],"3":[2,114],"30":[2,114],"31":[2,114],"51":[2,114],"59":[2,114],"61":[2,114],"79":[2,114],"81":[2,114],"84":[2,114],"96":[2,114],"101":[2,114],"109":[2,114],"112":[2,114],"113":[2,114],"114":[2,114],"117":[2,114],"119":[2,114],"126":[2,114],"129":[2,114],"132":[2,114],"133":[2,114],"135":[2,114],"136":[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]},{"3":[1,308],"7":307,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"30":[1,309],"31":[1,310],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"96":[1,348],"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"3":[1,157],"5":349,"30":[1,6],"51":[1,114],"61":[1,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,144],"3":[2,144],"30":[2,144],"31":[2,144],"51":[1,114],"59":[2,144],"61":[1,129],"79":[2,144],"81":[2,144],"84":[2,144],"96":[2,144],"101":[2,144],"109":[2,144],"111":127,"112":[1,80],"113":[2,144],"114":[1,128],"117":[1,124],"119":[2,144],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,87],"3":[2,87],"30":[2,87],"31":[2,87],"47":[2,87],"51":[2,87],"59":[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],"92":[2,87],"94":[2,87],"96":[2,87],"101":[2,87],"109":[2,87],"112":[2,87],"113":[2,87],"114":[2,87],"117":[2,87],"119":[2,87],"126":[2,87],"129":[2,87],"132":[2,87],"133":[2,87],"135":[2,87],"136":[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]},{"3":[2,91],"31":[2,91],"59":[2,91],"84":[2,91]},{"28":193,"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":350,"50":[1,57]},{"3":[2,92],"31":[2,92],"59":[2,92],"84":[2,92]},{"1":[2,88],"3":[2,88],"30":[2,88],"31":[2,88],"47":[2,88],"51":[2,88],"59":[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],"96":[2,88],"101":[2,88],"109":[2,88],"112":[2,88],"113":[2,88],"114":[2,88],"117":[2,88],"119":[2,88],"126":[2,88],"129":[2,88],"132":[2,88],"133":[2,88],"135":[2,88],"136":[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]},{"59":[2,94],"84":[2,94]},{"3":[1,318],"28":193,"31":[1,351],"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":317,"50":[1,57]},{"3":[2,47],"31":[2,47],"51":[1,114],"59":[2,47],"61":[1,129],"84":[2,47],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"3":[2,48],"31":[2,48],"51":[1,114],"59":[2,48],"61":[1,129],"84":[2,48],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,113],"3":[2,113],"30":[2,113],"31":[2,113],"51":[2,113],"59":[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],"94":[2,113],"96":[2,113],"101":[2,113],"109":[2,113],"112":[2,113],"113":[2,113],"114":[2,113],"117":[2,113],"119":[2,113],"126":[2,113],"129":[2,113],"132":[2,113],"133":[2,113],"135":[2,113],"136":[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]},{"7":352,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"61":[1,353],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,54],"3":[2,54],"30":[2,54],"31":[2,54],"51":[2,54],"59":[2,54],"61":[2,54],"79":[2,54],"81":[2,54],"84":[2,54],"96":[2,54],"101":[2,54],"109":[2,54],"112":[2,54],"113":[2,54],"114":[2,54],"117":[2,54],"119":[2,54],"126":[2,54],"129":[2,54],"132":[2,54],"133":[2,54],"135":[2,54],"136":[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]},{"54":[2,62],"59":[2,62],"61":[2,62]},{"1":[2,138],"3":[2,138],"30":[2,138],"31":[2,138],"51":[2,138],"59":[2,138],"61":[2,138],"79":[2,138],"81":[2,138],"84":[2,138],"96":[2,138],"101":[2,138],"109":[2,138],"112":[2,138],"113":[2,138],"114":[2,138],"117":[2,138],"119":[2,138],"126":[2,138],"129":[2,138],"132":[2,138],"133":[2,138],"135":[2,138],"136":[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]},{"1":[2,139],"3":[2,139],"30":[2,139],"31":[2,139],"51":[2,139],"59":[2,139],"61":[2,139],"79":[2,139],"81":[2,139],"84":[2,139],"96":[2,139],"101":[2,139],"105":[2,139],"109":[2,139],"112":[2,139],"113":[2,139],"114":[2,139],"117":[2,139],"119":[2,139],"126":[2,139],"129":[2,139],"132":[2,139],"133":[2,139],"135":[2,139],"136":[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]},{"7":354,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":355,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":356,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,160],"3":[2,160],"30":[2,160],"31":[2,160],"51":[2,160],"59":[2,160],"61":[2,160],"79":[2,160],"81":[2,160],"84":[2,160],"96":[2,160],"101":[2,160],"109":[2,160],"112":[2,160],"113":[2,160],"114":[2,160],"117":[2,160],"119":[2,160],"126":[2,160],"129":[2,160],"132":[2,160],"133":[2,160],"135":[2,160],"136":[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]},{"3":[1,157],"5":357,"30":[1,6]},{"31":[2,163],"50":[2,163],"122":[2,163],"124":[2,163]},{"3":[1,157],"5":358,"30":[1,6],"59":[1,359]},{"3":[2,134],"30":[2,134],"51":[1,114],"59":[2,134],"61":[1,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"28":298,"50":[1,57],"123":360,"124":[1,297]},{"3":[2,102],"28":193,"31":[2,102],"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":302,"50":[1,57],"65":303,"88":361,"89":301,"99":[1,304]},{"1":[2,98],"3":[2,98],"30":[2,98],"31":[2,98],"51":[2,98],"59":[2,98],"61":[2,98],"79":[2,98],"81":[2,98],"84":[2,98],"96":[2,98],"101":[2,98],"109":[2,98],"112":[2,98],"113":[2,98],"114":[2,98],"117":[2,98],"119":[2,98],"126":[2,98],"129":[2,98],"132":[2,98],"133":[2,98],"135":[2,98],"136":[2,98],"139":[2,98],"140":[2,98],"141":[2,98],"142":[2,98],"143":[2,98],"144":[2,98],"145":[2,98],"146":[2,98],"147":[2,98],"148":[2,98],"149":[2,98],"150":[2,98],"151":[2,98],"152":[2,98],"153":[2,98],"154":[2,98],"155":[2,98],"156":[2,98],"157":[2,98],"158":[2,98],"159":[2,98],"160":[2,98],"161":[2,98],"162":[2,98],"163":[2,98],"164":[2,98]},{"28":193,"32":191,"33":[1,87],"34":192,"35":[1,84],"36":[1,85],"48":302,"50":[1,57],"65":303,"89":362,"99":[1,304]},{"7":363,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"51":[1,114],"61":[1,129],"101":[1,364],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"3":[2,63],"7":365,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"31":[2,63],"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"51":[2,63],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"59":[2,63],"61":[2,63],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"101":[2,63],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[2,63],"114":[2,63],"117":[2,63],"120":[1,54],"125":79,"126":[2,63],"128":50,"129":[2,63],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49],"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],"162":[2,63],"163":[2,63],"164":[2,63]},{"3":[2,130],"31":[2,130],"51":[1,114],"59":[2,130],"61":[1,129],"96":[2,130],"101":[2,130],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"3":[2,131],"31":[2,131],"51":[1,114],"59":[2,131],"61":[1,129],"96":[2,131],"101":[2,131],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,115],"30":[2,115],"31":[2,115],"51":[2,115],"59":[2,115],"61":[2,115],"79":[2,115],"81":[2,115],"84":[2,115],"96":[2,115],"101":[2,115],"109":[2,115],"112":[2,115],"113":[2,115],"114":[2,115],"117":[2,115],"119":[2,115],"126":[2,115],"129":[2,115],"132":[2,115],"133":[2,115],"135":[2,115],"136":[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]},{"1":[2,171],"3":[2,171],"30":[2,171],"31":[2,171],"51":[2,171],"59":[2,171],"61":[2,171],"79":[2,171],"81":[2,171],"84":[2,171],"96":[2,171],"101":[2,171],"109":[2,171],"112":[2,171],"113":[2,171],"114":[2,171],"117":[2,171],"119":[2,171],"122":[2,171],"126":[2,171],"129":[2,171],"132":[2,171],"133":[2,171],"135":[2,171],"136":[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],"164":[2,171]},{"3":[2,93],"31":[2,93],"59":[2,93],"84":[2,93]},{"59":[2,95],"84":[2,95]},{"51":[1,114],"61":[1,129],"79":[1,366],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"7":367,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"51":[2,63],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"61":[2,63],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"79":[2,63],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[2,63],"114":[2,63],"117":[2,63],"120":[1,54],"125":79,"126":[2,63],"128":50,"129":[2,63],"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49],"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],"162":[2,63],"163":[2,63],"164":[2,63]},{"1":[2,155],"3":[2,155],"30":[2,155],"31":[2,155],"51":[1,114],"59":[2,155],"61":[1,129],"79":[2,155],"81":[2,155],"84":[2,155],"96":[2,155],"101":[2,155],"109":[2,155],"111":127,"112":[2,155],"113":[2,155],"114":[2,155],"117":[1,124],"119":[1,368],"126":[2,155],"129":[2,155],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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],"3":[2,157],"30":[2,157],"31":[2,157],"51":[1,114],"59":[2,157],"61":[1,129],"79":[2,157],"81":[2,157],"84":[2,157],"96":[2,157],"101":[2,157],"109":[2,157],"111":127,"112":[2,157],"113":[1,369],"114":[2,157],"117":[1,124],"119":[2,157],"126":[2,157],"129":[2,157],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,156],"3":[2,156],"30":[2,156],"31":[2,156],"51":[1,114],"59":[2,156],"61":[1,129],"79":[2,156],"81":[2,156],"84":[2,156],"96":[2,156],"101":[2,156],"109":[2,156],"111":127,"112":[2,156],"113":[2,156],"114":[2,156],"117":[1,124],"119":[2,156],"126":[2,156],"129":[2,156],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"31":[1,370]},{"3":[1,371],"31":[2,164],"50":[2,164],"122":[2,164],"124":[2,164]},{"7":372,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"31":[2,166],"50":[2,166],"122":[2,166],"124":[2,166]},{"3":[1,342],"31":[1,373]},{"3":[2,104],"31":[2,104]},{"3":[2,101],"31":[2,101],"51":[1,114],"61":[1,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,119],"3":[2,119],"30":[2,119],"31":[2,119],"51":[2,119],"59":[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],"96":[2,119],"101":[2,119],"109":[2,119],"112":[2,119],"113":[2,119],"114":[2,119],"117":[2,119],"119":[2,119],"126":[2,119],"129":[2,119],"132":[2,119],"133":[2,119],"135":[2,119],"136":[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]},{"51":[1,114],"61":[1,129],"101":[1,374],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,121],"3":[2,121],"30":[2,121],"31":[2,121],"47":[2,121],"51":[2,121],"59":[2,121],"61":[2,121],"72":[2,121],"73":[2,121],"74":[2,121],"75":[2,121],"78":[2,121],"79":[2,121],"80":[2,121],"81":[2,121],"84":[2,121],"87":[2,121],"92":[2,121],"94":[2,121],"96":[2,121],"101":[2,121],"109":[2,121],"112":[2,121],"113":[2,121],"114":[2,121],"117":[2,121],"119":[2,121],"126":[2,121],"129":[2,121],"132":[2,121],"133":[2,121],"135":[2,121],"136":[2,121],"139":[2,121],"140":[2,121],"141":[2,121],"142":[2,121],"143":[2,121],"144":[2,121],"145":[2,121],"146":[2,121],"147":[2,121],"148":[2,121],"149":[2,121],"150":[2,121],"151":[2,121],"152":[2,121],"153":[2,121],"154":[2,121],"155":[2,121],"156":[2,121],"157":[2,121],"158":[2,121],"159":[2,121],"160":[2,121],"161":[2,121],"162":[2,121],"163":[2,121],"164":[2,121]},{"51":[1,114],"61":[1,129],"79":[1,375],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]},{"7":376,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"7":377,"8":159,"9":26,"10":27,"11":[1,28],"12":[1,29],"13":9,"14":10,"15":11,"16":12,"17":13,"18":14,"19":15,"20":16,"21":17,"22":18,"23":19,"24":20,"25":21,"26":22,"27":23,"28":24,"29":25,"32":81,"33":[1,87],"34":63,"35":[1,84],"36":[1,85],"37":31,"38":[1,64],"39":[1,65],"40":[1,66],"41":[1,67],"42":[1,68],"43":[1,69],"44":[1,70],"45":[1,71],"46":30,"49":[1,59],"50":[1,57],"52":[1,39],"55":40,"56":[1,77],"57":[1,78],"62":55,"64":36,"65":82,"66":61,"67":62,"68":32,"69":33,"70":34,"71":[1,35],"82":[1,83],"86":[1,56],"90":[1,37],"91":38,"97":[1,76],"98":[1,74],"99":[1,75],"100":[1,73],"103":[1,51],"107":[1,60],"108":[1,72],"110":[1,58],"111":52,"112":[1,80],"114":[1,53],"120":[1,54],"125":79,"126":[1,86],"128":50,"130":[1,41],"131":[1,42],"132":[1,43],"133":[1,44],"134":[1,45],"135":[1,46],"136":[1,47],"137":[1,48],"138":[1,49]},{"1":[2,161],"3":[2,161],"30":[2,161],"31":[2,161],"51":[2,161],"59":[2,161],"61":[2,161],"79":[2,161],"81":[2,161],"84":[2,161],"96":[2,161],"101":[2,161],"109":[2,161],"112":[2,161],"113":[2,161],"114":[2,161],"117":[2,161],"119":[2,161],"126":[2,161],"129":[2,161],"132":[2,161],"133":[2,161],"135":[2,161],"136":[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]},{"31":[2,165],"50":[2,165],"122":[2,165],"124":[2,165]},{"3":[2,135],"30":[2,135],"51":[1,114],"59":[2,135],"61":[1,129],"111":127,"112":[1,80],"114":[1,128],"117":[1,124],"126":[1,125],"129":[1,126],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,99],"3":[2,99],"30":[2,99],"31":[2,99],"51":[2,99],"59":[2,99],"61":[2,99],"79":[2,99],"81":[2,99],"84":[2,99],"96":[2,99],"101":[2,99],"109":[2,99],"112":[2,99],"113":[2,99],"114":[2,99],"117":[2,99],"119":[2,99],"126":[2,99],"129":[2,99],"132":[2,99],"133":[2,99],"135":[2,99],"136":[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],"162":[2,99],"163":[2,99],"164":[2,99]},{"1":[2,120],"3":[2,120],"30":[2,120],"31":[2,120],"51":[2,120],"59":[2,120],"61":[2,120],"72":[2,120],"73":[2,120],"74":[2,120],"75":[2,120],"78":[2,120],"79":[2,120],"80":[2,120],"81":[2,120],"84":[2,120],"92":[2,120],"94":[2,120],"96":[2,120],"101":[2,120],"109":[2,120],"112":[2,120],"113":[2,120],"114":[2,120],"117":[2,120],"119":[2,120],"126":[2,120],"129":[2,120],"132":[2,120],"133":[2,120],"135":[2,120],"136":[2,120],"139":[2,120],"140":[2,120],"141":[2,120],"142":[2,120],"143":[2,120],"144":[2,120],"145":[2,120],"146":[2,120],"147":[2,120],"148":[2,120],"149":[2,120],"150":[2,120],"151":[2,120],"152":[2,120],"153":[2,120],"154":[2,120],"155":[2,120],"156":[2,120],"157":[2,120],"158":[2,120],"159":[2,120],"160":[2,120],"161":[2,120],"162":[2,120],"163":[2,120],"164":[2,120]},{"1":[2,122],"3":[2,122],"30":[2,122],"31":[2,122],"47":[2,122],"51":[2,122],"59":[2,122],"61":[2,122],"72":[2,122],"73":[2,122],"74":[2,122],"75":[2,122],"78":[2,122],"79":[2,122],"80":[2,122],"81":[2,122],"84":[2,122],"87":[2,122],"92":[2,122],"94":[2,122],"96":[2,122],"101":[2,122],"109":[2,122],"112":[2,122],"113":[2,122],"114":[2,122],"117":[2,122],"119":[2,122],"126":[2,122],"129":[2,122],"132":[2,122],"133":[2,122],"135":[2,122],"136":[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],"162":[2,122],"163":[2,122],"164":[2,122]},{"1":[2,158],"3":[2,158],"30":[2,158],"31":[2,158],"51":[1,114],"59":[2,158],"61":[1,129],"79":[2,158],"81":[2,158],"84":[2,158],"96":[2,158],"101":[2,158],"109":[2,158],"111":127,"112":[2,158],"113":[2,158],"114":[2,158],"117":[1,124],"119":[2,158],"126":[2,158],"129":[2,158],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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,159],"3":[2,159],"30":[2,159],"31":[2,159],"51":[1,114],"59":[2,159],"61":[1,129],"79":[2,159],"81":[2,159],"84":[2,159],"96":[2,159],"101":[2,159],"109":[2,159],"111":127,"112":[2,159],"113":[2,159],"114":[2,159],"117":[1,124],"119":[2,159],"126":[2,159],"129":[2,159],"132":[1,99],"133":[1,98],"135":[1,93],"136":[1,94],"139":[1,95],"140":[1,96],"141":[1,97],"142":[1,100],"143":[1,101],"144":[1,102],"145":[1,103],"146":[1,104],"147":[1,105],"148":[1,106],"149":[1,107],"150":[1,108],"151":[1,109],"152":[1,110],"153":[1,111],"154":[1,112],"155":[1,113],"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]}],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;this.lexer.setInput(input);this.lexer.yy=this.yy;var parseError=this.yy.parseError=this.yy.parseError||this.parseError;function lex(){var token;token=self.lexer.lex()||1;if(typeof token!=="number"){token=self.symbols_[token]}return token}var symbol,state,action,a,r,yyval={},p,len,ip=0,newState,expected;symbol=lex();while(true){state=stack[stack.length-1];action=table[state]&&table[state][symbol];if(typeof action==="undefined"||!action.length||!action[0]){expected=[];for(p in table[state]){if(this.terminals_[p]&&p!=1){expected.push("'"+this.terminals_[p]+"'")}}if(this.lexer.showPosition){parseError("Parse error on line "+(yylineno+1)+":\n"+this.lexer.showPosition()+"\nExpecting "+expected.join(", "),{text:this.lexer.match,token:this.terminals_[symbol],line:this.lexer.yylineno,expected:expected})}else{parseError("Parse error on line "+(yylineno+1)+": Unexpected '"+this.terminals_[symbol]+"'",{text:this.lexer.match,token:this.terminals_[symbol],line:this.lexer.yylineno,expected:expected})}}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);++ip;yyleng=this.lexer.yyleng;yytext=this.lexer.yytext;yylineno=this.lexer.yylineno;symbol=lex();vstack.push(null);stack.push(a[1]);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){var cwd=require("file").path(require("file").cwd());if(!args[1]){throw new Error("Usage: "+args[0]+" FILE")}var source=cwd.join(args[1]).read({charset:"utf-8"});this.parse(source)};if(require.main===module){exports.main(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 Scope(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.temp_var=this.parent.temp_var}else{Scope.root=this;this.temp_var="_a"}return this};Scope.root=null;Scope.prototype.find=function find(name){if(this.check(name)){return true}this.variables[name]="var";return false};Scope.prototype.any=function any(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 parameter(name){this.variables[name]="param";return this.variables[name]};Scope.prototype.check=function check(name){if(this.variables[name]){return true}return !!(this.parent&&this.parent.check(name))};Scope.prototype.free_variable=function free_variable(){var ordinal;while(this.check(this.temp_var)){ordinal=1+parseInt(this.temp_var.substr(1),36);this.temp_var="_"+ordinal.toString(36).replace(/\d/g,"a")}this.variables[this.temp_var]="var";return this.temp_var};Scope.prototype.assign=function assign(name,value){this.variables[name]={value:value,assigned:true};return this.variables[name]};Scope.prototype.has_declarations=function has_declarations(body){return body===this.expressions&&this.any(function(k,val){return val==="var"})};Scope.prototype.has_assignments=function has_assignments(body){return body===this.expressions&&this.any(function(k,val){return val.assigned})};Scope.prototype.declared_variables=function declared_variables(){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.assigned_variables=function assigned_variables(){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.compiled_declarations=function compiled_declarations(){return this.declared_variables().join(", ")};Scope.prototype.compiled_assignments=function compiled_assignments(){return this.assigned_variables().join(", ")};return Scope}).call(this)})();(function(){var AccessorNode,ArrayNode,AssignNode,BaseNode,CallNode,ClassNode,ClosureNode,CodeNode,CommentNode,CurryNode,ExistenceNode,Expressions,ExtendsNode,ForNode,IDENTIFIER,IfNode,IndexNode,LiteralNode,ObjectNode,OpNode,ParentheticalNode,PushNode,RangeNode,ReturnNode,Scope,SliceNode,SplatNode,TAB,TRAILING_WHITESPACE,ThrowNode,TryNode,UTILITIES,ValueNode,WhileNode,compact,del,flatten,helpers,literal,merge,statement,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},__slice=Array.prototype.slice,__bind=function(func,obj,args){return function(){return func.apply(obj||{},args?args.concat(__slice.call(arguments,0)):arguments)}};if((typeof process!=="undefined"&&process!==null)){Scope=require("./scope").Scope;helpers=require("./helpers").helpers}else{this.exports=this;helpers=this.helpers;Scope=this.Scope}compact=helpers.compact;flatten=helpers.flatten;merge=helpers.merge;del=helpers.del;statement=function statement(klass,only){klass.prototype.is_statement=function is_statement(){return true};if(only){klass.prototype.is_pure_statement=function is_pure_statement(){return true};return klass.prototype.is_pure_statement}};exports.BaseNode=(function(){BaseNode=function BaseNode(){};BaseNode.prototype.compile=function compile(o){var closure,top;this.options=merge(o||{});this.tab=o.indent;if(!(this instanceof ValueNode)){del(this.options,"operation")}top=this.top_sensitive()?this.options.top:del(this.options,"top");closure=this.is_statement()&&!this.is_pure_statement()&&!top&&!this.options.as_statement&&!(this instanceof CommentNode)&&!this.contains_pure_statement();if(closure){return this.compile_closure(this.options)}else{return this.compile_node(this.options)}};BaseNode.prototype.compile_closure=function compile_closure(o){this.tab=o.indent;o.shared_scope=o.scope;return ClosureNode.wrap(this).compile(o)};BaseNode.prototype.compile_reference=function compile_reference(o){var compiled,reference;reference=literal(o.scope.free_variable());compiled=new AssignNode(reference,this);return[compiled,reference]};BaseNode.prototype.idt=function idt(tabs){var idt,num;idt=this.tab||"";num=(tabs||0)+1;while(num-=1){idt+=TAB}return idt};BaseNode.prototype.make_return=function make_return(){return new ReturnNode(this)};BaseNode.prototype.contains=function contains(block){var _a,_b,_c,node;_b=this.children;for(_a=0,_c=_b.length;_a<_c;_a++){node=_b[_a];if(block(node)){return true}if(node.contains&&node.contains(block)){return true}}return false};BaseNode.prototype.contains_type=function contains_type(type){return this instanceof type||this.contains(function(n){return n instanceof type})};BaseNode.prototype.contains_pure_statement=function contains_pure_statement(){return this.is_pure_statement()||this.contains(function(n){return n.is_pure_statement()})};BaseNode.prototype.traverse=function traverse(block){var _a,_b,_c,_d,node;_a=[];_c=this.children;for(_b=0,_d=_c.length;_b<_d;_b++){node=_c[_b];_a.push((function(){block(node);if(node.traverse){return node.traverse(block)}})())}return _a};BaseNode.prototype.toString=function toString(idt){var _a,_b,_c,_d,child;idt=idt||"";return"\n"+idt+this.constructor.name+(function(){_a=[];_c=this.children;for(_b=0,_d=_c.length;_b<_d;_b++){child=_c[_b];_a.push(child.toString(idt+TAB))}return _a}).call(this).join("")};BaseNode.prototype.unwrap=function unwrap(){return this};BaseNode.prototype.children=[];BaseNode.prototype.is_statement=function is_statement(){return false};BaseNode.prototype.is_pure_statement=function is_pure_statement(){return false};BaseNode.prototype.top_sensitive=function top_sensitive(){return false};return BaseNode})();exports.Expressions=(function(){Expressions=function Expressions(nodes){this.children=(this.expressions=compact(flatten(nodes||[])));return this};__extends(Expressions,BaseNode);Expressions.prototype.push=function push(node){this.expressions.push(node);return this};Expressions.prototype.unshift=function unshift(node){this.expressions.unshift(node);return this};Expressions.prototype.unwrap=function unwrap(){if(this.expressions.length===1){return this.expressions[0]}else{return this}};Expressions.prototype.empty=function empty(){return this.expressions.length===0};Expressions.prototype.copy=function copy(){return new Expressions(this.children.slice())};Expressions.prototype.make_return=function make_return(){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}if(!(last.contains_pure_statement())){this.expressions[idx]=last.make_return()}return this};Expressions.prototype.compile=function compile(o){o=o||{};if(o.scope){return Expressions.__superClass__.compile.call(this,o)}else{return this.compile_root(o)}};Expressions.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,node;return(function(){_a=[];_c=this.expressions;for(_b=0,_d=_c.length;_b<_d;_b++){node=_c[_b];_a.push(this.compile_expression(node,merge(o)))}return _a}).call(this).join("\n")};Expressions.prototype.compile_root=function compile_root(o){var code;o.indent=(this.tab=o.no_wrap?"":TAB);o.scope=new Scope(null,this,null);code=o.globals?this.compile_node(o):this.compile_with_declarations(o);code=code.replace(TRAILING_WHITESPACE,"");if(o.no_wrap){return code}else{return"(function(){\n"+code+"\n})();\n"}};Expressions.prototype.compile_with_declarations=function compile_with_declarations(o){var code;code=this.compile_node(o);if(o.scope.has_assignments(this)){code=(""+(this.tab)+"var "+(o.scope.compiled_assignments())+";\n"+code)}if(o.scope.has_declarations(this)){code=(""+(this.tab)+"var "+(o.scope.compiled_declarations())+";\n"+code)}return code};Expressions.prototype.compile_expression=function compile_expression(node,o){var compiled_node;this.tab=o.indent;compiled_node=node.compile(merge(o,{top:true}));if(node.is_statement()){return compiled_node}else{return""+(this.idt())+compiled_node+";"}};return Expressions})();Expressions.wrap=function wrap(nodes){if(nodes.length===1&&nodes[0] instanceof Expressions){return nodes[0]}return new Expressions(nodes)};statement(Expressions);exports.LiteralNode=(function(){LiteralNode=function LiteralNode(value){this.value=value;return this};__extends(LiteralNode,BaseNode);LiteralNode.prototype.is_statement=function is_statement(){return this.value==="break"||this.value==="continue"};LiteralNode.prototype.is_pure_statement=LiteralNode.prototype.is_statement;LiteralNode.prototype.compile_node=function compile_node(o){var end,idt;idt=this.is_statement()?this.idt():"";end=this.is_statement()?";":"";return""+idt+this.value+end};LiteralNode.prototype.toString=function toString(idt){return' "'+this.value+'"'};return LiteralNode})();exports.ReturnNode=(function(){ReturnNode=function ReturnNode(expression){this.children=[(this.expression=expression)];return this};__extends(ReturnNode,BaseNode);ReturnNode.prototype.top_sensitive=function top_sensitive(){return true};ReturnNode.prototype.compile_node=function compile_node(o){var expr;expr=this.expression.make_return();if(!(expr instanceof ReturnNode)){return expr.compile(o)}del(o,"top");if(this.expression.is_statement()){o.as_statement=true}return""+(this.tab)+"return "+(this.expression.compile(o))+";"};return ReturnNode})();statement(ReturnNode,true);exports.ValueNode=(function(){ValueNode=function ValueNode(base,properties){this.children=flatten([(this.base=base),(this.properties=(properties||[]))]);return this};__extends(ValueNode,BaseNode);ValueNode.prototype.SOAK=" == undefined ? undefined : ";ValueNode.prototype.push=function push(prop){this.properties.push(prop);this.children.push(prop);return this};ValueNode.prototype.has_properties=function has_properties(){return !!this.properties.length};ValueNode.prototype.is_array=function is_array(){return this.base instanceof ArrayNode&&!this.has_properties()};ValueNode.prototype.is_object=function is_object(){return this.base instanceof ObjectNode&&!this.has_properties()};ValueNode.prototype.is_splice=function is_splice(){return this.has_properties()&&this.properties[this.properties.length-1] instanceof SliceNode};ValueNode.prototype.make_return=function make_return(){if(this.has_properties()){return ValueNode.__superClass__.make_return.call(this)}else{return this.base.make_return()}};ValueNode.prototype.unwrap=function unwrap(){if(this.properties.length){return this}else{return this.base}};ValueNode.prototype.is_statement=function is_statement(){return this.base.is_statement&&this.base.is_statement()&&!this.has_properties()};ValueNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,baseline,complete,only,op,part,prop,props,soaked,temp;soaked=false;only=del(o,"only_first");op=del(o,"operation");props=only?this.properties.slice(0,this.properties.length-1):this.properties;baseline=this.base.compile(o);if(this.base instanceof ObjectNode&&this.has_properties()){baseline=("("+baseline+")")}complete=(this.last=baseline);_b=props;for(_a=0,_c=_b.length;_a<_c;_a++){prop=_b[_a];this.source=baseline;if(prop.soak_node){soaked=true;if(this.base instanceof CallNode&&prop===props[0]){temp=o.scope.free_variable();complete=("("+temp+" = "+complete+")"+this.SOAK)+(baseline=temp+prop.compile(o))}else{complete=complete+this.SOAK+(baseline+=prop.compile(o))}}else{part=prop.compile(o);baseline+=part;complete+=part;this.last=part}}if(op&&soaked){return"("+complete+")"}else{return complete}};return ValueNode})();exports.CommentNode=(function(){CommentNode=function CommentNode(lines){this.lines=lines;this;return this};__extends(CommentNode,BaseNode);CommentNode.prototype.make_return=function make_return(){return this};CommentNode.prototype.compile_node=function compile_node(o){return(""+this.tab+"//")+this.lines.join(("\n"+this.tab+"//"))};return CommentNode})();statement(CommentNode);exports.CallNode=(function(){CallNode=function CallNode(variable,args){this.is_new=false;this.is_super=variable==="super";this.variable=this.is_super?null:variable;this.children=compact(flatten([this.variable,(this.args=(args||[]))]));this.compile_splat_arguments=__bind(SplatNode.compile_mixed_array,this,[this.args]);return this};__extends(CallNode,BaseNode);CallNode.prototype.new_instance=function new_instance(){this.is_new=true;return this};CallNode.prototype.prefix=function prefix(){if(this.is_new){return"new "}else{return""}};CallNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,_e,_f,_g,arg,args;_b=this.args;for(_a=0,_c=_b.length;_a<_c;_a++){arg=_b[_a];if(arg instanceof SplatNode){return this.compile_splat(o)}}args=(function(){_d=[];_f=this.args;for(_e=0,_g=_f.length;_e<_g;_e++){arg=_f[_e];_d.push(arg.compile(o))}return _d}).call(this).join(", ");if(this.is_super){return this.compile_super(args,o)}return""+(this.prefix())+(this.variable.compile(o))+"("+args+")"};CallNode.prototype.compile_super=function compile_super(args,o){var meth,methname;methname=o.scope.method.name;meth=o.scope.method.proto?(""+(o.scope.method.proto)+".__superClass__."+methname):(""+(methname)+".__superClass__.constructor");return""+(meth)+".call(this"+(args.length?", ":"")+args+")"};CallNode.prototype.compile_splat=function compile_splat(o){var meth,obj,temp;meth=this.variable.compile(o);obj=this.variable.source||"this";if(obj.match(/\(/)){temp=o.scope.free_variable();obj=temp;meth=("("+temp+" = "+(this.variable.source)+")"+(this.variable.last))}return""+(this.prefix())+(meth)+".apply("+obj+", "+(this.compile_splat_arguments(o))+")"};return CallNode})();exports.CurryNode=(function(){CurryNode=function CurryNode(meth,args){this.children=flatten([(this.meth=meth),(this.context=args[0]),(this.args=(args.slice(1)||[]))]);this.compile_splat_arguments=__bind(SplatNode.compile_mixed_array,this,[this.args]);return this};__extends(CurryNode,CallNode);CurryNode.prototype.arguments=function arguments(o){var _a,_b,_c,arg;_b=this.args;for(_a=0,_c=_b.length;_a<_c;_a++){arg=_b[_a];if(arg instanceof SplatNode){return this.compile_splat_arguments(o)}}return(new ArrayNode(this.args)).compile(o)};CurryNode.prototype.compile_node=function compile_node(o){var ref;utility("slice");ref=new ValueNode(literal(utility("bind")));return(new CallNode(ref,[this.meth,this.context,literal(this.arguments(o))])).compile(o)};return CurryNode}).apply(this,arguments);exports.ExtendsNode=(function(){ExtendsNode=function ExtendsNode(child,parent){this.children=[(this.child=child),(this.parent=parent)];return this};__extends(ExtendsNode,BaseNode);ExtendsNode.prototype.compile_node=function compile_node(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 AccessorNode(name,tag){this.children=[(this.name=name)];this.prototype=tag==="prototype";this.soak_node=tag==="soak";this;return this};__extends(AccessorNode,BaseNode);AccessorNode.prototype.compile_node=function compile_node(o){var proto_part;proto_part=this.prototype?"prototype.":"";return"."+proto_part+(this.name.compile(o))};return AccessorNode})();exports.IndexNode=(function(){IndexNode=function IndexNode(index,tag){this.children=[(this.index=index)];this.soak_node=tag==="soak";return this};__extends(IndexNode,BaseNode);IndexNode.prototype.compile_node=function compile_node(o){var idx;idx=this.index.compile(o);return"["+idx+"]"};return IndexNode})();exports.RangeNode=(function(){RangeNode=function RangeNode(from,to,exclusive){this.children=[(this.from=from),(this.to=to)];this.exclusive=!!exclusive;return this};__extends(RangeNode,BaseNode);RangeNode.prototype.compile_variables=function compile_variables(o){var _a,_b,from,to;this.tab=o.indent;_a=[o.scope.free_variable(),o.scope.free_variable()];this.from_var=_a[0];this.to_var=_a[1];_b=[this.from.compile(o),this.to.compile(o)];from=_b[0];to=_b[1];return""+this.from_var+" = "+from+"; "+this.to_var+" = "+to+";\n"+this.tab};RangeNode.prototype.compile_node=function compile_node(o){var compare,equals,idx,incr,intro,step,vars;if(!(o.index)){return this.compile_array(o)}idx=del(o,"index");step=del(o,"step");vars=(""+idx+" = "+this.from_var);step=step?step.compile(o):"1";equals=this.exclusive?"":"=";intro=("("+this.from_var+" <= "+this.to_var+" ? "+idx);compare=(""+intro+" <"+equals+" "+this.to_var+" : "+idx+" >"+equals+" "+this.to_var+")");incr=(""+intro+" += "+step+" : "+idx+" -= "+step+")");return""+vars+"; "+compare+"; "+incr};RangeNode.prototype.compile_array=function compile_array(o){var arr,body,name;name=o.scope.free_variable();body=Expressions.wrap([literal(name)]);arr=Expressions.wrap([new ForNode(body,{source:(new ValueNode(this))},literal(name))]);return(new ParentheticalNode(new CallNode(new CodeNode([],arr.make_return())))).compile(o)};return RangeNode})();exports.SliceNode=(function(){SliceNode=function SliceNode(range){this.children=[(this.range=range)];this;return this};__extends(SliceNode,BaseNode);SliceNode.prototype.compile_node=function compile_node(o){var from,plus_part,to;from=this.range.from.compile(o);to=this.range.to.compile(o);plus_part=this.range.exclusive?"":" + 1";return".slice("+from+", "+to+plus_part+")"};return SliceNode})();exports.ObjectNode=(function(){ObjectNode=function ObjectNode(props){this.children=(this.objects=(this.properties=props||[]));return this};__extends(ObjectNode,BaseNode);ObjectNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,_e,_f,_g,i,indent,inner,join,last_noncom,non_comments,prop,props;o.indent=this.idt(1);non_comments=(function(){_a=[];_c=this.properties;for(_b=0,_d=_c.length;_b<_d;_b++){prop=_c[_b];!(prop instanceof CommentNode)?_a.push(prop):null}return _a}).call(this);last_noncom=non_comments[non_comments.length-1];props=(function(){_e=[];_f=this.properties;for(i=0,_g=_f.length;i<_g;i++){prop=_f[i];_e.push((function(){join=",\n";if((prop===last_noncom)||(prop instanceof CommentNode)){join="\n"}if(i===this.properties.length-1){join=""}indent=prop instanceof CommentNode?"":this.idt(1);return indent+prop.compile(o)+join}).call(this))}return _e}).call(this);props=props.join("");inner=props?"\n"+props+"\n"+this.idt():"";return"{"+inner+"}"};return ObjectNode})();exports.ArrayNode=(function(){ArrayNode=function ArrayNode(objects){this.children=(this.objects=objects||[]);this.compile_splat_literal=__bind(SplatNode.compile_mixed_array,this,[this.objects]);return this};__extends(ArrayNode,BaseNode);ArrayNode.prototype.compile_node=function compile_node(o){var _a,_b,code,ending,i,obj,objects;o.indent=this.idt(1);objects=[];_a=this.objects;for(i=0,_b=_a.length;i<_b;i++){obj=_a[i];code=obj.compile(o);if(obj instanceof SplatNode){return this.compile_splat_literal(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("");ending=objects.indexOf("\n")>=0?("\n"+this.tab+"]"):"]";return"["+objects+ending};return ArrayNode})();exports.ClassNode=(function(){ClassNode=function ClassNode(variable,parent,props){this.children=compact(flatten([(this.variable=variable),(this.parent=parent),(this.properties=props||[])]));this.returns=false;return this};__extends(ClassNode,BaseNode);ClassNode.prototype.make_return=function make_return(){this.returns=true;return this};ClassNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,access,applied,construct,extension,func,prop,props,pvar,returns,val;extension=this.parent&&new ExtendsNode(this.variable,this.parent);constructor=null;props=new Expressions();o.top=true;_b=this.properties;for(_a=0,_c=_b.length;_a<_c;_a++){prop=_b[_a];_d=[prop.variable,prop.value];pvar=_d[0];func=_d[1];if(pvar&&pvar.base.value==="constructor"&&func instanceof CodeNode){func.body.push(new ReturnNode(literal("this")));constructor=new AssignNode(this.variable,func)}else{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(!constructor){if(this.parent){applied=new ValueNode(this.parent,[new AccessorNode(literal("apply"))]);constructor=new AssignNode(this.variable,new CodeNode([],new Expressions([new CallNode(applied,[literal("this"),literal("arguments")])])))}else{constructor=new AssignNode(this.variable,new CodeNode())}}construct=this.idt()+constructor.compile(o)+";\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})();statement(ClassNode);exports.AssignNode=(function(){AssignNode=function AssignNode(variable,value,context){this.children=[(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.top_sensitive=function top_sensitive(){return true};AssignNode.prototype.is_value=function is_value(){return this.variable instanceof ValueNode};AssignNode.prototype.make_return=function make_return(){return new Expressions([this,new ReturnNode(this.variable)])};AssignNode.prototype.is_statement=function is_statement(){return this.is_value()&&(this.variable.is_array()||this.variable.is_object())};AssignNode.prototype.compile_node=function compile_node(o){var last,match,name,proto,stmt,top,val;top=del(o,"top");if(this.is_statement()){return this.compile_pattern_match(o)}if(this.is_value()&&this.variable.is_splice()){return this.compile_splice(o)}stmt=del(o,"as_statement");name=this.variable.compile(o);last=this.is_value()?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.is_value()&&this.variable.has_properties())){o.scope.find(name)}val=(""+name+" = "+val);if(stmt){return(""+this.tab+val+";")}if(top){return val}else{return"("+val+")"}};AssignNode.prototype.compile_pattern_match=function compile_pattern_match(o){var _a,_b,_c,access_class,assigns,code,i,idx,obj,oindex,olength,splat,val,val_var,value;val_var=o.scope.free_variable();value=this.value.is_statement()?ClosureNode.wrap(this.value):this.value;assigns=[(""+this.tab+val_var+" = "+(value.compile(o))+";")];o.top=true;o.as_statement=true;splat=false;_a=this.variable.base.objects;for(i=0,_b=_a.length;i<_b;i++){obj=_a[i];idx=i;if(this.variable.is_object()){_c=[obj.value,obj.variable.base];obj=_c[0];idx=_c[1]}access_class=this.variable.is_array()?IndexNode:AccessorNode;if(obj instanceof SplatNode&&!splat){val=literal(obj.compile_value(o,val_var,(oindex=this.variable.base.objects.indexOf(obj)),(olength=this.variable.base.objects.length)-oindex-1));splat=true}else{if(typeof idx!=="object"){idx=literal(splat?(""+(val_var)+".length - "+(olength-idx)):idx)}val=new ValueNode(literal(val_var),[new access_class(idx)])}assigns.push(new AssignNode(obj,val).compile(o))}code=assigns.join("\n");return code};AssignNode.prototype.compile_splice=function compile_splice(o){var from,l,name,plus,range,to,val;name=this.variable.compile(merge(o,{only_first: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 CodeNode(params,body,tag){this.params=params||[];this.body=body||new Expressions();this.bound=tag==="boundfunc";return this};__extends(CodeNode,BaseNode);CodeNode.prototype.compile_node=function compile_node(o){var _a,_b,_c,_d,_e,_f,_g,_h,_i,_j,code,func,i,name_part,param,params,ref,shared_scope,splat,top;shared_scope=del(o,"shared_scope");top=del(o,"top");o.scope=shared_scope||new Scope(o.scope,this.body,this);o.top=true;o.indent=this.idt(this.bound?2:1);del(o,"no_wrap");del(o,"globals");i=0;splat=undefined;params=[];_b=this.params;for(_a=0,_c=_b.length;_a<_c;_a++){param=_b[_a];if(param instanceof SplatNode&&!(typeof splat!=="undefined"&&splat!==null)){splat=param;splat.index=i;this.body.unshift(splat);splat.trailings=[]}else{if((typeof splat!=="undefined"&&splat!==null)){splat.trailings.push(param)}else{params.push(param)}}i+=1}params=(function(){_d=[];_f=params;for(_e=0,_g=_f.length;_e<_g;_e++){param=_f[_e];_d.push(param.compile(o))}return _d})();this.body.make_return();_i=params;for(_h=0,_j=_i.length;_h<_j;_h++){param=_i[_h];(o.scope.parameter(param))}code=this.body.expressions.length?("\n"+(this.body.compile_with_declarations(o))+"\n"):"";name_part=this.name?" "+this.name:"";func=("function"+(this.bound?"":name_part)+"("+(params.join(", "))+") {"+code+(this.idt(this.bound?1:0))+"}");if(top&&!this.bound){func=("("+func+")")}if(!(this.bound)){return func}utility("slice");ref=new ValueNode(literal(utility("bind")));return(new CallNode(ref,[literal(func),literal("this")])).compile(o)};CodeNode.prototype.top_sensitive=function top_sensitive(){return true};CodeNode.prototype.real_children=function real_children(){return flatten([this.params,this.body.expressions])};CodeNode.prototype.traverse=function traverse(block){var _a,_b,_c,_d,child;block(this);_a=[];_c=this.real_children();for(_b=0,_d=_c.length;_b<_d;_b++){child=_c[_b];_a.push(child.traverse(block))}return _a};CodeNode.prototype.toString=function toString(idt){var _a,_b,_c,_d,child,children;idt=idt||"";children=(function(){_a=[];_c=this.real_children();for(_b=0,_d=_c.length;_b<_d;_b++){child=_c[_b];_a.push(child.toString(idt+TAB))}return _a}).call(this).join("");return"\n"+idt+children};return CodeNode})();exports.SplatNode=(function(){SplatNode=function SplatNode(name){if(!(name.compile)){name=literal(name)}this.children=[(this.name=name)];return this};__extends(SplatNode,BaseNode);SplatNode.prototype.compile_node=function compile_node(o){var _a;if((typeof(_a=this.index)!=="undefined"&&_a!==null)){return this.compile_param(o)}else{return this.name.compile(o)}};SplatNode.prototype.compile_param=function compile_param(o){var _a,_b,_c,i,name,trailing;name=this.name.compile(o);o.scope.find(name);i=0;_b=this.trailings;for(_a=0,_c=_b.length;_a<_c;_a++){trailing=_b[_a];o.scope.assign(trailing.compile(o),("arguments[arguments.length - "+this.trailings.length+" + "+i+"]"));i+=1}return""+name+" = "+(utility("slice"))+".call(arguments, "+this.index+", arguments.length - "+(this.trailings.length)+")"};SplatNode.prototype.compile_value=function compile_value(o,name,index,trailings){var trail;trail=trailings?(", "+(name)+".length - "+trailings):"";return""+(utility("slice"))+".call("+name+", "+index+trail+")"};SplatNode.compile_mixed_array=function compile_mixed_array(list,o){var _a,_b,_c,arg,args,code,i,prev;args=[];i=0;_b=list;for(_a=0,_c=_b.length;_a<_c;_a++){arg=_b[_a];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 WhileNode(condition,opts){this.children=[(this.condition=condition)];this.filter=opts&&opts.filter;return this};__extends(WhileNode,BaseNode);WhileNode.prototype.add_body=function add_body(body){this.children.push((this.body=body));return this};WhileNode.prototype.make_return=function make_return(){this.returns=true;return this};WhileNode.prototype.top_sensitive=function top_sensitive(){return true};WhileNode.prototype.compile_node=function compile_node(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.free_variable();set=(""+this.tab+rvar+" = [];\n");if(this.body){this.body=PushNode.wrap(rvar,this.body)}}pre=(""+set+(this.tab)+"while ("+cond+")");if(!this.body){return(""+pre+" null;"+post)}if(this.filter){this.body=Expressions.wrap([new IfNode(this.filter,this.body)])}this.returns?(post=new ReturnNode(literal(rvar)).compile(merge(o,{indent:this.idt()}))):(post="");return""+pre+" {\n"+(this.body.compile(o))+"\n"+this.tab+"}\n"+post};return WhileNode})();statement(WhileNode);exports.OpNode=(function(){OpNode=function OpNode(operator,first,second,flip){this.constructor.name+=" "+operator;this.children=compact([(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.is_unary=function is_unary(){return !this.second};OpNode.prototype.is_chainable=function is_chainable(){return this.CHAINABLE.indexOf(this.operator)>=0};OpNode.prototype.compile_node=function compile_node(o){o.operation=true;if(this.is_chainable()&&this.first.unwrap() instanceof OpNode&&this.first.unwrap().is_chainable()){return this.compile_chain(o)}if(this.ASSIGNMENT.indexOf(this.operator)>=0){return this.compile_assignment(o)}if(this.is_unary()){return this.compile_unary(o)}if(this.operator==="?"){return this.compile_existence(o)}return[this.first.compile(o),this.operator,this.second.compile(o)].join(" ")};OpNode.prototype.compile_chain=function compile_chain(o){var _a,_b,first,second,shared;shared=this.first.unwrap().second;if(shared.contains_type(CallNode)){_a=shared.compile_reference(o);this.first.second=_a[0];shared=_a[1]}_b=[this.first.compile(o),this.second.compile(o),shared.compile(o)];first=_b[0];second=_b[1];shared=_b[2];return"("+first+") && ("+shared+" "+this.operator+" "+second+")"};OpNode.prototype.compile_assignment=function compile_assignment(o){var _a,first,second;_a=[this.first.compile(o),this.second.compile(o)];first=_a[0];second=_a[1];if(first.match(IDENTIFIER)){o.scope.find(first)}if(this.operator==="?="){return(""+first+" = "+(ExistenceNode.compile_test(o,this.first))+" ? "+first+" : "+second)}return""+first+" = "+first+" "+(this.operator.substr(0,2))+" "+second};OpNode.prototype.compile_existence=function compile_existence(o){var _a,first,second,test;_a=[this.first.compile(o),this.second.compile(o)];first=_a[0];second=_a[1];test=ExistenceNode.compile_test(o,this.first);return""+test+" ? "+first+" : "+second};OpNode.prototype.compile_unary=function compile_unary(o){var parts,space;space=this.PREFIX_OPERATORS.indexOf(this.operator)>=0?" ":"";parts=[this.operator,space,this.first.compile(o)];if(this.flip){parts=parts.reverse()}return parts.join("")};return OpNode})();exports.TryNode=(function(){TryNode=function TryNode(attempt,error,recovery,ensure){this.children=compact([(this.attempt=attempt),(this.recovery=recovery),(this.ensure=ensure)]);this.error=error;this;return this};__extends(TryNode,BaseNode);TryNode.prototype.make_return=function make_return(){if(this.attempt){this.attempt=this.attempt.make_return()}if(this.recovery){this.recovery=this.recovery.make_return()}return this};TryNode.prototype.compile_node=function compile_node(o){var attempt_part,catch_part,error_part,finally_part;o.indent=this.idt(1);o.top=true;attempt_part=this.attempt.compile(o);error_part=this.error?(" ("+(this.error.compile(o))+") "):" ";catch_part=this.recovery?(" catch"+error_part+"{\n"+(this.recovery.compile(o))+"\n"+this.tab+"}"):"";finally_part=(this.ensure||"")&&" finally {\n"+this.ensure.compile(merge(o))+("\n"+this.tab+"}");return""+(this.tab)+"try {\n"+attempt_part+"\n"+this.tab+"}"+catch_part+finally_part};return TryNode})();statement(TryNode);exports.ThrowNode=(function(){ThrowNode=function ThrowNode(expression){this.children=[(this.expression=expression)];return this};__extends(ThrowNode,BaseNode);ThrowNode.prototype.make_return=function make_return(){return this};ThrowNode.prototype.compile_node=function compile_node(o){return""+(this.tab)+"throw "+(this.expression.compile(o))+";"};return ThrowNode})();statement(ThrowNode);exports.ExistenceNode=(function(){ExistenceNode=function ExistenceNode(expression){this.children=[(this.expression=expression)];return this};__extends(ExistenceNode,BaseNode);ExistenceNode.prototype.compile_node=function compile_node(o){return ExistenceNode.compile_test(o,this.expression)};ExistenceNode.compile_test=function compile_test(o,variable){var _a,_b,_c,first,second;_a=[variable,variable];first=_a[0];second=_a[1];if(variable instanceof CallNode||(variable instanceof ValueNode&&variable.has_properties())){_b=variable.compile_reference(o);first=_b[0];second=_b[1]}_c=[first.compile(o),second.compile(o)];first=_c[0];second=_c[1];return"(typeof "+first+' !== "undefined" && '+second+" !== null)"};return ExistenceNode}).call(this);exports.ParentheticalNode=(function(){ParentheticalNode=function ParentheticalNode(expression){this.children=[(this.expression=expression)];return this};__extends(ParentheticalNode,BaseNode);ParentheticalNode.prototype.is_statement=function is_statement(){return this.expression.is_statement()};ParentheticalNode.prototype.make_return=function make_return(){return this.expression.make_return()};ParentheticalNode.prototype.compile_node=function compile_node(o){var code,l;code=this.expression.compile(o);if(this.is_statement()){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 ForNode(body,source,name,index){var _a;this.body=body;this.name=name;this.index=index||null;this.source=source.source;this.filter=source.filter;this.step=source.step;this.object=!!source.object;if(this.object){_a=[this.index,this.name];this.name=_a[0];this.index=_a[1]}this.children=compact([this.body,this.source,this.filter]);this.returns=false;return this};__extends(ForNode,BaseNode);ForNode.prototype.top_sensitive=function top_sensitive(){return true};ForNode.prototype.make_return=function make_return(){this.returns=true;return this};ForNode.prototype.compile_return_value=function compile_return_value(val,o){if(this.returns){return new ReturnNode(literal(val)).compile(o)}return val||""};ForNode.prototype.compile_node=function compile_node(o){var body,body_dent,close,for_part,index,index_var,ivar,lvar,name,range,return_result,rvar,scope,set_result,source,source_part,step_part,svar,top_level,var_part,vars;top_level=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;scope=o.scope;name=this.name&&this.name.compile(o);index=this.index&&this.index.compile(o);if(name){scope.find(name)}if(index){scope.find(index)}body_dent=this.idt(1);if(!(top_level)){rvar=scope.free_variable()}ivar=range?name:index||scope.free_variable();var_part="";body=Expressions.wrap([this.body]);if(range){index_var=scope.free_variable();source_part=source.compile_variables(o);for_part=source.compile(merge(o,{index:ivar,step:this.step}));for_part=(""+index_var+" = 0, "+for_part+", "+index_var+"++")}else{svar=scope.free_variable();index_var=null;source_part=(""+svar+" = "+(this.source.compile(o))+";\n"+this.tab);if(name){var_part=(""+body_dent+name+" = "+svar+"["+ivar+"];\n")}if(!this.object){lvar=scope.free_variable();step_part=this.step?(""+ivar+" += "+(this.step.compile(o))):(""+ivar+"++");for_part=(""+ivar+" = 0, "+lvar+" = "+(svar)+".length; "+ivar+" < "+lvar+"; "+step_part)}}set_result=rvar?this.idt()+rvar+" = []; ":this.idt();return_result=this.compile_return_value(rvar,o);if(top_level&&body.contains(function(n){return n instanceof CodeNode})){body=ClosureNode.wrap(body,true)}if(!(top_level)){body=PushNode.wrap(rvar,body)}this.filter?(body=Expressions.wrap([new IfNode(this.filter,body)])):null;this.object?(for_part=(""+ivar+" in "+svar+") { if ("+(utility("hasProp"))+".call("+svar+", "+ivar+")")):null;body=body.compile(merge(o,{indent:body_dent,top:true}));vars=range?name:(""+name+", "+ivar);close=this.object?"}}\n":"}\n";return""+set_result+(source_part)+"for ("+for_part+") {\n"+var_part+body+"\n"+this.tab+close+return_result};return ForNode})();statement(ForNode);exports.IfNode=(function(){IfNode=function IfNode(condition,body,else_body,tags){this.condition=condition;this.body=body&&body.unwrap();this.else_body=else_body&&else_body.unwrap();this.children=compact(flatten([this.condition,this.body,this.else_body]));this.tags=tags||{};if(this.condition instanceof Array){this.multiple=true}if(this.tags.invert){this.condition=new OpNode("!",new ParentheticalNode(this.condition))}return this};__extends(IfNode,BaseNode);IfNode.prototype.push=function push(else_body){var eb;eb=else_body.unwrap();this.else_body?this.else_body.push(eb):(this.else_body=eb);return this};IfNode.prototype.force_statement=function force_statement(){this.tags.statement=true;return this};IfNode.prototype.rewrite_condition=function rewrite_condition(expression){this.switcher=expression;return this};IfNode.prototype.rewrite_switch=function rewrite_switch(o){var _a,_b,_c,assigner,cond,i,variable;assigner=this.switcher;if(!(this.switcher.unwrap() instanceof LiteralNode)){variable=literal(o.scope.free_variable());assigner=new AssignNode(variable,this.switcher);this.switcher=variable}this.condition=(function(){if(this.multiple){_a=[];_b=this.condition;for(i=0,_c=_b.length;i<_c;i++){cond=_b[i];_a.push(new OpNode("==",(i===0?assigner:this.switcher),cond))}return _a}else{return new OpNode("==",assigner,this.condition)}}).call(this);if(this.is_chain()){this.else_body.rewrite_condition(this.switcher)}return this};IfNode.prototype.add_else=function add_else(exprs,statement){if(this.is_chain()){this.else_body.add_else(exprs,statement)}else{if(!(statement)){exprs=exprs.unwrap()}this.children.push((this.else_body=exprs))}return this};IfNode.prototype.is_chain=function is_chain(){return this.chain=this.chain||this.else_body&&this.else_body instanceof IfNode};IfNode.prototype.is_statement=function is_statement(){return this.statement=this.statement||!!(this.comment||this.tags.statement||this.body.is_statement()||(this.else_body&&this.else_body.is_statement()))};IfNode.prototype.compile_condition=function compile_condition(o){var _a,_b,_c,_d,cond;return(function(){_a=[];_c=flatten([this.condition]);for(_b=0,_d=_c.length;_b<_d;_b++){cond=_c[_b];_a.push(cond.compile(o))}return _a}).call(this).join(" || ")};IfNode.prototype.compile_node=function compile_node(o){if(this.is_statement()){return this.compile_statement(o)}else{return this.compile_ternary(o)}};IfNode.prototype.make_return=function make_return(){this.body=this.body&&this.body.make_return();this.else_body=this.else_body&&this.else_body.make_return();return this};IfNode.prototype.compile_statement=function compile_statement(o){var body,child,com_dent,cond_o,else_part,if_dent,if_part,prefix;if(this.switcher){this.rewrite_switch(o)}child=del(o,"chain_child");cond_o=merge(o);o.indent=this.idt(1);o.top=true;if_dent=child?"":this.idt();com_dent=child?this.idt():"";prefix=this.comment?(""+(this.comment.compile(cond_o))+"\n"+com_dent):"";body=Expressions.wrap([this.body]).compile(o);if_part=(""+prefix+(if_dent)+"if ("+(this.compile_condition(cond_o))+") {\n"+body+"\n"+this.tab+"}");if(!(this.else_body)){return if_part}else_part=this.is_chain()?" else "+this.else_body.compile(merge(o,{indent:this.idt(),chain_child:true})):(" else {\n"+(Expressions.wrap([this.else_body]).compile(o))+"\n"+this.tab+"}");return""+if_part+else_part};IfNode.prototype.compile_ternary=function compile_ternary(o){var else_part,if_part;if_part=this.condition.compile(o)+" ? "+this.body.compile(o);else_part=this.else_body?this.else_body.compile(o):"null";return""+if_part+" : "+else_part};return IfNode})();PushNode=(exports.PushNode={wrap:function wrap(array,expressions){var expr;expr=expressions.unwrap();if(expr.is_pure_statement()||expr.contains_pure_statement()){return expressions}return Expressions.wrap([new CallNode(new ValueNode(literal(array),[new AccessorNode(literal("push"))]),[expr])])}});ClosureNode=(exports.ClosureNode={wrap:function wrap(expressions,statement){var args,call,func,mentions_args,mentions_this,meth;if(expressions.contains_pure_statement()){return expressions}func=new ParentheticalNode(new CodeNode([],Expressions.wrap([expressions])));args=[];mentions_args=expressions.contains(function(n){return(n instanceof LiteralNode)&&(n.value==="arguments")});mentions_this=expressions.contains(function(n){return(n instanceof LiteralNode)&&(n.value==="this")});if(mentions_args||mentions_this){meth=literal(mentions_args?"apply":"call");args=[literal("this")];if(mentions_args){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 }",__bind:"function(func, obj, args) {\n return function() {\n return func.apply(obj || {}, args ? args.concat(__slice.call(arguments, 0)) : arguments);\n };\n }",__hasProp:"Object.prototype.hasOwnProperty",__slice:"Array.prototype.slice"};TAB=" ";TRAILING_WHITESPACE=/\s+$/gm;IDENTIFIER=/^[a-zA-Z\$_](\w|\$)*$/;literal=function literal(name){return new LiteralNode(name)};utility=function utility(name){var ref;ref=("__"+name);Scope.root.assign(ref,UTILITIES[ref]);return ref}})();(function(){var Lexer,compile,helpers,lexer,parser,path,process_scripts;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.6.1";lexer=new Lexer();exports.compile=(compile=function compile(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 tokens(code){return lexer.tokenize(code)};exports.nodes=function nodes(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))});exports.extend=function extend(func){return Lexer.extensions.push(func)};parser.lexer={lex:function lex(){var token;token=this.tokens[this.pos]||[""];this.pos+=1;this.yylineno=token[2];this.yytext=token[1];return token[0]},setInput:function setInput(tokens){this.tokens=tokens;this.pos=0;return this.pos},upcomingInput:function upcomingInput(){return""},showPosition:function showPosition(){return this.pos}};if((typeof document!=="undefined"&&document!==null)&&document.getElementsByTagName){process_scripts=function process_scripts(){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",process_scripts,false)}else{if(window.attachEvent){window.attachEvent("onload",process_scripts)}}}})(); \ No newline at end of file diff --git a/index.html b/index.html index 73654cf2d4..8482adda91 100644 --- a/index.html +++ b/index.html @@ -116,7 +116,7 @@

    Latest Version: - 0.6.0 + 0.6.1

    @@ -271,11 +271,11 @@

    To install, first make sure you have a working copy of the latest tagged version of - Node.js, currently 0.1.33 or higher. + Node.js, currently 0.1.90 or higher. Then clone the CoffeeScript source repository from GitHub, or download the latest - release: 0.6.0. + release: 0.6.1. To install the CoffeeScript compiler system-wide under /usr/local, open the directory and run:

    @@ -1856,6 +1856,12 @@

    Change Log

    + +

    + 0.6.1 + Upgraded CoffeeScript for compatibility with the new Node.js v0.1.90 + series. +

    0.6.0 diff --git a/lib/coffee-script.js b/lib/coffee-script.js index 931386a27b..9fcdf82c7a 100644 --- a/lib/coffee-script.js +++ b/lib/coffee-script.js @@ -23,7 +23,7 @@ helpers = this.helpers; } // The current CoffeeScript version number. - exports.VERSION = '0.6.0'; + exports.VERSION = '0.6.1'; // Instantiate a Lexer for our use here. lexer = new Lexer(); // Compile a string of CoffeeScript code to JavaScript, using the Coffee/Jison diff --git a/package.json b/package.json index 5be7230400..6bbbda791b 100644 --- a/package.json +++ b/package.json @@ -3,5 +3,5 @@ "description": "Unfancy JavaScript", "keywords": ["javascript", "language"], "author": "Jeremy Ashkenas", - "version": "0.6.0" + "version": "0.6.1" } diff --git a/src/coffee-script.coffee b/src/coffee-script.coffee index b591ca5fbe..36c5d1603a 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.6.0' +exports.VERSION: '0.6.1' # Instantiate a Lexer for our use here. lexer: new Lexer()